$\textbf{Overview}$¶

This document provides instructions on running the JWST Science Calibration Pipeline (referred to as “the pipeline”) and individual pipeline steps specifically for $\textbf{Time Series Observation (TSO) Imaging with NIRCam NRC_TSIMAGE exposure data}$.

End-to-end calibration of JWST data is divided into 3 main stages of processing. Multiple pipeline modules are used for different stages of processing and for different JWST observing modes. The modules are broken into the following 3 stages:

  • $\textbf{Stage 1}$: Detector-level corrections and ramp fitting for individual exposures

  • $\textbf{Stage 2}$: Instrument-mode calibrations for individual exposures

  • $\textbf{Stage 3}$: Combining data from multiple exposures within an observation

$\textbf{Stage 1}$ corrections are applied nearly universally for all instruments and modes. $\textbf{Stage 2}$ is divided into separate modules for $\textbf{imaging}$ and spectroscopic modes. $\textbf{Stage 3}$ is divided into five separate modules for imaging, spectroscopic, coronagraphic, Aperture Masking Interferometry (AMI), and $\textbf{Time Series Observation (TSO)}$ modes.

$\textbf{Import Library}$¶

In [2]:
import os
#os.environ['CRDS_PATH'] = '/fenrirdata1/kg_data/crds_cache/' #These pathways should be defined in your ~./bash profile. If not, you can set them within the notebook.
#os.environ['CRDS_SERVER_URL']= 'https://jwst-crds.stsci.edu'
#os.environ['CRDS_CONTEXT']='jwst_0756.pmap' #Occasionally, the JWST CRDS pmap will be updated. Updates may break existing code. Use this command to revert to an older working verison until the issue is fixed. 


import jwst
print(jwst.__version__) #Print what version of the pipeline you are using.

from jwst.pipeline.calwebb_detector1 import Detector1Pipeline #Stage 1
from jwst.pipeline.calwebb_image2 import Image2Pipeline #Stage 2
from jwst.pipeline.calwebb_tso3 import Tso3Pipeline #Stage 3
from jwst.associations.asn_from_list import asn_from_list #Association file imports
from jwst.associations.lib.rules_level2_base import DMSLevel2bBase

#General
from astropy.io import fits, ascii
import matplotlib.pyplot as plt
%matplotlib inline
import csv
import numpy as np
import asdf
import glob
import time
import yaml
from copy import deepcopy

from tshirt.pipeline import phot_pipeline #tshirt specific imports
from splintegrate import splintegrate

#modeling
import batman
from scipy.optimize import curve_fit

#Style Choice
class style:
   BOLD = '\033[1m'
   END = '\033[0m'
1.3.1

$\textbf{Stage 1}$¶

$\textbf{Detector-level corrections and ramp fitting for individual exposures.}$¶

Stage 1 consists of detector-level corrections that are performed on a group-by-group basis, followed by ramp fitting. The output of stage 1 processing is a countrate image per exposure, or per integration for some modes.

$\textbf{Detector1Pipeline:}$¶

Apply all calibration steps to raw JWST ramps to produce a 2-D slope product. This stage takes care of basic data reduction steps, such as reference pixel correction, superbias subtraction, removal of non-linearity, and flagging of cosmic rays. In the final step in this stage of the pipeline, line-fitting is performed on each integration. A slope image is created for each integration. The steps in this stage are identical for all data.

There are two general configurations for this pipeline, depending on whether the data are to be treated as a Time Series Observation (TSO). The configuration is provided by CRDS reference file mappings and are usually set by default to always give access to the most recent reference file deliveries and selection rules. For TSO exposures, some steps are set to be skipped by default:

  • The $\textbf{ipc}$ step corrects a JWST exposure for interpixel capacitance by convolving with an IPC reference image.
  • The $\textbf{persistence}$ step. Based on a model, this step computes the number of traps that are expected to have captured or released a charge during an exposure. The released charge is proportional to the persistence signal, and this will be subtracted (group by group) from the science data.

$\textbf{INPUT FILES:}$ Exposure raw data products are designated by a file name suffix of “uncal.” These files usually contain only the raw detector pixel values from an exposure, with the addition of some table extensions containing various types of meta data associated with the exposure. Additional extensions can be included for certain instruments and readout types. Below are header modifications to the "uncal" fits files.

In [3]:
#Adding header modifications
all_uncal_files = [] # All Uncalibrated File Names. Also use to check that all files have been modified by the loop. 
BaseDirectory = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/Raw_Data/'
for fitsName in glob.glob(BaseDirectory + '*nrca1_uncal.fits'): #Grabbing only nrca1 files from the directory
    HDUList = fits.open(fitsName, 'update')
    HDUList[0].header['NOUTPUTS'] = (4, 'Number of output amplifiers') #This was not input at the time of the simulation. Therefore, we manually must input this information. 
    HDUList.close()
    all_uncal_files.append(fitsName)
    
all_uncal_files = sorted(all_uncal_files) #sort files alphabetically. 
In [4]:
seg01_len = len(glob.glob('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/splintegrate/jw01185001001_01101_00001-seg001*.fits'))
In [ ]:
startTime = time.time() #Time how long this step takes

for filename_stage1 in all_uncal_files:
    
    # Instantiate the class. Do not provide a configuration file.
    pipeline_stage1 = Detector1Pipeline()
    
    # Manually set any desired non-default parameter values
    
    # Default is to skip the persistence and IPC correction
    # Make that explicit here
    pipeline_stage1.persistence.skip = True
    pipeline_stage1.ipc.skip = True
    
    pipeline_stage1.refpix.skip = False # Make sure to skip steps appropriate if using an alternate ref pix correction method. Otherwise, the default is 'False'.
    pipeline_stage1.superbias.skip = False 
    
    # The default value for CR flagging is 3 or 4 sigma
    # which tends to be too aggressive and flags noise.
    # Set it to something more reasonable
    #pipeline_stage1.jump.rejection_threshold = 9
    pipeline_stage1.jump.skip=True # Currently we are skipping this step as we are testing the pipeline with this simulation and lots of the data gets flagged. 
    
    # Specify that you want results saved to a file
    pipeline_stage1.save_results = True
    pipeline_stage1.output_dir = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/'
    
    # Execute the pipeline using the run method
    result_stage1 = pipeline_stage1.run(filename_stage1)
    
executionTime = (time.time() - startTime)
print('Stage 1 Execution Time in Seconds: ' + str(executionTime)) #Time how long this step takes
2021-10-19 13:08:16,590 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
[stpipe.Detector1Pipeline:INFO] Detector1Pipeline instance created.
2021-10-19 13:08:16,596 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
[stpipe.Detector1Pipeline.group_scale:INFO] GroupScaleStep instance created.
2021-10-19 13:08:16,602 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
[stpipe.Detector1Pipeline.dq_init:INFO] DQInitStep instance created.
2021-10-19 13:08:16,608 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
[stpipe.Detector1Pipeline.saturation:INFO] SaturationStep instance created.
2021-10-19 13:08:16,613 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
[stpipe.Detector1Pipeline.ipc:INFO] IPCStep instance created.
2021-10-19 13:08:16,619 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
[stpipe.Detector1Pipeline.superbias:INFO] SuperBiasStep instance created.
2021-10-19 13:08:16,625 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
[stpipe.Detector1Pipeline.refpix:INFO] RefPixStep instance created.
2021-10-19 13:08:16,631 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
[stpipe.Detector1Pipeline.rscd:INFO] RscdStep instance created.
2021-10-19 13:08:16,637 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
[stpipe.Detector1Pipeline.firstframe:INFO] FirstFrameStep instance created.
2021-10-19 13:08:16,642 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
[stpipe.Detector1Pipeline.lastframe:INFO] LastFrameStep instance created.
2021-10-19 13:08:16,648 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
[stpipe.Detector1Pipeline.linearity:INFO] LinearityStep instance created.
2021-10-19 13:08:16,654 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
[stpipe.Detector1Pipeline.dark_current:INFO] DarkCurrentStep instance created.
2021-10-19 13:08:16,659 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
[stpipe.Detector1Pipeline.reset:INFO] ResetStep instance created.
2021-10-19 13:08:16,666 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
[stpipe.Detector1Pipeline.persistence:INFO] PersistenceStep instance created.
2021-10-19 13:08:16,673 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
[stpipe.Detector1Pipeline.jump:INFO] JumpStep instance created.
2021-10-19 13:08:16,680 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
[stpipe.Detector1Pipeline.ramp_fit:INFO] RampFitStep instance created.
2021-10-19 13:08:16,686 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
[stpipe.Detector1Pipeline.gain_scale:INFO] GainScaleStep instance created.
2021-10-19 13:08:16,849 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_uncal.fits',).
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_uncal.fits',).
2021-10-19 13:08:16,874 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 13:08:33,305 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg001_nrca1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
[stpipe.Detector1Pipeline:INFO] Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg001_nrca1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
2021-10-19 13:08:35,715 - CRDS - INFO -  Fetching  /fenrirdata1/kg_data/crds_cache/mappings/jwst/jwst_nircam_dark_0035.rmap   21.5 K bytes  (1 / 5 files) (0 / 54.7 K bytes)
2021-10-19 13:08:36,118 - CRDS - INFO -  Fetching  /fenrirdata1/kg_data/crds_cache/mappings/jwst/jwst_nircam_0184.imap    5.0 K bytes  (2 / 5 files) (21.5 K / 54.7 K bytes)
2021-10-19 13:08:37,227 - CRDS - INFO -  Fetching  /fenrirdata1/kg_data/crds_cache/mappings/jwst/jwst_miri_flat_0052.rmap   22.7 K bytes  (3 / 5 files) (26.5 K / 54.7 K bytes)
2021-10-19 13:08:37,584 - CRDS - INFO -  Fetching  /fenrirdata1/kg_data/crds_cache/mappings/jwst/jwst_miri_0249.imap    4.9 K bytes  (4 / 5 files) (49.2 K / 54.7 K bytes)
2021-10-19 13:08:37,887 - CRDS - INFO -  Fetching  /fenrirdata1/kg_data/crds_cache/mappings/jwst/jwst_0775.pmap      580 bytes  (5 / 5 files) (54.1 K / 54.7 K bytes)
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 13:08:39,465 - CRDS - INFO -  Fetching  /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits  629.7 M bytes  (1 / 1 files) (0 / 629.7 M bytes)
2021-10-19 13:11:10,979 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits'.
2021-10-19 13:11:10,984 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
2021-10-19 13:11:10,987 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits'.
2021-10-19 13:11:10,990 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits'.
2021-10-19 13:11:10,993 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
2021-10-19 13:11:10,996 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for REFPIX reference file is 'N/A'.
2021-10-19 13:11:10,998 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for RESET reference file is 'N/A'.
2021-10-19 13:11:11,000 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for RSCD reference file is 'N/A'.
2021-10-19 13:11:11,002 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits'.
2021-10-19 13:11:11,008 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits'.
[      root:INFO] Starting calwebb_detector1 ...
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[      root:DEBUG] Processing a Near-IR exposure
2021-10-19 13:11:52,299 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 13:11:52,303 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 13:12:10,993 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=1 is a power of 2; correction not needed
[stpipe.Detector1Pipeline.group_scale:INFO] NFRAMES=1 is a power of 2; correction not needed
2021-10-19 13:12:10,996 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.group_scale:INFO] Step will be skipped
2021-10-19 13:12:11,000 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale done
2021-10-19 13:12:11,162 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 13:12:11,166 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 13:12:11,218 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits
[stpipe.Detector1Pipeline.dq_init:INFO] Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.dq_init.dq_initialization:INFO] Extracting mask subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 13:12:27,528 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init done
2021-10-19 13:12:28,037 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 13:12:28,041 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 13:12:28,094 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits
[stpipe.Detector1Pipeline.saturation:INFO] Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.saturation.saturation:INFO] Extracting reference file subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.saturation.saturation:INFO] Detected 543 saturated pixels
2021-10-19 13:46:46,306 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix done
2021-10-19 13:46:46,994 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 13:46:46,999 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 13:46:47,050 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits
[stpipe.Detector1Pipeline.linearity:INFO] Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.linearity.linearity:INFO] Extracting linearity subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.linearity.linearity:DEBUG] Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied.
2021-10-19 13:47:23,179 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity done
2021-10-19 13:47:23,707 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 13:47:23,712 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
2021-10-19 13:47:23,714 - stpipe.Detector1Pipeline.persistence - INFO - Step skipped.
[stpipe.Detector1Pipeline.persistence:INFO] Step skipped.
2021-10-19 13:47:23,718 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence done
2021-10-19 13:47:23,902 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 13:47:23,906 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'dark_output': None}
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'dark_output': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 13:47:23,963 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits
[stpipe.Detector1Pipeline.dark_current:INFO] Using DARK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.dark_current.dark_sub:INFO] Science data nints=731, ngroups=7, nframes=1, groupgap=0
[jwst.dark_current.dark_sub:INFO] Dark data nints=1, ngroups=600, nframes=1, groupgap=0
[jwst.dark_current.dark_sub:DEBUG] subtract_dark: nints=731, ngroups=7, size=64,2048
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 13:47:43,353 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current done
2021-10-19 13:47:44,041 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.jump:INFO] Step jump running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 13:47:44,046 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
[stpipe.Detector1Pipeline.jump:INFO] Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2021-10-19 13:47:44,048 - stpipe.Detector1Pipeline.jump - INFO - Step skipped.
[stpipe.Detector1Pipeline.jump:INFO] Step skipped.
2021-10-19 13:47:44,051 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
[stpipe.Detector1Pipeline.jump:INFO] Step jump done
2021-10-19 13:47:44,207 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 13:47:44,211 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.ramp_fitting.ramp_fit_step:INFO] Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.ramp_fitting.ramp_fit_step:INFO] Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.ramp_fitting.ramp_fit_step:INFO] Using algorithm = ols
[jwst.ramp_fitting.ramp_fit_step:INFO] Using weighting = optimal
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.ramp_fitting.utils:INFO] Extracting gain subarray to match science data
[jwst.lib.reffile_utils:DEBUG] science xstart=1, xsize=2048, ystart=135, ysize=64
[jwst.lib.reffile_utils:DEBUG] reference xstart=1, xsize=2048, ystart=1, ysize=2048
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.ramp_fitting.utils:INFO] Extracting readnoise subarray to match science data
[jwst.lib.reffile_utils:DEBUG] science xstart=1, xsize=2048, ystart=135, ysize=64
[jwst.lib.reffile_utils:DEBUG] reference xstart=1, xsize=2048, ystart=1, ysize=2048
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[jwst.ramp_fitting.ols_fit:DEBUG] Max segments=1
[jwst.ramp_fitting.ols_fit:DEBUG] Missing keyword DRPFRMS1, so setting to default value of 0
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.ramp_fitting.utils:DEBUG] The number of pixels having insufficient data
[jwst.ramp_fitting.utils:DEBUG] due to excessive CRs or saturation 513:
[jwst.ramp_fitting.utils:DEBUG] Count rates - min, mean, max, std: -629.265442, 67.721107, 11401.000000, 485.214813
[jwst.ramp_fitting.ols_fit:DEBUG] Instrument: NIRCAM
[jwst.ramp_fitting.ols_fit:DEBUG] Number of pixels in 2D array: 131072
[jwst.ramp_fitting.ols_fit:DEBUG] Shape of 2D image: (64, 2048)
[jwst.ramp_fitting.ols_fit:DEBUG] Shape of data cube: (7, 64, 2048)
[jwst.ramp_fitting.ols_fit:DEBUG] Buffer size (bytes): 307200000
[jwst.ramp_fitting.ols_fit:DEBUG] Number of rows per buffer: 64
[jwst.ramp_fitting.ols_fit:INFO] Number of groups per integration: 7
[jwst.ramp_fitting.ols_fit:INFO] Number of integrations: 731
[jwst.ramp_fitting.ols_fit:DEBUG] The execution time in seconds: 1298.449716
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:09:32,288 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit done
2021-10-19 14:09:32,841 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale running with args (<ImageModel(64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 14:09:32,845 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 14:09:32,964 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
[stpipe.Detector1Pipeline.gain_scale:INFO] GAINFACT not found in gain reference file
2021-10-19 14:09:32,966 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.gain_scale:INFO] Step will be skipped
2021-10-19 14:09:32,972 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale done
2021-10-19 14:09:33,126 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_uncal.fits>,).
2021-10-19 14:09:33,130 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 14:09:33,221 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
[stpipe.Detector1Pipeline.gain_scale:INFO] GAINFACT not found in gain reference file
2021-10-19 14:09:33,224 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.gain_scale:INFO] Step will be skipped
2021-10-19 14:09:33,228 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale done
2021-10-19 14:09:36,116 - stpipe.Detector1Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rateints.fits
[stpipe.Detector1Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rateints.fits
[      root:INFO] ... ending calwebb_detector1
2021-10-19 14:09:36,222 - stpipe.Detector1Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rate.fits
[stpipe.Detector1Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rate.fits
2021-10-19 14:09:36,225 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline done
2021-10-19 14:09:36,248 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
[stpipe.Detector1Pipeline:INFO] Detector1Pipeline instance created.
2021-10-19 14:09:36,251 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
[stpipe.Detector1Pipeline.group_scale:INFO] GroupScaleStep instance created.
2021-10-19 14:09:36,255 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
[stpipe.Detector1Pipeline.dq_init:INFO] DQInitStep instance created.
2021-10-19 14:09:36,261 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
[stpipe.Detector1Pipeline.saturation:INFO] SaturationStep instance created.
2021-10-19 14:09:36,265 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
[stpipe.Detector1Pipeline.ipc:INFO] IPCStep instance created.
2021-10-19 14:09:36,268 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
[stpipe.Detector1Pipeline.superbias:INFO] SuperBiasStep instance created.
2021-10-19 14:09:36,272 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
[stpipe.Detector1Pipeline.refpix:INFO] RefPixStep instance created.
2021-10-19 14:09:36,276 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
[stpipe.Detector1Pipeline.rscd:INFO] RscdStep instance created.
2021-10-19 14:09:36,280 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
[stpipe.Detector1Pipeline.firstframe:INFO] FirstFrameStep instance created.
2021-10-19 14:09:36,284 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
[stpipe.Detector1Pipeline.lastframe:INFO] LastFrameStep instance created.
2021-10-19 14:09:36,287 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
[stpipe.Detector1Pipeline.linearity:INFO] LinearityStep instance created.
2021-10-19 14:09:36,292 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
[stpipe.Detector1Pipeline.dark_current:INFO] DarkCurrentStep instance created.
2021-10-19 14:09:36,296 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
[stpipe.Detector1Pipeline.reset:INFO] ResetStep instance created.
2021-10-19 14:09:36,301 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
[stpipe.Detector1Pipeline.persistence:INFO] PersistenceStep instance created.
2021-10-19 14:09:36,306 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
[stpipe.Detector1Pipeline.jump:INFO] JumpStep instance created.
2021-10-19 14:09:36,312 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
[stpipe.Detector1Pipeline.ramp_fit:INFO] RampFitStep instance created.
2021-10-19 14:09:36,317 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
[stpipe.Detector1Pipeline.gain_scale:INFO] GainScaleStep instance created.
2021-10-19 14:09:37,244 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_uncal.fits',).
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_uncal.fits',).
2021-10-19 14:09:37,268 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 14:10:01,483 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg002_nrca1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
[stpipe.Detector1Pipeline:INFO] Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg002_nrca1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
2021-10-19 14:10:01,513 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits'.
2021-10-19 14:10:01,516 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
2021-10-19 14:10:01,519 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits'.
2021-10-19 14:10:01,522 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits'.
2021-10-19 14:10:01,525 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
2021-10-19 14:10:01,528 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for REFPIX reference file is 'N/A'.
2021-10-19 14:10:01,530 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for RESET reference file is 'N/A'.
2021-10-19 14:10:01,533 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for RSCD reference file is 'N/A'.
2021-10-19 14:10:01,535 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits'.
2021-10-19 14:10:01,538 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits'.
[      root:INFO] Starting calwebb_detector1 ...
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[      root:DEBUG] Processing a Near-IR exposure
2021-10-19 14:10:27,982 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:10:27,986 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:10:47,522 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=1 is a power of 2; correction not needed
[stpipe.Detector1Pipeline.group_scale:INFO] NFRAMES=1 is a power of 2; correction not needed
2021-10-19 14:10:47,524 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.group_scale:INFO] Step will be skipped
2021-10-19 14:10:47,528 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale done
2021-10-19 14:10:47,683 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:10:47,687 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:10:47,740 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits
[stpipe.Detector1Pipeline.dq_init:INFO] Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.dq_init.dq_initialization:INFO] Extracting mask subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:11:05,481 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init done
2021-10-19 14:11:05,749 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:11:05,753 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:11:05,806 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits
[stpipe.Detector1Pipeline.saturation:INFO] Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.saturation.saturation:INFO] Extracting reference file subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.saturation.saturation:INFO] Detected 544 saturated pixels
[jwst.saturation.saturation:INFO] Detected 0 A/D floor pixels
2021-10-19 14:11:27,738 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation done
2021-10-19 14:11:28,443 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:11:28,448 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
2021-10-19 14:11:28,451 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
[stpipe.Detector1Pipeline.ipc:INFO] Step skipped.
2021-10-19 14:11:28,454 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc done
2021-10-19 14:11:28,613 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:11:28,619 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:11:28,671 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits
[stpipe.Detector1Pipeline.superbias:INFO] Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:11:49,265 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias done
2021-10-19 14:11:49,543 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:11:49,548 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:11:49,573 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
[stpipe.Detector1Pipeline.refpix:INFO] use_side_ref_pixels = True
2021-10-19 14:11:49,575 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
[stpipe.Detector1Pipeline.refpix:INFO] odd_even_columns = True
2021-10-19 14:11:49,577 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
[stpipe.Detector1Pipeline.refpix:INFO] side_smoothing_length = 11
2021-10-19 14:11:49,579 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000
[stpipe.Detector1Pipeline.refpix:INFO] side_gain = 1.000000
2021-10-19 14:11:49,581 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True
[stpipe.Detector1Pipeline.refpix:INFO] odd_even_rows = True
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] Input exposure is a subarray readout
[jwst.lib.reffile_utils:DEBUG] Input exposure is a subarray readout
2021-10-19 14:36:14,769 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix done
2021-10-19 14:36:15,482 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:36:15,486 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:36:15,538 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits
[stpipe.Detector1Pipeline.linearity:INFO] Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.linearity.linearity:INFO] Extracting linearity subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.linearity.linearity:DEBUG] Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied.
2021-10-19 14:36:36,804 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity done
2021-10-19 14:36:37,102 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:36:37,106 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
2021-10-19 14:36:37,108 - stpipe.Detector1Pipeline.persistence - INFO - Step skipped.
[stpipe.Detector1Pipeline.persistence:INFO] Step skipped.
2021-10-19 14:36:37,113 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence done
2021-10-19 14:36:37,267 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:36:37,272 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'dark_output': None}
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'dark_output': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:36:37,325 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits
[stpipe.Detector1Pipeline.dark_current:INFO] Using DARK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.dark_current.dark_sub:INFO] Science data nints=731, ngroups=7, nframes=1, groupgap=0
[jwst.dark_current.dark_sub:INFO] Dark data nints=1, ngroups=600, nframes=1, groupgap=0
[jwst.dark_current.dark_sub:DEBUG] subtract_dark: nints=731, ngroups=7, size=64,2048
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:36:44,162 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current done
2021-10-19 14:36:44,355 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.jump:INFO] Step jump running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:36:44,360 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
[stpipe.Detector1Pipeline.jump:INFO] Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2021-10-19 14:36:44,362 - stpipe.Detector1Pipeline.jump - INFO - Step skipped.
[stpipe.Detector1Pipeline.jump:INFO] Step skipped.
2021-10-19 14:36:44,365 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
[stpipe.Detector1Pipeline.jump:INFO] Step jump done
2021-10-19 14:36:44,519 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:36:44,526 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.ramp_fitting.ramp_fit_step:INFO] Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.ramp_fitting.ramp_fit_step:INFO] Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.ramp_fitting.ramp_fit_step:INFO] Using algorithm = ols
[jwst.ramp_fitting.ramp_fit_step:INFO] Using weighting = optimal
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.ramp_fitting.utils:INFO] Extracting gain subarray to match science data
[jwst.lib.reffile_utils:DEBUG] science xstart=1, xsize=2048, ystart=135, ysize=64
[jwst.lib.reffile_utils:DEBUG] reference xstart=1, xsize=2048, ystart=1, ysize=2048
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.ramp_fitting.utils:INFO] Extracting readnoise subarray to match science data
[jwst.lib.reffile_utils:DEBUG] science xstart=1, xsize=2048, ystart=135, ysize=64
[jwst.lib.reffile_utils:DEBUG] reference xstart=1, xsize=2048, ystart=1, ysize=2048
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[jwst.ramp_fitting.ols_fit:DEBUG] Max segments=1
[jwst.ramp_fitting.ols_fit:DEBUG] Missing keyword DRPFRMS1, so setting to default value of 0
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.ramp_fitting.utils:DEBUG] The number of pixels having insufficient data
[jwst.ramp_fitting.utils:DEBUG] due to excessive CRs or saturation 513:
[jwst.ramp_fitting.utils:DEBUG] Count rates - min, mean, max, std: -628.399536, 67.815941, 11393.770508, 485.195892
[jwst.ramp_fitting.ols_fit:DEBUG] Instrument: NIRCAM
[jwst.ramp_fitting.ols_fit:DEBUG] Number of pixels in 2D array: 131072
[jwst.ramp_fitting.ols_fit:DEBUG] Shape of 2D image: (64, 2048)
[jwst.ramp_fitting.ols_fit:DEBUG] Shape of data cube: (7, 64, 2048)
[jwst.ramp_fitting.ols_fit:DEBUG] Buffer size (bytes): 307200000
[jwst.ramp_fitting.ols_fit:DEBUG] Number of rows per buffer: 64
[jwst.ramp_fitting.ols_fit:INFO] Number of groups per integration: 7
[jwst.ramp_fitting.ols_fit:INFO] Number of integrations: 731
[jwst.ramp_fitting.ols_fit:DEBUG] The execution time in seconds: 865.504437
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:51:12,487 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit done
2021-10-19 14:51:12,721 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale running with args (<ImageModel(64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:51:12,725 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 14:51:12,812 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
[stpipe.Detector1Pipeline.gain_scale:INFO] GAINFACT not found in gain reference file
2021-10-19 14:51:12,815 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.gain_scale:INFO] Step will be skipped
2021-10-19 14:51:12,820 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale done
2021-10-19 14:51:12,977 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_uncal.fits>,).
2021-10-19 14:51:12,981 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 14:51:13,069 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
[stpipe.Detector1Pipeline.gain_scale:INFO] GAINFACT not found in gain reference file
2021-10-19 14:51:13,072 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.gain_scale:INFO] Step will be skipped
2021-10-19 14:51:13,078 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale done
2021-10-19 14:51:15,835 - stpipe.Detector1Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_rateints.fits
[stpipe.Detector1Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_rateints.fits
[      root:INFO] ... ending calwebb_detector1
2021-10-19 14:51:15,938 - stpipe.Detector1Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_rate.fits
[stpipe.Detector1Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_rate.fits
2021-10-19 14:51:15,940 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline done
2021-10-19 14:51:15,962 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
[stpipe.Detector1Pipeline:INFO] Detector1Pipeline instance created.
2021-10-19 14:51:15,966 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
[stpipe.Detector1Pipeline.group_scale:INFO] GroupScaleStep instance created.
2021-10-19 14:51:15,969 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
[stpipe.Detector1Pipeline.dq_init:INFO] DQInitStep instance created.
2021-10-19 14:51:15,973 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
[stpipe.Detector1Pipeline.saturation:INFO] SaturationStep instance created.
2021-10-19 14:51:15,977 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
[stpipe.Detector1Pipeline.ipc:INFO] IPCStep instance created.
2021-10-19 14:51:15,980 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
[stpipe.Detector1Pipeline.superbias:INFO] SuperBiasStep instance created.
2021-10-19 14:51:15,984 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
[stpipe.Detector1Pipeline.refpix:INFO] RefPixStep instance created.
2021-10-19 14:51:15,988 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
[stpipe.Detector1Pipeline.rscd:INFO] RscdStep instance created.
2021-10-19 14:51:15,992 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
[stpipe.Detector1Pipeline.firstframe:INFO] FirstFrameStep instance created.
2021-10-19 14:51:15,996 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
[stpipe.Detector1Pipeline.lastframe:INFO] LastFrameStep instance created.
2021-10-19 14:51:15,999 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
[stpipe.Detector1Pipeline.linearity:INFO] LinearityStep instance created.
2021-10-19 14:51:16,013 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
[stpipe.Detector1Pipeline.dark_current:INFO] DarkCurrentStep instance created.
2021-10-19 14:51:16,017 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
[stpipe.Detector1Pipeline.reset:INFO] ResetStep instance created.
2021-10-19 14:51:16,023 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
[stpipe.Detector1Pipeline.persistence:INFO] PersistenceStep instance created.
2021-10-19 14:51:16,029 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
[stpipe.Detector1Pipeline.jump:INFO] JumpStep instance created.
2021-10-19 14:51:16,036 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
[stpipe.Detector1Pipeline.ramp_fit:INFO] RampFitStep instance created.
2021-10-19 14:51:16,042 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
[stpipe.Detector1Pipeline.gain_scale:INFO] GainScaleStep instance created.
2021-10-19 14:51:16,951 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_uncal.fits',).
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_uncal.fits',).
2021-10-19 14:51:16,976 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 14:51:22,447 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg003_nrca1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
[stpipe.Detector1Pipeline:INFO] Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg003_nrca1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
2021-10-19 14:51:22,460 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits'.
2021-10-19 14:51:22,463 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
2021-10-19 14:51:22,466 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits'.
2021-10-19 14:51:22,469 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits'.
2021-10-19 14:51:22,472 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
2021-10-19 14:51:22,475 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for REFPIX reference file is 'N/A'.
2021-10-19 14:51:22,477 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for RESET reference file is 'N/A'.
2021-10-19 14:51:22,479 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for RSCD reference file is 'N/A'.
2021-10-19 14:51:22,481 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits'.
2021-10-19 14:51:22,486 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits'.
[      root:INFO] Starting calwebb_detector1 ...
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[      root:DEBUG] Processing a Near-IR exposure
2021-10-19 14:51:43,473 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 14:51:43,477 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:52:04,176 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=1 is a power of 2; correction not needed
[stpipe.Detector1Pipeline.group_scale:INFO] NFRAMES=1 is a power of 2; correction not needed
2021-10-19 14:52:04,179 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.group_scale:INFO] Step will be skipped
2021-10-19 14:52:04,182 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale done
2021-10-19 14:52:04,356 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 14:52:04,361 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:52:04,415 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits
[stpipe.Detector1Pipeline.dq_init:INFO] Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.dq_init.dq_initialization:INFO] Extracting mask subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:52:21,686 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init done
2021-10-19 14:52:21,904 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 14:52:21,908 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:52:21,960 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits
[stpipe.Detector1Pipeline.saturation:INFO] Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.saturation.saturation:INFO] Extracting reference file subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.saturation.saturation:INFO] Detected 537 saturated pixels
[jwst.saturation.saturation:INFO] Detected 0 A/D floor pixels
2021-10-19 14:52:37,184 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation done
2021-10-19 14:52:37,715 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 14:52:37,719 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
2021-10-19 14:52:37,721 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
[stpipe.Detector1Pipeline.ipc:INFO] Step skipped.
2021-10-19 14:52:37,724 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc done
2021-10-19 14:52:37,880 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 14:52:37,884 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:52:37,935 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits
[stpipe.Detector1Pipeline.superbias:INFO] Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:52:56,515 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias done
2021-10-19 14:52:56,714 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 14:52:56,718 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 14:52:56,743 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
[stpipe.Detector1Pipeline.refpix:INFO] use_side_ref_pixels = True
2021-10-19 14:52:56,746 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
[stpipe.Detector1Pipeline.refpix:INFO] odd_even_columns = True
2021-10-19 14:52:56,748 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
[stpipe.Detector1Pipeline.refpix:INFO] side_smoothing_length = 11
2021-10-19 14:52:56,750 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000
[stpipe.Detector1Pipeline.refpix:INFO] side_gain = 1.000000
2021-10-19 14:52:56,752 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True
[stpipe.Detector1Pipeline.refpix:INFO] odd_even_rows = True
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] Input exposure is a subarray readout
[jwst.lib.reffile_utils:DEBUG] Input exposure is a subarray readout
2021-10-19 15:20:40,818 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix done
2021-10-19 15:20:42,232 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 15:20:42,237 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:20:42,289 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits
[stpipe.Detector1Pipeline.linearity:INFO] Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.linearity.linearity:INFO] Extracting linearity subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.linearity.linearity:DEBUG] Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied.
2021-10-19 15:21:10,434 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity done
2021-10-19 15:21:10,675 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 15:21:10,679 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
2021-10-19 15:21:10,681 - stpipe.Detector1Pipeline.persistence - INFO - Step skipped.
[stpipe.Detector1Pipeline.persistence:INFO] Step skipped.
2021-10-19 15:21:10,684 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence done
2021-10-19 15:21:10,838 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 15:21:10,844 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'dark_output': None}
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'dark_output': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:21:10,897 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits
[stpipe.Detector1Pipeline.dark_current:INFO] Using DARK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.dark_current.dark_sub:INFO] Science data nints=731, ngroups=7, nframes=1, groupgap=0
[jwst.dark_current.dark_sub:INFO] Dark data nints=1, ngroups=600, nframes=1, groupgap=0
[jwst.dark_current.dark_sub:DEBUG] subtract_dark: nints=731, ngroups=7, size=64,2048
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:21:36,696 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current done
2021-10-19 15:21:37,176 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.jump:INFO] Step jump running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 15:21:37,180 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
[stpipe.Detector1Pipeline.jump:INFO] Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2021-10-19 15:21:37,182 - stpipe.Detector1Pipeline.jump - INFO - Step skipped.
[stpipe.Detector1Pipeline.jump:INFO] Step skipped.
2021-10-19 15:21:37,185 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
[stpipe.Detector1Pipeline.jump:INFO] Step jump done
2021-10-19 15:21:37,341 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 15:21:37,346 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.ramp_fitting.ramp_fit_step:INFO] Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.ramp_fitting.ramp_fit_step:INFO] Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.ramp_fitting.ramp_fit_step:INFO] Using algorithm = ols
[jwst.ramp_fitting.ramp_fit_step:INFO] Using weighting = optimal
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.ramp_fitting.utils:INFO] Extracting gain subarray to match science data
[jwst.lib.reffile_utils:DEBUG] science xstart=1, xsize=2048, ystart=135, ysize=64
[jwst.lib.reffile_utils:DEBUG] reference xstart=1, xsize=2048, ystart=1, ysize=2048
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.ramp_fitting.utils:INFO] Extracting readnoise subarray to match science data
[jwst.lib.reffile_utils:DEBUG] science xstart=1, xsize=2048, ystart=135, ysize=64
[jwst.lib.reffile_utils:DEBUG] reference xstart=1, xsize=2048, ystart=1, ysize=2048
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[jwst.ramp_fitting.ols_fit:DEBUG] Max segments=1
[jwst.ramp_fitting.ols_fit:DEBUG] Missing keyword DRPFRMS1, so setting to default value of 0
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.ramp_fitting.utils:DEBUG] The number of pixels having insufficient data
[jwst.ramp_fitting.utils:DEBUG] due to excessive CRs or saturation 513:
[jwst.ramp_fitting.utils:DEBUG] Count rates - min, mean, max, std: -628.206360, 67.917435, 11400.293945, 485.186340
[jwst.ramp_fitting.ols_fit:DEBUG] Instrument: NIRCAM
[jwst.ramp_fitting.ols_fit:DEBUG] Number of pixels in 2D array: 131072
[jwst.ramp_fitting.ols_fit:DEBUG] Shape of 2D image: (64, 2048)
[jwst.ramp_fitting.ols_fit:DEBUG] Shape of data cube: (7, 64, 2048)
[jwst.ramp_fitting.ols_fit:DEBUG] Buffer size (bytes): 307200000
[jwst.ramp_fitting.ols_fit:DEBUG] Number of rows per buffer: 64
[jwst.ramp_fitting.ols_fit:INFO] Number of groups per integration: 7
[jwst.ramp_fitting.ols_fit:INFO] Number of integrations: 731
[jwst.ramp_fitting.ols_fit:DEBUG] The execution time in seconds: 1138.768337
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:40:39,200 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit done
2021-10-19 15:40:39,527 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale running with args (<ImageModel(64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 15:40:39,531 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 15:40:39,618 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
[stpipe.Detector1Pipeline.gain_scale:INFO] GAINFACT not found in gain reference file
2021-10-19 15:40:39,621 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.gain_scale:INFO] Step will be skipped
2021-10-19 15:40:39,625 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale done
2021-10-19 15:40:39,780 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_uncal.fits>,).
2021-10-19 15:40:39,784 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 15:40:39,875 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
[stpipe.Detector1Pipeline.gain_scale:INFO] GAINFACT not found in gain reference file
2021-10-19 15:40:39,877 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.gain_scale:INFO] Step will be skipped
2021-10-19 15:40:39,883 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
[stpipe.Detector1Pipeline.gain_scale:INFO] Step gain_scale done
2021-10-19 15:40:42,594 - stpipe.Detector1Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_rateints.fits
[stpipe.Detector1Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_rateints.fits
[      root:INFO] ... ending calwebb_detector1
2021-10-19 15:40:42,697 - stpipe.Detector1Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_rate.fits
[stpipe.Detector1Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_rate.fits
2021-10-19 15:40:42,699 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline done
2021-10-19 15:40:42,722 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
[stpipe.Detector1Pipeline:INFO] Detector1Pipeline instance created.
2021-10-19 15:40:42,726 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
[stpipe.Detector1Pipeline.group_scale:INFO] GroupScaleStep instance created.
2021-10-19 15:40:42,730 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
[stpipe.Detector1Pipeline.dq_init:INFO] DQInitStep instance created.
2021-10-19 15:40:42,734 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
[stpipe.Detector1Pipeline.saturation:INFO] SaturationStep instance created.
2021-10-19 15:40:42,737 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
[stpipe.Detector1Pipeline.ipc:INFO] IPCStep instance created.
2021-10-19 15:40:42,741 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
[stpipe.Detector1Pipeline.superbias:INFO] SuperBiasStep instance created.
2021-10-19 15:40:42,745 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
[stpipe.Detector1Pipeline.refpix:INFO] RefPixStep instance created.
2021-10-19 15:40:42,749 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
[stpipe.Detector1Pipeline.rscd:INFO] RscdStep instance created.
2021-10-19 15:40:42,752 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
[stpipe.Detector1Pipeline.firstframe:INFO] FirstFrameStep instance created.
2021-10-19 15:40:42,756 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
[stpipe.Detector1Pipeline.lastframe:INFO] LastFrameStep instance created.
2021-10-19 15:40:42,759 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
[stpipe.Detector1Pipeline.linearity:INFO] LinearityStep instance created.
2021-10-19 15:40:42,763 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
[stpipe.Detector1Pipeline.dark_current:INFO] DarkCurrentStep instance created.
2021-10-19 15:40:42,766 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
[stpipe.Detector1Pipeline.reset:INFO] ResetStep instance created.
2021-10-19 15:40:42,770 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
[stpipe.Detector1Pipeline.persistence:INFO] PersistenceStep instance created.
2021-10-19 15:40:42,776 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
[stpipe.Detector1Pipeline.jump:INFO] JumpStep instance created.
2021-10-19 15:40:42,791 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
[stpipe.Detector1Pipeline.ramp_fit:INFO] RampFitStep instance created.
2021-10-19 15:40:42,796 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
[stpipe.Detector1Pipeline.gain_scale:INFO] GainScaleStep instance created.
2021-10-19 15:40:43,489 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1_uncal.fits',).
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1_uncal.fits',).
2021-10-19 15:40:43,514 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
[stpipe.Detector1Pipeline:INFO] Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
2021-10-19 15:40:53,843 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg004_nrca1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
[stpipe.Detector1Pipeline:INFO] Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg004_nrca1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
2021-10-19 15:40:53,855 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits'.
2021-10-19 15:40:53,859 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
2021-10-19 15:40:53,862 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits'.
2021-10-19 15:40:53,865 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits'.
2021-10-19 15:40:53,867 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
2021-10-19 15:40:53,870 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for REFPIX reference file is 'N/A'.
2021-10-19 15:40:53,872 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for RESET reference file is 'N/A'.
2021-10-19 15:40:53,874 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
[stpipe.Detector1Pipeline:INFO] Prefetch for RSCD reference file is 'N/A'.
2021-10-19 15:40:53,876 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits'.
2021-10-19 15:40:53,881 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits'.
[stpipe.Detector1Pipeline:INFO] Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits'.
[      root:INFO] Starting calwebb_detector1 ...
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[      root:DEBUG] Processing a Near-IR exposure
2021-10-19 15:41:21,479 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 15:41:21,483 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:41:26,804 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=1 is a power of 2; correction not needed
[stpipe.Detector1Pipeline.group_scale:INFO] NFRAMES=1 is a power of 2; correction not needed
2021-10-19 15:41:26,808 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
[stpipe.Detector1Pipeline.group_scale:INFO] Step will be skipped
2021-10-19 15:41:26,811 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
[stpipe.Detector1Pipeline.group_scale:INFO] Step group_scale done
2021-10-19 15:41:27,010 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 15:41:27,014 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:41:27,065 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits
[stpipe.Detector1Pipeline.dq_init:INFO] Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0044.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.dq_init.dq_initialization:INFO] Extracting mask subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:41:45,606 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
[stpipe.Detector1Pipeline.dq_init:INFO] Step dq_init done
2021-10-19 15:41:45,793 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 15:41:45,797 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:41:45,849 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits
[stpipe.Detector1Pipeline.saturation:INFO] Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0064.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.saturation.saturation:INFO] Extracting reference file subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.saturation.saturation:INFO] Detected 556 saturated pixels
[jwst.saturation.saturation:INFO] Detected 0 A/D floor pixels
2021-10-19 15:41:58,745 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
[stpipe.Detector1Pipeline.saturation:INFO] Step saturation done
2021-10-19 15:41:59,294 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 15:41:59,298 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
2021-10-19 15:41:59,300 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
[stpipe.Detector1Pipeline.ipc:INFO] Step skipped.
2021-10-19 15:41:59,303 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
[stpipe.Detector1Pipeline.ipc:INFO] Step ipc done
2021-10-19 15:41:59,459 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 15:41:59,463 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:41:59,514 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits
[stpipe.Detector1Pipeline.superbias:INFO] Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0026.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:42:23,131 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
[stpipe.Detector1Pipeline.superbias:INFO] Step superbias done
2021-10-19 15:42:23,322 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 15:42:23,326 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 15:42:23,351 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
[stpipe.Detector1Pipeline.refpix:INFO] use_side_ref_pixels = True
2021-10-19 15:42:23,354 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
[stpipe.Detector1Pipeline.refpix:INFO] odd_even_columns = True
2021-10-19 15:42:23,357 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
[stpipe.Detector1Pipeline.refpix:INFO] side_smoothing_length = 11
2021-10-19 15:42:23,358 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000
[stpipe.Detector1Pipeline.refpix:INFO] side_gain = 1.000000
2021-10-19 15:42:23,360 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True
[stpipe.Detector1Pipeline.refpix:INFO] odd_even_rows = True
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] Input exposure is a subarray readout
[jwst.lib.reffile_utils:DEBUG] Input exposure is a subarray readout
2021-10-19 16:10:31,618 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
[stpipe.Detector1Pipeline.refpix:INFO] Step refpix done
2021-10-19 16:10:32,145 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 16:10:32,148 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 16:10:32,195 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits
[stpipe.Detector1Pipeline.linearity:INFO] Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0056.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stcal.dynamicdq:WARNING] Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
[stcal.dynamicdq:WARNING] Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.linearity.linearity:INFO] Extracting linearity subarray to match science data
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.linearity.linearity:DEBUG] Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied.
2021-10-19 16:11:03,139 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
[stpipe.Detector1Pipeline.linearity:INFO] Step linearity done
2021-10-19 16:11:03,330 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 16:11:03,334 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
2021-10-19 16:11:03,336 - stpipe.Detector1Pipeline.persistence - INFO - Step skipped.
[stpipe.Detector1Pipeline.persistence:INFO] Step skipped.
2021-10-19 16:11:03,339 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done
[stpipe.Detector1Pipeline.persistence:INFO] Step persistence done
2021-10-19 16:11:03,493 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 16:11:03,497 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'dark_output': None}
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'dark_output': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 16:11:03,551 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits
[stpipe.Detector1Pipeline.dark_current:INFO] Using DARK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0273.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.dark_current.dark_sub:INFO] Science data nints=731, ngroups=7, nframes=1, groupgap=0
[jwst.dark_current.dark_sub:INFO] Dark data nints=1, ngroups=600, nframes=1, groupgap=0
[jwst.dark_current.dark_sub:DEBUG] subtract_dark: nints=731, ngroups=7, size=64,2048
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-19 16:11:11,349 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
[stpipe.Detector1Pipeline.dark_current:INFO] Step dark_current done
2021-10-19 16:11:11,887 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.jump:INFO] Step jump running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 16:11:11,892 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
[stpipe.Detector1Pipeline.jump:INFO] Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2021-10-19 16:11:11,894 - stpipe.Detector1Pipeline.jump - INFO - Step skipped.
[stpipe.Detector1Pipeline.jump:INFO] Step skipped.
2021-10-19 16:11:11,897 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
[stpipe.Detector1Pipeline.jump:INFO] Step jump done
2021-10-19 16:11:12,051 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit running with args (<RampModel(731, 7, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_uncal.fits>,).
2021-10-19 16:11:12,055 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
[stpipe.Detector1Pipeline.ramp_fit:INFO] Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.ramp_fitting.ramp_fit_step:INFO] Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.ramp_fitting.ramp_fit_step:INFO] Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.ramp_fitting.ramp_fit_step:INFO] Using algorithm = ols
[jwst.ramp_fitting.ramp_fit_step:INFO] Using weighting = optimal
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.ramp_fitting.utils:INFO] Extracting gain subarray to match science data
[jwst.lib.reffile_utils:DEBUG] science xstart=1, xsize=2048, ystart=135, ysize=64
[jwst.lib.reffile_utils:DEBUG] reference xstart=1, xsize=2048, ystart=1, ysize=2048
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.ramp_fitting.utils:INFO] Extracting readnoise subarray to match science data
[jwst.lib.reffile_utils:DEBUG] science xstart=1, xsize=2048, ystart=135, ysize=64
[jwst.lib.reffile_utils:DEBUG] reference xstart=1, xsize=2048, ystart=1, ysize=2048
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[jwst.ramp_fitting.ols_fit:DEBUG] Max segments=1

$\textbf{OUTPUT FILES:}$ Output files are *rateints.fits. The pipeline creates a rate.fits and a rateint.fits files in cases where there is more than one integration in a file, but only a rate.fits file in the case where there is only one integration in a file.

In [5]:
all_rateints_files = [] # All Rateints File Names. Also used to check that all the rateints file exist.  
BaseDirectory = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/'
for fitsName in glob.glob(BaseDirectory + '*nrca1_rateints.fits'): #Grabbing only nrca3 files from the directory
    all_rateints_files.append(fitsName)

$\textbf{Confirming a Source}$¶

Plotting one of the rateints.fits files to check that a target source is present before moving on to stage 2 and stage 3.

In [6]:
#A check to ensure the star is in the file
file = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg006_nrca1_rateints.fits' #random file from the rateints list
HDUList = fits.open(file)
#HDUList.info()

image2D = HDUList[1].data[0]
image2D.shape

fig, ax = plt.subplots(figsize=(22,5))
ax.imshow(image2D, vmin=0, vmax=1000)
#ax.plot(image2D[32,:])
#ax.set_xlim(900,1000)
Out[6]:
<matplotlib.image.AxesImage at 0x7fc83fca3820>

$\textbf{Split the Integrations for tshirt (referenced later)}$¶

In [21]:
#splitegrate
#Splintegrate splits and combines integrations from the pipeline up.
#Set flipToDet = False to not flip the x-axis
#This is a step required if running tshirt

#This simulation has multiple segments that need to be split for tshirt purposes.
BaseDirectory = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/'
for rateints_segment in glob.glob(BaseDirectory + '*nrca1_rateints.fits'): #Grabbing only nrca3 files from the directory
    outDir = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/splintegrate/'
    splint = splintegrate.splint(inFile=rateints_segment,outDir=outDir,flipToDet=False)
    splint.split()
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 57.01it/s]
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 57.54it/s]
100%|█████████████████████████████████████████| 731/731 [00:13<00:00, 56.10it/s]
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 58.10it/s]
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 58.24it/s]
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 57.64it/s]
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 57.83it/s]
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 57.31it/s]
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 57.85it/s]
100%|█████████████████████████████████████████| 731/731 [00:12<00:00, 58.42it/s]
100%|███████████████████████████████████████████| 40/40 [00:00<00:00, 53.84it/s]

$\textbf{Association Files}$¶

$\textbf{Organizing the Detector1Pipeline Output Files}$¶

Associations are basically just lists of things, mostly exposures, that are somehow related. An association file is a JSON-format file that contains a list of all the files with the same instrument set-up (filter, observation mode, etc) that might be combined into a single image. Relationships between multiple exposures are captured in an association, which is a means of identifying a set of exposures that belong together and may be dependent upon one another. The association concept permits exposures to be calibrated, archived, retrieved, and reprocessed as a set rather than as individual objects.

In [7]:
asn_dir = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/' #Name the association file's directory. 
level2_asn = (os.path.join(asn_dir, 'nrca1_level2_asn.json')) #Name the stage 2 association file and give it a path. 
asn_stage2 = asn_from_list(all_rateints_files,rule=DMSLevel2bBase) #The rateints files; DMSLevel2bBase indicates that a Level2 association is to be created.
with open(level2_asn, 'w') as fh: #Write an association file. 
   fh.write(asn_stage2.dump()[1])

$\textbf{Stage 2}$¶

$\textbf{Processes JWST imaging-mode slope data from Level-2a to Level-2b.}$¶

Stage 2 processing consists of additional instrument-level and observing-mode corrections and calibrations to produce fully calibrated exposures. The details differ for imaging and spectroscopic exposures, and there are some corrections that are unique to certain instruments or modes.

$\textbf{Image2Pipeline:}$¶

Imaging processing applies additional instrumental corrections and calibrations that result in a fully calibrated individual exposure. Imaging TSO data are run through this pipeline. The steps are very similar to those in Spec2Pipeline. WCS information is added, flat fielding and flux calibration are performed, and astrometric distortion is removed from the images. There are two parameter references used to control this pipeline, depending on whether the data are to be treated as Time Series Observation (TSO). The parameter reference is provided by CRDS. For TSO exposures, some steps are set to be skipped by default.

$\textbf{INPUT FILES:}$ The input to Image2Pipeline is a countrate exposure, in the form of either “_rate” or “_rateints” data. A single input file can be processed or an ASN file listing multiple inputs can be used, in which case the processing steps will be applied to each input exposure, one at a time. If “_rateints” products are used as input, each step applies its algorithm to each integration in the exposure, where appropriate.

In [27]:
startTime = time.time() #Time how long this step takes
#The file to use is the stage 2 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage2 = Image2Pipeline()

# Specify that you want results saved to a file
pipeline_stage2.save_results = True
pipeline_stage2.output_dir = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/'

# Execute the pipeline using the run method
result_stage2 = pipeline_stage2.run(level2_asn)

executionTime = (time.time() - startTime)
print('Stage 2 Execution Time in Seconds: ' + str(executionTime)) #Time how long this step takes
2021-10-26 00:49:23,492 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
[stpipe.Image2Pipeline:INFO] Image2Pipeline instance created.
2021-10-26 00:49:23,501 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
[stpipe.Image2Pipeline.bkg_subtract:INFO] BackgroundStep instance created.
2021-10-26 00:49:23,510 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
[stpipe.Image2Pipeline.assign_wcs:INFO] AssignWcsStep instance created.
2021-10-26 00:49:23,517 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
[stpipe.Image2Pipeline.flat_field:INFO] FlatFieldStep instance created.
2021-10-26 00:49:23,524 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
[stpipe.Image2Pipeline.photom:INFO] PhotomStep instance created.
2021-10-26 00:49:23,532 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
[stpipe.Image2Pipeline.resample:INFO] ResampleStep instance created.
2021-10-26 00:49:23,768 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/nrca1_level2_asn.json',).
[stpipe.Image2Pipeline:INFO] Step Image2Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/nrca1_level2_asn.json',).
2021-10-26 00:49:23,781 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}}
[stpipe.Image2Pipeline:INFO] Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.datamodels.container:DEBUG] Filtering datasets based on allowed exptypes ['science']:
[jwst.datamodels.container:DEBUG] Files accepted for processing /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rateints.fits:
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:49:38,100 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg001_nrca1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg']
[stpipe.Image2Pipeline:INFO] Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg001_nrca1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg']
2021-10-26 00:49:38,115 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits'.
[stpipe.Image2Pipeline:INFO] Prefetch for AREA reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits'.
2021-10-26 00:49:38,117 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for CAMERA reference file is 'N/A'.
2021-10-26 00:49:38,119 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for COLLIMATOR reference file is 'N/A'.
2021-10-26 00:49:38,121 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for DFLAT reference file is 'N/A'.
2021-10-26 00:49:38,123 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for DISPERSER reference file is 'N/A'.
2021-10-26 00:49:38,125 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf'.
[stpipe.Image2Pipeline:INFO] Prefetch for DISTORTION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf'.
2021-10-26 00:49:38,133 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_drizpars_0001.fits'.
[stpipe.Image2Pipeline:INFO] Prefetch for DRIZPARS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_drizpars_0001.fits'.
2021-10-26 00:49:38,136 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for FFLAT reference file is 'N/A'.
2021-10-26 00:49:38,138 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf'.
[stpipe.Image2Pipeline:INFO] Prefetch for FILTEROFFSET reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf'.
2021-10-26 00:49:38,142 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits'.
[stpipe.Image2Pipeline:INFO] Prefetch for FLAT reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits'.
2021-10-26 00:49:38,145 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for FORE reference file is 'N/A'.
2021-10-26 00:49:38,147 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for FPA reference file is 'N/A'.
2021-10-26 00:49:38,149 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for IFUFORE reference file is 'N/A'.
2021-10-26 00:49:38,151 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for IFUPOST reference file is 'N/A'.
2021-10-26 00:49:38,153 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for IFUSLICER reference file is 'N/A'.
2021-10-26 00:49:38,155 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for MSA reference file is 'N/A'.
2021-10-26 00:49:38,157 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for OTE reference file is 'N/A'.
2021-10-26 00:49:38,159 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits'.
[stpipe.Image2Pipeline:INFO] Prefetch for PHOTOM reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits'.
2021-10-26 00:49:38,161 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for REGIONS reference file is 'N/A'.
2021-10-26 00:49:38,163 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for SFLAT reference file is 'N/A'.
2021-10-26 00:49:38,165 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for SPECWCS reference file is 'N/A'.
2021-10-26 00:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2021-10-26 00:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'.
[stpipe.Image2Pipeline:INFO] Prefetch for WFSSBKG reference file is 'N/A'.
2021-10-26 00:49:38,172 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
[stpipe.Image2Pipeline:INFO] Starting calwebb_image2 ...
2021-10-26 00:49:38,219 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1
[stpipe.Image2Pipeline:INFO] Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1
2021-10-26 00:49:38,222 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rateints.fits ...
[stpipe.Image2Pipeline:INFO] Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rateints.fits ...
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:49:53,510 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_rateints.fits>,).
2021-10-26 00:49:53,515 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[py.warnings:WARNING] /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

[jwst.assign_wcs.util:INFO] Update S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] assign_wcs updated S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] COMPLETED assign_wcs
2021-10-26 00:50:03,481 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs done
2021-10-26 00:50:03,795 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_rateints.fits>,).
2021-10-26 00:50:03,799 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.flat_field:DEBUG] Input is CubeModel of exposure type NRC_TSIMAGE
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stpipe.Image2Pipeline.flat_field:DEBUG] Using FLAT reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type FFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type SFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type DFLAT
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.flatfield.flat_field:DEBUG] Flat field correction for non-NIRSpec modes.
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.flatfield.flat_field:INFO] Extracting matching subarray from flat
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:50:09,097 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field done
2021-10-26 00:50:09,460 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.photom:INFO] Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_rateints.fits>,).
2021-10-26 00:50:09,464 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stpipe.Image2Pipeline.photom:INFO] Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.photom:DEBUG] Input is CubeModel
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:50:09,545 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
[stpipe.Image2Pipeline.photom:INFO] Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
2021-10-26 00:50:09,547 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stpipe.Image2Pipeline.photom:INFO] Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.photom.photom:INFO] Using instrument: NIRCAM
[jwst.photom.photom:INFO]  detector: NRCA1
[jwst.photom.photom:INFO]  exp_type: NRC_TSIMAGE
[jwst.photom.photom:INFO]  filter: WLP4
[jwst.photom.photom:INFO]  pupil: CLEAR
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.photom.photom:INFO] Pixel area map copied to output.
[jwst.photom.photom:DEBUG] PIXAR_SR = 2.292514304171e-14, PIXAR_A2 = 0.000975354114773201
[jwst.photom.photom:DEBUG] Starting cal_nircam
[jwst.photom.photom:INFO] PHOTMJSR value: 18.8148
2021-10-26 00:50:12,466 - stpipe.Image2Pipeline.photom - INFO - Step photom done
[stpipe.Image2Pipeline.photom:INFO] Step photom done
2021-10-26 00:50:12,469 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1
[stpipe.Image2Pipeline:INFO] Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1
2021-10-26 00:50:12,472 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1
[stpipe.Image2Pipeline:INFO] Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1
2021-10-26 00:50:12,475 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_rateints.fits ...
[stpipe.Image2Pipeline:INFO] Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_rateints.fits ...
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:50:21,827 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_rateints.fits>,).
2021-10-26 00:50:21,832 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[py.warnings:WARNING] /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

[jwst.assign_wcs.util:INFO] Update S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] assign_wcs updated S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] COMPLETED assign_wcs
2021-10-26 00:50:23,516 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs done
2021-10-26 00:50:23,886 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_rateints.fits>,).
2021-10-26 00:50:23,893 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.flat_field:DEBUG] Input is CubeModel of exposure type NRC_TSIMAGE
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stpipe.Image2Pipeline.flat_field:DEBUG] Using FLAT reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type FFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type SFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type DFLAT
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.flatfield.flat_field:DEBUG] Flat field correction for non-NIRSpec modes.
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.flatfield.flat_field:INFO] Extracting matching subarray from flat
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:50:36,216 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field done
2021-10-26 00:50:36,459 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.photom:INFO] Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_rateints.fits>,).
2021-10-26 00:50:36,463 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stpipe.Image2Pipeline.photom:INFO] Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.photom:DEBUG] Input is CubeModel
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:50:36,542 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
[stpipe.Image2Pipeline.photom:INFO] Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
2021-10-26 00:50:36,544 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stpipe.Image2Pipeline.photom:INFO] Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.photom.photom:INFO] Using instrument: NIRCAM
[jwst.photom.photom:INFO]  detector: NRCA1
[jwst.photom.photom:INFO]  exp_type: NRC_TSIMAGE
[jwst.photom.photom:INFO]  filter: WLP4
[jwst.photom.photom:INFO]  pupil: CLEAR
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.photom.photom:INFO] Pixel area map copied to output.
[jwst.photom.photom:DEBUG] PIXAR_SR = 2.292514304171e-14, PIXAR_A2 = 0.000975354114773201
[jwst.photom.photom:DEBUG] Starting cal_nircam
[jwst.photom.photom:INFO] PHOTMJSR value: 18.8148
2021-10-26 00:50:39,407 - stpipe.Image2Pipeline.photom - INFO - Step photom done
[stpipe.Image2Pipeline.photom:INFO] Step photom done
2021-10-26 00:50:39,410 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1
[stpipe.Image2Pipeline:INFO] Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1
2021-10-26 00:50:39,414 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1
[stpipe.Image2Pipeline:INFO] Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1
2021-10-26 00:50:39,416 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_rateints.fits ...
[stpipe.Image2Pipeline:INFO] Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_rateints.fits ...
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:50:46,147 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_rateints.fits>,).
2021-10-26 00:50:46,152 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[py.warnings:WARNING] /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

[jwst.assign_wcs.util:INFO] Update S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] assign_wcs updated S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] COMPLETED assign_wcs
2021-10-26 00:50:50,400 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs done
2021-10-26 00:50:50,752 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_rateints.fits>,).
2021-10-26 00:50:50,756 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.flat_field:DEBUG] Input is CubeModel of exposure type NRC_TSIMAGE
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stpipe.Image2Pipeline.flat_field:DEBUG] Using FLAT reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type FFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type SFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type DFLAT
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.flatfield.flat_field:DEBUG] Flat field correction for non-NIRSpec modes.
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.flatfield.flat_field:INFO] Extracting matching subarray from flat
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:51:04,663 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field done
2021-10-26 00:51:04,968 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.photom:INFO] Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_rateints.fits>,).
2021-10-26 00:51:04,971 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stpipe.Image2Pipeline.photom:INFO] Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.photom:DEBUG] Input is CubeModel
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:51:05,042 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
[stpipe.Image2Pipeline.photom:INFO] Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
2021-10-26 00:51:05,043 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stpipe.Image2Pipeline.photom:INFO] Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.photom.photom:INFO] Using instrument: NIRCAM
[jwst.photom.photom:INFO]  detector: NRCA1
[jwst.photom.photom:INFO]  exp_type: NRC_TSIMAGE
[jwst.photom.photom:INFO]  filter: WLP4
[jwst.photom.photom:INFO]  pupil: CLEAR
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.photom.photom:INFO] Pixel area map copied to output.
[jwst.photom.photom:DEBUG] PIXAR_SR = 2.292514304171e-14, PIXAR_A2 = 0.000975354114773201
[jwst.photom.photom:DEBUG] Starting cal_nircam
[jwst.photom.photom:INFO] PHOTMJSR value: 18.8148
2021-10-26 00:51:13,926 - stpipe.Image2Pipeline.photom - INFO - Step photom done
[stpipe.Image2Pipeline.photom:INFO] Step photom done
2021-10-26 00:51:13,929 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1
[stpipe.Image2Pipeline:INFO] Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1
2021-10-26 00:51:13,932 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1
[stpipe.Image2Pipeline:INFO] Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1
2021-10-26 00:51:13,934 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1_rateints.fits ...
[stpipe.Image2Pipeline:INFO] Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1_rateints.fits ...
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:51:21,633 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_rateints.fits>,).
2021-10-26 00:51:21,638 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[py.warnings:WARNING] /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

[jwst.assign_wcs.util:INFO] Update S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] assign_wcs updated S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] COMPLETED assign_wcs
2021-10-26 00:51:28,329 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs done
2021-10-26 00:51:28,681 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_rateints.fits>,).
2021-10-26 00:51:28,686 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.flat_field:DEBUG] Input is CubeModel of exposure type NRC_TSIMAGE
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stpipe.Image2Pipeline.flat_field:DEBUG] Using FLAT reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type FFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type SFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type DFLAT
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.flatfield.flat_field:DEBUG] Flat field correction for non-NIRSpec modes.
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.flatfield.flat_field:INFO] Extracting matching subarray from flat
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:51:43,209 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field done
2021-10-26 00:51:43,597 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.photom:INFO] Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_rateints.fits>,).
2021-10-26 00:51:43,601 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stpipe.Image2Pipeline.photom:INFO] Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.photom:DEBUG] Input is CubeModel
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:51:43,680 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
[stpipe.Image2Pipeline.photom:INFO] Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
2021-10-26 00:51:43,682 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stpipe.Image2Pipeline.photom:INFO] Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.photom.photom:INFO] Using instrument: NIRCAM
[jwst.photom.photom:INFO]  detector: NRCA1
[jwst.photom.photom:INFO]  exp_type: NRC_TSIMAGE
[jwst.photom.photom:INFO]  filter: WLP4
[jwst.photom.photom:INFO]  pupil: CLEAR
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.photom.photom:INFO] Pixel area map copied to output.
[jwst.photom.photom:DEBUG] PIXAR_SR = 2.292514304171e-14, PIXAR_A2 = 0.000975354114773201
[jwst.photom.photom:DEBUG] Starting cal_nircam
[jwst.photom.photom:INFO] PHOTMJSR value: 18.8148
2021-10-26 00:51:52,630 - stpipe.Image2Pipeline.photom - INFO - Step photom done
[stpipe.Image2Pipeline.photom:INFO] Step photom done
2021-10-26 00:51:52,632 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1
[stpipe.Image2Pipeline:INFO] Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1
2021-10-26 00:51:52,635 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg005_nrca1
[stpipe.Image2Pipeline:INFO] Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg005_nrca1
2021-10-26 00:51:52,637 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg005_nrca1_rateints.fits ...
[stpipe.Image2Pipeline:INFO] Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg005_nrca1_rateints.fits ...
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg005_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:52:00,281 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg005_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg005_nrca1_rateints.fits>,).
2021-10-26 00:52:00,286 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:54:04,058 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_rateints.fits>,).
2021-10-26 00:54:04,063 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[py.warnings:WARNING] /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

[jwst.assign_wcs.util:INFO] Update S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] assign_wcs updated S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] COMPLETED assign_wcs
2021-10-26 00:54:10,950 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs done
2021-10-26 00:54:11,315 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_rateints.fits>,).
2021-10-26 00:54:11,319 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.flat_field:DEBUG] Input is CubeModel of exposure type NRC_TSIMAGE
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stpipe.Image2Pipeline.flat_field:DEBUG] Using FLAT reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type FFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type SFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type DFLAT
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.flatfield.flat_field:DEBUG] Flat field correction for non-NIRSpec modes.
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.flatfield.flat_field:INFO] Extracting matching subarray from flat
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:54:27,235 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field done
2021-10-26 00:54:27,661 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.photom:INFO] Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_rateints.fits>,).
2021-10-26 00:54:27,668 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stpipe.Image2Pipeline.photom:INFO] Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.photom:DEBUG] Input is CubeModel
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:54:27,795 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
[stpipe.Image2Pipeline.photom:INFO] Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
2021-10-26 00:54:27,798 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stpipe.Image2Pipeline.photom:INFO] Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.photom.photom:INFO] Using instrument: NIRCAM
[jwst.photom.photom:INFO]  detector: NRCA1
[jwst.photom.photom:INFO]  exp_type: NRC_TSIMAGE
[jwst.photom.photom:INFO]  filter: WLP4
[jwst.photom.photom:INFO]  pupil: CLEAR
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.photom.photom:INFO] Pixel area map copied to output.
[jwst.photom.photom:DEBUG] PIXAR_SR = 2.292514304171e-14, PIXAR_A2 = 0.000975354114773201
[jwst.photom.photom:DEBUG] Starting cal_nircam
[jwst.photom.photom:INFO] PHOTMJSR value: 18.8148
2021-10-26 00:54:34,921 - stpipe.Image2Pipeline.photom - INFO - Step photom done
[stpipe.Image2Pipeline.photom:INFO] Step photom done
2021-10-26 00:54:34,925 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg008_nrca1
[stpipe.Image2Pipeline:INFO] Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg008_nrca1
2021-10-26 00:54:34,927 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1
[stpipe.Image2Pipeline:INFO] Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1
2021-10-26 00:54:34,929 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1_rateints.fits ...
[stpipe.Image2Pipeline:INFO] Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1_rateints.fits ...
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:54:49,955 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_rateints.fits>,).
2021-10-26 00:54:49,988 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[py.warnings:WARNING] /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

[jwst.assign_wcs.util:INFO] Update S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] assign_wcs updated S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] COMPLETED assign_wcs
2021-10-26 00:54:56,891 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs done
2021-10-26 00:54:57,249 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_rateints.fits>,).
2021-10-26 00:54:57,253 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.flat_field:DEBUG] Input is CubeModel of exposure type NRC_TSIMAGE
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stpipe.Image2Pipeline.flat_field:DEBUG] Using FLAT reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type FFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type SFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type DFLAT
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.flatfield.flat_field:DEBUG] Flat field correction for non-NIRSpec modes.
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.flatfield.flat_field:INFO] Extracting matching subarray from flat
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:55:12,709 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field done
2021-10-26 00:55:13,125 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.photom:INFO] Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_rateints.fits>,).
2021-10-26 00:55:13,129 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stpipe.Image2Pipeline.photom:INFO] Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.photom:DEBUG] Input is CubeModel
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:55:13,208 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
[stpipe.Image2Pipeline.photom:INFO] Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
2021-10-26 00:55:13,210 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stpipe.Image2Pipeline.photom:INFO] Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.photom.photom:INFO] Using instrument: NIRCAM
[jwst.photom.photom:INFO]  detector: NRCA1
[jwst.photom.photom:INFO]  exp_type: NRC_TSIMAGE
[jwst.photom.photom:INFO]  filter: WLP4
[jwst.photom.photom:INFO]  pupil: CLEAR
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.photom.photom:INFO] Pixel area map copied to output.
[jwst.photom.photom:DEBUG] PIXAR_SR = 2.292514304171e-14, PIXAR_A2 = 0.000975354114773201
[jwst.photom.photom:DEBUG] Starting cal_nircam
[jwst.photom.photom:INFO] PHOTMJSR value: 18.8148
2021-10-26 00:55:22,706 - stpipe.Image2Pipeline.photom - INFO - Step photom done
[stpipe.Image2Pipeline.photom:INFO] Step photom done
2021-10-26 00:55:22,709 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1
[stpipe.Image2Pipeline:INFO] Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1
2021-10-26 00:55:22,712 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1
[stpipe.Image2Pipeline:INFO] Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1
2021-10-26 00:55:22,714 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1_rateints.fits ...
[stpipe.Image2Pipeline:INFO] Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1_rateints.fits ...
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:55:35,092 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_rateints.fits>,).
2021-10-26 00:55:35,139 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[py.warnings:WARNING] /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

[jwst.assign_wcs.util:INFO] Update S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] assign_wcs updated S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] COMPLETED assign_wcs
2021-10-26 00:55:42,235 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs done
2021-10-26 00:55:42,595 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_rateints.fits>,).
2021-10-26 00:55:42,599 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.flat_field:DEBUG] Input is CubeModel of exposure type NRC_TSIMAGE
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stpipe.Image2Pipeline.flat_field:DEBUG] Using FLAT reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type FFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type SFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type DFLAT
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.flatfield.flat_field:DEBUG] Flat field correction for non-NIRSpec modes.
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.flatfield.flat_field:INFO] Extracting matching subarray from flat
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:55:56,924 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field done
2021-10-26 00:55:57,318 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.photom:INFO] Step photom running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_rateints.fits>,).
2021-10-26 00:55:57,322 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stpipe.Image2Pipeline.photom:INFO] Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.photom:DEBUG] Input is CubeModel
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:55:57,399 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
[stpipe.Image2Pipeline.photom:INFO] Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
2021-10-26 00:55:57,401 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stpipe.Image2Pipeline.photom:INFO] Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.photom.photom:INFO] Using instrument: NIRCAM
[jwst.photom.photom:INFO]  detector: NRCA1
[jwst.photom.photom:INFO]  exp_type: NRC_TSIMAGE
[jwst.photom.photom:INFO]  filter: WLP4
[jwst.photom.photom:INFO]  pupil: CLEAR
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.photom.photom:INFO] Pixel area map copied to output.
[jwst.photom.photom:DEBUG] PIXAR_SR = 2.292514304171e-14, PIXAR_A2 = 0.000975354114773201
[jwst.photom.photom:DEBUG] Starting cal_nircam
[jwst.photom.photom:INFO] PHOTMJSR value: 18.8148
2021-10-26 00:56:05,288 - stpipe.Image2Pipeline.photom - INFO - Step photom done
[stpipe.Image2Pipeline.photom:INFO] Step photom done
2021-10-26 00:56:05,290 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1
[stpipe.Image2Pipeline:INFO] Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1
2021-10-26 00:56:05,295 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1
[stpipe.Image2Pipeline:INFO] Processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1
2021-10-26 00:56:05,296 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1_rateints.fits ...
[stpipe.Image2Pipeline:INFO] Working on input /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1_rateints.fits ...
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] FITS hash matches. Skipping FITS updating.
[stdatamodels.fits_support:DEBUG] Skipping FITS keyword updating except for BinTableHDU and its associated header keywords.
2021-10-26 00:56:06,361 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_rateints.fits>,).
2021-10-26 00:56:06,366 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.assign_wcs.assign_wcs_step:DEBUG] reference files used in assign_wcs: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'}
[jwst.assign_wcs.nircam:DEBUG] reference files used in NIRCAM WCS pipeline: {'distortion': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0093.asdf', 'filteroffset': '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[py.warnings:WARNING] /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

[jwst.assign_wcs.util:INFO] Update S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] assign_wcs updated S_REGION to POLYGON ICRS  300.200027741 22.704829182 300.200187261 22.705370851 300.181590315 22.710204463 300.181421741 22.709663842
[jwst.assign_wcs.assign_wcs:INFO] COMPLETED assign_wcs
2021-10-26 00:56:08,615 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
[stpipe.Image2Pipeline.assign_wcs:INFO] Step assign_wcs done
2021-10-26 00:56:08,816 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_rateints.fits>,).
2021-10-26 00:56:08,820 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.flat_field:DEBUG] Input is CubeModel of exposure type NRC_TSIMAGE
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[stpipe.Image2Pipeline.flat_field:DEBUG] Using FLAT reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0290.fits
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type FFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type SFLAT
[stpipe.Image2Pipeline.flat_field:DEBUG] No reference found for type DFLAT
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.flatfield.flat_field:DEBUG] Flat field correction for non-NIRSpec modes.
[jwst.lib.reffile_utils:DEBUG] ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048
[jwst.lib.reffile_utils:DEBUG] sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64
[jwst.flatfield.flat_field:INFO] Extracting matching subarray from flat
[jwst.lib.reffile_utils:DEBUG] slice xstart=0, xstop=2048, ystart=134, ystop=198
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:56:09,821 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
[stpipe.Image2Pipeline.flat_field:INFO] Step flat_field done
2021-10-26 00:56:10,022 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_rateints.fits>,).
[stpipe.Image2Pipeline.photom:INFO] Step photom running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_rateints.fits>,).
2021-10-26 00:56:10,026 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stpipe.Image2Pipeline.photom:INFO] Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'inverse': False, 'source_type': None}
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stpipe.Image2Pipeline.photom:DEBUG] Input is CubeModel
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
2021-10-26 00:56:10,102 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
[stpipe.Image2Pipeline.photom:INFO] Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits
2021-10-26 00:56:10,105 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stpipe.Image2Pipeline.photom:INFO] Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[jwst.photom.photom:INFO] Using instrument: NIRCAM
[jwst.photom.photom:INFO]  detector: NRCA1
[jwst.photom.photom:INFO]  exp_type: NRC_TSIMAGE
[jwst.photom.photom:INFO]  filter: WLP4
[jwst.photom.photom:INFO]  pupil: CLEAR
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0089.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[stdatamodels.fits_support:DEBUG] No ASDF information found. Cannot skip updating from FITS headers.
[jwst.datamodels.util:DEBUG] Opening /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0005.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'>
[stdatamodels.util:DEBUG] Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False".
[stdatamodels.util:DEBUG] Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True".
[stdatamodels.util:DEBUG] Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None".
[jwst.photom.photom:INFO] Pixel area map copied to output.
[jwst.photom.photom:DEBUG] PIXAR_SR = 2.292514304171e-14, PIXAR_A2 = 0.000975354114773201
[jwst.photom.photom:DEBUG] Starting cal_nircam
[jwst.photom.photom:INFO] PHOTMJSR value: 18.8148
2021-10-26 00:56:10,417 - stpipe.Image2Pipeline.photom - INFO - Step photom done
[stpipe.Image2Pipeline.photom:INFO] Step photom done
2021-10-26 00:56:10,420 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1
[stpipe.Image2Pipeline:INFO] Finished processing product /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1
2021-10-26 00:56:10,423 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
[stpipe.Image2Pipeline:INFO] ... ending calwebb_image2
2021-10-26 00:56:14,578 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg001_nrca1_calints.fits
2021-10-26 00:56:19,252 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg002_nrca1_calints.fits
2021-10-26 00:56:24,239 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg003_nrca1_calints.fits
2021-10-26 00:56:29,339 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg004_nrca1_calints.fits
2021-10-26 00:56:34,631 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg005_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg005_nrca1_calints.fits
2021-10-26 00:56:40,221 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg006_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg006_nrca1_calints.fits
2021-10-26 00:56:45,139 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg007_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg007_nrca1_calints.fits
2021-10-26 00:56:50,085 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg008_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg008_nrca1_calints.fits
2021-10-26 00:56:56,240 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg009_nrca1_calints.fits
2021-10-26 00:57:02,292 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg010_nrca1_calints.fits
2021-10-26 00:57:02,749 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1_calints.fits
[stpipe.Image2Pipeline:INFO] Saved model in /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/jw01185001001_01101_00001-seg011_nrca1_calints.fits
2021-10-26 00:57:02,751 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
[stpipe.Image2Pipeline:INFO] Step Image2Pipeline done
Stage 2 Execution Time in Seconds: 459.28643560409546

$\textbf{OUTPUT FILES:}$ The output is a fully calibrated, but unrectified, exposure, using the product type suffix “_cal” or “_calints”, depending on the type of input.

In [8]:
all_calints_files = [] # All Calibrated Data File Names. Also used to check that all the calints files exist.  
BaseDirectory = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/'
for fitsName in glob.glob(BaseDirectory + '*nrca1_calints.fits'): #Grabbing only nrca3 files from the directory
    HDUList = fits.open(fitsName, 'update')
    HDUList[1].header['XREF_SCI'] = (1982.2, 'Aperture X reference point in SCI frame') #Fix x-position centering
    HDUList[1].header['YREF_SCI'] = (30.2, 'Aperture Y reference point in SCI frame') #Fix the y-position centering
    HDUList.close()
    all_calints_files.append(fitsName)
all_calints_files = sorted(all_calints_files) #sort files alphabetically. 
In [9]:
#Generate an association file required for stage 3
asn_dir = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/' #Name the association file's directory. 
level3_asn = (os.path.join(asn_dir, 'nrca1_level3_asn.json')) #Name the stage 3 association file and give it a path.
asn_stage3 = asn_from_list(all_calints_files, product_name ='HD189733b_nrca1_level3_asn') #The rateints files; Name the output..
with open(level3_asn, 'w') as fh: #Write an association file. 
   fh.write(asn_stage3.dump()[1])

$\textbf{Stage 3}$¶

$\textbf{Applies level 3 processing to TSO-mode data from}$¶

Stage 3 processing consists of routines that work with multiple exposures and in most cases produce some kind of combined product. There are unique pipeline modules for stage 3 processing of imaging, spectroscopic, coronagraphic, AMI, and TSO observations.

$\textbf{Tso3Pipeline:}$¶

The Stage 3 TSO pipeline is to be applied to associations of calibrated TSO exposures (e.g. NIRCam TS imaging, NIRCam TS grism, NIRISS SOSS, NIRSpec BrightObj, MIRI LRS Slitless) and is used to produce calibrated time-series photometry or spectra of the source object. This is a pipeline customized for TSO data. Grism TSO data undergo outlier detection (essentially a check for any cosmic rays/transient effects that were missed in Detector1Pipeline), background subtraction, spectral extraction, and photometry. Imaging TSO data are run through outlier detection, and photometry is performed.

The logic that decides whether to apply the imaging or spectroscopy steps is based on the EXP_TYPE and TSOVISIT keyword values of the input data. Imaging steps are applied if either of the following is true:

  • EXP_TYPE = ‘NRC_TSIMAGE’

  • EXP_TYPE = ‘MIR_IMAGE’ and TSOVISIT = True

$\textbf{INPUT FILES:}$ The spectroscopy steps will be applied in all other cases. The input to calwebb_tso3 is in the form of an ASN file that lists multiple exposures or exposure segments of a science target. The individual inputs should be in the form of 3D calibrated (“_calints”) products from either calwebb_image2 or calwebb_spec2 processing.

In [13]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2021-11-08 19:47:01,999 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2021-11-08 19:47:02,007 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2021-11-08 19:47:02,012 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2021-11-08 19:47:02,018 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2021-11-08 19:47:02,023 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2021-11-08 19:47:02,259 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/nrca1_level3_asn.json',).
2021-11-08 19:47:02,269 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2021-11-08 19:47:04,703 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg001_nrca1_calints.fits' reftypes = ['gain', 'readnoise']
2021-11-08 19:47:06,076 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
2021-11-08 19:47:06,078 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
2021-11-08 19:47:06,080 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2021-11-08 19:48:31,626 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:48:32,333 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:48:32,337 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:48:32,338 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:48:32,680 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:49:32,619 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:49:33,419 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:49:33,424 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:49:33,426 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:49:33,764 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:50:33,218 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:50:33,820 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:50:33,824 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:50:33,826 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:50:34,164 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:51:33,626 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:51:34,235 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:51:34,239 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:51:34,240 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:51:34,578 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:52:34,133 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:52:34,743 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:52:34,747 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:52:34,748 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:52:35,086 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:53:34,537 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:53:35,139 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:53:35,143 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:53:35,144 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:53:35,483 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:54:35,011 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:54:35,622 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:54:35,627 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:54:35,628 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:54:35,966 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:55:35,483 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:55:36,095 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:55:36,099 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:55:36,100 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:55:36,439 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:56:35,825 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:56:36,422 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:56:36,426 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:56:36,427 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:56:36,764 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:57:36,316 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:57:36,931 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:57:36,935 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:57:36,937 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:57:37,276 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:57:40,573 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 19:57:41,393 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 19:57:41,397 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 19:57:41,399 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 19:57:41,419 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 19:57:41,655 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_calints.fits>,).
2021-11-08 19:57:41,658 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:43,113 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:43,314 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_calints.fits>,).
2021-11-08 19:57:43,316 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:44,717 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:44,928 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_calints.fits>,).
2021-11-08 19:57:44,931 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:46,312 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:46,627 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_calints.fits>,).
2021-11-08 19:57:46,630 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:48,025 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:48,323 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg005_nrca1_calints.fits>,).
2021-11-08 19:57:48,328 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:49,874 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:50,289 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg006_nrca1_calints.fits>,).
2021-11-08 19:57:50,292 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:51,643 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:51,934 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg007_nrca1_calints.fits>,).
2021-11-08 19:57:51,938 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:53,285 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:53,524 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_calints.fits>,).
2021-11-08 19:57:53,527 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:54,941 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:55,217 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_calints.fits>,).
2021-11-08 19:57:55,220 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:56,674 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:56,893 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_calints.fits>,).
2021-11-08 19:57:56,896 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:58,298 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:58,502 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_calints.fits>,).
2021-11-08 19:57:58,506 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 19:57:58,645 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 19:57:58,662 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_nrca1_level3_asn_phot.ecsv
2021-11-08 19:57:59,191 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done

$\textbf{OUTPUT FILES:}$ For imaging TS observations, the tso_photometry step produces a source catalog containing photometry results from all of the “_crfints” products, organized as a function of integration time stamps. This file is saved in ASCII “ecsv” format, with a product type of “_phot.” The file naming is source-based, using the output product name specified in the ASN file.

$\textbf{Plotting Results: Unaltered}$¶

Initial pipeline results without altering the aperture sizes. In this particular simulation, there is an edge effect (the observation is cut off on the top and bottom). We want to see how observations that turn out this way in real life can effect the results the pipline returns.

TSOPHOT reference files are ASDF format. An object called ‘radii’ in a TSOPHOT file defines the radii that the step needs. This object is a list of one or more dictionaries. Each such dictionary has four keys: ‘pupil’, ‘radius’, ‘radius_inner’, and ‘radius_outer’. The particular one of these dictionaries to use is selected by comparing meta.instrument.pupil with the value corresponding to ‘pupil’ in each dictionary. If an exact match is found, that dictionary will be used. If no match is found, the first dictionary with ‘pupil’: ‘ANY’ will be selected. The radii will be taken from the values of keys ‘radius’, ‘radius_inner’, and ‘radius_outer’.

The original radii parameters are:

`radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

The issue with these paramters is that our pupil = CLEAR therefore, it is using default pupil = ANY. If we plot this with tshirt, it is only capturing a small region of the target.This is also after altering the apertures to be centered. `

In [3]:
#Print the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_nrca1_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA1}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM64}']
['# - {filter: WLP4}']
['# - {pupil: CLEAR}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1981.2}']
['# - {ycenter: 29.2}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       TW93WjUrbkNja0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       U1ZQa09iSzFOa0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=3.0 pixels.  Background calculated as the mean in a circular annulus with']
['#     r_inner=4.0 pixels and r_outer=5.0 pixels.}']
['# - {number_of_integrations: 7350}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59866.27084318895 0.03437464693709405 6.803794567178708e-05 0.01511093184220688 4.0711415672567734e-05 0.0005344398883137656 1.4398717876795587e-06 0.01511093184220688 4.0711415672567734e-05 0.01926371509488717 7.928796514794438e-05']
['59866.270874726906 0.03435108052437096 6.799471897045218e-05 0.015021569450899067 4.066226065489018e-05 0.0005312793402463988 1.4381332845593025e-06 0.015021569450899068 4.066226065489018e-05 0.019329511073471896 7.922563505227963e-05']
['59866.27090626487 0.034253978989639805 6.792966636010561e-05 0.014998795500809682 4.0653450467202296e-05 0.0005304738765285202 1.4378216879103927e-06 0.014998795500809682 4.0653450467202296e-05 0.019255183488830124 7.916528662668085e-05']
['59866.27093780284 0.034172923740053936 6.784029945228808e-05 0.015048362421496618 4.068408410203093e-05 0.0005322269477376691 1.438905131112137e-06 0.01504836242149662 4.068408410203093e-05 0.019124561318557318 7.91043673193664e-05']
['59866.270969340796 0.034073762353711595 6.777316397120873e-05 0.014960751247994428 4.062162072405935e-05 0.0005291283363303456 1.4366959410307159e-06 0.014960751247994428 4.062162072405935e-05 0.019113011105717167 7.90146684161724e-05']
['59866.27100087876 0.034256611806883594 6.79289605891627e-05 0.0149927649973014 4.0652113345318276e-05 0.0005302605910968144 1.4377743968976464e-06 0.0149927649973014 4.0652113345318276e-05 0.019263846809582194 7.916399437979759e-05']
['59866.27103241673 0.03428642231321051 6.794193096926357e-05 0.015019196878351779 4.066879360607347e-05 0.0005311954276577888 1.438364340442369e-06 0.015019196878351779 4.066879360607347e-05 0.01926722543485873 7.918368996962429e-05']
['59866.271063954686 0.03427294745109388 6.796911989775051e-05 0.014983887778542862 4.0634318492067806e-05 0.0005299466237087411 1.4371450327073338e-06 0.01498388777854286 4.0634318492067806e-05 0.019289059672551023 7.918932440038611e-05']
['59866.27109549265 0.03426665963815963 6.790343202271487e-05 0.015022655712613487 4.0665874640661313e-05 0.0005313177588955858 1.4382611031592446e-06 0.015022655712613488 4.0665874640661313e-05 0.01924400392554614 7.914915944438982e-05']
['59866.27112703061 0.034317527600580496 6.795730800063105e-05 0.015040876866933162 4.067842304888352e-05 0.0005319622004019895 1.4387049123140223e-06 0.015040876866933162 4.067842304888352e-05 0.019276650733647333 7.920182960283538e-05']
['59866.271158568576 0.03423024066100155 6.789334520333595e-05 0.015063892168645582 4.069394883002952e-05 0.0005327762001873857 1.4392540244950776e-06 0.01506389216864558 4.069394883002952e-05 0.019166348492355968 7.915493537537884e-05']
['59866.27119010654 0.03439366285841919 6.802793425962794e-05 0.015063202315898654 4.067788796563229e-05 0.000532751801637457 1.438685987615267e-06 0.015063202315898654 4.067788796563229e-05 0.019330460542520536 7.92621625302817e-05']
['59866.2712216445 0.0343200344352277 6.797985487866492e-05 0.015051842200031734 4.0682477404395626e-05 0.0005323500197276088 1.4388483058075342e-06 0.015051842200031734 4.0682477404395626e-05 0.019268192235195967 7.92232581827048e-05']
['59866.271253182465 0.03428025764764876 6.792383333825194e-05 0.014999777038643547 4.066295844333817e-05 0.000530508591328096 1.4381579637772424e-06 0.014999777038643547 4.066295844333817e-05 0.019280480609005217 7.916516484368154e-05']
['59866.27128472043 0.034324247303607704 6.79700957322768e-05 0.014998471857758175 4.0650739192422725e-05 0.0005304624299970881 1.4377257961807818e-06 0.014998471857758176 4.0650739192422725e-05 0.019325775445849527 7.919858907041998e-05']
['59866.27131625839 0.03423447725725685 6.788930936847675e-05 0.015051057940893913 4.0696768464859724e-05 0.00053232228223462 1.439353748677509e-06 0.015051057940893913 4.0696768464859724e-05 0.019183419316362936 7.915292344576506e-05']
['59866.271347796355 0.0342602356597712 6.791933874413623e-05 0.015075352546143448 4.068915882122105e-05 0.0005331815281270489 1.4390846125885617e-06 0.015075352546143448 4.068915882122105e-05 0.019184883113627753 7.917477010398752e-05']
['59866.271379334314 0.03416766046615669 6.788544966466831e-05 0.01501537792452012 4.06454038238535e-05 0.0005310603597956225 1.4375370961183355e-06 0.01501537792452012 4.06454038238535e-05 0.019152282541636572 7.912321484986779e-05']
['59866.27141087228 0.03423691661826086 6.789515106465857e-05 0.015030697481507553 4.067787984232871e-05 0.0005316021782890732 1.4386857003121739e-06 0.015030697481507555 4.067787984232871e-05 0.019206219136753303 7.914822453194853e-05']
['59866.271442410245 0.034083974537813755 6.778148729174158e-05 0.01498415011116044 4.064402717335164e-05 0.000529955901827146 1.4374884070667174e-06 0.014984150111160438 4.064402717335164e-05 0.019099824426653318 7.903332818721905e-05']
['59866.2714739482 0.034233625577617804 6.78742860437815e-05 0.015053000672364113 4.068555952754608e-05 0.0005323909923049717 1.438957313615226e-06 0.015053000672364113 4.068555952754608e-05 0.019180624905253692 7.913427487519279e-05']
['59866.27150548617 0.03423978836737114 6.791853869775537e-05 0.014992081317348225 4.0642330594239106e-05 0.0005302364108648054 1.437428402855138e-06 0.014992081317348227 4.0642330594239106e-05 0.019247707050022912 7.915002801622953e-05']
['59866.271537024135 0.034311029324009645 6.796863898978328e-05 0.014989174517655043 4.065691014720391e-05 0.0005301336038559725 1.4379440490601201e-06 0.014989174517655043 4.065691014720391e-05 0.0193218548063546 7.92005064935907e-05']
['59866.27156856209 0.03427806582567109 6.791641329312157e-05 0.015089815785622808 4.0697313599794e-05 0.000533693060583996 1.4393730288818294e-06 0.015089815785622806 4.0697313599794e-05 0.019188250040048285 7.917645185812558e-05']
['59866.27160010006 0.03418457599933815 6.787483966806974e-05 0.015113367477907707 4.07153538295255e-05 0.0005345260313051784 1.4400110714898919e-06 0.015113367477907706 4.07153538295255e-05 0.019071208521430443 7.9150071998891e-05']
['59866.27163163802 0.03421276258075451 6.78704438853971e-05 0.014971374973724715 4.062068846505587e-05 0.0005295040737667963 1.4366629691132394e-06 0.014971374973724715 4.062068846505587e-05 0.019241387607029793 7.909764525304126e-05']
['59866.27166317598 0.0343265544945138 6.797288565508709e-05 0.015119198314356591 4.070681562338671e-05 0.000534732254959223 1.4397090942205307e-06 0.015119198314356593 4.070681562338671e-05 0.019207356180157207 7.922977989667739e-05']
['59866.27169471395 0.03425314787459601 6.793630047424727e-05 0.015064439626855122 4.069460701932385e-05 0.00053279556256076 1.4392773031794516e-06 0.015064439626855122 4.069460701932385e-05 0.01918870824774089 7.919212058395968e-05']
['59866.27172625191 0.034203225823437634 6.787787158220491e-05 0.015080980750334438 4.069381063695382e-05 0.0005333805851309881 1.4392491369148336e-06 0.015080980750334438 4.069381063695382e-05 0.019122245073103197 7.914159257107831e-05']
['59866.27175778987 0.03430767628530597 6.794284722768919e-05 0.015075484515416312 4.0697747856107953e-05 0.0005331861955852962 1.4393883875571483e-06 0.015075484515416314 4.0697747856107953e-05 0.019232191769889655 7.919935081782206e-05']
['59866.27178932784 0.03425886909615578 6.790020915038871e-05 0.015082143447346881 4.0690079352699865e-05 0.0005334217071258433 1.4391171697297005e-06 0.01508214344734688 4.0690079352699865e-05 0.0191767256488089 7.91588337483287e-05']
['59866.2718208658 0.034259784825791235 6.793877209330295e-05 0.015001330954920414 4.06540805036436e-05 0.0005305635498740103 1.4378439708912731e-06 0.015001330954920414 4.06540805036436e-05 0.01925845387087082 7.91734236669256e-05']
['59866.27185240376 0.034219914045670034 6.790676518500075e-05 0.014993691373723 4.063536131015579e-05 0.000530293354960517 1.4371819148525446e-06 0.014993691373723 4.063536131015579e-05 0.019226222671947034 7.913634655894683e-05']
['59866.27188394172 0.034358985637715354 6.799047708747595e-05 0.015023122706608823 4.0670341148424514e-05 0.0005313342754295307 1.4384190735567718e-06 0.015023122706608823 4.0670341148424514e-05 0.01933586293110653 7.922614229982313e-05']
['59866.27191547969 0.034225616281018965 6.791278184189859e-05 0.01510929780378815 4.06992481722236e-05 0.000534382096026756 1.4394414503851494e-06 0.015109297803788148 4.06992481722236e-05 0.019116318477230818 7.917433131570836e-05']
['59866.27194701765 0.03424335666413039 6.790212637089666e-05 0.014997772735142478 4.064244979094218e-05 0.0005304377035926179 1.437432618576137e-06 0.014997772735142478 4.064244979094218e-05 0.019245583928987915 7.913600628474042e-05']
['59866.27197855561 0.03429564040617844 6.795378256218506e-05 0.015087363538665676 4.06973153245528e-05 0.0005336063300895716 1.4393730898826935e-06 0.015087363538665676 4.06973153245528e-05 0.019208276867512766 7.92085098908874e-05']
['59866.27201009358 0.034328906185523936 6.795163214778692e-05 0.014983866979723603 4.064416239427303e-05 0.0005299458881009866 1.437493189528506e-06 0.014983866979723603 4.064416239427303e-05 0.019345039205800333 7.917936756681116e-05']
['59866.27204163154 0.03427387783140043 6.7972467231582e-05 0.014985447928278906 4.064402014561681e-05 0.0005300018027181756 1.4374881585114425e-06 0.014985447928278904 4.064402014561681e-05 0.019288429903121525 7.919717592910617e-05']
['59866.2720731695 0.03434229295355862 6.798566040466e-05 0.014972215727591255 4.0643253116777975e-05 0.0005295338093520814 1.4374610304156214e-06 0.014972215727591255 4.0643253116777975e-05 0.019370077225967362 7.92081059271855e-05']
['59866.27210470747 0.03410409842621929 6.779066850785853e-05 0.015063073628130702 4.069378164939114e-05 0.0005327472502387047 1.439248111689525e-06 0.015063073628130702 4.069378164939114e-05 0.019041024798088585 7.906679835222041e-05']
['59866.272136245425 0.034342366262928734 6.798242609109051e-05 0.0150491848767803 4.068252762973783e-05 0.0005322560361429734 1.438850082165641e-06 0.015049184876780298 4.068252762973783e-05 0.019293181386148436 7.922549028926843e-05']
['59866.27216778339 0.03426071956979024 6.794172881945546e-05 0.015066601476677413 4.067696221257951e-05 0.0005328720223575245 1.4386532457987267e-06 0.015066601476677413 4.067696221257951e-05 0.019194118093112826 7.918771224009471e-05']
['59866.272199321356 0.03428541631509829 6.796480365394282e-05 0.015006759244183975 4.0654992938658576e-05 0.0005307555363337499 1.4378762416785807e-06 0.015006759244183973 4.0654992938658576e-05 0.019278657070914314 7.919623088608054e-05']
['59866.272230859315 0.03422098549845165 6.78884194662863e-05 0.01503426417724581 4.066461799717018e-05 0.0005317283243462395 1.4382166584873962e-06 0.01503426417724581 4.066461799717018e-05 0.01918672132120584 7.913563454276598e-05']
['59866.27226239728 0.03424913893524119 6.794112714989018e-05 0.014976758392275951 4.063183763604644e-05 0.0005296944732497211 1.437057290374245e-06 0.014976758392275953 4.063183763604644e-05 0.019272380542965234 7.916402584557953e-05']
['59866.272293935246 0.03426073219928779 6.794048275279084e-05 0.015069308605543718 4.068354164633773e-05 0.0005329677674554487 1.4388859456665858e-06 0.015069308605543716 4.068354164633773e-05 0.019191423593744074 7.919002309364209e-05']
['59866.272325473205 0.034211413021883026 6.789568064270123e-05 0.015040800189167182 4.068669542909895e-05 0.0005319594884807715 1.4389974879145603e-06 0.015040800189167184 4.068669542909895e-05 0.019170612832715844 7.915320988359181e-05']
['59866.27235701117 0.03420312838012929 6.78565793824823e-05 0.015019615295924854 4.067293331623973e-05 0.0005312102261522402 1.4385107527392418e-06 0.015019615295924854 4.067293331623973e-05 0.019183513084204434 7.911259615281504e-05']
['59866.27238854913 0.034225005909924486 6.790974913919861e-05 0.015050099871341534 4.067954139429565e-05 0.0005322883974557118 1.4387444656918943e-06 0.015050099871341533 4.067954139429565e-05 0.019174906038582955 7.91616012735916e-05']
['59866.272420087094 0.03423623913531275 6.792006563774845e-05 0.015057691430778557 4.0674344238820694e-05 0.0005325568939468625 1.438560653917704e-06 0.015057691430778557 4.0674344238820694e-05 0.019178547704534192 7.916778129702855e-05']
['59866.27245162506 0.03425268115143156 6.790697305763591e-05 0.014988961849601301 4.06389685519354e-05 0.0005301260822621967 1.4373094949325783e-06 0.014988961849601301 4.06389685519354e-05 0.01926371930183026 7.913837725664891e-05']
['59866.27248316302 0.03426718814550776 6.793385987498792e-05 0.015133225676583033 4.072311564119202e-05 0.0005352283714118626 1.4402855894219087e-06 0.015133225676583033 4.072311564119202e-05 0.01913396246892473 7.920468082784244e-05']
['59866.272514700984 0.0343145038442106 6.79923702927135e-05 0.015091610272849445 4.069159019136227e-05 0.0005337565275867593 1.439170604716664e-06 0.015091610272849446 4.069159019136227e-05 0.019222893571361154 7.923867698493735e-05']
['59866.27254623895 0.0342410671875567 6.79018701192186e-05 0.015078757999887726 4.070636126660745e-05 0.0005333019714152429 1.4396930246366758e-06 0.015078757999887728 4.070636126660745e-05 0.019162309187668973 7.916862897167533e-05']
['59866.27257777691 0.03424401904955187 6.794610494725606e-05 0.015075413345742045 4.0697079032946854e-05 0.0005331836784729721 1.439364732776672e-06 0.015075413345742045 4.0697079032946854e-05 0.019168605703809825 7.920180186913337e-05']
['59866.272609314874 0.03420694628643614 6.788546708824161e-05 0.015050503809451521 4.069012650859213e-05 0.0005323026838439136 1.4391188375282226e-06 0.015050503809451523 4.069012650859213e-05 0.019156442476984618 7.914621303052955e-05']
['59866.27264085283 0.034258670428110705 6.793461553821316e-05 0.015042478869732069 4.0664952367121e-05 0.0005320188596607213 1.438228484405284e-06 0.01504247886973207 4.0664952367121e-05 0.019216191558378636 7.917544025356002e-05']
['59866.2726723908 0.03420550770188154 6.789778826119803e-05 0.015019668134733544 4.065903538770518e-05 0.0005312120949428157 1.438019214067017e-06 0.015019668134733542 4.065903538770518e-05 0.019185839567148 7.914080369456166e-05']
['59866.272703928764 0.03417896219199529 6.785412541343534e-05 0.015055738790220674 4.067254817029059e-05 0.000532487833414225 1.4384971309877713e-06 0.015055738790220673 4.067254817029059e-05 0.019123223401774615 7.911029332701794e-05']
['59866.27273546672 0.03418643659855246 6.791783178964439e-05 0.015011816127137523 4.065415484602555e-05 0.0005309343869823488 1.4378466002151772e-06 0.015011816127137525 4.065415484602555e-05 0.01917462047141493 7.915549368964262e-05']
['59866.27276700469 0.034275380354899306 6.791443501874527e-05 0.015081871971752554 4.0712982877486986e-05 0.0005334121056407842 1.4399272162150558e-06 0.015081871971752554 4.0712982877486986e-05 0.019193508383146752 7.918281037383001e-05']
['59866.27279854265 0.034371929784967954 6.797687440861371e-05 0.015041423788824743 4.0665523574934606e-05 0.0005319815438069962 1.4382486867490768e-06 0.015041423788824745 4.0665523574934606e-05 0.019330505996143207 7.921199569502087e-05']
['59866.27283008061 0.034220749225106276 6.791067748585377e-05 0.015043071931403813 4.068327890202449e-05 0.000532039834926636 1.4388766529874254e-06 0.015043071931403812 4.068327890202449e-05 0.019177677293702462 7.916431834360452e-05']
['59866.27286161858 0.034215342245959436 6.788453057870691e-05 0.014998553124903028 4.0650015221867914e-05 0.0005304653042343801 1.437700190960237e-06 0.014998553124903028 4.0650015221867914e-05 0.019216789121056406 7.912479528838912e-05']
['59866.272893156536 0.034298384813875024 6.79679584198498e-05 0.015034099730184498 4.0683953189303255e-05 0.0005317225082211984 1.438900501021532e-06 0.015034099730184498 4.0683953189303255e-05 0.019264285083690526 7.92138082588626e-05']
['59866.2729246945 0.034154409437623004 6.786862876731677e-05 0.015009807535857735 4.066990910338957e-05 0.0005308633475977199 1.4384037930894498e-06 0.015009807535857735 4.066990910338957e-05 0.01914460190176527 7.912137686639324e-05']
['59866.27295623247 0.03424368419202339 6.791250703598019e-05 0.015093242018936056 4.069813929234949e-05 0.0005338142387991048 1.4394022317822028e-06 0.015093242018936057 4.069813929234949e-05 0.01915044217308733 7.917352558634445e-05']
['59866.272987770426 0.03417450362643331 6.784274686569924e-05 0.01501706261352598 4.065050521488109e-05 0.0005311199434807014 1.4377175209180434e-06 0.015017062613525978 4.065050521488109e-05 0.019157441012907332 7.908920202220035e-05']
['59866.27301930839 0.03428714181517911 6.795160206373953e-05 0.014959065555022159 4.063157440313779e-05 0.0005290687171372186 1.437047980414557e-06 0.014959065555022159 4.063157440313779e-05 0.01932807626015695 7.9172880846326e-05']
['59866.27305084636 0.03431477371205718 6.794658844248272e-05 0.01506104627514209 4.068284039950307e-05 0.0005326755472943648 1.438861144133238e-06 0.01506104627514209 4.068284039950307e-05 0.019253727436915086 7.919490124966104e-05']
['59866.273082384316 0.03433332792508114 6.79792769404479e-05 0.015018626883936298 4.067029698497657e-05 0.0005311752682291758 1.4384175115943174e-06 0.0150186268839363 4.067029698497657e-05 0.01931470104114484 7.921650806613672e-05']
['59866.27311392228 0.03433895111888682 6.795951987512563e-05 0.014984035349787084 4.0637098401981e-05 0.000529951842973847 1.4372433519082304e-06 0.014984035349787086 4.0637098401981e-05 0.01935491576909973 7.918251137839644e-05']
['59866.27314546024 0.03433594794198018 6.799482158523226e-05 0.015108633254036587 4.0695230205514254e-05 0.0005343585923872245 1.439299343882267e-06 0.015108633254036587 4.0695230205514254e-05 0.019227314687943593 7.924264965211201e-05']
['59866.273176998206 0.03433231011567578 6.798479186212468e-05 0.014948864192148605 4.0615290767290545e-05 0.0005287079177310851 1.4364720646064242e-06 0.014948864192148604 4.0615290767290545e-05 0.019383445923527177 7.919301590827293e-05']
['59866.27320853617 0.03435112538083079 6.799840301665593e-05 0.015052722903043455 4.067222679862329e-05 0.000532381168224878 1.4384857647901224e-06 0.015052722903043457 4.067222679862329e-05 0.01929840247778733 7.923391221929037e-05']
['59866.27324007413 0.03430488853065315 6.793904779713868e-05 0.015095860522162724 4.069073485952911e-05 0.0005339068494062217 1.4391403535412793e-06 0.015095860522162722 4.069073485952911e-05 0.01920902800849043 7.919248776866649e-05']
['59866.273271612095 0.03432992331499314 6.79872624587171e-05 0.014984319305507934 4.064046867069746e-05 0.0005299618858530898 1.4373625507806246e-06 0.014984319305507934 4.064046867069746e-05 0.019345604009485207 7.920805230785835e-05']
['59866.27330315006 0.03430471805995525 6.793242048658182e-05 0.015053608975467701 4.06792024924322e-05 0.0005324125066262682 1.4387324794903853e-06 0.015053608975467701 4.06792024924322e-05 0.019251109084487544 7.918087691220692e-05']
['59866.27333468802 0.03421252216827521 6.789769086282152e-05 0.015011669054417386 4.066678943724536e-05 0.0005309291853489256 1.4382934574699724e-06 0.015011669054417386 4.066678943724536e-05 0.019200853113857823 7.914470410353764e-05']
['59866.273366225985 0.0342397144926835 6.789138698115731e-05 0.015003706553874738 4.0653865721081084e-05 0.0005306475694998736 1.4378363745120478e-06 0.015003706553874738 4.0653865721081084e-05 0.019236007938808766 7.913265586528073e-05']
['59866.273397763944 0.0342222107873446 6.790189875208564e-05 0.015093635189990151 4.0687172731720466e-05 0.0005338281443806026 1.4390143690415747e-06 0.015093635189990153 4.0687172731720466e-05 0.01912857559735445 7.915878901953558e-05']
['59866.27342930191 0.034293479543238935 6.796871065952363e-05 0.01501240002448871 4.065964322531395e-05 0.0005309550381267264 1.4380407119248022e-06 0.01501240002448871 4.065964322531395e-05 0.019281079518750223 7.920197103562423e-05']
['59866.273460839875 0.03430242153079347 6.794583523544851e-05 0.014970741010698363 4.06395933017806e-05 0.0005294816519113781 1.4373315909383694e-06 0.014970741010698362 4.06395933017806e-05 0.01933168052009511 7.917204727412856e-05']
['59866.27349237783 0.03428216955991432 6.794022593124153e-05 0.015006577724532328 4.067165163817604e-05 0.0005307491163893438 1.438465422650511e-06 0.015006577724532328 4.067165163817604e-05 0.019275591835381987 7.918369495398211e-05']
['59866.2735239158 0.03422482611563725 6.790619949569116e-05 0.015107438397214392 4.0713318734716126e-05 0.0005343163329717714 1.4399390947346536e-06 0.015107438397214394 4.0713318734716126e-05 0.019117387718422856 7.91759196494944e-05']
['59866.273555453765 0.03420655019190354 6.784561320290081e-05 0.01502213189082989 4.066025358222568e-05 0.0005312992324897727 1.4380622988847027e-06 0.01502213189082989 4.066025358222568e-05 0.019184418301073647 7.909667156238956e-05']
['59866.27358699172 0.034313467330655774 6.797010281727726e-05 0.015023787514412149 4.066758303492875e-05 0.0005313577881957763 1.4383215252464475e-06 0.01502378751441215 4.066758303492875e-05 0.019289679816243625 7.920724201039995e-05']
['59866.27361852969 0.034353648961941825 6.800575897893852e-05 0.015084450993853804 4.070498748640536e-05 0.0005335033198887303 1.439644437101146e-06 0.015084450993853802 4.070498748640536e-05 0.01926919796808802 7.925704549483215e-05']
['59866.27365006765 0.0343094996406187 6.797418861247065e-05 0.01506602641180469 4.069545103282318e-05 0.0005328516835981706 1.4393071540506636e-06 0.015066026411804689 4.069545103282318e-05 0.019243473228814006 7.92250594969082e-05']
['59866.27368160561 0.034299928662322475 6.79453820071234e-05 0.015052465858911953 4.0673850755701e-05 0.0005323720771484065 1.4385432005226306e-06 0.015052465858911953 4.0673850755701e-05 0.019247462803410522 7.918924845830378e-05']
['59866.27371314358 0.03420500797805029 6.789367092037035e-05 0.015023076492490484 4.0672675885573345e-05 0.0005313326409394475 1.4385016479918955e-06 0.015023076492490484 4.0672675885573345e-05 0.019181931485559807 7.914428036653339e-05']
['59866.27374468154 0.03423997702945787 6.791774665086847e-05 0.015033617033606242 4.066107587224284e-05 0.0005317054363219889 1.4380913814448994e-06 0.015033617033606242 4.066107587224284e-05 0.01920635999585163 7.91589754937483e-05']
['59866.2737762195 0.03435198469271313 6.79911460295825e-05 0.015065038167839646 4.06946843428736e-05 0.0005328167316177222 1.4392800379405984e-06 0.015065038167839644 4.06946843428736e-05 0.019286946524873488 7.923921549448945e-05']
['59866.27380775747 0.0343394042041653 6.799597178161922e-05 0.015031985122393038 4.06743786610017e-05 0.0005316477192694848 1.4385618713533173e-06 0.01503198512239304 4.06743786610017e-05 0.019307419081772262 7.923293038872983e-05']
['59866.27383929543 0.034264578820101595 6.792092937778686e-05 0.014980557919698219 4.064120534560323e-05 0.0005298288540432027 1.43738860532567e-06 0.014980557919698219 4.064120534560323e-05 0.019284020900403376 7.915150168812843e-05']
['59866.27387083339 0.03430887280813686 6.796154508275071e-05 0.01506523426191091 4.069246683843657e-05 0.0005328236670267784 1.4392016097644912e-06 0.01506523426191091 4.069246683843657e-05 0.01924363854622595 7.921267870380358e-05']
['59866.27390237135 0.03419054886156314 6.788264338901575e-05 0.015004698603774232 4.0665196971337635e-05 0.0005306826560877177 1.4382371355097681e-06 0.015004698603774232 4.0665196971337635e-05 0.01918585025778891 7.913097698245595e-05']
['59866.27393390932 0.03423798768311884 6.790995519098837e-05 0.01505277113324312 4.067928159024339e-05 0.0005323828740192519 1.438735277003194e-06 0.01505277113324312 4.067928159024339e-05 0.01918521654987572 7.916164453029235e-05']
['59866.27396544728 0.03428882729646251 6.792996428046196e-05 0.01518019970813528 4.074425096348614e-05 0.0005368897379270837 1.4410330985367862e-06 0.01518019970813528 4.074425096348614e-05 0.01910862758832723 7.92122088678278e-05']
['59866.27399698524 0.03428377460406269 6.795301629518487e-05 0.015005951134322423 4.0656358087885324e-05 0.0005307269552939661 1.4379245239558017e-06 0.015005951134322423 4.0656358087885324e-05 0.019277823469740267 7.918681630539277e-05']
['59866.27402852321 0.03430379139167691 6.795406247184829e-05 0.015004156776486513 4.0660166234047497e-05 0.0005306634928674638 1.438059209574852e-06 0.015004156776486513 4.0660166234047497e-05 0.0192996346151904 7.918966930482938e-05']
['59866.27406006117 0.03421123588186805 6.787384599680877e-05 0.015091954536465894 4.06974433016176e-05 0.0005337687034214891 1.4393776161454638e-06 0.015091954536465894 4.06974433016176e-05 0.019119281345402157 7.914000797123345e-05']
['59866.27409159913 0.034135536171414335 6.782282663803042e-05 0.01497398876380192 4.0642599000755553e-05 0.00052959651768035 1.4374378957937716e-06 0.01497398876380192 4.0642599000755553e-05 0.019161547407612417 7.906805085942454e-05']
['59866.2741231371 0.03420047844340543 6.78823219103014e-05 0.014967118545971747 4.0621591004052896e-05 0.00052935353342973 1.4366948899005082e-06 0.014967118545971747 4.0621591004052896e-05 0.01923335989743368 7.910830097805373e-05']
['59866.274154675055 0.03424383473819522 6.789411466899725e-05 0.014964808616088933 4.063443694353085e-05 0.0005292718363721642 1.4371492220708581e-06 0.014964808616088931 4.063443694353085e-05 0.019279026122106288 7.912501672925405e-05']
['59866.27418621302 0.03413211739962104 6.782696056666569e-05 0.015044875782266872 4.0680144688984233e-05 0.000532103633100293 1.4387658028767453e-06 0.015044875782266874 4.0680144688984233e-05 0.019087241617354166 7.909090182586563e-05']
['59866.274217750986 0.034286825657858906 6.794342557752504e-05 0.015149583076014718 4.0721548063743374e-05 0.0005358068960731252 1.4402301477108796e-06 0.01514958307601472 4.0721548063743374e-05 0.019137242581844186 7.921207960858272e-05']
['59866.274249288945 0.034250776730747806 6.789648892447469e-05 0.015056134638744513 4.069961877593053e-05 0.0005325018336918439 1.4394545578100131e-06 0.015056134638744514 4.069961877593053e-05 0.019194642092003292 7.916054684486074e-05']
['59866.27428082691 0.03432995696282534 6.800518448503795e-05 0.014998168087913747 4.06525604372896e-05 0.0005304516863365763 1.4377902095414804e-06 0.014998168087913747 4.06525604372896e-05 0.019331788874911597 7.922963957353036e-05']
['59866.274312364876 0.0342326996837291 6.78880581387895e-05 0.015013274756462858 4.0672737442962055e-05 0.0005309859754417411 1.4385038251391615e-06 0.01501327475646286 4.0672737442962055e-05 0.019219424927266242 7.913949714876758e-05']
['59866.274343902835 0.034316123550986885 6.797020551096411e-05 0.01502299148776063 4.067804708770648e-05 0.000531329634512127 1.4386916154074142e-06 0.01502299148776063 4.067804708770648e-05 0.019293132063226255 7.921270322411906e-05']
['59866.2743754408 0.03431161707243131 6.795993320238515e-05 0.014930004738960554 4.0618412934456475e-05 0.000528040901020221 1.4365824886814502e-06 0.014930004738960553 4.0618412934456475e-05 0.019381612333470754 7.91732782584293e-05']
['59866.27440697876 0.0343713793273229 6.800786573857748e-05 0.015009601907999706 4.065642387878504e-05 0.0005308560749999326 1.4379268508328907e-06 0.015009601907999704 4.065642387878504e-05 0.019361777419323194 7.923392332156615e-05']
['59866.274438516724 0.034303559464660106 6.796728475445157e-05 0.015038373008958649 4.066838752765009e-05 0.0005318736445412242 1.4383499783560658e-06 0.01503837300895865 4.066838752765009e-05 0.019265186455701456 7.920523682807741e-05']
['59866.27447005469 0.03420787485803779 6.789459485168203e-05 0.014984141029852223 4.063631453523097e-05 0.0005299555806415699 1.4372156282931212e-06 0.014984141029852223 4.063631453523097e-05 0.01922373382818557 7.91263929993038e-05']
['59866.27450159265 0.03427116100247802 6.792697629799149e-05 0.015036445683605031 4.06806596548303e-05 0.0005318054793507853 1.4387840160678399e-06 0.01503644568360503 4.06806596548303e-05 0.01923471531887299 7.917695484760723e-05']
['59866.274533130614 0.03419845689485114 6.784018813968891e-05 0.015048252162270667 4.0667566306930754e-05 0.0005322230481152621 1.4383209336145432e-06 0.015048252162270669 4.0667566306930754e-05 0.019150204732580473 7.90957778655536e-05']
['59866.27456466858 0.034254237291582244 6.79178185719873e-05 0.015062582240019513 4.067757168572525e-05 0.0005327298709393998 1.438674801501799e-06 0.015062582240019514 4.067757168572525e-05 0.019191655051562728 7.916751175718926e-05']
['59866.27459620654 0.03432267540899722 6.794690545703455e-05 0.015132934155951147 4.0732345451498735e-05 0.0005352180609786231 1.440612027185045e-06 0.015132934155951148 4.0732345451498735e-05 0.019189741253046073 7.922061554398211e-05']
['59866.274627744504 0.03422036469784325 6.789551195695129e-05 0.015001271977261562 4.0658464670381616e-05 0.000530561463966024 1.4379990290707607e-06 0.015001271977261562 4.0658464670381616e-05 0.01921909272058169 7.913855756361236e-05']
['59866.27465928246 0.03421014552084126 6.788571754453439e-05 0.014992396158020614 4.064413878487947e-05 0.0005302475460757602 1.4374923545170196e-06 0.014992396158020612 4.064413878487947e-05 0.01921774936282065 7.912279484510672e-05']
['59866.27469082043 0.03431913376014651 6.797343551626286e-05 0.015006319813642059 4.0653011309335804e-05 0.0005307399946575519 1.437806155878115e-06 0.015006319813642059 4.0653011309335804e-05 0.01931281394650445 7.920262157530222e-05']
['59866.274722358394 0.03429688831992037 6.792405455036204e-05 0.015090449105068385 4.070110937653543e-05 0.0005337154596774005 1.4395072770221122e-06 0.015090449105068387 4.070110937653543e-05 0.019206439214851986 7.918495747956969e-05']
['59866.27475389635 0.03433255011964792 6.797052801609405e-05 0.015038895867662449 4.0666458187784825e-05 0.0005318921368850572 1.4382817419168522e-06 0.01503889586766245 4.0666458187784825e-05 0.019293654251985468 7.920702936182797e-05']
['59866.27478543432 0.034322310233592855 6.797535385328822e-05 0.015114092861913515 4.0725547378145185e-05 0.0005345516865163261 1.4403715945233299e-06 0.015114092861913517 4.0725547378145185e-05 0.01920821737167934 7.924152283196793e-05']
['59866.27481697228 0.0342564644985418 6.791881012204189e-05 0.01500745821843052 4.0662939833163243e-05 0.0005307802574907348 1.4381573055769468e-06 0.015007458218430521 4.0662939833163243e-05 0.019249006280111277 7.916084539890559e-05']
['59866.27484851024 0.03420196057279324 6.787788910470859e-05 0.014995870722368276 4.064819994355904e-05 0.0005303704336515428 1.4376359886233605e-06 0.014995870722368276 4.064819994355904e-05 0.019206089850424962 7.911816471558645e-05']
['59866.27488004821 0.03426426913185597 6.792082718145721e-05 0.015050901043250528 4.068317709774793e-05 0.0005323167331156191 1.4388730523976826e-06 0.015050901043250528 4.068317709774793e-05 0.019213368088605444 7.917297306391935e-05']
['59866.274911586166 0.0342663870536701 6.791059084754604e-05 0.015103905762021683 4.070410468172133e-05 0.0005341913915599802 1.4396132142724242e-06 0.015103905762021683 4.070410468172133e-05 0.019162481291648416 7.917494860878238e-05']
['59866.27494312413 0.03419129736496915 6.78865514796235e-05 0.015038892595244007 4.067867898483722e-05 0.0005318920211469303 1.4387139641967214e-06 0.015038892595244008 4.067867898483722e-05 0.01915240476972514 7.91412584923124e-05']
['59866.2749746621 0.03429137772138206 6.793710060812655e-05 0.015070048823575257 4.06773322112379e-05 0.0005329939473129343 1.4386663318243755e-06 0.015070048823575257 4.06773322112379e-05 0.019221328897806804 7.918393141832579e-05']
['59866.275006200056 0.034306534908450884 6.796189756048409e-05 0.014948935309128969 4.062452607053012e-05 0.0005287104329797436 1.43679869664232e-06 0.01494893530912897 4.062452607053012e-05 0.019357599599321915 7.917810075063e-05']
['59866.27503773802 0.03429727424028515 6.795037645597221e-05 0.015099395492936946 4.069371644640419e-05 0.0005340318734223113 1.4392458056055965e-06 0.015099395492936946 4.069371644640419e-05 0.019197878747348202 7.920373866635773e-05']
['59866.27506927599 0.03432997996690016 6.80004747802965e-05 0.015011670277145454 4.066099406289269e-05 0.0005309292285940848 1.438088488031018e-06 0.015011670277145455 4.066099406289269e-05 0.019318309689754704 7.922992495596808e-05']
['59866.275100813946 0.03421142079970277 6.787206893126996e-05 0.014988848668439095 4.065356416829849e-05 0.0005301220792974346 1.437825709264058e-06 0.014988848668439095 4.065356416829849e-05 0.019222572131263674 7.911592773011654e-05']
['59866.27513235191 0.03428111086174695 6.794738587887031e-05 0.014938067021985671 4.0608387576383125e-05 0.0005283260459526773 1.4362279141717524e-06 0.01493806702198567 4.0608387576383125e-05 0.01934304383976128 7.915736471943627e-05']
['59866.27516388987 0.03437132409945425 6.80285380780372e-05 0.01513764682061944 4.0731801041944344e-05 0.000535384737395755 1.4405927726357902e-06 0.01513764682061944 4.0731801041944344e-05 0.019233677278834814 7.92903626499179e-05']
['59866.275195427836 0.03437647151843144 6.802393912723717e-05 0.015050014194358929 4.0669039343245174e-05 0.0005322853672523139 1.438373031616942e-06 0.01505001419435893 4.0669039343245174e-05 0.01932645732407251 7.925419266820205e-05']
['59866.2752269658 0.034291806625033644 6.797039095252159e-05 0.015007603286484022 4.0658267872173095e-05 0.0005307853882235791 1.4379920687579436e-06 0.015007603286484022 4.0658267872173095e-05 0.019284203338549622 7.920270697775431e-05']
['59866.27525850376 0.03429115653593338 6.792297674397451e-05 0.015150557813179116 4.072678868809092e-05 0.0005358413703482205 1.440415496881946e-06 0.015150557813179115 4.072678868809092e-05 0.01914059872275426 7.919723534699246e-05']
['59866.275290041725 0.03425083332695245 6.792462655415002e-05 0.015049702919666574 4.068223435787502e-05 0.0005322743581621033 1.4388397097952774e-06 0.015049702919666574 4.068223435787502e-05 0.01920113040728588 7.917574808531845e-05']
['59866.27532157969 0.034346147586968585 6.798822938130707e-05 0.015063588125687638 4.067574374003324e-05 0.0005327654468674592 1.4386101511478906e-06 0.015063588125687638 4.067574374003324e-05 0.01928255946128095 7.922698696284037e-05']
['59866.27535311765 0.0343752134390586 6.801708737473776e-05 0.01506911558445801 4.06909836760671e-05 0.000532960940731024 1.439149153626156e-06 0.01506911558445801 4.06909836760671e-05 0.019306097854600586 7.925957562003893e-05']
['59866.275384655615 0.034206413296450015 6.789996408016345e-05 0.014969927882412498 4.0632448195332966e-05 0.0005294528933811419 1.4370788844916897e-06 0.014969927882412498 4.0632448195332966e-05 0.019236485414037517 7.912901470657842e-05']
['59866.27541619357 0.034329659129907486 6.795977343003652e-05 0.015055744320373128 4.0673942270693134e-05 0.0005324880290033582 1.4385464372033782e-06 0.01505574432037313 4.0673942270693134e-05 0.019273914809534356 7.920164382449127e-05']
['59866.27544773154 0.03421576250970172 6.787589418453048e-05 0.01497527257378268 4.062806817669055e-05 0.0005296419231702231 1.436923973021073e-06 0.014975272573782682 4.062806817669055e-05 0.01924048993591904 7.910611186956033e-05']
['59866.275479269505 0.03422677820260943 6.78936019558568e-05 0.014924283943913624 4.06233229681315e-05 0.0005278385692846356 1.4367561455992565e-06 0.014924283943913624 4.06233229681315e-05 0.019302494258695804 7.911886978157261e-05']
['59866.27551080746 0.034332255605918294 6.796258540466513e-05 0.015014185454539995 4.066428786987961e-05 0.000531018184797439 1.4382049826229198e-06 0.015014185454539995 4.066428786987961e-05 0.0193180701513783 7.919909925529986e-05']
['59866.27554234543 0.03438840499316889 6.799103141847385e-05 0.015053937796100028 4.067200131598338e-05 0.0005324241362771627 1.4384777899730728e-06 0.015053937796100028 4.067200131598338e-05 0.019334467197068862 7.922747026376175e-05']
['59866.275573883395 0.034381421085494406 6.80131938816243e-05 0.015059491845175198 4.067994768983392e-05 0.0005326205705803823 1.438758835457066e-06 0.015059491845175198 4.067994768983392e-05 0.019321929240319207 7.925056899497341e-05']
['59866.27560542135 0.03424513675584812 6.791432041285798e-05 0.014986583112526151 4.0652292510334256e-05 0.0005300419516480132 1.4377807335638515e-06 0.014986583112526151 4.0652292510334256e-05 0.01925855364332197 7.915152432825357e-05']
['59866.27563695932 0.034246160177285725 6.792245969440112e-05 0.015033530078990451 4.0667693189719616e-05 0.0005317023609315605 1.438325421175219e-06 0.015033530078990451 4.0667693189719616e-05 0.019212630098295276 7.916641838753799e-05']
['59866.27566849728 0.034214196060925725 6.789209019407011e-05 0.015012137440296112 4.0652291798366546e-05 0.0005309457511106754 1.4377807083831447e-06 0.015012137440296114 4.0652291798366546e-05 0.01920205862062961 7.913245060895873e-05']
['59866.27570003524 0.034351330245300696 6.800622940434971e-05 0.015158014485564758 4.074411794225367e-05 0.0005361050961858187 1.4410283938730788e-06 0.015158014485564756 4.074411794225367e-05 0.01919331575973594 7.927755284246176e-05']
['59866.27573157321 0.034364904364794696 6.79776773538596e-05 0.015146460995325559 4.071908395453923e-05 0.0005356964750565892 1.440142997675289e-06 0.015146460995325557 4.071908395453923e-05 0.019218443369469138 7.924019445030565e-05']
['59866.27576311117 0.03420044895056193 6.790177996011253e-05 0.015033505234105148 4.0673471806665935e-05 0.0005317014822234923 1.4385297979421614e-06 0.015033505234105148 4.0673471806665935e-05 0.01916694371645678 7.915164578553745e-05']
['59866.27579464913 0.034207582434689784 6.789498427345103e-05 0.015075713055391233 4.072010759279285e-05 0.0005331942785334522 1.4401792014726226e-06 0.01507571305539123 4.072010759279285e-05 0.019131869379298554 7.916979254653121e-05']
['59866.27582618709 0.03434995215764944 6.799640176003037e-05 0.015106409001534891 4.071463661609569e-05 0.0005342799255471514 1.4399857052537574e-06 0.015106409001534893 4.071463661609569e-05 0.019243543156114547 7.925397332053568e-05']
['59866.27585772506 0.0343676063582988 6.799099798971243e-05 0.015074489893343646 4.069116022565653e-05 0.0005331510180254355 1.4391553977905689e-06 0.015074489893343647 4.069116022565653e-05 0.019293116464955157 7.923727865182606e-05']
['59866.27588926302 0.03420590342581831 6.789970806844702e-05 0.015014227325983318 4.067377467882578e-05 0.0005310196656968122 1.4385405098535758e-06 0.015014227325983318 4.067377467882578e-05 0.01919167609983499 7.91500240202378e-05']
['59866.27592080098 0.03418847086737001 6.786664571981665e-05 0.014961429538423191 4.0624219470260205e-05 0.0005291523259469211 1.4367878528759845e-06 0.014961429538423191 4.0624219470260205e-05 0.019227041328946815 7.909619971166108e-05']
['59866.27595233895 0.034379208502010934 6.802975832108783e-05 0.01499578445629533 4.0655237279960365e-05 0.000530367382613336 1.4378848834843541e-06 0.01499578445629533 4.0655237279960365e-05 0.019383424045715605 7.925210618977578e-05']
['59866.27598387691 0.03429484636254133 6.797704349382976e-05 0.01498664958731431 4.0618930062729736e-05 0.0005300443027127079 1.4366007783527617e-06 0.014986649587314308 4.0618930062729736e-05 0.01930819677522702 7.918823095386682e-05']
['59866.27601541487 0.03434009373142208 6.79736284102073e-05 0.015070292229984359 4.069854121489753e-05 0.0005330025560536429 1.4394164468844831e-06 0.015070292229984357 4.069854121489753e-05 0.01926980150143772 7.922616623483466e-05']
['59866.27604695284 0.034189658309849 6.786354534117207e-05 0.015060431922327897 4.068775325740414e-05 0.0005326538190083245 1.439034900937608e-06 0.015060431922327895 4.068775325740414e-05 0.019129226387521105 7.912619067924803e-05']
['59866.276078490795 0.03422308595102566 6.789794979120656e-05 0.015061281677667968 4.067904777506172e-05 0.0005326838729556114 1.4387270074827644e-06 0.015061281677667966 4.067904777506172e-05 0.019161804273357695 7.915122559843884e-05']
['59866.27611002876 0.034354953836056926 6.796541884357342e-05 0.015021921185055916 4.064670754513385e-05 0.0005312917802974469 1.4375832058263757e-06 0.015021921185055914 4.064670754513385e-05 0.01933303265100101 7.919250591338808e-05']
['59866.27614156673 0.034202299622665626 6.78740008409706e-05 0.015002924100331891 4.066076064230439e-05 0.0005306198958667438 1.438080232466474e-06 0.015002924100331891 4.066076064230439e-05 0.019199375522333736 7.912128314284878e-05']
['59866.276173104685 0.034262752846373486 6.793914841146842e-05 0.014987684004383528 4.065428928878515e-05 0.0005300808877326601 1.4378513551551223e-06 0.014987684004383528 4.065428928878515e-05 0.019275068841989956 7.917385379310372e-05']
['59866.27620464265 0.03417268150734287 6.788451491497485e-05 0.015007898937930843 4.0654218485804367e-05 0.0005307958447545111 1.4378488510119274e-06 0.015007898937930843 4.0654218485804367e-05 0.01916478256941203 7.912694134068978e-05']
['59866.276236180616 0.034190700645924624 6.78846613029063e-05 0.014987093814405574 4.0641427968524286e-05 0.0005300600140321368 1.4373964790008547e-06 0.014987093814405574 4.0641427968524286e-05 0.01920360683151905 7.912049612793801e-05']
['59866.276267718575 0.03420406430048903 6.787047088594468e-05 0.014997486127340098 4.066394560542195e-05 0.0005304275669151785 1.4381928774939684e-06 0.0149974861273401 4.066394560542195e-05 0.019206578173148928 7.91198918760673e-05']
['59866.27629925654 0.03428353030478271 6.793638126892636e-05 0.014971567542958024 4.065096919580411e-05 0.0005295108845102115 1.4377339308863542e-06 0.014971567542958024 4.065096919580411e-05 0.01931196276182469 7.91697745132266e-05']
['59866.2763307945 0.03423811545576249 6.788326390168023e-05 0.0149902564799424 4.0641476759899225e-05 0.0005301718704440329 1.437398204642744e-06 0.0149902564799424 4.0641476759899225e-05 0.01924785897582009 7.911932223654719e-05']
['59866.276362332464 0.03426093179715938 6.791751095328265e-05 0.015022601283395646 4.0663430098996105e-05 0.0005313158338557929 1.4381746451837753e-06 0.015022601283395646 4.0663430098996105e-05 0.019238330513763738 7.915998257645849e-05']
['59866.27639387043 0.034302394200154546 6.796626134462702e-05 0.015083497715980271 4.068861637898992e-05 0.0005334696045807941 1.4390654276191338e-06 0.015083497715980273 4.068861637898992e-05 0.019218896484174273 7.921474726338996e-05']
['59866.27642540839 0.03429642215543746 6.79470298043191e-05 0.014967380158302068 4.0625107054648856e-05 0.0005293627860731842 1.4368192447521766e-06 0.014967380158302067 4.0625107054648856e-05 0.019329041997135393 7.916563763673422e-05']
['59866.276456946354 0.0343310941197365 6.797873874678878e-05 0.015027058370253372 4.066626804585135e-05 0.0005314734710569478 1.4382750170216076e-06 0.01502705837025337 4.066626804585135e-05 0.019304035749483126 7.921397779673227e-05']
['59866.27648848432 0.03426671338629688 6.792394819255394e-05 0.015033232044353322 4.0680087983217835e-05 0.0005316918201125134 1.4387637973205179e-06 0.015033232044353322 4.0680087983217835e-05 0.01923348134194356 7.917406328076825e-05']
['59866.27652002228 0.03419129809677681 6.788023243571234e-05 0.01502287627633086 4.064961790855415e-05 0.0005313255597413384 1.4376861388762722e-06 0.01502287627633086 4.064961790855415e-05 0.019168421820445952 7.912090363259117e-05']
['59866.276551560244 0.034224657992210306 6.789628134046314e-05 0.015021601950077516 4.065789516327007e-05 0.0005312804896697092 1.4379788868769987e-06 0.015021601950077516 4.065789516327007e-05 0.01920305604213279 7.91389250556942e-05']
['59866.2765830982 0.03426366838394329 6.793441190758733e-05 0.014980773674250063 4.063969068909148e-05 0.0005298364847995183 1.4373350353099075e-06 0.014980773674250063 4.063969068909148e-05 0.01928289470969323 7.91622939317373e-05']
['59866.27661463617 0.03435849744922267 6.800257571665945e-05 0.015063155458990111 4.067216962996534e-05 0.0005327501444133208 1.438483742862455e-06 0.015063155458990111 4.067216962996534e-05 0.019295341990232556 7.923746390760293e-05']
['59866.276646174134 0.03441054898285289 6.805806919865639e-05 0.01500424819579421 4.066904312294262e-05 0.0005306667261640669 1.4383731652963934e-06 0.01500424819579421 4.066904312294262e-05 0.019406300787058677 7.928349040995148e-05']
['59866.27667771209 0.03428683858308504 6.793271938183391e-05 0.015087385731984579 4.0686654754079306e-05 0.0005336071150176621 1.438996049330019e-06 0.01508738573198458 4.0686654754079306e-05 0.01919945285110046 7.918496219414793e-05']
['59866.27670925006 0.03423599174229942 6.790080300814556e-05 0.014974458863891786 4.064477510811842e-05 0.0005296131440699167 1.4375148598478825e-06 0.014974458863891786 4.064477510811842e-05 0.01926153287840763 7.913606505721973e-05']
['59866.276740788024 0.03423893663417726 6.792477674801951e-05 0.01504252150802894 4.0682859989643376e-05 0.0005320203676819906 1.4388618369927194e-06 0.01504252150802894 4.0682859989643376e-05 0.019196415126148315 7.917619840081498e-05']
['59866.27677232598 0.03431811412450374 6.797840876440003e-05 0.015036103319118954 4.067026242923271e-05 0.0005317933706840524 1.4384162894348847e-06 0.015036103319118954 4.067026242923271e-05 0.019282010805384782 7.92157453048478e-05']
['59866.27680386395 0.03432001592672868 6.79461142343489e-05 0.015085276767651895 4.0694495278530015e-05 0.0005335325256624729 1.4392733511572997e-06 0.015085276767651895 4.0694495278530015e-05 0.019234739159076787 7.92004822303595e-05']
['59866.276835401906 0.034277734054030486 6.793102273991603e-05 0.015049834045446363 4.069287226239224e-05 0.0005322789957878856 1.4392159487037342e-06 0.015049834045446365 4.069287226239224e-05 0.01922790000858412 7.918670155685461e-05']
['59866.27686693987 0.03427499115675527 6.793464645344517e-05 0.015090180928030316 4.069918481033911e-05 0.0005337059748549043 1.4394392094169005e-06 0.015090180928030314 4.069918481033911e-05 0.01918481022872496 7.919305419656908e-05']
['59866.27689847784 0.03427536301358207 6.793488990383059e-05 0.015087290773910585 4.068771847727156e-05 0.0005336037565628037 1.4390336708420474e-06 0.015087290773910585 4.068771847727156e-05 0.019188072239671485 7.918737084365971e-05']
['59866.276930015796 0.03429061395238703 6.791837738674174e-05 0.015002575452703294 4.066132707410802e-05 0.000530607564979302 1.4381002658934678e-06 0.015002575452703294 4.066132707410802e-05 0.019288038499683732 7.915964569321582e-05']
['59866.27696155376 0.034215052643987325 6.788047433515454e-05 0.014949404593665372 4.0611278501284596e-05 0.0005287270305250069 1.4363301597246807e-06 0.014949404593665372 4.0611278501284596e-05 0.01926564805032195 7.91014205781064e-05']
['59866.27699309173 0.03419206883365281 6.786325065026795e-05 0.01503306102140666 4.0657373741081046e-05 0.0005316857714131038 1.437960445339483e-06 0.01503306102140666 4.0657373741081046e-05 0.01915900781224615 7.911032061838101e-05']
['59866.277024629686 0.034174405205776096 6.787523988508388e-05 0.014962246362221467 4.062367567076119e-05 0.0005291812151791723 1.4367686199030245e-06 0.014962246362221465 4.062367567076119e-05 0.01921215884355463 7.91032945866408e-05']
['59866.27705616765 0.03438008117018615 6.80294025708037e-05 0.014976853366189218 4.063375390307058e-05 0.0005296978322647791 1.4371250644562842e-06 0.014976853366189216 4.063375390307058e-05 0.019403227803996934 7.924078224245251e-05']
['59866.27708770561 0.034259984668069024 6.789698466005315e-05 0.015020206812849435 4.066521087798397e-05 0.0005312311467839001 1.4382376273567693e-06 0.015020206812849435 4.066521087798397e-05 0.01923977785521959 7.914328715487118e-05']
['59866.277119243576 0.03427400489024478 6.79310389940077e-05 0.015046823374913088 4.06681859696841e-05 0.0005321725150995762 1.4383428497012645e-06 0.015046823374913086 4.06681859696841e-05 0.01922718151533169 7.917403241511832e-05']
['59866.27715078154 0.034142875279088554 6.785090337155128e-05 0.015000661912470445 4.064779821573717e-05 0.0005305398873377768 1.43762178040811e-06 0.015000661912470447 4.064779821573717e-05 0.01914221336661811 7.909480759267876e-05']
['59866.2771823195 0.03430984201970495 6.796119335210322e-05 0.015023501405017138 4.064825498457602e-05 0.0005313476691458916 1.4376379353011218e-06 0.015023501405017138 4.064825498457602e-05 0.019286340614687814 7.918967379105099e-05']
['59866.277213857466 0.034304588844072094 6.793961434261432e-05 0.015157868720717057 4.0744595803909804e-05 0.0005360999408089208 1.4410452947718984e-06 0.015157868720717059 4.0744595803909804e-05 0.019146720123355034 7.922066197809225e-05']
['59866.27724539543 0.034201432689898933 6.789445804712539e-05 0.015053741696782481 4.068693909277084e-05 0.0005324172006825573 1.4390061057540788e-06 0.01505374169678248 4.068693909277084e-05 0.019147690993116452 7.915228642466188e-05']
['59866.27727693339 0.034161707912755426 6.783758563600092e-05 0.015078403062341844 4.069207248583277e-05 0.0005332894180674837 1.439187662394221e-06 0.015078403062341844 4.069207248583277e-05 0.019083304850413582 7.910614886413083e-05']
['59866.277308471355 0.034337917891496046 6.798218181722454e-05 0.015133163493098477 4.0744790305423346e-05 0.0005352261721209858 1.4410521738557471e-06 0.015133163493098477 4.0744790305423346e-05 0.01920475439839757 7.925727084415092e-05']
['59866.277340009314 0.03417580986456385 6.786375961123381e-05 0.015028518081281764 4.06616126409114e-05 0.0005315250977737598 1.4381103657530992e-06 0.015028518081281764 4.06616126409114e-05 0.01914729178328209 7.911293580149112e-05']
['59866.27737154728 0.034193017935911396 6.786012060278076e-05 0.015045347168963953 4.0684095764547665e-05 0.0005321203049942814 1.4389055435892897e-06 0.015045347168963951 4.0684095764547665e-05 0.019147670766947445 7.912137269033467e-05']
['59866.277403085245 0.03420509680000554 6.788659273057693e-05 0.014977963202250432 4.06313584499368e-05 0.0005297370846859266 1.4370403426324649e-06 0.01497796320225043 4.06313584499368e-05 0.01922713359775511 7.911698150242128e-05']
['59866.2774346232 0.03428070487653777 6.795459753407671e-05 0.014970100888009522 4.063524355661563e-05 0.0005294590122024639 1.4371777501729929e-06 0.014970100888009524 4.063524355661563e-05 0.019310603988528244 7.917733479300636e-05']
['59866.27746616117 0.034306695948518894 6.796369549508345e-05 0.015084689567946629 4.071218843030143e-05 0.0005335117577212118 1.4398991183935876e-06 0.015084689567946629 4.071218843030143e-05 0.019222006380572264 7.922465646585536e-05']
['59866.277497699135 0.034282039667452 6.792160031842114e-05 0.015043033792608882 4.066153516827183e-05 0.0005320384860426945 1.4381076257189786e-06 0.015043033792608882 4.066153516827183e-05 0.019239005874843115 7.916251784813286e-05']
['59866.27752923709 0.034184535442032205 6.786938345246341e-05 0.015087734297623136 4.0705522275663056e-05 0.0005336194430052995 1.439663351402007e-06 0.015087734297623135 4.0705522275663056e-05 0.01909680114440907 7.91403358215772e-05']
['59866.27756077506 0.034199220609061644 6.786784678601486e-05 0.015091233760954349 4.070327685706632e-05 0.0005337432112024843 1.4395839359644557e-06 0.015091233760954349 4.070327685706632e-05 0.019107986848107293 7.913786308887156e-05']
['59866.27759231302 0.03425362201136847 6.792440083287523e-05 0.01503546240528438 4.066746357769648e-05 0.0005317707029940817 1.4383173003111134e-06 0.01503546240528438 4.066746357769648e-05 0.01921815960608409 7.916796588487273e-05']
['59866.27762385098 0.03423264104169421 6.793034512264892e-05 0.015034810157550513 4.067938576921479e-05 0.0005317476344494226 1.438738961580586e-06 0.015034810157550512 4.067938576921479e-05 0.019197830884143702 7.91791905429879e-05']
['59866.27765538895 0.03436585669481928 6.79890081299276e-05 0.01497000707248583 4.064149797152563e-05 0.0005294556941570562 1.4373989548505647e-06 0.01497000707248583 4.064149797152563e-05 0.01939584962233345 7.921007880226407e-05']
['59866.27768692691 0.03421917686523659 6.786547998139607e-05 0.015121053717681337 4.0719429782390355e-05 0.0005347978764282368 1.4401552288335035e-06 0.015121053717681337 4.0719429782390355e-05 0.01909812314755525 7.914414277069586e-05']
['59866.27771846487 0.03419296662608735 6.7876964705333e-05 0.015079556954648894 4.070536400483841e-05 0.0005333302286595865 1.4396577537166537e-06 0.015079556954648894 4.070536400483841e-05 0.01911340967143845 7.914675606981891e-05']
['59866.27775000284 0.03418676460361837 6.786553088325397e-05 0.014933376287390037 4.060814164169578e-05 0.0005281601451532046 1.436219216011493e-06 0.014933376287390037 4.060814164169578e-05 0.019253388316228335 7.908698660119708e-05']
['59866.2777815408 0.03427662461340983 6.7943246928472e-05 0.014948013738282282 4.0629349601700975e-05 0.0005286778390784858 1.4369692941598755e-06 0.01494801373828228 4.0629349601700975e-05 0.01932861087512755 7.916456816177651e-05']
['59866.27781307876 0.03426820433558611 6.794013487203526e-05 0.01504673385903636 4.0698814543383415e-05 0.0005321693491230727 1.4394261139021755e-06 0.015046733859036363 4.0698814543383415e-05 0.01922147047654975 7.919757213240225e-05']
['59866.27784461672 0.03441599451233749 6.803611571889432e-05 0.015003414802156214 4.065310432714281e-05 0.0005306372508936161 1.4378094457100663e-06 0.015003414802156214 4.065310432714281e-05 0.019412579710181274 7.925646934823892e-05']
['59866.27787615469 0.03436217045473481 6.798406802219556e-05 0.01508879389457852 4.0695018711761445e-05 0.0005336569185815516 1.439291863820891e-06 0.01508879389457852 4.0695018711761445e-05 0.01927337656015629 7.923331403391586e-05']
['59866.27790769265 0.0342288737151655 6.792864382453517e-05 0.015048969953565573 4.067584340530468e-05 0.0005322484347891937 1.4386136760858029e-06 0.015048969953565574 4.067584340530468e-05 0.019179903761599927 7.91759110372178e-05']
['59866.27793923061 0.034264249058628106 6.791712062777094e-05 0.015019212000836862 4.0665678290539415e-05 0.0005311959625062894 1.4382541586942498e-06 0.015019212000836862 4.0665678290539415e-05 0.019245037057791244 7.916080258055016e-05']
['59866.27797076858 0.03428841424811338 6.793328028008935e-05 0.015009690035015606 4.065194502047136e-05 0.0005308591918555327 1.4377684436239952e-06 0.015009690035015606 4.065194502047136e-05 0.019278724213097773 7.916761461330386e-05']
['59866.27800230654 0.034217124681103335 6.789645561016064e-05 0.015092174822772527 4.070152541507435e-05 0.0005337764944558438 1.4395219913754423e-06 0.015092174822772527 4.070152541507435e-05 0.019124949858330808 7.916149856803153e-05']
['59866.2780338445 0.0342845281399254 6.794400643147798e-05 0.015108435426520194 4.0714885587422354e-05 0.0005343515956700882 1.4399945108131632e-06 0.015108435426520194 4.0714885587422354e-05 0.019176092713405205 7.92091529960876e-05']
['59866.27806538247 0.03424799691132877 6.791507509137171e-05 0.015029946280049033 4.065563509177458e-05 0.0005315756099723217 1.437898953199166e-06 0.015029946280049031 4.065563509177458e-05 0.01921805063127974 7.915388865609946e-05']
['59866.278096920425 0.03437179037196794 6.797255193171681e-05 0.015029278094126445 4.066022833628109e-05 0.0005315519777295475 1.4380614059920637e-06 0.015029278094126446 4.066022833628109e-05 0.019342512277841496 7.920556788804973e-05']
['59866.27812845839 0.03421658011666105 6.790755887319372e-05 0.014995526823556826 4.0647479572237545e-05 0.0005303582707191504 1.4376105106996545e-06 0.014995526823556827 4.0647479572237545e-05 0.019221053293104223 7.914325080315908e-05']
['59866.27815999636 0.03412587519813173 6.783351229551161e-05 0.015048936174055456 4.068599131268908e-05 0.0005322472400834137 1.4389725848907508e-06 0.015048936174055456 4.068599131268908e-05 0.019076939024076277 7.909952768153257e-05']
['59866.278191534315 0.034247784697296016 6.790601097951487e-05 0.015014339460876429 4.066067118845298e-05 0.0005310236316573748 1.4380770686836673e-06 0.015014339460876429 4.066067118845298e-05 0.019233445236419587 7.914869871732248e-05']
['59866.27822307228 0.034328482213807764 6.7999456539797e-05 0.015049717300306175 4.0659588550103725e-05 0.0005322748667731871 1.4380387781848083e-06 0.015049717300306173 4.0659588550103725e-05 0.01927876491350159 7.922832972347371e-05']
['59866.278254610246 0.03425044883506825 6.788454432098218e-05 0.015045057867635976 4.068606236091107e-05 0.0005321100730528613 1.4389750977075792e-06 0.015045057867635976 4.068606236091107e-05 0.019205390967432276 7.914333217715399e-05']
['59866.278286148205 0.03422150865311991 6.789619491778353e-05 0.015047207463971006 4.068139442544042e-05 0.0005321860994711663 1.4388100032622042e-06 0.015047207463971006 4.068139442544042e-05 0.019174301189148903 7.915092631619614e-05']
['59866.27831768617 0.034295606748267954 6.794918712104427e-05 0.015068690342497366 4.0676969652061066e-05 0.0005329459008732359 1.438653508916563e-06 0.015068690342497368 4.0676969652061066e-05 0.019226916405770587 7.919411525161062e-05']
['59866.27834922413 0.03418235132060135 6.784082388295113e-05 0.015042675107416765 4.069860725996339e-05 0.0005320258001490635 1.4394187827508605e-06 0.015042675107416765 4.069860725996339e-05 0.019139676213184586 7.911228740226348e-05']
['59866.278380762094 0.03437580363459973 6.800564877291351e-05 0.015022227145588426 4.065023885756123e-05 0.0005313026014377003 1.4377081004549134e-06 0.015022227145588426 4.065023885756123e-05 0.019353576489011304 7.922884691955104e-05']
['59866.27841230006 0.034331158359961124 6.796790588200089e-05 0.015103061924486075 4.071614717145192e-05 0.0005341615469122117 1.4400391302208145e-06 0.015103061924486075 4.071614717145192e-05 0.01922809643547505 7.923030272863952e-05']
['59866.27844383802 0.034268910009843785 6.793385174295186e-05 0.01506459279398263 4.0691754619426714e-05 0.0005328009797397516 1.4391764201698283e-06 0.015064592793982631 4.0691754619426714e-05 0.019204317215861154 7.918855413909891e-05']
['59866.278475375984 0.03432135963902576 6.793842393405378e-05 0.015100061053612671 4.071518536748677e-05 0.000534055412815971 1.4400051133640725e-06 0.01510006105361267 4.071518536748677e-05 0.01922129858541309 7.920451859680747e-05']
['59866.27850691395 0.03430435642440846 6.793426511648546e-05 0.015058924251915701 4.068296266717508e-05 0.0005326004960752903 1.438865468467545e-06 0.015058924251915701 4.068296266717508e-05 0.01924543217249276 7.918439131732778e-05']
['59866.27853845191 0.03434426930004521 6.802067703731474e-05 0.015003897118530129 4.064829096221331e-05 0.0005306543093458479 1.4376392077497472e-06 0.01500389711853013 4.064829096221331e-05 0.019340372181515075 7.924074748993367e-05']
['59866.278569989874 0.03431822008913949 6.794868202541343e-05 0.01494267722663945 4.060591016517692e-05 0.0005284890985880804 1.4361402936740771e-06 0.014942677226639448 4.060591016517692e-05 0.019375542862500043 7.915720642704088e-05']
['59866.27860152783 0.03418067095412347 6.787612565372348e-05 0.015034711822210797 4.066991654669603e-05 0.0005317441565482234 1.4384040563425642e-06 0.015034711822210795 4.066991654669603e-05 0.019145959131912676 7.9127811455109e-05']
['59866.2786330658 0.034310636928199655 6.793716874642175e-05 0.01505053481176011 4.0676975283512744e-05 0.0005323037803262822 1.4386537080884231e-06 0.01505053481176011 4.0676975283512744e-05 0.019260102116439547 7.918380652314772e-05']
['59866.278664603764 0.03424178852241033 6.789958235953247e-05 0.015052338776141242 4.06818005637025e-05 0.0005323675825148198 1.4388243674648683e-06 0.015052338776141242 4.06818005637025e-05 0.019189449746269092 7.915404084254826e-05']
['59866.27869614172 0.03418266397670515 6.787021769135207e-05 0.014981971534601408 4.064920094682143e-05 0.0005298788504430851 1.4376713918716406e-06 0.014981971534601408 4.064920094682143e-05 0.01920069244210374 7.911209760262073e-05']
['59866.27872767969 0.034269916813575274 6.791291241780546e-05 0.015067662705983764 4.068230111308462e-05 0.0005329095556663822 1.438842070777852e-06 0.015067662705983765 4.068230111308462e-05 0.019202254107591507 7.91657330978764e-05']
['59866.278759217654 0.03427111272679313 6.791691500250938e-05 0.015065749132068429 4.0670522094026413e-05 0.0005328418768335828 1.4384254731983214e-06 0.015065749132068429 4.0670522094026413e-05 0.019205363594724703 7.916311458538487e-05']
['59866.27879075561 0.0341393972663535 6.784254355759121e-05 0.014976491788507707 4.063604887729913e-05 0.0005296850440702626 1.4372062325657824e-06 0.014976491788507707 4.063604887729913e-05 0.01916290547784579 7.908159826863583e-05']
['59866.27882229358 0.03424687788396634 6.79111275968177e-05 0.01500923910025089 4.0664030746306416e-05 0.0005308432433006846 1.4381958887367734e-06 0.01500923910025089 4.0664030746306416e-05 0.019237638783715448 7.915481443353782e-05']
['59866.278853831536 0.03422524935830905 6.792027688997608e-05 0.014957007537245942 4.063549929926732e-05 0.0005289959296478728 1.437186795219032e-06 0.014957007537245942 4.063549929926732e-05 0.019268241821063105 7.914801207934268e-05']
['59866.2788853695 0.03417151106341975 6.787080580654231e-05 0.015036009883699755 4.06678271636794e-05 0.0005317900660820912 1.4383301595347623e-06 0.015036009883699753 4.06678271636794e-05 0.019135501179719995 7.912217418046776e-05']
['59866.27891690747 0.03420747645293352 6.78803515138181e-05 0.015010110630016359 4.0671619475699074e-05 0.0005308740673607349 1.4384642851355797e-06 0.01501011063001636 4.0671619475699074e-05 0.01919736582291716 7.913231168375895e-05']
['59866.278948445426 0.03436638739116773 6.799781102710622e-05 0.014986068727752678 4.06483001224147e-05 0.0005300237590081578 1.4376395317255986e-06 0.01498606872775268 4.06483001224147e-05 0.01938031866341505 7.922112475419639e-05']
['59866.27897998339 0.034232829506524856 6.790837848799838e-05 0.015028322774955338 4.067347846175071e-05 0.0005315181902254781 1.4385300333176368e-06 0.015028322774955338 4.067347846175071e-05 0.019204506731569516 7.915730995333115e-05']
['59866.27901152136 0.03420735072770839 6.789047567307953e-05 0.015043990927670975 4.068798382604394e-05 0.0005320723377707698 1.439043055635107e-06 0.015043990927670975 4.068798382604394e-05 0.019163359800037416 7.914940754639554e-05']
['59866.279043059316 0.03434119656341229 6.797197721847643e-05 0.015130955359710381 4.071768817678727e-05 0.0005351480753779366 1.4400936321355816e-06 0.015130955359710381 4.071768817678727e-05 0.019210241203701912 7.92345872548798e-05']
['59866.27907459728 0.03425398870708519 6.790947915260665e-05 0.014983895032583953 4.0651869631445225e-05 0.0005299468802679628 1.4377657772826251e-06 0.014983895032583955 4.0651869631445225e-05 0.019270093674501235 7.914715322303346e-05']
['59866.27910613524 0.03412222903310683 6.782310076375717e-05 0.014995191924421015 4.064708815938084e-05 0.0005303464260851723 1.4375966673016692e-06 0.014995191924421015 4.064708815938084e-05 0.01912703710868581 7.907059360500106e-05']
['59866.279137673206 0.03422195137394481 6.791792172300269e-05 0.014997670207177 4.065458653315896e-05 0.0005304340774076155 1.4378618680243221e-06 0.014997670207176999 4.065458653315896e-05 0.019224281166767814 7.91557925698052e-05']
['59866.27916921117 0.034327491338218837 6.797917582004614e-05 0.015055408593137887 4.066808717940696e-05 0.0005324761550813539 1.438339355709945e-06 0.015055408593137889 4.066808717940696e-05 0.019272082745080948 7.921528678231614e-05']
['59866.27920074913 0.034288723488215274 6.796373609625266e-05 0.014998527999463291 4.064688812429418e-05 0.0005304644156037286 1.437589592507706e-06 0.014998527999463291 4.064688812429418e-05 0.019290195488751983 7.919115441985907e-05']
['59866.279232287096 0.034204977733002115 6.791229075141921e-05 0.015082465908445265 4.068456306628848e-05 0.000533433111854235 1.4389220710075045e-06 0.015082465908445263 4.068456306628848e-05 0.01912251182455685 7.916636221906437e-05']
['59866.27926382506 0.03431499036071696 6.798575428920885e-05 0.015056769417938997 4.068094593431302e-05 0.0005325242844133047 1.4387941411333466e-06 0.015056769417938997 4.068094593431302e-05 0.019258220942777963 7.922753402942174e-05']
['59866.27929536302 0.034109726418126915 6.77994244451841e-05 0.01493389293936788 4.061130144166629e-05 0.0005281784179790117 1.4363309710747122e-06 0.01493389293936788 4.061130144166629e-05 0.019175833478759036 7.903189077761023e-05']
['59866.279326900985 0.03422660084962438 6.791354945406852e-05 0.015033786657716755 4.066849601223748e-05 0.0005317114355476902 1.438353815213473e-06 0.015033786657716756 4.066849601223748e-05 0.019192814191907624 7.915918624738121e-05']
['59866.279358438944 0.03437858269620247 6.798123543340056e-05 0.014994117127186488 4.0657968570728545e-05 0.0005303084129090175 1.437981483134749e-06 0.014994117127186487 4.0657968570728545e-05 0.019384465569015984 7.921186009272718e-05']
['59866.27938997691 0.034241825670950465 6.788453503158069e-05 0.015000590661879608 4.0650761487850375e-05 0.0005305373673636146 1.4377265847202305e-06 0.015000590661879606 4.0650761487850375e-05 0.019241235009070858 7.912518250213396e-05']
['59866.279421514875 0.03429124822458031 6.793315286260541e-05 0.015035563695473025 4.0659999212929884e-05 0.0005317742854016838 1.4380533024111922e-06 0.015035563695473025 4.0659999212929884e-05 0.019255684529107284 7.91716413487151e-05']
['59866.27945305283 0.03437145532913093 6.802339066862468e-05 0.01504680181051723 4.068266779839823e-05 0.0005321717524150884 1.4388550396179008e-06 0.01504680181051723 4.068266779839823e-05 0.019324653518613705 7.926071622973871e-05']
['59866.2794845908 0.034172153259002275 6.788219736667248e-05 0.015030321168614823 4.0666544763284504e-05 0.0005315888689430671 1.438284803898791e-06 0.015030321168614821 4.0666544763284504e-05 0.019141832090387452 7.913128700022576e-05']
['59866.279516128765 0.03429195864954251 6.796239779323993e-05 0.014919650324354439 4.0603103799453717e-05 0.0005276746885163574 1.4360410387903058e-06 0.014919650324354437 4.0603103799453717e-05 0.01937230832518807 7.916754102506781e-05']
['59866.27954766672 0.034365777355038304 6.800290765338254e-05 0.014982147840772559 4.063818598687733e-05 0.0005298850859983376 1.4372818173554044e-06 0.014982147840772559 4.063818598687733e-05 0.019383629514265747 7.922031058774326e-05']
['59866.27957920469 0.03424593902085263 6.792835256641139e-05 0.014978515210392644 4.0641901208637365e-05 0.0005297566079802511 1.437413216446025e-06 0.014978515210392646 4.0641901208637365e-05 0.019267423810459983 7.915822898624834e-05']
['59866.27961074265 0.03418451863491544 6.786651451547026e-05 0.015029899480088033 4.067057410021746e-05 0.0005315739547622929 1.4384273125410718e-06 0.015029899480088031 4.067057410021746e-05 0.019154619154827406 7.911990514478525e-05']
['59866.27964228061 0.03428318639261235 6.79162111421222e-05 0.01505067168943756 4.0673916264616875e-05 0.00053230862138383 1.4385455174265812e-06 0.015050671689437559 4.0673916264616875e-05 0.019232514703174795 7.916425456102261e-05']
['59866.27967381858 0.03422981345411509 6.78911402949356e-05 0.015022495709027356 4.0667212211817673e-05 0.0005313120999263312 1.4383084100617496e-06 0.015022495709027354 4.0667212211817673e-05 0.019207317745087736 7.91393017383123e-05']
['59866.27970535654 0.03425573593372047 6.790502529418757e-05 0.014981748390947408 4.064084198673743e-05 0.0005298709583507398 1.437375754134646e-06 0.014981748390947406 4.064084198673743e-05 0.019273987542773065 7.913766800705725e-05']
['59866.2797368945 0.034220509298554386 6.790345779587021e-05 0.01501582829861004 4.065867236780996e-05 0.0005310762885206562 1.4380063748646248e-06 0.015015828298610041 4.065867236780996e-05 0.019204680999944344 7.914548135774044e-05']
['59866.27976843247 0.03424853706453575 6.789643876585153e-05 0.014996995443141111 4.065874334036777e-05 0.000530410212511675 1.4380088850053803e-06 0.014996995443141111 4.065874334036777e-05 0.019251541621394634 7.913949587344443e-05']
['59866.27979997043 0.03418275132760744 6.787558962932682e-05 0.014966972896655432 4.063289164497895e-05 0.0005293483821389189 1.4370945683146164e-06 0.014966972896655432 4.063289164497895e-05 0.019215778430952006 7.910832794947305e-05']
['59866.27983150839 0.034227234614759336 6.788179628212114e-05 0.015094019529473137 4.068267224685629e-05 0.0005338417376091676 1.4388551969499208e-06 0.015094019529473139 4.068267224685629e-05 0.019133215085286197 7.913923229114955e-05']
['59866.27986304635 0.034263592014878365 6.791826840410131e-05 0.01496100840473583 4.0628119293602284e-05 0.0005291374313895775 1.4369257809120015e-06 0.01496100840473583 4.0628119293602284e-05 0.019302583610142535 7.914249970999605e-05']
['59866.27989458432 0.03419622478671834 6.78891190993251e-05 0.015031968751836978 4.066925670986702e-05 0.000531647140279503 1.4383807193885708e-06 0.015031968751836978 4.066925670986702e-05 0.019164256034881363 7.913861847047503e-05']
['59866.27992612228 0.034372140610720706 6.79993908228479e-05 0.015066572989518176 4.069284941033948e-05 0.0005328710148303673 1.4392151404776993e-06 0.015066572989518176 4.069284941033948e-05 0.01930556762120253 7.924534778402438e-05']
['59866.27995766024 0.03420948859696511 6.789181076409428e-05 0.015062801213451195 4.068579075514868e-05 0.0005327376155403016 1.4389654916187666e-06 0.015062801213451197 4.068579075514868e-05 0.019146687383513918 7.914942538135908e-05']
['59866.27998919821 0.03420088883899575 6.789245131635734e-05 0.014955177970175282 4.06295280283087e-05 0.0005289312219494253 1.4369756047102305e-06 0.01495517797017528 4.06295280283087e-05 0.019245710868820466 7.912106858193381e-05']
['59866.28002073617 0.034343253493035755 6.797166782625609e-05 0.015106682771610952 4.07002770716396e-05 0.0005342896081829016 1.4394778402580384e-06 0.015106682771610954 4.07002770716396e-05 0.019236570721424803 7.922537586399404e-05']
['59866.28005227413 0.034242107912138546 6.792096316516985e-05 0.015154160491038408 4.0723512767710355e-05 0.0005359687890125925 1.4402996348993368e-06 0.015154160491038406 4.0723512767710355e-05 0.019087947421100142 7.919382380859147e-05']
['59866.2800838121 0.034352406717581156 6.793797879713392e-05 0.015139201417554224 4.070748646295518e-05 0.0005354397200150186 1.4397328203168293e-06 0.015139201417554224 4.070748646295518e-05 0.01921320530002693 7.920017940113203e-05']
['59866.280115350055 0.03426052675803711 6.789169354947099e-05 0.015122041815595661 4.070325782123892e-05 0.0005348328232431976 1.4395832627097831e-06 0.015122041815595661 4.070325782123892e-05 0.01913848494244145 7.915830499876515e-05']
['59866.28014688802 0.034229986837313466 6.793070198911742e-05 0.015067285721426214 4.0700970932941814e-05 0.0005328962225650925 1.4395023805816091e-06 0.015067285721426214 4.0700970932941814e-05 0.019162701115887252 7.919058850405429e-05']
['59866.28017842599 0.03434551633957344 6.801687451109755e-05 0.015080079212370949 4.068649786293452e-05 0.0005333486997480383 1.438990500440859e-06 0.015080079212370949 4.068649786293452e-05 0.019265437127202488 7.925709007154482e-05']
['59866.280209963945 0.03428811141704948 6.793071712200254e-05 0.014967546527679806 4.065674397944071e-05 0.0005293686701862612 1.4379381720776988e-06 0.014967546527679806 4.065674397944071e-05 0.019320564889369674 7.916787959595304e-05']
['59866.28024150191 0.03421347854012652 6.788396805477008e-05 0.01491378131137185 4.0608706244417706e-05 0.0005274671146436353 1.4362391847479544e-06 0.014913781311371848 4.0608706244417706e-05 0.019299697228754673 7.910309818020059e-05']
['59866.280273039876 0.03431244328365039 6.796166638201283e-05 0.015077976031245926 4.070163850337376e-05 0.0005332743149319794 1.439525991055855e-06 0.015077976031245926 4.070163850337376e-05 0.019234467252404467 7.921749474882003e-05']
['59866.280304577835 0.034178628792767486 6.78496201647608e-05 0.01499216886612495 4.064535422428154e-05 0.0005302395072693781 1.4375353418923238e-06 0.014992168866124951 4.064535422428154e-05 0.019186459926642536 7.909245081877055e-05']
['59866.2803361158 0.03434542495571491 6.799840042224274e-05 0.01497218619758855 4.06399426428575e-05 0.0005295327649418814 1.437343946351528e-06 0.014972186197588548 4.06399426428575e-05 0.01937323875812636 7.921734278551893e-05']
['59866.28036765376 0.034267630590759844 6.791431953578599e-05 0.015049480410334208 4.068229323056117e-05 0.0005322664885042966 1.438841791990614e-06 0.015049480410334208 4.068229323056117e-05 0.019218150180425636 7.916693615712436e-05']
['59866.280399191724 0.03419607465180202 6.786197800528805e-05 0.014995963925083277 4.0660115617807544e-05 0.0005303737300232765 1.4380574193915654e-06 0.014995963925083277 4.0660115617807544e-05 0.019200110726718747 7.911063810160853e-05']
['59866.28043072969 0.034207080573972246 6.787507353197398e-05 0.0149695346624618 4.063841428089784e-05 0.0005294389860702806 1.4372898916047028e-06 0.0149695346624618 4.063841428089784e-05 0.019237545911510445 7.911072191704962e-05']
['59866.28046226765 0.034185816788916405 6.786832698334635e-05 0.015047632475998834 4.0685925584246814e-05 0.0005322011311967446 1.4389702602226424e-06 0.015047632475998834 4.0685925584246814e-05 0.01913818431291757 7.912935200142415e-05']
['59866.280493805614 0.03427101645620828 6.79427646801471e-05 0.015070478669738487 4.0685225126983876e-05 0.0005330091500110781 1.438945486614682e-06 0.015070478669738487 4.0685225126983876e-05 0.019200537786469796 7.919284573757407e-05']
['59866.28052534358 0.034155005292274686 6.785252596461182e-05 0.0149965818778759 4.065013561728589e-05 0.0005303955856325084 1.437704449077103e-06 0.0149965818778759 4.065013561728589e-05 0.019158423414398787 7.909740075048014e-05']
['59866.28055688154 0.034269752076728076 6.790656891785144e-05 0.015004091754627608 4.066964442605203e-05 0.0005306611931896295 1.4383944320435398e-06 0.015004091754627608 4.066964442605203e-05 0.019265660322100468 7.915378752742292e-05']
['59866.280588419504 0.034293707822153775 6.795119148881416e-05 0.01504680094644149 4.067774201674089e-05 0.0005321717218546605 1.4386808257291546e-06 0.015046800946441488 4.067774201674089e-05 0.01924690687571229 7.919623173061971e-05']
['59866.28061995746 0.034260478166286586 6.792941109360746e-05 0.014949830809275779 4.0632250605338686e-05 0.0005287421048186112 1.4370718961751796e-06 0.014949830809275779 4.0632250605338686e-05 0.019310647357010807 7.915418296451152e-05']
['59866.28065149543 0.034340269789915986 6.800394820954881e-05 0.0149805673574227 4.062857999885616e-05 0.0005298291878344255 1.4369420750272154e-06 0.014980567357422701 4.062857999885616e-05 0.019359702432493284 7.921627664066553e-05']
['59866.280683033394 0.0341878460581221 6.786636438004667e-05 0.014980312396147173 4.065164853389877e-05 0.0005298201704239151 1.437757957556531e-06 0.014980312396147173 4.065164853389877e-05 0.019207533661974925 7.911004956823692e-05']
['59866.28071457135 0.03424539962666784 6.789957472067916e-05 0.015088478447304496 4.070208731434463e-05 0.0005336457619164526 1.439541864496861e-06 0.015088478447304498 4.070208731434463e-05 0.01915692117936334 7.916446272787826e-05']
['59866.28074610932 0.03420569202242322 6.786939957530192e-05 0.014956321577382555 4.060983466623943e-05 0.0005289716687805349 1.4362790945059145e-06 0.014956321577382557 4.060983466623943e-05 0.019249370445040662 7.909117567928354e-05']
['59866.280777647284 0.03418601762214347 6.788145365724562e-05 0.014998132899728985 4.063869159358232e-05 0.0005304504418091222 1.4372996995345956e-06 0.014998132899728985 4.063869159358232e-05 0.019187884722414485 7.911633842044944e-05']
['59866.28080918524 0.034213300821466106 6.790000429877256e-05 0.014963845451311086 4.0632359648106035e-05 0.0005292377713865184 1.4370757527741645e-06 0.014963845451311084 4.0632359648106035e-05 0.019249455370155023 7.91290037492345e-05']
['59866.28084072321 0.034250412157062135 6.790951474235087e-05 0.015059172634491788 4.068265443475432e-05 0.0005326092808119041 1.4388545669756816e-06 0.01505917263449179 4.068265443475432e-05 0.019191239522570347 7.9162999970941e-05']
['59866.280872261166 0.03417901242053191 6.785154930830888e-05 0.015017233305271657 4.067076857332421e-05 0.0005311259804662724 1.4384341906202354e-06 0.015017233305271657 4.067076857332421e-05 0.019161779115260253 7.910716882737473e-05']
['59866.28090379913 0.03431426658736232 6.794028008624236e-05 0.015099523291053053 4.071256756470425e-05 0.000534036393356066 1.4399125275300999e-06 0.015099523291053055 4.071256756470425e-05 0.019214743296309268 7.920476510859475e-05']
['59866.2809353371 0.034345429342924914 6.798221439443497e-05 0.015042336286108703 4.067126779410684e-05 0.0005320138167966184 1.4384518469436244e-06 0.015042336286108703 4.067126779410684e-05 0.019303093056816212 7.921952725149825e-05']
['59866.280966875056 0.03435858812012428 6.800028741025956e-05 0.01503268927332451 4.065912432489202e-05 0.0005316726235142463 1.4380223595765526e-06 0.015032689273324512 4.065912432489202e-05 0.01932589884679977 7.9228804602524e-05']
['59866.28099841302 0.03423427030990586 6.787325470026686e-05 0.015065688730391921 4.0704126540482576e-05 0.0005328397405612745 1.439613987367958e-06 0.015065688730391923 4.0704126540482576e-05 0.01916858157951394 7.914293791003033e-05']
['59866.28102995099 0.03423704704333432 6.794022409273707e-05 0.015059752362724025 4.069764438679284e-05 0.0005326297845038619 1.4393847280787129e-06 0.015059752362724025 4.069764438679284e-05 0.019177294680610295 7.919704734650896e-05']
['59866.281061488946 0.03423712751573038 6.789925609465526e-05 0.015057845138690995 4.0687528376338876e-05 0.0005325623302522085 1.439026947396909e-06 0.015057845138690995 4.0687528376338876e-05 0.019179282377039385 7.915670498184573e-05']
['59866.28109302691 0.034311592026897174 6.795071948240829e-05 0.015089270477652433 4.070311425512506e-05 0.0005336737742597755 1.4395781850971874e-06 0.015089270477652433 4.070311425512506e-05 0.01922232154924474 7.920886180373195e-05']
['59866.28112456487 0.03420727326036251 6.789337506627401e-05 0.015022364021848455 4.064405504183908e-05 0.0005313074424451171 1.4374893927128357e-06 0.015022364021848455 4.064405504183908e-05 0.019184909238514056 7.912932192388484e-05']
['59866.281156102836 0.03428760665432311 6.792963916517487e-05 0.01503908314760464 4.06887995502516e-05 0.0005318987605580664 1.4390719059772958e-06 0.015039083147604642 4.06887995502516e-05 0.019248523506718466 7.918342178733762e-05']
['59866.2811876408 0.03421184985036459 6.79175816324373e-05 0.01499558562031262 4.065960775395027e-05 0.0005303603502289998 1.4380394573819427e-06 0.01499558562031262 4.065960775395027e-05 0.019216264230051967 7.91580797992465e-05']
['59866.28121917876 0.034278824568308226 6.794113972304525e-05 0.01495765003580886 4.062456202965593e-05 0.0005290186533861435 1.436799968436236e-06 0.014957650035808862 4.062456202965593e-05 0.019321174532499364 7.916030259522585e-05']
['59866.281250716725 0.03417581380427608 6.785952666614416e-05 0.015043117241197767 4.067934865988151e-05 0.0005320414374327867 1.4387376491064026e-06 0.015043117241197768 4.067934865988151e-05 0.019132696563078314 7.911842242325951e-05']
['59866.281282254684 0.03412289390750298 6.782052484388402e-05 0.015048644306476093 4.0687106617776685e-05 0.0005322369173794172 1.4390120307391393e-06 0.015048644306476093 4.0687106617776685e-05 0.019074249601026882 7.908896405331289e-05']
['59866.28131379265 0.034151708015551376 6.784707966708305e-05 0.015015888522210636 4.066637963297261e-05 0.0005310784184948174 1.4382789636087038e-06 0.015015888522210636 4.066637963297261e-05 0.01913581949334074 7.910107870190243e-05']
['59866.281345330615 0.034271320553607806 6.792703743681694e-05 0.015077678329672065 4.06866398836758e-05 0.0005332637858926358 1.4389955233970802e-06 0.015077678329672065 4.06866398836758e-05 0.019193642223935742 7.918008007047385e-05']
['59866.281376868574 0.03419876631342479 6.786003577763188e-05 0.015022423283057458 4.0660040437487486e-05 0.0005313095383816385 1.438054760431663e-06 0.015022423283057458 4.0660040437487486e-05 0.019176343030367332 7.910893340274281e-05']
['59866.28140840654 0.034254341298899496 6.794773984180953e-05 0.014943437287248906 4.0634309254635786e-05 0.0005285159802332015 1.4371447060000078e-06 0.014943437287248907 4.0634309254635786e-05 0.019310904011650587 7.917096966825409e-05']
['59866.281439944505 0.03435108325475997 6.798707033646452e-05 0.015046994721064548 4.068092155844894e-05 0.0005321785752300173 1.438793279013511e-06 0.015046994721064548 4.068092155844894e-05 0.019304088533695418 7.922865082645323e-05']
['59866.28147148246 0.03422091617726591 6.789206388741438e-05 0.01504539631151695 4.068742610954921e-05 0.0005321220430565539 1.4390233304491113e-06 0.01504539631151695 4.068742610954921e-05 0.019175519865748957 7.915048314642674e-05']
['59866.28150302043 0.03422373278276013 6.79035796412802e-05 0.015119667191577377 4.072851154204716e-05 0.0005347488380986433 1.4404764303760264e-06 0.015119667191577379 4.072851154204716e-05 0.01910406559118275 7.918148634959028e-05']
['59866.28153455839 0.034416168354062186 6.8057223143205e-05 0.015059287699607526 4.0676897869518455e-05 0.0005326133504078923 1.4386509701284552e-06 0.015059287699607526 4.0676897869518455e-05 0.01935688065445466 7.9286793618176e-05']
['59866.28156609635 0.03414478576021139 6.782543384284561e-05 0.01499394176756153 4.063856976865539e-05 0.0005303022108309885 1.4372953908591927e-06 0.014993941767561532 4.063856976865539e-05 0.01915084399264986 7.906821629967442e-05']
['59866.28159763432 0.0343109879595357 6.797154306702198e-05 0.015104889939210874 4.0700217029399816e-05 0.0005342261997076553 1.439475716698204e-06 0.015104889939210872 4.0700217029399816e-05 0.01920609802032483 7.922523798103904e-05']
['59866.28162917228 0.03427340384101709 6.794485112281625e-05 0.014965569447828805 4.0632477181896434e-05 0.0005292987452904447 1.4370799096816585e-06 0.014965569447828805 4.0632477181896434e-05 0.019307834393188283 7.916755014549205e-05']
['59866.28166071024 0.03425391254550567 6.790479346129824e-05 0.015010305665676573 4.065521375008174e-05 0.0005308809653361575 1.4378840512851334e-06 0.015010305665676571 4.065521375008174e-05 0.019243606879829102 7.914485062268049e-05']
['59866.28169224821 0.034195033188295386 6.787888586473423e-05 0.015013164149059854 4.0664653610820526e-05 0.0005309820635050899 1.4382179180626172e-06 0.015013164149059855 4.0664653610820526e-05 0.01918186903923553 7.912747436589668e-05']
['59866.28172378617 0.034300801821393834 6.794931694889028e-05 0.015061385314391332 4.068998284619405e-05 0.0005326875383549024 1.4391137565102692e-06 0.015061385314391334 4.068998284619405e-05 0.019239416507002498 7.920091147104504e-05']
['59866.28175532413 0.034370399260418426 6.798469708790265e-05 0.014988228327879874 4.064826934671599e-05 0.0005301001392382345 1.437638443257915e-06 0.014988228327879875 4.064826934671599e-05 0.01938217093253855 7.920985316876336e-05']
['59866.28178686209 0.03427568935428542 6.79305050226288e-05 0.015074566103370757 4.068263627099964e-05 0.0005331537134037749 1.4388539245642722e-06 0.015074566103370756 4.068263627099964e-05 0.019201123250914665 7.918099776201264e-05']
['59866.28181840006 0.03423984304270668 6.78998637799956e-05 0.015093927221722293 4.0704154618710524e-05 0.0005338384728903159 1.4396149804321294e-06 0.015093927221722293 4.0704154618710524e-05 0.019145915820984384 7.916577356765896e-05']
['59866.28184993802 0.03412742046526103 6.781827346677058e-05 0.01496716512308953 4.063448501572055e-05 0.0005293551807582921 1.437150922276773e-06 0.01496716512308953 4.063448501572055e-05 0.0191602553421715 7.905997463006485e-05']
['59866.28188147598 0.034235714479416625 6.79237646490789e-05 0.015000913590677276 4.065904798078137e-05 0.0005305487886334847 1.438019659455978e-06 0.015000913590677276 4.065904798078137e-05 0.01923480088873935 7.916309738007314e-05']
['59866.28191301395 0.03424650075993455 6.792007697750135e-05 0.01506599876463522 4.067169205050069e-05 0.0005328507057795742 1.4384668519441177e-06 0.015065998764635219 4.067169205050069e-05 0.01918050199529933 7.916642843327258e-05']
['59866.28194455191 0.0341927932504967 6.78691936987315e-05 0.014996514146228898 4.065814887469583e-05 0.0005303931901155253 1.4379878600831164e-06 0.0149965141462289 4.065814887469583e-05 0.0191962791042678 7.911581714949841e-05']
['59866.28197608987 0.034198739047139416 6.789582921876514e-05 0.014950805143511983 4.062996772271115e-05 0.0005287765648430368 1.436991155718586e-06 0.014950805143511983 4.062996772271115e-05 0.01924793390362743 7.912419290237514e-05']
['59866.28200762784 0.03427223964280472 6.793158585548794e-05 0.014941272911704287 4.062214257587674e-05 0.0005284394311072829 1.436714397763227e-06 0.014941272911704287 4.062214257587674e-05 0.019330966731100435 7.915086117217163e-05']
['59866.282039165795 0.03414949991203588 6.781034801196022e-05 0.015039181688486255 4.067306902574512e-05 0.0005319022457288231 1.4385155524811547e-06 0.015039181688486253 4.067306902574512e-05 0.019110318223549624 7.907301588706596e-05']
['59866.28207070376 0.034193785170343834 6.78709771562428e-05 0.015061053776307802 4.067827005337596e-05 0.000532675812593832 1.4386995012048448e-06 0.015061053776307804 4.067827005337596e-05 0.01913273139403603 7.91276891781797e-05']
['59866.28210224173 0.034322322774165845 6.797814826285133e-05 0.015042900224099553 4.0662285916585205e-05 0.0005320337620230276 1.438134178008999e-06 0.015042900224099553 4.0662285916585205e-05 0.019279422550066292 7.921142680957288e-05']
['59866.282133779685 0.03428042926452881 6.796066060206232e-05 0.015107012954456397 4.071885007199263e-05 0.0005343012860122297 1.4401347257723122e-06 0.015107012954456397 4.071885007199263e-05 0.01917341631007241 7.922547658836846e-05']
['59866.28216531765 0.03419513959159902 6.78810312216792e-05 0.014979061147548217 4.0638343647427185e-05 0.000529775916557346 1.4372873934567023e-06 0.014979061147548217 4.0638343647427185e-05 0.0192160784440508 7.911579724761023e-05']
['59866.282196855616 0.03420909827366001 6.788649276908161e-05 0.01502274826103593 4.068000507143619e-05 0.000531321032126454 1.438760864916098e-06 0.01502274826103593 4.068000507143619e-05 0.01918635001262408 7.914188974935235e-05']
['59866.282228393575 0.0343070000617621 6.794234752366483e-05 0.015059056310944778 4.067799569426598e-05 0.0005326051667080142 1.4386897977362813e-06 0.01505905631094478 4.067799569426598e-05 0.01924794375081732 7.918877395647167e-05']
['59866.28225993154 0.03432745001227752 6.79973898369096e-05 0.015025169679663605 4.066116549772655e-05 0.0005314066722917627 1.438094551297957e-06 0.015025169679663605 4.066116549772655e-05 0.019302280332613917 7.922736524879623e-05']
['59866.2822914695 0.034253472943603175 6.792333169521817e-05 0.015009404545693219 4.0659342024088865e-05 0.000530849094736231 1.438030059110616e-06 0.01500940454569322 4.0659342024088865e-05 0.019244068397909955 7.916287692100678e-05']
['59866.282323007465 0.0342203940737463 6.791803651473985e-05 0.015018584283640507 4.0657095871084245e-05 0.0005311737615519197 1.4379506176986992e-06 0.015018584283640508 4.0657095871084245e-05 0.019201809790105794 7.915717989347569e-05']
['59866.28235454543 0.034249213969893805 6.792486695378259e-05 0.015037724546765323 4.066210156994406e-05 0.000531850709882674 1.4381276580802924e-06 0.015037724546765325 4.066210156994406e-05 0.019211489423128482 7.91656115669772e-05']
['59866.28238608339 0.03416594147689195 6.784696986272656e-05 0.014982874675035477 4.0645822515534436e-05 0.0005299107925018381 1.4375519043073692e-06 0.014982874675035479 4.0645822515534436e-05 0.01918306680185647 7.909041792479068e-05']
['59866.282417621354 0.034179306853970935 6.786436058059098e-05 0.014988703203798059 4.064464312107661e-05 0.0005301169345381754 1.4375101917611874e-06 0.014988703203798059 4.064464312107661e-05 0.019190603650172874 7.910473090436597e-05']
['59866.28244915932 0.03434338154850284 6.797920888169762e-05 0.01505713286649062 4.0670055877465275e-05 0.0005325371387763159 1.4384089841604865e-06 0.01505713286649062 4.0670055877465275e-05 0.01928624868201222 7.921632587577906e-05']
['59866.28248069728 0.03432795044947457 6.794286816652013e-05 0.015036732361482279 4.067412456040348e-05 0.0005318156185066163 1.4385528843830396e-06 0.01503673236148228 4.067412456040348e-05 0.019291218087992293 7.918723219969461e-05']
['59866.282512235244 0.03430062313928921 6.795119940072033e-05 0.014954403665430402 4.0622200387699284e-05 0.0005289038365210682 1.4367164424381886e-06 0.014954403665430403 4.0622200387699284e-05 0.019346219473858804 7.916772489048078e-05']
['59866.2825437732 0.03432211995636066 6.797297545187596e-05 0.015096468756493899 4.070071901088602e-05 0.0005339283612951917 1.4394934706615083e-06 0.0150964687564939 4.070071901088602e-05 0.019225651199866762 7.922672478264157e-05']
['59866.28257531117 0.03417443034707673 6.786393250639717e-05 0.014972243124754203 4.0634713710346415e-05 0.0005295347783285059 1.4371590106945873e-06 0.014972243124754205 4.0634713710346415e-05 0.019202187222322524 7.909926228198747e-05']
['59866.282606849134 0.03428836179954672 6.794611685833063e-05 0.014955347025127484 4.062111423124433e-05 0.0005289372010452691 1.4366780275117938e-06 0.014955347025127484 4.062111423124433e-05 0.019333014774419233 7.916280513924278e-05']
['59866.28263838709 0.03425276880402105 6.789433477445094e-05 0.015028421235763957 4.065527640702152e-05 0.000531521672564232 1.4378862673210635e-06 0.015028421235763957 4.065527640702152e-05 0.01922434756825709 7.91359096377652e-05']
['59866.28266992506 0.034277334704449845 6.797739334790139e-05 0.015086527372280459 4.070703120978875e-05 0.0005335767567532484 1.4397167190297636e-06 0.015086527372280459 4.070703120978875e-05 0.019190807332169386 7.923375793366123e-05']
['59866.282701463024 0.034271228621929016 6.792769248419717e-05 0.014996744177442175 4.066125991290796e-05 0.0005304013258054494 1.438097890551918e-06 0.014996744177442175 4.066125991290796e-05 0.01927448444448684 7.916760362631114e-05']
['59866.28273300098 0.03424254063665227 6.790254969322552e-05 0.015060265275394646 4.068208376204681e-05 0.0005326479250787295 1.4388343835573955e-06 0.015060265275394648 4.068208376204681e-05 0.01918227536125762 7.915673183035764e-05']
['59866.28276453895 0.03430638016060028 6.795113791848795e-05 0.015049388662065363 4.0671865402203394e-05 0.0005322632435730729 1.4384729830064241e-06 0.015049388662065365 4.0671865402203394e-05 0.019256991498534916 7.919316750649844e-05']
['59866.28279607691 0.03442223715285178 6.803581385780246e-05 0.015109349752592913 4.0720257849755744e-05 0.0005343839333398818 1.4401845157255956e-06 0.015109349752592913 4.0720257849755744e-05 0.01931288740025887 7.929067641686593e-05']
['59866.28282761487 0.0341917854697479 6.785017473039957e-05 0.015010207757317548 4.066348469195644e-05 0.0005308775025363112 1.4381765760147744e-06 0.015010207757317548 4.066348469195644e-05 0.019181577712430356 7.910224521616771e-05']
['59866.28285915284 0.03417896961056373 6.784710103014278e-05 0.015029688744927886 4.0670397270995914e-05 0.000531566501530644 1.4384210584866956e-06 0.015029688744927888 4.0670397270995914e-05 0.01914928086563584 7.91031625940141e-05']
['59866.282890690796 0.034268649946650985 6.791477231664771e-05 0.015014945340851306 4.0667746503483976e-05 0.0005310450602780242 1.438327306763915e-06 0.015014945340851306 4.0667746503483976e-05 0.019253704605799678 7.915985033142579e-05']
['59866.28292222876 0.034226286704925765 6.786701321420441e-05 0.015099440607806098 4.069887350003956e-05 0.0005340334690344074 1.439428199067343e-06 0.0150994406078061 4.069887350003956e-05 0.019126846097119666 7.91348835014573e-05']
['59866.28295376673 0.034242226992791856 6.788718596687518e-05 0.014968979649152423 4.06368408385534e-05 0.0005294193564899097 1.4372342424654168e-06 0.014968979649152425 4.06368408385534e-05 0.01927324734363943 7.912030619151455e-05']
['59866.282985304686 0.034310454836306944 6.791680680922482e-05 0.015103984172446306 4.070555595750363e-05 0.0005341941647614622 1.4396645426534337e-06 0.015103984172446306 4.070555595750363e-05 0.019206470663860636 7.918102634451656e-05']
['59866.28301684265 0.03429652702650438 6.79556080561866e-05 0.015049180222107012 4.066839512919252e-05 0.0005322558715175819 1.4383502472056332e-06 0.015049180222107012 4.066839512919252e-05 0.01924734680439737 7.919522099640977e-05']
['59866.28304838061 0.03425453114687914 6.792345610221075e-05 0.015006696589806235 4.066655682934899e-05 0.0005307533203884336 1.4382852306485258e-06 0.015006696589806233 4.066655682934899e-05 0.019247834557072907 7.916668954316342e-05']
['59866.283079918576 0.03430461677355902 6.793791423988846e-05 0.015162956792918078 4.074580202223309e-05 0.0005362798945514988 1.4410879560182536e-06 0.015162956792918078 4.074580202223309e-05 0.019141659980640942 7.921982437307882e-05']
['59866.28311145654 0.034267214672143775 6.793050492191352e-05 0.014976724442812612 4.063168354247237e-05 0.0005296932725330753 1.437051840428909e-06 0.014976724442812612 4.063168354247237e-05 0.019290490229331166 7.915483059448575e-05']
['59866.2831429945 0.03428139138326365 6.79342003191167e-05 0.015075408574439406 4.0688615721842314e-05 0.000533183509722661 1.4390654043772915e-06 0.015075408574439404 4.0688615721842314e-05 0.019205982808824247 7.918724027491822e-05']
['59866.283174532466 0.034268097702253725 6.792945393289756e-05 0.014997438602870835 4.066180835077113e-05 0.0005304258860809116 1.4381172875734519e-06 0.014997438602870835 4.066180835077113e-05 0.01927065909938289 7.916939667558729e-05']
['59866.28320607043 0.03434605162652901 6.800152718731613e-05 0.015082597868263598 4.068836501204202e-05 0.0005334377789780966 1.4390565373319587e-06 0.015082597868263598 4.068836501204202e-05 0.019263453758265416 7.924487836548466e-05']
['59866.28323760839 0.03432676684664411 6.799917011190702e-05 0.015066534959861011 4.069338476684693e-05 0.0005328696698063847 1.4392340748409164e-06 0.015066534959861011 4.069338476684693e-05 0.0192602318867831 7.924543330495908e-05']
['59866.283269146355 0.03427946265696533 6.795645670744551e-05 0.015057330957736871 4.067914280310347e-05 0.0005325441448209879 1.4387303684122259e-06 0.01505733095773687 4.067914280310347e-05 0.019222131699228463 7.920146884639326e-05']
['59866.283300684314 0.034264371483190094 6.793685974897916e-05 0.014934748465435934 4.060950170203323e-05 0.0005282086760240505 1.4362673183060723e-06 0.014934748465435934 4.060950170203323e-05 0.01932962301775416 7.914890107285067e-05']
['59866.28333222228 0.03417371866007952 6.785518188350014e-05 0.015011469635967663 4.065039280133066e-05 0.000530922132364033 1.4377135451019941e-06 0.015011469635967665 4.065039280133066e-05 0.01916224902411185 7.909981127250154e-05']
['59866.283363760245 0.034262329151061095 6.794937809521055e-05 0.014961634883732757 4.061465416708305e-05 0.0005291595885516007 1.4364495494798029e-06 0.014961634883732755 4.061465416708305e-05 0.01930069426732834 7.916228973847103e-05']
['59866.283395298204 0.034308445165279575 6.797811769651277e-05 0.015020981989752949 4.065982832599605e-05 0.000531258563058559 1.4380472585222523e-06 0.01502098198975295 4.065982832599605e-05 0.019287463175526626 7.921013902942232e-05']
['59866.28342683617 0.03431029710389866 6.794276221193798e-05 0.015021804650561067 4.065766896667764e-05 0.0005312876587328034 1.4379708868090443e-06 0.015021804650561067 4.065766896667764e-05 0.01928849245333759 7.917869020634208e-05']
['59866.283458374135 0.03429817018365152 6.794730367875286e-05 0.01500208813769708 4.06498669279889e-05 0.0005305903297366171 1.4376949461371538e-06 0.01500208813769708 4.06498669279889e-05 0.01929608204595444 7.917858143763291e-05']
['59866.28348991209 0.03424161047126851 6.79216826769038e-05 0.015092932451616645 4.071113565774421e-05 0.0005338032900948595 1.439861884181047e-06 0.015092932451616647 4.071113565774421e-05 0.019148678019651862 7.918807703313211e-05']
['59866.28352145006 0.034255408789060485 6.791827559573315e-05 0.015130808108939124 4.07270475039589e-05 0.0005351428674472433 1.4404246506207772e-06 0.015130808108939124 4.07270475039589e-05 0.01912460068012136 7.91933365775662e-05']
['59866.28355298802 0.03427328751926363 6.794591867706055e-05 0.015038302124857215 4.065424704495651e-05 0.0005318711375289731 1.4378498610853127e-06 0.015038302124857215 4.065424704495651e-05 0.019234985394406417 7.91796417500236e-05']
['59866.28358452598 0.034248782071335054 6.791380044892359e-05 0.015001286303580615 4.064012121067445e-05 0.0005305619706559115 1.4373502618961379e-06 0.015001286303580615 4.064012121067445e-05 0.01924749576775444 7.914482764801832e-05']
['59866.28361606395 0.03428568624958691 6.79675519852838e-05 0.015071096915885367 4.066737814733029e-05 0.0005330310159955944 1.4383142788299868e-06 0.015071096915885365 4.066737814733029e-05 0.019214589333701543 7.92049478773278e-05']
['59866.28364760191 0.03432073956782879 6.792605750917467e-05 0.015073332598851859 4.0681096256649555e-05 0.0005331100871056619 1.4387994576984392e-06 0.01507333259885186 4.0681096256649555e-05 0.019247406968976928 7.917639093430876e-05']
['59866.28367913987 0.03434927864567897 6.796916783376717e-05 0.015110755290972428 4.069410496942343e-05 0.0005344336440911718 1.4392595467964894e-06 0.015110755290972428 4.069410496942343e-05 0.019238523354706542 7.922006030846772e-05']
['59866.28371067784 0.034320927333263675 6.796222422665954e-05 0.015102743658749484 4.071210132978594e-05 0.0005341502905643905 1.4398960378430128e-06 0.015102743658749484 4.071210132978594e-05 0.01921818367451419 7.922334956640944e-05']
['59866.2837422158 0.03427789175560931 6.794809223964449e-05 0.015077597284641246 4.06818173158952e-05 0.0005332609195110207 1.438824959952485e-06 0.015077597284641246 4.06818173158952e-05 0.019200294470968063 7.91956659112802e-05']
['59866.28377375376 0.03428086425235116 6.793282357475052e-05 0.015023224861185113 4.066193116403862e-05 0.000531337888408592 1.4381216312042517e-06 0.015023224861185114 4.066193116403862e-05 0.019257639391166047 7.917235101237802e-05']
['59866.28380529172 0.03417923042768325 6.785716639775507e-05 0.014967898235873913 4.0627762595452067e-05 0.0005293811093190652 1.4369131652956018e-06 0.014967898235873913 4.0627762595452067e-05 0.019211332191809337 7.908988636383944e-05']
['59866.28383682969 0.03436419379103201 6.801766177239003e-05 0.015154152783367219 4.073173426973384e-05 0.0005359685164094883 1.4405904110519317e-06 0.015154152783367219 4.073173426973384e-05 0.019210041007664793 7.928099702705219e-05']
['59866.28386836765 0.034300367937873076 6.793917027760946e-05 0.015072504240128796 4.068524633574909e-05 0.0005330807899088999 1.4389462367213088e-06 0.015072504240128796 4.068524633574909e-05 0.01922786369774428 7.918977287131589e-05']
['59866.28389990561 0.03424246965848263 6.789907113808484e-05 0.014957976280489784 4.061596185765166e-05 0.0005290301919313937 1.4364957995726983e-06 0.014957976280489784 4.061596185765166e-05 0.019284493377992845 7.911978399260781e-05']
['59866.28393144358 0.03423914859502832 6.791073171819155e-05 0.015101360075861868 4.0697093042044345e-05 0.0005341013563297814 1.4393652282471418e-06 0.01510136007586187 4.0697093042044345e-05 0.019137788519166452 7.917146496417128e-05']
['59866.28396298154 0.03428153730959253 6.792596496224672e-05 0.0151186038814953 4.0712403805309244e-05 0.0005347112311973984 1.4399067357262792e-06 0.0151186038814953 4.0712403805309244e-05 0.01916293342809723 7.919240203238519e-05']
['59866.2839945195 0.03423750371759055 6.78822062192472e-05 0.015061886888576568 4.0700776705589297e-05 0.0005327052779128818 1.439495511194223e-06 0.015061886888576567 4.0700776705589297e-05 0.019175616829013985 7.91488922577609e-05']
['59866.28402605747 0.03434567429503236 6.797279803352433e-05 0.015068134902358145 4.0688251505728876e-05 0.0005329262561968472 1.4390525228673343e-06 0.015068134902358145 4.0688251505728876e-05 0.019277539392674216 7.922016841120534e-05']
['59866.284057595425 0.03434766146943367 6.79801323662559e-05 0.015128055762035431 4.0736208644043385e-05 0.000535045523088393 1.4407486596716222e-06 0.015128055762035431 4.0736208644043385e-05 0.019219605707398238 7.925110151426735e-05']
['59866.28408913339 0.03434804502176368 6.802034902514349e-05 0.015078734239951477 4.068960518394277e-05 0.000533301131079398 1.439100399440467e-06 0.015078734239951477 4.068960518394277e-05 0.019269310781812203 7.92616669741905e-05']
['59866.28412067136 0.034193015731003 6.790252036520789e-05 0.014963703437925939 4.064672280733705e-05 0.000529232748690467 1.437583745616394e-06 0.014963703437925939 4.064672280733705e-05 0.01922931229307706 7.913853894863088e-05']
['59866.284152209315 0.03424905926905746 6.790658061062908e-05 0.015064649577454233 4.068297151340701e-05 0.0005328029880442386 1.4388657813389982e-06 0.015064649577454235 4.068297151340701e-05 0.019184409691603226 7.91606459131591e-05']
['59866.28418374728 0.034314911143556226 6.795477815696762e-05 0.015004201588522684 4.061842268966259e-05 0.0005306650777690341 1.4365828337012889e-06 0.015004201588522684 4.061842268966259e-05 0.019310709555033542 7.916885837347145e-05']
['59866.284215285246 0.03429055521433112 6.794017809284055e-05 0.015110953214379065 4.072076428435464e-05 0.0005344406441997318 1.4402024271855438e-06 0.015110953214379066 4.072076428435464e-05 0.019179601999952056 7.920889118772503e-05']
['59866.284246823205 0.03416655055639641 6.781761959216875e-05 0.014945023434139575 4.06183194668123e-05 0.0005285720787038948 1.4365791829397636e-06 0.014945023434139577 4.06183194668123e-05 0.019221527122256835 7.905110627597905e-05']
['59866.28427836117 0.03432294262554509 6.796310504186708e-05 0.015018987374916122 4.067258854741487e-05 0.0005311880179894822 1.4384985590364195e-06 0.015018987374916122 4.067258854741487e-05 0.019303955250628967 7.920380739635665e-05']
['59866.28430989913 0.03425708275083062 6.792101757820285e-05 0.015024608771166502 4.067260576416877e-05 0.0005313868342117769 1.438499167954528e-06 0.015024608771166502 4.067260576416877e-05 0.01923247397966412 7.916770483288015e-05']
['59866.284341437095 0.034221078543604115 6.787251460957356e-05 0.015095193141316353 4.071666979584195e-05 0.000533883245637194 1.4400576142774933e-06 0.015095193141316354 4.071666979584195e-05 0.01912588540228776 7.91487551303898e-05']
['59866.28437297506 0.034212712394750266 6.789436165541675e-05 0.01506403243300909 4.0676573352851126e-05 0.0005327811610244506 1.438639492699184e-06 0.01506403243300909 4.0676573352851126e-05 0.019148679961741175 7.914687589745033e-05']
['59866.28440451302 0.03434022140167109 6.800031647626651e-05 0.01508315153532817 4.071021628809484e-05 0.0005334573609447975 1.4398293681312187e-06 0.015083151535328168 4.071021628809484e-05 0.019257069866342923 7.925506135948584e-05']
['59866.284436050984 0.034235237887359944 6.789846683196133e-05 0.014997373801600766 4.0652212388654525e-05 0.0005304235942048116 1.437777899839101e-06 0.014997373801600766 4.0652212388654525e-05 0.019237864085759178 7.913788075392991e-05']
['59866.28446758895 0.034235983181548274 6.791798306490104e-05 0.015012055210196733 4.065283110937312e-05 0.0005309428428158338 1.437799782608158e-06 0.015012055210196733 4.065283110937312e-05 0.019223927971351543 7.915494362837612e-05']
['59866.28449912691 0.03435545553368421 6.798684223776611e-05 0.015069866651001223 4.068372383335479e-05 0.0005329875042761224 1.438892389214215e-06 0.015069866651001223 4.068372383335479e-05 0.019285588882682985 7.922989399470113e-05']
['59866.284530664874 0.03438500340380058 6.800376541261375e-05 0.015069554755342706 4.067323290436841e-05 0.0005329764732237265 1.438521348501813e-06 0.015069554755342706 4.067323290436841e-05 0.019315448648457877 7.923903069313001e-05']
['59866.28456220283 0.03432094113603078 6.797280070708217e-05 0.01502972308917413 4.066387924961183e-05 0.0005315677162098787 1.4381905306372612e-06 0.01502972308917413 4.066387924961183e-05 0.01929121804685665 7.920765563751854e-05']
['59866.2845937408 0.034239510924177055 6.791755826162881e-05 0.015013916625585362 4.066057328702695e-05 0.000531008676918111 1.4380736061290254e-06 0.015013916625585362 4.066057328702695e-05 0.01922559429859169 7.915855569836676e-05']
['59866.284625278764 0.03436081726531395 6.798685205352665e-05 0.015019897014673817 4.067194998543196e-05 0.0005312201899147867 1.438475974526186e-06 0.015019897014673817 4.067194998543196e-05 0.019340920250640138 7.922385731435702e-05']
['59866.28465681672 0.034263127295967255 6.792234191686527e-05 0.015035993511013493 4.065756471880739e-05 0.0005317894870167689 1.4379671997948538e-06 0.015035993511013493 4.065756471880739e-05 0.019227133784953762 7.916111482499197e-05']
['59866.28468835469 0.034187294660249584 6.792354460277712e-05 0.014972530032923191 4.063475789577452e-05 0.000529544925629241 1.4371605734344307e-06 0.014972530032923191 4.063475789577452e-05 0.019214764627326394 7.915043563148382e-05']
['59866.284719892654 0.03425676972283222 6.789202973282588e-05 0.015045876916046147 4.068749514459917e-05 0.0005321390409646636 1.4390257720645441e-06 0.015045876916046145 4.068749514459917e-05 0.019210892806786072 7.915048933761998e-05']
['59866.28475143061 0.0342215875986763 6.78806573063407e-05 0.015034070371092348 4.067690943164657e-05 0.0005317214698557228 1.4386513790550868e-06 0.015034070371092348 4.067690943164657e-05 0.019187517227583953 7.91352929940317e-05']
['59866.28478296858 0.03433368328862128 6.79977229121025e-05 0.015036123771924708 4.067662412252331e-05 0.0005317940940540826 1.4386412883090255e-06 0.015036123771924708 4.067662412252331e-05 0.019297559516696573 7.923558588939768e-05']
['59866.284814506536 0.03416002638624019 6.785041849483995e-05 0.014981864996612313 4.064868238283128e-05 0.0005298750824325092 1.4376530514222314e-06 0.014981864996612314 4.064868238283128e-05 0.019178161389627874 7.909484603553645e-05']
['59866.2848460445 0.03432118381170639 6.797416304683609e-05 0.015043990670326074 4.068184312716604e-05 0.0005320723286690557 1.4388258728394498e-06 0.015043990670326073 4.068184312716604e-05 0.019277193141380315 7.921804846208473e-05']
['59866.28487758247 0.03421945351439012 6.7898575582281e-05 0.015017489594496232 4.065512840231868e-05 0.0005311350448433729 1.437881032725495e-06 0.01501748959449623 4.065512840231868e-05 0.019201963919893886 7.913947201941484e-05']
['59866.284909120426 0.034311405162909515 6.79665340614109e-05 0.0150125980815723 4.067071649842812e-05 0.0005309620429631415 1.4384323488475415e-06 0.0150125980815723 4.067071649842812e-05 0.019298807081337216 7.92057885057427e-05']
['59866.28494065839 0.034182165209927694 6.786130311549449e-05 0.015095838299963252 4.0712566744689765e-05 0.0005339060634566901 1.43991249852802e-06 0.015095838299963252 4.0712566744689765e-05 0.01908632690996444 7.913703021641537e-05']
['59866.28497219636 0.03415606654248812 6.786588569674284e-05 0.015016279419580761 4.066021537165816e-05 0.0005310922436611945 1.438060947462325e-06 0.01501627941958076 4.066021537165816e-05 0.019139787122907363 7.911404145581864e-05']
['59866.285003734316 0.03427510305558051 6.789615423764256e-05 0.015008039246272215 4.066341413483487e-05 0.0005308008071469747 1.4381740805670704e-06 0.015008039246272213 4.066341413483487e-05 0.019267063809308295 7.914165154558525e-05']
['59866.28503527228 0.034383919184225696 6.801478553972695e-05 0.015130192057779001 4.071181829167912e-05 0.000535121079094503 1.4398860274177274e-06 0.015130192057779 4.071181829167912e-05 0.0192537271264467 7.926829883774313e-05']
['59866.28506681024 0.03409424594055393 6.781209995766071e-05 0.015077877407753236 4.068578322032717e-05 0.0005332708268394535 1.438965225128969e-06 0.015077877407753237 4.068578322032717e-05 0.01901636853280069 7.908105877464732e-05']
['59866.285098348206 0.03416846684789662 6.787914824129304e-05 0.014920476243161994 4.0605837766773e-05 0.0005277038994187608 1.4361377331043315e-06 0.014920476243161996 4.0605837766773e-05 0.019247990604734627 7.909748938307034e-05']
['59866.28512988617 0.03424692670413966 6.790834265112846e-05 0.014992125494335005 4.0658914629146356e-05 0.0005302379733060981 1.438014943106671e-06 0.014992125494335007 4.0658914629146356e-05 0.019254801209804655 7.914979684397986e-05']
['59866.28516142413 0.03426282766968691 6.793670573872428e-05 0.015003440779580386 4.0645471687090104e-05 0.000530638169657053 1.4375394962893487e-06 0.015003440779580388 4.0645471687090104e-05 0.019259386890106527 7.916723031214403e-05']
['59866.285192962096 0.03413927725021499 6.782357391547442e-05 0.014987439249499482 4.064326801297398e-05 0.0005300722312994064 1.4374615572607832e-06 0.014987439249499484 4.064326801297398e-05 0.01915183800071551 7.906903574372371e-05']
['59866.28522450006 0.03429461084599903 6.79340364022411e-05 0.015063416175063602 4.067329873002214e-05 0.0005327593653581741 1.438523676608074e-06 0.015063416175063602 4.067329873002214e-05 0.01923119467093543 7.917923042997223e-05']
['59866.28525603802 0.034294858874383785 6.795672952534982e-05 0.015076557491830561 4.069828081440282e-05 0.000533224144363107 1.439407237100946e-06 0.015076557491830561 4.069828081440282e-05 0.019218301382553225 7.921153419186843e-05']
['59866.285287575985 0.03431182341362387 6.796982553499858e-05 0.01502166757654888 4.066209834835175e-05 0.0005312828107313348 1.438127544139772e-06 0.015021667576548882 4.066209834835175e-05 0.01929015583707499 7.920418818060807e-05']
['59866.285319113944 0.03416993939841055 6.784385401489169e-05 0.015053081050009838 4.0679005958637854e-05 0.0005323938350826676 1.4387255285293064e-06 0.015053081050009838 4.0679005958637854e-05 0.01911685834840071 7.91048042370173e-05']
['59866.28535065191 0.034195160624370384 6.78948890817387e-05 0.014954582767825358 4.062862308960063e-05 0.0005289101709725075 1.4369435990505452e-06 0.014954582767825358 4.062862308960063e-05 0.019240577856545024 7.912269571733783e-05']
['59866.285382189875 0.03425222005300031 6.794043141578034e-05 0.015061444814218833 4.068621801109922e-05 0.0005326896427308268 1.4389806027068764e-06 0.015061444814218833 4.068621801109922e-05 0.01919077523878148 7.919135405465073e-05']
['59866.285413727834 0.034247738441414516 6.792998770383561e-05 0.01511844221913851 4.072093867453596e-05 0.0005347055135611328 1.4402085949765179e-06 0.015118442219138509 4.072093867453596e-05 0.019129296222276007 7.920024037828785e-05']
['59866.2854452658 0.03431091100807149 6.797597359847238e-05 0.015046470071984836 4.066746834001956e-05 0.0005321600195645896 1.4383174687438376e-06 0.015046470071984838 4.066746834001956e-05 0.01926444093608665 7.921222107633839e-05']
['59866.285476803765 0.03414365442267996 6.784355355569626e-05 0.014994986940305842 4.065936949003558e-05 0.0005303391762551312 1.4380310305197684e-06 0.014994986940305842 4.065936949003558e-05 0.01914866748237412 7.909445041462683e-05']
['59866.28550834172 0.03427882917233045 6.794152972678795e-05 0.0150424508154066 4.068182752798709e-05 0.0005320178674419272 1.4388253211313527e-06 0.0150424508154066 4.068182752798709e-05 0.01923637835692385 7.919004074145245e-05']
['59866.28553987969 0.034230170996730584 6.791002674757393e-05 0.01506449914950134 4.070033904357097e-05 0.0005327976677437315 1.4394800320667518e-06 0.015064499149501342 4.070033904357097e-05 0.01916567184722924 7.917252889176797e-05']
['59866.28557141765 0.034251293300500835 6.789755799567201e-05 0.015024243970729519 4.068515980696585e-05 0.0005313739320356018 1.4389431763916261e-06 0.015024243970729519 4.068515980696585e-05 0.019227049329771317 7.915403091627106e-05']
['59866.28560295561 0.034230255304897 6.787892225874709e-05 0.015062963999715899 4.069428456744444e-05 0.0005327433729266783 1.4392658987771143e-06 0.015062963999715899 4.069428456744444e-05 0.0191672913051811 7.914273740189417e-05']
['59866.28563449358 0.03429146288177428 6.794042972844296e-05 0.015032720333771237 4.06740821285188e-05 0.0005316737220528309 1.4385513836621083e-06 0.015032720333771236 4.06740821285188e-05 0.019258742548003045 7.918511822737268e-05']
['59866.28566603154 0.034197810893919524 6.78472581599112e-05 0.01500540778561923 4.065447205948343e-05 0.0005307077382646471 1.437857819346252e-06 0.01500540778561923 4.065447205948343e-05 0.019192403108300296 7.909511071016308e-05']
['59866.2856975695 0.034179719532532994 6.787624879081221e-05 0.014932541739236437 4.061914712206625e-05 0.0005281306290501171 1.4366084552563952e-06 0.014932541739236438 4.061914712206625e-05 0.019247177793296558 7.91018347627683e-05']
['59866.28572910747 0.03426757697731672 6.791791488435983e-05 0.01506218846785633 4.068334673713451e-05 0.000532715944098017 1.4388790521636643e-06 0.01506218846785633 4.068334673713451e-05 0.01920538850946039 7.917056185207392e-05']
['59866.28576064543 0.03433094683231841 6.79751281689453e-05 0.015030100824234243 4.065703575627565e-05 0.0005315810758547667 1.4379484915722676e-06 0.015030100824234244 4.065703575627565e-05 0.019300846008084165 7.920613995184728e-05']
['59866.28579218339 0.03441131335436376 6.805126988899946e-05 0.015014962179648676 4.066408844056817e-05 0.0005310456558286547 1.4381979292538726e-06 0.015014962179648678 4.066408844056817e-05 0.019396351174715082 7.927511224973317e-05']
['59866.28582372135 0.034372945697804524 6.800417675214066e-05 0.01502700669376678 4.0672245698912604e-05 0.0005314716433751071 1.4384864332511157e-06 0.01502700669376678 4.0672245698912604e-05 0.019345939004037745 7.923887698553724e-05']
['59866.28585525932 0.034337985719100156 6.797997167365024e-05 0.015050984133214344 4.067471658194002e-05 0.0005323196718219442 1.438573822861697e-06 0.015050984133214344 4.067471658194002e-05 0.01928700158588581 7.921937337401399e-05']
['59866.28588679728 0.03434029663108615 6.799012609360742e-05 0.015021707462920532 4.0660315447932024e-05 0.0005312842214231594 1.4380644869364743e-06 0.015021707462920534 4.0660315447932024e-05 0.019318589168165614 7.922069488807818e-05']
['59866.28591833524 0.03418481641961458 6.78612270222139e-05 0.01496622462689176 4.0639878024090515e-05 0.0005293219175096623 1.4373416609301543e-06 0.01496622462689176 4.0639878024090515e-05 0.019218591792722818 7.909959430220492e-05']
['59866.28594987321 0.034233836088054095 6.790358832360368e-05 0.014978592369092695 4.064911526571058e-05 0.0005297593369110324 1.437668361522236e-06 0.014978592369092695 4.064911526571058e-05 0.019255243718961403 7.914068409551734e-05']
['59866.28598141117 0.034269684815259535 6.792240919058268e-05 0.014992145172959718 4.064714172867e-05 0.0005302386692950749 1.4375985619277062e-06 0.014992145172959716 4.064714172867e-05 0.01927753964229982 7.915581975422613e-05']
['59866.28601294913 0.03427737239445502 6.795247429728628e-05 0.015061421889627042 4.069683184411485e-05 0.0005326888319392486 1.4393559902601185e-06 0.015061421889627042 4.069683184411485e-05 0.019215950504827974 7.920713910545887e-05']
['59866.2860444871 0.03422486451820254 6.789626231615765e-05 0.015048661263166067 4.0676992546225996e-05 0.0005322375170996456 1.438654318632011e-06 0.015048661263166067 4.0676992546225996e-05 0.01917620325503647 7.91487217781198e-05']
['59866.286076025055 0.03424921965541684 6.79092573369375e-05 0.015045447726306987 4.067573393867888e-05 0.0005321238614827722 1.438609804495892e-06 0.015045447726306988 4.067573393867888e-05 0.019203771929109853 7.915922285813949e-05']
['59866.28610756302 0.034301485386185784 6.79858074193656e-05 0.014924720107457903 4.061199326568214e-05 0.0005278539954144286 1.4363554393440173e-06 0.014924720107457904 4.061199326568214e-05 0.019376765278727878 7.919219663246423e-05']
['59866.28613910099 0.034042330748307786 6.77782955458768e-05 0.014957932129027927 4.062127895978086e-05 0.0005290286303928606 1.4366838535919843e-06 0.014957932129027927 4.062127895978086e-05 0.01908439861927986 7.901889426860235e-05']
['59866.286170638945 0.0342579561448808 6.7931777281377e-05 0.01501317484467359 4.063915455636932e-05 0.0005309824417850445 1.4373160734937107e-06 0.01501317484467359 4.063915455636932e-05 0.01924478130020721 7.91597577539439e-05']
['59866.28620217691 0.03425497800555058 6.788409514611343e-05 0.015000295320298767 4.065615055461019e-05 0.0005305269217919499 1.43791718396767e-06 0.015000295320298767 4.065615055461019e-05 0.019254682685251812 7.912757390269028e-05']
['59866.286233714876 0.034350225869457324 6.798102728266357e-05 0.014990406988088036 4.065897622729658e-05 0.0005301771935807782 1.4380171216955807e-06 0.014990406988088038 4.065897622729658e-05 0.019359818881369284 7.921219867077367e-05']
['59866.286265252835 0.03428052407572158 6.79495814294616e-05 0.015020735126240255 4.0660325280462085e-05 0.0005312498320478225 1.4380648346910882e-06 0.015020735126240255 4.0660325280462085e-05 0.019259788949481327 7.918590574308041e-05']
['59866.2862967908 0.03425004869767936 6.790806323074577e-05 0.015007998664581145 4.065424186029706e-05 0.0005307993718632563 1.4378496777154952e-06 0.015007998664581145 4.065424186029706e-05 0.019242050033098212 7.914715682187513e-05']
['59866.28632832876 0.03429039034519179 6.79429064534409e-05 0.015050797677701287 4.068003150807602e-05 0.0005323130773071509 1.4387617999209663e-06 0.015050797677701287 4.068003150807602e-05 0.0192395926674905 7.919029928494448e-05']
['59866.286359866725 0.03435771172790302 6.802937365599007e-05 0.015089697238757815 4.070375498400937e-05 0.0005336888678463179 1.4396008462458806e-06 0.015089697238757815 4.070375498400937e-05 0.019268014489145207 7.927667595090364e-05']
['59866.28639140469 0.03422004604541381 6.791137118268387e-05 0.015024084994533851 4.0656131528481796e-05 0.0005313683094028519 1.4379165110560294e-06 0.01502408499453385 4.0656131528481796e-05 0.019195961050879957 7.915096567176851e-05']
['59866.28642294265 0.034258449056763944 6.790184954529433e-05 0.015081164056492926 4.0688796911862326e-05 0.0005333870682601487 1.4390718126633635e-06 0.015081164056492926 4.0688796911862326e-05 0.019177285000271018 7.915958164244278e-05']
['59866.286454480614 0.034164529603902816 6.785241263095995e-05 0.014994571053642953 4.0662248766699485e-05 0.0005303244672733167 1.4381328641005661e-06 0.014994571053642951 4.0662248766699485e-05 0.019169958550259866 7.910352946997376e-05']
['59866.28648601857 0.03421505978828314 6.78971236873942e-05 0.015052317529500562 4.069526520815848e-05 0.0005323668310686224 1.439300581847567e-06 0.015052317529500562 4.069526520815848e-05 0.019162742258782575 7.915885304489739e-05']
['59866.28651755654 0.034211120725117304 6.789689561118235e-05 0.01510321215495502 4.0695955457012413e-05 0.0005341668602281529 1.4393249944069152e-06 0.015103212154955019 4.0695955457012413e-05 0.019107908570162285 7.915901227399778e-05']
['59866.286549094504 0.034260301857407964 6.792407535916405e-05 0.015064940583841908 4.06945721549057e-05 0.0005328132802898096 1.439276070102899e-06 0.015064940583841908 4.06945721549057e-05 0.019195361273566056 7.918161539314681e-05']
['59866.28658063246 0.03432010549575621 6.792129201685905e-05 0.015074545155746638 4.068104927779051e-05 0.0005331529725331251 1.4387977961611865e-06 0.015074545155746638 4.068104927779051e-05 0.01924556034000957 7.917227847915873e-05']
['59866.28661217043 0.03425012826809472 6.788873780342069e-05 0.015078247804493516 4.069120170402222e-05 0.0005332839269443692 1.4391568647876648e-06 0.015078247804493516 4.069120170402222e-05 0.0191718804636012 7.914957117166854e-05']
['59866.286643708394 0.0343152582852989 6.795339186791063e-05 0.015091015878282791 4.06913304963092e-05 0.0005337355051793304 1.4391614198830213e-06 0.015091015878282791 4.06913304963092e-05 0.019224242407016104 7.920509986051206e-05']
['59866.28667524635 0.03431721306376354 6.796893132932828e-05 0.014949234317621908 4.063349508586944e-05 0.0005287210082418942 1.4371159106703022e-06 0.014949234317621908 4.063349508586944e-05 0.019367978746141636 7.91887400388737e-05']
['59866.28670678432 0.03428219504746374 6.793310600682138e-05 0.015003221679989426 4.066849826254848e-05 0.0005306304205941794 1.438353894801944e-06 0.015003221679989425 4.066849826254848e-05 0.01927897336747432 7.917596631974213e-05']
['59866.28673832228 0.03420814165315013 6.787136882986606e-05 0.015075765718466187 4.0674026764652476e-05 0.0005331961411087183 1.4385494255658874e-06 0.015075765718466186 4.0674026764652476e-05 0.01913237593468394 7.912584381914281e-05']
['59866.28676986024 0.03428728142886023 6.791497694263368e-05 0.014981844389512741 4.063919369494796e-05 0.0005298743536054515 1.4373174577377677e-06 0.014981844389512741 4.063919369494796e-05 0.019305437039347485 7.914536093349985e-05']
['59866.28680139821 0.03422636494032014 6.788729433196625e-05 0.01504732741027229 4.068406989554549e-05 0.0005321903417037784 1.4389046286604968e-06 0.015047327410272288 4.068406989554549e-05 0.019179037530047856 7.91446667500764e-05']
['59866.286832936166 0.03423335939274106 6.790250975676528e-05 0.014991401046577124 4.0670041397242766e-05 0.0005302123512079472 1.438408472027378e-06 0.014991401046577124 4.0670041397242766e-05 0.019241958346163934 7.915050914884278e-05']
['59866.28686447413 0.03422997616070616 6.790374560995796e-05 0.014987690701585498 4.064314913656902e-05 0.0005300811245977264 1.4374573528680128e-06 0.014987690701585498 4.064314913656902e-05 0.019242285459120663 7.913775483041754e-05']
['59866.2868960121 0.034244630988570175 6.790794305540681e-05 0.015004710745590207 4.0659907954016033e-05 0.0005306830855166133 1.438050074787361e-06 0.015004710745590207 4.0659907954016033e-05 0.01923992024297997 7.914996427570533e-05']
['59866.286927550056 0.0342594009209921 6.792827301654304e-05 0.015009975783852787 4.065092164567835e-05 0.0005308692981532927 1.437732249144674e-06 0.015009975783852787 4.065092164567835e-05 0.01924942513713931 7.916279243213373e-05']
['59866.28695908802 0.03427201283066558 6.796020272835775e-05 0.015030544642548304 4.067298657921021e-05 0.0005315967727166595 1.438512636531472e-06 0.015030544642548304 4.067298657921021e-05 0.019241468188117276 7.920152140048888e-05']
['59866.28699062598 0.03431382838080454 6.794803937515562e-05 0.01508264956008899 4.0679452259042887e-05 0.0005334396072024364 1.4387413131772098e-06 0.01508264956008899 4.0679452259042887e-05 0.019231178820715546 7.91944056800949e-05']
['59866.287022163946 0.03420581837651949 6.790478468093213e-05 0.014973166705856075 4.0629666982504336e-05 0.0005295674433279968 1.436980519209586e-06 0.014973166705856075 4.0629666982504336e-05 0.019232651670663414 7.913172323204493e-05']
['59866.28705370191 0.03435612462301071 6.800727567133495e-05 0.015025857450476484 4.064671866757733e-05 0.000531430997208337 1.4375835992023444e-06 0.015025857450476484 4.064671866757733e-05 0.01933026717253422 7.922843733583369e-05']
['59866.28708523987 0.034232363217806545 6.79194313075805e-05 0.015027924580778812 4.0653977966989785e-05 0.000531504106987366 1.4378403443989837e-06 0.015027924580778814 4.0653977966989785e-05 0.019204438637027733 7.915677528604634e-05']
['59866.287116777836 0.03425038924746668 6.79331189944883e-05 0.015048010608935321 4.067291147799142e-05 0.0005322145049136308 1.4385099803692046e-06 0.015048010608935323 4.067291147799142e-05 0.019202378638531355 7.917824438831561e-05']
['59866.2871483158 0.034239435250538255 6.788775538135348e-05 0.014978404528137578 4.063821694318317e-05 0.0005297526933962497 1.4372829122107588e-06 0.014978404528137578 4.063821694318317e-05 0.01926103072240068 7.912150154692281e-05']
['59866.28717985376 0.03425686580552351 6.791666389868748e-05 0.015036044250375346 4.0694203521589854e-05 0.0005317912815546019 1.4392630323663645e-06 0.015036044250375347 4.0694203521589854e-05 0.019220821555148166 7.917506826889293e-05']
['59866.287211391726 0.034172359081695886 6.787343129898041e-05 0.014997059006935291 4.0634973443611394e-05 0.0005304124606210184 1.4371681968797e-06 0.014997059006935291 4.0634973443611394e-05 0.019175300074760593 7.910754542431726e-05']
['59866.287242929684 0.03427207602558765 6.790615736700487e-05 0.015078711042694157 4.069534649617032e-05 0.0005333003106442495 1.4393034568228777e-06 0.015078711042694159 4.069534649617032e-05 0.01919336498289349 7.916664344782967e-05']
['59866.28727446765 0.03428298898992744 6.794956101565636e-05 0.015070295969802553 4.068842714415567e-05 0.0005330026883226545 1.4390587348059613e-06 0.015070295969802553 4.068842714415567e-05 0.019212693020124884 7.920032162615042e-05']
['59866.287306005615 0.03419232376882406 6.783779070273967e-05 0.014959694970133166 4.0623985016232514e-05 0.0005290909781430348 1.4367795607609989e-06 0.014959694970133166 4.0623985016232514e-05 0.019232628798690893 7.907132227317182e-05']
['59866.287337543574 0.03427574839557022 6.791734425888524e-05 0.0149894685590725 4.06401912052557e-05 0.000530144003443764 1.4373527374480482e-06 0.014989468559072499 4.06401912052557e-05 0.019286279836497718 7.914790453562036e-05']
['59866.28736908154 0.034184561685703586 6.785618874311938e-05 0.015089637857124088 4.0710457064139264e-05 0.000533686767650643 1.4398378838418074e-06 0.015089637857124086 4.0710457064139264e-05 0.0190949238285795 7.913155922331474e-05']
['59866.287400619505 0.03423573206380051 6.790258831421706e-05 0.015019363413033223 4.065884541801e-05 0.0005312013176172884 1.4380124952634558e-06 0.015019363413033225 4.065884541801e-05 0.019216368650767285 7.914482428115992e-05']
['59866.28743215746 0.03431487985448346 6.798366507829811e-05 0.015026721795417383 4.067517866584184e-05 0.0005314615671571994 1.4385901657366075e-06 0.015026721795417383 4.067517866584184e-05 0.019288158059066078 7.922278003817062e-05']
['59866.28746369543 0.03423518054083286 6.789248467095118e-05 0.014994137786931715 4.065551807183415e-05 0.0005303091435980344 1.437894814465397e-06 0.014994137786931715 4.065551807183415e-05 0.019241042753901146 7.913444651025603e-05']
['59866.28749523339 0.034245207143694605 6.789710823733624e-05 0.015048816269160388 4.06681836217562e-05 0.0005322429993152467 1.4383427666603018e-06 0.015048816269160386 4.06681836217562e-05 0.019196390874534217 7.914492065878537e-05']
['59866.28752677135 0.03437327690189278 6.801025590124172e-05 0.015142950913443599 4.073642574389933e-05 0.0005355723313049957 1.4407563380083372e-06 0.015142950913443599 4.073642574389933e-05 0.019230325988449176 7.927705399509121e-05']
['59866.28755830932 0.034172337030242264 6.783943884389387e-05 0.015007178202914199 4.066340035474082e-05 0.0005307703539677203 1.4381735931959404e-06 0.015007178202914199 4.066340035474082e-05 0.019165158827328065 7.90929933120776e-05']
['59866.28758984728 0.034268715613894 6.791203150137416e-05 0.015013585605856333 4.067125787859712e-05 0.0005309969694900808 1.4384514962542055e-06 0.015013585605856333 4.067125787859712e-05 0.01925513000803767 7.915930292815232e-05']
['59866.28762138524 0.03419654962218506 6.787941156578952e-05 0.014997534602351516 4.0650177378593095e-05 0.0005304292813679971 1.437705926081208e-06 0.014997534602351516 4.0650177378593095e-05 0.019199015019833544 7.912048682502479e-05']
['59866.28765292321 0.034330742363537496 6.798906049742623e-05 0.015047098463295192 4.0668455235803065e-05 0.000532182244360865 1.4383523730421179e-06 0.015047098463295192 4.0668455235803065e-05 0.019283643900242304 7.922395848851029e-05']
['59866.28768446117 0.034169345020593045 6.78614698338534e-05 0.014961667336937422 4.062537848658856e-05 0.0005291607363489211 1.4368288446932691e-06 0.014961667336937422 4.062537848658856e-05 0.019207677683655625 7.909235402483333e-05']
['59866.28771599913 0.03430006828289751 6.794321987362926e-05 0.015032257808176798 4.067565770594031e-05 0.0005316573635562395 1.4386071083142986e-06 0.015032257808176798 4.067565770594031e-05 0.01926781047472071 7.918832146602901e-05']
['59866.28774753709 0.03422173265246381 6.787955894297908e-05 0.015053431694127099 4.0693139153898716e-05 0.0005324062365814516 1.4392253880598508e-06 0.0150534316941271 4.0693139153898716e-05 0.019168300958336708 7.914269452382788e-05']
['59866.28777907506 0.03421182222917789 6.788192378104322e-05 0.015000469017693736 4.0673470580642746e-05 0.0005305330650806191 1.4385297545804613e-06 0.015000469017693736 4.0673470580642746e-05 0.01921135321148415 7.913461180349451e-05']
['59866.28781061302 0.034229694364322626 6.78993273982046e-05 0.015075401126928407 4.067814941799741e-05 0.0005331832463208412 1.4386952346011096e-06 0.015075401126928407 4.067814941799741e-05 0.019154293237394218 7.915194565644928e-05']
['59866.28784215098 0.03435583759119321 6.797475099479334e-05 0.015050625027487025 4.0682692861738375e-05 0.000532306971054923 1.4388559260522284e-06 0.015050625027487026 4.0682692861738375e-05 0.019305212563706188 7.92189893351758e-05']
['59866.28787368895 0.03427692482123518 6.793194570555766e-05 0.015025476188178065 4.0668199322795476e-05 0.000531417512812913 1.4383433219709712e-06 0.015025476188178065 4.0668199322795476e-05 0.01925144863305711 7.917481723061605e-05']
['59866.28790522691 0.03424750237340506 6.790696021060971e-05 0.015071319922284053 4.0701405722521086e-05 0.000533038903233526 1.4395177581173304e-06 0.015071319922284051 4.0701405722521086e-05 0.019176182451121012 7.917044696624241e-05']
['59866.28793676487 0.034356862555635186 6.799371409688656e-05 0.01505158904660547 4.068580672966514e-05 0.0005323410662566864 1.438966056601713e-06 0.01505158904660547 4.068580672966514e-05 0.019305273509029715 7.92368602730624e-05']
['59866.28796830284 0.034267141683740183 6.794745917841237e-05 0.015059153210994899 4.068199662294372e-05 0.000532608593846228 1.4388313016420635e-06 0.015059153210994897 4.068199662294372e-05 0.019207988472745286 7.919521486826851e-05']
['59866.287999840795 0.03423520577321463 6.791428372136461e-05 0.014981562728455524 4.0648476455536965e-05 0.0005298643918833332 1.437645768234052e-06 0.014981562728455525 4.0648476455536965e-05 0.019253643044759104 7.914953298372868e-05']
['59866.28803137876 0.03417524277128283 6.783736122858156e-05 0.01502742105901386 4.067145227808561e-05 0.0005314862985478446 1.4384583717296561e-06 0.01502742105901386 4.067145227808561e-05 0.01914782171226897 7.909535137329915e-05']
['59866.28806291673 0.03426087983548153 6.792988664543643e-05 0.015046925678634136 4.0669493325360454e-05 0.0005321761333535543 1.438389087949769e-06 0.015046925678634134 4.0669493325360454e-05 0.019213954156847398 7.917371525325423e-05']
['59866.288094454685 0.03419851082406036 6.78766113852656e-05 0.015015217678545013 4.066388859595757e-05 0.0005310546922536116 1.438190861196622e-06 0.015015217678545013 4.066388859595757e-05 0.01918329314551535 7.912513007187298e-05']
['59866.28812599265 0.034314207661018975 6.797104806011153e-05 0.015043587660965788 4.066671900481294e-05 0.0005320580751286553 1.438290966432245e-06 0.015043587660965788 4.066671900481294e-05 0.01927062000005319 7.9207609539781e-05']
['59866.28815753062 0.03423578811385729 6.789431027924526e-05 0.014982415935737757 4.064977612444867e-05 0.0005298945679180997 1.4376917346188697e-06 0.014982415935737759 4.064977612444867e-05 0.01925337217811953 7.913306304739016e-05']
['59866.288189068575 0.03416443656824903 6.787443776476215e-05 0.015046410854210789 4.0683227982562926e-05 0.0005321579251642654 1.4388748520798682e-06 0.015046410854210789 4.0683227982562926e-05 0.019118025714038242 7.913320631039641e-05']
['59866.28822060654 0.03419534204375468 6.790926549655431e-05 0.01508027089537013 4.069269764363989e-05 0.000533355479147333 1.4392097728287133e-06 0.01508027089537013 4.069269764363989e-05 0.019115071148384545 7.916794794484821e-05']
['59866.2882521445 0.03433193923117355 6.800641967414046e-05 0.015036715471454043 4.067107142715057e-05 0.0005318150211440645 1.4384449018832353e-06 0.015036715471454042 4.067107142715057e-05 0.01929522375971951 7.924019919162055e-05']
['59866.288283682465 0.03427486684082495 6.793956976296131e-05 0.015076054662331563 4.068756327251395e-05 0.0005332063604074852 1.439028181596633e-06 0.015076054662331561 4.068756327251395e-05 0.01919881217849339 7.919130599144778e-05']
['59866.28831522043 0.03428580346656468 6.793152690691973e-05 0.015009198026552992 4.0673216202318786e-05 0.0005308417906157843 1.4385207577876448e-06 0.015009198026552992 4.0673216202318786e-05 0.01927660544001169 7.917703495424748e-05']
['59866.28834675839 0.034233223979023474 6.788114060700184e-05 0.01496191580549486 4.0640382804687414e-05 0.0005291695241265031 1.4373595138917482e-06 0.01496191580549486 4.0640382804687414e-05 0.019271308173528616 7.911693854427815e-05']
['59866.288378296354 0.03427897116183265 6.792115768258567e-05 0.01508343928463027 4.068052593687774e-05 0.0005334675379945309 1.4387792867626997e-06 0.01508343928463027 4.068052593687774e-05 0.019195531877202382 7.917189432774518e-05']
['59866.28840983432 0.03420330468441564 6.787238823031808e-05 0.015029958629839206 4.0678255204279414e-05 0.0005315760467568 1.4386989760254857e-06 0.015029958629839205 4.0678255204279414e-05 0.019173346054576434 7.912889188249451e-05']
['59866.28844137228 0.034247068862236045 6.789521728953969e-05 0.015144075555275277 4.072010783799611e-05 0.0005356121073731556 1.440179210144914e-06 0.015144075555275277 4.072010783799611e-05 0.019102993306960768 7.916999250430582e-05']
['59866.288472910244 0.03428870720754794 6.797703228599716e-05 0.015023693676711612 4.0668841908611414e-05 0.0005313544693660232 1.4383660487951862e-06 0.015023693676711612 4.0668841908611414e-05 0.019265013530836327 7.921383478029029e-05']
['59866.2885044482 0.034256788782300485 6.79561561904386e-05 0.015027561066803617 4.06745441562176e-05 0.0005314912503104692 1.4385677245492436e-06 0.015027561066803615 4.06745441562176e-05 0.01922922771549687 7.919884914880635e-05']
['59866.28853598617 0.03429364297031087 6.795646340669797e-05 0.015069818008234028 4.0689351931403205e-05 0.000532985783890157 1.4390914424641287e-06 0.01506981800823403 4.0689351931403205e-05 0.019223824962076842 7.920671865027275e-05']
['59866.288567524134 0.034276184072870065 6.794152472514e-05 0.015050246819231687 4.069581182460873e-05 0.0005322935946741774 1.4393199144497963e-06 0.01505024681923169 4.069581182460873e-05 0.019225937253638376 7.919722142878986e-05']
['59866.28859906209 0.034317494846107265 6.795618003929635e-05 0.015031541655871979 4.066342267891071e-05 0.0005316320348497242 1.438174382751938e-06 0.015031541655871979 4.066342267891071e-05 0.019285953190235287 7.919315847658186e-05']
['59866.28863060006 0.034189014566225355 6.786802156872312e-05 0.015027286866553708 4.067297772025778e-05 0.0005314815524604314 1.4385123232101232e-06 0.015027286866553706 4.067297772025778e-05 0.01916172769967165 7.912243340725342e-05']
['59866.288662138024 0.03425507406091071 6.792310401640807e-05 0.015000096619281596 4.0645371037053405e-05 0.0005305198941810431 1.4375359365224903e-06 0.015000096619281596 4.0645371037053405e-05 0.019254977441629115 7.915550673177154e-05']
['59866.28869367598 0.034205396395550494 6.788835095754473e-05 0.014970439796743435 4.0620578254178475e-05 0.000529470998646966 1.4366590712008127e-06 0.014970439796743437 4.0620578254178475e-05 0.019234956598807057 7.911295452350773e-05']
['59866.28872521395 0.0342431185592218 6.79126240394615e-05 0.015019956137580918 4.06726886882858e-05 0.000531222280959879 1.4385021007952228e-06 0.01501995613758092 4.06726886882858e-05 0.019223162421640877 7.916054641713545e-05']
['59866.28875675191 0.03431892708947487 6.79517962147171e-05 0.015078194174636336 4.070615282923061e-05 0.0005332820301761764 1.439685652672487e-06 0.015078194174636335 4.070615282923061e-05 0.019240732914838535 7.921134695839428e-05']
['59866.28878828987 0.03429262652867796 6.795454626081208e-05 0.015035044017171553 4.067734807315202e-05 0.0005317559055415733 1.4386668928248285e-06 0.015035044017171553 4.067734807315202e-05 0.01925758251150641 7.919890784459854e-05']
['59866.28881982784 0.03436747382139491 6.798112897238137e-05 0.014934898426592002 4.0612695347452554e-05 0.0005282139798149972 1.4363802704071765e-06 0.014934898426592002 4.0612695347452554e-05 0.019432575394802913 7.918854033093768e-05']
['59866.288851365796 0.034300479396372825 6.791838272376336e-05 0.015003507402369515 4.0660276880598114e-05 0.0005306405259562113 1.4380631228960667e-06 0.015003507402369515 4.0660276880598114e-05 0.01929697199400331 7.915911083266725e-05']
['59866.28888290376 0.034266370573187564 6.795020212520973e-05 0.015120391747869938 4.07200872775141e-05 0.0005347744640354231 1.440178482966615e-06 0.015120391747869937 4.07200872775141e-05 0.019145978825317628 7.921714130631844e-05']
['59866.28891444173 0.034218337663862 6.786086440245341e-05 0.015071761137901896 4.068543968036761e-05 0.0005330545080438702 1.4389530748883662e-06 0.015071761137901896 4.068543968036761e-05 0.019146576525960107 7.912270166919858e-05']
['59866.288945979686 0.03428441557743086 6.794388591568106e-05 0.015018000790976161 4.066084216615166e-05 0.0005311531247204111 1.438083115782757e-06 0.01501800079097616 4.066084216615166e-05 0.0192664147864547 7.918128389325207e-05']
['59866.28897751765 0.034218817124846784 6.787529670783802e-05 0.015086196462560682 4.071371165642682e-05 0.0005335650532159996 1.4399529914974324e-06 0.015086196462560682 4.071371165642682e-05 0.019132620662286104 7.914961920325145e-05']
['59866.28900905561 0.03433478228909504 6.79780921713879e-05 0.015040770473626794 4.0671198646587465e-05 0.0005319584375085183 1.4384494013503998e-06 0.015040770473626794 4.0671198646587465e-05 0.01929401181546825 7.921595429338643e-05']
['59866.289040593576 0.034205268111149885 6.788454114454433e-05 0.01495490313783856 4.062429512046748e-05 0.0005289215017438896 1.4367905284547475e-06 0.01495490313783856 4.062429512046748e-05 0.019250364973311326 7.911159384338157e-05']
['59866.28907213154 0.03434847443813421 6.796254811508748e-05 0.015074074241113943 4.0699923067149766e-05 0.0005331363173349989 1.4394653199103866e-06 0.015074074241113943 4.0699923067149766e-05 0.019274400197020272 7.921736983747625e-05']
['59866.2891036695 0.03427885227601091 6.795734631487404e-05 0.015042014448880103 4.065604527024689e-05 0.0005320024341331067 1.4379134602950368e-06 0.015042014448880103 4.065604527024689e-05 0.019236837827130805 7.919037148022536e-05']
['59866.289135207466 0.03432059087484839 6.799298443954543e-05 0.015028894605798773 4.066952883619157e-05 0.0005315384146044437 1.4383903438885033e-06 0.015028894605798773 4.066952883619157e-05 0.01929169626904962 7.922787709357158e-05']
['59866.28916674543 0.03416854292531177 6.785472260818022e-05 0.014981502469751955 4.064388917916914e-05 0.0005298622606676582 1.4374835265208812e-06 0.014981502469751955 4.064388917916914e-05 0.019187040455559815 7.90960751734349e-05']
['59866.28919828339 0.03429818526987428 6.796242467835905e-05 0.014945141242470272 4.0624615813193756e-05 0.0005285762453212654 1.4368018706397697e-06 0.014945141242470272 4.0624615813193756e-05 0.019353044027404006 7.91785992433007e-05']
['59866.289229821356 0.03416679895628954 6.785824990845383e-05 0.01500964608240659 4.0672470351597446e-05 0.0005308576373499801 1.4384943787145094e-06 0.015009646082406588 4.0672470351597446e-05 0.01915715287388295 7.911379099208777e-05']
['59866.289261359314 0.03415669008921246 6.787171285387643e-05 0.014960389044497627 4.061099422653754e-05 0.000529115526002141 1.4363201055621939e-06 0.014960389044497627 4.061099422653754e-05 0.019196301044714835 7.90937561238997e-05']
['59866.28929289728 0.03420954728288163 6.784952037764314e-05 0.015063058149556587 4.0671692162359584e-05 0.0005327467027961308 1.4384668559003168e-06 0.015063058149556585 4.0671692162359584e-05 0.01914648913332504 7.91059034385295e-05']
['59866.289324435245 0.034202058669081735 6.788873570566651e-05 0.015020399384723486 4.067744023238362e-05 0.0005312379576207125 1.4386701522908864e-06 0.015020399384723486 4.067744023238362e-05 0.01918165928435825 7.914249540905935e-05']
['59866.289355973204 0.034217385708833814 6.788796021864488e-05 0.015123447115802867 4.0706676453454205e-05 0.0005348825255708653 1.4397041720910444e-06 0.015123447115802867 4.0706676453454205e-05 0.01909393859303095 7.915686104523419e-05']
['59866.28938751117 0.03425391478851468 6.792439187074718e-05 0.015037735951951597 4.067284927813572e-05 0.0005318511132586234 1.4385077804993172e-06 0.015037735951951597 4.067284927813572e-05 0.019216178836563083 7.917072488876662e-05']
['59866.289419049135 0.03420959174230703 6.788051712941674e-05 0.01499198414228451 4.064961745295735e-05 0.0005302329739999752 1.4376861227628318e-06 0.01499198414228451 4.064961745295735e-05 0.019217607600022522 7.912114764605488e-05']
['59866.28945058709 0.03426757546655349 6.792573543612268e-05 0.015055304685285957 4.070166153693711e-05 0.0005324724800928515 1.4395268057015136e-06 0.015055304685285957 4.070166153693711e-05 0.019212270781267533 7.918668313804739e-05']
['59866.28948212506 0.03439944524136545 6.802881211412936e-05 0.015022465697336475 4.067232596285809e-05 0.000531311038479897 1.4384892720074881e-06 0.015022465697336475 4.067232596285809e-05 0.019376979544028974 7.92600616760326e-05']
['59866.28951366302 0.034337519867703094 6.796379051714067e-05 0.015016813430164035 4.065555633074618e-05 0.0005311111304220815 1.437896167597612e-06 0.015016813430164035 4.065555633074618e-05 0.01932070643753906 7.919565065090542e-05']
['59866.28954520098 0.034235349655152236 6.790566539715138e-05 0.015031921864981762 4.066886889903119e-05 0.0005316454819962199 1.4383670033860136e-06 0.015031921864981762 4.066886889903119e-05 0.019203427790170473 7.91526139211869e-05']
['59866.28957673895 0.03426438913983707 6.793799972335496e-05 0.015065519131069422 4.0702743621468206e-05 0.0005328337422122699 1.4395650766130618e-06 0.015065519131069422 4.0702743621468206e-05 0.01919887000876765 7.919775972037056e-05']
['59866.28960827691 0.03435878931132903 6.80111433481633e-05 0.014984674703767261 4.064852837901996e-05 0.0005299744554952538 1.4376476046516033e-06 0.014984674703767261 4.064852837901996e-05 0.01937411460756177 7.923268567267179e-05']
['59866.28963981487 0.0342621579895527 6.793585643318552e-05 0.014973803423527578 4.063558969819127e-05 0.0005295899626090577 1.4371899924269424e-06 0.01497380342352758 4.063558969819127e-05 0.019288354566025116 7.916142835642964e-05']
['59866.28967135284 0.0342930979032438 6.794791670236753e-05 0.015103550869320612 4.071786728467558e-05 0.0005341788397982819 1.4400999667813086e-06 0.015103550869320612 4.071786728467558e-05 0.01918954703392319 7.921403979348818e-05']
['59866.2897028908 0.03436297613955609 6.799420942144492e-05 0.015040855579075937 4.066336278479228e-05 0.000531961447498055 1.4381722644308245e-06 0.015040855579075937 4.066336278479228e-05 0.019322120560480154 7.922576340948025e-05']
['59866.28973442876 0.03425962394067175 6.793524069345888e-05 0.015008673284850681 4.066782465721564e-05 0.0005308232316745022 1.4383300708867407e-06 0.01500867328485068 4.066782465721564e-05 0.019250950655821074 7.917745190663961e-05']
['59866.28976596672 0.03422288873708463 6.790674212024393e-05 0.015012917436759506 4.066025059148349e-05 0.0005309733378423961 1.4380621931088353e-06 0.015012917436759506 4.066025059148349e-05 0.019209971300325125 7.914910993528319e-05']
['59866.28979750469 0.03435457444279092 6.797461104803923e-05 0.015064566399848555 4.067909674388006e-05 0.0005328000462382168 1.4387287394004302e-06 0.015064566399848555 4.067909674388006e-05 0.019290008042942366 7.921702253322938e-05']
['59866.28982904265 0.03431797989580131 6.795301220905421e-05 0.015098041219097457 4.071247702938897e-05 0.0005339839757832325 1.4399093254983328e-06 0.015098041219097458 4.071247702938897e-05 0.019219938676703848 7.921564021171825e-05']
['59866.28986058061 0.03445831253499745 6.812947470574465e-05 0.015043227892389694 4.0668089368823896e-05 0.0005320453509181543 1.4383394331447292e-06 0.015043227892389694 4.0668089368823896e-05 0.01941508464260775 7.934430550828048e-05']
['59866.28989211858 0.03432323891883346 6.796141831175987e-05 0.015000866200834021 4.0653070435436684e-05 0.0005305471125606389 1.437808247036164e-06 0.015000866200834021 4.0653070435436684e-05 0.01932237271799944 7.919233873787657e-05']
['59866.28992365654 0.034268362257727766 6.791654777480355e-05 0.015077140906869768 4.069396838212958e-05 0.0005332447784491878 1.4392547160091604e-06 0.015077140906869768 4.069396838212958e-05 0.019191221350857997 7.917484780113527e-05']
['59866.2899551945 0.03431970299091216 6.79557435411265e-05 0.015070632145315186 4.069050457521888e-05 0.0005330145780992283 1.4391322088998817e-06 0.015070632145315187 4.069050457521888e-05 0.01924907084559697 7.920669316928505e-05']
['59866.28998673247 0.03427845737900492 6.793104021895792e-05 0.015069639941535984 4.069041673022413e-05 0.0005329794860690028 1.4391291020187396e-06 0.015069639941535984 4.069041673022413e-05 0.01920881743746894 7.918545471807928e-05']
['59866.290018270425 0.034217673545498775 6.791006245471347e-05 0.015087392252393597 4.070255996984677e-05 0.0005336073456299568 1.4395585812656487e-06 0.015087392252393597 4.070255996984677e-05 0.019130281293105178 7.917370125680658e-05']
['59866.29004980839 0.03425330714253117 6.792015614290165e-05 0.015032925999752086 4.0665175717412264e-05 0.0005316809959989372 1.4382363838059273e-06 0.015032925999752087 4.0665175717412264e-05 0.019220381142779082 7.916314879161994e-05']
['59866.29008134636 0.034224371608006635 6.789903581291689e-05 0.01500517238447145 4.066017617062329e-05 0.0005306994126521407 1.438059561009331e-06 0.01500517238447145 4.066017617062329e-05 0.019219199223535183 7.914246009917743e-05']
['59866.290112884315 0.0341512898176357 6.78537463079868e-05 0.014993135366081402 4.0649517176892556e-05 0.0005302736902128376 1.4376825762225237e-06 0.014993135366081402 4.0649517176892556e-05 0.019158154451554294 7.909812978031222e-05']
['59866.29014442228 0.034315004169682015 6.795175438407122e-05 0.014962771790869732 4.063064469446166e-05 0.0005291997984161976 1.4370150986964588e-06 0.014962771790869732 4.063064469446166e-05 0.019352232378812284 7.917253445583719e-05']
['59866.29017596025 0.03419209336410364 6.786795577646556e-05 0.01498218785865419 4.0647671084372126e-05 0.0005298865013413762 1.4376172840558502e-06 0.01498218785865419 4.0647671084372126e-05 0.019209905505449452 7.910937103693587e-05']
['59866.290207498205 0.03424054956696532 6.791523704361004e-05 0.014991590803287826 4.065900727882487e-05 0.0005302190624787234 1.4380182199187402e-06 0.014991590803287826 4.065900727882487e-05 0.019248958763677493 7.915575971203407e-05']
['59866.29023903617 0.034107712977582735 6.783551216326643e-05 0.015051475839318495 4.069767645475026e-05 0.0005323370623679495 1.4393858622506992e-06 0.015051475839318495 4.069767645475026e-05 0.01905623713826424 7.910725364508745e-05']
['59866.29027057413 0.03428633625328271 6.794829855089098e-05 0.014978885669090107 4.0642444554618366e-05 0.0005297697102764539 1.437432433379066e-06 0.014978885669090105 4.0642444554618366e-05 0.0193074505841926 7.91756248812489e-05']
['59866.290302112095 0.034283435117387816 6.792600079867731e-05 0.015023356922172867 4.067108921683634e-05 0.0005313425591105899 1.4384455310646637e-06 0.015023356922172867 4.067108921683634e-05 0.01926007819521495 7.917120109348963e-05']
['59866.29033365006 0.03441500722397925 6.802763446261892e-05 0.0150694197880628 4.068651640184905e-05 0.0005329716997326703 1.4389911561208337e-06 0.015069419788062798 4.068651640184905e-05 0.019345587435916453 7.926633375839726e-05']
['59866.29036518802 0.03426244747012439 6.792578755078724e-05 0.01502341979269303 4.066779879161184e-05 0.0005313447827003807 1.4383291560781404e-06 0.01502341979269303 4.066779879161184e-05 0.01923902767743136 7.916932785460356e-05']
['59866.290396725984 0.03423245642696745 6.786801644872576e-05 0.015070789707410817 4.068445327796586e-05 0.0005330201507184201 1.438918188039896e-06 0.015070789707410815 4.068445327796586e-05 0.019161666719556634 7.912832865170031e-05']
['59866.29042826395 0.034209251436968645 6.788850582436176e-05 0.015041219305711537 4.068883679143634e-05 0.000531974311696275 1.4390732231147707e-06 0.015041219305711537 4.068883679143634e-05 0.019168032131257107 7.914815640622683e-05']
['59866.29045980191 0.03420722104416924 6.788629144540386e-05 0.014983842531183046 4.0649771342267026e-05 0.0005299450234107464 1.4376915654837926e-06 0.014983842531183046 4.0649771342267026e-05 0.019223378512986194 7.912618072666534e-05']
['59866.290491339874 0.034316704771415844 6.798411485506692e-05 0.01500056583262346 4.0652584381079636e-05 0.0005305364892083148 1.4377910563798229e-06 0.01500056583262346 4.0652584381079636e-05 0.019316138938792384 7.921156790196575e-05']
['59866.29052287783 0.03422491043748579 6.789689374267929e-05 0.015035801989351744 4.068417371453136e-05 0.0005317827133236186 1.4389083005060051e-06 0.015035801989351743 4.068417371453136e-05 0.019189108448134047 7.915295427675991e-05']
['59866.2905544158 0.03425716876617835 6.795234488230398e-05 0.015057781466157197 4.0685921745282823e-05 0.0005325600782969878 1.4389701244470656e-06 0.015057781466157195 4.0685921745282823e-05 0.019199387300021152 7.920142298763868e-05']
['59866.290585953764 0.034336727948584035 6.797188968900251e-05 0.01503615434571606 4.066667194126245e-05 0.0005317951753807542 1.438289301899645e-06 0.015036154345716058 4.066667194126245e-05 0.01930057360286798 7.920830761146326e-05']
['59866.29061749172 0.03417663985744134 6.78537232746353e-05 0.015000942730048197 4.0664442246339405e-05 0.0005305498192279116 1.4382104425732918e-06 0.015000942730048199 4.0664442246339405e-05 0.019175697127393143 7.910578123902612e-05']
['59866.29064902969 0.03420246135247054 6.787657808982037e-05 0.015004627631441971 4.066093113578056e-05 0.0005306801459549394 1.4380862624396956e-06 0.015004627631441971 4.066093113578056e-05 0.01919783372102857 7.912358165561119e-05']
['59866.290680567654 0.03412544696131256 6.782077025401282e-05 0.015005510413329115 4.063966889614682e-05 0.0005307113679773863 1.437334264542159e-06 0.015005510413329115 4.063966889614682e-05 0.019119936547983447 7.906478081823811e-05']
['59866.29071210561 0.034311613979462835 6.795422952048124e-05 0.014961045764728708 4.063931237534326e-05 0.000529138752729031 1.4373216551981143e-06 0.014961045764728708 4.063931237534326e-05 0.019350568214734125 7.917910721941093e-05']
['59866.29074364358 0.034311813038503926 6.794696044641736e-05 0.015104625176819366 4.0711093758282825e-05 0.0005342168356535768 1.4398604022907374e-06 0.015104625176819366 4.0711093758282825e-05 0.019207187861684558 7.920973796764322e-05']
['59866.29077518154 0.03418532310973144 6.782055870403591e-05 0.015023251864268656 4.067188893328947e-05 0.0005313388434473085 1.4384738152483497e-06 0.015023251864268655 4.067188893328947e-05 0.019162071245462788 7.908116547149147e-05']
['59866.2908067195 0.034321570440149544 6.795005261951596e-05 0.015117285146748437 4.070655541847115e-05 0.0005346645904966005 1.4396998913541912e-06 0.015117285146748437 4.070655541847115e-05 0.019204285293401107 7.921005810521825e-05']
['59866.29083825747 0.034155880043097865 6.784201848916843e-05 0.01505519196891881 4.0697962734485625e-05 0.0005324684935668518 1.4393959873251415e-06 0.01505519196891881 4.0697962734485625e-05 0.019100688074179056 7.911298024611544e-05']
['59866.290869795426 0.03432316548778709 6.795905758347966e-05 0.015130067595239513 4.073124376456785e-05 0.0005351166771326388 1.440573062980425e-06 0.015130067595239513 4.073124376456785e-05 0.019193097892547577 7.923047220762572e-05']
['59866.29090133339 0.03421261008152022 6.78723462668376e-05 0.015006448054297232 4.066508484681254e-05 0.0005307445302429243 1.4382331699158988e-06 0.015006448054297232 4.066508484681254e-05 0.019206162027222987 7.912208612874135e-05']
['59866.29093287136 0.03426506624662661 6.791344067391256e-05 0.014992907259699725 4.06566340272116e-05 0.0005302656225999054 1.437934283313084e-06 0.014992907259699725 4.06566340272116e-05 0.019272158986926885 7.915299940363386e-05']
['59866.290964409316 0.03424523162284656 6.79154061244682e-05 0.01506655140044115 4.0687805809514186e-05 0.0005328702512729616 1.4390367595882931e-06 0.01506655140044115 4.0687805809514186e-05 0.01917868022240541 7.917070121354357e-05']
['59866.29099594728 0.03425005470717761 6.792003044472279e-05 0.014982039778537005 4.063458723078473e-05 0.0005298812640785709 1.4371545373951556e-06 0.014982039778537003 4.063458723078473e-05 0.01926801492864061 7.914733233046029e-05']
['59866.29102748524 0.03440778189825005 6.803378381188771e-05 0.015042501630377661 4.0674273781748476e-05 0.0005320196646538888 1.4385581620085221e-06 0.015042501630377661 4.0674273781748476e-05 0.01936528026787239 7.926532840678393e-05']
['59866.291059023206 0.034404838892705146 6.804185931358243e-05 0.015034582441885064 4.06761146871917e-05 0.0005317395806552503 1.4386232707198673e-06 0.015034582441885063 4.06761146871917e-05 0.019370256450820085 7.92732043309397e-05']
['59866.29109056117 0.034123324171945885 6.78304867090115e-05 0.015012587873227755 4.066564290009086e-05 0.0005309616819168092 1.4382529070131775e-06 0.015012587873227755 4.066564290009086e-05 0.01911073629871813 7.90864681197681e-05']
['59866.29112209913 0.03413720931807722 6.784344854485135e-05 0.015017697152977546 4.065188898199664e-05 0.0005311423857229911 1.4377664616683827e-06 0.015017697152977544 4.065188898199664e-05 0.019119512165099675 7.909051515992592e-05']
['59866.291153637096 0.03430930268169505 6.794023942267844e-05 0.015048720847076685 4.0685643512911416e-05 0.0005322396244494019 1.4389602839899017e-06 0.015048720847076683 4.0685643512911416e-05 0.019260581834618366 7.919089417900633e-05']
['59866.29118517506 0.03427425626722059 6.791970990111632e-05 0.015046158979414423 4.068242944367135e-05 0.000532149016915625 1.4388466095439026e-06 0.015046158979414423 4.068242944367135e-05 0.019228097287806167 7.91716303892442e-05']
['59866.29121671302 0.03430427010005024 6.795524392963221e-05 0.015001297779103624 4.065517931607756e-05 0.0005305623765195141 1.437882833431361e-06 0.015001297779103624 4.065517931607756e-05 0.01930297232094661 7.918812273793486e-05']
['59866.291248250986 0.034271144233729026 6.79668935202522e-05 0.014999013156582001 4.065962883219835e-05 0.0005304815745267551 1.43804020287247e-06 0.014999013156582003 4.065962883219835e-05 0.019272131077147023 7.920040423864916e-05']
['59866.291279788944 0.034252715642232825 6.789822936031627e-05 0.015101005501775287 4.069102754161492e-05 0.0005340888158367654 1.4391507050525486e-06 0.015101005501775287 4.069102754161492e-05 0.019151710140457537 7.915762295988035e-05']
['59866.29131132691 0.034368656212935056 6.800971728930393e-05 0.015053900668907905 4.067012087735607e-05 0.0005324228231713518 1.4384112830613578e-06 0.015053900668907907 4.067012087735607e-05 0.01931475554402715 7.924254146574175e-05']
['59866.291342864875 0.034247588419596395 6.788903649723606e-05 0.015072783248457658 4.068938428523693e-05 0.0005330906578099449 1.439092586746921e-06 0.01507278324845766 4.068938428523693e-05 0.019174805171138735 7.91488930436474e-05']
['59866.291374402834 0.03424723758380747 6.791030850764821e-05 0.015011116787176912 4.0659322504334915e-05 0.0005309096528908747 1.438029368740543e-06 0.015011116787176912 4.0659322504334915e-05 0.019236120796630556 7.9151693021157e-05']
['59866.2914059408 0.03437623279477681 6.80211705635546e-05 0.015107559949824632 4.071434185282257e-05 0.0005343206320159414 1.4399752801355442e-06 0.015107559949824632 4.071434185282257e-05 0.01926867284495218 7.927507349315223e-05']
['59866.291437478765 0.03429027666948787 6.79270730934619e-05 0.01501572599953926 4.0662058889010704e-05 0.0005310726704311476 1.4381261485510657e-06 0.01501572599953926 4.0662058889010704e-05 0.019274550669948612 7.916748254263166e-05']
['59866.29146901672 0.03421619008861786 6.790209786221478e-05 0.01498462072847397 4.064533881715121e-05 0.0005299725465097578 1.4375347969765568e-06 0.01498462072847397 4.064533881715121e-05 0.019231569360143887 7.913746560037675e-05']
['59866.29150055469 0.03419001424142101 6.787435493370403e-05 0.015050670557676121 4.068253437754148e-05 0.0005323085813559573 1.4388503208203754e-06 0.015050670557676121 4.068253437754148e-05 0.01913934368374489 7.913277867638844e-05']
['59866.29153209265 0.03439181293460182 6.801519973270732e-05 0.015108546861961246 4.0724670571700874e-05 0.0005343555368925946 1.4403405838389416e-06 0.015108546861961246 4.0724670571700874e-05 0.019283266072640574 7.927525583593931e-05']
['59866.29156363061 0.03431111312414861 6.798225737990976e-05 0.014967450603716483 4.063921367175359e-05 0.0005293652775700559 1.4373181642727374e-06 0.014967450603716483 4.063921367175359e-05 0.01934366252043213 7.920311235252525e-05']
['59866.29159516858 0.03423698401822471 6.789410688191579e-05 0.015080622624120061 4.0693422271750795e-05 0.0005333679190071506 1.4392354013055476e-06 0.015080622624120061 4.0693422271750795e-05 0.01915636139410465 7.915531798609635e-05']
['59866.29162670654 0.03433708585603571 6.796142921240198e-05 0.015034597271363238 4.06830027368507e-05 0.0005317401051407513 1.4388668856424213e-06 0.015034597271363236 4.06830027368507e-05 0.019302488584672477 7.920771788329044e-05']
['59866.2916582445 0.03435200293578541 6.799322404560848e-05 0.015014685434956453 4.0653127036186704e-05 0.0005310358679873787 1.4378102488781971e-06 0.015014685434956453 4.0653127036186704e-05 0.019337317500828954 7.921966456591852e-05']
['59866.29168978247 0.03428242391773282 6.793085016795124e-05 0.015081142254288056 4.0693532717147865e-05 0.0005333862971648875 1.439239307512411e-06 0.015081142254288055 4.0693532717147865e-05 0.019201281663444765 7.918689291506659e-05']
['59866.29172132043 0.03430119641354288 6.7933911475306e-05 0.015085944219345098 4.068743111878324e-05 0.0005335561319371948 1.439023507614524e-06 0.015085944219345098 4.068743111878324e-05 0.01921525219419778 7.918638380037596e-05']
['59866.29175285839 0.03417315713717266 6.786742514175999e-05 0.014981768889399304 4.064127638007148e-05 0.0005298716833351721 1.4373911176560593e-06 0.014981768889399305 4.064127638007148e-05 0.019191388247773354 7.91056302748025e-05']
['59866.29178439635 0.03413260904834178 6.783591811737357e-05 0.014979992902501403 4.064838425677803e-05 0.0005298088706476904 1.4376425073700004e-06 0.014979992902501403 4.064838425677803e-05 0.01915261614584038 7.908225420101333e-05']
['59866.29181593432 0.03417164972871991 6.785210692480652e-05 0.015070795460585032 4.0685988216733116e-05 0.0005330203541953346 1.4389724753937074e-06 0.015070795460585033 4.0685988216733116e-05 0.019100854268134876 7.911547289441885e-05']
['59866.29184747228 0.0342901179836219 6.793798627123109e-05 0.01503990472178454 4.066019657990073e-05 0.0005319278178006992 1.4380602828398617e-06 0.01503990472178454 4.066019657990073e-05 0.01925021326183736 7.917589004555714e-05']
['59866.29187901024 0.034256632465273926 6.793255503173501e-05 0.015028515507625323 4.0676177585348975e-05 0.0005315250067492833 1.438625495287121e-06 0.015028515507625325 4.0676177585348975e-05 0.019228116957648603 7.917943834162093e-05']
['59866.29191054821 0.034300938535429024 6.797665965686315e-05 0.01507626265180807 4.069765669987099e-05 0.0005332137165304401 1.439385163564769e-06 0.015076262651808068 4.069765669987099e-05 0.019224675883620958 7.922831260960668e-05']
['59866.291942086165 0.03437660939217992 6.801437689146063e-05 0.015066612516053464 4.067666778723262e-05 0.0005328724127955838 1.438642832632209e-06 0.015066612516053464 4.067666778723262e-05 0.01930999687612646 7.924990073310212e-05']
['59866.29197362413 0.034349317247060154 6.798317928024126e-05 0.015038319749365106 4.067244564031226e-05 0.0005318717608684288 1.438493504731579e-06 0.015038319749365106 4.067244564031226e-05 0.019310997497695048 7.922095997533469e-05']
['59866.2920051621 0.03424171025018447 6.790869353222561e-05 0.015009768658768963 4.065187013815758e-05 0.0005308619726019752 1.4377657952039087e-06 0.015009768658768961 4.065187013815758e-05 0.01923194159141551 7.914647940991039e-05']
['59866.292036700055 0.03413748443793731 6.783033553912656e-05 0.01500371735694306 4.065411772468506e-05 0.0005306479515802567 1.4378452873163256e-06 0.015003717356943062 4.065411772468506e-05 0.019133767080994245 7.908041291826345e-05']
['59866.29206823802 0.03420392857470697 6.788591257778251e-05 0.015052598739938819 4.0683534321069727e-05 0.0005323767768533552 1.4388856865882274e-06 0.015052598739938819 4.0683534321069727e-05 0.019151329834768152 7.914320622373084e-05']
['59866.29209977599 0.0342147136932122 6.787642312356417e-05 0.015078855393434247 4.068447623953042e-05 0.0005333054160073216 1.4389190001391184e-06 0.015078855393434249 4.068447623953042e-05 0.019135858299777948 7.913555094225371e-05']
['59866.292131313945 0.03422113336591737 6.787645734071509e-05 0.015019263122984034 4.0678743087137225e-05 0.0005311977705823836 1.4387162313518124e-06 0.015019263122984032 4.0678743087137225e-05 0.019201870242933336 7.913263296690709e-05']
['59866.29216285191 0.034343243168263926 6.799192058729062e-05 0.014982937842026908 4.0649764298432794e-05 0.0005299130265771551 1.437691316359118e-06 0.01498293784202691 4.0649764298432794e-05 0.019360305326237018 7.921682020042572e-05']
['59866.29219438987 0.03432429587946746 6.795496175415896e-05 0.015116454032958892 4.0715546779626187e-05 0.0005346351958592943 1.4400178957037353e-06 0.015116454032958892 4.0715546779626187e-05 0.019207841846508568 7.921889027607705e-05']
['59866.292225927835 0.034287636878549625 6.796273509336184e-05 0.015034142483445628 4.0679226136525177e-05 0.0005317240203084967 1.4387333157291125e-06 0.015034142483445628 4.0679226136525177e-05 0.019253494395103998 7.920689869220377e-05']
['59866.2922574658 0.034329129341059535 6.79714851656804e-05 0.015013978053132693 4.0671221471944005e-05 0.0005310108494731776 1.438450208632249e-06 0.015013978053132692 4.0671221471944005e-05 0.019315151287926845 7.921029637394516e-05']
['59866.29228900376 0.034308291163837594 6.795680206519578e-05 0.015045136184733854 4.0692854408703506e-05 0.0005321128429535849 1.4392153172586643e-06 0.015045136184733856 4.0692854408703506e-05 0.01926315497910374 7.920880851809436e-05']
['59866.292320541725 0.03419015671723337 6.787284528099298e-05 0.014997145074458125 4.067454695120505e-05 0.0005304155046369515 1.4385678234017032e-06 0.014997145074458127 4.067454695120505e-05 0.019193011642775242 7.912737766552986e-05']
['59866.29235207969 0.034186740965543236 6.7867872166544e-05 0.014988365432975883 4.0646682282456854e-05 0.0005301049883390685 1.4375823123419491e-06 0.014988365432975884 4.0646682282456854e-05 0.01919837553256735 7.910879124967939e-05']
['59866.29238361765 0.03417655212538984 6.787041683020453e-05 0.01504903015662864 4.069151441128872e-05 0.0005322505640369885 1.4391679245448211e-06 0.015049030156628642 4.069151441128872e-05 0.0191275219687612 7.913401813246834e-05']
['59866.292415155614 0.03429841433192283 6.796376994487905e-05 0.015022931539414764 4.0667638120006104e-05 0.0005313275142731104 1.4383234734825256e-06 0.015022931539414766 4.0667638120006104e-05 0.019275482792508063 7.920183593440381e-05']
['59866.29244669357 0.03414331237718894 6.782470392748556e-05 0.015054849185201608 4.069453325176277e-05 0.0005324563700728509 1.4392746941856769e-06 0.01505484918520161 4.069453325176277e-05 0.019088463191987332 7.909636843389146e-05']
['59866.29247823154 0.03433924162503247 6.797051102890867e-05 0.015091874150037944 4.068981316670298e-05 0.0005337658603331856 1.4391077553258815e-06 0.015091874150037944 4.068981316670298e-05 0.019247367474994524 7.921900823080399e-05']
['59866.292509769504 0.034345024616641476 6.79963689422694e-05 0.0149746828959522 4.063372670273724e-05 0.0005296210675832112 1.437124102441283e-06 0.014974682895952197 4.063372670273724e-05 0.01937034172068928 7.921241023404072e-05']
['59866.29254130746 0.03431503386730331 6.796997273413686e-05 0.015071930783145556 4.068557870674366e-05 0.0005330605080170037 1.4389579919405813e-06 0.015071930783145556 4.068557870674366e-05 0.01924310308415775 7.921637146563798e-05']
['59866.29257284543 0.03432521042184761 6.794900754381186e-05 0.015092850618954252 4.069988042433917e-05 0.0005338003958564758 1.439463811729477e-06 0.01509285061895425 4.069988042433917e-05 0.019232359802893357 7.92057314387318e-05']
['59866.292604383394 0.03440669462972327 6.800324907000843e-05 0.014981488695462517 4.0647649466455556e-05 0.0005298617735018245 1.4376165194784543e-06 0.014981488695462517 4.0647649466455556e-05 0.019425205934260753 7.922545860533372e-05']
['59866.29263592135 0.03415332911186364 6.787675933768686e-05 0.014991504906498107 4.064480243346494e-05 0.0005302160245012391 1.4375158262843206e-06 0.014991504906498105 4.064480243346494e-05 0.019161824205365535 7.911544996422417e-05']
['59866.29266745932 0.034277122199143986 6.793815271613523e-05 0.015072989021513864 4.0687704771910216e-05 0.0005330979355430671 1.4390331861140464e-06 0.015072989021513862 4.0687704771910216e-05 0.019204133177630124 7.91901629881328e-05']
['59866.29269899728 0.034273145190457176 6.793985856701673e-05 0.014979281000436129 4.0651340427043123e-05 0.0005297836922626491 1.4377470605056251e-06 0.014979281000436129 4.0651340427043123e-05 0.01929386419002105 7.917294904588049e-05']
['59866.29273053524 0.03435035058823296 6.79803475203985e-05 0.015078876816546303 4.0694061475798106e-05 0.0005333061736949171 1.439258008524164e-06 0.015078876816546303 4.0694061475798106e-05 0.019271473771686656 7.922963011645445e-05']
['59866.29276207321 0.03421810107344334 6.792020413961147e-05 0.014943364626696822 4.060922263048901e-05 0.000528513410391861 1.4362574481692416e-06 0.014943364626696822 4.060922263048901e-05 0.019274736446746522 7.913446210734686e-05']
['59866.29279361117 0.03428570727477751 6.792170914706175e-05 0.015126071629857959 4.072944225851258e-05 0.0005349753487675502 1.4405093477373792e-06 0.015126071629857959 4.072944225851258e-05 0.019159635644919553 7.919751284066667e-05']
['59866.29282514913 0.03426842007057517 6.793262095991774e-05 0.015015036564973407 4.0672990483488725e-05 0.000531048286671349 1.4385127746170775e-06 0.015015036564973407 4.0672990483488725e-05 0.019253383505601764 7.91778576709033e-05']
['59866.2928566871 0.03426102107032339 6.790618812470463e-05 0.015003004946355952 4.066181317603771e-05 0.0005306227552099346 1.4381174582323471e-06 0.015003004946355952 4.066181317603771e-05 0.019258016123967436 7.91494373725472e-05']
['59866.292888225056 0.034388069812639616 6.803141069522273e-05 0.014960454358933289 4.063580449936949e-05 0.0005291178360277612 1.4371975894645637e-06 0.014960454358933289 4.063580449936949e-05 0.019427615453706325 7.924355777281231e-05']
['59866.29291976302 0.034302026136522897 6.795565180700901e-05 0.015007338536379288 4.066821751348711e-05 0.0005307760246040564 1.4383439653350807e-06 0.015007338536379288 4.066821751348711e-05 0.019294687600143606 7.919516732881968e-05']
['59866.29295130098 0.034317134476128115 6.79445142272665e-05 0.01509291358481152 4.06898776701758e-05 0.000533802622818127 1.4391100366695583e-06 0.01509291358481152 4.06898776701758e-05 0.019224220891316597 7.919673704385232e-05']
['59866.292982838946 0.03436881283525167 6.800219667621617e-05 0.015087487158860779 4.06880117930253e-05 0.0005336107022595976 1.439044044764735e-06 0.01508748715886078 4.06880117930253e-05 0.01928132567639089 7.924527150852694e-05']
['59866.29301437691 0.03423961611006611 6.78916901119723e-05 0.015042036204554913 4.0679654907652395e-05 0.0005320032035827037 1.4387484804056352e-06 0.015042036204554915 4.0679654907652395e-05 0.019197579905511193 7.914616800367384e-05']
['59866.29304591487 0.03434476758004826 6.79776281417457e-05 0.014999862741501583 4.064338947326881e-05 0.0005305116224466502 1.4374658530399636e-06 0.014999862741501585 4.064338947326881e-05 0.019344904838546673 7.920128178036815e-05']
['59866.293077452836 0.034283146038827116 6.794263016213071e-05 0.01501119751579175 4.065076127811165e-05 0.0005309125080815637 1.4377265773022404e-06 0.01501119751579175 4.065076127811165e-05 0.019271948523035366 7.917503006528064e-05']
['59866.2931089908 0.03417869598342823 6.787584870030195e-05 0.015059034834087279 4.070390958023792e-05 0.0005326044071195623 1.439606313968982e-06 0.015059034834087279 4.070390958023792e-05 0.019119661149340952 7.914505096278899e-05']
['59866.29314052876 0.03435878616651453 6.798908405979842e-05 0.015084605080322621 4.0700435023526906e-05 0.0005335087695827694 1.439483426663291e-06 0.015084605080322623 4.0700435023526906e-05 0.019274181086191902 7.924039981218338e-05']
['59866.293172066726 0.034196112490125774 6.78619253164203e-05 0.015051701900445526 4.068826209862203e-05 0.0005323450576447957 1.4390528975142913e-06 0.015051701900445524 4.068826209862203e-05 0.01914441058968025 7.912506290839564e-05']
['59866.293203604684 0.03427274820929644 6.794193045765041e-05 0.015039415222675816 4.065960857266202e-05 0.0005319105053111897 1.4380394863379476e-06 0.015039415222675814 4.065960857266202e-05 0.019233332986620624 7.917897248382487e-05']
['59866.29323514265 0.03433013519066248 6.794452895946093e-05 0.015085974052483743 4.07003746350327e-05 0.0005335571870686356 1.4394812908572112e-06 0.015085974052483745 4.07003746350327e-05 0.01924416113817873 7.920214334823925e-05']
['59866.293266680615 0.034246170209211016 6.793750658099499e-05 0.014964253531122906 4.0635904686241536e-05 0.0005292522042574578 1.4372011328503233e-06 0.014964253531122905 4.0635904686241536e-05 0.01928191667808811 7.916300619678389e-05']
['59866.293298218574 0.034307126795468545 6.794363829585124e-05 0.015063927115216882 4.0679986326129327e-05 0.0005327774361695115 1.4387602019364875e-06 0.01506392711521688 4.0679986326129327e-05 0.019243199680251663 7.919090397496124e-05']
['59866.29332975654 0.03430253465368573 6.79764432634855e-05 0.015079527468259999 4.0711862108891495e-05 0.0005333291857919096 1.4398875771346036e-06 0.01507952746826 4.0711862108891495e-05 0.01922300718542573 7.923542487503465e-05']
['59866.293361294505 0.03423680712319136 6.790619116192378e-05 0.014973750050685861 4.063117804172791e-05 0.0005295880749309273 1.437033961997305e-06 0.014973750050685861 4.063117804172791e-05 0.0192630570725055 7.913370601190323e-05']
['59866.293392832464 0.0341561664850224 6.782184563309314e-05 0.015045427979471967 4.067981508494571e-05 0.0005321231630813491 1.4387541455185247e-06 0.015045427979471969 4.067981508494571e-05 0.01911073850555043 7.90863458532792e-05']
['59866.29342437043 0.0341536479224994 6.78470897730185e-05 0.015084661506793683 4.0711656673197295e-05 0.0005335107652609451 1.4398803113332215e-06 0.015084661506793683 4.0711656673197295e-05 0.019068986415705716 7.912437411913172e-05']
['59866.29345590839 0.03424648394818179 6.792254965883176e-05 0.014970184723329427 4.062979503079685e-05 0.000529461977270368 1.4369850479915211e-06 0.014970184723329427 4.062979503079685e-05 0.019276299224852363 7.91470340341382e-05']
['59866.29348744635 0.03434833604214394 6.796989161234506e-05 0.01507342909821559 4.0693801894003366e-05 0.0005331135000724937 1.4392488276962152e-06 0.015073429098215591 4.0693801894003366e-05 0.01927490694392835 7.922052561288853e-05']
['59866.29351898432 0.03422090886234319 6.791389308768994e-05 0.014908135303246044 4.059183050243064e-05 0.0005272674279543111 1.4356423274689354e-06 0.014908135303246042 4.059183050243064e-05 0.01931277355909715 7.91201211947014e-05']
['59866.29355052228 0.034215618333970084 6.790947851193216e-05 0.01501639007684604 4.0663020693620456e-05 0.000531096157361363 1.4381601654306058e-06 0.01501639007684604 4.0663020693620456e-05 0.019199228257124043 7.915288070368875e-05']
['59866.29358206024 0.034188419550801846 6.788194180979509e-05 0.015015762171471853 4.0649492720214127e-05 0.0005310739497515639 1.4376817112444652e-06 0.015015762171471853 4.0649492720214127e-05 0.019172657379329994 7.912230584531235e-05']
['59866.29361359821 0.034266306760563116 6.792858748681777e-05 0.014983367533913751 4.064180826563007e-05 0.0005299282238188878 1.4374099292595723e-06 0.014983367533913751 4.064180826563007e-05 0.019282939226649365 7.915838286027887e-05']
['59866.29364513617 0.03421616815770925 6.787088645226016e-05 0.015008215721117817 4.065375394173695e-05 0.0005308070486678655 1.4378324211264578e-06 0.015008215721117815 4.065375394173695e-05 0.01920795243659143 7.911501082203607e-05']
['59866.29367667413 0.03421099039996153 6.790651503578686e-05 0.014947745684531256 4.0630749818808364e-05 0.000528668358616377 1.4370188167096627e-06 0.014947745684531256 4.0630749818808364e-05 0.019263244715430276 7.913376406530997e-05']
['59866.29370821209 0.034205581077652265 6.792662618515727e-05 0.015004831358883659 4.06647087996632e-05 0.0005306873513392479 1.4382198699686428e-06 0.01500483135888366 4.06647087996632e-05 0.019200749718768603 7.916846017613011e-05']
['59866.29373975006 0.03430989041835675 6.79525711453338e-05 0.015010799345753473 4.066882921493835e-05 0.0005308984256971675 1.4383655998483385e-06 0.015010799345753473 4.066882921493835e-05 0.019299091072603275 7.919283802829316e-05']
['59866.29377128802 0.03425458163809838 6.791870873141533e-05 0.015097175306346012 4.0699552897575845e-05 0.0005339533503844149 1.4394522278398374e-06 0.015097175306346012 4.0699552897575845e-05 0.019157406331752367 7.917957187182441e-05']
['59866.29380282598 0.034172391003422994 6.78583529769564e-05 0.015003533174137796 4.065917869808838e-05 0.0005306414374460589 1.438024282634991e-06 0.015003533174137796 4.065917869808838e-05 0.0191688578292852 7.910704697527454e-05']
['59866.29383436395 0.034338893393145685 6.800633289079105e-05 0.01506714175530128 4.0699075886911946e-05 0.000532891130804999 1.4394353570387113e-06 0.01506714175530128 4.0699075886911946e-05 0.019271751637844406 7.925450202544778e-05']
['59866.29386590191 0.03422878463265921 6.788793596793557e-05 0.014955735276963762 4.0620286292622876e-05 0.0005289509326450265 1.4366487451730868e-06 0.014955735276963762 4.0620286292622876e-05 0.019273049355695446 7.91124485051573e-05']
['59866.29389743987 0.0342336153040108 6.791108425241189e-05 0.015091662883443336 4.0688721602672026e-05 0.0005337583883058874 1.4390691491456087e-06 0.015091662883443336 4.0688721602672026e-05 0.01914195242056746 7.916746446614249e-05']
['59866.29392897784 0.034362039186281036 6.798202830600857e-05 0.015049278820460225 4.066230730345183e-05 0.0005322593587209806 1.4381349344146746e-06 0.015049278820460225 4.066230730345183e-05 0.01931276036582081 7.921476761210186e-05']
['59866.293960515795 0.03424080100918314 6.791407962307071e-05 0.015033873527222663 4.067869221912472e-05 0.0005317145079279722 1.4387144322638935e-06 0.015033873527222665 4.067869221912472e-05 0.019206927481960477 7.916487991342541e-05']
['59866.29399205376 0.03428550359285567 6.794942165694704e-05 0.014947606633478298 4.061544280338321e-05 0.0005286634406913946 1.4364774417832411e-06 0.014947606633478296 4.061544280338321e-05 0.019337896959377373 7.916273174687997e-05']
['59866.29402359173 0.034179180849388265 6.784603955838458e-05 0.015032845241687605 4.0668170839770564e-05 0.0005316781397666801 1.438342314590036e-06 0.015032845241687603 4.0668170839770564e-05 0.01914633560770066 7.910110747145485e-05']
['59866.294055129685 0.034185657997101694 6.78742499669998e-05 0.015005371898998138 4.0654588611969984e-05 0.0005307064690350609 1.437861941547222e-06 0.015005371898998138 4.0654588611969984e-05 0.019180286098103558 7.911832520845782e-05']
['59866.29408666765 0.03424871884354645 6.791560928184059e-05 0.015040863083045142 4.067053385751995e-05 0.0005319617128966754 1.4384258892467977e-06 0.015040863083045142 4.067053385751995e-05 0.01920785576050131 7.916200040663012e-05']
['59866.29411820562 0.03426839214519753 6.792560959086162e-05 0.015030973351375574 4.068253639890323e-05 0.0005316119351897722 1.4388503923114232e-06 0.015030973351375574 4.068253639890323e-05 0.019237418793821955 7.917674662511865e-05']
['59866.294149743575 0.034197681855078994 6.785938209703881e-05 0.01496713972948531 4.062037505281656e-05 0.0005293542826432623 1.4366518844227701e-06 0.01496713972948531 4.062037505281656e-05 0.019230542125593685 7.908799281827422e-05']
['59866.29418128154 0.03425999114756387 6.793155389265098e-05 0.014960086429874488 4.0608462285455563e-05 0.0005291048231992244 1.4362305564646797e-06 0.014960086429874486 4.0608462285455563e-05 0.01929990471768938 7.914381355140407e-05']
['59866.2942128195 0.0343612611073349 6.799401750273422e-05 0.015004188379944494 4.062828581414461e-05 0.000530664610611143 1.4369316703714318e-06 0.015004188379944494 4.062828581414461e-05 0.019357072727390408 7.920760079915281e-05']
['59866.294244357465 0.034268480480333145 6.79315503338252e-05 0.014942976981412304 4.059853943162982e-05 0.0005284997002444838 1.4358796073011362e-06 0.014942976981412302 4.059853943162982e-05 0.019325503498920843 7.913871956721708e-05']
['59866.29427589543 0.034349925585224136 6.797644049795325e-05 0.015025180794204255 4.0653085066122486e-05 0.000531407065388226 1.4378087644908232e-06 0.015025180794204254 4.0653085066122486e-05 0.019324744791019883 7.920523838841197e-05']
['59866.29430743339 0.0342116797156498 6.788873065789021e-05 0.015005437995009002 4.0654893003980117e-05 0.0005307088067032493 1.4378727072123444e-06 0.015005437995009002 4.0654893003980117e-05 0.019206241720640796 7.913090468018569e-05']
['59866.294338971355 0.03423628415571842 6.788907690498969e-05 0.014969406118240143 4.063420387210176e-05 0.00052943443974844 1.4371409788552953e-06 0.014969406118240143 4.063420387210176e-05 0.01926687803747828 7.912057436173687e-05']
['59866.29437050932 0.034236996934673414 6.79004350931525e-05 0.014990057658502202 4.0649918636364585e-05 0.0005301648385740329 1.4376967749468403e-06 0.014990057658502202 4.0649918636364585e-05 0.019246939276171212 7.913839125849399e-05']
['59866.29440204728 0.034185354357290205 6.785388729951059e-05 0.015004793859276342 4.065982608968595e-05 0.0005306860250619438 1.4380471794289618e-06 0.015004793859276343 4.065982608968595e-05 0.019180560498013862 7.910354909419799e-05']
['59866.294433585244 0.03437677917212368 6.800984795818246e-05 0.015011589591909721 4.066426725480737e-05 0.0005309263749376178 1.4382042535138868e-06 0.01501158959190972 4.066426725480737e-05 0.019365189580213958 7.923964948600855e-05']
['59866.2944651232 0.03432649456480157 6.79972112132626e-05 0.01506045801488042 4.0666682335429274e-05 0.0005326547418435939 1.438289669518096e-06 0.01506045801488042 4.0666682335429274e-05 0.01926603654992115 7.923004344913463e-05']
['59866.29449666117 0.03430986270781745 6.799830739413447e-05 0.015062771871199369 4.0675727630586134e-05 0.0005327365777704306 1.438609581392749e-06 0.01506277187119937 4.0675727630586134e-05 0.019247090836618075 7.923562725658724e-05']
['59866.294528199134 0.03436392401262164 6.800110504513244e-05 0.015119514597618549 4.0704095646161295e-05 0.0005347434411913469 1.439612894704859e-06 0.015119514597618547 4.0704095646161295e-05 0.01924440941500309 7.925259421451756e-05']
['59866.29455973709 0.03429403479832422 6.794832116428445e-05 0.015044765777999717 4.065103689956058e-05 0.0005320997424952087 1.4377363254169115e-06 0.015044765777999715 4.065103689956058e-05 0.019249269020324505 7.918005525417485e-05']
['59866.29459127506 0.03420678909794818 6.788389113218104e-05 0.015046154580219089 4.06548738130237e-05 0.0005321488613259177 1.4378720284711053e-06 0.015046154580219089 4.06548738130237e-05 0.01916063451772909 7.912674288758946e-05']
['59866.294622813024 0.03422426846430029 6.786029225321386e-05 0.015051984153928577 4.0675705597427904e-05 0.0005323550403196918 1.4386088021291838e-06 0.015051984153928577 4.0675705597427904e-05 0.019172284310371712 7.911720603345536e-05']
['59866.29465435098 0.034247464378419495 6.794290200486272e-05 0.015025447142633647 4.0654295042202415e-05 0.0005314164855369199 1.437851558640633e-06 0.015025447142633645 4.0654295042202415e-05 0.01922201723578585 7.917707773226304e-05']
['59866.29468588895 0.034294153130997346 6.796043798903555e-05 0.014968763249031597 4.062916053144939e-05 0.0005294117029012619 1.436962607167624e-06 0.014968763249031597 4.062916053144939e-05 0.01932538988196575 7.917922591912497e-05']
['59866.29471742691 0.03428824768905681 6.793269142062273e-05 0.014980384304397684 4.062747466221735e-05 0.0005298227136580301 1.4369029817405828e-06 0.014980384304397684 4.062747466221735e-05 0.01930786338465913 7.915454668607901e-05']
['59866.29474896487 0.03411782011899676 6.782806877629e-05 0.015013586827003038 4.0655155453061796e-05 0.0005309970126793107 1.437881989449824e-06 0.015013586827003038 4.0655155453061796e-05 0.01910423329199372 7.907900213605219e-05']
['59866.29478050284 0.03429907903023329 6.794813288038596e-05 0.015056032866622094 4.067176089253806e-05 0.0005324982342393211 1.4384692867331265e-06 0.015056032866622094 4.067176089253806e-05 0.019243046163611197 7.919053539426524e-05']
['59866.2948120408 0.0343539606925291 6.799670048953426e-05 0.015133424505722031 4.070920645555696e-05 0.000535235403554152 1.439793652611197e-06 0.01513342450572203 4.070920645555696e-05 0.01922053618680707 7.925144016170677e-05']
['59866.29484357876 0.03434420662730941 6.799729381781656e-05 0.015013531603894677 4.066259062062397e-05 0.0005309950595613844 1.4381449547098768e-06 0.01501353160389468 4.066259062062397e-05 0.019330675023414727 7.922801425333675e-05']
['59866.29487511673 0.034298079865486227 6.795574606687567e-05 0.014991660758964218 4.0651535080449235e-05 0.0005302215366546557 1.4377539449615745e-06 0.014991660758964218 4.0651535080449235e-05 0.019306419106522008 7.918668276864919e-05']
['59866.294906654686 0.034336454460449695 6.796589826070791e-05 0.014995714318924542 4.0627944541855824e-05 0.000530364902011279 1.4369196003332765e-06 0.014995714318924542 4.0627944541855824e-05 0.019340740141525155 7.918328866674465e-05']
['59866.29493819265 0.034308554195301766 6.795051524834993e-05 0.014984195110901514 4.062541140947427e-05 0.0005299574933674194 1.4368300091021584e-06 0.014984195110901516 4.062541140947427e-05 0.01932435908440025 7.916878535575292e-05']
['59866.29496973061 0.03436935129280725 6.800219169820893e-05 0.015081054752991067 4.0672511825308454e-05 0.0005333832024395669 1.4384958455469793e-06 0.015081054752991065 4.0672511825308454e-05 0.019288296539816185 7.923730998677209e-05']
['59866.295001268576 0.03431523342220349 6.79735650910956e-05 0.015054994513980732 4.067131281761883e-05 0.0005324615100269777 1.4384534393246218e-06 0.01505499451398073 4.067131281761883e-05 0.01926023890822276 7.921212809603095e-05']
['59866.29503280654 0.03417688667596934 6.787781767214623e-05 0.01499685860162206 4.06467223325964e-05 0.0005304053727329689 1.4375837288258782e-06 0.01499685860162206 4.06467223325964e-05 0.01918002807434728 7.911734429514377e-05']
['59866.2950643445 0.034266004821364764 6.795066483027457e-05 0.014993727591436662 4.063948631581224e-05 0.0005302946359001074 1.4373278070837681e-06 0.014993727591436664 4.063948631581224e-05 0.0192722772299281 7.917613718090448e-05']
['59866.295095882466 0.03436270835012001 6.801977878546576e-05 0.015111018676124731 4.071178616385092e-05 0.0005344429594353776 1.4398848911282458e-06 0.015111018676124731 4.071178616385092e-05 0.01925168967399528 7.927256674710881e-05']
['59866.29512742043 0.03430728843365111 6.798903460091465e-05 0.015025708117782473 4.064794982630162e-05 0.0005314257156446888 1.4376271425349447e-06 0.015025708117782473 4.064794982630162e-05 0.01928158031586864 7.921341206541922e-05']
['59866.29515895839 0.034423396066331255 6.802418640444387e-05 0.015018627874884128 4.065681488459459e-05 0.0005311753032767859 1.4379406798345279e-06 0.015018627874884128 4.065681488459459e-05 0.019404768191447125 7.924813267545626e-05']
['59866.295190496356 0.03431488679852601 6.79759603845323e-05 0.015060825118485058 4.0672294823368504e-05 0.0005326677254776617 1.4384881706733342e-06 0.01506082511848506 4.0672294823368504e-05 0.01925406168004095 7.921468775674441e-05']
['59866.295222034314 0.03427059940273881 6.792637680882393e-05 0.015066285291350479 4.068680944976476e-05 0.0005328608395891435 1.439001520570689e-06 0.01506628529135048 4.068680944976476e-05 0.019204314111388333 7.9179600463603e-05']
['59866.29525357228 0.034191097961902686 6.786185866857867e-05 0.015007278970630845 4.0651456261467566e-05 0.0005307739178966555 1.437751157310343e-06 0.015007278970630844 4.0651456261467566e-05 0.01918381899127184 7.910608546838958e-05']
['59866.295285110245 0.034333658305197856 6.797782244987371e-05 0.01511618326317544 4.0701011150517876e-05 0.0005346256193371885 1.4395038029873935e-06 0.015116183263175442 4.0701011150517876e-05 0.019217475042022415 7.923103340043682e-05']
['59866.295316648204 0.03412232182378574 6.784070284989748e-05 0.015005075595652714 4.06517201743674e-05 0.0005306959894479323 1.4377604913197994e-06 0.015005075595652714 4.06517201743674e-05 0.019117246228133024 7.908807316089549e-05']
['59866.29534818617 0.03425734360435977 6.793258875013748e-05 0.015001156839578506 4.064781850082932e-05 0.000530557391803492 1.4376224978464847e-06 0.015001156839578507 4.064781850082932e-05 0.019256186764781268 7.916490234423124e-05']
['59866.295379724135 0.03433903621526588 6.797055224972945e-05 0.015088993719488108 4.0678291954097765e-05 0.0005336639859420214 1.4387002757844297e-06 0.015088993719488108 4.0678291954097765e-05 0.019250042495777768 7.921312649703972e-05']
['59866.295411262094 0.03433417892195742 6.800051995019e-05 0.014996488370117533 4.063879806881024e-05 0.0005303922784720725 1.437303465325449e-06 0.014996488370117533 4.063879806881024e-05 0.019337690551839887 7.92185749807059e-05']
['59866.29544280006 0.03424007334722672 6.79260923147164e-05 0.015057145302427903 4.067669099913636e-05 0.000532537578607625 1.4386436535853685e-06 0.015057145302427903 4.067669099913636e-05 0.01918292804479882 7.9174157449174e-05']
['59866.29547433802 0.03426268575150255 6.792433238046057e-05 0.015037270009936468 4.0667186284651925e-05 0.0005318346339308673 1.4383074930758408e-06 0.015037270009936468 4.0667186284651925e-05 0.019225415741566082 7.916776471293013e-05']
['59866.29550587598 0.03427858033100844 6.79190715217077e-05 0.015082834833498145 4.068305128467906e-05 0.0005334461599088565 1.4388686026706124e-06 0.015082834833498145 4.068305128467906e-05 0.019195745497510294 7.917140227508082e-05']
['59866.29553741395 0.034269142263332365 6.79222876368786e-05 0.015085190670394771 4.067278839341241e-05 0.0005335294805949045 1.438505627142723e-06 0.015085190670394771 4.067278839341241e-05 0.019183951592937593 7.916888829282734e-05']
['59866.29556895191 0.03431718248771189 6.796575830945609e-05 0.015045644546866419 4.0677404305221054e-05 0.0005321308225860912 1.438668881627439e-06 0.015045644546866419 4.0677404305221054e-05 0.019271537940845476 7.920855713614416e-05']
['59866.29560048987 0.03429020943527028 6.794807665536773e-05 0.015019769371310875 4.066878829719875e-05 0.0005312156754543056 1.4383641526793347e-06 0.015019769371310875 4.066878829719875e-05 0.019270440063959407 7.918896048519705e-05']
['59866.29563202784 0.034331651797675604 6.798900205284486e-05 0.015065384707755198 4.067275801120568e-05 0.0005328289879600642 1.4385045525919713e-06 0.015065384707755198 4.067275801120568e-05 0.019266267089920408 7.922611718606332e-05']
['59866.2956635658 0.03429210127421489 6.794859214861364e-05 0.015038305200910564 4.066390929696556e-05 0.0005318712463221055 1.4381915933450104e-06 0.015038305200910564 4.066390929696556e-05 0.019253796073304328 7.918689723868767e-05']
['59866.29569510376 0.034318444656992526 6.796473199522085e-05 0.0150131856587349 4.064351985040656e-05 0.0005309828242542249 1.43747046418795e-06 0.0150131856587349 4.064351985040656e-05 0.019305258998257628 7.919028034432376e-05']
['59866.29572664172 0.034243695702208164 6.792726876893643e-05 0.014992124293672424 4.062955039456242e-05 0.0005302379308413459 1.436976395754639e-06 0.014992124293672424 4.062955039456242e-05 0.019251571408535742 7.915095834967265e-05']
['59866.29575817969 0.03436055762505858 6.801606370209099e-05 0.01497606713445969 4.0637414434571056e-05 0.0005296700250056303 1.4372545292746495e-06 0.01497606713445969 4.0637414434571056e-05 0.019384490490598892 7.92312083301396e-05']
['59866.29578971765 0.034272559819872865 6.792711903875101e-05 0.015007366901200525 4.0660554059262724e-05 0.0005307770278043919 1.4380729260859763e-06 0.015007366901200527 4.0660554059262724e-05 0.01926519291867234 7.916674906367493e-05']
['59866.29582125561 0.03424278404415591 6.792463952179309e-05 0.015035612028319266 4.066528990138983e-05 0.0005317759948264378 1.4382404222380278e-06 0.015035612028319266 4.066528990138983e-05 0.019207172015836646 7.916705411299332e-05']
['59866.29585279358 0.03420833611584776 6.790122797470576e-05 0.014994724944541233 4.063905453491019e-05 0.000530329910050463 1.4373125359582361e-06 0.014994724944541233 4.063905453491019e-05 0.01921361117130653 7.913349173367979e-05']
['59866.29588433154 0.03426671821441341 6.79125030407905e-05 0.01497315585395214 4.062056797386517e-05 0.0005295670595204073 1.4366587076091062e-06 0.014973155853952142 4.062056797386517e-05 0.019293562360461272 7.91336755862179e-05']
['59866.2959158695 0.034236490895320305 6.792156934268208e-05 0.01500727808115434 4.0669108376694154e-05 0.0005307738864378594 1.4383754731757516e-06 0.01500727808115434 4.0669108376694154e-05 0.019229212814165966 7.9166381489418e-05']
['59866.29594740747 0.034287285433498335 6.793275445622693e-05 0.015054006031408003 4.068694341532097e-05 0.0005324265496075088 1.4390062586330167e-06 0.015054006031408001 4.068694341532097e-05 0.019233279402090332 7.918514060410293e-05']
['59866.295978945425 0.03428969403235202 6.793272953269987e-05 0.015083393955010304 4.0680356513967724e-05 0.0005334659347871784 1.4387732946530105e-06 0.015083393955010302 4.0680356513967724e-05 0.01920630007734172 7.918173493847221e-05']
['59866.29601048339 0.03425205690136323 6.790858072675191e-05 0.015113328187455201 4.071334219103789e-05 0.0005345246416896823 1.4399399243323327e-06 0.015113328187455201 4.071334219103789e-05 0.01913872871390803 7.917797401226131e-05']
['59866.29604202136 0.03419888475978019 6.78638750350416e-05 0.015007263082255112 4.065286598607225e-05 0.0005307733559603143 1.4378010161190614e-06 0.015007263082255112 4.065286598607225e-05 0.019191621677525077 7.910853966325818e-05']
['59866.296073559315 0.034362082980250445 6.799725704109354e-05 0.01506896402856181 4.066939195437727e-05 0.0005329555805376828 1.4383855026846447e-06 0.015068964028561808 4.066939195437727e-05 0.019293118951688636 7.923147358879116e-05']
['59866.29610509728 0.03415899340165121 6.782767869364542e-05 0.014989775457112647 4.0635715730327795e-05 0.0005301548577415672 1.437194449901946e-06 0.014989775457112645 4.0635715730327795e-05 0.019169217944538568 7.906867514941939e-05']
['59866.29613663525 0.03426770007751219 6.794692604936664e-05 0.015018332597331754 4.066060214862103e-05 0.0005311648599696649 1.4380746268991061e-06 0.015018332597331754 4.066060214862103e-05 0.019249367480180433 7.918376933846067e-05']
['59866.296168173205 0.03436259245659475 6.801722705529095e-05 0.015060947290998586 4.0670658294765435e-05 0.0005326720464464256 1.4384302903140697e-06 0.015060947290998584 4.0670658294765435e-05 0.019301645165596168 7.924926259859189e-05']
['59866.29619971117 0.034322249026581 6.798546110765257e-05 0.015025721209110748 4.066910894735219e-05 0.0005314261786557125 1.4383754933586511e-06 0.01502572120911075 4.066910894735219e-05 0.019296527817470252 7.922120514478268e-05']
['59866.29623124913 0.03428736119980723 6.79341277988406e-05 0.015034055039663532 4.066348737423609e-05 0.0005317209276173493 1.438176670881011e-06 0.015034055039663532 4.066348737423609e-05 0.019253306160143695 7.917426933811176e-05']
['59866.296262787095 0.03420327987734135 6.787464748270002e-05 0.015004776865446113 4.064759826924919e-05 0.0005306854240281476 1.437614708747684e-06 0.015004776865446115 4.064759826924919e-05 0.019198503011895234 7.911507451781275e-05']
['59866.29629432506 0.03430015052629642 6.794240724088677e-05 0.015015955994001157 4.065539239746287e-05 0.0005310808048212576 1.4378903696437505e-06 0.015015955994001158 4.065539239746287e-05 0.01928419453229526 7.917721662623779e-05']
['59866.29632586302 0.03430776606454535 6.796173237961497e-05 0.015010622049157046 4.06729125524744e-05 0.0005308921551127865 1.4385100183712664e-06 0.015010622049157046 4.06729125524744e-05 0.019297144015388304 7.920279593259089e-05']
['59866.296357400985 0.03427249684052906 6.791875491492075e-05 0.015055042038915733 4.0691907543511025e-05 0.0005324631908777168 1.4391818287529253e-06 0.015055042038915733 4.0691907543511025e-05 0.01921745480161333 7.917568192774042e-05']
['59866.29638893895 0.03417554807955393 6.788268475650884e-05 0.015046810410368268 4.0694976927187895e-05 0.0005321720565726 1.4392903859939075e-06 0.015046810410368268 4.0694976927187895e-05 0.019128737669185665 7.914632042524728e-05']
['59866.29642047691 0.034171305917314494 6.783199685195615e-05 0.014996055251332938 4.0652100853235976e-05 0.0005303769600286249 1.4377739550806137e-06 0.014996055251332938 4.0652100853235976e-05 0.019175250665981556 7.908080108790918e-05']
['59866.296452014874 0.0343191001062588 6.795088667308296e-05 0.01504997414942056 4.06782248516551e-05 0.0005322839509523389 1.438697902520998e-06 0.01504997414942056 4.06782248516551e-05 0.01926912595683824 7.919621819720923e-05']
['59866.29648355283 0.03424593638852088 6.79111954139847e-05 0.015039603823320844 4.06612633321797e-05 0.0005319171756945068 1.438098011483918e-06 0.015039603823320844 4.06612633321797e-05 0.019206332565200036 7.915345095651407e-05']
['59866.2965150908 0.03423172485626523 6.790861790435667e-05 0.015022681102961196 4.067281638038531e-05 0.0005313186568954402 1.4385066169794072e-06 0.015022681102961196 4.067281638038531e-05 0.019209043753304032 7.915717515167181e-05']
['59866.296546628764 0.034386930132004355 6.803878490859404e-05 0.015031055728200831 4.066352723902782e-05 0.0005316148486739802 1.4381780808096019e-06 0.015031055728200831 4.066352723902782e-05 0.019355874403803524 7.926410725768053e-05']
['59866.29657816672 0.03433449439531984 6.798715269257859e-05 0.01507434272108383 4.067702931875968e-05 0.0005331458128715165 1.4386556191943455e-06 0.015074342721083833 4.067702931875968e-05 0.019260151674236007 7.922672305127374e-05']
['59866.29660970469 0.03419461032388899 6.785568123304386e-05 0.015060706570467496 4.0672858868704475e-05 0.0005326635326992196 1.4385081196963002e-06 0.015060706570467495 4.0672858868704475e-05 0.0191339037534215 7.911178751712044e-05']
['59866.296641242654 0.03419362258441282 6.784839620809215e-05 0.015000135743126954 4.063818582436973e-05 0.0005305212779040168 1.437281811607874e-06 0.015000135743126954 4.063818582436973e-05 0.019193486841285863 7.90877172202249e-05']
['59866.29667278061 0.03428208613891893 6.795047494507169e-05 0.014989745359741203 4.064312424605454e-05 0.000530153793264803 1.4374564725461428e-06 0.014989745359741204 4.064312424605454e-05 0.019292340779177724 7.917784155773029e-05']
['59866.29670431858 0.03434232797036852 6.79799955347351e-05 0.015021534197443965 4.066502211226068e-05 0.0005312780934104787 1.4382309511350033e-06 0.015021534197443967 4.066502211226068e-05 0.019320793772924554 7.921441672002171e-05']
['59866.29673585654 0.034269538262652305 6.793479325788876e-05 0.01504992446900413 4.065234862240684e-05 0.000532282193867039 1.4377827181224556e-06 0.01504992446900413 4.065234862240684e-05 0.019219613793648175 7.916912013853501e-05']
['59866.2967673945 0.03436337797136472 6.803181626543521e-05 0.014959780814092185 4.063713448823519e-05 0.0005290940142520154 1.4372446281983932e-06 0.014959780814092183 4.063713448823519e-05 0.019403597157272537 7.924458797791083e-05']
['59866.29679893247 0.03437929280929085 6.799611568761841e-05 0.015084945560788383 4.070670693496494e-05 0.0005335208116159143 1.439705250153957e-06 0.015084945560788383 4.070670693496494e-05 0.019294347248502465 7.924965449825702e-05']
['59866.296830470426 0.03426870564514527 6.791799404938319e-05 0.015145466858574382 4.072244358124936e-05 0.0005356613146614651 1.4402618201637024e-06 0.015145466858574383 4.072244358124936e-05 0.019123238786570886 7.919072753119578e-05']
['59866.29686200839 0.0342098462887589 6.791806760603883e-05 0.015059272491331011 4.067581988281719e-05 0.0005326128125251405 1.4386128441479899e-06 0.015059272491331013 4.067581988281719e-05 0.019150573797427888 7.916682531513972e-05']
['59866.29689354636 0.034274048602775824 6.79279045998371e-05 0.015036239860276107 4.067422114826754e-05 0.0005317981998396294 1.4385563004799303e-06 0.015036239860276109 4.067422114826754e-05 0.019237808742499717 7.917444341037544e-05']
['59866.296925084316 0.03415378341601944 6.78542426409425e-05 0.014972188211018297 4.064023329320287e-05 0.0005295328361523919 1.4373542260046783e-06 0.014972188211018297 4.064023329320287e-05 0.019181595205001144 7.90937848791032e-05']
['59866.29695662228 0.03417911494016758 6.786827097341129e-05 0.01501929899489345 4.0649903504136006e-05 0.0005311990392916507 1.437696239753734e-06 0.01501929899489345 4.0649903504136006e-05 0.01915981594527413 7.911078851721774e-05']
['59866.29698816024 0.03432360023235701 6.79713025205208e-05 0.015007768303571149 4.065103551544951e-05 0.0005307912245091593 1.4377362764639963e-06 0.015007768303571149 4.065103551544951e-05 0.019315831928785863 7.919977686088828e-05']
['59866.297019698206 0.0341752893793881 6.78521547679852e-05 0.01503846418597656 4.067606866809171e-05 0.000531876869268579 1.4386216431271474e-06 0.01503846418597656 4.067606866809171e-05 0.01913682519341154 7.911041315117707e-05']
['59866.29705123617 0.03437391318612643 6.801625417737111e-05 0.014995694046514841 4.064552273905911e-05 0.0005303641850214541 1.437541301883398e-06 0.014995694046514841 4.064552273905911e-05 0.01937821913961159 7.923553086243648e-05']
['59866.29708277413 0.03421830473592473 6.789533164804297e-05 0.015019421985484876 4.0650035492785515e-05 0.0005312033891940016 1.4377009078972898e-06 0.015019421985484878 4.0650035492785515e-05 0.01919888275043985 7.913407259305227e-05']
['59866.297114312096 0.034317183998334916 6.795207759770868e-05 0.015077481924131133 4.0690976101845746e-05 0.0005332568394675936 1.439148885742874e-06 0.015077481924131133 4.0690976101845746e-05 0.019239702074203783 7.920379022474874e-05']
['59866.29714585006 0.034314470751858804 6.797569825547709e-05 0.014972111091374805 4.0633108896103955e-05 0.0005295301086029538 1.4371022520013803e-06 0.014972111091374805 4.0633108896103955e-05 0.019342359660483997 7.919435012601791e-05']
['59866.29717738802 0.034281276524425884 6.792197829240592e-05 0.015017685709554753 4.065045683407743e-05 0.0005311419809947014 1.4377158097971426e-06 0.015017685709554751 4.065045683407743e-05 0.019263590814871133 7.915715239934578e-05']
['59866.297208925986 0.034283041403856664 6.793011220039369e-05 0.015097214793636854 4.069824804160185e-05 0.000533954746961643 1.4394060780002185e-06 0.015097214793636852 4.069824804160185e-05 0.019185826610219812 7.91886831385257e-05']
['59866.297240463944 0.0343477625413214 6.803709610381455e-05 0.015026271435297143 4.0666955335805655e-05 0.0005314456389262421 1.4382993249312885e-06 0.015026271435297143 4.0666955335805655e-05 0.01932149110602426 7.926441637029891e-05']
['59866.29727200191 0.034335426270772275 6.797755773739296e-05 0.01500360309975535 4.0661304440678446e-05 0.0005306439105588772 1.4380994653996466e-06 0.015003603099755352 4.0661304440678446e-05 0.01933182317101692 7.921041620114195e-05']
['59866.297303539875 0.03412989163040294 6.783269124880415e-05 0.015037951913560686 4.066587430828799e-05 0.000531858751338091 1.438261091403943e-06 0.015037951913560684 4.066587430828799e-05 0.019091939716842254 7.908847789225096e-05']
['59866.297335077834 0.0342731145827946 6.791874459270102e-05 0.015031284360235535 4.065402700382697e-05 0.0005316229348780851 1.437842078722324e-06 0.015031284360235535 4.065402700382697e-05 0.019241830222559063 7.915621124508453e-05']
['59866.2973666158 0.03416550358424229 6.787672312129742e-05 0.015060539303469645 4.0686309009396856e-05 0.0005326576168393255 1.4389838211132944e-06 0.015060539303469647 4.0686309009396856e-05 0.019104964280772647 7.913675051765393e-05']
['59866.29739815376 0.03420856711216084 6.790127721754121e-05 0.014986219539888561 4.063444512790706e-05 0.0005300290928963587 1.4371495115339538e-06 0.014986219539888561 4.063444512790706e-05 0.01922234757227228 7.913116692319323e-05']
['59866.297429691724 0.03434602558464694 6.798761075546856e-05 0.015056474948517784 4.067376964727408e-05 0.0005325138696879768 1.438540331898837e-06 0.015056474948517782 4.067376964727408e-05 0.019289550636129155 7.92254425898437e-05']
['59866.29746122969 0.034257531491367656 6.79271475016372e-05 0.015001754790423974 4.065399224398121e-05 0.0005305785399885546 1.4378408493442633e-06 0.015001754790423974 4.065399224398121e-05 0.01925577670094368 7.916340349607804e-05']
['59866.29749276765 0.03431551034279419 6.79566650378827e-05 0.014998754677754517 4.063821795795769e-05 0.0005304724327082932 1.4372829481010658e-06 0.014998754677754517 4.063821795795769e-05 0.019316755665039674 7.91806357758604e-05']
['59866.29752430561 0.034248498636770264 6.792470762041528e-05 0.01502595012074965 4.0656116019671794e-05 0.000531434274748793 1.4379159625440797e-06 0.01502595012074965 4.0656116019671794e-05 0.019222548516020614 7.916240064022764e-05']
['59866.29755584358 0.03421978979760554 6.789576271490066e-05 0.015000589242473402 4.064263042106023e-05 0.0005305373171623893 1.4374390070597278e-06 0.015000589242473402 4.064263042106023e-05 0.019219200555132133 7.913063883339364e-05']
['59866.29758738154 0.03435383475383131 6.800921445359074e-05 0.015055058811170967 4.07004060854896e-05 0.0005324637840749007 1.4394824031895841e-06 0.015055058811170969 4.07004060854896e-05 0.019298775942660343 7.925765771279299e-05']
['59866.2976189195 0.0341724772481566 6.78434491166262e-05 0.015052203527480174 4.0674954899794494e-05 0.0005323627990719408 1.4385822516316005e-06 0.015052203527480174 4.0674954899794494e-05 0.019120273720676425 7.910237382114751e-05']
['59866.29765045746 0.03414757724712314 6.782768079756291e-05 0.015054204000475524 4.0679141661623805e-05 0.0005324335513309923 1.4387303280406413e-06 0.015054204000475524 4.0679141661623805e-05 0.019093373246647616 7.909100358891991e-05']
['59866.29768199543 0.03419552945826813 6.786186077159255e-05 0.015039195623898317 4.067308334099784e-05 0.000531902738593204 1.4385160587796507e-06 0.015039195623898315 4.067308334099784e-05 0.019156333834369814 7.911720328630662e-05']
['59866.29771353339 0.034297241239663816 6.79578245346265e-05 0.01503226547412555 4.066759125784054e-05 0.0005316576346837145 1.4383218160724605e-06 0.01503226547412555 4.066759125784054e-05 0.019264975765538265 7.9196710122289e-05']
['59866.29774507135 0.03434273887217684 6.795539431825017e-05 0.01506335966355046 4.066687518169384e-05 0.00053275736667225 1.4382964900594876e-06 0.015063359663550458 4.066687518169384e-05 0.019279379208626386 7.919425707709072e-05']
['59866.29777660932 0.034188597633624244 6.789408183346745e-05 0.014999072978904753 4.0641920404350154e-05 0.0005304836903086158 1.4374138953554865e-06 0.014999072978904753 4.0641920404350154e-05 0.019189524654719493 7.912883192720027e-05']
['59866.29780814728 0.034302221872729695 6.797095013329668e-05 0.014965964357445209 4.061779329980814e-05 0.0005293127123610058 1.4365605735887406e-06 0.014965964357445207 4.061779329980814e-05 0.019336257515284488 7.918241720589895e-05']
['59866.29783968524 0.03429424778981749 6.795622723505881e-05 0.01497429457343368 4.0647079375372485e-05 0.000529607333483581 1.4375963566309247e-06 0.01497429457343368 4.0647079375372485e-05 0.019319953216383808 7.918480840269035e-05']
['59866.29787122321 0.034251947596028474 6.792680791853451e-05 0.01503302461460949 4.063984358150331e-05 0.0005316844837860523 1.4373404427728195e-06 0.015033024614609489 4.063984358150331e-05 0.019218922981418987 7.915584703817235e-05']
['59866.297902761165 0.0342530049163043 6.795150896002675e-05 0.01505353466920567 4.0681299361074096e-05 0.0005324098785798449 1.4388066410480235e-06 0.01505353466920567 4.0681299361074096e-05 0.01919947024709863 7.919833134384792e-05']
['59866.29793429913 0.034224968889485265 6.793110289064935e-05 0.01499933402780213 4.065173330394398e-05 0.0005304929230247061 1.4377609556835803e-06 0.01499933402780213 4.065173330394398e-05 0.019225634861683133 7.91656374985699e-05']
['59866.2979658371 0.03440217448652713 6.80212779417615e-05 0.01516121495951869 4.072595002882585e-05 0.000536218289796931 1.4403858353780337e-06 0.015161214959518691 4.072595002882585e-05 0.01924095952700844 7.928112801026983e-05']
['59866.297997375055 0.03420818205876642 6.787083833321329e-05 0.01505938719139696 4.067208466236328e-05 0.0005326168692101335 1.4384807377482617e-06 0.015059387191396961 4.067208466236328e-05 0.019148794867369458 7.912439046738761e-05']
['59866.29802891302 0.03421877807087753 6.792180328948066e-05 0.015034425011947034 4.067403641919966e-05 0.0005317340127101774 1.4385497670256444e-06 0.015034425011947034 4.067403641919966e-05 0.019184353058930497 7.916911393166709e-05']
['59866.29806045099 0.03420262041255026 6.789365899108906e-05 0.015035275978922253 4.0674272065748006e-05 0.0005317641095102916 1.4385581013174205e-06 0.015035275978922251 4.0674272065748006e-05 0.01916734443362801 7.914509043065639e-05']
['59866.298091988945 0.03415906443316145 6.786862940510412e-05 0.015044997290923623 4.0677692775923776e-05 0.0005321079305899264 1.4386790841915002e-06 0.015044997290923623 4.0677692775923776e-05 0.019114067142237824 7.912537865248927e-05']
['59866.29812352691 0.03432086634102766 6.795356538423886e-05 0.015017427422976777 4.063966072891829e-05 0.000531132845975675 1.4373339756855388e-06 0.015017427422976777 4.063966072891829e-05 0.019303438918050884 7.917871603272947e-05']
['59866.29815506487 0.034247972444098634 6.79142955555457e-05 0.015003121918656007 4.064761455795958e-05 0.0005306268922587699 1.4376152848429676e-06 0.015003121918656007 4.064761455795958e-05 0.019244850525442628 7.914910050062769e-05']
['59866.298186602835 0.03419349701155272 6.786523614586523e-05 0.014969431780769928 4.063078711294233e-05 0.0005294353473747661 1.4370201357198336e-06 0.014969431780769928 4.063078711294233e-05 0.019224065230782794 7.909836369073189e-05']
['59866.2982181408 0.03419891471237232 6.788383031149084e-05 0.015045316708565874 4.068389784399783e-05 0.0005321192276780764 1.4388985435817685e-06 0.015045316708565874 4.068389784399783e-05 0.019153598003806442 7.914160701893874e-05']
['59866.29824967876 0.03427687055016 6.792482260748003e-05 0.015026585202959132 4.06443001369629e-05 0.0005314567361872172 1.43749806117961e-06 0.015026585202959134 4.06443001369629e-05 0.019250285347200868 7.915643157622224e-05']
['59866.298281216725 0.03433843984261334 6.79827979877502e-05 0.015113190240292035 4.069998138019096e-05 0.0005345197628068149 1.4394673823123317e-06 0.015113190240292037 4.069998138019096e-05 0.019225249602321304 7.923477334220843e-05']
['59866.29831275469 0.034282248141088933 6.794409622630183e-05 0.015075485422773318 4.068519427617493e-05 0.0005331862276764856 1.438944395490517e-06 0.015075485422773318 4.068519427617493e-05 0.019206762718315618 7.919397227882346e-05']
['59866.29834429265 0.034244388526106485 6.790935960219187e-05 0.01497989965315457 4.0631111264776334e-05 0.000529805572626693 1.4370316002457656e-06 0.01497989965315457 4.0631111264776334e-05 0.019264488872951915 7.913639064419379e-05']
['59866.298375830615 0.034202456626132305 6.791389886756516e-05 0.01496323464499304 4.062168209195207e-05 0.0005292161685321209 1.4366981114759323e-06 0.014963234644993039 4.062168209195207e-05 0.019239221981139268 7.913544537925776e-05']
['59866.29840736857 0.03454467713781993 6.82523421145175e-05 0.014965184163189338 4.0626605021578356e-05 0.0005292851186338072 1.436872224494714e-06 0.014965184163189338 4.0626605021578356e-05 0.019579492974630595 7.94286046692026e-05']
['59866.29843890654 0.03429875328895665 6.795145159179137e-05 0.015045537568078127 4.06632655146344e-05 0.0005321270389854328 1.4381688242027264e-06 0.015045537568078126 4.06632655146344e-05 0.019253215720878528 7.918902029792528e-05']
['59866.298470444504 0.03427974844828591 6.79497305025288e-05 0.014995194801919276 4.062754110998279e-05 0.000530346527855855 1.4369053318495443e-06 0.014995194801919276 4.062754110998279e-05 0.01928455364636663 7.916920469481573e-05']
['59866.29850198246 0.03425342296459182 6.791816962308338e-05 0.015052409653899488 4.0674705763150745e-05 0.0005323700893027265 1.4385734402252988e-06 0.015052409653899488 4.0674705763150745e-05 0.019201013310692336 7.916634040972727e-05']
['59866.29853352043 0.03430778843553229 6.799633719100491e-05 0.015013430710331151 4.0659093877951594e-05 0.0005309914911815263 1.4380212827363147e-06 0.015013430710331153 4.0659093877951594e-05 0.019294357725201137 7.9225398619186e-05']
['59866.298565058394 0.034217809046616775 6.789024004646319e-05 0.015017590443974858 4.064317071422488e-05 0.0005311386116640466 1.4374581160214773e-06 0.015017590443974856 4.064317071422488e-05 0.01920021860264192 7.912617783813409e-05']
['59866.29859659635 0.034370753873286586 6.801509705636196e-05 0.015076340634283912 4.0667159378360114e-05 0.0005332164745963301 1.4383065414604316e-06 0.015076340634283912 4.0667159378360114e-05 0.019294413239002675 7.924563886732999e-05']
['59866.29862813432 0.03424162896895748 6.793166578585598e-05 0.015018028651190018 4.066245197734036e-05 0.0005311541100739113 1.4381400512067848e-06 0.015018028651190016 4.066245197734036e-05 0.019223600317767466 7.917162507648019e-05']
['59866.29865967228 0.03418138741853823 6.783637305214962e-05 0.015040687485601095 4.0673702140487626e-05 0.0005319555024075166 1.438537944334669e-06 0.015040687485601095 4.0673702140487626e-05 0.019140699932937138 7.909566078289958e-05']
['59866.29869121024 0.034194267138444645 6.78640217315808e-05 0.014914251136433758 4.0607437469022365e-05 0.0005274837313060778 1.4361943109977673e-06 0.014914251136433757 4.0607437469022365e-05 0.01928001600201089 7.908533001375812e-05']
['59866.29872274821 0.03435319396974917 6.800395808850928e-05 0.015072716044273116 4.067314200118139e-05 0.0005330882809481301 1.438518133459245e-06 0.015072716044273116 4.067314200118139e-05 0.01928047792547605 7.923914938937692e-05']
['59866.29875428617 0.03410519432603379 6.78011975066548e-05 0.014991625118685094 4.064314442013703e-05 0.0005302202761376344 1.4374571860583541e-06 0.014991625118685094 4.064314442013703e-05 0.019113569207348694 7.904977907428033e-05']
['59866.29878582413 0.03430231716283323 6.797974714812534e-05 0.015110276355092675 4.0716610604093533e-05 0.0005344167051994636 1.4400555207976376e-06 0.015110276355092675 4.0716610604093533e-05 0.019192040807740555 7.924069914765037e-05']
['59866.2988173621 0.03426372798247621 6.795446735467416e-05 0.015014501857187501 4.063551990850477e-05 0.000531029375251963 1.4371875241217015e-06 0.0150145018571875 4.063551990850477e-05 0.01924922612528871 7.917736489484835e-05']
['59866.298848900056 0.03431726339718987 6.79555415465327e-05 0.015023272855918887 4.066701263668768e-05 0.0005313395858750637 1.4383013515354258e-06 0.015023272855918887 4.066701263668768e-05 0.019293990541270983 7.91944539956874e-05']
['59866.29888043802 0.03427826399706364 6.791988786225607e-05 0.015089000162637874 4.067644417607922e-05 0.0005336642138218289 1.4386349240054546e-06 0.015089000162637874 4.067644417607922e-05 0.01918926383442577 7.916870769458807e-05']
['59866.29891197598 0.03418451470623378 6.787207628873598e-05 0.014982186997485745 4.065334948026846e-05 0.0005298864708837729 1.4378181162282355e-06 0.014982186997485743 4.065334948026846e-05 0.019202327708748038 7.911582372514894e-05']
['59866.298943513946 0.03419344776323034 6.78922749095554e-05 0.015024792511889483 4.067334875525377e-05 0.0005313933327105124 1.4385254458887169e-06 0.01502479251188948 4.067334875525377e-05 0.01916865525134086 7.914342860504054e-05']
['59866.29897505191 0.03433546170132103 6.798594924535682e-05 0.015085824764293673 4.069550343610642e-05 0.0005335519070789923 1.4393090074376775e-06 0.015085824764293675 4.069550343610642e-05 0.019249636937027352 7.923517712929266e-05']
['59866.29900658987 0.034286761400248986 6.79471268215393e-05 0.01498556283734427 4.0625950558278735e-05 0.0005300058667950108 1.4368490775904457e-06 0.014985562837344268 4.0625950558278735e-05 0.019301198562904718 7.916615376577325e-05']
['59866.299038127836 0.03426471842843372 6.794063673238911e-05 0.014991000023600171 4.064513405206111e-05 0.000530198167921486 1.4375275548929432e-06 0.014991000023600171 4.064513405206111e-05 0.019273718404833547 7.917043034942072e-05']
['59866.2990696658 0.03420305528483073 6.790745746485739e-05 0.015078741330399013 4.068314394869212e-05 0.0005333013818526811 1.4388718799896623e-06 0.015078741330399012 4.068314394869212e-05 0.019124313954431718 7.916148672739428e-05']
['59866.29910120376 0.03422789729095497 6.789669317415022e-05 0.015035756906923752 4.065402571146312e-05 0.0005317811188588938 1.4378420330143027e-06 0.015035756906923752 4.065402571146312e-05 0.019192140384031216 7.913729051801685e-05']
['59866.299132741726 0.03427218843699775 6.793995677210519e-05 0.015021691954423322 4.065674094413648e-05 0.0005312836729222724 1.4379380647257718e-06 0.01502169195442332 4.065674094413648e-05 0.01925049648257443 7.917580634508338e-05']
['59866.299164279684 0.03428950102769235 6.79558291098401e-05 0.015004864900721525 4.063349592787307e-05 0.0005306885376390916 1.4371159404500887e-06 0.015004864900721527 4.063349592787307e-05 0.019284636126970824 7.917749491696659e-05']
['59866.29919581765 0.034245182054038315 6.793193768661055e-05 0.0150153853719129 4.0666238974372775e-05 0.0005310606231932612 1.4382739888283812e-06 0.015015385371912899 4.0666238974372775e-05 0.019229796682125416 7.917380343382737e-05']
['59866.299227355616 0.03421036430766167 6.793477387217637e-05 0.014986404225898618 4.0629599345116804e-05 0.0005300356248277854 1.4369781270263496e-06 0.014986404225898618 4.0629599345116804e-05 0.01922396008176305 7.915742444021567e-05']
['59866.299258893574 0.03440187933697701 6.80264618194437e-05 0.015004376446456018 4.063529396104953e-05 0.0005306712621033516 1.4371795328651726e-06 0.015004376446456018 4.063529396104953e-05 0.019397502890520994 7.923904733761722e-05']
['59866.29929043154 0.03434441406204719 6.797804783772454e-05 0.014987131535262327 4.064879973025767e-05 0.0005300613481345391 1.4376572017384468e-06 0.014987131535262328 4.064879973025767e-05 0.019357282526784862 7.920441848368412e-05']
['59866.299321969505 0.03428408979344798 6.794528207420014e-05 0.015084975977300616 4.0686070082973716e-05 0.0005335218873799751 1.438975370819677e-06 0.015084975977300616 4.0686070082973716e-05 0.019199113816147362 7.919543960948302e-05']
['59866.299353507464 0.03413646515384969 6.783556391311136e-05 0.015036773565183584 4.066340890679051e-05 0.0005318170757894465 1.4381738956628252e-06 0.015036773565183582 4.066340890679051e-05 0.019099691588666104 7.90896741384782e-05']
['59866.29938504543 0.034331159521401505 6.798358884241588e-05 0.015084916812734885 4.069765577092863e-05 0.0005335197948615101 1.4393851307101537e-06 0.015084916812734883 4.069765577092863e-05 0.019246242708666622 7.923425734582014e-05']
['59866.29941658339 0.03425407647556488 6.792450712632646e-05 0.014988550338238885 4.0644996907363564e-05 0.0005301115280249818 1.4375227043914912e-06 0.014988550338238883 4.0644996907363564e-05 0.019265526137325996 7.915651863209983e-05']
['59866.29944812135 0.03428981834614677 6.793276924153959e-05 0.014977067165720474 4.064390989761662e-05 0.0005297053938763858 1.4374842592860657e-06 0.014977067165720474 4.064390989761662e-05 0.019312751180426295 7.916305039972781e-05']
['59866.29947965932 0.03418030798602249 6.787476041259317e-05 0.01504698521179598 4.066471926778731e-05 0.00053217823890844 1.4382202402027975e-06 0.01504698521179598 4.066471926778731e-05 0.01913332277422651 7.912396915091456e-05']
['59866.29951119728 0.03421122638387251 6.788510215109519e-05 0.014988159805802934 4.0626698003687395e-05 0.0005300977157655109 1.4368755130641079e-06 0.014988159805802932 4.0626698003687395e-05 0.019223066578069575 7.911330915053071e-05']
['59866.29954273524 0.03419398897469705 6.789296017323373e-05 0.0150092123607473 4.0642888821099344e-05 0.0005308422975842019 1.4374481460916212e-06 0.015009212360747298 4.0642888821099344e-05 0.01918477661394975 7.912836692873514e-05']
['59866.29957427321 0.0342959317623629 6.7956336880558e-05 0.015048087264817704 4.068458591306859e-05 0.0005322172160608748 1.4389228790470573e-06 0.015048087264817702 4.068458591306859e-05 0.019247844497545193 7.920416184230312e-05']
['59866.29960581117 0.03431172941436893 6.795405105392166e-05 0.015005130254833828 4.0630658609702795e-05 0.0005306979226210123 1.437015590847439e-06 0.01500513025483383 4.0630658609702795e-05 0.019306599159535098 7.917451277840116e-05']
['59866.29963734913 0.03427958235934989 6.792655006591511e-05 0.015116304667811139 4.0712622030912665e-05 0.0005346299131478297 1.4399144538781667e-06 0.015116304667811139 4.0712622030912665e-05 0.019163277691538756 7.919301608405394e-05']
['59866.29966888709 0.03435702359157783 6.800622908237823e-05 0.015132917459259865 4.0716454467621394e-05 0.0005352174704539674 1.4400499985995624e-06 0.015132917459259865 4.0716454467621394e-05 0.019224106132317963 7.92633386782237e-05']
['59866.29970042506 0.03425290738065184 6.792297035078162e-05 0.015029828635740525 4.065379970788861e-05 0.0005315714491560494 1.437834039772961e-06 0.015029828635740525 4.065379970788861e-05 0.019223078744911318 7.915972038835335e-05']
['59866.29973196302 0.03425735472629802 6.791558298498383e-05 0.015007948152862036 4.064831393495159e-05 0.0005307975853766385 1.4376400202441593e-06 0.015007948152862037 4.064831393495159e-05 0.019249406573435983 7.915056435645045e-05']
['59866.29976350098 0.034321229228116305 6.796753579348943e-05 0.01506414555691876 4.067371340132726e-05 0.0005327851619643185 1.4385383426054001e-06 0.01506414555691876 4.067371340132726e-05 0.019257083671197543 7.920818697390173e-05']
['59866.29979503895 0.0342946134798147 6.7936706232564e-05 0.01504087954394847 4.0672784347476385e-05 0.0005319622950820381 1.4385054840470079e-06 0.01504087954394847 4.0672784347476385e-05 0.019253733935866234 7.918125687500812e-05']
['59866.29982657691 0.03425849246931805 6.79204102966759e-05 0.015077921222372427 4.0700069816180127e-05 0.0005332723764646144 1.4394705100956257e-06 0.015077921222372427 4.0700069816180127e-05 0.019180571246945624 7.918129714718453e-05']
['59866.29985811487 0.03419825892740868 6.787548723216268e-05 0.01503955222722503 4.068376440256415e-05 0.0005319153508559083 1.4388938240564833e-06 0.01503955222722503 4.068376440256415e-05 0.01915870670018365 7.913438224290896e-05']
['59866.29988965284 0.034325625430607465 6.798525936002173e-05 0.014997281809191458 4.06509623517674e-05 0.0005304203406388852 1.4377336888280713e-06 0.014997281809191458 4.06509623517674e-05 0.019328343621416007 7.921171775926989e-05']
['59866.299921190795 0.03429623428943534 6.793503512489367e-05 0.01505864169229797 4.067545555305127e-05 0.0005325905025730947 1.4385999586183984e-06 0.01505864169229797 4.067545555305127e-05 0.01923759259713737 7.918119525410554e-05']
['59866.29995272876 0.03421432699993089 6.784620377404241e-05 0.015085231180663366 4.068328331296983e-05 0.0005335309133525696 1.438876808992704e-06 0.015085231180663367 4.068328331296983e-05 0.019129095819267524 7.910901912975697e-05']
['59866.29998426673 0.034405574864649444 6.803503171099796e-05 0.015124692413611822 4.0702520776037356e-05 0.0005349265689712913 1.4395571950682029e-06 0.015124692413611824 4.0702520776037356e-05 0.01928088245103762 7.928089768311312e-05']
['59866.300015804685 0.034268720547661 6.791016105901623e-05 0.015075913414021936 4.069212364516094e-05 0.000533201364770445 1.439189471785324e-06 0.015075913414021935 4.069212364516094e-05 0.019192807133639068 7.916842111482704e-05']
['59866.30004734265 0.03426542648518246 6.788865320564059e-05 0.01503345401145448 4.066741995441057e-05 0.0005316996705928141 1.438315757452983e-06 0.01503345401145448 4.066741995441057e-05 0.01923197247372798 7.913727490774575e-05']
['59866.30007888062 0.03433756365979343 6.794518976347054e-05 0.015003412931248303 4.0650829206326634e-05 0.0005306371847237845 1.437728979771394e-06 0.015003412931248301 4.0650829206326634e-05 0.01933415072854513 7.917726142748283e-05']
['59866.300110418575 0.03431934502860936 6.794338403316059e-05 0.015035660298100448 4.0638143473645555e-05 0.0005317777020207216 1.437280313757408e-06 0.01503566029810045 4.0638143473645555e-05 0.01928368473050891 7.916919943300009e-05']
['59866.30014195654 0.03423420064881119 6.792484670647697e-05 0.014953904761621239 4.062569253840476e-05 0.0005288861914083225 1.4368399520041437e-06 0.014953904761621239 4.062569253840476e-05 0.019280295887189953 7.914689946121321e-05']
['59866.3001734945 0.034298085522921275 6.794043636372208e-05 0.0150755656362421 4.0697892355389316e-05 0.0005331890646476099 1.439393498173793e-06 0.0150755656362421 4.0697892355389316e-05 0.019222519886679175 7.919735687170265e-05']
['59866.300205032465 0.034315825768222695 6.796538817940417e-05 0.015069863383075172 4.067490053628438e-05 0.0005329873886968814 1.438580328915743e-06 0.015069863383075172 4.067490053628438e-05 0.019245962385147523 7.920695376047307e-05']
['59866.30023657043 0.034374949481674626 6.800441612326605e-05 0.015013759023613186 4.0653127112000035e-05 0.0005310031028885749 1.4378102515595451e-06 0.015013759023613188 4.0653127112000035e-05 0.019361190458061436 7.922927082998277e-05']
['59866.30026810839 0.03406432833044939 6.775928845659078e-05 0.014981538341741452 4.063676643195381e-05 0.0005298635293797576 1.437231610870278e-06 0.014981538341741454 4.063676643195381e-05 0.019082789988707934 7.901055599214984e-05']
['59866.300299646355 0.03433020219862826 6.79802841320291e-05 0.015119936726024208 4.072690103832658e-05 0.0005347583709296536 1.4404194704586934e-06 0.015119936726024208 4.072690103832658e-05 0.01921026547260405 7.924644786270899e-05']
['59866.30033118432 0.034189687752034646 6.787820419512858e-05 0.015031132182370965 4.0670599239585194e-05 0.0005316175526871128 1.4384282016643252e-06 0.015031132182370966 4.0670599239585194e-05 0.019158555569663678 7.912994532579003e-05']
['59866.30036272228 0.03431632303318513 6.797445379679368e-05 0.01498796812395918 4.0646814972713355e-05 0.0005300909364070811 1.4375870052997764e-06 0.014987968123959182 4.0646814972713355e-05 0.01932835490922595 7.920031525441318e-05']
['59866.300394260245 0.03420440367047282 6.788658630677022e-05 0.015024506988640074 4.0653928208143206e-05 0.0005313832343912877 1.4378385845397847e-06 0.015024506988640073 4.0653928208143206e-05 0.019179896681832745 7.912856929794335e-05']
['59866.3004257982 0.03427941793069693 6.797251895470265e-05 0.014945830633887273 4.0611254512931483e-05 0.0005286006275549856 1.4363293113102417e-06 0.014945830633887273 4.0611254512931483e-05 0.019333587296809656 7.918040998985488e-05']
['59866.30045733617 0.03415463721441311 6.784677324667971e-05 0.014970961846053692 4.0621743546493855e-05 0.0005294894623643581 1.4367002849857326e-06 0.01497096184605369 4.0621743546493855e-05 0.019183675368359417 7.907787736619825e-05']
['59866.300488874134 0.034305188936899794 6.796680081512274e-05 0.015017933436458054 4.063685736124669e-05 0.0005311507425416342 1.4372348268361523e-06 0.015017933436458054 4.063685736124669e-05 0.01928725550044174 7.91886367431646e-05']
['59866.30052041209 0.034284198687512625 6.793539826862195e-05 0.015051374831299662 4.067915544229214e-05 0.000532333489940063 1.4387308154320825e-06 0.01505137483129966 4.067915544229214e-05 0.019232823856212965 7.918340751328176e-05']
['59866.30055195006 0.03428048335136153 6.794157154719329e-05 0.01493932755803762 4.061600876717793e-05 0.0005283706282957025 1.4364974586578056e-06 0.01493932755803762 4.061600876717793e-05 0.019341155793323912 7.915628409973436e-05']
['59866.300583488024 0.03422419725279294 6.788793698671551e-05 0.0150376237601551 4.0656638990164483e-05 0.0005318471452855152 1.437934458841636e-06 0.0150376237601551 4.0656638990164483e-05 0.01918657349263784 7.91311208203752e-05']
['59866.30061502598 0.034308135701361056 6.795258692876147e-05 0.01504501040805021 4.066315946710404e-05 0.0005321083945133787 1.4381650735385796e-06 0.015045010408050207 4.066315946710404e-05 0.019263125293310847 7.918994006916546e-05']
['59866.30064656395 0.03426521128093866 6.79329015482694e-05 0.015087780948447338 4.069416255900875e-05 0.0005336210929406931 1.4392615836114168e-06 0.015087780948447338 4.069416255900875e-05 0.01917743033249132 7.918897637389874e-05']
['59866.30067810191 0.03420315143583891 6.785044115264571e-05 0.014968745929032773 4.061617289195557e-05 0.0005294110903316114 1.4365032633843937e-06 0.014968745929032773 4.061617289195557e-05 0.019234405506806135 7.907816300975804e-05']
['59866.30070963987 0.034303649998177914 6.797115288397748e-05 0.01506796841519249 4.066964984556332e-05 0.000532920367917875 1.4383946237195424e-06 0.01506796841519249 4.066964984556332e-05 0.01923568158298542 7.92092042816854e-05']
['59866.30074117784 0.03432055111574115 6.796952615934573e-05 0.015093691231909578 4.0694324169932075e-05 0.0005338301264580463 1.4392672994285957e-06 0.015093691231909576 4.0694324169932075e-05 0.019226859883831576 7.922048034424874e-05']
['59866.3007727158 0.034240999819820574 6.78938852934464e-05 0.0150350340274206 4.0659546883453756e-05 0.0005317555522264079 1.4380373045285185e-06 0.0150350340274206 4.0659546883453756e-05 0.019205965792399974 7.913771801743737e-05']
['59866.30080425376 0.03433297365743778 6.797036721921634e-05 0.015071017618946912 4.067577709024193e-05 0.0005330282114400995 1.4386113306702389e-06 0.015071017618946912 4.067577709024193e-05 0.019261956038490867 7.921167629718595e-05']
['59866.30083579173 0.03427679404807938 6.795669911516134e-05 0.015033526624346651 4.067909113177184e-05 0.00053170223874853 1.438728540912705e-06 0.015033526624346651 4.067909113177184e-05 0.01924326742373273 7.920165029805609e-05']
['59866.300867329686 0.034356516336502364 6.800127558125403e-05 0.015022157041478922 4.064727638451194e-05 0.0005313001220120206 1.4376033244038977e-06 0.01502215704147892 4.064727638451194e-05 0.019334359295023446 7.922357324784435e-05']
['59866.30089886765 0.03441900621836218 6.805123673039351e-05 0.014934756604436994 4.0600883804682885e-05 0.0005282089638823284 1.4359625225366577e-06 0.014934756604436994 4.0600883804682885e-05 0.019484249613925184 7.924268159431141e-05']
['59866.30093040561 0.03432721430329631 6.797924600750195e-05 0.015108159614617386 4.071020352837055e-05 0.0005343418408194893 1.439828916848287e-06 0.015108159614617386 4.071020352837055e-05 0.019219054688678926 7.923697722067534e-05']
['59866.300961943576 0.03424263860780873 6.791017512465414e-05 0.01497681376221282 4.063687031245956e-05 0.0005296964315606436 1.4372352848916073e-06 0.01497681376221282 4.063687031245956e-05 0.019265824845595914 7.91400474744162e-05']
['59866.30099348154 0.03430202693776226 6.799084778806207e-05 0.01496028886939219 4.061907534475064e-05 0.0005291119830325399 1.436605916653155e-06 0.01496028886939219 4.061907534475064e-05 0.01934173806837007 7.920015571198049e-05']
['59866.3010250195 0.03425447668492956 6.790587734593731e-05 0.014995004906418528 4.06503745747144e-05 0.000530339811676385 1.437712900467311e-06 0.014995004906418528 4.06503745747144e-05 0.019259471778511034 7.914329492247633e-05']
['59866.301056557466 0.03443852523231204 6.806853410801335e-05 0.015067298920095184 4.068475158238353e-05 0.0005328966893725167 1.4389287384004776e-06 0.015067298920095184 4.068475158238353e-05 0.01937122631221686 7.930053181999497e-05']
['59866.30108809543 0.034196250053478185 6.788717952308815e-05 0.014969197269169125 4.062440407269552e-05 0.0005294270532235482 1.4367943818515593e-06 0.014969197269169125 4.062440407269552e-05 0.01922705278430906 7.911391375644135e-05']
['59866.30111963339 0.03428651929158095 6.793919014462822e-05 0.015026838749822309 4.066992978340403e-05 0.0005314657035731239 1.438404524495344e-06 0.015026838749822309 4.066992978340403e-05 0.01925968054175864 7.918192183885766e-05']
['59866.301151171356 0.03431718628792787 6.799631702047659e-05 0.014986703069422421 4.0647773234001525e-05 0.0005300461942553463 1.437620896859951e-06 0.01498670306942242 4.0647773234001525e-05 0.01933048321850545 7.921957205913173e-05']
['59866.301182709314 0.0342143371560191 6.790207458218926e-05 0.01499975591552872 4.064994140273643e-05 0.000530507844250732 1.4376975801425325e-06 0.01499975591552872 4.064994140273643e-05 0.01921458124049038 7.913980963213835e-05']
['59866.30121424728 0.03430676747160917 6.794320162455074e-05 0.015093014506919352 4.067988377395386e-05 0.0005338061922075334 1.438756574895232e-06 0.01509301450691935 4.067988377395386e-05 0.01921375296468982 7.919047664243946e-05']
['59866.301245785246 0.034268318176451706 6.794446886367171e-05 0.015003967478727197 4.0653152471370875e-05 0.0005306567978287723 1.4378111484638168e-06 0.015003967478727197 4.0653152471370875e-05 0.01926435069772451 7.917783562984645e-05']
['59866.301277323204 0.034280697637827456 6.793910625848115e-05 0.014971456095370745 4.063121121781699e-05 0.0005295069428581201 1.4370351353614318e-06 0.014971456095370745 4.063121121781699e-05 0.01930924154245671 7.916196993650455e-05']
['59866.30130886117 0.03425546462186888 6.793020505175087e-05 0.015066046540382443 4.068291458712714e-05 0.000532852395500981 1.438863767983702e-06 0.015066046540382445 4.068291458712714e-05 0.019189418081486435 7.918088341055815e-05']
['59866.301340399135 0.03430260921520491 6.792529382181375e-05 0.015115082705759115 4.069860509157596e-05 0.0005345866950809741 1.4394187060598431e-06 0.015115082705759115 4.069860509157596e-05 0.019187526509445794 7.918473335927692e-05']
['59866.301371937094 0.034212855552328954 6.787899536830854e-05 0.015013709031601088 4.065848547755088e-05 0.0005310013347828326 1.4379997649738364e-06 0.01501370903160109 4.065848547755088e-05 0.019199146520727864 7.912439859827732e-05']
['59866.30140347506 0.03429027739137804 6.795445406373162e-05 0.015095817936394895 4.0684767582653626e-05 0.0005339053432427873 1.4389293042942725e-06 0.015095817936394897 4.0684767582653626e-05 0.019194459454983145 7.920263973097333e-05']
['59866.30143501302 0.0341921733697689 6.787766554329912e-05 0.014968263779377152 4.063160093996879e-05 0.0005293940377758331 1.4370489189629631e-06 0.014968263779377152 4.063160093996879e-05 0.01922390959039175 7.910944617776596e-05']
['59866.30146655098 0.0342173146261039 6.791065469522358e-05 0.014994632308750973 4.065261273910735e-05 0.0005303266337295903 1.4377920593398865e-06 0.014994632308750973 4.065261273910735e-05 0.019222682317352923 7.914854353460793e-05']
['59866.30149808895 0.03433056548121936 6.797994489249818e-05 0.015030388668432116 4.064760104260968e-05 0.0005315912562607515 1.4376148068352464e-06 0.015030388668432116 4.064760104260968e-05 0.01930017681278725 7.920543149371925e-05']
['59866.30152962691 0.03432811054132806 6.796453017991716e-05 0.015106687755828532 4.071611430262685e-05 0.0005342897844635383 1.4400379677239294e-06 0.015106687755828532 4.071611430262685e-05 0.01922142278549953 7.922739000169982e-05']
['59866.30156116487 0.034274342324565436 6.792017355123e-05 0.015029933764809397 4.066903950963677e-05 0.0005315751673362658 1.4383730375018408e-06 0.015029933764809399 4.066903950963677e-05 0.019244408559756038 7.916514858108712e-05']
['59866.30159270284 0.034255091342507676 6.792634066667532e-05 0.014958476938633397 4.06169510286313e-05 0.0005290478990910282 1.436530784339581e-06 0.014958476938633397 4.06169510286313e-05 0.019296614403874278 7.91436950566971e-05']
['59866.3016242408 0.034249898218424425 6.792740498601177e-05 0.015026964833580627 4.0663645900908984e-05 0.0005314701628738749 1.438182277615145e-06 0.015026964833580625 4.0663645900908984e-05 0.0192229333848438 7.916858244334155e-05']
['59866.30165577876 0.03422123014485595 6.789808772225034e-05 0.015024484266364024 4.065112124686584e-05 0.0005313824307551651 1.4377393085925934e-06 0.015024484266364022 4.065112124686584e-05 0.01919674587849193 7.913699498316694e-05']
['59866.30168731672 0.03423702992906893 6.791624476510692e-05 0.01497164909007702 4.0634335528980824e-05 0.0005295137686495633 1.437145635264872e-06 0.01497164909007702 4.0634335528980824e-05 0.01926538083899191 7.914395445563551e-05']
['59866.30171885469 0.03427747487233637 6.792684082898744e-05 0.015069989326529674 4.0666784966392254e-05 0.0005329918430354001 1.43829329934589e-06 0.015069989326529674 4.0666784966392254e-05 0.0192074855458067 7.916971077697191e-05']
['59866.30175039265 0.03431908567708035 6.795935865422935e-05 0.015026253215915318 4.0655053702645754e-05 0.0005314449945474248 1.4378783907650075e-06 0.015026253215915318 4.0655053702645754e-05 0.019292832461165033 7.919158932777639e-05']
['59866.30178193061 0.03426834911297009 6.793967187826166e-05 0.015117590895568982 4.070834862237952e-05 0.0005346754041490747 1.4397633129688552e-06 0.015117590895568982 4.070834862237952e-05 0.019150758217401108 7.920207486226006e-05']
['59866.30181346858 0.03428731131729145 6.793614370179998e-05 0.015056669966663194 4.066656233883448e-05 0.0005325207670439401 1.4382854255067146e-06 0.015056669966663194 4.066656233883448e-05 0.019230641350628255 7.917757835100747e-05']
['59866.30184500654 0.03429382854121343 6.794577521260353e-05 0.015007564226786759 4.066054797002487e-05 0.0005307840067693802 1.438072710723242e-06 0.015007564226786757 4.066054797002487e-05 0.01928626431442667 7.918275399646277e-05']
['59866.3018765445 0.034176688219302497 6.786415479884722e-05 0.014980835893209518 4.0647112679690535e-05 0.0005298386853450631 1.4375975345302233e-06 0.014980835893209516 4.0647112679690535e-05 0.01919585232609298 7.910582327336816e-05']
['59866.30190808247 0.03421001603159186 6.789682454787853e-05 0.015030263877632451 4.066822864048469e-05 0.0005315868426890584 1.4383443588721176e-06 0.01503026387763245 4.066822864048469e-05 0.01917975215395941 7.914470041916982e-05']
['59866.301939620425 0.03430554828059013 6.796963739450136e-05 0.015081036482556615 4.06947704283335e-05 0.0005333825562551323 1.4392830825909253e-06 0.015081036482556615 4.06947704283335e-05 0.019224511798033517 7.92208050183458e-05']
['59866.30197115839 0.034243814152216175 6.79110697203235e-05 0.015051307498288721 4.065722481917968e-05 0.0005323311085219465 1.4379551783046526e-06 0.015051307498288721 4.065722481917968e-05 0.019192506653927452 7.91512685972623e-05']
['59866.30200269636 0.03430393710563673 6.796324192552718e-05 0.015081138753764071 4.068318108032908e-05 0.0005333861733591773 1.4388731932526773e-06 0.01508113875376407 4.068318108032908e-05 0.01922279835187266 7.920936482413289e-05']
['59866.302034234315 0.034222174161868964 6.786244041508275e-05 0.015072594953202666 4.068551935558571e-05 0.0005330839982275909 1.4389558928227667e-06 0.015072594953202666 4.068551935558571e-05 0.0191495792086663 7.912409433493945e-05']
['59866.30206577228 0.03419907864502226 6.789268357678122e-05 0.015063293647984867 4.067924960232884e-05 0.0005327550318492311 1.4387341456621449e-06 0.015063293647984867 4.067924960232884e-05 0.019135784997037393 7.914681188440574e-05']
['59866.30209731025 0.034218668659889644 6.79126776698236e-05 0.014981916468504088 4.0638683291614675e-05 0.0005298769028782884 1.4372994059125537e-06 0.014981916468504088 4.0638683291614675e-05 0.019236752191385556 7.914312584148746e-05']
['59866.302128848205 0.03427079319573696 6.792624379397562e-05 0.014964146248578097 4.0625105290422124e-05 0.0005292484099136103 1.43681918235542e-06 0.014964146248578097 4.0625105290422124e-05 0.019306646947158865 7.914779703704011e-05']
['59866.30216038617 0.03430746810851882 6.796992728051878e-05 0.015021386625836412 4.0650803726575174e-05 0.0005312728741325226 1.4377280786095287e-06 0.015021386625836412 4.0650803726575174e-05 0.019286081482682408 7.919847762511316e-05']
['59866.30219192413 0.03414310279789102 6.785124105982841e-05 0.014997340356895903 4.065000243736574e-05 0.000530422411340345 1.437699738800967e-06 0.014997340356895903 4.065000243736574e-05 0.019145762440995116 7.909623007145653e-05']
['59866.302223462095 0.034195718403485516 6.788982468629325e-05 0.015066608480821642 4.06821854706689e-05 0.0005328722700784524 1.4388379807640534e-06 0.01506660848082164 4.06821854706689e-05 0.019129109922663874 7.91458685630876e-05']
['59866.30225500006 0.03419326100275585 6.789489760727274e-05 0.014986943511768566 4.064262022841987e-05 0.0005300546981637725 1.4374386465688174e-06 0.014986943511768568 4.064262022841987e-05 0.01920631749098728 7.91298913188538e-05']
['59866.30228653802 0.034291775453567395 6.792187852361103e-05 0.015072354575486776 4.068346924591434e-05 0.0005330754966049925 1.4388833850254157e-06 0.015072354575486778 4.068346924591434e-05 0.019219420878080616 7.917402510962437e-05']
['59866.302318075985 0.03419509121028084 6.785919646053706e-05 0.014990953880935503 4.0644427082807656e-05 0.0005301965359585595 1.4375025509704316e-06 0.014990953880935503 4.0644427082807656e-05 0.019204137329345335 7.910018961519267e-05']
['59866.30234961395 0.034283235962462924 6.793545816050082e-05 0.015036350834199547 4.0676258838604435e-05 0.0005318021247392893 1.4386283690331763e-06 0.015036350834199545 4.0676258838604435e-05 0.019246885128263377 7.918197085563293e-05']
['59866.30238115191 0.03433253480479473 6.799412262138134e-05 0.0150202665335694 4.065887128631324e-05 0.0005312332589722973 1.4380134101675293e-06 0.015020266533569398 4.065887128631324e-05 0.01931226827122533 7.92233837028464e-05']
['59866.302412689874 0.03429028869298247 6.792988153720213e-05 0.015152534821633357 4.0721554715977795e-05 0.0005359112927188932 1.440230382985544e-06 0.015152534821633357 4.0721554715977795e-05 0.019137753871349115 7.920046606014821e-05']
['59866.30244422783 0.03421053519248114 6.789933095488407e-05 0.01502629192178936 4.065675042461723e-05 0.0005314463634876872 1.4379384000291881e-06 0.01502629192178936 4.065675042461723e-05 0.01918424327069178 7.91409533630376e-05']
['59866.3024757658 0.034180039924010766 6.785732294401305e-05 0.015044148620695339 4.068394751529517e-05 0.0005320779150206184 1.4389003003445467e-06 0.015044148620695339 4.068394751529517e-05 0.019135891303315427 7.911889700037136e-05']
['59866.302507303764 0.034143940076181996 6.786192147283179e-05 0.015027995482213003 4.065462168926942e-05 0.000531506614612638 1.4378631114173797e-06 0.015027995482213003 4.065462168926942e-05 0.019115944593968995 7.910776605796932e-05']
['59866.30253884172 0.03419132820581898 6.789025082602805e-05 0.014960188732662088 4.062222857489797e-05 0.0005291084414201885 1.4367174393564113e-06 0.014960188732662087 4.062222857489797e-05 0.019231139473156893 7.911543219633108e-05']
['59866.30257037969 0.03423688934024704 6.791628329198887e-05 0.01500124611980465 4.0653746488662034e-05 0.0005305605494455611 1.4378321575278547e-06 0.015001246119804652 4.0653746488662034e-05 0.019235643220442387 7.915395530080659e-05']
['59866.30260191765 0.03432277200868351 6.795196626359328e-05 0.01509619531268913 4.0691023096885096e-05 0.0005339186901989279 1.439150547852388e-06 0.01509619531268913 4.0691023096885096e-05 0.019226576695994375 7.92037188505676e-05']
['59866.30263345561 0.03413065003889232 6.78372918256824e-05 0.014986788692409386 4.064755435841864e-05 0.0005300492225490392 1.4376131557197425e-06 0.014986788692409386 4.064755435841864e-05 0.01914386134648293 7.908300599726463e-05']
['59866.30266499358 0.03418317460227871 6.788726588541463e-05 0.015041976958157245 4.066867272511511e-05 0.000532001108170026 1.4383600651530247e-06 0.015041976958157245 4.066867272511511e-05 0.019141197644121463 7.913672858173696e-05']
['59866.30269653154 0.0343182881503716 6.795403704140954e-05 0.01506635906990162 4.067273417787683e-05 0.0005328634489716119 1.4385037096603942e-06 0.01506635906990162 4.067273417787683e-05 0.01925192908046998 7.91961012659682e-05']
['59866.3027280695 0.03428687737565812 6.794206425526479e-05 0.015092016920913671 4.070341058244646e-05 0.000533770909819986 1.4395886655322927e-06 0.015092016920913671 4.070341058244646e-05 0.01919486045474445 7.920158917793092e-05']
['59866.30275960747 0.03438490330693921 6.802665708625643e-05 0.015096035327332231 4.071984973362212e-05 0.0005339130318744007 1.440170081570035e-06 0.015096035327332233 4.071984973362212e-05 0.01928886797960698 7.928260992588405e-05']
['59866.30279114543 0.03428482429698172 6.795540441965703e-05 0.014987892022034318 4.063617505962e-05 0.0005300882448520765 1.4372106953524707e-06 0.01498789202203432 4.063617505962e-05 0.0192969322749474 7.917850537434528e-05']
['59866.30282268339 0.03438147232885269 6.801327799028255e-05 0.015087163673835476 4.069531140299274e-05 0.000533599261317199 1.4393022156556154e-06 0.015087163673835476 4.069531140299274e-05 0.019294308655017217 7.925852858317523e-05']
['59866.30285422135 0.03431039920490302 6.796573983587719e-05 0.015037423138656707 4.0665833644544805e-05 0.0005318400497514796 1.4382596532182248e-06 0.015037423138656707 4.0665833644544805e-05 0.01927297606624631 7.920259981492991e-05']
['59866.302885759316 0.03423492968438186 6.790668674439789e-05 0.014995396839635312 4.0650143599533474e-05 0.0005303536734783434 1.437704731391361e-06 0.014995396839635312 4.0650143599533474e-05 0.019239532844746547 7.914387076245687e-05']
['59866.30291729728 0.03425034700197467 6.791723128356368e-05 0.015011382449456165 4.0656745538182945e-05 0.0005309190487719716 1.4379382272069281e-06 0.015011382449456163 4.0656745538182945e-05 0.019238964552518507 7.915630905355327e-05']
['59866.30294883524 0.034361464830878125 6.799709966173871e-05 0.014989984724917178 4.062563242598099e-05 0.0005301622590761276 1.4368378259620582e-06 0.014989984724917178 4.062563242598099e-05 0.019371480105960945 7.920888569105959e-05']
['59866.302980373206 0.03426755110260547 6.793969813929787e-05 0.015097866288221401 4.070094379763766e-05 0.0005339777888690938 1.439501420866545e-06 0.0150978662882214 4.070094379763766e-05 0.019169684814384073 7.919829170681255e-05']
['59866.30301191117 0.03422010097018615 6.790336841075746e-05 0.014968535279374967 4.062165916765806e-05 0.0005294036401239891 1.436697300694886e-06 0.01496853527937497 4.062165916765806e-05 0.01925156569081118 7.912639657573465e-05']
['59866.30304344913 0.03433714471717488 6.798049542443507e-05 0.015025346337023683 4.0656538598476845e-05 0.0005314129202677828 1.4379309082120063e-06 0.015025346337023683 4.0656538598476845e-05 0.0193117983801512 7.92104910284053e-05']
['59866.303074987096 0.034299241758317923 6.795091253374635e-05 0.015029120817369032 4.065887052147863e-05 0.0005315464152021306 1.4380133831170383e-06 0.015029120817369032 4.065887052147863e-05 0.01927012094094889 7.918630100119092e-05']
['59866.303106525054 0.034286640049322754 6.793309564796683e-05 0.014971904165594225 4.064054800342384e-05 0.0005295227901005466 1.4373653566018583e-06 0.014971904165594224 4.064054800342384e-05 0.01931473588372853 7.916160449570491e-05']
['59866.30313806302 0.0342239670462657 6.790784102531193e-05 0.014990204219889502 4.063456061017538e-05 0.0005301700221227563 1.4371535958836967e-06 0.014990204219889502 4.063456061017538e-05 0.019233762826376198 7.913685859762855e-05']
['59866.303169600986 0.034210263906170144 6.789569338223291e-05 0.014948508749621597 4.061278467652664e-05 0.0005286953465232721 1.436383429776888e-06 0.014948508749621595 4.061278467652664e-05 0.01926175515654855 7.91152542752414e-05']
['59866.303201138944 0.03418918462465984 6.786618498264909e-05 0.015044781310825513 4.066046063862011e-05 0.0005321002918565434 1.43806962200663e-06 0.015044781310825513 4.066046063862011e-05 0.01914440331383433 7.911442424390081e-05']
['59866.30323267691 0.03426076438795498 6.791268007381101e-05 0.015087157532266412 4.0681328434598514e-05 0.0005335990441036268 1.4388076693136068e-06 0.01508715753226641 4.0681328434598514e-05 0.01917360685568857 7.916503393551651e-05']
['59866.303264214876 0.03431721150181469 6.794681176640826e-05 0.015057066924229997 4.066747102269412e-05 0.00053253480654593 1.438317563624041e-06 0.015057066924229997 4.066747102269412e-05 0.01926014457758469 7.918719864095068e-05']
['59866.303295752834 0.03425389554474058 6.790847225255581e-05 0.014982649799006298 4.0638393815827896e-05 0.0005299028391392543 1.4372891678009156e-06 0.014982649799006298 4.0638393815827896e-05 0.01927124574573428 7.913936855703652e-05']
['59866.3033272908 0.034165025721410495 6.788656695294189e-05 0.01500062137434576 4.064689677371811e-05 0.000530538453594904 1.4375898984185001e-06 0.01500062137434576 4.064689677371811e-05 0.019164404347064734 7.912494037905847e-05']
['59866.30335882876 0.034230332849640735 6.791415323289573e-05 0.015066415579604059 4.0703877405572594e-05 0.0005328654475934955 1.4396051760229756e-06 0.01506641557960406 4.0703877405572594e-05 0.019163917270036676 7.917788734987266e-05']
['59866.303390366724 0.034327215025550646 6.799268256630196e-05 0.015004771125876167 4.065257807842123e-05 0.0005306852210323857 1.4377908334688805e-06 0.015004771125876165 4.065257807842123e-05 0.019322443899674482 7.921891811293586e-05']
['59866.30342190469 0.03422512982152761 6.791959706288314e-05 0.014946922733812536 4.061667343033198e-05 0.0005286392526886425 1.4365209663081296e-06 0.014946922733812538 4.061667343033198e-05 0.01927820708771507 7.91377648517485e-05']
['59866.30345344265 0.03427494233757815 6.796945336122047e-05 0.015055020185863506 4.0687523711329225e-05 0.0005324624179840982 1.4390267824059434e-06 0.015055020185863506 4.0687523711329225e-05 0.01921992215171464 7.921692480766406e-05']
['59866.30348498061 0.034192604580986 6.787042773330978e-05 0.014988066022685615 4.062686873405062e-05 0.0005300943988662442 1.4368815514154951e-06 0.014988066022685613 4.062686873405062e-05 0.019204538558300385 7.910080545630496e-05']
['59866.30351651858 0.034147320984918066 6.78441041107768e-05 0.014972640588493178 4.064133286960721e-05 0.0005295488357326743 1.4373931155646914e-06 0.014972640588493178 4.064133286960721e-05 0.019174680396424885 7.908565230186913e-05']
['59866.30354805654 0.034214900003959485 6.79185424370701e-05 0.015010195509699434 4.06585024670125e-05 0.0005308770693654303 1.4380003658531246e-06 0.015010195509699434 4.06585024670125e-05 0.019204704494260053 7.915833645066167e-05']
['59866.3035795945 0.03433990541962896 6.795907359444575e-05 0.015091610906747295 4.068914127548223e-05 0.0005337565500063095 1.439083992034992e-06 0.015091610906747295 4.068914127548223e-05 0.019248294512881667 7.920884989413396e-05']
['59866.30361113246 0.034242147150373124 6.79141213729583e-05 0.015002298819345873 4.065669231648153e-05 0.0005305977810756891 1.4379363448742927e-06 0.015002298819345871 4.065669231648153e-05 0.01923984833102725 7.91536133854795e-05']
['59866.30364267043 0.03425117550758279 6.792964010672084e-05 0.015030879491944179 4.064819012996136e-05 0.0005316086155914472 1.4376356415383426e-06 0.015030879491944179 4.064819012996136e-05 0.019220296015638613 7.916256290614967e-05']
['59866.30367420839 0.03427711168832124 6.79471225052217e-05 0.015024704398393589 4.0669442579646786e-05 0.0005313902163330848 1.4383872931872866e-06 0.01502470439839359 4.0669442579646786e-05 0.01925240728992765 7.918847780124829e-05']
['59866.30370574635 0.03419730108124275 6.787085471388476e-05 0.015033123407590967 4.066180950450738e-05 0.0005316879778730178 1.4381173283785248e-06 0.015033123407590967 4.066180950450738e-05 0.01916417767365178 7.91191233000853e-05']
['59866.30373728432 0.034291078853644616 6.795839492220201e-05 0.015034377817487506 4.0668028654413136e-05 0.0005317323435476173 1.4383372858117092e-06 0.015034377817487506 4.0668028654413136e-05 0.01925670103615711 7.919742416921235e-05']
['59866.30376882228 0.03424261357924542 6.790697689201014e-05 0.015006759155725087 4.0661385676029723e-05 0.0005307555332051568 1.4381023385124709e-06 0.015006759155725089 4.0661385676029723e-05 0.019235854423520334 7.914989447691534e-05']
['59866.30380036024 0.03424745002762392 6.792356155901738e-05 0.015003636497522836 4.064725509830957e-05 0.0005306450917632736 1.4376025715584915e-06 0.015003636497522838 4.064725509830957e-05 0.019243813530101087 7.915686680186802e-05']
['59866.30383189821 0.03427211082346066 6.794513164129617e-05 0.014998238346978388 4.06458038488598e-05 0.0005304541712426728 1.437551244108805e-06 0.014998238346978386 4.06458038488598e-05 0.019273872476482275 7.917463157017563e-05']
['59866.303863436166 0.03438059553818674 6.800930080415974e-05 0.015000302820387224 4.06438655690556e-05 0.0005305271870533169 1.4374826914839309e-06 0.015000302820387225 4.06438655690556e-05 0.019380292717799515 7.922871199423948e-05']
['59866.30389497413 0.03418513807933736 6.786724457319276e-05 0.014972857423642202 4.0633721198941796e-05 0.0005295565047072972 1.4371239077843385e-06 0.0149728574236422 4.0633721198941796e-05 0.01921228065569516 7.910159407010009e-05']
['59866.3039265121 0.034170313078894066 6.785241567299669e-05 0.01507424211426957 4.070708357163899e-05 0.000533142254633339 1.4397185709513848e-06 0.015074242114269568 4.070708357163899e-05 0.019096070964624498 7.912658823410452e-05']
['59866.303958050055 0.03429118688639856 6.79505222734291e-05 0.015008258107057191 4.064939118470914e-05 0.0005308085477638143 1.4376781201605723e-06 0.015008258107057191 4.064939118470914e-05 0.019282928779341367 7.918109926566627e-05']
['59866.30398958802 0.03418426290204766 6.784322895300644e-05 0.015000037709818604 4.0659983079365524e-05 0.000530517810684992 1.4380527318030772e-06 0.015000037709818604 4.0659983079365524e-05 0.019184225192229055 7.909448741084515e-05']
['59866.30402112599 0.03426644987445706 6.789865584046671e-05 0.015088397906142808 4.068558216005605e-05 0.0005336429133555626 1.4389581140765229e-06 0.01508839790614281 4.068558216005605e-05 0.01917805196831425 7.915518972654173e-05']
['59866.304052663945 0.034290713921110355 6.794915517828074e-05 0.014997824395830122 4.063184793648839e-05 0.000530439530715685 1.4370576546778566e-06 0.01499782439583012 4.063184793648839e-05 0.019292889525280237 7.917092115275653e-05']
['59866.30408420191 0.03416867162933896 6.787146847833847e-05 0.015077530468879207 4.068635652389902e-05 0.0005332585563868419 1.4389855015950476e-06 0.015077530468879208 4.068635652389902e-05 0.019091141160459752 7.9132268011197e-05']
['59866.30411573987 0.03424923515953375 6.791703195652965e-05 0.014978731101312745 4.064014564584899e-05 0.0005297642435596073 1.437351126113652e-06 0.014978731101312747 4.064014564584899e-05 0.019270504058221005 7.914761315352529e-05']
['59866.304147277835 0.03423473621096561 6.789816819716321e-05 0.015008018408183988 4.066685041195304e-05 0.0005308000701503645 1.4382956140091126e-06 0.015008018408183986 4.066685041195304e-05 0.019226717802781623 7.914514493611362e-05']
['59866.3041788158 0.03427739272759341 6.793452901933306e-05 0.015091341824323725 4.0683915051290264e-05 0.0005337470331623517 1.4388991521652457e-06 0.015091341824323725 4.0683915051290264e-05 0.019186050903269688 7.918510704027121e-05']
['59866.30421035376 0.0342781468619384 6.792137014969262e-05 0.015006806244004744 4.065414781194574e-05 0.0005307571986123722 1.4378463514354947e-06 0.015006806244004744 4.065414781194574e-05 0.019271340617933654 7.915852611896642e-05']
['59866.304241891725 0.03415496989390795 6.786564455805504e-05 0.014998405931472315 4.064782743668936e-05 0.0005304600983316938 1.437622813887884e-06 0.014998405931472315 4.064782743668936e-05 0.019156563962435633 7.910746858927508e-05']
['59866.30427342969 0.03418847735158979 6.787948657107352e-05 0.01497069955144805 4.0626324066056454e-05 0.0005294801855903505 1.4368622877258029e-06 0.01497069955144805 4.0626324066056454e-05 0.019217777800141736 7.910829858031828e-05']
['59866.30430496765 0.03418518429186996 6.78608220302081e-05 0.014967174523369726 4.062581089925076e-05 0.0005293555132251943 1.436844138162746e-06 0.014967174523369726 4.062581089925076e-05 0.019218009768500233 7.909202031707912e-05']
['59866.304336505615 0.0342479903199828 6.79301725309911e-05 0.015039901475505282 4.066996911519317e-05 0.0005319277029870569 1.4384059155728245e-06 0.015039901475505282 4.066996911519317e-05 0.01920808884447752 7.917420494025175e-05']
['59866.30436804357 0.034236672529540546 6.791035081693589e-05 0.014951301332820573 4.061909852615441e-05 0.0005287941139499639 1.4366067365275988e-06 0.014951301332820575 4.061909852615441e-05 0.01928537119671997 7.913107425756802e-05']
['59866.30439958154 0.034383800055061385 6.801002855238808e-05 0.015043213277516666 4.066042282242903e-05 0.0005320448340227576 1.4380682845324654e-06 0.015043213277516666 4.066042282242903e-05 0.01934058677754472 7.923783167020251e-05']
['59866.304431119504 0.034297286193866176 6.794538485605509e-05 0.015044283770089243 4.065331107065283e-05 0.0005320826949526396 1.4378167577659712e-06 0.015044283770089244 4.065331107065283e-05 0.019253002423776932 7.917870309776932e-05']
['59866.30446265746 0.03424228460774798 6.791386858465263e-05 0.015004260679783195 4.0658121632152534e-05 0.0005306671676948572 1.4379868965752435e-06 0.015004260679783195 4.0658121632152534e-05 0.01923802392796479 7.915413066156673e-05']
['59866.30449419543 0.03421711874461301 6.790123198288439e-05 0.01505640166989934 4.0677951109112336e-05 0.0005325112779870105 1.438688220859039e-06 0.01505640166989934 4.0677951109112336e-05 0.019160717074713667 7.915347756876393e-05']
['59866.304525733394 0.03424722633936517 6.791599436616387e-05 0.015108731843689785 4.070823996566962e-05 0.0005343620792829232 1.4397594700238595e-06 0.015108731843689785 4.070823996566962e-05 0.01913849449567538 7.918170932638006e-05']
['59866.30455727135 0.034410503043939736 6.801556891286974e-05 0.015107821947482674 4.0695504034750334e-05 0.0005343298982875761 1.4393090286103748e-06 0.015107821947482674 4.0695504034750334e-05 0.01930268109645706 7.926059338147624e-05']
['59866.30458880932 0.0341994992549778 6.787439788278043e-05 0.014991136325117681 4.0631327009690984e-05 0.0005302029886015444 1.4370392306612352e-06 0.014991136325117681 4.0631327009690984e-05 0.019208362929860116 7.91065017714627e-05']
['59866.30462034728 0.03422258804190996 6.790964144337575e-05 0.015055910206832048 4.0692819099249774e-05 0.0005324938960366757 1.4392140684421977e-06 0.015055910206832047 4.0692819099249774e-05 0.019166677835077913 7.916833285608662e-05']
['59866.30465188524 0.034359200511519854 6.800412390091703e-05 0.014981928517369814 4.0636901609086695e-05 0.0005298773290197415 1.437236391783365e-06 0.014981928517369814 4.0636901609086695e-05 0.01937727199415004 7.922069578031909e-05']
['59866.30468342321 0.034284182888626565 6.795480732922892e-05 0.014993184286462234 4.065753302895451e-05 0.000530275420417377 1.43796607899558e-06 0.014993184286462236 4.065753302895451e-05 0.01929099860216433 7.918895649743815e-05']
['59866.30471496117 0.03429123432927 6.793223394764628e-05 0.014970415683706358 4.063746006205918e-05 0.000529470145822734 1.437256143016933e-06 0.014970415683706358 4.063746006205918e-05 0.01932081864556364 7.915927974289053e-05']
['59866.30474649913 0.034372232130646926 6.796311659829828e-05 0.015068368812631655 4.0673142367010726e-05 0.0005329345290804626 1.438518146397811e-06 0.015068368812631655 4.0673142367010726e-05 0.01930386331801527 7.920410171046074e-05']
['59866.3047780371 0.034395690749228006 6.802874221668984e-05 0.015106681024222099 4.069690120052558e-05 0.000534289546381663 1.4393584432413636e-06 0.015106681024222099 4.069690120052558e-05 0.019289009725005905 7.927261528996112e-05']
['59866.30480957506 0.034298630697122606 6.79422709312701e-05 0.01508901548193062 4.068518860442831e-05 0.0005336647556309767 1.4389441948935146e-06 0.015089015481930618 4.068518860442831e-05 0.01920961521519199 7.919240336721707e-05']
['59866.30484111302 0.03421881248147252 6.789915426444651e-05 0.014885758712982396 4.058012630459063e-05 0.0005264760179654219 1.435228376148677e-06 0.014885758712982396 4.058012630459063e-05 0.01933305376849013 7.910146522488463e-05']
['59866.30487265098 0.034263771338376756 6.793710061771306e-05 0.015108932774079192 4.071238435922036e-05 0.0005343691857417436 1.4399060479615749e-06 0.015108932774079193 4.071238435922036e-05 0.01915483856429756 7.920194366651716e-05']
['59866.304904188946 0.03416969331420386 6.78579381821837e-05 0.015030013921888795 4.066247474962025e-05 0.0005315780023130235 1.4381408566114316e-06 0.015030013921888793 4.066247474962025e-05 0.019139679392315066 7.910838531470965e-05']
['59866.30493572691 0.03430650786169944 6.794561904761523e-05 0.01505829686966299 4.067336502486683e-05 0.0005325783069671286 1.4385260213085702e-06 0.015058296869662988 4.067336502486683e-05 0.019248210992036455 7.918920235871627e-05']
['59866.30496726487 0.034201364641219055 6.788181804920163e-05 0.015029582077975051 4.066684739831289e-05 0.0005315627289589087 1.4382955074233955e-06 0.01502958207797505 4.066684739831289e-05 0.019171782563244005 7.913111713468087e-05']
['59866.304998802836 0.03429669041419493 6.792806285374444e-05 0.015023304245118982 4.0655333565594996e-05 0.0005313406960409203 1.4378882888920654e-06 0.015023304245118982 4.0655333565594996e-05 0.01927338616907595 7.916487775770295e-05']
['59866.3050303408 0.03434290398163122 6.799227242198304e-05 0.01502230839048765 4.064600066049636e-05 0.0005313054748882142 1.4375582048965418e-06 0.01502230839048765 4.064600066049636e-05 0.01932059559114357 7.921519095980407e-05']
['59866.30506187876 0.03428773675008054 6.792386949252359e-05 0.014942482508238316 4.063052650743507e-05 0.0005284822118334024 1.437010918685461e-06 0.014942482508238318 4.063052650743507e-05 0.01934525424184222 7.914854219193655e-05']
['59866.305093416726 0.034182141756145416 6.788748234780415e-05 0.015019188281604609 4.065665088922326e-05 0.000531195123610054 1.437934879684752e-06 0.015019188281604609 4.065665088922326e-05 0.019162953474540806 7.913073689187785e-05']
['59866.305124954684 0.034301838605151194 6.796415629856429e-05 0.015019859371929303 4.064480405053263e-05 0.0005312188585750398 1.4375158834763907e-06 0.015019859371929303 4.064480405053263e-05 0.01928197923322189 7.919044536862935e-05']
['59866.30515649265 0.03431459048029054 6.795402162289581e-05 0.015075770285563558 4.0676560161982854e-05 0.0005331963026367455 1.438639026167653e-06 0.015075770285563558 4.0676560161982854e-05 0.019238820194726985 7.91980530148084e-05']
['59866.305188030616 0.03433228647530716 6.798920941332598e-05 0.015049982729195832 4.06935205108335e-05 0.0005322842543998156 1.4392388758023515e-06 0.01504998272919583 4.06935205108335e-05 0.019282303746111326 7.923695607615629e-05']
['59866.305219568574 0.03430946369541785 6.798376205487522e-05 0.01498765590576963 4.064136106549756e-05 0.0005300798939474832 1.437394112790319e-06 0.01498765590576963 4.064136106549756e-05 0.019321807789648218 7.92055056949328e-05']
['59866.30525110654 0.03429550128700117 6.791971212808252e-05 0.015090159647308787 4.068058016304375e-05 0.0005337052222033434 1.4387812046210032e-06 0.015090159647308785 4.068058016304375e-05 0.019205341639692387 7.917068206074411e-05']
['59866.305282644505 0.03429508810671138 6.793122175320004e-05 0.015097942398416962 4.070195063977994e-05 0.0005339804807166146 1.4395370306229576e-06 0.015097942398416964 4.070195063977994e-05 0.019197145708294415 7.919153789872705e-05']
['59866.305314182464 0.03423104421021409 6.792249691606287e-05 0.015055996896366537 4.066158854724634e-05 0.0005324969620517709 1.4381095136140122e-06 0.015055996896366535 4.066158854724634e-05 0.019175047313847556 7.916331454972135e-05']
['59866.30534572043 0.03427800198064593 6.791922239858053e-05 0.015069634691961372 4.068555338891266e-05 0.0005329793004032809 1.4389570965054808e-06 0.015069634691961372 4.068555338891266e-05 0.019208367288684556 7.917281746780208e-05']
['59866.30537725839 0.03438098097441877 6.801934922537963e-05 0.015037067837738602 4.068250926458714e-05 0.0005318274835520571 1.4388494326313047e-06 0.015037067837738604 4.068250926458714e-05 0.01934391313668017 7.925716642113424e-05']
['59866.305408796354 0.03426488054441135 6.79299258100935e-05 0.015019281451564817 4.065442174790007e-05 0.000531198418823324 1.4378560399379885e-06 0.015019281451564817 4.065442174790007e-05 0.01924559909284653 7.916600803514686e-05']
['59866.30544033432 0.03429800356540581 6.795917286874954e-05 0.015051470028742261 4.068092657912524e-05 0.000532336856860854 1.438793456583611e-06 0.015051470028742261 4.068092657912524e-05 0.01924653353666355 7.920471554358845e-05']
['59866.30547187228 0.0342568417153324 6.79143494349854e-05 0.0150335372831476 4.067022443790456e-05 0.0005317026157264985 1.4384149457665137e-06 0.015033537283147602 4.067022443790456e-05 0.0192233044321848 7.91607605762276e-05']
['59866.30550341024 0.03422882874102309 6.792471183136456e-05 0.015004346670411976 4.064687160098375e-05 0.0005306702089912194 1.4375890081151435e-06 0.015004346670411976 4.064687160098375e-05 0.019224482070611115 7.915765691530274e-05']
['59866.30553494821 0.03427679575172004 6.791146366151078e-05 0.0150915245881896 4.068755108663777e-05 0.0005337534971118344 1.4390277506094264e-06 0.0150915245881896 4.068755108663777e-05 0.01918527116353044 7.916718834262372e-05']
['59866.30556648617 0.034225604465700755 6.789769054477325e-05 0.015041028831375551 4.065430351646911e-05 0.0005319675750446963 1.4378518583565072e-06 0.015041028831375553 4.065430351646911e-05 0.019184575634325202 7.913828893603262e-05']
['59866.30559802413 0.034178541165548255 6.785481860996147e-05 0.014966776015529953 4.0630334037171366e-05 0.0005293414188935142 1.4370041114423794e-06 0.014966776015529953 4.0630334037171366e-05 0.019211765150018302 7.908919302005109e-05']
['59866.30562956209 0.034166591807206985 6.785017410396716e-05 0.015084639838624885 4.068930717567042e-05 0.0005335099989062402 1.4390898595538832e-06 0.015084639838624885 4.068930717567042e-05 0.0190819519685821 7.9115522145624e-05']
['59866.30566110006 0.034355163825352156 6.801865921620425e-05 0.01498472409238374 4.063803386225923e-05 0.0005299762022602416 1.4372764370476407e-06 0.01498472409238374 4.063803386225923e-05 0.01937043973296842 7.9233754156674e-05']
['59866.30569263802 0.03431794964086807 6.794988324811162e-05 0.01506507717447759 4.067775419742656e-05 0.0005328181111953316 1.4386812565327846e-06 0.01506507717447759 4.067775419742656e-05 0.01925287246639048 7.91951155058079e-05']
['59866.30572417598 0.034186053794028774 6.784958181282634e-05 0.015017050798230529 4.0663216091641746e-05 0.000531119525600107 1.43816707622193e-06 0.015017050798230529 4.0663216091641746e-05 0.019169002995798247 7.910159856217172e-05']
['59866.30575571395 0.034190608735554726 6.790928652685292e-05 0.01505724068680236 4.067504280229007e-05 0.0005325409521397779 1.4385853605464185e-06 0.01505724068680236 4.067504280229007e-05 0.019133368048752368 7.915889276356977e-05']
['59866.30578725191 0.03420736051261559 6.788646021556685e-05 0.015038818620252333 4.067411783675242e-05 0.0005318894048167991 1.4385526465825281e-06 0.015038818620252333 4.067411783675242e-05 0.019168541892363257 7.913883586708716e-05']
['59866.30581878987 0.034284618347729674 6.793112334879347e-05 0.015008552875550618 4.064850439990287e-05 0.0005308189730666579 1.437646756563822e-06 0.015008552875550616 4.064850439990287e-05 0.019276065472179058 7.916399705281382e-05']
['59866.30585032784 0.034247021650545315 6.790721895723707e-05 0.014977753622363667 4.064415780707935e-05 0.0005297296723137153 1.4374930272897173e-06 0.014977753622363667 4.064415780707935e-05 0.019269268028181647 7.914125315126686e-05']
['59866.305881865796 0.03420492231442892 6.787004192335e-05 0.015004625752633078 4.061812209896021e-05 0.0005306800795056677 1.4365722024799264e-06 0.015004625752633078 4.061812209896021e-05 0.01920029656179584 7.909598241076045e-05']
['59866.30591340376 0.03417668275457673 6.789929963525423e-05 0.014975937069784473 4.063804451867513e-05 0.0005296654249087453 1.4372768139412555e-06 0.014975937069784473 4.063804451867513e-05 0.019200745684792256 7.913131840971599e-05']
['59866.30594494173 0.034208772490241 6.790203220709841e-05 0.014979949226857052 4.065398654528505e-05 0.0005298073259377591 1.4378406477941158e-06 0.014979949226857053 4.065398654528505e-05 0.019228823263383946 7.914185112744109e-05']
['59866.305976479685 0.03426762127610562 6.791860817613385e-05 0.015063346027716067 4.068238548191661e-05 0.0005327568844032619 1.4388450547148861e-06 0.015063346027716067 4.068238548191661e-05 0.019204275248389555 7.917066265405675e-05']
['59866.30600801765 0.03433750107076016 6.798590620560184e-05 0.014990458242901 4.06427965879346e-05 0.0005301790063489648 1.4374448840107132e-06 0.014990458242900998 4.06427965879346e-05 0.019347042827859165 7.920808264997405e-05']
['59866.30603955562 0.03429081631792577 6.793450936602663e-05 0.015046812194562784 4.067109301106945e-05 0.0005321721196755726 1.4384456652582091e-06 0.015046812194562786 4.067109301106945e-05 0.019244004123362985 7.91785032033179e-05']
['59866.306071093575 0.03423572178435713 6.792987978423503e-05 0.01498405451036435 4.064304649058439e-05 0.0005299525206406435 1.4374537225089366e-06 0.01498405451036435 4.064304649058439e-05 0.01925166727399278 7.916012756139562e-05']
['59866.30610263154 0.034215641350562875 6.790289683526376e-05 0.015013989201719615 4.065308224147806e-05 0.0005310112437737814 1.4378086645894626e-06 0.015013989201719613 4.065308224147806e-05 0.019201652148843264 7.91421284421442e-05']
['59866.3061341695 0.03430871455560617 6.797912194348775e-05 0.015069178853536019 4.0664474594560844e-05 0.000532963178416915 1.43821158665759e-06 0.015069178853536019 4.0664474594560844e-05 0.01923953570207015 7.921338595375949e-05']
['59866.306165707465 0.034153139411698424 6.786546252380773e-05 0.015009693296709882 4.0641380411537854e-05 0.0005308593072143698 1.4373947970165282e-06 0.01500969329670988 4.0641380411537854e-05 0.019143446114988544 7.910399993252986e-05']
['59866.30619724543 0.0343096004961769 6.79581821037354e-05 0.01496676378272072 4.0638766597670095e-05 0.0005293409862463903 1.4373023522615558e-06 0.01496676378272072 4.0638766597670095e-05 0.019342836713456178 7.918221937672856e-05']
['59866.30622878339 0.03415304041138192 6.7819150063263e-05 0.014961134453464996 4.060584280924404e-05 0.0005291418894514258 1.4361379114452629e-06 0.014961134453464996 4.060584280924404e-05 0.01919190595791692 7.904600929555155e-05']
['59866.306260321355 0.03428505616852745 6.792531852806385e-05 0.0150451463564928 4.066958141209844e-05 0.0005321132027059662 1.4383922033808292e-06 0.0150451463564928 4.066958141209844e-05 0.01923990981203465 7.916984116047118e-05']
['59866.30629185932 0.034210154835575615 6.787969420593357e-05 0.015083407197025766 4.0689915711108655e-05 0.0005334664031276712 1.4391113820923369e-06 0.015083407197025767 4.0689915711108655e-05 0.019126747638549848 7.914115317625957e-05']
['59866.30632339728 0.03440493188711942 6.803308567146184e-05 0.014976149183013508 4.063268848916613e-05 0.0005296729268796111 1.4370873831475437e-06 0.014976149183013508 4.063268848916613e-05 0.01942878270410591 7.924339795742029e-05']
['59866.306354935245 0.03429665666971072 6.795844851608155e-05 0.015065137032566563 4.069521575534293e-05 0.0005328202282421637 1.4392988328120015e-06 0.015065137032566565 4.069521575534293e-05 0.019231519637144152 7.921143421304034e-05']
['59866.3063864732 0.03443846009326016 6.804411276649283e-05 0.015069647236142564 4.06702172106835e-05 0.000532979744062935 1.4384146901558568e-06 0.015069647236142562 4.06702172106835e-05 0.019368812857117598 7.927211268878462e-05']
['59866.30641801117 0.03418787930895924 6.788390496072012e-05 0.0150336888781687 4.066772305452348e-05 0.0005317079773035999 1.4383264774265877e-06 0.0150336888781687 4.066772305452348e-05 0.019154190430790537 7.913335738584268e-05']
['59866.306449549134 0.034368492649810824 6.798694258160757e-05 0.014985090651100513 4.0644897714432324e-05 0.0005299891666228434 1.4375191961591964e-06 0.014985090651100513 4.0644897714432324e-05 0.01938340199871031 7.921005032072301e-05']
['59866.30648108709 0.034218365432173374 6.789046426198845e-05 0.015002944382115888 4.065657936847758e-05 0.0005306206131881167 1.4379323501558169e-06 0.015002944382115888 4.065657936847758e-05 0.019215421050057486 7.913325839148573e-05']
['59866.30651262506 0.034324159911531496 6.797772048455e-05 0.01506415446462923 4.066067083296654e-05 0.0005327854770101303 1.4380770561109063e-06 0.01506415446462923 4.066067083296654e-05 0.019260005446902265 7.921023061992979e-05']
['59866.306544163024 0.03434827557503571 6.79914753166467e-05 0.014989418411259793 4.064911217118048e-05 0.0005301422298277024 1.4376682520756223e-06 0.014989418411259793 4.064911217118048e-05 0.019358857163775917 7.921610338838556e-05']
['59866.30657570098 0.03441119514166616 6.80300309843667e-05 0.01496966650350203 4.062735453470451e-05 0.0005294436489932261 1.4368987330989228e-06 0.01496966650350203 4.062735453470451e-05 0.019441528638164125 7.923804043653822e-05']
['59866.30660723895 0.03417696298922547 6.78840236938048e-05 0.014960429056149622 4.06280600567292e-05 0.0005291169411248513 1.4369236858361871e-06 0.014960429056149622 4.06280600567292e-05 0.019216533933075847 7.911308322164069e-05']
['59866.30663877691 0.03427924336124073 6.793372632552577e-05 0.015066805841000593 4.068651822938185e-05 0.0005328792502669079 1.4389912207565845e-06 0.015066805841000591 4.068651822938185e-05 0.01921243752024014 7.91857559040845e-05']
['59866.30667031487 0.03423467945419179 6.786140790010663e-05 0.015115337590909602 4.070032640760156e-05 0.0005345957097991121 1.4394795851607538e-06 0.015115337590909604 4.070032640760156e-05 0.019119341863282187 7.913082365216453e-05']
['59866.30670185284 0.03419665400055624 6.78655085150448e-05 0.015028859630881606 4.067452644280601e-05 0.0005315371776197878 1.4385670980654629e-06 0.015028859630881606 4.067452644280601e-05 0.019167794369674637 7.912107397749441e-05']
['59866.3067333908 0.03434456774843801 6.80108592141864e-05 0.015014553722307549 4.0672589904564784e-05 0.0005310312096053474 1.4384986070357789e-06 0.015014553722307547 4.0672589904564784e-05 0.019330014026130465 7.924478872832452e-05']
['59866.30676492876 0.03415244408024812 6.784203130741888e-05 0.015004398061056369 4.065853988683149e-05 0.0005306720265634602 1.438001689308494e-06 0.015004398061056369 4.065853988683149e-05 0.019148046019191747 7.909271823401868e-05']
['59866.30679646673 0.03435811041015107 6.800914675479819e-05 0.015017402711376084 4.065277306629289e-05 0.0005311319719815856 1.437797729754129e-06 0.015017402711376082 4.065277306629289e-05 0.019340707698774988 7.923314963003292e-05']
['59866.30682800469 0.03421578595798455 6.788479487036956e-05 0.01505210332170689 4.065975180774646e-05 0.0005323592550176864 1.4380445522427726e-06 0.01505210332170689 4.065975180774646e-05 0.019163682636277664 7.91300245902887e-05']
['59866.30685954265 0.03431404445643524 6.796146849885935e-05 0.01502441626939247 4.066256818385855e-05 0.0005313800258542456 1.438144161171627e-06 0.015024416269392472 4.066256818385855e-05 0.019289628187042766 7.919725785548636e-05']
['59866.30689108061 0.03436985285846343 6.802371273810445e-05 0.015002421791978866 4.0649858970227686e-05 0.0005306021303428905 1.4376946646889242e-06 0.015002421791978868 4.0649858970227686e-05 0.019367431066484565 7.924415769617059e-05']
['59866.306922618576 0.034235773568102895 6.790762291400897e-05 0.015011635400362898 4.0665519636907543e-05 0.0005309279950802308 1.4382485474698605e-06 0.0150116354003629 4.0665519636907543e-05 0.019224138167739997 7.915257252402445e-05']
['59866.30695415654 0.03418995826218403 6.786185768118513e-05 0.015064338578334113 4.0669411665938215e-05 0.0005327919887004021 1.4383861998385026e-06 0.015064338578334113 4.0669411665938215e-05 0.019125619683849918 7.911531313971383e-05']
['59866.3069856945 0.03423289479175362 6.790215596457505e-05 0.014921974121006012 4.059988228992546e-05 0.0005277568760105437 1.4359271011979415e-06 0.014921974121006012 4.059988228992546e-05 0.01931092067074761 7.911417841697705e-05']
['59866.307017232466 0.03432970212947296 6.798482742343053e-05 0.01502913278905312 4.066628742022982e-05 0.0005315468386138417 1.4382757022500748e-06 0.01502913278905312 4.066628742022982e-05 0.019300569340419835 7.921921289900812e-05']
['59866.30704877043 0.034273565850874904 6.793657865796965e-05 0.014973667943535315 4.06329415823754e-05 0.0005295851709845112 1.4370963344887255e-06 0.014973667943535314 4.06329415823754e-05 0.01929989790733959 7.916068886377399e-05']
['59866.30708030839 0.03424699174753012 6.79449202341454e-05 0.014965212940909606 4.063799899212945e-05 0.0005292861364374587 1.4372752037690806e-06 0.014965212940909606 4.063799899212945e-05 0.019281778806620513 7.917044364981602e-05']
['59866.307111846356 0.03421996482163158 6.79008319174536e-05 0.01501169773596378 4.066522348445412e-05 0.0005309301997511221 1.4382380732194446e-06 0.015011697735963779 4.066522348445412e-05 0.0192082670856678 7.91465942168258e-05']
['59866.307143384314 0.0342778763577161 6.791267340608996e-05 0.015028044308370021 4.066040566397726e-05 0.0005315083414846916 1.4380676776763732e-06 0.015028044308370021 4.066040566397726e-05 0.019249832049346077 7.915427845619865e-05']
['59866.30717492228 0.0341466519522553 6.78338459694104e-05 0.015015345889504636 4.065931349913144e-05 0.0005310592267887188 1.4380290502466214e-06 0.015015345889504634 4.065931349913144e-05 0.019131306062750666 7.908609506874358e-05']
['59866.307206460246 0.03435227416030499 6.798190986058211e-05 0.015061745601602066 4.067342482524327e-05 0.0005327002809083515 1.4385281363142391e-06 0.015061745601602065 4.067342482524327e-05 0.019290528558702922 7.922037336005825e-05']
['59866.307237998204 0.034263332366407585 6.79229738241828e-05 0.01501429844767395 4.0661831884568524e-05 0.0005310221811120622 1.4381181199112709e-06 0.015014298447673949 4.0661831884568524e-05 0.019249033918733637 7.916384872736756e-05']
['59866.30726953617 0.03428485591079737 6.796213850215981e-05 0.015123180648310223 4.0711491919879346e-05 0.0005348731012111704 1.4398744843765677e-06 0.015123180648310225 4.0711491919879346e-05 0.019161675262487146 7.922296285881484e-05']
['59866.307301074135 0.03431064624951036 6.79742143599983e-05 0.015001908283565863 4.065279922174768e-05 0.0005305839686979462 1.437798654814111e-06 0.015001908283565861 4.065279922174768e-05 0.019308737965944497 7.920318113827706e-05']
['59866.307332612094 0.034274320697728164 6.794179443965244e-05 0.015092433052734338 4.069048354399742e-05 0.0005337856274724831 1.4391314650725808e-06 0.015092433052734338 4.069048354399742e-05 0.019181887644993824 7.91947149923801e-05']
['59866.30736415006 0.034226209574126844 6.790676062214778e-05 0.01497929429479113 4.0639382462394825e-05 0.0005297841624542744 1.437324134020493e-06 0.014979294294791128 4.0639382462394825e-05 0.019246915279335718 7.913840752200213e-05']
['59866.30739568802 0.03423186670804224 6.789984706772925e-05 0.015041518131594794 4.065769492618643e-05 0.0005319848804999293 1.437971804938854e-06 0.015041518131594796 4.065769492618643e-05 0.019190348576447448 7.914188138104796e-05']
['59866.307427225984 0.0342966107930821 6.798006875265365e-05 0.014967381754603151 4.062564458765397e-05 0.000529362842530786 1.4368382560932518e-06 0.014967381754603151 4.062564458765397e-05 0.019329229038478946 7.919427217784058e-05']
['59866.30745876395 0.034246160282420904 6.790818988229365e-05 0.015004956573014743 4.0641953831721424e-05 0.0005306917798832272 1.4374150776069024e-06 0.015004956573014745 4.0641953831721424e-05 0.019241203709406157 7.914095440635919e-05']
['59866.30749030191 0.03430787926001521 6.79607732309295e-05 0.015008741685626822 4.0653486815509425e-05 0.0005308256508570876 1.4378229734687822e-06 0.015008741685626822 4.0653486815509425e-05 0.01929913757438839 7.919199889133132e-05']
['59866.30752183987 0.034243355401497234 6.791631115678077e-05 0.0150050071355809 4.064998388937835e-05 0.0005306935681681915 1.4376990828001053e-06 0.0150050071355809 4.064998388937835e-05 0.019238348265916333 7.915204679192689e-05']
['59866.30755337784 0.03436792602109838 6.798706438233769e-05 0.01507997028284966 4.0687485147976146e-05 0.0005333448471543134 1.439025418506329e-06 0.01507997028284966 4.0687485147976146e-05 0.01928795573824872 7.923201607301754e-05']
['59866.3075849158 0.03413277246821027 6.781669010284507e-05 0.014998988579442787 4.063402855987271e-05 0.0005304807052882677 1.4371347784535537e-06 0.014998988579442787 4.063402855987271e-05 0.01913378388876748 7.905838180427093e-05']
['59866.30761645376 0.03430576172893492 6.794326948538814e-05 0.015029648017077365 4.066168027748177e-05 0.0005315650610775924 1.4381127579074343e-06 0.015029648017077367 4.066168027748177e-05 0.019276113711857557 7.918118533687296e-05']
['59866.30764799172 0.03442691856102218 6.803410018786958e-05 0.015056230940417392 4.066846647458142e-05 0.000532505239666792 1.4383527705325909e-06 0.015056230940417394 4.066846647458142e-05 0.019370687620604787 7.926262015456736e-05']
['59866.30767952969 0.034146502181877196 6.784725786823108e-05 0.01492810607833375 4.0614917227654256e-05 0.0005279737496371078 1.4364588533443007e-06 0.01492810607833375 4.0614917227654256e-05 0.019218396103543447 7.907478676321203e-05']
['59866.30771106765 0.034272262337113786 6.792588325912885e-05 0.014996836827981553 4.064573486493124e-05 0.0005304046026479654 1.4375488043014216e-06 0.014996836827981554 4.064573486493124e-05 0.01927542550913223 7.915807842060777e-05']
['59866.30774260561 0.03428705671428504 6.795172567502902e-05 0.015030742396456768 4.065970922566276e-05 0.000531603766830448 1.4380430462096376e-06 0.01503074239645677 4.065970922566276e-05 0.019256314317828267 7.918742940978602e-05']
['59866.30777414358 0.03422411433021464 6.791594273122496e-05 0.015069094426387155 4.068497057582578e-05 0.0005329601924173433 1.4389364837091087e-06 0.015069094426387155 4.068497057582578e-05 0.019155019903827487 7.916970448237658e-05']
['59866.30780568154 0.03423840863630268 6.789398964181333e-05 0.014990289755048623 4.0646947324871275e-05 0.0005301730473101745 1.4375916862998123e-06 0.014990289755048623 4.0646947324871275e-05 0.019248118881254057 7.913133485739714e-05']
['59866.3078372195 0.034289128136646516 6.794726902991276e-05 0.015002263881242029 4.06194291040843e-05 0.0005305965453930383 1.436618428330181e-06 0.01500226388124203 4.06194291040843e-05 0.019286864255404483 7.916292938847749e-05']
['59866.30786875747 0.03434246584098889 6.800518151365029e-05 0.015053374102576423 4.0664704975435466e-05 0.0005324041996970137 1.4382197347142545e-06 0.015053374102576423 4.0664704975435466e-05 0.01928909173841247 7.923586904580354e-05']
['59866.307900295425 0.03423212106869265 6.79072629093848e-05 0.014951022002732864 4.0610758101676235e-05 0.0005287842346690276 1.4363117543535575e-06 0.014951022002732866 4.0610758101676235e-05 0.01928109906595979 7.912414315136165e-05']
['59866.30793183339 0.034292226730420886 6.797542234347055e-05 0.015078085853055883 4.0685907364611934e-05 0.0005332781990839602 1.4389696158348752e-06 0.015078085853055881 4.0685907364611934e-05 0.019214140877365005 7.922121622933455e-05']
['59866.30796337136 0.03422828556092981 6.788633213428915e-05 0.015071960436487368 4.06896026086279e-05 0.0005330615567894322 1.4391003083573354e-06 0.015071960436487366 4.06896026086279e-05 0.01915632512444244 7.914668566083534e-05']
['59866.307994909315 0.0342466088987031 6.790185582049849e-05 0.014976547200033098 4.06360540135116e-05 0.0005296870038520783 1.4372064142221388e-06 0.0149765472000331 4.06360540135116e-05 0.019270061698670002 7.913248959597314e-05']
['59866.30802644728 0.03429227470937193 6.794842377875382e-05 0.014992827864880744 4.064546692665635e-05 0.000530262814582595 1.4375393279234457e-06 0.014992827864880745 4.064546692665635e-05 0.019299446844491183 7.917728383635697e-05']
['59866.30805798524 0.03419204566663968 6.787677888583017e-05 0.015007345022221447 4.066449204726091e-05 0.0005307762539937985 1.438212203920587e-06 0.015007345022221447 4.066449204726091e-05 0.019184700644418233 7.912558388648785e-05']
['59866.308089523205 0.03432421962307021 6.795896484279609e-05 0.015076581754056835 4.068606963148127e-05 0.0005332250024638273 1.4389753548513984e-06 0.015076581754056833 4.068606963148127e-05 0.019247637869013377 7.92071787438622e-05']
['59866.30812106117 0.03423034197906743 6.792401787426703e-05 0.015005941026308886 4.06399935212812e-05 0.0005307265977961174 1.4373457458076677e-06 0.015005941026308887 4.06399935212812e-05 0.01922440095275854 7.915352978606528e-05']
['59866.30815259913 0.03431871551597882 6.795494926248522e-05 0.014961699668380998 4.062715296992384e-05 0.0005291618798398238 1.4368916042031011e-06 0.014961699668380998 4.062715296992384e-05 0.019357015847597824 7.917348475157912e-05']
['59866.308184137095 0.03419253631698561 6.786618015603824e-05 0.015044387824592342 4.066944001675138e-05 0.000532086375127866 1.4383872025434038e-06 0.01504438782459234 4.066944001675138e-05 0.01914814849239327 7.9119035384969e-05']
['59866.30821567506 0.03428529221694948 6.791497895882591e-05 0.015089143168029022 4.069913669131158e-05 0.0005336692716029157 1.4394375075544366e-06 0.015089143168029024 4.069913669131158e-05 0.019196149048920457 7.917615862364017e-05']
['59866.30824721302 0.034289574675445834 6.79424781785132e-05 0.015079508767175098 4.068757952054901e-05 0.000533328524376331 1.439028756253321e-06 0.015079508767175098 4.068757952054901e-05 0.019210065908270735 7.91938095325559e-05']
['59866.308278750985 0.034182961506042824 6.788946977931777e-05 0.014996283060278746 4.0632457831255485e-05 0.0005303850171219151 1.4370792252927343e-06 0.014996283060278745 4.0632457831255485e-05 0.019186678445764077 7.912001476444286e-05']
['59866.30831028894 0.03429754811894085 6.793141678709152e-05 0.015029745335599363 4.066880630508292e-05 0.0005315685030162214 1.4383647895779525e-06 0.015029745335599365 4.066880630508292e-05 0.019267802783341482 7.917467519972463e-05']
['59866.30834182691 0.03437728549739163 6.80160617202728e-05 0.015071707176026697 4.067402571756161e-05 0.0005330525995329422 1.4385493885326235e-06 0.015071707176026699 4.067402571756161e-05 0.01930557832136493 7.924999066251567e-05']
['59866.308373364875 0.03445268909120751 6.808656371833288e-05 0.014985738300659043 4.064252342437068e-05 0.000530012072540317 1.4374352228259421e-06 0.014985738300659045 4.064252342437068e-05 0.019466950790548464 7.929435584750735e-05']
['59866.30840490283 0.03415614881505359 6.786853122575854e-05 0.014939321985813337 4.0604966072477244e-05 0.0005283704312185828 1.4361069032252126e-06 0.014939321985813336 4.0604966072477244e-05 0.019216826829240256 7.908793081430814e-05']
['59866.3084364408 0.03430770571295058 6.79608026747516e-05 0.015003166326198131 4.0656677522356115e-05 0.0005306284628542898 1.4379358216391396e-06 0.015003166326198133 4.0656677522356115e-05 0.01930453938675245 7.919366216657354e-05']
['59866.308467978764 0.03429203762655901 6.794421267112772e-05 0.014981946012138432 4.063545056367546e-05 0.000529877947770609 1.4371850715500655e-06 0.01498194601213843 4.063545056367546e-05 0.01931009161442058 7.916852833046946e-05']
['59866.30849951672 0.034300579986984825 6.796416262848714e-05 0.015006170580697765 4.064565672337582e-05 0.0005307347166218282 1.4375460406092428e-06 0.015006170580697765 4.064565672337582e-05 0.019294409406287058 7.919088844220624e-05']
['59866.30853105469 0.03414982790014043 6.784662132587562e-05 0.015089985655326139 4.069979665529284e-05 0.0005336990684957664 1.4394608490055209e-06 0.015089985655326139 4.069979665529284e-05 0.019059842244814287 7.911787075698478e-05']
['59866.30856259265 0.03419076616433638 6.787622510769666e-05 0.015090732578935813 4.0694312922838304e-05 0.0005337254855145645 1.4392669016440248e-06 0.015090732578935813 4.0694312922838304e-05 0.01910003358540057 7.914043870950296e-05']
['59866.30859413061 0.03425665149237608 6.79315625100996e-05 0.015004061461941085 4.065026601101627e-05 0.0005306601218050075 1.4377090608119339e-06 0.015004061461941085 4.065026601101627e-05 0.019252590030434998 7.916527844850894e-05']
['59866.30862566858 0.034309658910144904 6.797639552434968e-05 0.01499972134414476 4.063201850518426e-05 0.0005305066215381438 1.437063687311431e-06 0.01499972134414476 4.063201850518426e-05 0.019309937566000142 7.919438917176181e-05']
['59866.30865720654 0.034173317850588004 6.786743954636763e-05 0.014984607993367973 4.0629369660116984e-05 0.00052997209609752 1.4369700035812216e-06 0.014984607993367973 4.0629369660116984e-05 0.01918870985722003 7.909952610198306e-05']
['59866.3086887445 0.03430831537948984 6.798046625868339e-05 0.015057448469052498 4.0677612234414984e-05 0.0005325483009335993 1.4386762356183338e-06 0.015057448469052498 4.0677612234414984e-05 0.019250866910437342 7.922128457580967e-05']
['59866.30872028247 0.034244575331223284 6.791490020620319e-05 0.015032651430288547 4.065781313813457e-05 0.0005316712850906384 1.4379759858312716e-06 0.015032651430288547 4.065781313813457e-05 0.019211923900934735 7.915485733165088e-05']
['59866.30875182043 0.03423864443661728 6.792294247037842e-05 0.015034350111109072 4.066255785214775e-05 0.0005317313636349322 1.438143795762106e-06 0.015034350111109073 4.066255785214775e-05 0.019204294325508207 7.916419471524736e-05']
['59866.30878335839 0.03419913660242576 6.787448538709222e-05 0.014985078287304488 4.064404274715363e-05 0.0005299887293430094 1.4374889578772882e-06 0.014985078287304488 4.064404274715363e-05 0.019214058315121272 7.911310875825224e-05']
['59866.30881489635 0.034261958841864296 6.79179870898846e-05 0.015075999790651199 4.0683322094636346e-05 0.0005332044197187817 1.4388781806135768e-06 0.015075999790651199 4.0683322094636346e-05 0.0191859590512131 7.91706111318945e-05']
['59866.30884643432 0.034314384420787464 6.797859000091778e-05 0.014991427999130101 4.0646862960318164e-05 0.0005302133044595106 1.4375887025141125e-06 0.014991427999130101 4.0646862960318164e-05 0.019322956421657364 7.920388984783364e-05']
['59866.30887797228 0.03420490042255521 6.789137637293681e-05 0.014996143332692514 4.065277689614014e-05 0.0005303800752694629 1.437797865207267e-06 0.014996143332692514 4.065277689614014e-05 0.019208757089862694 7.913208739303613e-05']
['59866.30890951024 0.03432943819212435 6.796851275123077e-05 0.014999159777534531 4.0647478696907884e-05 0.0005304867601821676 1.4376104797412006e-06 0.014999159777534533 4.0647478696907884e-05 0.019330278414589813 7.919555700940426e-05']
['59866.308941048206 0.0342633819907982 6.794701559856155e-05 0.014990713377509885 4.063547806551792e-05 0.0005301880298898889 1.4371860442287702e-06 0.014990713377509884 4.063547806551792e-05 0.01927266861328832 7.91709479946044e-05']
['59866.30897258617 0.03435643026747163 6.797487590720785e-05 0.01507245005671048 4.0681362867276556e-05 0.0005330788735624869 1.4388088871204765e-06 0.015072450056710478 4.0681362867276556e-05 0.01928398021076115 7.921841351188077e-05']
['59866.30900412413 0.034293705946943046 6.789166661699952e-05 0.015130548829105063 4.0723698291727016e-05 0.0005351336972989689 1.440306196469184e-06 0.015130548829105063 4.0723698291727016e-05 0.019163157117837983 7.91687943484642e-05']
['59866.309035662096 0.03423941007657628 6.788076506933505e-05 0.015071491595974845 4.0683511432803534e-05 0.0005330449749483012 1.4388848770814045e-06 0.015071491595974845 4.0683511432803534e-05 0.019167918480601433 7.913877917242162e-05']
['59866.309067200054 0.03423788656773088 6.792527475350025e-05 0.015029969593724789 4.066295814497484e-05 0.0005315764345249302 1.4381579532247984e-06 0.015029969593724789 4.066295814497484e-05 0.01920791697400609 7.916640143039517e-05']
['59866.30909873802 0.0342702507357804 6.794213523241052e-05 0.015037741452521635 4.0675775770693547e-05 0.0005318513078014926 1.4386112840007614e-06 0.015037741452521637 4.0675775770693547e-05 0.01923250928325876 7.918745149635074e-05']
['59866.309130275986 0.0342494536093189 6.793433120453658e-05 0.015030491018148137 4.0649322418160526e-05 0.0005315948761414691 1.4376756880414321e-06 0.015030491018148137 4.0649322418160526e-05 0.019218962591170764 7.916716976918677e-05']
['59866.309161813944 0.034276882788410526 6.793484323446133e-05 0.015028868743389219 4.0666107790892694e-05 0.0005315374999088168 1.4382693491618686e-06 0.015028868743389219 4.0666107790892694e-05 0.019248014045021307 7.917622905993529e-05']
['59866.30919335191 0.03428953353701914 6.795560884745074e-05 0.015003012684879198 4.065306566445777e-05 0.0005306230289042073 1.4378080782973023e-06 0.015003012684879198 4.065306566445777e-05 0.019286520852139943 7.918735076858197e-05']
['59866.309224889876 0.03434076686518903 6.797125440537156e-05 0.015027476365735558 4.067835932628354e-05 0.0005314882546229877 1.4387026585880725e-06 0.015027476365735556 4.067835932628354e-05 0.019313290499453475 7.921376359521103e-05']
['59866.309256427834 0.034264720085193066 6.790313224927847e-05 0.015029013842656369 4.066911421413161e-05 0.0005315426317456181 1.4383756796328685e-06 0.015029013842656369 4.066911421413161e-05 0.019235706242536697 7.915056677134462e-05']
['59866.3092879658 0.03430167051684589 6.797469075856523e-05 0.015027729691491236 4.0642941804041054e-05 0.0005314972141888163 1.4374500199798596e-06 0.015027729691491236 4.0642941804041054e-05 0.019273940825354656 7.919853093466595e-05']
['59866.30931950376 0.034227811012863034 6.788959275685493e-05 0.015081022630988171 4.0680183785918596e-05 0.0005333820663561129 1.4387671856479372e-06 0.01508102263098817 4.0680183785918596e-05 0.019146788381874863 7.914464073800401e-05']
['59866.309351041724 0.034253889960032397 6.789306262071769e-05 0.014993508535979196 4.063248590094418e-05 0.0005302868883981369 1.4370802180548913e-06 0.014993508535979196 4.063248590094418e-05 0.019260381424053202 7.912311206285507e-05']
['59866.30938257969 0.03417952482094699 6.787058718732846e-05 0.01499763738895422 4.065142872748921e-05 0.0005304329167004202 1.437750183495063e-06 0.01499763738895422 4.065142872748921e-05 0.019181887431992766 7.911355928498533e-05']
['59866.30941411765 0.03420803430666407 6.789335793289473e-05 0.015079363880811342 4.068693578106585e-05 0.0005333234000694469 1.4390059886264747e-06 0.01507936388081134 4.068693578106585e-05 0.01912867042585273 7.915134107933192e-05']
['59866.309445655614 0.03419142637366613 6.78674256433546e-05 0.01506602704044569 4.068085973730851e-05 0.0005328517058317978 1.438791092537936e-06 0.015066027040445691 4.068085973730851e-05 0.01912539933322044 7.912597432210761e-05']
['59866.30947719358 0.03432066241319374 6.800432957187104e-05 0.015030706145483512 4.066945057096243e-05 0.0005316024847145399 1.4383875758222613e-06 0.01503070614548351 4.066945057096243e-05 0.019289956267710226 7.923757347536338e-05']
['59866.30950873154 0.0342270148610563 6.791194078817793e-05 0.014951390094235075 4.062708230357014e-05 0.0005287972532428247 1.4368891048921008e-06 0.014951390094235077 4.062708230357014e-05 0.019275624766821226 7.913653718806533e-05']
['59866.3095402695 0.03442061508443362 6.806867791831016e-05 0.015114906084547538 4.0710795626601286e-05 0.0005345804483834458 1.4398498580394465e-06 0.015114906084547538 4.0710795626601286e-05 0.01930570899988608 7.931402016098758e-05']
['59866.30957180746 0.03428012665584248 6.795784602307438e-05 0.014998277134361372 4.0642167050522085e-05 0.0005304555430657243 1.4374226186793658e-06 0.014998277134361374 4.0642167050522085e-05 0.019281849521481105 7.918367621333597e-05']
['59866.30960334543 0.03428670115235075 6.794210231125926e-05 0.015044375303406335 4.0680890011305794e-05 0.0005320859322815002 1.4387921632615616e-06 0.015044375303406335 4.0680890011305794e-05 0.01924232584894442 7.919005037620307e-05']
['59866.30963488339 0.03426990879438961 6.794447505563646e-05 0.015090217732639436 4.067997690383575e-05 0.0005337072765516755 1.4387598686910211e-06 0.015090217732639436 4.067997690383575e-05 0.019179691061750173 7.919161705308595e-05']
['59866.30966642135 0.03424211451456779 6.790445825799041e-05 0.015007378946242145 4.065462134177894e-05 0.0005307774538105949 1.437863099127418e-06 0.015007378946242145 4.065462134177894e-05 0.019234735568325643 7.914425871631238e-05']
['59866.30969795932 0.03416690189419223 6.783247041433594e-05 0.015072923919824371 4.069931580540973e-05 0.0005330956330418036 1.4394438424197916e-06 0.015072923919824373 4.069931580540973e-05 0.019093977974367855 7.910548874471502e-05']
['59866.30972949728 0.03442142568348173 6.804663622258859e-05 0.015059263057103428 4.0663942087192925e-05 0.0005326124788575951 1.4381927530620707e-06 0.015059263057103428 4.0663942087192925e-05 0.0193621626263783 7.927105958216962e-05']
['59866.30976103524 0.034282121250921636 6.793127900677675e-05 0.01501804150824505 4.064587992701064e-05 0.000531154564799214 1.4375539348229753e-06 0.015018041508245048 4.064587992701064e-05 0.01926407974267659 7.916278306462901e-05']
['59866.30979257321 0.03428952263707974 6.79070170994426e-05 0.015112903646806895 4.069567458284249e-05 0.0005345096266357442 1.4393150605152418e-06 0.015112903646806895 4.069567458284249e-05 0.019176618990272842 7.916754954586256e-05']
['59866.309824111166 0.03433300141730613 6.798501188645202e-05 0.015024962347031276 4.065755597997458e-05 0.0005313993393999184 1.4379668907218673e-06 0.015024962347031276 4.065755597997458e-05 0.019308039070274854 7.921488937987472e-05']
['59866.30985564913 0.034195779878771954 6.788968884841192e-05 0.014992453741324904 4.064591512836494e-05 0.0005302495826685419 1.4375551798162066e-06 0.014992453741324904 4.064591512836494e-05 0.01920332613744705 7.912711462296873e-05']
['59866.3098871871 0.034308408615976956 6.798197627890349e-05 0.015081398618450016 4.0690963291506795e-05 0.0005333953641923558 1.4391484326698146e-06 0.015081398618450016 4.0690963291506795e-05 0.01922700999752694 7.922943640072262e-05']
['59866.309918725055 0.0341804790131459 6.785252187820466e-05 0.015025301789828947 4.0654230136474636e-05 0.0005314113447330621 1.4378492630700972e-06 0.015025301789828947 4.0654230136474636e-05 0.019155177223316954 7.909950159907258e-05']
['59866.30995026302 0.03424255170347234 6.78972197172679e-05 0.014953760225604804 4.061207950579038e-05 0.0005288810794924401 1.4363584894639106e-06 0.014953760225604804 4.061207950579038e-05 0.019288791477867537 7.911620217831233e-05']
['59866.30998180099 0.03432554944219607 6.796471955818712e-05 0.015070514356663763 4.0684772120381384e-05 0.0005330104121778695 1.438929464783562e-06 0.015070514356663763 4.0684772120381384e-05 0.019255035085532307 7.921144984855653e-05']
['59866.310013338945 0.03419770858572871 6.787294962908209e-05 0.0150086161185504 4.0649515940689135e-05 0.0005308212098302205 1.4376825325007716e-06 0.015008616118550401 4.0649515940689135e-05 0.019189092467178308 7.911460318780759e-05']
['59866.31004487691 0.03423796778170438 6.790097146029907e-05 0.014999812154916583 4.06474241381521e-05 0.0005305098333121931 1.4376085501199402e-06 0.014999812154916584 4.06474241381521e-05 0.0192381556267878 7.913757018205183e-05']
['59866.31007641487 0.03423665975392327 6.791481505759067e-05 0.015007397810538343 4.064963448315659e-05 0.0005307781209985922 1.4376867250829186e-06 0.015007397810538343 4.064963448315659e-05 0.019229261943384923 7.915058362337563e-05']
['59866.310107952835 0.03419686518138673 6.788210285159112e-05 0.01503293082553199 4.0676551530268465e-05 0.0005316811666759874 1.4386387208832058e-06 0.01503293082553199 4.0676551530268465e-05 0.019163934355854742 7.913634899304227e-05']
['59866.3101394908 0.03421064395288579 6.789806603009169e-05 0.014955919100622961 4.0616271286830516e-05 0.0005289574340770307 1.4365067433912207e-06 0.014955919100622961 4.0616271286830516e-05 0.01925472485226283 7.91190802769604e-05']
['59866.31017102876 0.034251392729689904 6.793816290011591e-05 0.015010454630715896 4.0644742133947536e-05 0.0005308862338966812 1.4375136936251514e-06 0.015010454630715896 4.0644742133947536e-05 0.01924093809897401 7.916810621315744e-05']
['59866.310202566725 0.03418015937419892 6.788794451341732e-05 0.015023289138853509 4.06607748376817e-05 0.0005313401617660711 1.4380807345252447e-06 0.01502328913885351 4.06607748376817e-05 0.019156870235345406 7.913325230683671e-05']
['59866.31023410469 0.0343571783688395 6.800297627742453e-05 0.01499720075709913 4.064852353908927e-05 0.0005304174740075205 1.4376474334740714e-06 0.014997200757099132 4.064852353908927e-05 0.01935997761174037 7.92256729128624e-05']
['59866.31026564265 0.03431057301840663 6.795819704697489e-05 0.015080441462002872 4.068520343957629e-05 0.0005333615117079391 1.4389447195795442e-06 0.015080441462002872 4.068520343957629e-05 0.019230131556403754 7.920607504980396e-05']
['59866.310297180615 0.03434289277527147 6.798217899705275e-05 0.015072033670639062 4.0680399325365245e-05 0.000533064146917709 1.438774808796463e-06 0.015072033670639062 4.0680399325365245e-05 0.019270859104632408 7.922418538841846e-05']
['59866.31032871857 0.03427105768101236 6.792500106971884e-05 0.01503011456726376 4.065146815895957e-05 0.0005315815619150069 1.4377515780980457e-06 0.01503011456726376 4.065146815895957e-05 0.019240943113748597 7.916026549854548e-05']
['59866.31036025654 0.03416949282964418 6.786021467180361e-05 0.014999427943899859 4.064680992457993e-05 0.0005304962446271926 1.4375868267585789e-06 0.014999427943899859 4.064680992457993e-05 0.019170064885744326 7.910228752917453e-05']
['59866.310391794505 0.034311080957474885 6.794686137942843e-05 0.015044664903974159 4.0673568466484506e-05 0.0005320961748063649 1.4385332165839224e-06 0.015044664903974159 4.0673568466484506e-05 0.019266416053500726 7.919037279311839e-05']
['59866.31042333246 0.03410637141288871 6.779692418569142e-05 0.01492219469697065 4.0604309091629535e-05 0.0005277646772894547 1.436083667280895e-06 0.01492219469697065 4.0604309091629535e-05 0.019184176715918065 7.902615292325055e-05']
['59866.31045487043 0.03430818399098386 6.793323262337579e-05 0.015088357419219631 4.069483553709206e-05 0.0005336414814235727 1.4392853853422061e-06 0.015088357419219631 4.069483553709206e-05 0.019219826571764232 7.918960622488698e-05']
['59866.310486408394 0.034297007447567154 6.796894807739224e-05 0.015069263377466106 4.070064141323029e-05 0.0005329661678394224 1.4394907262058457e-06 0.015069263377466108 4.070064141323029e-05 0.019227744070101048 7.92232296374971e-05']
['59866.31051794635 0.03421121738669753 6.787165331084042e-05 0.01505197075017422 4.066729793641042e-05 0.0005323545662588559 1.4383114419490119e-06 0.015051970750174221 4.066729793641042e-05 0.01915924663652331 7.912262915623878e-05']
['59866.31054948432 0.03434793999368015 6.799345955505757e-05 0.015013255947005328 4.064722837994058e-05 0.0005309853101932649 1.4376016265894926e-06 0.015013255947005328 4.064722837994058e-05 0.019334684046674825 7.92168398589359e-05']
['59866.31058102228 0.03426423790676878 6.7928821160437e-05 0.0150115924223468 4.067107540081224e-05 0.0005309264750438516 1.438445042422768e-06 0.0150115924223468 4.067107540081224e-05 0.01925264548442198 7.917361377697237e-05']
['59866.31061256024 0.034226549474523166 6.790431224742351e-05 0.015092563939487436 4.0706122713312805e-05 0.0005337902566444255 1.4396845875397794e-06 0.015092563939487436 4.0706122713312805e-05 0.01913398553503573 7.917060090808248e-05']
['59866.31064409821 0.03423629973971366 6.790532552451905e-05 0.01506419761936219 4.068053145223755e-05 0.00053278700329659 1.43877948182865e-06 0.015064197619362191 4.068053145223755e-05 0.019172102120351472 7.915831525384675e-05']
['59866.31067563617 0.03423273203425545 6.790547305804461e-05 0.014996588854456256 4.0635449901755946e-05 0.0005303958323785639 1.4371850481394514e-06 0.014996588854456257 4.0635449901755946e-05 0.01923614317979919 7.9135283280942e-05']
['59866.31070717413 0.03428106866792554 6.793640835122386e-05 0.014995195951013651 4.0652481420684414e-05 0.0005303465684967549 1.4377874149007468e-06 0.014995195951013651 4.0652481420684414e-05 0.019285872716911887 7.917057423893886e-05']
['59866.3107387121 0.03437597542137957 6.799889975496028e-05 0.015114796678323092 4.07001183673231e-05 0.0005345765789297956 1.439472227241047e-06 0.015114796678323092 4.07001183673231e-05 0.01926117874305648 7.924865931357608e-05']
['59866.31077025006 0.03430773709056545 6.793694892432541e-05 0.01508252210355596 4.067158993842305e-05 0.0005334350993497117 1.4384632404681385e-06 0.015082522103555962 4.067158993842305e-05 0.019225214987009485 7.918085158209423e-05']
['59866.31080178802 0.03420286061715005 6.787209196656898e-05 0.014972213035923738 4.0626431873294864e-05 0.0005295337141538169 1.4368661006268906e-06 0.014972213035923738 4.0626431873294864e-05 0.01923064758122631 7.910200904322132e-05']
['59866.31083332598 0.034160632864285646 6.78535889474667e-05 0.015031742673338653 4.065902534395376e-05 0.0005316391443882729 1.4380188588419758e-06 0.015031742673338653 4.065902534395376e-05 0.019128890190946993 7.910288158450393e-05']
['59866.310864863946 0.034290350268773175 6.79420279503482e-05 0.014997752252715317 4.066233322509178e-05 0.0005304369791749448 1.4381358512051482e-06 0.014997752252715319 4.066233322509178e-05 0.019292598016057858 7.91804553239895e-05']
['59866.31089640191 0.03411002853576065 6.781477811232906e-05 0.015002848760652 4.065260857491115e-05 0.0005306172312706404 1.4377919120615735e-06 0.015002848760652 4.065260857491115e-05 0.019107179775108653 7.906629316193699e-05']
['59866.31092793987 0.03420037345986531 6.791187681778099e-05 0.015009475488977972 4.0648641958893204e-05 0.0005308516038416638 1.4376516217178839e-06 0.01500947548897797 4.0648641958893204e-05 0.01919089797088734 7.914755274811566e-05']
['59866.310959477836 0.03425450678682151 6.790287793293795e-05 0.015048094265695491 4.0674701186196654e-05 0.0005322174636662761 1.4385732783486613e-06 0.015048094265695491 4.0674701186196654e-05 0.019206412521126016 7.915321944281142e-05']
['59866.3109910158 0.03434382086140579 6.797247060075175e-05 0.01511292694902556 4.072395976582158e-05 0.000534510450783141 1.4403154442235488e-06 0.015112926949025562 4.072395976582158e-05 0.01923089391238023 7.923823356548476e-05']
['59866.31102255376 0.03428634895927204 6.792069142898651e-05 0.015133913136126097 4.072030544514563e-05 0.0005352526853195192 1.4401861990681663e-06 0.015133913136126097 4.072030544514563e-05 0.019152435823145943 7.919194150756475e-05']
['59866.311054091726 0.034217184697153145 6.792024835803175e-05 0.014957112890331954 4.0630145192488236e-05 0.0005289996557510748 1.43699743242798e-06 0.014957112890331956 4.0630145192488236e-05 0.01926007180682119 7.914523886741001e-05']
['59866.311085629684 0.03420670353141586 6.787863090343907e-05 0.014975822493801085 4.0630451446307876e-05 0.0005296613726122751 1.4370082639411438e-06 0.014975822493801085 4.0630451446307876e-05 0.019230881037614778 7.910968409781508e-05']
['59866.31111716765 0.034351364763413134 6.800331885687811e-05 0.015120709393491239 4.071448484573332e-05 0.0005347856984511524 1.4399803374752271e-06 0.015120709393491239 4.071448484573332e-05 0.019230655369921894 7.925983000110259e-05']
['59866.311148705616 0.034241347564162826 6.795309618756549e-05 0.015054857958273717 4.067340489618755e-05 0.0005324566803568047 1.4385274314680771e-06 0.015054857958273717 4.067340489618755e-05 0.01918648960588911 7.919563843625317e-05']
['59866.311180243574 0.03434778427346756 6.796320560625301e-05 0.015044660445900398 4.065344752738244e-05 0.0005320960171342592 1.4378215839355346e-06 0.015044660445900396 4.065344752738244e-05 0.019303123827567166 7.919406614222721e-05']
['59866.31121178154 0.03424514560718201 6.789411321317608e-05 0.01508738102257548 4.0688736153733757e-05 0.0005336069484563872 1.4390696637841423e-06 0.01508738102257548 4.0688736153733757e-05 0.01915776458460653 7.915291440491456e-05']
['59866.311243319506 0.03429811003902693 6.79478396808125e-05 0.01496749669122761 4.062722844279568e-05 0.0005293669075823249 1.4368942735099063e-06 0.01496749669122761 4.062722844279568e-05 0.019330613347799317 7.916742138173065e-05']
['59866.311274857464 0.03429352677001952 6.793476743102962e-05 0.015085855905815536 4.067945651187012e-05 0.0005335530084850233 1.4387414635902046e-06 0.015085855905815536 4.067945651187012e-05 0.019207670864203982 7.918302095783675e-05']
['59866.31130639543 0.034326044148175035 6.79585937390763e-05 0.015061439892721983 4.0671606123066164e-05 0.0005326894686684821 1.438463812882795e-06 0.015061439892721983 4.0671606123066164e-05 0.019264604255453052 7.91994318642669e-05']
['59866.31133793339 0.03414727094275733 6.785635446843919e-05 0.014977194081940358 4.0629918172560145e-05 0.0005297098826194421 1.4369894032404832e-06 0.014977194081940358 4.0629918172560145e-05 0.019170076860816974 7.909029708159782e-05']
['59866.311369471354 0.03426663842954432 6.792654273808261e-05 0.0149873967265763 4.0639125471286174e-05 0.0005300707273586465 1.4373150448193211e-06 0.0149873967265763 4.0639125471286174e-05 0.01927924170296802 7.915525078868429e-05']
['59866.31140100932 0.03434517052974667 6.799013191783263e-05 0.014933308118055712 4.060800245209894e-05 0.0005281577341561991 1.4362142931865228e-06 0.014933308118055714 4.060800245209894e-05 0.019411862411690958 7.919386277581084e-05']
['59866.31143254728 0.034165579937406265 6.786765065241803e-05 0.01501545863095138 4.065473857417483e-05 0.0005310632142017279 1.4378672453752615e-06 0.015015458630951379 4.065473857417483e-05 0.01915012130645489 7.911274090570466e-05']
['59866.311464085244 0.0343612417187015 6.799703166265615e-05 0.014996604587604887 4.064057183471556e-05 0.0005303963888248694 1.4373661994613868e-06 0.014996604587604885 4.064057183471556e-05 0.019364637131096617 7.921649066946186e-05']
['59866.31149562321 0.03433631192504106 6.798926322040316e-05 0.015051975616870649 4.068864104289434e-05 0.0005323547383830321 1.4390662999263124e-06 0.015051975616870649 4.068864104289434e-05 0.019284336308170412 7.923449642151309e-05']
['59866.31152716117 0.0342913088761743 6.796147997853216e-05 0.015127459843768136 4.071799889413886e-05 0.0005350244467910777 1.440104621513895e-06 0.015127459843768136 4.071799889413886e-05 0.019163849032406165 7.92257419959922e-05']
['59866.31155869913 0.03427255712326673 6.789868636249247e-05 0.015074305360816675 4.0671328817549595e-05 0.0005331444915223624 1.4384540052064154e-06 0.015074305360816673 4.0671328817549595e-05 0.01919825176245006 7.914789067017113e-05']
['59866.31159023709 0.034236509625683996 6.789981637098865e-05 0.015091399475867776 4.068251222586181e-05 0.0005337490721686212 1.4388495373649718e-06 0.015091399475867776 4.068251222586181e-05 0.019145110149816222 7.915460734677024e-05']
['59866.31162177506 0.034271939656231834 6.792970790507376e-05 0.014945415177960199 4.062061934063226e-05 0.0005285859338073343 1.4366605243368602e-06 0.0149454151779602 4.062061934063226e-05 0.019326524478271635 7.914846765216108e-05']
['59866.31165331302 0.03425338717886711 6.793954704421008e-05 0.014955028473196316 4.063856793686526e-05 0.0005289259345753854 1.4372953260728696e-06 0.014955028473196316 4.063856793686526e-05 0.019298358705670794 7.916612442536042e-05']
['59866.31168485098 0.03423768834681118 6.793108482237478e-05 0.014972218121022595 4.0636588729552646e-05 0.000529533894002399 1.4372253259334905e-06 0.014972218121022597 4.0636588729552646e-05 0.019265470225788582 7.915784628651465e-05']
['59866.31171638895 0.034205036639942565 6.787844578507123e-05 0.015059364818993644 4.067363272555297e-05 0.0005326160779482276 1.4385354892835633e-06 0.015059364818993644 4.067363272555297e-05 0.019145671820948923 7.913171172981176e-05']
['59866.31174792691 0.034230557980200256 6.7916095394761e-05 0.015115038264408144 4.0703440217065864e-05 0.0005345851232897108 1.4395897136425516e-06 0.015115038264408142 4.0703440217065864e-05 0.019115519715792114 7.917932848398331e-05']
['59866.31177946487 0.03429061023552659 6.793258800640798e-05 0.014982518621170763 4.063867787117757e-05 0.0005298981996723766 1.4372992142038072e-06 0.014982518621170761 4.063867787117757e-05 0.01930809161435583 7.916020876908868e-05']
['59866.31181100284 0.034215953474567753 6.788120967349009e-05 0.015005736633262873 4.065234269761215e-05 0.0005307193688708715 1.4377825085757087e-06 0.015005736633262873 4.065234269761215e-05 0.019210216841304882 7.912314195948252e-05']
['59866.311842540796 0.034300718408660086 6.797588711683649e-05 0.01504288828089544 4.0680333059884404e-05 0.0005320333396185896 1.4387724651345002e-06 0.01504288828089544 4.0680333059884404e-05 0.019257830127764646 7.921875237078668e-05']
['59866.31187407876 0.034294054581615996 6.792668909871768e-05 0.015107027673632693 4.0688826070336966e-05 0.0005343018065965999 1.4390728439334462e-06 0.015107027673632693 4.0688826070336966e-05 0.019187026907983303 7.918090463549898e-05']
['59866.31190561673 0.034373440812876806 6.800878066034286e-05 0.015102465908836515 4.070173588928274e-05 0.0005341404671707034 1.4395294353778109e-06 0.015102465908836517 4.070173588928274e-05 0.01927097490404029 7.925796837736602e-05']
['59866.311937154685 0.034189695581415824 6.788001569407459e-05 0.015029286520696863 4.064963724636711e-05 0.0005315522757585109 1.4376868228114991e-06 0.015029286520696863 4.064963724636711e-05 0.01916040906071896 7.912072761855169e-05']
['59866.31196869265 0.034259905724893576 6.789232273190054e-05 0.015098591332313978 4.068906055754492e-05 0.0005340034320582701 1.4390811372219434e-06 0.01509859133231398 4.068906055754492e-05 0.019161314392579596 7.915154537334124e-05']
['59866.31200023062 0.03426570889430332 6.790594332707911e-05 0.015018212495677277 4.06657290820397e-05 0.0005311606122425575 1.4382559550761026e-06 0.015018212495677277 4.06657290820397e-05 0.01924749639862604 7.915123916221609e-05']
['59866.312031768575 0.034259925240558244 6.791554531878743e-05 0.01510815650446137 4.069011908533129e-05 0.0005343417308202217 1.439118574984077e-06 0.015108156504461371 4.069011908533129e-05 0.01915176873609687 7.917200949279177e-05']
['59866.31206330654 0.03428362489276407 6.793583124824235e-05 0.015070469748959573 4.067569402855322e-05 0.0005330088345030647 1.438608392963941e-06 0.015070469748959573 4.067569402855322e-05 0.0192131551438045 7.918200080885896e-05']
['59866.3120948445 0.03418314550096107 6.788070100393447e-05 0.014955881726076028 4.062167892174432e-05 0.0005289561122228328 1.4366979993527693e-06 0.014955881726076028 4.062167892174432e-05 0.01922726377488504 7.910695523913707e-05']
['59866.312126382465 0.03432012305405291 6.79863602134787e-05 0.015074301581430487 4.0691180310724394e-05 0.0005331443578539194 1.4391561081545318e-06 0.015074301581430487 4.0691180310724394e-05 0.019245821472622424 7.923330947371039e-05']
['59866.31215792043 0.03427866320467856 6.794210718881748e-05 0.015067797013701586 4.069563473845753e-05 0.0005329143058302014 1.4393136513083928e-06 0.015067797013701586 4.069563473845753e-05 0.019210866190976974 7.91976301162018e-05']
['59866.31218945839 0.034444808749831045 6.806882576967112e-05 0.015079346852051997 4.0676411608893326e-05 0.0005333227978002859 1.438633772176873e-06 0.015079346852051997 4.0676411608893326e-05 0.019365461897779046 7.929650372518295e-05']
['59866.312220996355 0.03426170509068659 6.795930170706747e-05 0.015092067768784339 4.069225929811614e-05 0.0005337727081955332 1.439194269527183e-06 0.015092067768784339 4.069225929811614e-05 0.019169637321902248 7.921064736067584e-05']
['59866.31225253432 0.03421104047234807 6.788100109097285e-05 0.015059800722049387 4.0662063978426735e-05 0.0005326314948651233 1.4381263285523365e-06 0.015059800722049387 4.0662063978426735e-05 0.01915123975029868 7.912795811910179e-05']
['59866.31228407228 0.034307724464840386 6.79785249338126e-05 0.015064956373349947 4.069226445885818e-05 0.0005328138387294216 1.4391944520510955e-06 0.015064956373349947 4.069226445885818e-05 0.01924276809149044 7.922714332201202e-05']
['59866.312315610245 0.03420925135666877 6.787873405656619e-05 0.014986339008206936 4.063697959436771e-05 0.0005300333182237837 1.4372391499484677e-06 0.014986339008206938 4.063697959436771e-05 0.01922291234846183 7.911312563459427e-05']
['59866.3123471482 0.03434789009217143 6.797375595651748e-05 0.015073668936682114 4.068103153618868e-05 0.0005331219826230472 1.4387971686803798e-06 0.015073668936682114 4.068103153618868e-05 0.019274221155489317 7.92172823674517e-05']
['59866.31237868617 0.03419728074551871 6.789362856420596e-05 0.015039971018966982 4.0677865807506395e-05 0.0005319301625838767 1.4386852039318746e-06 0.015039971018966982 4.0677865807506395e-05 0.019157309726551733 7.914691128697228e-05']
['59866.312410224135 0.03428905787712942 6.792967187283892e-05 0.01496266747828522 4.0610703722718166e-05 0.0005291961091132083 1.4363098310913405e-06 0.01496266747828522 4.0610703722718166e-05 0.019326390398844203 7.914334828402168e-05']
['59866.31244176209 0.03425557262461909 6.793823308446045e-05 0.015004579421003474 4.0650150600922465e-05 0.0005306784408594737 1.4377049790148423e-06 0.015004579421003474 4.0650150600922465e-05 0.01925099320361562 7.917094327160788e-05']
['59866.31247330006 0.03423591151943884 6.787475870603916e-05 0.014961801321013523 4.0620032721873714e-05 0.0005291654750662559 1.4366397769423862e-06 0.014961801321013522 4.0620032721873714e-05 0.01927411019842532 7.910101091471038e-05']
['59866.312504838024 0.03420523750605619 6.788971046338288e-05 0.01495655920522737 4.0640638298254743e-05 0.000528980073146339 1.4373685501282302e-06 0.01495655920522737 4.0640638298254743e-05 0.01924867830082882 7.912442270305376e-05']
['59866.31253637598 0.03430829179758991 6.798572621566901e-05 0.015040687405349163 4.0657831352146684e-05 0.0005319554995691851 1.4379766300201742e-06 0.015040687405349164 4.0657831352146684e-05 0.019267604392240744 7.921564377906366e-05']
['59866.31256791395 0.034252935279912564 6.790543296691716e-05 0.015016206816351406 4.0650829632613306e-05 0.0005310896758472308 1.4377289948482007e-06 0.015016206816351404 4.0650829632613306e-05 0.01923672846356116 7.914314737388343e-05']
['59866.31259945191 0.03425341118471189 6.789985946392208e-05 0.014995092917347914 4.064557706793309e-05 0.0005303429244262645 1.4375432233742528e-06 0.014995092917347916 4.064557706793309e-05 0.019258318267363975 7.913566737196102e-05']
['59866.31263098987 0.03418923615029659 6.787743215952904e-05 0.01495776157716902 4.0614159731503185e-05 0.000529022598354772 1.4364320623983416e-06 0.014957761577169017 4.0614159731503185e-05 0.019231474573127575 7.91002892995185e-05']
['59866.31266252784 0.034284633849591975 6.792418859319076e-05 0.015068803069792148 4.0681615694912235e-05 0.0005329498877857216 1.438817829068914e-06 0.015068803069792148 4.0681615694912235e-05 0.019215830779799825 7.917505447798488e-05']
['59866.3126940658 0.03432224805633418 6.797790118466653e-05 0.01512746334894333 4.072023045089936e-05 0.0005350245707612907 1.4401835466892782e-06 0.01512746334894333 4.072023045089936e-05 0.01919478470739085 7.924097562149672e-05']
['59866.31272560376 0.03433579199598694 6.795606682322204e-05 0.015001777330744183 4.0661365361475004e-05 0.0005305793371893058 1.4381016200320708e-06 0.015001777330744183 4.0661365361475004e-05 0.01933401466524276 7.919200496982999e-05']
['59866.31275714173 0.03420793170614983 6.786623780606857e-05 0.015061111365412006 4.070083196431784e-05 0.0005326778493917435 1.4394974655719556e-06 0.015061111365412005 4.070083196431784e-05 0.019146820340737825 7.913522576285158e-05']
['59866.31278867969 0.03412627674889031 6.782305019017112e-05 0.015030509051040206 4.066718725100365e-05 0.0005315955139245604 1.4383075272535417e-06 0.015030509051040206 4.066718725100365e-05 0.019095767697850104 7.908088426419286e-05']
['59866.31282021765 0.03442165807655387 6.806553733383092e-05 0.01510909940006237 4.069202788221396e-05 0.0005343750789303815 1.439186084863907e-06 0.01510909940006237 4.069202788221396e-05 0.0193125586764915 7.930169295614066e-05']
['59866.31285175561 0.03418898727953089 6.787456005051511e-05 0.015034917555174176 4.066256825245662e-05 0.000531751432863352 1.4381441635977876e-06 0.015034917555174176 4.066256825245662e-05 0.019154069724356713 7.912269180795529e-05']
['59866.312883293576 0.034234815132126416 6.791236319702345e-05 0.01501274678512146 4.065436246137776e-05 0.0005309673022753424 1.4378539431061918e-06 0.01501274678512146 4.065436246137776e-05 0.019222068347004954 7.915090815742739e-05']
['59866.31291483154 0.03419711476628275 6.787340735018991e-05 0.014959897219833788 4.0606924814565807e-05 0.0005290981312629444 1.4361761795553542e-06 0.014959897219833788 4.0606924814565807e-05 0.019237217546448963 7.909312086534842e-05']
['59866.3129463695 0.034191935955807155 6.785386712702507e-05 0.015033644092388675 4.066761043024748e-05 0.0005317063933306507 1.438322494157646e-06 0.015033644092388674 4.066761043024748e-05 0.019158291863418483 7.910753328348917e-05']
['59866.312977907466 0.034229520791893876 6.787614092028164e-05 0.0150553226014745 4.0702338360125e-05 0.0005324731137483999 1.4395507434250584e-06 0.015055322601474498 4.0702338360125e-05 0.019174198190419378 7.914449351794498e-05']
['59866.31300944543 0.03419434923199794 6.786106364226018e-05 0.01498361160136549 4.0639486375695925e-05 0.0005299368559391972 1.4373278092017202e-06 0.01498361160136549 4.0639486375695925e-05 0.01921073763063245 7.909925291391355e-05']
['59866.31304098339 0.034274201064240235 6.792042269380548e-05 0.01507414761142359 4.067670002289446e-05 0.0005331389122788781 1.4386439727355259e-06 0.01507414761142359 4.067670002289446e-05 0.019200053452816647 7.916929798638958e-05']
['59866.313072521356 0.034259533896191324 6.791126700231195e-05 0.015031458098552192 4.06695089660197e-05 0.000531629079614063 1.4383896411249317e-06 0.015031458098552192 4.06695089660197e-05 0.019228075797639133 7.915774848614923e-05']
['59866.313104059314 0.03425954386826173 6.794939085837028e-05 0.01500715413553356 4.065376324073595e-05 0.0005307695027582546 1.4378327500112704e-06 0.01500715413553356 4.065376324073595e-05 0.01925238973272817 7.918237293525238e-05']
['59866.31313559728 0.03420392084982123 6.788875994309827e-05 0.01506585155799631 4.069217997535038e-05 0.0005328454994097435 1.439191464058234e-06 0.01506585155799631 4.069217997535038e-05 0.019138069291824922 7.915009310012169e-05']
['59866.313167135246 0.03414624289628863 6.781888213968008e-05 0.015007404323802542 4.065663208250063e-05 0.0005307783513581906 1.4379342145330032e-06 0.01500740432380254 4.065663208250063e-05 0.019138838572486085 7.907188189848295e-05']
['59866.313198673204 0.03427753026663739 6.790675164674117e-05 0.015051915828284457 4.067360359794363e-05 0.0005323526237943581 1.4385344591051172e-06 0.015051915828284457 4.067360359794363e-05 0.019225614438352936 7.91559786046186e-05']
['59866.31323021117 0.034268072674030196 6.791963876141178e-05 0.015002673302051801 4.0627196352791484e-05 0.0005306110256920782 1.4368931385581749e-06 0.0150026733020518 4.0627196352791484e-05 0.019265399371978395 7.914320193780981e-05']
['59866.313261749136 0.03425825342260572 6.792935504164388e-05 0.01504542688923037 4.068462683865973e-05 0.0005321231245219403 1.438924326493753e-06 0.015045426889230369 4.068462683865973e-05 0.019212826533375346 7.918103394989674e-05']
['59866.313293287094 0.034270525068004404 6.792644310410656e-05 0.015066058170187262 4.0677006211175756e-05 0.0005328528068211864 1.4386548019307447e-06 0.015066058170187262 4.0677006211175756e-05 0.019204466897817143 7.91746203469234e-05']
['59866.31332482506 0.034245294849007395 6.794388540790813e-05 0.015042126165291178 4.067742218919742e-05 0.0005320063852928949 1.4386695141437146e-06 0.015042126165291178 4.067742218919742e-05 0.019203168683716215 7.91897988397569e-05']
['59866.31335636302 0.034302882789052094 6.793638965186028e-05 0.015113027007450465 4.06943671056773e-05 0.0005345139896260125 1.4392688179699484e-06 0.015113027007450465 4.06943671056773e-05 0.01918985578160163 7.91920738019975e-05']
['59866.313387900984 0.03427340047449575 6.79294061063728e-05 0.015067033645930178 4.067644487634687e-05 0.0005328873072181533 1.4386349487723564e-06 0.015067033645930176 4.067644487634687e-05 0.019206366828565573 7.917687403366595e-05']
['59866.31341943895 0.03428895989146894 6.793117385347034e-05 0.01502305387029225 4.065989741775283e-05 0.0005313318408428536 1.4380497021432787e-06 0.01502305387029225 4.065989741775283e-05 0.01926590602117669 7.916989098851025e-05']
['59866.31345097691 0.03421240231719377 6.788993373110422e-05 0.015015019999796151 4.0655630736382695e-05 0.0005310477007980504 1.4378987991586887e-06 0.015015019999796151 4.0655630736382695e-05 0.019197382317397614 7.913231585507167e-05']
['59866.31348251487 0.03440336046932033 6.805547186325672e-05 0.015041959457554063 4.0664326083470314e-05 0.0005320004892128031 1.4382063341522207e-06 0.015041959457554065 4.0664326083470314e-05 0.019361401011766262 7.927884122736237e-05']
['59866.31351405283 0.03432140770967654 6.800523936463812e-05 0.015011154142192869 4.063575220726499e-05 0.0005309109740543056 1.4371957400096932e-06 0.01501115414219287 4.063575220726499e-05 0.019310253567483667 7.922106372986902e-05']
['59866.3135455908 0.03424899956309633 6.791656130845826e-05 0.014986874559086495 4.064972101525547e-05 0.0005300522594615078 1.4376897855298681e-06 0.014986874559086493 4.064972101525547e-05 0.019262125004009836 7.915212643121896e-05']
['59866.31357712876 0.034187003659733886 6.787979588107608e-05 0.01503594458068723 4.067687446778967e-05 0.0005317877564604819 1.438650142461608e-06 0.01503594458068723 4.067687446778967e-05 0.019151059079046656 7.91345361098735e-05']
['59866.31360866672 0.03437561356473168 6.802560905991223e-05 0.015080063956371431 4.06758391838969e-05 0.0005333481601774305 1.438613526784044e-06 0.01508006395637143 4.06758391838969e-05 0.019295549608360246 7.92591154460246e-05']
['59866.31364020469 0.03416885810923349 6.787740861337831e-05 0.015033601086366158 4.0652145634861006e-05 0.0005317048723037471 1.43777553890661e-06 0.015033601086366158 4.0652145634861006e-05 0.01913525702286733 7.911977973165416e-05']
['59866.31367174265 0.034273267438479804 6.791437405182058e-05 0.015073086044415292 4.067745890973925e-05 0.0005331013670262573 1.4386708128672136e-06 0.015073086044415292 4.067745890973925e-05 0.019200181394064514 7.916449877441355e-05']
['59866.31370328061 0.03430933073044863 6.795098775062418e-05 0.015023925504435619 4.06657004805119e-05 0.0005313626685945168 1.4382549435039848e-06 0.015023925504435617 4.06657004805119e-05 0.019285405226013012 7.918987265967905e-05']
['59866.31373481858 0.03431770247272748 6.796241944926822e-05 0.015062555955291098 4.069942379836914e-05 0.0005327289413072987 1.4394476618894159e-06 0.0150625559552911 4.069942379836914e-05 0.01925514651743638 7.921700294076726e-05']
['59866.313766356536 0.034167712067280386 6.785183774903469e-05 0.015002102652341838 4.066876470112039e-05 0.0005305908430871638 1.4383633181387772e-06 0.015002102652341837 4.066876470112039e-05 0.01916560941493855 7.910638601425567e-05']
['59866.3137978945 0.034220636500501105 6.788155430047954e-05 0.014989158524378546 4.065769438924347e-05 0.0005301330382095256 1.4379717859483816e-06 0.014989158524378545 4.065769438924347e-05 0.01923147797612256 7.912618736738219e-05']
['59866.31382943247 0.0343831246796287 6.800715175143707e-05 0.014994725013386221 4.062058698854495e-05 0.0005303299124853563 1.4366593801158347e-06 0.01499472501338622 4.062058698854495e-05 0.019388399666242482 7.921492773863357e-05']
['59866.313860970426 0.03419139210694507 6.789049522290969e-05 0.01506067240103596 4.067864922976333e-05 0.0005326623242027904 1.4387129118262567e-06 0.015060672401035959 4.067864922976333e-05 0.019130719705909113 7.914462612692063e-05']
['59866.31389250839 0.03416413110766105 6.785137214262182e-05 0.01505885137479149 4.068450349862078e-05 0.0005325979185742776 1.4389199642322237e-06 0.01505885137479149 4.068450349862078e-05 0.01910527973286956 7.911407919306046e-05']
['59866.31392404636 0.034367330574861715 6.8009276863203e-05 0.015007051434276822 4.063946480203168e-05 0.0005307658704443275 1.43732704618943e-06 0.01500705143427682 4.063946480203168e-05 0.019360279140584895 7.92264339652579e-05']
['59866.313955584315 0.034238311206899893 6.789117838718067e-05 0.015078906714480728 4.068424560121974e-05 0.0005333072311180398 1.4389108429775159e-06 0.015078906714480728 4.068424560121974e-05 0.019159404492419166 7.91480886878537e-05']
['59866.31398712228 0.034320704483947674 6.796510677154991e-05 0.014997756158954984 4.063558756029556e-05 0.0005304371173299119 1.437189916814349e-06 0.014997756158954984 4.063558756029556e-05 0.019322948324992692 7.918653114538246e-05']
['59866.31401866024 0.034204256347273095 6.788404081950158e-05 0.014978412008428617 4.062829900730329e-05 0.0005297529579574263 1.4369321369839696e-06 0.014978412008428615 4.062829900730329e-05 0.01922584433884448 7.911322062848027e-05']
['59866.314050198205 0.03437101144960292 6.800954554480522e-05 0.015098008993911376 4.070156871175916e-05 0.0005339828360504198 1.4395235226824216e-06 0.015098008993911375 4.070156871175916e-05 0.019273002455691544 7.925853885108523e-05']
['59866.31408173617 0.034133601267781206 6.783879830777104e-05 0.014999532445967082 4.065013825820868e-05 0.000530499940631762 1.43770454248064e-06 0.014999532445967084 4.065013825820868e-05 0.01913406882181412 7.908562635684136e-05']
['59866.31411327413 0.03428403428126951 6.793857442533229e-05 0.015091195847473588 4.069636341278388e-05 0.0005337418702874014 1.4393394228908245e-06 0.01509119584747359 4.069636341278388e-05 0.019192838433795923 7.919497389337148e-05']
['59866.314144812095 0.03428870471384531 6.793682998641916e-05 0.015007564479143516 4.063937058877464e-05 0.0005307840156946747 1.437323714077083e-06 0.015007564479143516 4.063937058877464e-05 0.019281140234701795 7.916420472950753e-05']
['59866.31417635006 0.03424725631202158 6.79285667095684e-05 0.01507845643799025 4.0709996990532164e-05 0.0005332913058448803 1.4398216120665283e-06 0.015078456437990252 4.0709996990532164e-05 0.019168799874031327 7.919339637990924e-05']
['59866.31420788802 0.03432489543851489 6.796657191719059e-05 0.014966471277729541 4.062923516469956e-05 0.0005293306409985626 1.4369652467788871e-06 0.014966471277729543 4.062923516469956e-05 0.01935842416078535 7.918452909655458e-05']
['59866.314239425985 0.03430218933031448 6.792710434339841e-05 0.015007977822737684 4.0673571390528176e-05 0.0005307986347338319 1.4385333200008121e-06 0.015007977822737684 4.0673571390528176e-05 0.0192942115075768 7.917342302906529e-05']
['59866.31427096394 0.03419138992298433 6.786873041228015e-05 0.015097435645083512 4.069536666080887e-05 0.0005339625579837375 1.4393041700010779e-06 0.015097435645083512 4.069536666080887e-05 0.019093954277900817 7.913455272782196e-05']
['59866.31430250191 0.034225015549543686 6.787345815338153e-05 0.015094853000676261 4.0703708222296075e-05 0.0005338712156229236 1.4395991923885876e-06 0.015094853000676263 4.0703708222296075e-05 0.019130162548867423 7.914289724760301e-05']
['59866.314334039875 0.03433343891186205 6.797022510011917e-05 0.015112310171110983 4.069590973285808e-05 0.0005344886367267199 1.4393233772457638e-06 0.015112310171110983 4.069590973285808e-05 0.01922112874075107 7.922189450616416e-05']
['59866.31436557783 0.03423880097396891 6.792366585045955e-05 0.015103080667295982 4.069045641977712e-05 0.0005341622098035104 1.4391305057495277e-06 0.015103080667295984 4.069045641977712e-05 0.01913572030667293 7.917914893590778e-05']
['59866.3143971158 0.034293733580122256 6.794921333216928e-05 0.015128565897783487 4.070981059555438e-05 0.0005350635654497154 1.4398150196927325e-06 0.015128565897783485 4.070981059555438e-05 0.019165167682338773 7.921101104762244e-05']
['59866.314428653764 0.03433537291556493 6.800432076257131e-05 0.015105932749459832 4.0701620904349605e-05 0.0005342630815756172 1.439525368617702e-06 0.015105932749459832 4.0701620904349605e-05 0.019229440166105102 7.925408246027504e-05']
['59866.31446019172 0.034305685166381106 6.793240718399713e-05 0.01513149691283881 4.072399447835211e-05 0.000535167228901789 1.4403166719281755e-06 0.01513149691283881 4.072399447835211e-05 0.019174188253542297 7.920388672334988e-05']
['59866.31449172969 0.03428263266283594 6.794063876355734e-05 0.015093107227003692 4.069166629372796e-05 0.0005338094715096993 1.4391732962872598e-06 0.015093107227003693 4.069166629372796e-05 0.019189525435832244 7.919433124511063e-05']
['59866.31452326765 0.03430587176994927 6.796142899584318e-05 0.015080137701874594 4.070421056850433e-05 0.0005333507683910659 1.439616959251296e-06 0.015080137701874594 4.070421056850433e-05 0.01922573406807468 7.921861264350805e-05']
['59866.31455480561 0.03433045777759892 6.797809466579108e-05 0.0151103077685776 4.069429202783841e-05 0.0005344178162242205 1.4392661626345761e-06 0.015110307768577603 4.069429202783841e-05 0.019220150009021317 7.922781555765782e-05']
['59866.31458634358 0.034239698257261426 6.792608784534359e-05 0.014992222674937293 4.063458880262455e-05 0.000530241410366815 1.4371545929876171e-06 0.014992222674937293 4.063458880262455e-05 0.019247475582324133 7.915253133748607e-05']
['59866.31461788154 0.034411480006319856 6.802691581849943e-05 0.015140712438959385 4.0711094717158586e-05 0.000535493161465185 1.4398604362040301e-06 0.015140712438959383 4.0711094717158586e-05 0.019270767567360472 7.927833568413672e-05']
['59866.3146494195 0.03417682465878606 6.785420297243529e-05 0.01496918389741257 4.062704085426087e-05 0.0005294265802944031 1.4368876389226656e-06 0.01496918389741257 4.062704085426087e-05 0.01920764076137349 7.908697307141188e-05']
['59866.31468095747 0.034245970076933946 6.791262442781197e-05 0.01499192833763964 4.064573189278099e-05 0.0005302310003144022 1.4375486991831096e-06 0.014991928337639638 4.064573189278099e-05 0.019254041739294306 7.914669972761263e-05']
['59866.31471249543 0.03428768207453328 6.795766937792742e-05 0.015013914105099486 4.065070753228764e-05 0.0005310085877741586 1.4377246764325602e-06 0.015013914105099486 4.065070753228764e-05 0.019273767969433794 7.91879084845362e-05']
['59866.31474403339 0.034240363432534206 6.792270842728536e-05 0.015059186787302468 4.0673006599843036e-05 0.0005326097813651881 1.4385133446165116e-06 0.015059186787302468 4.0673006599843036e-05 0.019181176645231737 7.916936140937918e-05']
['59866.31477557135 0.034228155140267925 6.790762909926618e-05 0.014991229278048742 4.06415595300502e-05 0.0005302062761389784 1.4374011320380037e-06 0.014991229278048742 4.06415595300502e-05 0.019236925862219183 7.91402707281073e-05']
['59866.31480710932 0.03427546835210011 6.794914677644702e-05 0.01498746472950762 4.063990808520496e-05 0.0005300731324703497 1.4373427241245896e-06 0.01498746472950762 4.063990808520496e-05 0.01928800362259249 7.917505084823784e-05']
['59866.31483864728 0.034164592082049264 6.785002404489292e-05 0.014929307461786143 4.0610618441197924e-05 0.0005280162398848849 1.4363068148745624e-06 0.014929307461786143 4.0610618441197924e-05 0.01923528462026312 7.907495237475083e-05']
['59866.31487018524 0.03421917719928163 6.788028539387491e-05 0.014968640504302968 4.0635125673565846e-05 0.0005294073616945286 1.437173580912975e-06 0.01496864050430297 4.0635125673565846e-05 0.01925053669497866 7.911350443293734e-05']
['59866.314901723206 0.034187612135243836 6.789790750621176e-05 0.015037268410936874 4.067116958053278e-05 0.0005318345773778253 1.4384483733490044e-06 0.015037268410936874 4.067116958053278e-05 0.019150343724306962 7.914714068600673e-05']
['59866.31493326117 0.034225815137774736 6.789118395256082e-05 0.014952544792533872 4.061846199951227e-05 0.0005288380923410543 1.4365842240028199e-06 0.014952544792533872 4.061846199951227e-05 0.019273270345240866 7.911429904692497e-05']
['59866.31496479913 0.0342823034925802 6.793780226556107e-05 0.01500717707726467 4.0657100084608496e-05 0.0005307703141560121 1.4379507667216352e-06 0.015007177077264669 4.0657100084608496e-05 0.01927512641531553 7.917414201596596e-05']
['59866.314996337096 0.03413260996910793 6.784872761766579e-05 0.014919196196475554 4.060732788819631e-05 0.0005276586270281973 1.4361904353688486e-06 0.014919196196475552 4.060732788819631e-05 0.019213413772632373 7.907215007545761e-05']
['59866.315027875055 0.034252866848788324 6.790384573519355e-05 0.015021500059709328 4.066360711281967e-05 0.000531276886035098 1.4381809057671123e-06 0.01502150005970933 4.066360711281967e-05 0.019231366789078996 7.914834937669088e-05']
['59866.31505941302 0.03429206675636911 6.796394157436455e-05 0.014983189212722077 4.0640244454380746e-05 0.0005299219169968627 1.4373546207505963e-06 0.014983189212722075 4.0640244454380746e-05 0.019308877543647032 7.918792094527715e-05']
['59866.315090950986 0.03417776541914539 6.785538408813272e-05 0.014959129027855334 4.061225138883292e-05 0.0005290709620294745 1.436364568582989e-06 0.014959129027855334 4.061225138883292e-05 0.019218636391290057 7.908039019009566e-05']
['59866.315122488944 0.03419578193450179 6.787591408206633e-05 0.015068978195687503 4.066841566166334e-05 0.000532956081597257 1.4383509733932386e-06 0.015068978195687503 4.066841566166334e-05 0.019126803738814285 7.912685855577659e-05']
['59866.31515402691 0.03422123796318245 6.789923660933363e-05 0.015018616297110057 4.0643004311090524e-05 0.0005311748937967918 1.4374522307145042e-06 0.015018616297110057 4.0643004311090524e-05 0.019202621666072395 7.913381155714411e-05']
['59866.315185564876 0.03418393785213262 6.787688642235194e-05 0.015025845466426619 4.0653843190326194e-05 0.000531430573359276 1.4378355776496006e-06 0.015025845466426619 4.0653843190326194e-05 0.019158092385706 7.912020397178269e-05']
['59866.315217102834 0.03427605474709753 6.792177795876509e-05 0.015059181947031833 4.066701682743332e-05 0.0005326096101756331 1.4383014997527335e-06 0.015059181947031831 4.066701682743332e-05 0.019216872800065697 7.916548603225103e-05']
['59866.3152486408 0.03425761426135093 6.790257916254423e-05 0.015004330830576545 4.065631533421501e-05 0.0005306696487716401 1.4379230118540315e-06 0.015004330830576545 4.065631533421501e-05 0.019253283430774388 7.914351668633832e-05']
['59866.31528017876 0.03423437721841636 6.789095047413154e-05 0.015094603409674237 4.070473123640946e-05 0.000533862388146985 1.439635374111476e-06 0.015094603409674237 4.070473123640946e-05 0.01913977380874212 7.915842533368959e-05']
['59866.315311716724 0.0342636973648163 6.793525662281282e-05 0.01505924063942198 4.0700579425425324e-05 0.0005326116859943029 1.4394885338357187e-06 0.015059240639421982 4.0700579425425324e-05 0.019204456725394316 7.919429435238872e-05']
['59866.31534325469 0.03436537181213979 6.799213000162288e-05 0.015027082190127314 4.064651442671653e-05 0.0005314743135126548 1.4375763756595496e-06 0.015027082190127316 4.064651442671653e-05 0.019338289622012478 7.921533233660552e-05']
['59866.31537479265 0.0342795736890729 6.792524423346326e-05 0.015090771537326114 4.069396607853254e-05 0.0005337268633857626 1.4392546345360813e-06 0.015090771537326115 4.069396607853254e-05 0.01918880215174678 7.918230660555671e-05']
['59866.315406330614 0.034346886451261896 6.799022869787748e-05 0.014980764870965847 4.064578345456769e-05 0.0005298361734470299 1.4375505228082715e-06 0.014980764870965847 4.064578345456769e-05 0.019366121580296047 7.921332533750424e-05']
['59866.31543786858 0.03430322770361312 6.79431541410391e-05 0.015020498238014397 4.0641416716683275e-05 0.0005312414538406879 1.4373960810483845e-06 0.015020498238014397 4.0641416716683275e-05 0.01928272946559872 7.917068237278305e-05']
['59866.31546940654 0.034270103789374555 6.794572884116895e-05 0.0150077705270943 4.065982276709703e-05 0.0005307913031502039 1.4380470619164174e-06 0.0150077705270943 4.065982276709703e-05 0.019262333262280253 7.918234181438057e-05']
['59866.3155009445 0.03430210549301806 6.794229511371116e-05 0.015081004283473034 4.068219522180834e-05 0.0005333814174455067 1.4388383256400629e-06 0.015081004283473032 4.068219522180834e-05 0.01922110120954503 7.919088630255344e-05']
['59866.31553248246 0.034182122200163555 6.78877034839439e-05 0.015023776992199745 4.065148181573066e-05 0.0005313574160486393 1.437752061107518e-06 0.015023776992199745 4.065148181573066e-05 0.01915834520796381 7.912827091589054e-05']
['59866.31556402043 0.03415963106638204 6.78699670679711e-05 0.014969779091568674 4.063477152052772e-05 0.0005294476309815238 1.437161055311502e-06 0.014969779091568675 4.063477152052772e-05 0.019189851974813366 7.910446944599889e-05']
['59866.31559555839 0.03430564413109504 6.797525330166396e-05 0.01501564345924886 4.065681406879316e-05 0.0005310697511655429 1.4379406509814546e-06 0.01501564345924886 4.065681406879316e-05 0.01929000067184618 7.920613354816528e-05']
['59866.31562709635 0.03437693589833121 6.79978558336545e-05 0.015062448968654666 4.066335563794674e-05 0.0005327251574290691 1.4381720116628698e-06 0.015062448968654664 4.066335563794674e-05 0.01931448692967655 7.922888923689765e-05']
['59866.31565863432 0.034232357219071974 6.787697685733253e-05 0.015055362527127903 4.0667489007114426e-05 0.0005324745258295323 1.4383181996927947e-06 0.015055362527127905 4.0667489007114426e-05 0.019176994691944067 7.912729396001501e-05']
['59866.31569017228 0.034272315235114745 6.793864224049622e-05 0.015067196654474759 4.068199267107167e-05 0.0005328930724660725 1.4388311618731812e-06 0.01506719665447476 4.068199267107167e-05 0.019205118580639984 7.918764826140038e-05']
['59866.31572171024 0.03429920535006016 6.794727725295386e-05 0.014997481494320489 4.06200850473549e-05 0.0005304274030556291 1.436641627577715e-06 0.014997481494320489 4.06200850473549e-05 0.019301723855739673 7.916327302066361e-05']
['59866.31575324821 0.034282218148958474 6.793102149101463e-05 0.01506565947760755 4.068595516424999e-05 0.0005328387059556674 1.4389713064012471e-06 0.01506565947760755 4.068595516424999e-05 0.019216558671350924 7.918314611355153e-05']
['59866.315784786166 0.03427630649310693 6.79400960413702e-05 0.015029939334987273 4.066873076218574e-05 0.0005315753643410086 1.4383621177945078e-06 0.015029939334987273 4.066873076218574e-05 0.019246367158119657 7.918208327593912e-05']
['59866.31581632413 0.03432418683108582 6.795912887003505e-05 0.015105227602406563 4.0690234215711026e-05 0.000534238142100254 1.4391226468883069e-06 0.015105227602406561 4.0690234215711026e-05 0.019218959228679257 7.920945876158637e-05']
['59866.3158478621 0.03426718732365483 6.789923832414919e-05 0.015059164518133198 4.06723898111527e-05 0.0005326089937544397 1.438491530178976e-06 0.015059164518133198 4.06723898111527e-05 0.019208022805521634 7.914890939204385e-05']
['59866.315879400056 0.03421578263291625 6.789087844258408e-05 0.015071968622575855 4.0680804338313426e-05 0.0005330618463130872 1.4387891331992894e-06 0.015071968622575857 4.0680804338313426e-05 0.01914381401034039 7.914606255094354e-05']
['59866.31591093802 0.034274434671872904 6.79198575869722e-05 0.015001996207651044 4.0643029657979845e-05 0.0005305870783763404 1.4374531271773326e-06 0.015001996207651044 4.0643029657979845e-05 0.019272438464221858 7.915151871198693e-05']
['59866.31594247599 0.03416851670185356 6.784823243797356e-05 0.015013293279817113 4.0656143901498985e-05 0.0005309866305713838 1.4379169486619953e-06 0.015013293279817113 4.0656143901498985e-05 0.019155223422036446 7.909680576291738e-05']
['59866.315974013945 0.03432563868907539 6.797635734213967e-05 0.014977683281697353 4.062917743350898e-05 0.0005297271845215499 1.4369632049556979e-06 0.014977683281697352 4.062917743350898e-05 0.01934795540737804 7.919289877526786e-05']
['59866.31600555191 0.0342707582691597 6.794143170429803e-05 0.01495335479355444 4.061975720172823e-05 0.0005288667402669061 1.4366300324105916e-06 0.01495335479355444 4.061975720172823e-05 0.01931740347560526 7.915808750315502e-05']
['59866.31603708987 0.03421164334117379 6.788757606954959e-05 0.015005532604142995 4.065142903323746e-05 0.0005307121528168796 1.4377501943086954e-06 0.015005532604142995 4.065142903323746e-05 0.019206110737030796 7.912813448479134e-05']
['59866.316068627835 0.03427915407091753 6.791811844061987e-05 0.015080168308228257 4.067208318609012e-05 0.0005333518508693938 1.4384806855357793e-06 0.015080168308228257 4.067208318609012e-05 0.01919898576268927 7.916494908234517e-05']
['59866.3161001658 0.03423090546512902 6.79124042788407e-05 0.01502365060941463 4.065600730452742e-05 0.0005313529461719787 1.4379121175323871e-06 0.01502365060941463 4.065600730452742e-05 0.019207254855714388 7.915178826077455e-05']
['59866.31613170376 0.03427598556466672 6.793732548251545e-05 0.015033454116139768 4.0668612837121955e-05 0.0005316996742952988 1.4383579470485486e-06 0.015033454116139768 4.0668612837121955e-05 0.019242531448526952 7.917964551456999e-05']
['59866.316163241725 0.03433855015633218 6.79843772083686e-05 0.015105358969044198 4.0697361967004316e-05 0.00053424278824464 1.439374739521964e-06 0.015105358969044197 4.0697361967004316e-05 0.01923319118728798 7.923478286386048e-05']
['59866.31619477969 0.03426713921501946 6.794911137492558e-05 0.01506443053582982 4.067557698180571e-05 0.0005327952410315123 1.4386042532820657e-06 0.01506443053582982 4.067557698180571e-05 0.01920270867918964 7.919333494331985e-05']
['59866.31622631765 0.03432839531278622 6.798670228157035e-05 0.01494105359025439 4.062346421624306e-05 0.0005284316741977547 1.4367611412292915e-06 0.01494105359025439 4.062346421624306e-05 0.01938734172253183 7.91988480475017e-05']
['59866.316257855615 0.03436855705863438 6.799081483584431e-05 0.015070192401114272 4.067839272053269e-05 0.0005329990253296124 1.4387038396680332e-06 0.015070192401114272 4.067839272053269e-05 0.019298364657520113 7.923056566987234e-05']
['59866.31628939357 0.03427982154677254 6.796028067990142e-05 0.015001118444994275 4.065440364429986e-05 0.0005305560338728546 1.4378553996541082e-06 0.015001118444994277 4.065440364429986e-05 0.01927870310177826 7.919204685929418e-05']
['59866.31632093154 0.03431519135360718 6.79836351825529e-05 0.015126928365336264 4.071235198577618e-05 0.0005350056495867268 1.4399049029852043e-06 0.015126928365336264 4.071235198577618e-05 0.019188262988270914 7.92418466269444e-05']
['59866.316352469505 0.03426624466592163 6.794226131343235e-05 0.01495237691432372 4.061903663099919e-05 0.000528832154863947 1.4366045474342863e-06 0.01495237691432372 4.061903663099919e-05 0.01931386775159791 7.915842980512675e-05']
['59866.31638400746 0.03422811520591467 6.792075120671527e-05 0.01501392585673839 4.0657032815499545e-05 0.0005310090034033632 1.4379483875635892e-06 0.015013925856738391 4.0657032815499545e-05 0.019214189349176278 7.915947676586247e-05']
['59866.31641554543 0.03422731748828637 6.790604277691319e-05 0.015030645488861405 4.065149617579614e-05 0.0005316003394253756 1.4377525689909414e-06 0.015030645488861405 4.065149617579614e-05 0.019196671999424965 7.91440129570818e-05']
['59866.316447083394 0.034220823460428054 6.789001653772875e-05 0.015032574176886708 4.067324486624771e-05 0.0005316685528104666 1.4385217715667508e-06 0.015032574176886708 4.067324486624771e-05 0.019188249283541348 7.914143790355865e-05']
['59866.31647862135 0.03422877523285485 6.790138831634518e-05 0.01497266556627983 4.062793887450607e-05 0.000529549719141166 1.4369193998917814e-06 0.01497266556627983 4.062793887450607e-05 0.019256109666575018 7.912792144671627e-05']
['59866.31651015932 0.03414866241114957 6.784049506305952e-05 0.015044677866463168 4.068106426790096e-05 0.0005320966332606318 1.438798326327892e-06 0.015044677866463168 4.068106426790096e-05 0.0191039845446864 7.910298199417069e-05']
['59866.31654169728 0.03424548040375711 6.789659450526994e-05 0.015096043054282951 4.068995153445644e-05 0.0005339133051593789 1.4391126490840877e-06 0.015096043054282951 4.068995153445644e-05 0.019149437349474163 7.915566752475445e-05']
['59866.31657323524 0.034307340022378924 6.79641411784207e-05 0.015068473561955138 4.069831587921055e-05 0.0005329382338299332 1.43940847726483e-06 0.015068473561955138 4.069831587921055e-05 0.019238866460423786 7.921791086316466e-05']
['59866.31660477321 0.0342569273792509 6.792925056965661e-05 0.015047559173853595 4.06733270234809e-05 0.0005321985386636881 1.4385246772844783e-06 0.015047559173853593 4.06733270234809e-05 0.019209368205397308 7.917513886387706e-05']
['59866.31663631117 0.03431113290036699 6.795723302936725e-05 0.01509767055602862 4.06973395247397e-05 0.0005339708662588709 1.43937394578922e-06 0.01509767055602862 4.06973395247397e-05 0.01921346234433837 7.921148253504451e-05']
['59866.31666784913 0.03431056196580921 6.799031855651268e-05 0.014910542364488626 4.0606262759896825e-05 0.0005273525603309959 1.4361527641613175e-06 0.014910542364488626 4.0606262759896825e-05 0.01940001960132058 7.919313096943355e-05']
['59866.3166993871 0.03430410708665711 6.797028968446876e-05 0.015000609191532448 4.0655780471215586e-05 0.0005305380227160242 1.4379040949450904e-06 0.015000609191532446 4.0655780471215586e-05 0.019303497895124665 7.920134320524037e-05']
['59866.31673092506 0.034282301287357056 6.795358104796927e-05 0.015026604427907967 4.066423867797868e-05 0.0005314574161306922 1.4382032428153215e-06 0.015026604427907967 4.066423867797868e-05 0.01925569685944909 7.919134728303684e-05']
['59866.31676246302 0.03425597130180156 6.792750218190805e-05 0.015040949785131362 4.0665689618322175e-05 0.0005319647793556972 1.43825455933261e-06 0.01504094978513136 4.0665689618322175e-05 0.0192150215166702 7.916971557866581e-05']
['59866.31679400098 0.03424242942692352 6.791680819696612e-05 0.015139501658953338 4.072973324745385e-05 0.0005354503388823053 1.4405196393659102e-06 0.01513950165895334 4.072973324745385e-05 0.019102927767970183 7.919345936421916e-05']
['59866.31682553895 0.03420320778317498 6.791311622952321e-05 0.014953141553058174 4.0622944259261946e-05 0.0005288591984271176 1.4367427515129048e-06 0.014953141553058175 4.0622944259261946e-05 0.019250066230116807 7.913542162834436e-05']
['59866.31685707691 0.03423760898850101 6.790729320304195e-05 0.014934643700921277 4.0603973140940555e-05 0.000528204970737302 1.4360717854558313e-06 0.014934643700921275 4.0603973140940555e-05 0.019302965287579736 7.912068695982189e-05']
['59866.31688861487 0.03418071787181894 6.78612312688469e-05 0.01495899214120674 4.061497641195615e-05 0.0005290661206546375 1.4364609465607895e-06 0.014958992141206742 4.061497641195615e-05 0.0192217257306122 7.90868068534043e-05']
['59866.316920152836 0.03429864892230506 6.797361729276411e-05 0.015087967775150207 4.068259793780053e-05 0.0005336277005836404 1.4388525688046893e-06 0.015087967775150207 4.068259793780053e-05 0.01921068114715485 7.921796780296685e-05']
['59866.3169516908 0.034261073045844796 6.791738062356212e-05 0.015013801506341538 4.0643173797284226e-05 0.0005310046054077333 1.4374582250623962e-06 0.015013801506341538 4.0643173797284226e-05 0.019247271539503258 7.91494672570957e-05']
['59866.31698322876 0.03424742560812646 6.79038258997432e-05 0.01497498219109199 4.063898277082545e-05 0.0005296316529834204 1.4373099978229422e-06 0.014974982191091989 4.063898277082545e-05 0.01927244341703447 7.913568406521854e-05']
['59866.317014766726 0.034241242636283364 6.790473473053454e-05 0.014933736297690407 4.062546933971691e-05 0.000528172877912953 1.4368320579653741e-06 0.014933736297690407 4.062546933971691e-05 0.019307506338592958 7.912952519696135e-05']
['59866.317046304684 0.0342789655551587 6.791599286427345e-05 0.015076763584531775 4.0696286640636694e-05 0.0005332314334013589 1.4393367076315541e-06 0.015076763584531775 4.0696286640636694e-05 0.01920220197062692 7.917556335812778e-05']
['59866.31707784265 0.03427580120182295 6.794987168421526e-05 0.014971414563257525 4.062633066720662e-05 0.0005295054739600944 1.4368625211937317e-06 0.014971414563257526 4.062633066720662e-05 0.019304386638565423 7.916870470951595e-05']
['59866.317109380616 0.03441343354577851 6.802574014122943e-05 0.015014310780250808 4.0664399657526246e-05 0.0005310226172877441 1.4382089363021507e-06 0.01501431078025081 4.0664399657526246e-05 0.0193991227655277 7.925335779176232e-05']
['59866.317140918574 0.03426394149240267 6.791128349354965e-05 0.01496746243900505 4.0630198261582264e-05 0.0005293656961577621 1.4369993093632335e-06 0.014967462439005048 4.0630198261582264e-05 0.019296479053397625 7.913757284954316e-05']
['59866.31717245654 0.0342502475218363 6.790799506544065e-05 0.014991172446471 4.0644091600068106e-05 0.0005302042661330848 1.4374906856956936e-06 0.014991172446471001 4.0644091600068106e-05 0.019259075075365298 7.914188509128803e-05']
['59866.317203994506 0.03423360242950716 6.78859982663126e-05 0.01500504660388267 4.0664023520713835e-05 0.0005306949640738187 1.4381956331837121e-06 0.01500504660388267 4.0664023520713835e-05 0.01922855582562449 7.913325198364443e-05']
['59866.317235532464 0.034251981064894264 6.793370091124394e-05 0.014956864999482244 4.0630334643975774e-05 0.0005289908884057239 1.4370041329036951e-06 0.014956864999482242 4.0630334643975774e-05 0.019295116065412024 7.915688101978124e-05']
['59866.31726707043 0.034232186481579316 6.786561764478145e-05 0.015026255794894137 4.0655771328391535e-05 0.000531445085760142 1.4379037715838366e-06 0.015026255794894137 4.0655771328391535e-05 0.019205930686685177 7.911152760890244e-05']
['59866.31729860839 0.03437249520795376 6.801951271404288e-05 0.015005527183784161 4.0662271552241676e-05 0.0005307119611109015 1.4381336699742707e-06 0.015005527183784161 4.0662271552241676e-05 0.019366968024169602 7.924692068240937e-05']
['59866.317330146354 0.034214248798581114 6.788036785752417e-05 0.014976901176321436 4.063689446790434e-05 0.0005296995232023064 1.4372361392157049e-06 0.014976901176321436 4.063689446790434e-05 0.019237347622259676 7.911448370853717e-05']
['59866.31736168432 0.03435663438843304 6.797453831516433e-05 0.015059264604654992 4.0674380187074135e-05 0.0005326125335910353 1.4385619253270887e-06 0.01505926460465499 4.0674380187074135e-05 0.01929736978377805 7.9214538203302e-05']
['59866.31739322228 0.03418619811495951 6.788705600751912e-05 0.014992969338681602 4.065122552046358e-05 0.000530267818194756 1.4377429965167076e-06 0.014992969338681602 4.065122552046358e-05 0.019193228776277906 7.912758374728516e-05']
['59866.317424760244 0.03420412378923886 6.789043445524336e-05 0.015089456199316372 4.0692627521910414e-05 0.0005336803428199655 1.4392072927798547e-06 0.015089456199316372 4.0692627521910414e-05 0.019114667589922488 7.915175945712538e-05']
['59866.31745629821 0.03423112227009159 6.79060886698043e-05 0.014994141827566448 4.06342785130855e-05 0.0005303092865062546 1.4371436187400775e-06 0.014994141827566447 4.06342785130855e-05 0.019236980442525142 7.91352100440147e-05']
['59866.31748783617 0.034232187063371056 6.791509702948953e-05 0.015021657096506533 4.0679350044238605e-05 0.0005312824400756584 1.438737698068019e-06 0.015021657096506533 4.0679350044238605e-05 0.019210529966864523 7.916609074942803e-05']
['59866.31751937413 0.03430885799789101 6.795344624883436e-05 0.014954092464707846 4.0618162848266315e-05 0.000528892830047004 1.436573643691814e-06 0.014954092464707846 4.0618162848266315e-05 0.019354765533183167 7.916758181390601e-05']
['59866.31755091209 0.03438873270843337 6.803248472354799e-05 0.015046635721453696 4.065936027973703e-05 0.0005321658782160984 1.4380307047720928e-06 0.015046635721453696 4.065936027973703e-05 0.019342096986979675 7.925656159597922e-05']
['59866.31758245006 0.034263050516474505 6.790481608677537e-05 0.015008050349561722 4.0640952274309134e-05 0.0005308011998455102 1.4373796547595788e-06 0.015008050349561722 4.0640952274309134e-05 0.019255000166912783 7.913754513213977e-05']
['59866.31761398802 0.03418679248072952 6.785923410346046e-05 0.015009458697417053 4.065832331672062e-05 0.000530851009961681 1.4379940297076781e-06 0.015009458697417053 4.065832331672062e-05 0.019177333783312468 7.910736317205395e-05']
['59866.31764552598 0.03433019352022726 6.799617590517253e-05 0.015103125253223064 4.070911178375054e-05 0.0005341637867081076 1.439790304280983e-06 0.015103125253223063 4.070911178375054e-05 0.019227068267004196 7.925094144519081e-05']
['59866.31767706395 0.034288031836573474 6.791277017359944e-05 0.015080570797958147 4.068179732407186e-05 0.0005333660860316284 1.4388242528863725e-06 0.015080570797958149 4.068179732407186e-05 0.019207461038615325 7.91653521824352e-05']
['59866.31770860191 0.03419231926635267 6.787383263529505e-05 0.015053697371726037 4.0678461094784254e-05 0.0005324156330043715 1.4387062579125037e-06 0.015053697371726037 4.0678461094784254e-05 0.01913862189462663 7.913023665858658e-05']
['59866.31774013987 0.03425286025041645 6.791898838270136e-05 0.015030031495185205 4.067192908140039e-05 0.0005315786238412435 1.4384752351973071e-06 0.015030031495185205 4.067192908140039e-05 0.019222828755231243 7.916561626193525e-05']
['59866.31777167784 0.03426045079340691 6.79499809813781e-05 0.014983770413353173 4.064458592765654e-05 0.0005299424727642776 1.4375081689577393e-06 0.014983770413353173 4.064458592765654e-05 0.019276680380053736 7.917816795430608e-05']
['59866.317803215796 0.03425219358123359 6.794606214660808e-05 0.015018695729004536 4.0665736406606346e-05 0.0005311777031253797 1.4382562141296554e-06 0.015018695729004538 4.0665736406606346e-05 0.019233497852229053 7.918566460365359e-05']
['59866.31783475376 0.03429256006683543 6.79326512548348e-05 0.015053761158343929 4.0702803445166955e-05 0.0005324178889944917 1.4395671924435886e-06 0.01505376115834393 4.0702803445166955e-05 0.019238798908491502 7.919320245328448e-05']
['59866.31786629173 0.03427107744619744 6.794505547160066e-05 0.015020554159997486 4.0663722444884034e-05 0.0005312434316762515 1.4381849848044767e-06 0.015020554159997488 4.0663722444884034e-05 0.01925052328619995 7.918376655674734e-05']
['59866.317897829686 0.034338269782842795 6.800819894260595e-05 0.015015339227492035 4.06632734168069e-05 0.0005310589911682219 1.4381691036849073e-06 0.015015339227492035 4.06632734168069e-05 0.01932293055535076 7.923772414946724e-05']
['59866.31792936765 0.03432247601730851 6.796616518573245e-05 0.015100777820904118 4.069523197423623e-05 0.0005340807632731889 1.4392994064380104e-06 0.015100777820904118 4.069523197423623e-05 0.019221698196404395 7.92180630632381e-05']
['59866.31796090562 0.03418434336254313 6.789973455773409e-05 0.015029841098136595 4.066176003977665e-05 0.0005315718899231466 1.4381155789215458e-06 0.015029841098136595 4.066176003977665e-05 0.01915450226440654 7.91438733102135e-05']
['59866.317992443575 0.034320986819422264 6.793814897814598e-05 0.01510697506928461 4.0718991716210846e-05 0.000534299946098372 1.4401397354117544e-06 0.015106975069284611 4.0718991716210846e-05 0.019214011750137653 7.920623948251555e-05']
['59866.31802398154 0.034233581093335984 6.78923173273954e-05 0.015082440992557658 4.06831590153179e-05 0.0005334322306349741 1.4388724128625442e-06 0.015082440992557658 4.06831590153179e-05 0.019151140100778327 7.914850712141952e-05']
['59866.3180555195 0.03428817009178358 6.797569158367601e-05 0.014991679564010296 4.0644001906596116e-05 0.0005302222017471087 1.4374875134380424e-06 0.014991679564010298 4.0644001906596116e-05 0.019296490527773283 7.919993394733628e-05']
['59866.318087057465 0.0342108196212815 6.79101415290562e-05 0.015056786572290705 4.066501506592004e-05 0.0005325248911243869 1.4382307019216823e-06 0.015056786572290705 4.066501506592004e-05 0.0191540330489908 7.915447411743663e-05']
['59866.31811859543 0.034186730485708056 6.788877559436854e-05 0.014986441316258483 4.064613139263613e-05 0.0005300369366309218 1.4375628286001564e-06 0.014986441316258484 4.064613139263613e-05 0.01920028916944957 7.912644215993772e-05']
['59866.31815013339 0.03422096520297324 6.787195954184519e-05 0.015062356226631924 4.069108268367907e-05 0.000532721877350991 1.4391526553041223e-06 0.015062356226631926 4.069108268367907e-05 0.019158608976341314 7.913511927090195e-05']
['59866.318181671355 0.03416840296598022 6.784126187145557e-05 0.014988024570905678 4.064437975831648e-05 0.0005300929328094272 1.4375008772089428e-06 0.014988024570905678 4.064437975831648e-05 0.01918037839507454 7.908477994057805e-05']
['59866.31821320932 0.03422618062264098 6.78965457590738e-05 0.015074014974555483 4.0699543309978236e-05 0.0005331342212092792 1.4394518887479368e-06 0.015074014974555485 4.0699543309978236e-05 0.019152165648085497 7.916055679222322e-05']
['59866.31824474728 0.03423992478934201 6.789807430619835e-05 0.014932979308228142 4.059646265905442e-05 0.0005281461048874446 1.4358061564964578e-06 0.014932979308228143 4.059646265905442e-05 0.01930694548111387 7.910892032456284e-05']
['59866.318276285245 0.034277558874790746 6.795026439515427e-05 0.015072885542231842 4.068084461087699e-05 0.0005330942757121247 1.4387905575498587e-06 0.015072885542231844 4.068084461087699e-05 0.019204673332558903 7.919702992932052e-05']
['59866.3183078232 0.0342356087030214 6.789918878086356e-05 0.015137164012755224 4.070444178183101e-05 0.0005353676615606097 1.4396251367499292e-06 0.015137164012755224 4.070444178183101e-05 0.019098444690266177 7.916534227722267e-05']
['59866.31833936117 0.03425147514964554 6.791223362917527e-05 0.01510155093038817 4.0695229583414944e-05 0.0005341081064278418 1.4392993218800047e-06 0.01510155093038817 4.0695229583414944e-05 0.019149924219257375 7.917179540310133e-05']
['59866.318370899135 0.03426397716147951 6.79281900054422e-05 0.01501336959339109 4.065873807106094e-05 0.0005309893296119447 1.438008698641774e-06 0.015013369593391092 4.065873807106094e-05 0.01925060756808842 7.916673530559788e-05']
['59866.31840243709 0.03435699618588131 6.797335552421267e-05 0.01507793154382383 4.070610372666197e-05 0.0005332727415112835 1.4396839160243722e-06 0.015077931543823832 4.070610372666197e-05 0.01927906464205748 7.922981725226164e-05']
['59866.31843397506 0.034201338994438585 6.788769579721189e-05 0.015069505496771794 4.070757990481043e-05 0.0005329747310581597 1.4397361251464192e-06 0.015069505496771793 4.070757990481043e-05 0.01913183349766679 7.915709887534602e-05']
['59866.318465513024 0.03426486151218697 6.792544810690497e-05 0.015019131613041156 4.06766746432076e-05 0.0005311931193696114 1.4386430751127218e-06 0.015019131613041156 4.06766746432076e-05 0.01924572989914581 7.917359635985476e-05']
['59866.31849705098 0.03432729796934211 6.798948628079306e-05 0.015051019810882303 4.068444641211418e-05 0.000532320933661325 1.4389179452100664e-06 0.015051019810882303 4.068444641211418e-05 0.01927627815845981 7.92325338771034e-05']
['59866.31852858895 0.03417058514595553 6.78787330812209e-05 0.015006261808150685 4.066453400511597e-05 0.0005307379431329566 1.43821368787615e-06 0.015006261808150685 4.066453400511597e-05 0.019164323337804844 7.91272818348063e-05']
['59866.31856012691 0.034282445581505235 6.795106542906787e-05 0.015034023355468423 4.06754047086311e-05 0.0005317198070181782 1.4385981603648878e-06 0.01503402335546842 4.06754047086311e-05 0.019248422226036815 7.91949230769018e-05']
['59866.31859166487 0.03425946254240159 6.790242871030448e-05 0.015026030889018164 4.064320132367004e-05 0.0005314371313419439 1.4374591986091446e-06 0.015026030889018164 4.064320132367004e-05 0.01923343165338343 7.913665167666848e-05']
['59866.31862320284 0.0343122102099617 6.796128381641764e-05 0.015064894150811482 4.069149102958711e-05 0.0005328116380572952 1.4391670975862903e-06 0.01506489415081148 4.069149102958711e-05 0.019247316059150216 7.921195326582118e-05']
['59866.3186547408 0.03428493168887752 6.795754526985408e-05 0.015050688527654524 4.066450528651442e-05 0.0005323092169139329 1.4382126721633955e-06 0.015050688527654526 4.066450528651442e-05 0.019234243161223 7.91948858784532e-05']
['59866.31868627876 0.0343351111529396 6.79807251307725e-05 0.015035099086029808 4.065965966156192e-05 0.0005317578532040182 1.4380412932381598e-06 0.015035099086029808 4.065965966156192e-05 0.019300012066909792 7.921229016446684e-05']
['59866.31871781673 0.034266260926356554 6.79549051907291e-05 0.014960226870804371 4.063185451550836e-05 0.0005291097902810474 1.4370578873630898e-06 0.01496022687080437 4.063185451550836e-05 0.019306034055552184 7.917585958390612e-05']
['59866.31874935469 0.034349114818612636 6.800720427754037e-05 0.015044002774711981 4.06753798221652e-05 0.0005320727567741336 1.4385972801862068e-06 0.015044002774711981 4.06753798221652e-05 0.019305112043900653 7.924308397156504e-05']
['59866.31878089265 0.03417989602463757 6.786174878171882e-05 0.01502189869273306 4.066559481018016e-05 0.000531290984794255 1.4382512061805106e-06 0.01502189869273306 4.066559481018016e-05 0.01915799733190451 7.911325773205694e-05']
['59866.31881243061 0.03425506201616843 6.793001295270803e-05 0.015007503072687533 4.0659121095522625e-05 0.0005307818438855619 1.4380222453609745e-06 0.015007503072687533 4.0659121095522625e-05 0.019247558943480896 7.91684961838701e-05']
['59866.31884396858 0.03427429268179613 6.79497484636059e-05 0.015036308837272255 4.067510494562651e-05 0.0005318006394018286 1.438587558417346e-06 0.015036308837272255 4.067510494562651e-05 0.019237983844523875 7.91936391296993e-05']
['59866.31887550654 0.0342360382572863 6.79364822978497e-05 0.01503258388700513 4.066079133966144e-05 0.0005316688962356543 1.4380813181633885e-06 0.01503258388700513 4.066079133966144e-05 0.01920345437028117 7.91749049849353e-05']
['59866.3189070445 0.03429927352510861 6.79705495093973e-05 0.014993932714810181 4.0650923198982205e-05 0.000530301890655405 1.4377323040815603e-06 0.014993932714810181 4.0650923198982205e-05 0.019305340810298426 7.91990729588357e-05']
['59866.318938582466 0.03434723429806997 6.799986131136565e-05 0.015114887099654679 4.0714809421396015e-05 0.0005345797769302142 1.4399918169910327e-06 0.01511488709965468 4.0714809421396015e-05 0.019232347198415288 7.925703025338232e-05']
['59866.318970120425 0.034234646219316114 6.792528807264814e-05 0.014984230038998016 4.063526649826093e-05 0.0005299587286961329 1.4371785615677156e-06 0.014984230038998018 4.063526649826093e-05 0.019250416180318097 7.915219291426437e-05']
['59866.31900165839 0.03436230087776519 6.80042248761416e-05 0.015080101535841266 4.0693827932695084e-05 0.0005333494892792934 1.4392497486265483e-06 0.015080101535841267 4.0693827932695084e-05 0.019282199341923927 7.924999831432572e-05']
['59866.319033196356 0.034300515450576705 6.796494328380449e-05 0.015041998175422998 4.065611511443622e-05 0.000532001858577298 1.4379159305279205e-06 0.015041998175422998 4.065611511443622e-05 0.019258517275153708 7.91969267823509e-05']
['59866.319064734314 0.034347419788150785 6.801242592695955e-05 0.015016605548908185 4.066276144606873e-05 0.0005311037781266494 1.4381509964240856e-06 0.015016605548908187 4.066276144606873e-05 0.0193308142392426 7.924108939742091e-05']
['59866.31909627228 0.034233732159228224 6.788679484159718e-05 0.015020954538531505 4.067153706133025e-05 0.0005312575921702064 1.4384613703235394e-06 0.015020954538531504 4.067153706133025e-05 0.01921277762069672 7.91377965374085e-05']
['59866.319127810246 0.0343358608031953 6.79717111346154e-05 0.015007632113561492 4.065995322619196e-05 0.0005307864077728845 1.4380516759630462e-06 0.015007632113561492 4.065995322619196e-05 0.019328228689633804 7.92047051059703e-05']
['59866.319159348204 0.034268483675853494 6.794991016469602e-05 0.014938610180988722 4.060492524318023e-05 0.0005283452562727263 1.4361054591842253e-06 0.014938610180988722 4.060492524318023e-05 0.01932987349486477 7.915775543428777e-05']
['59866.31919088617 0.03422680280723993 6.791734664748629e-05 0.015012620276048544 4.0667256438399916e-05 0.0005309628279321645 1.4383099742571228e-06 0.015012620276048544 4.0667256438399916e-05 0.019214182531191386 7.916180721699951e-05']
['59866.31922242413 0.03422551201128202 6.791291434174882e-05 0.015089491107716872 4.0691020536371866e-05 0.0005336815774520755 1.4391504572927575e-06 0.015089491107716872 4.0691020536371866e-05 0.019136020903565143 7.917021590649573e-05']
['59866.319253962094 0.034327271247573815 6.79824871415321e-05 0.01503719496996093 4.067809962840944e-05 0.000531831979934637 1.4386934736546563e-06 0.015037194969960928 4.067809962840944e-05 0.019290076277612887 7.922326897652849e-05']
['59866.31928550006 0.034252888832383 6.792205252702296e-05 0.01505849757721554 4.066559695914051e-05 0.0005325854055447073 1.4382512821844357e-06 0.015058497577215538 4.066559695914051e-05 0.01919439125516746 7.916499223474303e-05']
['59866.31931703802 0.03431469601120552 6.796705924695155e-05 0.014955250908668912 4.0600302322483465e-05 0.000528933801620937 1.4359419568108005e-06 0.01495525090866891 4.0600302322483465e-05 0.01935944510253661 7.917010604613132e-05']
['59866.319348575984 0.03432172098204124 6.799304580143588e-05 0.01503986110015584 4.067509410487743e-05 0.0005319262750011807 1.4385871750042788e-06 0.01503986110015584 4.067509410487743e-05 0.0192818598818854 7.923078667914885e-05']
['59866.31938011395 0.03437081713441394 6.800168598085377e-05 0.0150583406481028 4.067971974407238e-05 0.0005325798553127057 1.4387507735249092e-06 0.0150583406481028 4.067971974407238e-05 0.019312476486311143 7.924057606236161e-05']
['59866.31941165191 0.03427349557784295 6.797428415162389e-05 0.01498226949915363 4.0650081567510374e-05 0.0005298893887833856 1.4377025374573372e-06 0.014982269499153628 4.0650081567510374e-05 0.01929122607868932 7.920184617400627e-05']
['59866.319443189874 0.03425014293387999 6.790682323817263e-05 0.015019068608896154 4.068803397749956e-05 0.0005311908910538087 1.4390448293800103e-06 0.015019068608896154 4.068803397749956e-05 0.01923107432498384 7.916345590772665e-05']
['59866.31947472783 0.034361118579697134 6.797715012296228e-05 0.01508706773417765 4.0685010438542664e-05 0.0005335958681459143 1.4389378935643169e-06 0.01508706773417765 4.0685010438542664e-05 0.01927405084551948 7.922223812304268e-05']
['59866.3195062658 0.03425616787900997 6.791617091342509e-05 0.01510505876469825 4.0706810463195477e-05 0.0005342321706878411 1.439708911716099e-06 0.01510505876469825 4.0706810463195477e-05 0.019151109114311723 7.918112584213545e-05']
['59866.31953780376 0.03441168885498258 6.803962577952888e-05 0.015095080123614739 4.070886280218195e-05 0.0005338792484536676 1.4397814983593431e-06 0.015095080123614739 4.070886280218195e-05 0.01931660873136784 7.928809612334757e-05']
['59866.31956934172 0.034288314779950584 6.791946519526908e-05 0.015027836611914707 4.0651034430750014e-05 0.0005315009957252415 1.4377362381005993e-06 0.015027836611914707 4.0651034430750014e-05 0.019260478168035874 7.91552926385936e-05']
['59866.31960087969 0.03431570534286699 6.794067234401789e-05 0.015112799183099128 4.071529021495041e-05 0.0005345059319878631 1.4400088215845414e-06 0.015112799183099126 4.071529021495041e-05 0.01920290615976786 7.920650109583704e-05']
['59866.31963241765 0.03431884004063863 6.797670814339002e-05 0.015001101491302123 4.0649656944649345e-05 0.0005305554342586524 1.4376875194957188e-06 0.015001101491302123 4.0649656944649345e-05 0.019317738549336504 7.920370862358218e-05']
['59866.31966395561 0.03424342851064658 6.792132026762704e-05 0.014942488437165495 4.062003069259455e-05 0.0005284824215263063 1.4366397051713174e-06 0.014942488437165493 4.062003069259455e-05 0.019300940073481085 7.914096689051055e-05']
['59866.31969549358 0.03437224024135917 6.798080154784518e-05 0.0151373066611893 4.0715345623332084e-05 0.0005353727067169225 1.4400107812551706e-06 0.0151373066611893 4.0715345623332084e-05 0.019234933580169866 7.924095373173456e-05']
['59866.319727031536 0.034305683347361296 6.796922609339914e-05 0.015060233494873287 4.068649488458439e-05 0.0005326468010727142 1.438990395103271e-06 0.015060233494873287 4.068649488458439e-05 0.01924544985248801 7.921620138411664e-05']
['59866.3197585695 0.034205645120965224 6.788622086877026e-05 0.015007806575658002 4.0654144715632016e-05 0.0005307925781073382 1.437846241925798e-06 0.015007806575658002 4.0654144715632016e-05 0.01919783854530722 7.912836701463647e-05']
['59866.31979010747 0.034246052188605054 6.7896466273153e-05 0.015004592989313408 4.0656787568920214e-05 0.0005306789207402727 1.4379397137401721e-06 0.015004592989313406 4.0656787568920214e-05 0.019241459199291648 7.91385146929465e-05']
['59866.319821645426 0.034279706120026565 6.79707368688995e-05 0.01500747009584729 4.065206483658121e-05 0.0005307806775684215 1.4377726812520272e-06 0.015007470095847292 4.065206483658121e-05 0.019272236024179275 7.919981973450936e-05']
['59866.31985318339 0.034335294142611404 6.798748587405945e-05 0.01500320348003925 4.066023452847376e-05 0.0005306297769026162 1.43806162499608e-06 0.015003203480039248 4.066023452847376e-05 0.019332090662572157 7.921838743237534e-05']
['59866.31988472136 0.03436037940210104 6.798627214289289e-05 0.015125929582750478 4.071733747376826e-05 0.0005349703248788152 1.4400812285535744e-06 0.015125929582750478 4.071733747376826e-05 0.019234449819350567 7.92466704085429e-05']
['59866.319916259316 0.03421827824842621 6.7894424043627e-05 0.01503384627198779 4.067465328715156e-05 0.0005317135439712266 1.4385715842664845e-06 0.015033846271987792 4.067465328715156e-05 0.019184431976438418 7.914594263918919e-05']
['59866.31994779728 0.03428428089692833 6.79210719356799e-05 0.015063253708036432 4.06692837358406e-05 0.0005327536192625155 1.4383816752368569e-06 0.01506325370803643 4.06692837358406e-05 0.0192210271888919 7.91660448202265e-05']
['59866.31997933524 0.03423322868220696 6.790383931017799e-05 0.014952583486862644 4.061639020969203e-05 0.0005288394608729863 1.4365109494270555e-06 0.014952583486862644 4.061639020969203e-05 0.019280645195344316 7.912409586673607e-05']
['59866.320010873205 0.03424321036017391 6.791308904171168e-05 0.015069883203085712 4.068489861417915e-05 0.0005329880896863591 1.438933938586492e-06 0.015069883203085712 4.068489861417915e-05 0.019173327157088194 7.916721946887799e-05']
['59866.32004241117 0.03414032321163776 6.783440885677687e-05 0.014979147598236457 4.061936586142918e-05 0.0005297789741249831 1.4366161915788082e-06 0.014979147598236457 4.061936586142918e-05 0.019161175613401304 7.906604775713155e-05']
['59866.32007394913 0.034278257324806036 6.792167710088984e-05 0.015075162677034366 4.067142189165374e-05 0.0005331748128809932 1.4384572970294705e-06 0.015075162677034367 4.067142189165374e-05 0.019203094647771667 7.916766245687967e-05']
['59866.320105487095 0.03425060257062805 6.793363652395249e-05 0.014954223644422034 4.0626467423374814e-05 0.0005288974695803254 1.4368673579537684e-06 0.014954223644422034 4.0626467423374814e-05 0.019296378926206018 7.915484082904232e-05']
['59866.32013702506 0.03417334776698245 6.785960586123927e-05 0.015021903256407614 4.0661155287511205e-05 0.0005312911462012247 1.4380941901854589e-06 0.015021903256407614 4.0661155287511205e-05 0.019151444510574836 7.910913763250007e-05']
['59866.32016856302 0.034183375191256596 6.785822284570097e-05 0.01501833053017966 4.0669531459908796e-05 0.0005311647868591152 1.4383904366835182e-06 0.01501833053017966 4.0669531459908796e-05 0.019165044661076935 7.911225693244583e-05']
['59866.320200100985 0.0342216227958419 6.791032810581676e-05 0.015008038302895581 4.065720416853036e-05 0.0005308007737818515 1.4379544479373377e-06 0.015008038302895581 4.065720416853036e-05 0.019213584492946318 7.915062169207042e-05']
['59866.32023163894 0.03434687972251424 6.801643267999275e-05 0.015049105272734845 4.067705346141782e-05 0.0005322532207257903 1.4386564730662084e-06 0.015049105272734845 4.067705346141782e-05 0.019297774449779394 7.925186302425344e-05']
['59866.32026317691 0.03416646934426228 6.784694837002844e-05 0.014954647576384237 4.0624158459373006e-05 0.0005289124631063964 1.4367856950572554e-06 0.014954647576384237 4.0624158459373006e-05 0.019211821767878046 7.90792681659204e-05']
['59866.320294714875 0.03420047645521577 6.785898949667528e-05 0.014957165941115475 4.062856793243768e-05 0.0005290015320387264 1.4369416482649609e-06 0.014957165941115477 4.062856793243768e-05 0.01924331051410029 7.90918642323633e-05']
['59866.32032625283 0.03430251444275572 6.796599373604593e-05 0.015081571265724476 4.0681128825504665e-05 0.0005334014703406095 1.4388006095860573e-06 0.015081571265724476 4.0681128825504665e-05 0.019220943177031245 7.921067192648691e-05']
['59866.3203577908 0.03429784849801496 6.79549179308197e-05 0.015117965946143817 4.071264391428089e-05 0.000534688668849718 1.4399152278439943e-06 0.015117965946143817 4.071264391428089e-05 0.019179882551871145 7.921736075807799e-05']
['59866.320389328765 0.034256832916805015 6.793802055740352e-05 0.01505103272472098 4.0680422255963725e-05 0.0005323213903949383 1.4387756198004843e-06 0.01505103272472098 4.0680422255963725e-05 0.019205800192084035 7.918630811056726e-05']
['59866.32042086672 0.03434485980118803 6.796914693351744e-05 0.015036987479242184 4.066493427171409e-05 0.0005318246414516294 1.4382278444111825e-06 0.015036987479242182 4.066493427171409e-05 0.01930787232194585 7.920506179653489e-05']
['59866.32045240469 0.0340973901710923 6.779079594532732e-05 0.015034393975646342 4.0659202889089e-05 0.0005317329150255839 1.4380251382166191e-06 0.01503439397564634 4.0659202889089e-05 0.019062996195445957 7.904911634216482e-05']
['59866.32048394265 0.03428124185667452 6.794275736500356e-05 0.015020126170829552 4.065077274785388e-05 0.0005312282946558812 1.4377269829613897e-06 0.015020126170829554 4.065077274785388e-05 0.019261115685844966 7.917514511105998e-05']
['59866.32051548061 0.0341300543531949 6.784886771372301e-05 0.014971785535667017 4.06394808140028e-05 0.0005295185944251435 1.437327612497064e-06 0.014971785535667017 4.06394808140028e-05 0.019158268817527878 7.908878713740644e-05']
['59866.32054701858 0.034270608583863035 6.792241914976068e-05 0.014989539602715932 4.064920278202951e-05 0.000530146516098659 1.437671456778849e-06 0.014989539602715932 4.064920278202951e-05 0.019281068981147103 7.915688668694804e-05']
['59866.32057855654 0.03430600212564377 6.793536116456568e-05 0.015051985317781475 4.067498511786056e-05 0.0005323550814825677 1.4385833203770638e-06 0.015051985317781475 4.067498511786056e-05 0.019254016807862293 7.918123332518986e-05']
['59866.3206100945 0.03432231068779497 6.797387231635345e-05 0.015101474720072193 4.068728248569044e-05 0.0005341054110392858 1.439018250794207e-06 0.015101474720072195 4.068728248569044e-05 0.019220835967722776 7.922059248547876e-05']
['59866.32064163247 0.03424736721596713 6.791061432420795e-05 0.01503414117294221 4.066285912121613e-05 0.0005317239739589196 1.4381544509757578e-06 0.01503414117294221 4.066285912121613e-05 0.019213226043024917 7.915377217671429e-05']
['59866.32067317043 0.03422862879520458 6.789687850534897e-05 0.015005908948027348 4.064736361908717e-05 0.0005307254632589901 1.4376064096958658e-06 0.015005908948027346 4.064736361908717e-05 0.019222719847177234 7.913402732044168e-05']
['59866.32070470839 0.034324531186403016 6.798624235758922e-05 0.014964788001377297 4.062211267575416e-05 0.0005292711072758849 1.4367133402627143e-06 0.014964788001377297 4.062211267575416e-05 0.01935974318502572 7.919775999450065e-05']
['59866.32073624635 0.03423500659182507 6.791272335416846e-05 0.015043013715450054 4.068122543930549e-05 0.0005320377759584565 1.4388040266002733e-06 0.015043013715450053 4.068122543930549e-05 0.01919199287637502 7.916501813694868e-05']
['59866.32076778432 0.0343511204598018 6.799804423251633e-05 0.015014630887615092 4.0643376080694016e-05 0.0005310339387698209 1.4374653793745235e-06 0.015014630887615092 4.0643376080694016e-05 0.019336489572186706 7.921879851830611e-05']
['59866.32079932228 0.0342739488488264 6.793963079362526e-05 0.015043033546254147 4.0685460874409465e-05 0.000532038477329678 1.4389538244742606e-06 0.015043033546254145 4.0685460874409465e-05 0.019230915302572253 7.919027818449191e-05']
['59866.32083086024 0.03429054289523953 6.794997309474638e-05 0.015009177477640322 4.066974823975867e-05 0.0005308410638466672 1.4383981037023337e-06 0.01500917747764032 4.066974823975867e-05 0.019281365417599207 7.919108071911956e-05']
['59866.32086239821 0.034153877833346974 6.78760407023694e-05 0.015022566839821902 4.0666099231385614e-05 0.0005313146156635664 1.4382690464312325e-06 0.015022566839821902 4.0666099231385614e-05 0.019131310993525073 7.912577663521926e-05']
['59866.32089393617 0.03429868561267988 6.793201594123555e-05 0.015070566739232766 4.0671349263238316e-05 0.000533012264832267 1.4384547283247319e-06 0.015070566739232766 4.0671349263238316e-05 0.019228118873447116 7.917649550676386e-05']
['59866.32092547413 0.0342062644104734 6.790842489762346e-05 0.015041686629911859 4.067047894267303e-05 0.0005319908399088322 1.4384239470313898e-06 0.015041686629911859 4.067047894267303e-05 0.01916457778056154 7.915580856451772e-05']
['59866.320957012096 0.034219589320536384 6.790104134184072e-05 0.015044737026646233 4.0670222202810725e-05 0.0005320987256240916 1.4384148667162398e-06 0.015044737026646235 4.0670222202810725e-05 0.019174852293890148 7.914934231774994e-05']
['59866.320988550055 0.03421554668225431 6.789488283705941e-05 0.01495037966395015 4.061861225217896e-05 0.0005287615165818257 1.4365895381038455e-06 0.014950379663950152 4.061861225217896e-05 0.019265167018304157 7.911755037127279e-05']
['59866.32102008802 0.03430496013016641 6.792781613269168e-05 0.015048644313616836 4.0663372406071455e-05 0.0005322369176319693 1.4381726047139666e-06 0.015048644313616834 4.0663372406071455e-05 0.019256315816549574 7.916879473625716e-05']
['59866.321051625986 0.03437150806615392 6.79896070500638e-05 0.015077648625232584 4.068027088381515e-05 0.0005332627353129969 1.4387702661058861e-06 0.015077648625232584 4.068027088381515e-05 0.019293859440921334 7.923049353628099e-05']
['59866.321083163944 0.034247885931479816 6.791623573701006e-05 0.014975480116727983 4.0637997476111214e-05 0.0005296492635003671 1.4372751501509036e-06 0.01497548011672798 4.0637997476111214e-05 0.019272405814751835 7.914582689917103e-05']
['59866.32111470191 0.034250493557350145 6.79157955368122e-05 0.015035784776057198 4.066670692898716e-05 0.00053178210452786 1.438290539337275e-06 0.0150357847760572 4.066670692898716e-05 0.019214708781292944 7.916019413724433e-05']
['59866.321146239876 0.03422542264358183 6.788721107248703e-05 0.015028597202275474 4.067425503859884e-05 0.0005315278961064824 1.4385574991052078e-06 0.015028597202275474 4.067425503859884e-05 0.01919682544130636 7.913955047980364e-05']
['59866.321177777834 0.03441255913587344 6.803369395172085e-05 0.015066751388351556 4.069334472443478e-05 0.000532877324398406 1.4392326586302882e-06 0.015066751388351556 4.069334472443478e-05 0.019345807747521884 7.927503905756277e-05']
['59866.3212093158 0.03430524301479121 6.795067250844718e-05 0.015075065888522155 4.068813704016466e-05 0.0005331713896876258 1.4390484744761435e-06 0.015075065888522155 4.068813704016466e-05 0.019230177126269052 7.92011261924315e-05']
['59866.32124085376 0.03428791372185831 6.796194810274694e-05 0.01505832925714625 4.068708453000073e-05 0.0005325794524400298 1.4390112495438669e-06 0.015058329257146251 4.068708453000073e-05 0.01922958446471206 7.921025967304925e-05']
['59866.321272391724 0.03422943280426228 6.792882113483074e-05 0.015075892371005208 4.068386484477307e-05 0.0005332006205259718 1.4388973764729376e-06 0.01507589237100521 4.068386484477307e-05 0.01915354043325707 7.918018438647127e-05']
['59866.32130392969 0.03427260644109254 6.794281568213675e-05 0.015065384645438249 4.0687394114535724e-05 0.000532828985756053 1.439022198856989e-06 0.015065384645438249 4.0687394114535724e-05 0.019207221795654292 7.919400383014085e-05']
['59866.32133546765 0.034306907333976726 6.795273318455951e-05 0.015069190444290058 4.069097904296915e-05 0.0005329635883559816 1.4391489897638357e-06 0.015069190444290058 4.069097904296915e-05 0.019237716889686667 7.920435419045653e-05']
['59866.321367005614 0.03425326143882929 6.793815495209929e-05 0.015006173851893524 4.066339881027651e-05 0.0005307348323167115 1.4381735385716894e-06 0.015006173851893524 4.066339881027651e-05 0.019247087586935767 7.917767931114835e-05']
['59866.32139854358 0.03426761702508182 6.793025038191844e-05 0.014986765531664984 4.0643353217613826e-05 0.0005300484034052709 1.4374645707584733e-06 0.014986765531664982 4.0643353217613826e-05 0.019280851493416837 7.916060306567813e-05']
['59866.32143008154 0.03420560848208182 6.787239852687416e-05 0.01498159893979717 4.0631742853508014e-05 0.0005298656725975596 1.4370539381276874e-06 0.01498159893979717 4.0631742853508014e-05 0.019224009542284648 7.910499989952866e-05']
['59866.321461619504 0.034407329011305623 6.804247727329297e-05 0.015051167730459832 4.0679768224977056e-05 0.0005323261652462013 1.4387524881861591e-06 0.01505116773045983 4.0679768224977056e-05 0.019356161280845795 7.927560946674862e-05']
['59866.32149315746 0.03419697997081869 6.78626315751345e-05 0.015034968841858204 4.0682410977378723e-05 0.0005317532467587472 1.438845956432402e-06 0.015034968841858206 4.0682410977378723e-05 0.019162011128960488 7.912266001111684e-05']
['59866.32152469543 0.034244651585016855 6.788177866655715e-05 0.015074124594028406 4.066835294172324e-05 0.0005331380982050514 1.4383487551291283e-06 0.015074124594028408 4.066835294172324e-05 0.019170526990988448 7.913185708630895e-05']
['59866.32155623339 0.034307381992387045 6.795882583192314e-05 0.014980904765851713 4.0654721065783296e-05 0.0005298411212164962 1.437866626142582e-06 0.014980904765851713 4.0654721065783296e-05 0.019326477226535334 7.919096131118947e-05']
['59866.32158777135 0.034279740608759865 6.79490697935555e-05 0.015096702246245168 4.070244939057565e-05 0.0005339366193058752 1.4395546703239597e-06 0.015096702246245168 4.070244939057565e-05 0.0191830383625147 7.920710493511203e-05']
['59866.32161930932 0.03422923362247155 6.79018800683738e-05 0.015027996480155152 4.066586269062933e-05 0.0005315066499076215 1.4382606805133203e-06 0.015027996480155152 4.066586269062933e-05 0.019201237142316398 7.914782186006724e-05']
['59866.32165084728 0.034262725817758195 6.792291526249491e-05 0.015005462004258415 4.065551274553388e-05 0.0005307096558567436 1.43789462608606e-06 0.015005462004258415 4.065551274553388e-05 0.019257263813499778 7.916055289320768e-05']
['59866.32168238524 0.03432766456333525 6.795689795707846e-05 0.01511795549868065 4.0716777164658624e-05 0.0005346882993462945 1.4400614116725838e-06 0.01511795549868065 4.0716777164658624e-05 0.0192097090646546 7.922118354723842e-05']
['59866.32171392321 0.034188422576028256 6.788745884873479e-05 0.015000426829804011 4.065148944558407e-05 0.0005305315729892438 1.4377523309583817e-06 0.01500042682980401 4.065148944558407e-05 0.01918799574622425 7.912806495222218e-05']
['59866.321745461166 0.03428911818362439 6.795533059590458e-05 0.015035022778776826 4.067006661270265e-05 0.0005317551543870169 1.4384093638418405e-06 0.015035022778776828 4.067006661270265e-05 0.019254095404847557 7.919584127137204e-05']
['59866.32177699913 0.034265759851790686 6.790938207361106e-05 0.015062429328069026 4.067719441724719e-05 0.0005327244627854491 1.4386614583588754e-06 0.015062429328069024 4.067719441724719e-05 0.01920333052372166 7.916008033900808e-05']
['59866.3218085371 0.03424420207780706 6.790646006811823e-05 0.014995446787186562 4.063707532543095e-05 0.0005303554400116049 1.4372425357422283e-06 0.014995446787186562 4.063707532543095e-05 0.0192487552906205 7.913696487727897e-05']
['59866.321840075056 0.03431017045427811 6.795585730993513e-05 0.01512259319977078 4.070578486917982e-05 0.0005348523244692005 1.439672638747833e-06 0.015122593199770782 4.070578486917982e-05 0.01918757725450733 7.921464173083289e-05']
['59866.32187161302 0.03422138698276767 6.788872985387685e-05 0.015002418194250756 4.066270165828889e-05 0.0005306020030992877 1.4381488818639304e-06 0.015002418194250758 4.066270165828889e-05 0.019218968788516914 7.913491610739016e-05']
['59866.32190315099 0.03423140997790038 6.787332276486871e-05 0.015088990802463478 4.070864623163263e-05 0.0005336638827733793 1.4397738387430202e-06 0.015088990802463478 4.070864623163263e-05 0.019142419175436905 7.914532090500526e-05']
['59866.321934688945 0.03425889239434134 6.792941369992369e-05 0.015074875726346365 4.068402136645893e-05 0.0005331646640764555 1.438902912295161e-06 0.015074875726346363 4.068402136645893e-05 0.01918401666799498 7.918077317229143e-05']
['59866.32196622691 0.034300060014514654 6.798834113712332e-05 0.015041086880905915 4.066057546747377e-05 0.000531969628126852 1.4380736832465564e-06 0.015041086880905913 4.066057546747377e-05 0.01925897313360874 7.921929643668886e-05']
['59866.32199776487 0.0343272205979927 6.799736709043198e-05 0.015073669950958025 4.069552581841994e-05 0.0005331220184957194 1.4393097990500853e-06 0.015073669950958025 4.069552581841994e-05 0.019253550647034677 7.924498566388062e-05']
['59866.322029302835 0.03433333768429762 6.797005774394271e-05 0.015079864055393927 4.069130018019264e-05 0.0005333410901266085 1.4391603476697311e-06 0.015079864055393926 4.069130018019264e-05 0.019253473628903693 7.921938310836213e-05']
['59866.3220608408 0.03438279131219242 6.800066367997626e-05 0.015067359209205603 4.068390214759803e-05 0.000532898821663614 1.4388986957904896e-06 0.015067359209205601 4.068390214759803e-05 0.01931543210298682 7.924184598349899e-05']
['59866.32209237876 0.03439882634505573 6.801745681509275e-05 0.014988317741998885 4.064519854080705e-05 0.000530103301615795 1.437529835715763e-06 0.014988317741998883 4.064519854080705e-05 0.019410508603056844 7.923639691464164e-05']
['59866.322123916725 0.03422699513915978 6.789662642222483e-05 0.015004865109076082 4.0650761121507304e-05 0.0005306885450081266 1.4377265717634947e-06 0.01500486510907608 4.0650761121507304e-05 0.019222130030083696 7.913555622649663e-05']
['59866.32215545469 0.034243771187525036 6.791528111936076e-05 0.01497820782526883 4.063651074143826e-05 0.0005297457364553871 1.4372225676681777e-06 0.01497820782526883 4.063651074143826e-05 0.019265563362256207 7.914424435649649e-05']
['59866.32218699265 0.034309726131806655 6.796081835733976e-05 0.015038616221350552 4.06538886534256e-05 0.0005318822464199781 1.4378371855778223e-06 0.015038616221350552 4.06538886534256e-05 0.0192711099104561 7.919224390332967e-05']
['59866.322218530615 0.03443442703068794 6.805543558105678e-05 0.015149734362842272 4.073298422832759e-05 0.0005358122467501096 1.4406346192938996e-06 0.015149734362842272 4.073298422832759e-05 0.01928469266784567 7.931404866902555e-05']
['59866.32225006857 0.03433380020724073 6.797076222879072e-05 0.01502139035388249 4.066955448965482e-05 0.0005312730059851807 1.4383912511941666e-06 0.01502139035388249 4.066955448965482e-05 0.01931240985335824 7.920882009189258e-05']
['59866.32228160654 0.034199677484434664 6.788438627850357e-05 0.015031136364995843 4.06641074028391e-05 0.0005316177006172071 1.4381985999070172e-06 0.015031136364995843 4.06641074028391e-05 0.01916854111943882 7.913191221800923e-05']
['59866.322313144505 0.03424475066859955 6.791533007436133e-05 0.015038471851885832 4.067327529935705e-05 0.0005318771403946576 1.4385228479178142e-06 0.01503847185188583 4.067327529935705e-05 0.019206278816713718 7.916316935726321e-05']
['59866.32234468246 0.03435844502417897 6.801669439093387e-05 0.015047503921028195 4.06872708430844e-05 0.0005321965844947365 1.4390178390212513e-06 0.015047503921028195 4.06872708430844e-05 0.019310941103150778 7.925733230766856e-05']
['59866.32237622043 0.03425810977416722 6.792036401139016e-05 0.014992761463539837 4.063699100102031e-05 0.0005302604661155654 1.4372395533762779e-06 0.014992761463539837 4.063699100102031e-05 0.01926534831062738 7.914885270840475e-05']
['59866.322407758395 0.034189624346030976 6.788064236425517e-05 0.015027463816564461 4.065701658859959e-05 0.0005314878107868518 1.4379478136544028e-06 0.015027463816564461 4.065701658859959e-05 0.019162160529466517 7.912505674986637e-05']
['59866.32243929635 0.03422030227666062 6.788525973129923e-05 0.015017869759503305 4.0667955355106184e-05 0.0005311484904300544 1.4383346933790367e-06 0.015017869759503305 4.0667955355106184e-05 0.019202432517157315 7.913463894876166e-05']
['59866.32247083432 0.03432448866143619 6.796791596865906e-05 0.015129427210314544 4.072652598442654e-05 0.0005350940281490187 1.4404062056404452e-06 0.015129427210314543 4.072652598442654e-05 0.019195061451121646 7.923564551313297e-05']
['59866.32250237228 0.03420805383132287 6.787672809508483e-05 0.015031705241307832 4.067767639465987e-05 0.0005316378205009985 1.4386785048228057e-06 0.015031705241307832 4.067767639465987e-05 0.019176348590015033 7.913231687346673e-05']
['59866.32253391024 0.03426796944345294 6.795912058008345e-05 0.014974659025189345 4.063928662036222e-05 0.0005296202233276772 1.437320744301994e-06 0.014974659025189345 4.063928662036222e-05 0.0192933104182636 7.918329171631017e-05']
['59866.32256544821 0.03440587533371671 6.804686980146019e-05 0.015066589302080727 4.0678080833221524e-05 0.0005328715917692483 1.4386928089108646e-06 0.015066589302080727 4.0678080833221524e-05 0.019339286031635983 7.927851379819742e-05']
['59866.32259698617 0.03424713000351664 6.790248536970644e-05 0.015050915822652916 4.067805420709318e-05 0.0005323172558300515 1.4386918672042109e-06 0.015050915822652914 4.067805420709318e-05 0.019196214180863723 7.915460576276284e-05']
['59866.32262852413 0.034252365383370426 6.792655624151366e-05 0.015109174055270664 4.0701402530674946e-05 0.0005343777193182542 1.4395176452288659e-06 0.015109174055270663 4.0701402530674946e-05 0.019143191328099763 7.918725409303918e-05']
['59866.3226600621 0.034269622457535696 6.793072307402127e-05 0.015008719900594441 4.0657951372753534e-05 0.000530824880369179 1.437980874880808e-06 0.015008719900594441 4.0657951372753534e-05 0.019260902556941253 7.916850476792243e-05']
['59866.32269160006 0.034255828668540225 6.791144969767315e-05 0.015016767543937687 4.066652474108338e-05 0.0005311095075288052 1.4382840957582843e-06 0.015016767543937687 4.066652474108338e-05 0.01923906112460254 7.915637204013798e-05']
['59866.32272313802 0.03426428254673552 6.792698732142141e-05 0.015023069571523853 4.066475953597521e-05 0.0005313323961603252 1.4382216643986095e-06 0.015023069571523853 4.066475953597521e-05 0.019241212975211665 7.916879609216773e-05']
['59866.32275467598 0.0340484926375141 6.773121673424087e-05 0.014984852056009572 4.064185526872185e-05 0.0005299807280477054 1.437411591653883e-06 0.014984852056009574 4.064185526872185e-05 0.019063640581504525 7.898910127343167e-05']
['59866.32278621395 0.034260028908714164 6.792136122545012e-05 0.015058281723893185 4.069606199623388e-05 0.0005325777712950994 1.4393287624610774e-06 0.015058281723893183 4.069606199623388e-05 0.019201747184820983 7.918005287141068e-05']
['59866.32281775191 0.03437919958761061 6.801877444931898e-05 0.015032355098789717 4.068286136898358e-05 0.0005316608045077867 1.4388618857769e-06 0.015032355098789715 4.068286136898358e-05 0.019346844488820895 7.925685387873572e-05']
['59866.32284928987 0.034316669856948506 6.797166044434052e-05 0.015011016890088682 4.0665880587218335e-05 0.0005309061197541208 1.4382613134756768e-06 0.01501101689008868 4.0665880587218335e-05 0.019305652966859828 7.920770459680438e-05']
['59866.322880827836 0.03429519675154525 6.792540804046277e-05 0.015091108731258813 4.0696285237191876e-05 0.000533738789181578 1.4393366579948474e-06 0.015091108731258811 4.0696285237191876e-05 0.01920408802028644 7.918363902707583e-05']
['59866.3229123658 0.03423754360421518 6.790263953621109e-05 0.01496764263936746 4.06345007116075e-05 0.0005293720694418565 1.4371514774052162e-06 0.01496764263936746 4.06345007116075e-05 0.019269900964847722 7.913236445390878e-05']
['59866.32294390376 0.03430216499578431 6.796831405386782e-05 0.015021525149709765 4.066476518579895e-05 0.0005312777734123405 1.4382218642202486e-06 0.015021525149709765 4.066476518579895e-05 0.019280639846074546 7.920426025752259e-05']
['59866.322975441726 0.03423552929722546 6.787800393000311e-05 0.015060860242327632 4.0684426740602855e-05 0.0005326689677294763 1.438917249472674e-06 0.015060860242327632 4.0684426740602855e-05 0.019174669054897828 7.91368813937787e-05']
['59866.323006979685 0.03421493658825822 6.789878487105184e-05 0.01503807874618828 4.067276431250442e-05 0.0005318632371246748 1.438504775454825e-06 0.01503807874618828 4.067276431250442e-05 0.01917685784206994 7.914871283720229e-05']
['59866.32303851765 0.03417032569575384 6.783847036635922e-05 0.015050138808480315 4.069185343498279e-05 0.0005322897745752911 1.4391799150552073e-06 0.015050138808480313 4.069185343498279e-05 0.019120186887273523 7.910679488907081e-05']
['59866.323070055616 0.034139705817342304 6.783559700873652e-05 0.01505924850657537 4.067145879290949e-05 0.0005326119642379361 1.438458602144417e-06 0.015059248506575367 4.067145879290949e-05 0.019080457310766935 7.909384161788474e-05']
['59866.323101593574 0.03418480338472743 6.787409972609043e-05 0.015030147748092785 4.0655866545080316e-05 0.0005315827354467747 1.4379071391853221e-06 0.015030147748092786 4.0655866545080316e-05 0.019154655636634644 7.911885298813836e-05']
['59866.32313313154 0.034325954078790986 6.797534022561762e-05 0.014993884936983157 4.0642915732334384e-05 0.0005303002008604402 1.4374490978818616e-06 0.014993884936983155 4.0642915732334384e-05 0.01933206914180783 7.919907498206088e-05']
['59866.323164669506 0.0341821465127134 6.789095196326568e-05 0.015063527619303171 4.067908951667571e-05 0.0005327633068918645 1.4387284837903643e-06 0.015063527619303173 4.067908951667571e-05 0.01911861889341023 7.9145244218362e-05']
['59866.323196207464 0.0342339982678674 6.790008577992446e-05 0.014982009361698738 4.063688649703292e-05 0.000529880188302979 1.4372358573037965e-06 0.014982009361698736 4.063688649703292e-05 0.019251988906168666 7.913139827586668e-05']
['59866.32322774543 0.0342959534296418 6.795098340446e-05 0.015062469685694978 4.068381348753103e-05 0.0005327258901444851 1.4388955600820634e-06 0.015062469685694978 4.068381348753103e-05 0.01923348374394682 7.919917187396222e-05']
['59866.32325928339 0.034186063108162835 6.786095734853505e-05 0.015077491425855754 4.070517109727275e-05 0.0005332571755223583 1.4396509310071794e-06 0.015077491425855755 4.070517109727275e-05 0.01910857168230708 7.913292921608514e-05']
['59866.323290821354 0.034100758388507256 6.781287414263853e-05 0.015059756852890082 4.069526631988371e-05 0.0005326299433110005 1.4393006211668038e-06 0.015059756852890082 4.069526631988371e-05 0.019041001535617174 7.90866019015332e-05']
['59866.32332235932 0.03426972576978914 6.793231329632927e-05 0.01509117399059004 4.0708361564895954e-05 0.0005337410972582775 1.4397637707167367e-06 0.015091173990590038 4.0708361564895954e-05 0.019178551779199103 7.919576940145813e-05']
['59866.32335389728 0.03425245897539906 6.793524815500668e-05 0.01500582597198485 4.067760987554993e-05 0.0005307225285818075 1.4386761521905485e-06 0.015005825971984849 4.067760987554993e-05 0.019246633003414212 7.918248472402073e-05']
['59866.323385435244 0.0343499567507824 6.79722327464067e-05 0.015035349934467616 4.067520002590675e-05 0.0005317667251526502 1.4385909211943664e-06 0.015035349934467616 4.067520002590675e-05 0.019314606816314785 7.921298076501861e-05']
['59866.32341697321 0.03414249485587643 6.784379202440828e-05 0.015030249025355425 4.0673905058677364e-05 0.0005315863173972129 1.4385451210975445e-06 0.015030249025355425 4.0673905058677364e-05 0.019112245830521003 7.91021280938349e-05']
['59866.32344851117 0.03423486834591683 6.790947044689261e-05 0.01507733636300217 4.0698636077154275e-05 0.0005332516912957721 1.4394198019504994e-06 0.01507733636300217 4.0698636077154275e-05 0.01915753198291466 7.917117628858387e-05']
['59866.323480049134 0.03429323896381833 6.794653395568842e-05 0.015023410098729737 4.064682480289754e-05 0.0005313444398465638 1.4375873529714217e-06 0.015023410098729737 4.064682480289754e-05 0.01926982886508859 7.917635911778823e-05']
['59866.32351158709 0.034337411820606414 6.798369312931286e-05 0.015089830801332936 4.071147915392209e-05 0.0005336935916561051 1.4398740328731898e-06 0.015089830801332936 4.071147915392209e-05 0.01924758101927348 7.924144790701905e-05']
['59866.32354312506 0.03427681512687835 6.792450417649233e-05 0.015070138382230114 4.068355525888836e-05 0.0005329971148024048 1.438886427112079e-06 0.015070138382230114 4.068355525888836e-05 0.019206676744648238 7.917632181482887e-05']
['59866.32357466302 0.03417253768674569 6.786018004220877e-05 0.01491478751006981 4.059305589357961e-05 0.0005275027016428605 1.4356856668152865e-06 0.01491478751006981 4.059305589357961e-05 0.01925775017667588 7.907464968079383e-05']
['59866.32360620098 0.03428948988332382 6.79392831083157e-05 0.014990640737678154 4.064152625343176e-05 0.000530185460781381 1.4373999551183783e-06 0.014990640737678154 4.064152625343176e-05 0.01929884914564567 7.91674165643938e-05']
['59866.32363773895 0.03425385130862221 6.791875006454031e-05 0.014996947654404295 4.0655894225659615e-05 0.0005304085223308553 1.4379081181855494e-06 0.014996947654404296 4.0655894225659615e-05 0.019256903654217915 7.915717494717404e-05']
['59866.32366927691 0.03426577956426086 6.792435060890387e-05 0.015086707015441115 4.0696015339475964e-05 0.0005335831103303619 1.4393271123158215e-06 0.015086707015441115 4.0696015339475964e-05 0.01917907254881975 7.918259322699758e-05']
['59866.32370081487 0.03429645758605967 6.796957422746255e-05 0.014970730194648304 4.063347323875117e-05 0.00052948126937186 1.4371151379865542e-06 0.014970730194648304 4.063347323875117e-05 0.019325727391411363 7.918928063890243e-05']
['59866.32373235284 0.03420998976790431 6.790077074156287e-05 0.015006827000415095 4.0651596111765745e-05 0.0005307579327202184 1.4377561035028425e-06 0.015006827000415095 4.0651596111765745e-05 0.019203162767489217 7.913954089917636e-05']
['59866.323763890796 0.0343288196659931 6.801000320251947e-05 0.014968218451325416 4.064717925178384e-05 0.0005293924346239454 1.4375998890363836e-06 0.014968218451325415 4.064717925178384e-05 0.019360601214667685 7.923101486623376e-05']
['59866.32379542876 0.034265896929507655 6.793207711170248e-05 0.014938532739722267 4.061853143568538e-05 0.0005283425173482028 1.436586679805082e-06 0.014938532739722265 4.061853143568538e-05 0.01932736418978539 7.91494295412295e-05']
['59866.32382696673 0.03422880088413217 6.794074658372796e-05 0.014982639455624232 4.06516126621464e-05 0.0005299024733169468 1.4377566888528182e-06 0.014982639455624234 4.06516126621464e-05 0.019246161428507935 7.917385084980725e-05']
['59866.323858504686 0.03420505387625713 6.786895793023995e-05 0.015013637143719677 4.065818540953936e-05 0.0005309987922691269 1.4379891522388814e-06 0.015013637143719675 4.065818540953936e-05 0.019191416732537454 7.91156336720699e-05']
['59866.32389004265 0.03437527887205621 6.801912384905081e-05 0.015064637805156919 4.0671987416731276e-05 0.0005328025716843922 1.4384772983875888e-06 0.01506463780515692 4.0671987416731276e-05 0.019310641066899288 7.925157266338163e-05']
['59866.32392158062 0.03416092065936989 6.786620050906548e-05 0.014954401458353599 4.062931450490107e-05 0.0005289037584616942 1.4369680528644995e-06 0.0149544014583536 4.062931450490107e-05 0.01920651920101629 7.909843467904308e-05']
['59866.323953118575 0.03431545003443701 6.797753480239702e-05 0.014981020237695609 4.0642916118633816e-05 0.0005298452051975505 1.437449111544409e-06 0.01498102023769561 4.0642916118633816e-05 0.019334429796741402 7.920095875958449e-05']
['59866.32398465654 0.0343264283107033 6.797043610820494e-05 0.01503866542029698 4.0683015503244525e-05 0.00053188398647676 1.4388673371612396e-06 0.01503866542029698 4.0683015503244525e-05 0.019287762890406325 7.921545262874413e-05']
['59866.3240161945 0.03438053790768167 6.801315341624484e-05 0.015161247815427235 4.073937836692187e-05 0.0005362194518369876 1.4408607656859206e-06 0.015161247815427237 4.073937836692187e-05 0.019219290092254433 7.928105692626e-05']
['59866.324047732465 0.03438192095822811 6.805208340825057e-05 0.015045869735930587 4.067000484490076e-05 0.0005321387870200229 1.4384071792527309e-06 0.015045869735930587 4.067000484490076e-05 0.019336051222297524 7.927884554083607e-05']
['59866.32407927043 0.03429958132346791 6.794663873308456e-05 0.015053687089598639 4.065859933020041e-05 0.0005324152693485047 1.4380037916876043e-06 0.01505368708959864 4.065859933020041e-05 0.019245894233869267 7.918249436976634e-05']
['59866.32411080839 0.034239651257995156 6.790141313708612e-05 0.015038697112200764 4.0686210070988894e-05 0.0005318851073485697 1.4389803218829192e-06 0.015038697112200764 4.0686210070988894e-05 0.01920095414579439 7.915787766201093e-05']
['59866.324142346355 0.03425719929942409 6.79316112417965e-05 0.015049658286642896 4.0669075320598675e-05 0.0005322727795918047 1.4383743040555305e-06 0.015049658286642896 4.0669075320598675e-05 0.019207541012781194 7.917498022316837e-05']
['59866.32417388431 0.03422857587607466 6.79163818793261e-05 0.015084468963811923 4.067831429955975e-05 0.0005335039554459884 1.438701066093481e-06 0.015084468963811923 4.067831429955975e-05 0.01914410691226274 7.916666079753662e-05']
['59866.32420542228 0.03430620510811321 6.796951510610896e-05 0.015138731064384838 4.072367489431088e-05 0.000535423084674595 1.4403053689548655e-06 0.01513873106438484 4.072367489431088e-05 0.019167474043728372 7.923555187324122e-05']
['59866.324236960245 0.03440409722577201 6.802748395775636e-05 0.015086953305483704 4.069626272320146e-05 0.0005335918210587425 1.4393358617253222e-06 0.015086953305483704 4.069626272320146e-05 0.019317143920288302 7.92712077191879e-05']
['59866.3242684982 0.03430249215264919 6.792247156045733e-05 0.015025156548642915 4.068191168302778e-05 0.0005314062078769071 1.4388282975070665e-06 0.015025156548642915 4.068191168302778e-05 0.019277335604006275 7.917373352992018e-05']
['59866.32430003617 0.034219806781500516 6.790852538590042e-05 0.015013830995883102 4.0675469124425205e-05 0.0005310056483869133 1.4386004386075644e-06 0.015013830995883102 4.0675469124425205e-05 0.01920597578561741 7.91584588567738e-05']
['59866.324331574135 0.034152563810998064 6.784880003653945e-05 0.014926300609298488 4.061914997233101e-05 0.0005279098942323164 1.4366085560638896e-06 0.014926300609298488 4.061914997233101e-05 0.019226263201699574 7.907828406631643e-05']
['59866.32436311209 0.03425397606659864 6.790031835931838e-05 0.015053818521448171 4.0665763469624934e-05 0.0005324199177992897 1.4382571712881407e-06 0.015053818521448171 4.0665763469624934e-05 0.01920015754515047 7.914643107471285e-05']
['59866.32439465006 0.03431727771878652 6.796607411043049e-05 0.015027460688836246 4.066735728957302e-05 0.0005314877001660949 1.4383135411377264e-06 0.015027460688836246 4.066735728957302e-05 0.019289817029950272 7.920366897374336e-05']
['59866.32442618802 0.034249035199328016 6.789881644324203e-05 0.014946181901639802 4.0620743249344836e-05 0.0005286130511103552 1.4366649067111042e-06 0.0149461819016398 4.0620743249344836e-05 0.019302853297688216 7.912202004829166e-05']
['59866.32445772598 0.034280489384073604 6.796824309250141e-05 0.015010369115629061 4.0652413003157786e-05 0.0005308832094191748 1.4377849951257341e-06 0.015010369115629061 4.0652413003157786e-05 0.019270120268444543 7.919785825425253e-05']
['59866.32448926395 0.03428313137587657 6.792407054525518e-05 0.0150558268414466 4.0674210936258475e-05 0.0005324909475893031 1.438555939303992e-06 0.0150558268414466 4.0674210936258475e-05 0.019227304534429966 7.917114875208046e-05']
['59866.32452080191 0.034293663389196496 6.797032026205296e-05 0.014934920378487634 4.0598565695597794e-05 0.0005282147562044861 1.4358805361989869e-06 0.014934920378487634 4.0598565695597794e-05 0.019358743010708862 7.917201508781886e-05']
['59866.32455233987 0.03429754966815062 6.795757251358297e-05 0.015057423343095677 4.0669478436581944e-05 0.0005325474122846598 1.4383885613669476e-06 0.015057423343095679 4.0669478436581944e-05 0.019240126325054945 7.919746295331999e-05']
['59866.32458387784 0.0342773706237689 6.79519910223684e-05 0.014994983372255214 4.0647108012931226e-05 0.0005303390500611546 1.437597369477376e-06 0.014994983372255214 4.0647108012931226e-05 0.019282387251513683 7.918118762508512e-05']
['59866.3246154158 0.03430944444805869 6.795871661275076e-05 0.01506606067213313 4.070382476192178e-05 0.0005328528953094201 1.4396033141346983e-06 0.01506606067213313 4.070382476192178e-05 0.01924338377592556 7.921608746903247e-05']
['59866.32464695376 0.034393996888665235 6.801371257662473e-05 0.015068478126178833 4.0692849457793646e-05 0.0005329383952563249 1.4392151421560472e-06 0.015068478126178834 4.0692849457793646e-05 0.0193255187624864 7.925763745816788e-05']
['59866.32467849172 0.034231424483037 6.788431060128382e-05 0.015053559727199099 4.066202279559903e-05 0.0005324107648250711 1.4381248720077589e-06 0.015053559727199097 4.066202279559903e-05 0.019177864755837905 7.913077608390676e-05']
['59866.32471002969 0.034290597030507526 6.790771252497611e-05 0.015057204324826792 4.067236775430974e-05 0.0005325396660979663 1.4384907500777345e-06 0.015057204324826792 4.067236775430974e-05 0.019233392705680735 7.915616791581444e-05']
['59866.32474156765 0.03426519775091407 6.792858243881784e-05 0.014974582129897362 4.06247543836063e-05 0.0005296175037130506 1.4368067715655748e-06 0.014974582129897362 4.06247543836063e-05 0.019290615621016707 7.914962400969199e-05']
['59866.32477310561 0.03420505304254978 6.787991778483694e-05 0.015058511170248656 4.068033805517821e-05 0.00053258588629991 1.4387726418068781e-06 0.015058511170248656 4.068033805517821e-05 0.019146541872301127 7.913642108890068e-05']
['59866.32480464358 0.0342024849094976 6.789449554535454e-05 0.015001376889437413 4.066128402278999e-05 0.000530565174475219 1.4380987432645632e-06 0.015001376889437413 4.066128402278999e-05 0.019201108020060188 7.91391340851046e-05']
['59866.32483618154 0.034321080567343364 6.79631466155943e-05 0.015009971742587247 4.0650834334201295e-05 0.0005308691552227624 1.4377291611328605e-06 0.015009971742587249 4.0650834334201295e-05 0.019311108824756115 7.919267409274324e-05']
['59866.3248677195 0.034237083760234564 6.790800796309205e-05 0.014935653933831634 4.062674129400115e-05 0.0005282407004176036 1.4368770441457573e-06 0.014935653933831632 4.062674129400115e-05 0.019301429826402934 7.913298713990943e-05']
['59866.324899257466 0.03425374873696006 6.791193319137807e-05 0.01503204077491132 4.066518557638942e-05 0.0005316496875746804 1.4382367324959159e-06 0.01503204077491132 4.066518557638942e-05 0.019221707962048744 7.91560988664322e-05']
['59866.324930795425 0.03434225556380813 6.79809848397405e-05 0.015100070245681963 4.069974875204212e-05 0.0005340557379189189 1.4394591547746006e-06 0.015100070245681963 4.069974875204212e-05 0.019242185318126166 7.923309818668195e-05']
['59866.32496233339 0.03411867122750137 6.781799239416659e-05 0.014939687325067267 4.0608409096971476e-05 0.0005283833524515091 1.4362286753068668e-06 0.014939687325067265 4.0608409096971476e-05 0.019178983902434103 7.904633439801136e-05']
['59866.324993871356 0.03431427041160932 6.79719837680571e-05 0.014983791405246335 4.064828355962318e-05 0.0005299432152006246 1.4376389459366782e-06 0.014983791405246335 4.064828355962318e-05 0.019330479006362984 7.919894906947031e-05']
['59866.325025409315 0.034250179145693435 6.790419944312187e-05 0.015069625939836639 4.068167488557586e-05 0.000532978990860189 1.4388199225104032e-06 0.01506962593983664 4.068167488557586e-05 0.019180553205856793 7.91579368952158e-05']
['59866.32505694728 0.03436483190499213 6.798570495272633e-05 0.01510868300323478 4.070008693133845e-05 0.0005343603519051818 1.4394711154205255e-06 0.01510868300323478 4.070008693133845e-05 0.01925614890175735 7.923732172491486e-05']
['59866.325088485246 0.03428662176546815 6.796259722278014e-05 0.014999722686223736 4.064513801534418e-05 0.0005305066690044778 1.4375276950654077e-06 0.014999722686223736 4.064513801534418e-05 0.019286899079244413 7.918927872857675e-05']
['59866.325120023204 0.034301132340092945 6.798577520445779e-05 0.015095004081102347 4.069702523258539e-05 0.0005338765589999494 1.4393628299781237e-06 0.01509500408110235 4.069702523258539e-05 0.019206128258990596 7.923580941047274e-05']
['59866.32515156117 0.034322605980782996 6.79806364092682e-05 0.01504443950203035 4.0677354626061024e-05 0.0005320882028433562 1.438667124586575e-06 0.015044439502030351 4.0677354626061024e-05 0.019278166478752645 7.922129831038778e-05']
['59866.32518309913 0.034287250581182295 6.79440915385425e-05 0.015088506725028185 4.07014243414054e-05 0.0005336467620363424 1.4395184166256577e-06 0.015088506725028183 4.07014243414054e-05 0.01919874385615411 7.920230753214827e-05']
['59866.325214637094 0.03409964438704308 6.782943638690823e-05 0.015045086092765919 4.06813595090454e-05 0.0005321110713126279 1.438808768347346e-06 0.015045086092765917 4.06813595090454e-05 0.019054558294277157 7.909364988461355e-05']
['59866.32524617506 0.03430051536216883 6.79401963159463e-05 0.015079369724420793 4.069137374537913e-05 0.0005333236067448535 1.4391629495059687e-06 0.015079369724420793 4.069137374537913e-05 0.01922114563774804 7.919380135298124e-05']
['59866.32527771302 0.03438304459303386 6.798563361560965e-05 0.015102538352595956 4.07065680053154e-05 0.0005341430293445725 1.4397003365227423e-06 0.015102538352595956 4.07065680053154e-05 0.0192805062404379 7.924058970557501e-05']
['59866.325309250984 0.03424194362911092 6.78952289966948e-05 0.015079215288241255 4.0701709815235325e-05 0.0005333181446823278 1.439528513197026e-06 0.015079215288241255 4.0701709815235325e-05 0.019162728340869663 7.916054132203273e-05']
['59866.32534078895 0.034182791831284386 6.78799827364022e-05 0.014977652494234736 4.0641923950130075e-05 0.000529726095637803 1.437414020761798e-06 0.014977652494234736 4.0641923950130075e-05 0.019205139337049648 7.911673677966261e-05']
['59866.32537232691 0.034203525156348856 6.789692261288475e-05 0.014982817040646553 4.063641397533284e-05 0.0005299087541023071 1.4372191452672887e-06 0.014982817040646555 4.063641397533284e-05 0.0192207081157023 7.912844141694367e-05']
['59866.325403864874 0.03431892555902347 6.796138201691561e-05 0.01500379456575771 4.06569984364861e-05 0.0005306506822834793 1.4379471716547164e-06 0.015003794565757709 4.06569984364861e-05 0.019315130993265758 7.919432408647462e-05']
['59866.32543540283 0.034323341143213594 6.79786931414252e-05 0.015072367315976203 4.068920299201233e-05 0.0005330759472076302 1.4390861748107333e-06 0.015072367315976203 4.068920299201233e-05 0.01925097382723739 7.922571527819257e-05']
['59866.3254669408 0.034214869528174444 6.788229075985032e-05 0.01501006684725272 4.064563808698569e-05 0.0005308725188622337 1.4375453814817737e-06 0.01501006684725272 4.064563808698569e-05 0.019204802680921722 7.912062496152998e-05']
['59866.32549847876 0.03419624922878257 6.789674860264769e-05 0.01504310547098831 4.0676559575127745e-05 0.0005320410211467831 1.4386390054118992e-06 0.01504310547098831 4.0676559575127745e-05 0.019153143757794255 7.914891641507202e-05']
['59866.32553001672 0.03426377950969951 6.794778843533375e-05 0.015150196411987638 4.0744823591129304e-05 0.0005358285883957621 1.4410533510967777e-06 0.01515019641198764 4.0744823591129304e-05 0.019113583097711873 7.922778933382606e-05']
['59866.32556155469 0.03425650320487168 6.791141567252656e-05 0.014941477196368652 4.0615760300227835e-05 0.0005284466561993121 1.4364886709370718e-06 0.01494147719636865 4.0615760300227835e-05 0.01931502600850303 7.913027463248342e-05']
['59866.32559309265 0.03424378689095226 6.788868949278667e-05 0.015027269771084886 4.0676545082567544e-05 0.0005314809478319054 1.438638492842434e-06 0.015027269771084886 4.0676545082567544e-05 0.019216517119867375 7.914199568435303e-05']
['59866.32562463061 0.034271529616547815 6.793722848086373e-05 0.015070288282461996 4.0691527680051754e-05 0.0005330024164385992 1.4391683938313158e-06 0.015070288282461998 4.0691527680051754e-05 0.019201241334085815 7.919133436555732e-05']
['59866.32565616858 0.03425877950195871 6.794826005882679e-05 0.014961772553911196 4.062650949890021e-05 0.0005291644576381374 1.4368688460710686e-06 0.014961772553911198 4.062650949890021e-05 0.019297006948047507 7.91674132398311e-05']
['59866.325687706536 0.03424167931312613 6.79140294282477e-05 0.015016226762392788 4.0660571623700624e-05 0.0005310903812941378 1.4380735473008906e-06 0.015016226762392788 4.0660571623700624e-05 0.019225452550733345 7.915552714717389e-05']
['59866.3257192445 0.03427350709143012 6.792829558536141e-05 0.015045873109102437 4.0660280115759744e-05 0.0005321389063215726 1.4380632373165036e-06 0.015045873109102437 4.0660280115759744e-05 0.019227633982327685 7.916761787640371e-05']
['59866.32575078247 0.034387988168774974 6.80170079499781e-05 0.015093801636451862 4.069302896694024e-05 0.0005338340312199673 1.4392214909933828e-06 0.015093801636451862 4.069302896694024e-05 0.019294186532323114 7.926055751110776e-05']
['59866.325782320426 0.034221481485561325 6.792754753907974e-05 0.015023968210362724 4.067554333492372e-05 0.0005313641790077164 1.438603063267046e-06 0.015023968210362722 4.067554333492372e-05 0.019197513275198603 7.91748163260591e-05']
['59866.32581385839 0.03424972706541876 6.790490365477965e-05 0.01504346896974444 4.065796836312461e-05 0.0005320538772854155 1.437981475792262e-06 0.01504346896974444 4.065796836312461e-05 0.01920625809567432 7.91463601928841e-05']
['59866.32584539636 0.03424518647733289 6.793622930230555e-05 0.01500879140512073 4.0663003690987295e-05 0.0005308274093244707 1.4381595640854696e-06 0.015008791405120733 4.0663003690987295e-05 0.01923639507221216 7.91758240941557e-05']
['59866.325876934316 0.034319800608518275 6.797419940845863e-05 0.014985753704772408 4.064201370394732e-05 0.0005300126173493806 1.437417195153726e-06 0.014985753704772408 4.064201370394732e-05 0.019334046903745867 7.919763293895051e-05']
['59866.32590847228 0.0342839247487852 6.793995874919092e-05 0.014995520674635011 4.063757260574387e-05 0.0005303580532455279 1.4372601234355402e-06 0.014995520674635013 4.063757260574387e-05 0.019288404074150188 7.916596681736963e-05']
['59866.32594001024 0.034200237707871624 6.789933008430382e-05 0.01499333776926818 4.0635711934686354e-05 0.0005302808487612094 1.437194315658591e-06 0.01499333776926818 4.0635711934686354e-05 0.019206899938603444 7.913014665938675e-05']
['59866.325971548205 0.03444834437801004 6.804875748733402e-05 0.015085237109531456 4.0678835033769425e-05 0.0005335311230433837 1.4387194832987048e-06 0.015085237109531456 4.0678835033769425e-05 0.019363107268478584 7.928052103306728e-05']
['59866.32600308617 0.034212814194243636 6.788421342730184e-05 0.014965571566153708 4.063093089636518e-05 0.0005292988202108623 1.4370252210181628e-06 0.014965571566153708 4.063093089636518e-05 0.01924724262808993 7.911472036320844e-05']
['59866.32603462413 0.034345982229272945 6.798904682537061e-05 0.0150670047744892 4.0690055721507424e-05 0.0005328862860998099 1.4391163339472365e-06 0.015067004774489202 4.0690055721507424e-05 0.01927897745478374 7.923503721739403e-05']
['59866.326066162095 0.03426321051423002 6.793821049509966e-05 0.015021931476702572 4.0662616595666043e-05 0.0005312921442899888 1.4381458733890642e-06 0.015021931476702574 4.0662616595666043e-05 0.019241279037527446 7.917732524961048e-05']
['59866.32609770006 0.034318032156298195 6.795137919877847e-05 0.01503941428444221 4.067323258326761e-05 0.000531910472127964 1.4385213371451955e-06 0.015039414284442212 4.067323258326761e-05 0.01927861787185598 7.919407669635883e-05']
['59866.32612923802 0.03427636390661063 6.793911610845515e-05 0.01497775924671647 4.064203036648154e-05 0.0005297298712345043 1.4374177844703226e-06 0.014977759246716472 4.064203036648154e-05 0.019298604659894157 7.9167532043813e-05']
['59866.326160775985 0.034274317390518776 6.790568451608395e-05 0.015071957873252243 4.06874551824087e-05 0.0005330614661335344 1.4390243586911774e-06 0.015071957873252243 4.06874551824087e-05 0.01920235951726653 7.91621816198773e-05']
['59866.32619231394 0.03432062005121839 6.794110609251501e-05 0.015049797814837323 4.0671272451733894e-05 0.0005322777143922145 1.4384520116734841e-06 0.015049797814837325 4.0671272451733894e-05 0.01927082223638106 7.918425537894228e-05']
['59866.32622385191 0.034287627577705634 6.797190136253914e-05 0.015106083399525844 4.0704036965298364e-05 0.000534268409731769 1.4396108192938812e-06 0.015106083399525842 4.0704036965298364e-05 0.019181544178179792 7.922750784993256e-05']
['59866.326255389875 0.034264153446896324 6.792810876847986e-05 0.015128088902831042 4.070920855301161e-05 0.0005350466952042685 1.4397937267934804e-06 0.015128088902831042 4.070920855301161e-05 0.01913606454406528 7.919259827708031e-05']
['59866.32628692783 0.03413327123318938 6.782459404656802e-05 0.015021027923620318 4.0668008287730044e-05 0.0005312601876367917 1.4383365654876452e-06 0.015021027923620318 4.0668008287730044e-05 0.01911224330956906 7.908263055610017e-05']
['59866.3263184658 0.03425322471340309 6.793626819560614e-05 0.01505590082510968 4.06881655330371e-05 0.0005324935642261225 1.4390494822053638e-06 0.01505590082510968 4.06881655330371e-05 0.019197323888293413 7.91887829859075e-05']
['59866.326350003765 0.03428818334672692 6.795312291585309e-05 0.015034520795238591 4.066481605693506e-05 0.0005317374003511367 1.4382236634186427e-06 0.015034520795238591 4.066481605693506e-05 0.019253662551488325 7.919125064652915e-05']
['59866.32638154172 0.03422178764348252 6.787773121515616e-05 0.015080964096020827 4.067844854407021e-05 0.0005333799961051359 1.4387058140217971e-06 0.015080964096020827 4.067844854407021e-05 0.019140823547461695 7.913357423287257e-05']
['59866.32641307969 0.03430955108565608 6.79732322680257e-05 0.015003771708256739 4.0656759558999605e-05 0.0005306498738647535 1.4379387230918787e-06 0.015003771708256739 4.0656759558999605e-05 0.019305779377399343 7.92043711091836e-05']
['59866.32644461765 0.034401540720981616 6.804980123324586e-05 0.015053665120706782 4.066974619484871e-05 0.0005324144923578972 1.4383980313784385e-06 0.01505366512070678 4.066974619484871e-05 0.019347875600274837 7.927675386541556e-05']
['59866.32647615561 0.034154194472876986 6.784475545744336e-05 0.014959398363102453 4.062153484173936e-05 0.0005290804878152363 1.4366929035649938e-06 0.014959398363102453 4.062153484173936e-05 0.019194796109774533 7.907603894972822e-05']
['59866.32650769358 0.034253418198091266 6.791531151822977e-05 0.014987135399499415 4.064178740604332e-05 0.0005300614848039687 1.4374091915026075e-06 0.014987135399499413 4.064178740604332e-05 0.019266282798591855 7.914697986768804e-05']
['59866.32653923154 0.03425607733940711 6.795109452515904e-05 0.015025178440778265 4.066512481111598e-05 0.0005314069821528083 1.4382345833639968e-06 0.015025178440778263 4.066512481111598e-05 0.019230898898628848 7.91896686637262e-05']
['59866.3265707695 0.03419788513332274 6.788055057442654e-05 0.014990487365201678 4.0647690932539005e-05 0.0005301800363396553 1.4376179860411546e-06 0.014990487365201676 4.0647690932539005e-05 0.01920739776812106 7.912018657987665e-05']
['59866.32660230747 0.034241451076015346 6.791889573744522e-05 0.015143543728068278 4.073099056555066e-05 0.0005355932978334079 1.4405641078970536e-06 0.015143543728068278 4.073099056555066e-05 0.019097907347947068 7.919589629927128e-05']
['59866.32663384543 0.03422991597925712 6.789547882675613e-05 0.015060004954261349 4.068604388388376e-05 0.0005326387181020282 1.438974444216417e-06 0.01506000495426135 4.068604388388376e-05 0.019169911024995767 7.915270186188091e-05']
['59866.32666538339 0.03423657698202002 6.792126190064568e-05 0.014980168515451886 4.0640500435447066e-05 0.0005298150816852771 1.437363674228828e-06 0.014980168515451885 4.0640500435447066e-05 0.019256408466568134 7.915142509026402e-05']
['59866.32669692135 0.03431163649315745 6.797663260291864e-05 0.014974255310633632 4.0635752241006424e-05 0.0005296059448460905 1.4371957412030525e-06 0.014974255310633632 4.0635752241006424e-05 0.01933738118252382 7.919650838404835e-05']
['59866.32672845932 0.03422170319914756 6.787261538847098e-05 0.01498561846448005 4.0648529095745455e-05 0.0005300078342024841 1.4376476300005821e-06 0.01498561846448005 4.0648529095745455e-05 0.019236084734667508 7.911380939708928e-05']
['59866.32675999728 0.0342605224446735 6.791989947439849e-05 0.0149999398099915 4.06644501945315e-05 0.0005305143481869006 1.4382107236830828e-06 0.0149999398099915 4.06644501945315e-05 0.019260582634682 7.916255588493797e-05']
['59866.32679153524 0.03420484249094837 6.788566852770537e-05 0.015089540586119325 4.0690289992261336e-05 0.0005336833273925925 1.439124619580238e-06 0.015089540586119325 4.0690289992261336e-05 0.019115301904829046 7.914646985878657e-05']
['59866.32682307321 0.034230330351201786 6.790568269988604e-05 0.014982442231643396 4.064772767382388e-05 0.0005298954979455142 1.4376192854982887e-06 0.014982442231643394 4.064772767382388e-05 0.019247888119558392 7.91417684158179e-05']
['59866.32685461117 0.03429196852756163 6.794164127603946e-05 0.01508944917840666 4.0702682650908984e-05 0.0005336800945060797 1.4395629202206433e-06 0.01508944917840666 4.0702682650908984e-05 0.01920251934915497 7.920085223192132e-05']
['59866.32688614913 0.03425966286660366 6.793510761138835e-05 0.014973506928178462 4.063875268629494e-05 0.0005295794762311875 1.4373018602473067e-06 0.014973506928178462 4.063875268629494e-05 0.019286155938425198 7.916240942561538e-05']
['59866.326917687096 0.03423150789551175 6.787858257443344e-05 0.015085386980150788 4.067853333680117e-05 0.0005335364236322483 1.4387088129511906e-06 0.015085386980150788 4.067853333680117e-05 0.019146120915360963 7.913434808442805e-05']
['59866.326949225055 0.034260779090735244 6.791044291244914e-05 0.014977771508758985 4.063007683268365e-05 0.0005297303049155439 1.436995014694467e-06 0.014977771508758985 4.063007683268365e-05 0.019283007581976257 7.91367891691013e-05']
['59866.32698076302 0.034306324150811994 6.79674960914359e-05 0.014995506860538079 4.064930506116599e-05 0.000530357564671792 1.4376750741633258e-06 0.014995506860538079 4.064930506116599e-05 0.019310817290273917 7.919562189221756e-05']
['59866.327012300986 0.03410420405860582 6.78129540110289e-05 0.015027304095382166 4.067489033755617e-05 0.0005314821618055899 1.438579968209519e-06 0.015027304095382166 4.067489033755617e-05 0.019076899963223655 7.90761875388169e-05']
['59866.327043838945 0.034254918902278775 6.79366486685148e-05 0.015072734121624761 4.068632258837384e-05 0.0005330889203036573 1.4389843013713634e-06 0.015072734121624761 4.068632258837384e-05 0.01918218478065401 7.918816248704369e-05']
['59866.32707537691 0.03416885319043586 6.786685800426118e-05 0.014949947933089775 4.061236809241546e-05 0.000528746247226156 1.4363686961278864e-06 0.014949947933089777 4.061236809241546e-05 0.019218905257346083 7.909029559588455e-05']
['59866.327106914876 0.03437307118263435 6.804621104823758e-05 0.015005404382464636 4.0656496906395424e-05 0.0005307076179026747 1.4379294336562629e-06 0.015005404382464636 4.0656496906395424e-05 0.019367666800169714 7.926687567149995e-05']
['59866.327138452834 0.0342609991173634 6.792917364587184e-05 0.015108254513707224 4.070909665065688e-05 0.0005343451971882099 1.4397897690572806e-06 0.015108254513707226 4.070909665065688e-05 0.019152744603656173 7.919345416335578e-05']
['59866.3271699908 0.03417866002205397 6.787057874212932e-05 0.014970411165398365 4.062819234019201e-05 0.0005294699860202781 1.4369283644066306e-06 0.014970411165398365 4.062819234019201e-05 0.019208248856655605 7.910161484839113e-05']
['59866.32720152876 0.03428226088908354 6.793277498224999e-05 0.015110933555333501 4.0703998221960576e-05 0.0005344399489032256 1.4396094490286098e-06 0.015110933555333501 4.0703998221960576e-05 0.019171327333750036 7.919392267113922e-05']
['59866.327233066724 0.03432644136335429 6.795871786753935e-05 0.015057829381462835 4.0677827035516626e-05 0.0005325617729542638 1.4386838326532467e-06 0.015057829381462835 4.0677827035516626e-05 0.019268611981891455 7.920273320114161e-05']
['59866.32726460469 0.03428300381265471 6.794018147319188e-05 0.015023623663631224 4.066143604462784e-05 0.00053135199315984 1.438104119937219e-06 0.015023623663631224 4.066143604462784e-05 0.01925938014902348 7.91784101875101e-05']
['59866.32729614265 0.03427688516272446 6.796891130132726e-05 0.015018133295028534 4.064340225923356e-05 0.0005311578110926145 1.4374663052509617e-06 0.015018133295028536 4.064340225923356e-05 0.019258751867695923 7.919380689607972e-05']
['59866.327327680614 0.03426430062899801 6.791577228601766e-05 0.015031206344218251 4.0665117807396716e-05 0.0005316201756259093 1.4382343356580986e-06 0.015031206344218251 4.0665117807396716e-05 0.01923309428477976 7.915935782644815e-05']
['59866.32735921858 0.034258434820935664 6.792019963811416e-05 0.01510741913330698 4.070641494960964e-05 0.0005343156516504185 1.4396949232844888e-06 0.015107419133306979 4.070641494960964e-05 0.019151015687628684 7.91843781116647e-05']
['59866.32739075654 0.034214134834682136 6.790685282046159e-05 0.014968323294410377 4.062106331625609e-05 0.00052939614268955 1.436676226762448e-06 0.014968323294410377 4.062106331625609e-05 0.01924581154027176 7.912908090533542e-05']
['59866.327422294504 0.03423058866023858 6.789673048107102e-05 0.015040960779136726 4.067934925200366e-05 0.0005319651681890968 1.4387376700484396e-06 0.015040960779136726 4.067934925200366e-05 0.019189627881101852 7.915033458922135e-05']
['59866.32745383246 0.034305697815131535 6.795227282333242e-05 0.015034132356787312 4.068007647031113e-05 0.0005317236621512238 1.4387633901347376e-06 0.015034132356787314 4.068007647031113e-05 0.01927156545834422 7.919835859086326e-05']
['59866.32748537043 0.03428836885239585 6.795764421389295e-05 0.015008692365263998 4.0668805685245934e-05 0.000530823906506079 1.4383647676557037e-06 0.015008692365263997 4.0668805685245934e-05 0.01927967648713185 7.919717900889116e-05']
['59866.32751690839 0.034216485043520824 6.788794616641301e-05 0.015017600354184613 4.065844910931869e-05 0.0005311389621660177 1.4379984787107422e-06 0.015017600354184613 4.065844910931869e-05 0.019198884689336213 7.913205872886696e-05']
['59866.32754844635 0.03418867855874271 6.789830878886218e-05 0.0150561544999641 4.06758111013414e-05 0.0005325025361387934 1.4386125335668166e-06 0.0150561544999641 4.06758111013414e-05 0.019132524058778612 7.914987015238677e-05']
['59866.32757998432 0.03441284112131575 6.808910786601756e-05 0.014955834059003772 4.060477332628012e-05 0.0005289544263450168 1.436100086222983e-06 0.014955834059003772 4.060477332628012e-05 0.019457007062311977 7.927719865679389e-05']
['59866.32761152228 0.03415055388974606 6.78392192898377e-05 0.015028995283991747 4.067742617947312e-05 0.0005315419753671267 1.4386696552708483e-06 0.015028995283991747 4.067742617947312e-05 0.019121558605754315 7.910001690544175e-05']
['59866.32764306024 0.03424351288530819 6.790529543136616e-05 0.015106329974219818 4.070346790682004e-05 0.0005342771305276329 1.4395906929672738e-06 0.015106329974219818 4.070346790682004e-05 0.019137182911088374 7.917007924249316e-05']
['59866.32767459821 0.03422059244647634 6.7887469700152e-05 0.015016004160023244 4.067380764844205e-05 0.000531082508345814 1.4385416759152205e-06 0.015016004160023244 4.067380764844205e-05 0.0192045882864531 7.913954239766312e-05']
['59866.327706136166 0.03426900878764948 6.788944549368789e-05 0.015020801670597172 4.066292492941115e-05 0.0005312521855730087 1.4381567784645431e-06 0.015020801670597172 4.066292492941115e-05 0.019248207117052305 7.913564477057949e-05']
['59866.32773767413 0.03425405408615189 6.792245822374481e-05 0.014992864718828948 4.064745962616475e-05 0.0005302641180243792 1.4376098052516364e-06 0.014992864718828948 4.064745962616475e-05 0.01926118936732294 7.915602507211345e-05']
['59866.3277692121 0.03427207746648178 6.792460450811809e-05 0.01505789986537865 4.0662168160737455e-05 0.0005325642658128439 1.438130013247833e-06 0.015057899865378649 4.0662168160737455e-05 0.01921417760110313 7.916542058952473e-05']
['59866.327800750056 0.034298594445140225 6.796390486279628e-05 0.015145350483460104 4.071918913422884e-05 0.000535657198733756 1.4401467176458477e-06 0.015145350483460102 4.071918913422884e-05 0.019153243961680125 7.922843383500852e-05']
['59866.32783228802 0.03426599539328942 6.791454862884746e-05 0.015086001933062369 4.070223010781903e-05 0.0005335581731423921 1.439546914782926e-06 0.015086001933062369 4.070223010781903e-05 0.019179993460227054 7.917737966875347e-05']
['59866.32786382599 0.03413366070916059 6.783504852359624e-05 0.015015132103076081 4.066201737334855e-05 0.0005310516656405255 1.4381246802348776e-06 0.015015132103076083 4.066201737334855e-05 0.019118528606084505 7.908851664476427e-05']
['59866.327895363946 0.034258620311941594 6.792875946692491e-05 0.015026921643478748 4.066603887438701e-05 0.0005314686353364957 1.438266911739082e-06 0.015026921643478748 4.066603887438701e-05 0.019231698668462846 7.91709737242665e-05']
['59866.32792690191 0.034284468074522366 6.798230624271372e-05 0.0150157168007536 4.0639559230247906e-05 0.000531072345090657 1.4373303859044035e-06 0.015015716800753602 4.0639559230247906e-05 0.019268751273768765 7.920333159979409e-05']
['59866.32795843987 0.03416182274043892 6.787162197758013e-05 0.014963458976006476 4.0640779180355955e-05 0.0005292241026187158 1.4373735328132972e-06 0.014963458976006476 4.0640779180355955e-05 0.019198363764432444 7.91089754847956e-05']
['59866.327989977835 0.0343822474066713 6.801948513182259e-05 0.015021365257610832 4.0660481529231264e-05 0.0005312721183861391 1.4380703608608585e-06 0.015021365257610832 4.0660481529231264e-05 0.019360882149060468 7.924597854646752e-05']
['59866.3280215158 0.0342947954520273 6.793004935307619e-05 0.015074445224679057 4.06851647216915e-05 0.0005331494381945975 1.4389433502144887e-06 0.015074445224679055 4.06851647216915e-05 0.019220350227348245 7.918190597316117e-05']
['59866.32805305376 0.03426313975263726 6.79468980325371e-05 0.014981902689358655 4.063655004325617e-05 0.000529876415540709 1.4372239576856428e-06 0.014981902689358655 4.063655004325617e-05 0.019281237063278608 7.917139730775286e-05']
['59866.328084591725 0.034146452039716016 6.782577398890512e-05 0.015129810042373019 4.073172674791823e-05 0.0005351075680633476 1.4405901450221236e-06 0.015129810042373017 4.073172674791823e-05 0.019016641997343 7.911642800999749e-05']
['59866.32811612969 0.03429820388303952 6.796387638947579e-05 0.015078207433733773 4.0697849388726245e-05 0.0005332824991208205 1.439391978538945e-06 0.015078207433733774 4.0697849388726245e-05 0.01921999644930575 7.921744403066404e-05']
['59866.32814766765 0.03428928499778175 6.797150127684034e-05 0.015089717006125616 4.069748152896826e-05 0.0005336895669739395 1.4393789681614236e-06 0.015089717006125616 4.069748152896826e-05 0.019199567991656133 7.922379685819294e-05']
['59866.328179205615 0.03425841064102269 6.792761859822801e-05 0.015074774014304487 4.068665838731265e-05 0.0005331610667488474 1.4389961778293625e-06 0.015074774014304487 4.068665838731265e-05 0.019183636626718202 7.918058814603621e-05']
['59866.32821074357 0.034226068912384895 6.789987547119763e-05 0.015037592354000403 4.0674680718607876e-05 0.0005318460345200122 1.4385725544557887e-06 0.015037592354000404 4.0674680718607876e-05 0.01918847655838449 7.915063322908311e-05']
['59866.32824228154 0.03436194468456488 6.799968898826291e-05 0.01501829592871916 4.06553908077788e-05 0.000531163563082787 1.4378903134201778e-06 0.01501829592871916 4.06553908077788e-05 0.019343648755845724 7.92263750542312e-05']
['59866.328273819505 0.0341262520489956 6.780652565619455e-05 0.014999765913743681 4.0650294834380575e-05 0.0005305081978652505 1.4377100802299129e-06 0.014999765913743681 4.0650294834380575e-05 0.01912648613525192 7.905802547297926e-05']
['59866.32830535746 0.03420209862260819 6.788682728618858e-05 0.015044967397370643 4.066172254916587e-05 0.0005321068733217657 1.4381142529624292e-06 0.015044967397370643 4.066172254916587e-05 0.019157131225237545 7.913278081585495e-05']
['59866.32833689543 0.03421262118651077 6.790965111486934e-05 0.014997731198201669 4.063946551266774e-05 0.0005304362345238511 1.4373270713230396e-06 0.014997731198201669 4.063946551266774e-05 0.0192148899883091 7.914093044498899e-05']
['59866.328368433395 0.034258304988339865 6.792849569203575e-05 0.01502233809258797 4.065053970077215e-05 0.0005313065253851222 1.4377187406069385e-06 0.015022338092587968 4.065053970077215e-05 0.019235966895751896 7.916278737479481e-05']
['59866.32839997135 0.03430675112889742 6.796285372298125e-05 0.015030243169334417 4.0670278592944526e-05 0.0005315861102828372 1.438416861109248e-06 0.015030243169334415 4.0670278592944526e-05 0.019276507959563004 7.920240556320917e-05']
['59866.32843150932 0.03413749543749472 6.785019478188166e-05 0.015002298412826435 4.065027520823795e-05 0.0005305977666980052 1.43770938609711e-06 0.015002298412826435 4.065027520823795e-05 0.01913519702466828 7.909547273039568e-05']
['59866.32846304728 0.03427214427129255 6.792505422587254e-05 0.01507191746377417 4.0682813403740706e-05 0.0005330600369406048 1.4388601893534554e-06 0.015071917463774169 4.0682813403740706e-05 0.01920022680751838 7.91764125104902e-05']
['59866.32849458524 0.034202333829672624 6.789025879348117e-05 0.015042174889751833 4.0671487757950997e-05 0.0005320081085681755 1.438459626573202e-06 0.015042174889751833 4.0671487757950997e-05 0.01916015893992079 7.914074270242227e-05']
['59866.32852612321 0.03419673610153293 6.788468356783786e-05 0.015042592914382067 4.0678001203172476e-05 0.0005320228931651169 1.4386899925739923e-06 0.015042592914382067 4.0678001203172476e-05 0.019154143187150866 7.913930783745064e-05']
['59866.32855766117 0.03423545046290121 6.791290484034173e-05 0.015048768405939435 4.068798588466628e-05 0.0005322413065000897 1.4390431284439785e-06 0.015048768405939435 4.068798588466628e-05 0.019186682056961776 7.916864808245821e-05']
['59866.32858919913 0.03418086173905674 6.786550629934735e-05 0.014981108156260898 4.062541388731391e-05 0.0005298483146807183 1.436830096737809e-06 0.014981108156260898 4.062541388731391e-05 0.01919975358279584 7.909583553375179e-05']
['59866.3286207371 0.034369403020392784 6.800202096345577e-05 0.014984141189647505 4.062815822489727e-05 0.0005299555862931719 1.436927157824899e-06 0.014984141189647505 4.062815822489727e-05 0.01938526183074528 7.921440586068652e-05']
['59866.32865227506 0.034179118462895945 6.783909883427568e-05 0.014986709113226212 4.0638464728518525e-05 0.0005300464080111794 1.4372916758243026e-06 0.014986709113226212 4.0638464728518525e-05 0.01919240934966973 7.907988458601637e-05']
['59866.32868381302 0.034289793895395125 6.795834777107297e-05 0.015079528643116976 4.0691152673124225e-05 0.0005333292273439752 1.4391551306743803e-06 0.015079528643116976 4.0691152673124225e-05 0.019210265252278147 7.920926042857365e-05']
['59866.32871535098 0.03422440068381805 6.792975578028327e-05 0.015011952131505666 4.0653327011486736e-05 0.0005309391971528981 1.4378173215576406e-06 0.015011952131505666 4.0653327011486736e-05 0.019212448552312387 7.916529995820016e-05']
['59866.32874688895 0.03440326252707096 6.801831784705671e-05 0.015061449867175628 4.0679256811871276e-05 0.0005326898214426159 1.4387344006475486e-06 0.015061449867175628 4.0679256811871276e-05 0.019341812659895333 7.925461183747864e-05']
['59866.32877842691 0.03426772231124324 6.794536189034733e-05 0.015165411100085565 4.074281076030116e-05 0.0005363666979109591 1.4409821617687983e-06 0.015165411100085565 4.074281076030116e-05 0.019102311211157675 7.922467312056249e-05']
['59866.32880996487 0.034365643632524256 6.801592610798758e-05 0.015050245115528698 4.067477086972163e-05 0.0005322935344180102 1.4385757428992063e-06 0.015050245115528698 4.067477086972163e-05 0.01931539851699556 7.925025671650271e-05']
['59866.32884150284 0.034234231613112676 6.792141723136329e-05 0.01491670995837252 4.0589573435267316e-05 0.0005275706943429082 1.435562500047617e-06 0.01491670995837252 4.0589573435267316e-05 0.019317521654740155 7.912542189697248e-05']
['59866.3288730408 0.034180779661856724 6.786435077965947e-05 0.014943483295289784 4.061003554893399e-05 0.0005285176074347854 1.4362861992778746e-06 0.014943483295289783 4.061003554893399e-05 0.01923729636656694 7.90869464199393e-05']
['59866.32890457876 0.03421113226995165 6.78805534403758e-05 0.015107813371627978 4.069394210335782e-05 0.0005343295949787614 1.4392537865877329e-06 0.015107813371627978 4.069394210335782e-05 0.019103318898323673 7.914396034621437e-05']
['59866.328936116726 0.03427230138996767 6.79079923332857e-05 0.015082724405984996 4.0690466016929756e-05 0.0005334422543345073 1.4391308451793682e-06 0.015082724405984994 4.0690466016929756e-05 0.019189576983982673 7.91657087848805e-05']
['59866.328967654685 0.034327005488387526 6.796689356924065e-05 0.015033736713105436 4.065489625299057e-05 0.0005317096691184075 1.4378728221225832e-06 0.015033736713105438 4.065489625299057e-05 0.019293268775282087 7.919797478972498e-05']
['59866.32899919265 0.03426203425039472 6.793532847134257e-05 0.01507700931061413 4.0684457369423495e-05 0.0005332401241837263 1.4389183327456085e-06 0.01507700931061413 4.0684457369423495e-05 0.019185024939780592 7.91860715400988e-05']
['59866.329030730616 0.03438765682756798 6.801153778584533e-05 0.015074329982046773 4.0682034863855476e-05 0.0005331453623202457 1.438832654137649e-06 0.015074329982046771 4.0682034863855476e-05 0.01931332684552121 7.925021913319495e-05']
['59866.329062268574 0.03429327571690576 6.794259075730643e-05 0.015043941964763078 4.0669869261284284e-05 0.0005320706060621431 1.4384023839632276e-06 0.015043941964763078 4.0669869261284284e-05 0.019249333752142682 7.918480854649317e-05']
['59866.32909380654 0.0343001690755522 6.795300480910725e-05 0.015108394066585836 4.0693374051812546e-05 0.0005343501328616441 1.439233695874097e-06 0.015108394066585838 4.0693374051812546e-05 0.019191775008966364 7.920581767968363e-05']
['59866.329125344506 0.0344001777406872 6.801079124929515e-05 0.015101029217525378 4.0710439337139986e-05 0.0005340896546098445 1.4398372568774605e-06 0.015101029217525376 4.0710439337139986e-05 0.01929914852316183 7.926416338660339e-05']
['59866.329156882464 0.03422920271397715 6.790985717951777e-05 0.015010986561126932 4.065913341410364e-05 0.000530905047086525 1.4380226810416546e-06 0.015010986561126932 4.065913341410364e-05 0.019218216152850215 7.915120865867041e-05']
['59866.32918842043 0.03430001470434867 6.796022253379111e-05 0.015048534344342177 4.066188440399741e-05 0.0005322330282644915 1.4381199774060966e-06 0.015048534344342175 4.066188440399741e-05 0.019251480360006498 7.919583758081264e-05']
['59866.32921995839 0.03427769825409918 6.792746523879161e-05 0.014942802027706124 4.0608431101623456e-05 0.0005284935125228948 1.4362294535622297e-06 0.014942802027706124 4.0608431101623456e-05 0.019334896226393058 7.91402881616092e-05']
['59866.329251496354 0.03432595770572215 6.799163165362199e-05 0.01507870855245151 4.0688726408102744e-05 0.0005333002225699323 1.4390693191029536e-06 0.01507870855245151 4.0688726408102744e-05 0.01924724915327064 7.923657256365428e-05']
['59866.32928303432 0.03430595923371608 6.793925975970568e-05 0.015057351283669121 4.067068627745345e-05 0.0005325448637037858 1.4384312799992074e-06 0.015057351283669121 4.067068627745345e-05 0.01924860795004696 7.918237012729414e-05']
['59866.32931457228 0.034235186218730965 6.79117116918383e-05 0.014992196223646283 4.0633749925610646e-05 0.0005302404748437672 1.4371249237824154e-06 0.014992196223646285 4.0633749925610646e-05 0.01924298999508468 7.913976382282442e-05']
['59866.329346110244 0.03435546410783225 6.800280412576893e-05 0.014981475430321228 4.0651758294326115e-05 0.0005298613043434229 1.4377618395375461e-06 0.014981475430321228 4.0651758294326115e-05 0.019373988677511025 7.922718486345459e-05']
['59866.32937764821 0.03427650553503871 6.791937123993579e-05 0.0150343273608012 4.066804402244725e-05 0.0005317305590073867 1.4383378293447305e-06 0.015034327360801202 4.066804402244725e-05 0.019242178174237505 7.916394882924881e-05']
['59866.32940918617 0.03426279589952628 6.795449929814811e-05 0.014951842640886396 4.061368544588063e-05 0.0005288132588064997 1.4364152879758376e-06 0.014951842640886398 4.061368544588063e-05 0.01931095325863988 7.916618861836754e-05']
['59866.329440724134 0.03432330796057173 6.795980802144617e-05 0.01502467805355135 4.06639443352034e-05 0.000531389284574892 1.438192832569177e-06 0.01502467805355135 4.06639443352034e-05 0.01929862990702038 7.919653954061591e-05']
['59866.32947226209 0.034235624352804465 6.791193917004995e-05 0.01501790092131381 4.06742353406534e-05 0.0005311495925536493 1.4385568024329002e-06 0.01501790092131381 4.06742353406534e-05 0.019217723431490655 7.91607535486078e-05']
['59866.32950380006 0.03427685301720473 6.794937245003629e-05 0.01504606754745098 4.067779402078935e-05 0.0005321457831714164 1.4386826649961265e-06 0.015046067547450978 4.067779402078935e-05 0.01923078546975375 7.919469769341579e-05']
['59866.32953533802 0.03421102871878504 6.789257306015877e-05 0.015023122021659186 4.067016091879617e-05 0.0005313342512043927 1.4384126992376066e-06 0.015023122021659185 4.067016091879617e-05 0.019187906697125858 7.914204613155873e-05']
['59866.32956687598 0.03423160150519107 6.788302642080874e-05 0.01496607747689069 4.062868309475489e-05 0.0005293167131429854 1.4369457212987478e-06 0.014966077476890688 4.062868309475489e-05 0.019265524028300382 7.911254746285345e-05']
['59866.32959841395 0.03434277868162972 6.796733345869021e-05 0.015042501855918676 4.066346430048413e-05 0.0005320196726307704 1.4381758548139708e-06 0.015042501855918676 4.066346430048413e-05 0.019300276825711046 7.920275087647863e-05']
['59866.329629951906 0.034318121759097577 6.794867444645622e-05 0.015047030209445108 4.065871695282494e-05 0.0005321798303747258 1.438007951736963e-06 0.015047030209445108 4.065871695282494e-05 0.019271091549652467 7.91843016214731e-05']
['59866.32966148987 0.03430635277811926 6.799174846201794e-05 0.014984287949506453 4.0645133141988965e-05 0.0005299607768613939 1.437527522705725e-06 0.014984287949506452 4.0645133141988965e-05 0.01932206482861281 7.921429610273848e-05']
['59866.32969302784 0.034247023868744494 6.791650017700023e-05 0.015016911726428528 4.066604389661337e-05 0.0005311146069412774 1.4382670893640042e-06 0.015016911726428528 4.066604389661337e-05 0.019230112142315965 7.916045807405209e-05']
['59866.329724565796 0.03432053505973547 6.795760746198581e-05 0.015063391243838042 4.0666686200631486e-05 0.0005327584835964441 1.43828980622166e-06 0.015063391243838042 4.0666686200631486e-05 0.01925714381589743 7.919605910964245e-05']
['59866.32975610376 0.034270485057768585 6.792490155571682e-05 0.015058627807007919 4.0696185476482403e-05 0.0005325900114814174 1.4393331296815055e-06 0.01505862780700792 4.0696185476482403e-05 0.019211857250760665 7.918315328205918e-05']
['59866.32978764173 0.03423563715531173 6.790257293220929e-05 0.015015353801688724 4.066542790732085e-05 0.0005310595066249874 1.4382453031993828e-06 0.015015353801688723 4.066542790732085e-05 0.019220283353623004 7.914819288966432e-05']
['59866.329819179686 0.03424684818188712 6.791196768565678e-05 0.014999612821731434 4.064887925531925e-05 0.0005305027833429177 1.4376600143621466e-06 0.014999612821731432 4.064887925531925e-05 0.019247235360155688 7.914775258749432e-05']
['59866.32985071765 0.03421072563359399 6.789078475211328e-05 0.015035596187963584 4.068622439969502e-05 0.0005317754345884584 1.4389808286572322e-06 0.015035596187963584 4.068622439969502e-05 0.019175129445630403 7.914876821631602e-05']
['59866.32988225561 0.034318095315970944 6.796680914391605e-05 0.015015283255077881 4.064934120950641e-05 0.0005310570115490243 1.43767635264934e-06 0.01501528325507788 4.064934120950641e-05 0.019302812060893064 7.919505089317379e-05']
['59866.329913793576 0.03419214203362988 6.78931562473538e-05 0.015063302720045567 4.068496086327305e-05 0.0005327553527077432 1.4389361401978247e-06 0.015063302720045567 4.068496086327305e-05 0.019128839313584313 7.915015290998278e-05']
['59866.32994533154 0.03425690206311301 6.79218279950368e-05 0.01501599386009918 4.0661724526946294e-05 0.0005310821440605188 1.4381143229121028e-06 0.01501599386009918 4.0661724526946294e-05 0.01924090820301383 7.916281045852673e-05']
['59866.3299768695 0.03432497789738474 6.798214258311311e-05 0.015071238621244987 4.0690833336566526e-05 0.0005330360277974713 1.4391438364540096e-06 0.015071238621244987 4.0690833336566526e-05 0.019253739276139756 7.922951235376218e-05']
['59866.330008407465 0.03428516461240278 6.792711312724987e-05 0.015073259991442461 4.069261031673845e-05 0.0005331075191438595 1.4392066842713735e-06 0.015073259991442461 4.069261031673845e-05 0.01921190462096032 7.918321307065108e-05']
['59866.33003994543 0.03421205522482148 6.788685906916896e-05 0.01500189174386399 4.065383751796325e-05 0.000530583383725655 1.4378353770308002e-06 0.01500189174386399 4.065383751796325e-05 0.01921016348095749 7.91287567146999e-05']
['59866.33007148339 0.034217969354283555 6.788799609257158e-05 0.015085502619018256 4.0695690239250084e-05 0.000533540513520553 1.4393156142473885e-06 0.015085502619018256 4.0695690239250084e-05 0.0191324667352653 7.915124267826759e-05']
['59866.330103021355 0.03423322024661842 6.789337868985077e-05 0.01499955349149922 4.064792518093741e-05 0.0005305006849651996 1.4376262708834918e-06 0.014999553491499219 4.064792518093741e-05 0.019233666755119203 7.913131296420253e-05']
['59866.33013455931 0.03422472009256678 6.788958360415082e-05 0.014997224687124054 4.0633678739204945e-05 0.0005304183203590215 1.437122406078338e-06 0.014997224687124054 4.0633678739204945e-05 0.019227495405442725 7.912073944185494e-05']
['59866.33016609728 0.03411077636137718 6.779144643958132e-05 0.014976324294585328 4.0633651943493896e-05 0.000529679120184555 1.437121458373923e-06 0.01497632429458533 4.0633651943493896e-05 0.019134452066791853 7.903653510013978e-05']
['59866.330197635245 0.034191807866264246 6.788517306261473e-05 0.014936422013449469 4.0613488473673286e-05 0.0005282678656771296 1.436408321509071e-06 0.01493642201344947 4.0613488473673286e-05 0.019255385852814777 7.91065873852636e-05']
['59866.3302291732 0.03428804129359876 6.794074454543167e-05 0.01503608675625872 4.065862901936965e-05 0.0005317927848927017 1.438004841727169e-06 0.01503608675625872 4.065862901936965e-05 0.019251954537340042 7.917745186050339e-05']
['59866.33026071117 0.03426532784092306 6.79355798980223e-05 0.015013279199030748 4.066046508015384e-05 0.0005309861325654389 1.4380697790937515e-06 0.01501327919903075 4.066046508015384e-05 0.01925204864189231 7.917396312308094e-05']
['59866.330292249135 0.034209896936172 6.789780467058471e-05 0.015012981296344673 4.065401816631614e-05 0.0005309755964132057 1.4378417661593166e-06 0.015012981296344673 4.065401816631614e-05 0.019196915639827325 7.913824026443877e-05']
['59866.33032378709 0.03417642579612764 6.786688070623317e-05 0.01500562171872319 4.06525376972146e-05 0.0005307153046004218 1.437789405275849e-06 0.015005621718723189 4.06525376972146e-05 0.01917080407740445 7.91109494192652e-05']
['59866.33035532506 0.03419206948607193 6.785217391286272e-05 0.014956042074340398 4.0634168807795403e-05 0.0005289617833825863 1.4371397387091435e-06 0.0149560420743404 4.0634168807795403e-05 0.019236027411731534 7.908889415968453e-05']
['59866.33038686302 0.03419177655534663 6.787995638198654e-05 0.015024794354593436 4.0657349386642834e-05 0.000531393397882833 1.4379595839774325e-06 0.015024794354593436 4.0657349386642834e-05 0.019166982200753194 7.912463925711093e-05']
['59866.33041840098 0.034210142084998965 6.790374483857171e-05 0.014989696538291521 4.063626999431215e-05 0.0005301520665592373 1.4372140529803654e-06 0.014989696538291521 4.063626999431215e-05 0.019220445546707446 7.913422143518244e-05']
['59866.33044993895 0.03430303901746791 6.795760923129675e-05 0.015100519830518242 4.0699550417945445e-05 0.0005340716387298151 1.4394521401408516e-06 0.015100519830518242 4.0699550417945445e-05 0.019202519186949665 7.921294121957922e-05']
['59866.33048147691 0.03433027581471756 6.797811336979164e-05 0.015080137655301466 4.0691870096177095e-05 0.0005333507667438784 1.4391805043244142e-06 0.015080137655301465 4.0691870096177095e-05 0.01925013815941609 7.922658764102109e-05']
['59866.33051301487 0.03420714683355945 6.788925883604186e-05 0.01501271289668577 4.0669871748717436e-05 0.0005309661037171083 1.438402471938179e-06 0.015012712896685772 4.0669871748717436e-05 0.01919443393687368 7.91390544128764e-05']
['59866.33054455284 0.03428714628586531 6.795334395998208e-05 0.015021759305566604 4.066094889856412e-05 0.0005312860549816894 1.4380868906696527e-06 0.015021759305566606 4.066094889856412e-05 0.019265386980298702 7.918945460523943e-05']
['59866.3305760908 0.03430926565616595 6.79542555737516e-05 0.015072986973503635 4.06951084027522e-05 0.0005330978631095224 1.439295035990786e-06 0.015072986973503635 4.06951084027522e-05 0.019236278682662318 7.92077818051642e-05']
['59866.33060762876 0.034315253565623594 6.797266578448435e-05 0.015041100090362905 4.067577327216601e-05 0.0005319700953158245 1.4386111956334264e-06 0.015041100090362905 4.067577327216601e-05 0.019274153475260687 7.921364671025988e-05']
['59866.33063916672 0.034240088285506315 6.791684983999555e-05 0.015045116601405156 4.0667697432504024e-05 0.000532112150335015 1.4383255712330215e-06 0.015045116601405156 4.0667697432504024e-05 0.01919497168410116 7.916160752947226e-05']
['59866.33067070469 0.03431666766948284 6.796198079867807e-05 0.01507012370112555 4.068454487483117e-05 0.0005329965955645467 1.438921427616315e-06 0.01507012370112555 4.068454487483117e-05 0.019246543968357288 7.920898323897383e-05']
['59866.33070224265 0.03432470430023166 6.797236265633325e-05 0.015105950947297136 4.069923791484718e-05 0.000534263725192453 1.4394410876046693e-06 0.015105950947297136 4.069923791484718e-05 0.019218753352934527 7.922543816182666e-05']
['59866.33073378061 0.034238580172090596 6.794001289925618e-05 0.015013445475321017 4.066071822463452e-05 0.0005309920133862201 1.4380787322482886e-06 0.015013445475321019 4.066071822463452e-05 0.019225134696769577 7.917789691128593e-05']
['59866.33076531858 0.03422112112520502 6.791024698040755e-05 0.014948116485805785 4.0621664036436016e-05 0.000528681473028765 1.4366974728926813e-06 0.014948116485805785 4.0621664036436016e-05 0.019273004639399235 7.913230208978526e-05']
['59866.33079685654 0.03422740035259913 6.791014827291335e-05 0.015078423242086776 4.070267393195681e-05 0.0005332901317799629 1.4395626118507905e-06 0.015078423242086776 4.070267393195681e-05 0.019148977110512354 7.917383345310667e-05']
['59866.3308283945 0.034319707709684184 6.796652844753505e-05 0.01502716757057353 4.0654661518113644e-05 0.0005314773332282235 1.4378645200745877e-06 0.015027167570573532 4.0654661518113644e-05 0.01929254013911065 7.919754094895865e-05']
['59866.33085993247 0.03419881858240914 6.790440401453392e-05 0.015041043661177336 4.067869870307247e-05 0.0005319680995416427 1.4387146615866347e-06 0.015041043661177336 4.067869870307247e-05 0.019157774921231805 7.915658287688018e-05']
['59866.330891470425 0.03438997602451373 6.801253460269276e-05 0.015127118088987944 4.0725275986070105e-05 0.0005350123596882793 1.4403619959921599e-06 0.015127118088987946 4.0725275986070105e-05 0.019262857935525783 7.927328028550388e-05']
['59866.33092300839 0.034277636565746394 6.794708393263967e-05 0.014974512560145817 4.062429537938771e-05 0.0005296150431864176 1.4367905376121772e-06 0.014974512560145816 4.062429537938771e-05 0.01930312400560058 7.916526757373413e-05']
['59866.330954546356 0.03427416195833818 6.793387278575735e-05 0.015066412355542718 4.0674263272998987e-05 0.0005328653335656511 1.4385577903375383e-06 0.015066412355542716 4.0674263272998987e-05 0.019207749602795463 7.917958552854832e-05']
['59866.330986084315 0.034471041970741134 6.811911079624151e-05 0.015034873913832842 4.065986391284851e-05 0.0005317498893666417 1.4380485171496919e-06 0.015034873913832842 4.065986391284851e-05 0.019436168056908294 7.933119051849649e-05']
['59866.33101762228 0.0343360512409496 6.79897074674553e-05 0.015014028934105148 4.066760615060161e-05 0.0005310126490194611 1.438322342796136e-06 0.015014028934105148 4.066760615060161e-05 0.019322022306844454 7.922407785219463e-05']
['59866.331049160246 0.03434616713678568 6.79837574159979e-05 0.015047057202896279 4.0700625056696736e-05 0.0005321807850727669 1.4394901477118087e-06 0.015047057202896279 4.0700625056696736e-05 0.019299109933889398 7.923592715683371e-05']
['59866.331080698204 0.034260520616308646 6.79162266657394e-05 0.015067867580073066 4.066904718175792e-05 0.0005329168016050542 1.4383733088476195e-06 0.015067867580073066 4.066904718175792e-05 0.01919265303623558 7.916176629651555e-05']
['59866.33111223617 0.0343803929533881 6.800011561258197e-05 0.015043663985240095 4.0669776748894344e-05 0.0005320607745476629 1.4383991120067483e-06 0.015043663985240097 4.0669776748894344e-05 0.019336728968148004 7.923412436652165e-05']
['59866.33114377413 0.03431974537176191 6.797013629340138e-05 0.015043751692271286 4.067115983830593e-05 0.0005320638765493424 1.4384480287882133e-06 0.015043751692271285 4.067115983830593e-05 0.01927599367949063 7.920910724365342e-05']
['59866.331175312094 0.03419603025931299 6.785002883995336e-05 0.0150870870608655 4.0673431338633656e-05 0.0005335965516876709 1.4385283666783004e-06 0.0150870870608655 4.0673431338633656e-05 0.01910894319844749 7.91072337428193e-05']
['59866.33120685006 0.03423739488803693 6.789796941280558e-05 0.014947679511442899 4.0621722877252465e-05 0.0005286660182221299 1.4366995539608576e-06 0.014947679511442899 4.0621722877252465e-05 0.019289715376594033 7.912179611142924e-05']
['59866.33123838802 0.03431085424521914 6.794515609287729e-05 0.015112065127469225 4.0693121461609994e-05 0.0005344799700807512 1.4392247623231386e-06 0.015112065127469224 4.0693121461609994e-05 0.019198789117749915 7.919895435404941e-05']
['59866.331269925984 0.03427452599664749 6.793654516599272e-05 0.015026683278921362 4.0654856967940066e-05 0.0005314602049148144 1.4378714326981436e-06 0.015026683278921362 4.0654856967940066e-05 0.019247842717726123 7.917191145964984e-05']
['59866.33130146395 0.03443682345439063 6.806671793137136e-05 0.01509502254723759 4.068759462143399e-05 0.0005338772121058835 1.4390292903378743e-06 0.01509502254723759 4.068759462143399e-05 0.01934180090715304 7.930043156267824e-05']
['59866.33133300191 0.03413302252267573 6.782758295221234e-05 0.014930997020766541 4.05982060146341e-05 0.0005280759958100795 1.4358678150871405e-06 0.014930997020766541 4.05982060146341e-05 0.019202025501909185 7.904932220295072e-05']
['59866.331364539874 0.03434742639088037 6.797448193948854e-05 0.015087474429458647 4.069248713833441e-05 0.0005336102520490928 1.43920232772651e-06 0.01508747442945865 4.069248713833441e-05 0.01925995196142172 7.922378875341273e-05']
['59866.33139607783 0.03424592621494927 6.792609811607837e-05 0.015022566116709803 4.066584583822432e-05 0.0005313145900887076 1.438260084481418e-06 0.015022566116709804 4.066584583822432e-05 0.019223360098239467 7.916859113950009e-05']
['59866.3314276158 0.034395630911461965 6.79932155988633e-05 0.015060987120232449 4.067351272353843e-05 0.0005326734551174142 1.4385312450804978e-06 0.015060987120232449 4.067351272353843e-05 0.019334643791229518 7.923012056500577e-05']
['59866.331459153764 0.034228497559252606 6.788883065870962e-05 0.014971705775956754 4.063214807093671e-05 0.000529515773502444 1.4370682697625327e-06 0.014971705775956754 4.063214807093671e-05 0.019256791783295854 7.911930728378174e-05']
['59866.33149069172 0.03421571825220977 6.78956504653368e-05 0.015117512471485201 4.0704537047698205e-05 0.000534672630464499 1.4396285060907452e-06 0.015117512471485203 4.0704537047698205e-05 0.01909820578072457 7.916235651102502e-05']
['59866.33152222969 0.03424365616524109 6.791023826345881e-05 0.014997023246728875 4.065965003285217e-05 0.0005304111958624368 1.438040952692215e-06 0.014997023246728875 4.065965003285217e-05 0.019246632918512214 7.915180100158025e-05']
['59866.33155376765 0.03420962084938482 6.788363526628878e-05 0.014935843922934441 4.060775065743279e-05 0.0005282474199075694 1.4362053877719092e-06 0.014935843922934443 4.060775065743279e-05 0.01927377692645038 7.910232202927269e-05']
['59866.33158530561 0.03434325998163319 6.797887956446327e-05 0.015072094266272767 4.069430148514852e-05 0.0005330662900498498 1.439266497118499e-06 0.015072094266272765 4.069430148514852e-05 0.019271165715360427 7.922849386555297e-05']
['59866.33161684358 0.0342388280515575 6.79102710230981e-05 0.015009118002703154 4.066070277343087e-05 0.0005308389603510583 1.4380781857737468e-06 0.015009118002703154 4.066070277343087e-05 0.019229710048854348 7.915236989793752e-05']
['59866.331648381536 0.034143710146953714 6.782902755832333e-05 0.015032288286085506 4.065418356709064e-05 0.0005316584414917563 1.4378476160150617e-06 0.015032288286085504 4.065418356709064e-05 0.01911142186086821 7.907932486443272e-05']
['59866.3316799195 0.03420293273656246 6.787178822425589e-05 0.015017334357831535 4.064350917624611e-05 0.0005311295544694762 1.4374700866667502e-06 0.015017334357831535 4.064350917624611e-05 0.019185598378730927 7.91105206335911e-05']
['59866.33171145747 0.03422932753771603 6.7878668771764e-05 0.015037748270758761 4.0671891918482577e-05 0.0005318515489473019 1.4384739208279583e-06 0.015037748270758763 4.0671891918482577e-05 0.019191579266957266 7.913100824869842e-05']
['59866.331742995426 0.034210275891237533 6.789157875900255e-05 0.014996453543983934 4.0651043775867474e-05 0.0005303910467495589 1.4377365686165188e-06 0.014996453543983934 4.0651043775867474e-05 0.0192138223472536 7.913137068481337e-05']
['59866.33177453339 0.034274539276449564 6.793021794682569e-05 0.015063009152392974 4.06663357539895e-05 0.0005327449698759561 1.438277411707135e-06 0.015063009152392972 4.06663357539895e-05 0.019211530124056592 7.917237759445805e-05']
['59866.33180607136 0.03433784172455004 6.797194362041975e-05 0.015085619405038234 4.069478158311291e-05 0.0005335446439810783 1.4392834771105433e-06 0.015085619405038234 4.069478158311291e-05 0.019252222319511805 7.922278944618642e-05']
['59866.331837609316 0.034318478726241095 6.794466035123455e-05 0.015029458793233974 4.0660371130647665e-05 0.0005315583686531421 1.438066456309683e-06 0.015029458793233976 4.0660371130647665e-05 0.01928901993300712 7.918170654088374e-05']
['59866.33186914728 0.03420385720555083 6.789804894215565e-05 0.014978028427586974 4.063072038521873e-05 0.0005297393915603101 1.4370177757093776e-06 0.014978028427586974 4.063072038521873e-05 0.019225828777963857 7.912648411987728e-05']
['59866.33190068524 0.034222947199552115 6.790011790499176e-05 0.015079375367641966 4.0689971243865135e-05 0.0005333238063329746 1.4391133461618253e-06 0.015079375367641968 4.0689971243865135e-05 0.019143571831910147 7.91586999093489e-05']
['59866.331932223206 0.03418657047976012 6.78686052108181e-05 0.015026575083025075 4.0678641697554894e-05 0.0005314563782677663 1.4387126454288779e-06 0.015026575083025075 4.0678641697554894e-05 0.019159995396735047 7.91258457371543e-05']
['59866.33196376117 0.0343603596420935 6.799883596137661e-05 0.015059908013956203 4.0670671494053634e-05 0.000532635289540084 1.4384307571433948e-06 0.015059908013956203 4.0670671494053634e-05 0.019300451628137302 7.923348542049272e-05']
['59866.33199529913 0.03427728613420311 6.793423401657374e-05 0.015069601428831214 4.0690413420773166e-05 0.0005329781239607059 1.439128984970855e-06 0.015069601428831214 4.0690413420773166e-05 0.019207684705371895 7.918819290634205e-05']
['59866.332026837095 0.0342886895042986 6.796281687897818e-05 0.015098515149396812 4.06939020202779e-05 0.0005340007376387488 1.4392523689387765e-06 0.015098515149396812 4.06939020202779e-05 0.019190174354901786 7.921450712944883e-05']
['59866.33205837506 0.034251414859893727 6.790305596224629e-05 0.01502423656779569 4.063897103716964e-05 0.0005313736702103769 1.4373095828297592e-06 0.01502423656779569 4.063897103716964e-05 0.019227178292098038 7.913501738150984e-05']
['59866.33208991302 0.03429057382144948 6.795532394815301e-05 0.015011373969021758 4.0657877783200964e-05 0.0005309187488379593 1.4379782721827967e-06 0.015011373969021758 4.0657877783200964e-05 0.019279199852427722 7.918957683137424e-05']
['59866.332121450985 0.034248144152945005 6.793943344596943e-05 0.015011277694273432 4.066806917487569e-05 0.0005309153438152724 1.4383387189299118e-06 0.015011277694273432 4.066806917487569e-05 0.01923686645867157 7.918117495574175e-05']
['59866.33215298894 0.03427249721044405 6.794755312705179e-05 0.015056490514578025 4.066847292043608e-05 0.0005325144202247394 1.4383529985080646e-06 0.015056490514578025 4.066847292043608e-05 0.019216006695866025 7.918834930489313e-05']
['59866.33218452691 0.03433688970724624 6.798054604838015e-05 0.015038159178745897 4.0674226471647815e-05 0.0005318660818444815 1.4385564887559936e-06 0.015038159178745895 4.0674226471647815e-05 0.019298730528500348 7.921961461723245e-05']
['59866.332216064875 0.034197573899401215 6.787028046061499e-05 0.01501494547357036 4.0654155272602685e-05 0.0005310450649720005 1.4378466153022572e-06 0.01501494547357036 4.0654155272602685e-05 0.019182628425830857 7.911469718536136e-05']
['59866.33224760283 0.034351068455584416 6.799805596382877e-05 0.014997155016540628 4.0636986426152805e-05 0.0005304158562661903 1.4372393915734384e-06 0.014997155016540628 4.0636986426152805e-05 0.019353913439043788 7.921553055215446e-05']
['59866.3322791408 0.034199904475215245 6.786180424318227e-05 0.015113266575971548 4.072812353627691e-05 0.000534522462629199 1.4404627074790746e-06 0.015113266575971547 4.072812353627691e-05 0.019086637899243697 7.914546431682756e-05']
['59866.332310678765 0.0342074083712099 6.790147667637177e-05 0.015096750192969651 4.070368577451798e-05 0.0005339383150743655 1.4395983984608444e-06 0.015096750192969651 4.070368577451798e-05 0.019110658178240245 7.91669158832309e-05']
['59866.33234221672 0.03425838758112116 6.794591593945704e-05 0.014988237137429956 4.064219497912354e-05 0.0005301004508123327 1.4374236064515826e-06 0.014988237137429958 4.064219497912354e-05 0.0192701504436912 7.917345202511292e-05']
['59866.33237375469 0.0341619531674276 6.782520701487148e-05 0.014991139888721434 4.0643491271996476e-05 0.0005302031146382449 1.4374694534334543e-06 0.014991139888721434 4.0643491271996476e-05 0.019170813278706168 7.907055134110945e-05']
['59866.33240529265 0.034212932954835934 6.788688532542997e-05 0.014989558793799878 4.065794988327836e-05 0.0005301471948444086 1.4379808222014e-06 0.014989558793799877 4.065794988327836e-05 0.019223374161036057 7.913089212121429e-05']
['59866.33243683061 0.03415658409146299 6.783138956214573e-05 0.015016880077548787 4.06563782869538e-05 0.000531113487591132 1.4379252383517115e-06 0.015016880077548787 4.06563782869538e-05 0.0191397040139142 7.908247912997835e-05']
['59866.33246836858 0.03421794442192209 6.790165476258723e-05 0.01506895586876534 4.0699810842690406e-05 0.0005329552919439177 1.4394613507820659e-06 0.015068955868765338 4.0699810842690406e-05 0.01914898855315675 7.916507640448763e-05']
['59866.33249990654 0.03426321382083286 6.791159452846477e-05 0.01498394489799377 4.0647922564387114e-05 0.0005299486438960654 1.4376261783419556e-06 0.014983944897993772 4.0647922564387114e-05 0.01927926892283909 7.914694106659472e-05']
['59866.3325314445 0.034311755021543884 6.797688063781151e-05 0.015039339900704244 4.0680145178105896e-05 0.00053190784134139 1.4387658201758855e-06 0.015039339900704244 4.0680145178105896e-05 0.019272415120839638 7.921950841149575e-05']
['59866.33256298247 0.03417083613911028 6.786301085988378e-05 0.015075264165727074 4.0684538355482723e-05 0.0005331784023092403 1.4389211970415303e-06 0.015075264165727072 4.0684538355482723e-05 0.01909557197338321 7.912407916789584e-05']
['59866.33259452043 0.034239567526270234 6.787827404286187e-05 0.015056549100553096 4.067018694356633e-05 0.0005325164922797457 1.4384136196755653e-06 0.015056549100553094 4.067018694356633e-05 0.019183018425717138 7.912979333387955e-05']
['59866.33262605839 0.03426211839499446 6.795818948892627e-05 0.014978872880849535 4.064481926283651e-05 0.0005297692579849649 1.4375164215015815e-06 0.014978872880849535 4.064481926283651e-05 0.019283245514144925 7.918533230037906e-05']
['59866.33265759635 0.03430570221219343 6.795793587827491e-05 0.015000151695801269 4.064860226045454e-05 0.0005305218421144552 1.4376502176728291e-06 0.015000151695801267 4.064860226045454e-05 0.019305550516392163 7.918705648377363e-05']
['59866.33268913432 0.0342953545357178 6.794700077620216e-05 0.01505439431157559 4.067869805809767e-05 0.0005324402822092814 1.4387146387753175e-06 0.01505439431157559 4.067869805809767e-05 0.019240960224142206 7.919312716507094e-05']
['59866.33272067228 0.03434954213165127 6.798667961839273e-05 0.015067712346214814 4.068699018560596e-05 0.0005329113113304151 1.4390079127934713e-06 0.015067712346214816 4.068699018560596e-05 0.019281829785436452 7.923143174206543e-05']
['59866.33275221024 0.034196173477954714 6.789060068301749e-05 0.014977840115563 4.0643456759831174e-05 0.0005297327313848747 1.4374682328152978e-06 0.014977840115563 4.0643456759831174e-05 0.019218333362391714 7.912663419158685e-05']
['59866.33278374821 0.03434817509968714 6.798971392819293e-05 0.015085323560592072 4.0683605774353114e-05 0.000533534180624191 1.4388882137311722e-06 0.015085323560592072 4.0683605774353114e-05 0.01926285153909507 7.923229757390915e-05']
['59866.33281528617 0.034244744429740626 6.790276572099807e-05 0.01503147142875486 4.0673035081246205e-05 0.0005316295510735401 1.4385143519400894e-06 0.01503147142875486 4.0673035081246205e-05 0.019213273000985763 7.915226702553146e-05']
['59866.33284682413 0.03429878280653491 6.795619965619362e-05 0.015100177667361136 4.069851027640281e-05 0.0005340595371836379 1.4394153526590682e-06 0.015100177667361136 4.069851027640281e-05 0.01919860513917377 7.921119750660834e-05']
['59866.3328783621 0.034265148923035546 6.792878571335061e-05 0.014970733041446554 4.0636662074047606e-05 0.0005294813700567519 1.437227919964362e-06 0.014970733041446554 4.0636662074047606e-05 0.01929441588158899 7.915591091643532e-05']
['59866.332909900055 0.034333709665905376 6.79877617202856e-05 0.015096839826882017 4.070317929293272e-05 0.0005339414852255259 1.4395804853390933e-06 0.015096839826882017 4.070317929293272e-05 0.01923686983902336 7.924067483487858e-05']
['59866.33294143802 0.03427708081547442 6.795122803396309e-05 0.015036950327381974 4.066255322410086e-05 0.0005318233274733634 1.4381436320784305e-06 0.015036950327381974 4.066255322410086e-05 0.019240130488092443 7.918846270781172e-05']
['59866.332972975986 0.034298941274214095 6.797032627439064e-05 0.015093038093031773 4.069941683993418e-05 0.0005338070263956179 1.4394474157851223e-06 0.015093038093031773 4.069941683993418e-05 0.019205903181182322 7.922378295031005e-05']
['59866.333004513945 0.03430018471144764 6.794654501941861e-05 0.015075675612223114 4.0692115994172197e-05 0.0005331929542522765 1.4391892011869512e-06 0.015075675612223114 4.0692115994172197e-05 0.019224509099224525 7.919962931831843e-05']
['59866.33303605191 0.034372033544345135 6.800391585517061e-05 0.01511785067360317 4.070654488481026e-05 0.0005346845919175743 1.4396995188021467e-06 0.015117850673603172 4.070654488481026e-05 0.019254182870741963 7.925626390447759e-05']
['59866.333067589876 0.034225226200966796 6.78990112356723e-05 0.015002500844866264 4.064554017370794e-05 0.0005306049262668449 1.437541918507963e-06 0.015002500844866262 4.064554017370794e-05 0.019222725356100534 7.913492062796587e-05']
['59866.333099127834 0.03432723888983533 6.798470558720145e-05 0.015098039468757866 4.0698772831081746e-05 0.0005339839138776329 1.439424638631287e-06 0.015098039468757866 4.0698772831081746e-05 0.019229199421077467 7.923578928574169e-05']
['59866.3331306658 0.034205442773268986 6.788954859285773e-05 0.014957212656965452 4.0624907820959854e-05 0.0005290031842739363 1.4368121983018577e-06 0.014957212656965452 4.0624907820959854e-05 0.019248230116303534 7.911620531600006e-05']
['59866.33316220376 0.03432875677351414 6.799938459141734e-05 0.015021220652586 4.0648238767667965e-05 0.0005312670040295839 1.4376373617453264e-06 0.015021220652586 4.0648238767667965e-05 0.019307536120928136 7.922244391411334e-05']
['59866.333193741724 0.034218221200984826 6.789988090180576e-05 0.015050585175154752 4.066632947394892e-05 0.0005323055615669951 1.4382771895961346e-06 0.01505058517515475 4.066632947394892e-05 0.019167636025830076 7.914634659517249e-05']
['59866.33322527969 0.03418301495589909 6.785231907205328e-05 0.014966005344841613 4.063270268163142e-05 0.0005293141619936152 1.4370878851033227e-06 0.014966005344841611 4.063270268163142e-05 0.019217009611057476 7.908826544228659e-05']
['59866.33325681765 0.03436553433803246 6.797296890659258e-05 0.015099836247042355 4.0702596742367486e-05 0.0005340474619099921 1.439559881827525e-06 0.015099836247042354 4.0702596742367486e-05 0.019265698090990106 7.922768382041965e-05']
['59866.333288355614 0.03421021228980636 6.788264806409471e-05 0.015036975359891973 4.0683927018052995e-05 0.0005318242128172976 1.4388995754028994e-06 0.015036975359891971 4.0683927018052995e-05 0.019173236929914392 7.914060794436699e-05']
['59866.33331989358 0.034295050308358756 6.796356225483447e-05 0.015018677971246 4.067514413735502e-05 0.0005311770750731465 1.4385889445411952e-06 0.015018677971245998 4.067514413735502e-05 0.019276372337112758 7.9205512086984e-05']
['59866.33335143154 0.0342255382946468 6.79210925470371e-05 0.015041986545717062 4.0673747470860565e-05 0.0005320014472605898 1.4385395475686522e-06 0.01504198654571706 4.0673747470860565e-05 0.019183551748929738 7.916835571177737e-05']
['59866.333382969504 0.034271550276058785 6.79289809823425e-05 0.015012688644457145 4.06587990747278e-05 0.0005309652459699823 1.4380108562051357e-06 0.015012688644457145 4.06587990747278e-05 0.01925886163160164 7.916744532633685e-05']
['59866.33341450746 0.03414488467020589 6.782855065898829e-05 0.014994482962813416 4.065572332394212e-05 0.0005303213516975474 1.4379020737737445e-06 0.014994482962813416 4.065572332394212e-05 0.019150401707392475 7.907970740646346e-05']
['59866.33344604543 0.034304039555040765 6.795045418315187e-05 0.015080513065026509 4.068824207939972e-05 0.0005333640441468618 1.4390521894791386e-06 0.015080513065026507 4.068824207939972e-05 0.019223526490014256 7.920099284231514e-05']
['59866.333477583394 0.034247606579271415 6.793574251498756e-05 0.014998424944494665 4.065372773537625e-05 0.0005304607707798027 1.4378314942660477e-06 0.014998424944494666 4.065372773537625e-05 0.01924918163477675 7.917064285355266e-05']
['59866.33350912135 0.0343425788020713 6.797755174892853e-05 0.015048011446950744 4.066494297123964e-05 0.0005322145345523633 1.4382281520939587e-06 0.015048011446950742 4.066494297123964e-05 0.019294567355120557 7.92122789006378e-05']
['59866.33354065932 0.03441124139306557 6.804152860111791e-05 0.014932378239650889 4.061139677215026e-05 0.0005281248464351763 1.4363343427008793e-06 0.014932378239650889 4.061139677215026e-05 0.01947886315341468 7.923973221914472e-05']
['59866.33357219728 0.03428731296296871 6.79454883902795e-05 0.014994006470312755 4.065260429365429e-05 0.0005303044992226971 1.4377917606430865e-06 0.014994006470312755 4.065260429365429e-05 0.019293306492655957 7.917842906025634e-05']
['59866.33360373524 0.03420404181795969 6.789891346807515e-05 0.015004085508608874 4.066262282793334e-05 0.000530660972281906 1.4381460938104302e-06 0.015004085508608874 4.066262282793334e-05 0.019199956309350816 7.914361215784836e-05']
['59866.33363527321 0.034287637277010015 6.795747801053124e-05 0.01500607837630239 4.0648647126001685e-05 0.0005307314555584284 1.437651804466963e-06 0.01500607837630239 4.0648647126001685e-05 0.019281558900707624 7.918668657499216e-05']
['59866.333666811166 0.0342502133402831 6.791637384913919e-05 0.015080495097589467 4.067472957509102e-05 0.0005333634086787685 1.4385742824004096e-06 0.015080495097589465 4.067472957509102e-05 0.01916971824269364 7.916481202417411e-05']
['59866.33369834913 0.0341745097046209 6.786602570240779e-05 0.014958531224245895 4.0618140385645345e-05 0.0005290498190518211 1.4365728492391113e-06 0.014958531224245895 4.0618140385645345e-05 0.019215978480375005 7.909254562237751e-05']
['59866.3337298871 0.03416602103653977 6.783340293857991e-05 0.015030684929036912 4.0670845240388425e-05 0.0005316017343362397 1.4384369021629561e-06 0.015030684929036912 4.0670845240388425e-05 0.019135336107502857 7.909164435511104e-05']
['59866.333761425056 0.0343346068577023 6.795935537176337e-05 0.015048538924279016 4.06653020951111e-05 0.000532233190246622 1.4382408535026977e-06 0.015048538924279016 4.06653020951111e-05 0.019286067933423287 7.919684827713959e-05']
['59866.33379296302 0.03430580614873584 6.793848236137655e-05 0.015093157857419338 4.069543078819777e-05 0.0005338112621943484 1.4393064380435072e-06 0.015093157857419338 4.069543078819777e-05 0.019212648291316498 7.919441566552574e-05']
['59866.33382450099 0.03428783708474728 6.792523346404525e-05 0.014951132146740006 4.0623555010630886e-05 0.0005287881302164029 1.4367643524238752e-06 0.014951132146740006 4.0623555010630886e-05 0.019336704938007272 7.914613422553755e-05']
['59866.333856038946 0.034224265991896985 6.79040663452543e-05 0.015036306370106537 4.067144351382218e-05 0.0005318005521436909 1.4384580617572456e-06 0.015036306370106537 4.067144351382218e-05 0.01918795962179045 7.915256498508894e-05']
['59866.33388757691 0.03435340105423542 6.79780627555073e-05 0.015070224845453747 4.0673075311579986e-05 0.0005330001728133907 1.4385157747970859e-06 0.015070224845453745 4.0673075311579986e-05 0.019283176208781675 7.921689258796476e-05']
['59866.33391911487 0.03425314651796572 6.793231001339364e-05 0.015032894943648288 4.065520339523106e-05 0.0005316798976139521 1.4378836850572065e-06 0.015032894943648288 4.065520339523106e-05 0.019220251574317428 7.916845525121372e-05']
['59866.333950652835 0.03419398395063218 6.785292100483215e-05 0.01500829259152058 4.06563665502122e-05 0.0005308097674022161 1.437924823249391e-06 0.015008292591520582 4.06563665502122e-05 0.0191856913591116 7.910094202949296e-05']
['59866.3339821908 0.034282710729349186 6.790796870323283e-05 0.01497616862195218 4.0625181646827576e-05 0.0005296736143914284 1.4368218829108341e-06 0.014976168621952179 4.0625181646827576e-05 0.019306542107397007 7.913215273981232e-05']
['59866.33401372876 0.03433465943891478 6.800453675355355e-05 0.01503779882949496 4.067598807047648e-05 0.0005318533370968091 1.4386187925696217e-06 0.015037798829494962 4.067598807047648e-05 0.01929686060941982 7.924110691159582e-05']
['59866.334045266725 0.034282579010168825 6.793199765090469e-05 0.014990685224087443 4.0655412367485214e-05 0.0005301870341662563 1.4378910759388104e-06 0.014990685224087443 4.0655412367485214e-05 0.01929189378608138 7.916829453520386e-05']
['59866.33407680469 0.03419636058369406 6.786935495279388e-05 0.015016577100908708 4.0669351418301095e-05 0.0005311027719844853 1.4383840690142231e-06 0.015016577100908706 4.0669351418301095e-05 0.019179783482785352 7.912171311652444e-05']
['59866.33410834265 0.03412307552682377 6.784186040406724e-05 0.014999008874852247 4.0646042574251216e-05 0.0005304814230915428 1.4375596872923795e-06 0.014999008874852247 4.0646042574251216e-05 0.01912406665197152 7.908614796557478e-05']
['59866.334139880615 0.03432102314999205 6.797977914740569e-05 0.015082866726439341 4.0705731445159084e-05 0.00053344728789091 1.4396707492596152e-06 0.015082866726439341 4.0705731445159084e-05 0.019238156423552713 7.923513706314558e-05']
['59866.33417141857 0.03425213571709143 6.789873624584963e-05 0.015089356729204792 4.069521472010447e-05 0.0005336768247844215 1.4392987961979309e-06 0.015089356729204792 4.069521472010447e-05 0.01916277898788664 7.916021023783895e-05']
['59866.33420295654 0.03407771693830564 6.777818273472035e-05 0.014996394374746239 4.063598709447564e-05 0.0005303889540658572 1.437204047445392e-06 0.014996394374746239 4.063598709447564e-05 0.019081322563559405 7.902635953884966e-05']
['59866.334234494505 0.03418536543973703 6.787731844834761e-05 0.014995715686843398 4.064061954215877e-05 0.0005303649503915119 1.437367886767033e-06 0.0149957156868434 4.064061954215877e-05 0.019189649752893626 7.911378082552299e-05']
['59866.33426603246 0.03426298712314156 6.792490051629464e-05 0.01496286319540305 4.062737110915111e-05 0.0005292030311902639 1.4368993193000573e-06 0.01496286319540305 4.062737110915111e-05 0.019300123927738513 7.914780725572383e-05']
['59866.33429757043 0.03430394121685907 6.796204671750067e-05 0.015043125045827208 4.06813327500091e-05 0.0005320417134650877 1.4388078219400348e-06 0.015043125045827208 4.06813327500091e-05 0.019260816171031862 7.920738998571224e-05']
['59866.334329108395 0.034115077543173195 6.781794560248026e-05 0.015005546971953214 4.064629962887764e-05 0.0005307126609742169 1.4375687787400328e-06 0.015005546971953212 4.064629962887764e-05 0.01910953057121998 7.906576641797302e-05']
['59866.33436064635 0.0343221161897588 6.799027744400866e-05 0.015083079983993214 4.070880977388911e-05 0.0005334548303339879 1.4397796228671364e-06 0.015083079983993214 4.070880977388911e-05 0.019239036205765586 7.924572556371708e-05']
['59866.33439218432 0.034246898635605906 6.791827479385015e-05 0.015015864401540097 4.066615852621731e-05 0.0005310775654006069 1.4382711435569135e-06 0.015015864401540095 4.066615852621731e-05 0.01923103423406581 7.916203951549237e-05']
['59866.33442372228 0.034253392035331974 6.792931771478453e-05 0.014999289099061964 4.06558535248929e-05 0.0005304913339955762 1.4379066786903917e-06 0.014999289099061964 4.06558535248929e-05 0.019254102936270008 7.91662215280841e-05']
['59866.33445526024 0.03422401614195773 6.790492583980854e-05 0.01496621133778063 4.06262321976974e-05 0.0005293214475035011 1.4368590385472568e-06 0.014966211337780628 4.06262321976974e-05 0.019257804804177103 7.913008085356113e-05']
['59866.33448679821 0.034294608825028 6.795119792563008e-05 0.01504843773687903 4.066161229016026e-05 0.000532229611474425 1.4381103533478152e-06 0.01504843773687903 4.066161229016026e-05 0.019246171088148974 7.918795371496517e-05']
['59866.33451833617 0.03421528371032421 6.790390016766337e-05 0.014948085746490754 4.062206169929922e-05 0.0005286803858478907 1.4367115373394285e-06 0.014948085746490754 4.062206169929922e-05 0.019267197963833454 7.912705956044156e-05']
['59866.33454987413 0.03430793178666091 6.796712553872245e-05 0.015078553657327506 4.067488969188275e-05 0.0005332947442755665 1.4385799453734933e-06 0.015078553657327505 4.067488969188275e-05 0.019229378129333403 7.920843897870533e-05']
['59866.3345814121 0.03415365648112409 6.782816192833682e-05 0.014990365275483477 4.064271624008832e-05 0.0005301757182991771 1.437442042286957e-06 0.014990365275483478 4.064271624008832e-05 0.01916329120564061 7.907268766109458e-05']
['59866.33461295006 0.03424002375599458 6.790257704042276e-05 0.01503945786120885 4.065085933996813e-05 0.0005319120133408117 1.4377300455309487e-06 0.01503945786120885 4.065085933996813e-05 0.01920056589478573 7.914071223970897e-05']
['59866.33464448802 0.03428876970647777 6.794187704648922e-05 0.015073162744994862 4.068273950905521e-05 0.0005331040797543409 1.4388575758635743e-06 0.01507316274499486 4.068273950905521e-05 0.01921560696148291 7.919080723519555e-05']
['59866.33467602598 0.034248905232518084 6.791856049346903e-05 0.015040452023057121 4.0673280217697945e-05 0.000531947174623564 1.4385230218685398e-06 0.01504045202305712 4.0673280217697945e-05 0.019208453209460963 7.916594332901232e-05']
['59866.33470756395 0.0342500282540659 6.794631062037911e-05 0.015088630377425173 4.069462142315279e-05 0.0005336511353452771 1.4392778126106905e-06 0.015088630377425173 4.069462142315279e-05 0.01916139787664073 7.92007155251439e-05']
['59866.33473910191 0.03431318097189301 6.796225829176178e-05 0.015089359511606665 4.068745100511623e-05 0.0005336769231917575 1.4390242109496784e-06 0.015089359511606667 4.068745100511623e-05 0.019223821460286342 7.921071405693725e-05']
['59866.33477063987 0.034284454823622586 6.796313181204756e-05 0.01509778667362853 4.071362726464974e-05 0.0005339749730788721 1.4399500067488818e-06 0.01509778667362853 4.071362726464974e-05 0.019186668149994056 7.922491231138463e-05']
['59866.33480217784 0.03430564352379355 6.795477491593638e-05 0.015091227568713938 4.0698671850219944e-05 0.0005337429921967797 1.439421067163884e-06 0.015091227568713938 4.0698671850219944e-05 0.01921441595507961 7.921005822651226e-05']
['59866.3348337158 0.03428336282099867 6.795087391548948e-05 0.015011623841991905 4.0651763584411115e-05 0.0005309275862864802 1.43776202663603e-06 0.015011623841991905 4.0651763584411115e-05 0.019271738979006765 7.918261897917751e-05']
['59866.33486525376 0.034330861304383835 6.797224164172309e-05 0.015098045826764356 4.0700167476279494e-05 0.0005339841387461132 1.4394739641150827e-06 0.015098045826764358 4.0700167476279494e-05 0.01923281547761948 7.922581186960468e-05']
['59866.334896791726 0.03428205232169408 6.795726456159893e-05 0.01501665464613721 4.066245695551571e-05 0.0005311055145859142 1.4381402272737214e-06 0.015016654646137212 4.066245695551571e-05 0.01926539767555687 7.919359325320653e-05']
['59866.334928329685 0.034296698393546064 6.79669547790983e-05 0.014947549200529677 4.061576942691582e-05 0.000528661409416357 1.436488993727629e-06 0.014947549200529677 4.061576942691582e-05 0.019349149193016387 7.917794938039494e-05']
['59866.33495986765 0.03425793171745766 6.792035592508041e-05 0.01501002156215202 4.063066162855537e-05 0.0005308709172294282 1.437015697617508e-06 0.01501002156215202 4.063066162855537e-05 0.019247910155305643 7.914559629798595e-05']
['59866.334991405616 0.034175083505120864 6.785017285190062e-05 0.015040044703321273 4.066701183989698e-05 0.0005319327686348132 1.4383013233547195e-06 0.015040044703321273 4.066701183989698e-05 0.019135038801799592 7.910405683666997e-05']
['59866.335022943575 0.0342473777849762 6.791736761598958e-05 0.015075367043374872 4.068863922125451e-05 0.000533182040861725 1.4390662354989826e-06 0.015075367043374874 4.068863922125451e-05 0.019172010741601325 7.917281216151716e-05']
['59866.33505448154 0.034353817579158175 6.798832741372306e-05 0.015015213926294261 4.066548198454379e-05 0.0005310545595448884 1.4382472157899028e-06 0.015015213926294263 4.066548198454379e-05 0.01933860365286391 7.92218031197906e-05']
['59866.3350860195 0.03425179701270482 6.792967755055495e-05 0.014988111744394628 4.06491128006188e-05 0.00053009601594091 1.4376682743374487e-06 0.014988111744394628 4.06491128006188e-05 0.01926368526831019 7.916306881115587e-05']
['59866.335117557464 0.03442038753606922 6.805181288558639e-05 0.01510250440769428 4.069048122885711e-05 0.0005341418287892626 1.439131383191242e-06 0.01510250440769428 4.069048122885711e-05 0.01931788312837494 7.92891196801354e-05']
['59866.33514909543 0.03422097593679538 6.790586913632643e-05 0.015001992808373346 4.064993462392831e-05 0.0005305869581514851 1.4376973403912391e-06 0.015001992808373346 4.064993462392831e-05 0.019218983128422032 7.914306190746941e-05']
['59866.33518063339 0.03421999916661094 6.788150161808966e-05 0.015032548433279802 4.066534567308013e-05 0.0005316676423166239 1.4382423947580713e-06 0.015032548433279804 4.066534567308013e-05 0.019187450733331137 7.913007393297321e-05']
['59866.335212171354 0.03418132611765452 6.785282517270927e-05 0.01498363553785005 4.0637834961086366e-05 0.0005299377025191612 1.4372694023576747e-06 0.01498363553785005 4.0637834961086366e-05 0.01919769057980447 7.909133653089155e-05']
['59866.33524370932 0.03426277917790033 6.791300839284546e-05 0.015019964423065251 4.0671036604309025e-05 0.0005312225739989428 1.4384436702771546e-06 0.015019964423065251 4.0671036604309025e-05 0.019242814754835073 7.916002733347016e-05']
['59866.33527524728 0.0342747880878074 6.792264823233667e-05 0.014945696975798485 4.0619121454664135e-05 0.0005285959003670934 1.4366075474577456e-06 0.014945696975798485 4.0619121454664135e-05 0.019329091112008916 7.914163992894324e-05']
['59866.335306785244 0.03431274674092439 6.793278127952376e-05 0.015056382993356833 4.067160475020316e-05 0.0005325106174394416 1.4384637643276988e-06 0.015056382993356831 4.067160475020316e-05 0.01925636374756756 7.917728339194494e-05']
['59866.3353383232 0.034370203375376024 6.801955323826621e-05 0.01503060774903458 4.067671772919206e-05 0.0005315990046520444 1.4386445989677005e-06 0.01503060774903458 4.067671772919206e-05 0.019339595626341445 7.92543688887477e-05']
['59866.33536986117 0.03427098447081453 6.793021354416749e-05 0.015036279769669635 4.0689057957419906e-05 0.0005317996113456862 1.4390810452613326e-06 0.015036279769669635 4.0689057957419906e-05 0.019234704701144897 7.918404731774244e-05']
['59866.335401399134 0.03427167030200454 6.793523864002295e-05 0.015018906024759807 4.06626995738898e-05 0.0005311851408162602 1.438148808143393e-06 0.015018906024759806 4.06626995738898e-05 0.019252764277244733 7.917481787609798e-05']
['59866.33543293709 0.034279244007862184 6.790004816115812e-05 0.015086965756641727 4.068921685313559e-05 0.0005335922614283751 1.4390866650476853e-06 0.015086965756641727 4.068921685313559e-05 0.019192278251220454 7.915825230769743e-05']
['59866.33546447506 0.03439523055941272 6.801647309520965e-05 0.015110757142721582 4.0721267490355704e-05 0.000534433709583401 1.4402202244572022e-06 0.015110757142721582 4.0721267490355704e-05 0.019284473416691143 7.927460020922514e-05']
['59866.335496013024 0.03421384317149624 6.786851979512123e-05 0.014953338229199399 4.0611445590692383e-05 0.0005288661544226874 1.4363360693036111e-06 0.014953338229199399 4.0611445590692383e-05 0.019260504942296842 7.909124788588514e-05']
['59866.33552755098 0.034414638743204086 6.804036751847823e-05 0.01508071919658406 4.069147577173339e-05 0.0005333713345593755 1.4391665579501036e-06 0.01508071919658406 4.069147577173339e-05 0.019333919546620025 7.927980709191435e-05']
['59866.33555908895 0.03435107040767623 6.800167509014804e-05 0.015059208171634562 4.067450248050055e-05 0.0005326105376812231 1.4385662505722714e-06 0.015059208171634562 4.067450248050055e-05 0.01929186223604167 7.923788845686327e-05']
['59866.335590626906 0.0342642419550897 6.791258327016265e-05 0.014939106308792718 4.0605917807865e-05 0.0005283628032043732 1.4361405639788742e-06 0.014939106308792718 4.0605917807865e-05 0.019325135646296985 7.912622528243e-05']
['59866.33562216487 0.03421842204924697 6.791252393085627e-05 0.01506057527962002 4.068230627418722e-05 0.0005326588892353622 1.4388422533145164e-06 0.01506057527962002 4.068230627418722e-05 0.01915784676962695 7.916540248395065e-05']
['59866.33565370284 0.034410976262442876 6.804320836471085e-05 0.014982833044699202 4.0648913554771315e-05 0.0005299093201298823 1.4376612274571116e-06 0.014982833044699202 4.0648913554771315e-05 0.019428143217743672 7.926040863979145e-05']
['59866.335685240796 0.03434697277281861 6.797423096215998e-05 0.014978534511852387 4.06362157046021e-05 0.000529757290629746 1.4372121328746512e-06 0.014978534511852387 4.06362157046021e-05 0.019368438260966223 7.919468480705015e-05']
['59866.33571677876 0.034271899722369326 6.793252340562143e-05 0.015043873618357741 4.066310740421578e-05 0.0005320681888025316 1.4381632321905755e-06 0.015043873618357741 4.066310740421578e-05 0.019228026104011586 7.917269756691438e-05']
['59866.33574831673 0.034283800089194745 6.794633014561038e-05 0.015039816663775537 4.067417320372438e-05 0.0005319247033857188 1.4385546047885885e-06 0.015039816663775537 4.067417320372438e-05 0.019243983425419206 7.919022759193746e-05']
['59866.335779854686 0.03440950878508536 6.803313822408045e-05 0.015107838941908284 4.0710060177181985e-05 0.0005343304993424297 1.4398238468371185e-06 0.015107838941908286 4.0710060177181985e-05 0.019301669843177077 7.928314383427674e-05']
['59866.33581139265 0.034170096752384305 6.784793882826661e-05 0.014974158363454894 4.0624376914950046e-05 0.0005296025160410428 1.4367934213427958e-06 0.014974158363454896 4.0624376914950046e-05 0.01919593838892941 7.90802301651439e-05']
['59866.33584293061 0.03428961365365679 6.792684078087148e-05 0.015063724509944159 4.06808405694141e-05 0.0005327702704738114 1.4387904146123485e-06 0.015063724509944157 4.06808405694141e-05 0.019225889143712635 7.917693153882609e-05']
['59866.335874468576 0.03422824262358493 6.790882507633557e-05 0.015037238157682853 4.067221002956942e-05 0.0005318335073878426 1.4384851717061635e-06 0.015037238157682853 4.067221002956942e-05 0.01919100446590208 7.915704132885305e-05']
['59866.33590600654 0.034180271616597174 6.785472604516372e-05 0.015036973468157699 4.0677796163461354e-05 0.0005318241459108841 1.4386827407776467e-06 0.015036973468157699 4.0677796163461354e-05 0.019143298148439476 7.911350673165948e-05']
['59866.3359375445 0.03433652714092597 6.800486031981743e-05 0.015016751025717498 4.066392804398009e-05 0.0005311089233162732 1.4381922563850175e-06 0.0150167510257175 4.066392804398009e-05 0.01931977611520847 7.923519464911959e-05']
['59866.335969082465 0.03417617810102607 6.787045886443679e-05 0.015065264166064102 4.0686217755495753e-05 0.000532824724669845 1.438980593666753e-06 0.015065264166064102 4.0686217755495753e-05 0.01911091393496197 7.913133072125619e-05']
['59866.33600062043 0.034313152726373336 6.794938211645058e-05 0.01496769700485906 4.06344708643097e-05 0.0005293739922277947 1.4371504217729976e-06 0.01496769700485906 4.06344708643097e-05 0.019345455721514276 7.917246208392061e-05']
['59866.33603215839 0.03424032594318983 6.790604832955634e-05 0.015010053216922465 4.065206026810556e-05 0.0005308720367879146 1.4377725196752534e-06 0.015010053216922465 4.065206026810556e-05 0.019230272726267362 7.91443074628727e-05']
['59866.336063696355 0.03433394918294062 6.796936652347784e-05 0.015061680324019451 4.0679079414922495e-05 0.0005326979721861412 1.438728126513929e-06 0.015061680324019451 4.0679079414922495e-05 0.019272268858921165 7.921251345367373e-05']
['59866.336095234314 0.034247027721156224 6.793866521997803e-05 0.014987831507802496 4.062899486576658e-05 0.0005300861045989383 1.4369567479426641e-06 0.014987831507802496 4.062899486576658e-05 0.01925919621335373 7.916045386223314e-05']
['59866.33612677228 0.0341318927224527 6.781024618012769e-05 0.015146115800987367 4.0730222585195905e-05 0.0005356842663043114 1.4405369461482411e-06 0.015146115800987368 4.0730222585195905e-05 0.01898577692146533 7.910234205666179e-05']
['59866.336158310245 0.034269615972376724 6.793540691435741e-05 0.014997193708267275 4.064349641992264e-05 0.0005304172247060909 1.4374696355040978e-06 0.014997193708267275 4.064349641992264e-05 0.019272422264109447 7.916510161589882e-05']
['59866.3361898482 0.03433727459460995 6.798425057482766e-05 0.015086068177431909 4.068202233680925e-05 0.0005335605160576953 1.4388322110840203e-06 0.015086068177431909 4.068202233680925e-05 0.019251206417178042 7.922679639890535e-05']
['59866.33622138617 0.03422238879413464 6.790683056339205e-05 0.014964157658600747 4.063125627392508e-05 0.0005292488134606115 1.4370367288952804e-06 0.014964157658600749 4.063125627392508e-05 0.01925823113553389 7.913429486362163e-05']
['59866.336252924135 0.03427647310347296 6.793307872226036e-05 0.015015591512460204 4.065979871033933e-05 0.0005310679139237224 1.4380462110826612e-06 0.015015591512460204 4.065979871033933e-05 0.019260881591012757 7.917147476111668e-05']
['59866.33628446209 0.034209126747643 6.791371014797409e-05 0.015073916580147671 4.0695736416024964e-05 0.0005331307412189734 1.4393172474167168e-06 0.015073916580147671 4.0695736416024964e-05 0.01913521016749533 7.917332245463505e-05']
['59866.33631600006 0.034264193771000824 6.788493865099484e-05 0.015110263556147323 4.0703551323367954e-05 0.0005344162525293705 1.4395936432241485e-06 0.015110263556147321 4.0703551323367954e-05 0.019153930214853503 7.915266253249717e-05']
['59866.33634753802 0.03427185863372361 6.792573004412513e-05 0.015053105855079116 4.065864223097376e-05 0.0005323947123825318 1.4380053089920804e-06 0.015053105855079116 4.065864223097376e-05 0.019218752778644495 7.916457534840748e-05']
['59866.33637907598 0.03422575330641145 6.790260624797587e-05 0.014961425812358988 4.063143392592421e-05 0.0005291521941643575 1.4370430120494607e-06 0.014961425812358988 4.063143392592421e-05 0.019264327494052463 7.913076113714815e-05']
['59866.33641061395 0.034229039507209666 6.790587986305246e-05 0.015099288997240914 4.0703453595495935e-05 0.0005340281069075465 1.439590186807724e-06 0.015099288997240914 4.0703453595495935e-05 0.019129750509968752 7.917057316058792e-05']
['59866.33644215191 0.034293163718328065 6.796722225418928e-05 0.015043508380297995 4.067734253378731e-05 0.0005320552711486174 1.4386666969098783e-06 0.015043508380297995 4.067734253378731e-05 0.01924965533803007 7.920978157122657e-05']
['59866.33647368987 0.0342512716166449 6.790742742201205e-05 0.01510909877596121 4.071741897118414e-05 0.0005343750568573182 1.4400841109350381e-06 0.015109098775961212 4.071741897118414e-05 0.01914217284068369 7.91790812446746e-05']
['59866.33650522784 0.03427082742377061 6.791393427769675e-05 0.014978172262169513 4.0643874157282764e-05 0.0005297444786680432 1.437482995230332e-06 0.014978172262169515 4.0643874157282764e-05 0.0192926551616011 7.914686965122722e-05']
['59866.3365367658 0.03437009081276986 6.802402042217264e-05 0.014955085932282145 4.061693824414735e-05 0.0005289279667748377 1.4365303321809553e-06 0.014955085932282147 4.061693824414735e-05 0.01941500488048771 7.922753957258196e-05']
['59866.33656830376 0.03428199324099161 6.794520730908922e-05 0.015055080443454286 4.0671370980135464e-05 0.0005324645491604163 1.4384554964028497e-06 0.015055080443454286 4.0671370980135464e-05 0.019226912797537327 7.918782490811903e-05']
['59866.33659984172 0.03437139165362214 6.80184353236948e-05 0.015043958683182685 4.067276489872672e-05 0.0005320711973552812 1.4385047961881977e-06 0.015043958683182687 4.067276489872672e-05 0.01932743297043945 7.925138073491685e-05']
['59866.33663137969 0.03427402987273989 6.791798144738545e-05 0.014999017357699977 4.065076287690571e-05 0.000530481723110909 1.4377266338480133e-06 0.014999017357699979 4.065076287690571e-05 0.019275012515039915 7.915388004615951e-05']
['59866.33666291765 0.03430854023555926 6.797454231378512e-05 0.01502381338052825 4.066622870357354e-05 0.0005313587030224955 1.4382736255731662e-06 0.015023813380528252 4.066622870357354e-05 0.019284726855031006 7.921035639195113e-05']
['59866.33669445561 0.03428656191425654 6.796560145390776e-05 0.014980324284705878 4.063696313013757e-05 0.0005298205908956671 1.4372385676454431e-06 0.014980324284705878 4.063696313013757e-05 0.01930623762955066 7.91876616237125e-05']
['59866.33672599358 0.03431545479157769 6.7946511841008e-05 0.015083192332867378 4.068380310877915e-05 0.0005334588038625822 1.4388951930088044e-06 0.015083192332867378 4.068380310877915e-05 0.01923226245871031 7.919533008172987e-05']
['59866.33675753154 0.034341975537447576 6.798151681718391e-05 0.01504142901077734 4.066026321019939e-05 0.0005319817284957891 1.4380626394046155e-06 0.01504142901077734 4.066026321019939e-05 0.019300546526670237 7.921327939864473e-05']
['59866.3367890695 0.03426741754583038 6.790435865773488e-05 0.01499683770128764 4.0645275320650645e-05 0.00053040463353485 1.4375325512472381e-06 0.01499683770128764 4.0645275320650645e-05 0.019270579844542744 7.913937282168584e-05']
['59866.33682060747 0.034339103791328214 6.797029437177177e-05 0.014919742184355399 4.0612592043961616e-05 0.0005276779373992964 1.4363766167935716e-06 0.014919742184355397 4.0612592043961616e-05 0.019419361606972815 7.91791863403165e-05']
['59866.336852145425 0.034262280778260865 6.79336828116712e-05 0.015050808382874948 4.068358440988992e-05 0.0005323134559252186 1.4388874581178557e-06 0.015050808382874946 4.068358440988992e-05 0.01921147239538592 7.918421118375423e-05']
['59866.33688368339 0.034326239466874686 6.79796984872958e-05 0.014994222257993328 4.063623178126417e-05 0.0005303121311507019 1.4372127014702596e-06 0.014994222257993326 4.063623178126417e-05 0.01933201720888136 7.919938598123265e-05']
['59866.336915221356 0.03416399537619586 6.785330179168522e-05 0.014980163093208522 4.064108165873491e-05 0.0005298148899126473 1.4373842307975613e-06 0.014980163093208522 4.064108165873491e-05 0.01918383228298734 7.90934136475691e-05']
['59866.336946759315 0.034315367458296525 6.798255731426944e-05 0.015016268593922967 4.066920532610201e-05 0.0005310918607818722 1.438378902059638e-06 0.015016268593922967 4.066920532610201e-05 0.01929909886437356 7.921876268185822e-05']
['59866.33697829728 0.034257352931134584 6.794806920209342e-05 0.014974590196725653 4.063726989308221e-05 0.0005296177890187389 1.4372494171652203e-06 0.014974590196725653 4.063726989308221e-05 0.01928276273440893 7.917277191469099e-05']
['59866.337009835246 0.03441096490234219 6.808966990357592e-05 0.014953718409620398 4.0623139287559656e-05 0.000528879600554525 1.4367496492279323e-06 0.014953718409620398 4.0623139287559656e-05 0.01945724649272179 7.928708970036929e-05']
['59866.337041373205 0.034296114047948516 6.79352950560124e-05 0.015096862071003723 4.0697457798471515e-05 0.000533942271950398 1.439378128866788e-06 0.015096862071003725 4.0697457798471515e-05 0.01919925197694479 7.919272305967154e-05']
['59866.33707291117 0.034315431150139776 6.794731048650111e-05 0.015066499797697527 4.0680357364568774e-05 0.000532868426199245 1.4387733247368686e-06 0.015066499797697527 4.0680357364568774e-05 0.01924893135244225 7.919424523068586e-05']
['59866.33710444913 0.03429964412286593 6.796163888097548e-05 0.015022514454923976 4.065906142654982e-05 0.0005313127629268001 1.4380201350027585e-06 0.015022514454923976 4.065906142654982e-05 0.019277129667941956 7.919560363729838e-05']
['59866.337135987094 0.03418205017214266 6.785112380995414e-05 0.015005647724152279 4.065010133191111e-05 0.0005307162243543299 1.4377032364800205e-06 0.015005647724152277 4.065010133191111e-05 0.019176402447990383 7.909618031591896e-05']
['59866.33716752506 0.034371432975931086 6.80089339624126e-05 0.015091590790792683 4.069761093255753e-05 0.0005337558385499514 1.4393835448771758e-06 0.015091590790792683 4.069761093255753e-05 0.019279842185138403 7.925598169426472e-05']
['59866.33719906302 0.03426013743840434 6.792926208219546e-05 0.015073197942132173 4.0697971497240056e-05 0.0005331053245984267 1.4393962972441822e-06 0.015073197942132173 4.0697971497240056e-05 0.019186939496272162 7.918781175800832e-05']
['59866.337230600984 0.034288208081584504 6.793241965715543e-05 0.015096290059823365 4.0679304812480406e-05 0.0005339220411933184 1.4387360983218185e-06 0.015096290059823365 4.0679304812480406e-05 0.019191918021761137 7.918092876761784e-05']
['59866.33726213895 0.034277878323804606 6.793132442705949e-05 0.01502987401904007 4.066591250963072e-05 0.0005315730542619286 1.4382624425000605e-06 0.015029874019040072 4.066591250963072e-05 0.019248004304764532 7.917310956792938e-05']
['59866.33729367691 0.034268622903246684 6.796414419968158e-05 0.015052339109586848 4.068333527924413e-05 0.0005323675943080457 1.4388786469236883e-06 0.015052339109586848 4.068333527924413e-05 0.019216283793659836 7.921021819335243e-05']
['59866.337325214874 0.034286153532238364 6.793415160961363e-05 0.015006395474467462 4.065715788249279e-05 0.0005307426706118544 1.437952810903632e-06 0.015006395474467462 4.065715788249279e-05 0.0192797580577709 7.917103916205671e-05']
['59866.33735675283 0.03421713228255988 6.788687699010232e-05 0.014995358732069171 4.0650662088087947e-05 0.0005303523256988944 1.4377230691727788e-06 0.014995358732069171 4.0650662088087947e-05 0.019221773550490713 7.912714070196897e-05']
['59866.3373882908 0.03421970887729321 6.789996956059104e-05 0.015018759624585468 4.066073807333442e-05 0.000531179962969279 1.4380794342524448e-06 0.015018759624585466 4.066073807333442e-05 0.019200949252707745 7.914354987614276e-05']
['59866.337419828764 0.034214533128419246 6.787694226237682e-05 0.014984503114235702 4.0649123878128306e-05 0.0005299683867570026 1.4376686661242033e-06 0.014984503114235704 4.0649123878128306e-05 0.019230030014183542 7.91178270868801e-05']
['59866.33745136672 0.034240891935882915 6.78990881176819e-05 0.015069240653663232 4.0687426155205314e-05 0.0005329653641492994 1.4390233320638657e-06 0.01506924065366323 4.0687426155205314e-05 0.019171651282219683 7.915650835116476e-05']
['59866.33748290469 0.03419064475086826 6.788024701162468e-05 0.014916232313418392 4.0593612613367996e-05 0.0005275538011083543 1.4357053567500062e-06 0.01491623231341839 4.0593612613367996e-05 0.019274412437449873 7.909215712928413e-05']
['59866.33751444265 0.034250858738465326 6.793755546660843e-05 0.014991933213343796 4.065030468016043e-05 0.0005302311727571617 1.437710428453142e-06 0.014991933213343796 4.065030468016043e-05 0.01925892552512153 7.917044090674479e-05']
['59866.33754598061 0.0342559870192408 6.795380620757332e-05 0.014998339145270757 4.0648801076919156e-05 0.000530457736253003 1.4376572493668538e-06 0.014998339145270757 4.0648801076919156e-05 0.01925764787397004 7.918361451138345e-05']
['59866.33757751858 0.03423429651822251 6.791144990248843e-05 0.01497322999831493 4.064711461697118e-05 0.0005295696818408161 1.4375976030475102e-06 0.014973229998314928 4.064711461697118e-05 0.019261066519907583 7.914640203157304e-05']
['59866.337609056536 0.03426007985746952 6.793061048838818e-05 0.015007374280231436 4.06449406841484e-05 0.000530777288784224 1.4375207159020224e-06 0.015007374280231437 4.06449406841484e-05 0.01925270557723808 7.916172714477026e-05']
['59866.3376405945 0.03431188690780936 6.795860969862118e-05 0.015076839686759205 4.0677916932070504e-05 0.0005332341249670645 1.4386870120934504e-06 0.015076839686759205 4.0677916932070504e-05 0.019235047221050156 7.920268655861338e-05']
['59866.33767213247 0.034148007197869555 6.787214633039438e-05 0.015017932774040703 4.067005088240597e-05 0.0005311507191134129 1.4384088074964023e-06 0.015017932774040703 4.067005088240597e-05 0.01913007442382885 7.91244670520564e-05']
['59866.337703670426 0.03413652908209269 6.783901205519954e-05 0.015043626665462238 4.068338094174531e-05 0.0005320594546305248 1.4388802619043053e-06 0.015043626665462238 4.068338094174531e-05 0.019092902416630454 7.910290159960426e-05']
['59866.33773520839 0.03426916130902918 6.793440928317996e-05 0.015034239927228039 4.066800270103176e-05 0.0005317274666773065 1.4383363678986123e-06 0.015034239927228037 4.066800270103176e-05 0.01923492138180114 7.917682999682251e-05']
['59866.33776674636 0.03440635429422539 6.803467884766102e-05 0.015033548372675943 4.0687294163897897e-05 0.0005317030079383323 1.4390186638263056e-06 0.015033548372675941 4.0687294163897897e-05 0.019372805921549448 7.927277863355071e-05']
['59866.337798284316 0.034276248141336195 6.791042191794774e-05 0.015009210262996198 4.0657682136919264e-05 0.0005308422233914336 1.4379713526110566e-06 0.015009210262996198 4.0657682136919264e-05 0.01926703787834 7.915094770007773e-05']
['59866.33782982228 0.03427805413638539 6.793637716364636e-05 0.015040908154258575 4.066792322656162e-05 0.0005319633069647662 1.4383335570642186e-06 0.015040908154258573 4.066792322656162e-05 0.019237145982126818 7.917847764186125e-05']
['59866.33786136024 0.034174842496538994 6.785133245941377e-05 0.01499987343218743 4.0654746938250936e-05 0.0005305120005523163 1.437867541193941e-06 0.014999873432187432 4.0654746938250936e-05 0.019174969064351562 7.909874692516387e-05']
['59866.337892898206 0.034210273457422044 6.786545680493108e-05 0.015028009908814349 4.0676185156116095e-05 0.000531507124849286 1.4386257630482346e-06 0.01502800990881435 4.0676185156116095e-05 0.019182263548607692 7.912188234740505e-05']
['59866.33792443617 0.034351276892393874 6.799846364132861e-05 0.015060983384969638 4.068118422608718e-05 0.0005326733230095165 1.4388025689808477e-06 0.01506098338496964 4.068118422608718e-05 0.019290293507424235 7.923856262968135e-05']
['59866.33795597413 0.03428311130266622 6.794419208189619e-05 0.015115069413938767 4.071302762780111e-05 0.0005345862249789939 1.4399287989336552e-06 0.015115069413938767 4.071302762780111e-05 0.01916804188872745 7.920835723762803e-05']
['59866.337987512095 0.03423561867454808 6.792312568679588e-05 0.015037133053806653 4.0664367144580216e-05 0.0005318297900986347 1.4382077863919117e-06 0.015037133053806651 4.0664367144580216e-05 0.019198485620741428 7.916528126858064e-05']
['59866.33801905006 0.034265480446110774 6.793571285701771e-05 0.015018891092111304 4.0659293928266564e-05 0.0005311846126818552 1.438028358068869e-06 0.015018891092111304 4.0659293928266564e-05 0.01924658935399947 7.917347576137059e-05']
['59866.33805058802 0.03430600836249634 6.795282671562592e-05 0.014982359406442713 4.062784338270213e-05 0.0005298925686032695 1.4369160225600877e-06 0.014982359406442713 4.062784338270213e-05 0.019323648956053624 7.917201725719294e-05']
['59866.338082125985 0.034395981008587435 6.804727378541702e-05 0.015028437909221 4.065978692844616e-05 0.0005315222622671446 1.4380457943834308e-06 0.015028437909221 4.065978692844616e-05 0.019367543099366436 7.92694754788635e-05']
['59866.338113663944 0.034260350099623624 6.791120972118183e-05 0.015106973955787237 4.068541307637336e-05 0.0005342999067164583 1.4389521339645459e-06 0.015106973955787235 4.068541307637336e-05 0.019153376143836387 7.916587170611763e-05']
['59866.33814520191 0.03429110030227729 6.79512496896043e-05 0.015008491161931899 4.0654663713396025e-05 0.0005308167903938857 1.4378645977168192e-06 0.015008491161931899 4.0654663713396025e-05 0.019282609140345394 7.918443038898662e-05']
['59866.338176739875 0.034198167300567316 6.788015070735416e-05 0.01504360097389487 4.068420683524743e-05 0.0005320585459772043 1.438909471911712e-06 0.01504360097389487 4.068420683524743e-05 0.019154566326672444 7.913860970390058e-05']
['59866.33820827783 0.034199722430891415 6.787602578746706e-05 0.01507879890992226 4.0686382293081885e-05 0.0005333034183117358 1.4389864129934546e-06 0.015078798909922262 4.0686382293081885e-05 0.019120923520969155 7.91361900826651e-05']
['59866.3382398158 0.03431263613185676 6.795952991578377e-05 0.015059717173437423 4.06808090460471e-05 0.0005326285399374382 1.4387892997013083e-06 0.015059717173437423 4.06808090460471e-05 0.019252918958419338 7.92049615302934e-05']
['59866.338271353765 0.03424999824300333 6.793460110096809e-05 0.015003089565219072 4.065295291199201e-05 0.0005306257479900111 1.4378040904945756e-06 0.015003089565219072 4.065295291199201e-05 0.01924690867778426 7.916926554675302e-05']
['59866.33830289172 0.034208794577908604 6.79022823745029e-05 0.015054534402742483 4.069235094661837e-05 0.000532445236920769 1.4391975109298844e-06 0.015054534402742483 4.069235094661837e-05 0.01915426017516612 7.916177977552981e-05']
['59866.33833442969 0.03426629933474649 6.791131559495304e-05 0.015086406822926843 4.070039271955633e-05 0.000533572493192023 1.4394819304663954e-06 0.015086406822926843 4.070039271955633e-05 0.019179892511819646 7.917366199288389e-05']
['59866.33836596765 0.03425745726033836 6.790557329563591e-05 0.015003679030818187 4.066014757905355e-05 0.0005306465960708738 1.4380585497894075e-06 0.015003679030818189 4.066014757905355e-05 0.019253778229520173 7.914805421335003e-05']
['59866.33839750561 0.03425370354608907 6.79252555826678e-05 0.015079491691843043 4.0681007884335456e-05 0.0005333279204599974 1.43879633216719e-06 0.015079491691843043 4.0681007884335456e-05 0.01917421185424603 7.91756575498815e-05']
['59866.33842904358 0.034191549560707926 6.787303682788675e-05 0.014975774958898957 4.064448630757796e-05 0.0005296596914090211 1.4375046456181977e-06 0.014975774958898957 4.064448630757796e-05 0.01921577460180897 7.911209386336936e-05']
['59866.33846058154 0.03425000366022175 6.792674770148781e-05 0.015027313086507855 4.065840073593225e-05 0.0005314824798016115 1.4379967678521717e-06 0.015027313086507855 4.065840073593225e-05 0.019222690573713896 7.916532450325228e-05']
['59866.3384921195 0.03428983606200115 6.798418446300377e-05 0.014984236859745658 4.063336666160818e-05 0.0005299589699307335 1.4371113685911927e-06 0.014984236859745656 4.063336666160818e-05 0.019305599202255497 7.920176654189233e-05']
['59866.33852365747 0.03430757063895925 6.797273787601168e-05 0.015105873191910457 4.070300555855325e-05 0.0005342609751581991 1.439574340742365e-06 0.015105873191910457 4.070300555855325e-05 0.01920169744704879 7.92276956364415e-05']
['59866.33855519543 0.03425864376280278 6.793422910198137e-05 0.015059011555609124 4.069243812760006e-05 0.0005326035838118143 1.4392005943263687e-06 0.015059011555609124 4.069243812760006e-05 0.019199632207193652 7.918922909366558e-05']
['59866.33858673339 0.03428836481566902 6.795248978441076e-05 0.015023030465623524 4.065567463452078e-05 0.0005313310130720271 1.4379003517377262e-06 0.015023030465623524 4.065567463452078e-05 0.019265334350045495 7.918601358755512e-05']
['59866.33861827135 0.0342487154693412 6.791351079209571e-05 0.01500574138855726 4.0649820712866885e-05 0.0005307195370550065 1.4376933116115728e-06 0.01500574138855726 4.0649820712866885e-05 0.019242974080783938 7.914956015099718e-05']
['59866.33864980932 0.034193978110462736 6.792242511569021e-05 0.014946970347588311 4.061419481483347e-05 0.0005286409366814811 1.436433303217327e-06 0.014946970347588313 4.061419481483347e-05 0.019247007762874423 7.913891997022572e-05']
['59866.33868134728 0.03429683527706151 6.798364447654624e-05 0.014984003650779757 4.0652046643282223e-05 0.000529950721850801 1.4377720377957016e-06 0.014984003650779757 4.0652046643282223e-05 0.01931283162628175 7.921088821999808e-05']
['59866.33871288524 0.034148837165184256 6.781477710186116e-05 0.015074830033698581 4.068158659741275e-05 0.0005331630480296206 1.4388167999553864e-06 0.015074830033698581 4.068158659741275e-05 0.019074007131485674 7.908119549841104e-05']
['59866.33874442321 0.034276171036745254 6.792272287876801e-05 0.015050496107074448 4.066733820220975e-05 0.0005323024114280503 1.4383128660603453e-06 0.015050496107074448 4.066733820220975e-05 0.019225674929670804 7.916646183655566e-05']
['59866.33877596117 0.034230101669550615 6.790093770061605e-05 0.015036103456032334 4.067099190178673e-05 0.0005317933755263726 1.4384420892488451e-06 0.015036103456032332 4.067099190178673e-05 0.019193998213518283 7.914964891203336e-05']
['59866.33880749913 0.03418132396583517 6.78588191050648e-05 0.015001463859987177 4.0648382613666e-05 0.0005305682504291964 1.4376424492568e-06 0.015001463859987177 4.0648382613666e-05 0.01917986010584799 7.910189845661665e-05']
['59866.3388390371 0.0341628508404537 6.787524769573283e-05 0.015054671432185088 4.06659443926492e-05 0.0005324500833459112 1.4382635701311697e-06 0.015054671432185088 4.06659443926492e-05 0.019108179408268613 7.912501679685839e-05']
['59866.338870575055 0.0343428639508446 6.796089636255111e-05 0.01513817810661322 4.070873537455858e-05 0.0005354035277940007 1.4397769915290884e-06 0.015138178106613222 4.070873537455858e-05 0.01920468584423138 7.922048074959689e-05']
['59866.33890211302 0.03426314577885926 6.791792010400824e-05 0.015061915516673866 4.068254937656764e-05 0.0005327062904247033 1.43885085130241e-06 0.015061915516673867 4.068254937656764e-05 0.01920123026218539 7.917015659344947e-05']
['59866.338933650986 0.03430052776369137 6.796306543637642e-05 0.01497376440387435 4.063531369161736e-05 0.0005295885825711268 1.4371802306912615e-06 0.01497376440387435 4.063531369161736e-05 0.01932676335981702 7.91846385501969e-05']
['59866.338965188945 0.034334847353764346 6.797471950582814e-05 0.015042559502633118 4.0668078499192455e-05 0.0005320217114662274 1.4383390487101573e-06 0.015042559502633118 4.0668078499192455e-05 0.019292287851131226 7.921145814029996e-05']
['59866.33899672691 0.034172651024193146 6.788452543089079e-05 0.014994620276797991 4.063775781112093e-05 0.0005303262081863032 1.437266673735817e-06 0.014994620276797991 4.063775781112093e-05 0.019178030747395155 7.911849437958597e-05']
['59866.339028264876 0.03416535207702765 6.788503012186861e-05 0.01503096109627413 4.0676496456291104e-05 0.0005316115017542227 1.4386367730397095e-06 0.01503096109627413 4.0676496456291104e-05 0.01913439098075352 7.913883167324163e-05']
['59866.339059802835 0.03432385263928624 6.796455325327556e-05 0.01501194609426362 4.0673709497565464e-05 0.0005309389836291393 1.4385382045380698e-06 0.01501194609426362 4.0673709497565464e-05 0.019311906545022618 7.920562570430004e-05']
['59866.3390913408 0.03418410407028357 6.788028324182044e-05 0.014975392021727514 4.063817910241085e-05 0.0005296461477770813 1.4372815738672111e-06 0.014975392021727513 4.063817910241085e-05 0.019208712048556058 7.911507096469921e-05']
['59866.33912287876 0.03421568590475034 6.787778874905052e-05 0.015010543561361537 4.0658457235281236e-05 0.0005308893791748692 1.4379987661078769e-06 0.015010543561361538 4.0658457235281236e-05 0.0192051423433888 7.912334895727002e-05']
['59866.339154416724 0.03428897415155744 6.796876546757103e-05 0.014996629994389225 4.066776229329116e-05 0.0005303972874060506 1.438327865214107e-06 0.014996629994389225 4.066776229329116e-05 0.019292344157168215 7.920618643218035e-05']
['59866.33918595469 0.03414994833668357 6.782442730723817e-05 0.01507059229633676 4.068537710082111e-05 0.0005330131687299185 1.4389508615896635e-06 0.01507059229633676 4.068537710082111e-05 0.019079356040346808 7.90914208330515e-05']
['59866.33921749265 0.03423322622367156 6.787632895208741e-05 0.01500386781667467 4.066696946845463e-05 0.000530653273004706 1.4382998247714982e-06 0.015003867816674671 4.066696946845463e-05 0.01922935840699689 7.912647115700409e-05']
['59866.339249030614 0.03421510570318015 6.789424105262447e-05 0.015018143069443851 4.066856759245064e-05 0.0005311581567918397 1.4383563468456401e-06 0.015018143069443851 4.066856759245064e-05 0.019196962633736298 7.914265827057873e-05']
['59866.33928056858 0.03422921968088709 6.789008620475083e-05 0.015093588546873324 4.0692110190336506e-05 0.0005338264947178016 1.4391889959182535e-06 0.015093588546873324 4.0692110190336506e-05 0.019135631134013766 7.91511947896618e-05']
['59866.33931210654 0.03433879777376305 6.797275900355881e-05 0.01507432064800713 4.067496652680726e-05 0.0005331450321961239 1.4385826628530573e-06 0.015074320648007128 4.067496652680726e-05 0.01926447712575592 7.921331244502263e-05']
['59866.339343644504 0.03417603068708719 6.786761869963645e-05 0.015021364722040097 4.0669861659656176e-05 0.0005312720994441991 1.43840211511063e-06 0.015021364722040098 4.0669861659656176e-05 0.019154665965047092 7.912048606634577e-05']
['59866.33937518246 0.03428476767390199 6.794431624749812e-05 0.015024511767419051 4.066665755543813e-05 0.0005313834034060202 1.4382887931051892e-06 0.015024511767419053 4.066665755543813e-05 0.019260255906482938 7.918463959046167e-05']
['59866.33940672043 0.034309944736650735 6.796645006688085e-05 0.015107798980546955 4.068562061795675e-05 0.0005343290859983878 1.4389594742465224e-06 0.015107798980546957 4.068562061795675e-05 0.01920214575610378 7.921337046081372e-05']
['59866.339438258394 0.03428458938456724 6.79586340787973e-05 0.015023015932603584 4.064643997112896e-05 0.0005313304990715912 1.4375737423318155e-06 0.015023015932603585 4.064643997112896e-05 0.019261573451963658 7.918654575230858e-05']
['59866.33946979635 0.0342876628806441 6.794861144980085e-05 0.014987579423091904 4.0660839835613915e-05 0.0005300771889261008 1.4380830333568453e-06 0.014987579423091904 4.0660839835613915e-05 0.0193000834575522 7.918533762063185e-05']
['59866.33950133432 0.03425839620034659 6.79359170555068e-05 0.015146939779469888 4.0733923898309905e-05 0.0005357134085817546 1.4406678533211352e-06 0.015146939779469888 4.0733923898309905e-05 0.0191114564208767 7.921200276679035e-05']
['59866.33953287228 0.03423794950671769 6.789997016325635e-05 0.015113013946585652 4.0702650368093965e-05 0.0005345135276924133 1.439561778449624e-06 0.015113013946585652 4.0702650368093965e-05 0.01912493556013204 7.916509139234542e-05']
['59866.33956441024 0.03433544417214871 6.794892679899885e-05 0.015054432983932484 4.0682149804855865e-05 0.0005324416499641171 1.4388367193439547e-06 0.015054432983932485 4.0682149804855865e-05 0.019281011188216228 7.919655273987902e-05']
['59866.33959594821 0.03432566379765611 6.798954531626642e-05 0.015068074269436483 4.068688989548269e-05 0.0005329241117459147 1.4390043657559466e-06 0.015068074269436483 4.068688989548269e-05 0.019257589528219626 7.923383924611868e-05']
['59866.339627486166 0.03430733625889875 6.795768696428804e-05 0.015096037223383652 4.069227326589679e-05 0.0005339130989335019 1.4391947635363685e-06 0.01509603722338365 4.069227326589679e-05 0.0192112990355151 7.920926916139666e-05']
['59866.33965902413 0.03422839594150855 6.791085910265834e-05 0.015048766848473102 4.0678576800341545e-05 0.0005322412514159861 1.4387103501594785e-06 0.0150487668484731 4.0678576800341545e-05 0.01917962909303545 7.916205779641152e-05']
['59866.3396905621 0.03427164134301496 6.792935090354096e-05 0.015076959306200845 4.068103797142142e-05 0.0005332383556393817 1.43879739628018e-06 0.015076959306200845 4.068103797142142e-05 0.01919468203681412 7.917918643563239e-05']
['59866.339722100056 0.03427417337296023 6.796809415445861e-05 0.015076636214247837 4.067547890335138e-05 0.0005332269285990718 1.4386007844663287e-06 0.015076636214247837 4.067547890335138e-05 0.01919753715871239 7.920957269804158e-05']
['59866.33975363802 0.03431744264459583 6.795313161327097e-05 0.015032861911287474 4.065172770723471e-05 0.0005316787293331731 1.4377607577404812e-06 0.015032861911287474 4.065172770723471e-05 0.019284580733308358 7.918453802121777e-05']
['59866.33978517599 0.03418290160983252 6.785710729167805e-05 0.015031172050003509 4.0656726260789624e-05 0.0005316189627161769 1.4379375454086089e-06 0.015031172050003509 4.0656726260789624e-05 0.01915172955982901 7.910471793919176e-05']
['59866.339816713946 0.03423652325023616 6.792259695730063e-05 0.015039361665584615 4.0670877305130955e-05 0.0005319086111165671 1.4384380362212388e-06 0.015039361665584615 4.0670877305130955e-05 0.019197161584651547 7.916817187603185e-05']
['59866.33984825191 0.0342225198258927 6.79192815744059e-05 0.01499991467781306 4.064734163795318e-05 0.0005305134593179163 1.4376056322722816e-06 0.01499991467781306 4.064734163795318e-05 0.019222605148079643 7.915323866915312e-05']
['59866.33987978987 0.03422809314484722 6.792406366637445e-05 0.015030040307414663 4.0672776129201055e-05 0.0005315789355101053 1.4385051933849762e-06 0.015030040307414661 4.0672776129201055e-05 0.019198052837432557 7.917040572720211e-05']
['59866.339911327836 0.034221271856491736 6.789724658172511e-05 0.015005076599901959 4.065665166157105e-05 0.0005306960249659837 1.4379349070009672e-06 0.015005076599901959 4.065665166157105e-05 0.019216195256589776 7.913911433488443e-05']
['59866.3399428658 0.03421596303543203 6.788895484285014e-05 0.015044726706916095 4.067622427109057e-05 0.0005320983606382998 1.4386271464574648e-06 0.015044726706916095 4.067622427109057e-05 0.01917123632851593 7.914205841780085e-05']
['59866.33997440376 0.03414283176175916 6.784881033969962e-05 0.015020340814972118 4.0662063187913775e-05 0.0005312358861395023 1.43812630059366e-06 0.015020340814972118 4.0662063187913775e-05 0.019122490946787044 7.910034416619451e-05']
['59866.340005941725 0.03429278628570671 6.790109438277757e-05 0.015042444658893926 4.0641364034680675e-05 0.0005320176496998329 1.43739421780369e-06 0.015042444658893926 4.0641364034680675e-05 0.01925034162681278 7.913456317550697e-05']
['59866.34003747969 0.03424660539860632 6.783862938994614e-05 0.01502484612757384 4.063319636798083e-05 0.0005313952289774441 1.4371053456861774e-06 0.01502484612757384 4.063319636798083e-05 0.01922175927103248 7.907677462178989e-05']
['59866.34006901765 0.03428028608944509 6.789707124539517e-05 0.014998658053125958 4.0619270196911156e-05 0.0005304690153111243 1.4366128081386034e-06 0.014998658053125957 4.0619270196911156e-05 0.019281628036319134 7.911976614621622e-05']
['59866.340100555615 0.034344897661847444 6.792335918227467e-05 0.015053703135772655 4.064009877574226e-05 0.0005324158368658186 1.4373494684227256e-06 0.015053703135772657 4.064009877574226e-05 0.019291194526074786 7.915301858493069e-05']
['59866.34013209357 0.034294034690688056 6.793491197853787e-05 0.015120313570163078 4.068205494411215e-05 0.0005347716990646484 1.4388333643314508e-06 0.015120313570163078 4.068205494411215e-05 0.019173721120524977 7.918447991877858e-05']
['59866.34016363154 0.03419758795995407 6.78643988399626e-05 0.015055212780594882 4.0649535315305006e-05 0.0005324692296293231 1.437683217737635e-06 0.015055212780594882 4.0649535315305006e-05 0.019142375179359187 7.910727748608054e-05']
['59866.340195169505 0.03434468822823806 6.79289100051188e-05 0.015069423164252659 4.0642642327615936e-05 0.0005329718191409603 1.4374394281679936e-06 0.015069423164252659 4.0642642327615936e-05 0.0192752650639854 7.91590878538532e-05']
['59866.34022670746 0.03423921808517689 6.788694905234513e-05 0.015081793380399517 4.0665188859286016e-05 0.0005334093260402687 1.4382368486046317e-06 0.015081793380399517 4.0665188859286016e-05 0.01915742470477737 7.913466646544423e-05']
['59866.34025824543 0.03410962068460218 6.77518284373315e-05 0.015007542414586881 4.0601859949300794e-05 0.0005307832353206179 1.4359970465902384e-06 0.01500754241458688 4.0601859949300794e-05 0.019102078270015303 7.898620947953027e-05']
['59866.340289783395 0.034239643288805785 6.784972165266014e-05 0.01496903408290231 4.0600671226138145e-05 0.0005294212816899909 1.4359550041086154e-06 0.01496903408290231 4.0600671226138145e-05 0.019270609205903476 7.906958474885536e-05']
['59866.34032132135 0.034268445730902784 6.788979307864848e-05 0.015074312624476411 4.0649432996504594e-05 0.0005331447484217739 1.4376795989503336e-06 0.015074312624476411 4.0649432996504594e-05 0.019194133106426373 7.912901116025034e-05']
['59866.34035285932 0.03420717971064894 6.784261904411254e-05 0.015007671779958131 4.0626177471202726e-05 0.0005307878106846844 1.4368571029934468e-06 0.015007671779958131 4.0626177471202726e-05 0.019199507930690807 7.90765910664227e-05']
['59866.34038439728 0.034180466609594465 6.78141276447011e-05 0.014997224725714369 4.061875540622651e-05 0.0005304183217238747 1.436594601142577e-06 0.014997224725714369 4.061875540622651e-05 0.019183241883880098 7.904833457425063e-05']
['59866.34041593524 0.034324941594065315 6.791914474283455e-05 0.015014739027207537 4.0610533193242934e-05 0.0005310377634255279 1.4363037998449124e-06 0.015014739027207537 4.0610533193242934e-05 0.019310202566857778 7.913422539481634e-05']
['59866.34044747321 0.034315686911441455 6.791349463230851e-05 0.015129464569765045 4.0689442328917976e-05 0.0005350953494692894 1.4390946396221995e-06 0.015129464569765043 4.0689442328917976e-05 0.019186222341676412 7.916990255274374e-05']
['59866.34047901117 0.034303590858090795 6.787436060580068e-05 0.01501374508493748 4.0633773375823935e-05 0.0005310026099087662 1.4371257531640511e-06 0.01501374508493748 4.0633773375823935e-05 0.019289845773153316 7.910772633822871e-05']
['59866.34051054913 0.034166616501961344 6.78229411505682e-05 0.014996355359138663 4.059817761326955e-05 0.000530387574171012 1.4358668105943499e-06 0.014996355359138664 4.059817761326955e-05 0.019170261142822678 7.904532479427241e-05']
['59866.34054208709 0.03424266800821399 6.785580800211563e-05 0.015048487587075556 4.063810296283853e-05 0.0005322313745644674 1.4372788809807e-06 0.015048487587075554 4.063810296283853e-05 0.019194180421138435 7.909403322652251e-05']
['59866.34057362506 0.03421331011992784 6.783948517980188e-05 0.014965560490156 4.058368039250706e-05 0.0005292984284775768 1.4353540762953622e-06 0.014965560490155998 4.058368039250706e-05 0.019247749629771844 7.905207690922308e-05']
['59866.34060516302 0.03433587038048723 6.791098486909455e-05 0.015069208495027511 4.064145300774401e-05 0.0005329642267702243 1.4373973645820969e-06 0.01506920849502751 4.064145300774401e-05 0.01926666188545972 7.914309551989393e-05']
['59866.34063670098 0.03424121508277698 6.786273008135877e-05 0.014937913731545526 4.05802174369226e-05 0.0005283206244123934 1.4352315992955901e-06 0.014937913731545528 4.05802174369226e-05 0.01930330135123145 7.907024839548231e-05']
['59866.34066823895 0.03417311763221763 6.780735647089509e-05 0.015048495559414041 4.064427106918758e-05 0.0005322316565282625 1.4374970331173595e-06 0.01504849555941404 4.064427106918758e-05 0.01912462207280359 7.905564092660711e-05']
['59866.34069977691 0.03428072105504974 6.786925639657994e-05 0.014961207401999577 4.059771890289141e-05 0.0005291444694780636 1.4358505870334325e-06 0.014961207401999577 4.059771890289141e-05 0.019319513653050166 7.908483257833257e-05']
['59866.34073131487 0.034270990337578744 6.785887162720944e-05 0.015114659872334475 4.066883987245394e-05 0.0005345717404077216 1.4383659767808467e-06 0.015114659872334475 4.066883987245394e-05 0.01915633046524427 7.911245790069595e-05']
['59866.34076285284 0.03423519767907277 6.787085010651457e-05 0.014978241701872553 4.059939611077574e-05 0.000529746934595151 1.4359099061279621e-06 0.014978241701872553 4.059939611077574e-05 0.01925695597720022 7.908706125998513e-05']
['59866.340794390795 0.034339958075775674 6.793367934941037e-05 0.015028281346063736 4.063179587173895e-05 0.0005315167249781703 1.4370558132640268e-06 0.015028281346063736 4.063179587173895e-05 0.019311676729711937 7.915761255691817e-05']
['59866.34082592876 0.03424790080606468 6.785152706823072e-05 0.014993518842093484 4.06238924895463e-05 0.0005302872529023664 1.4367762882988924e-06 0.014993518842093483 4.06238924895463e-05 0.019254381963971196 7.908305992115544e-05']
['59866.34085746673 0.034264063868276066 6.787162953402615e-05 0.015040671375685466 4.063147501606866e-05 0.0005319549326358044 1.4370444653160388e-06 0.015040671375685467 4.063147501606866e-05 0.0192233924925906 7.910420252796625e-05']
['59866.340889004685 0.03430721219516125 6.793056525394591e-05 0.01506037623151904 4.0648511814449825e-05 0.0005326518493488769 1.4376470187997773e-06 0.01506037623151904 4.0648511814449825e-05 0.01924683596364221 7.9163521955823e-05']
['59866.34092054265 0.03430174199896946 6.789885581279211e-05 0.015045307210571906 4.063446731110555e-05 0.0005321188917552565 1.4371502961041079e-06 0.015045307210571904 4.063446731110555e-05 0.019256434788397555 7.91291005531065e-05']
['59866.340952080616 0.034303043619055916 6.791506167218322e-05 0.014978342184701284 4.0603362362098014e-05 0.0005297504884482374 1.436050183573181e-06 0.014978342184701286 4.0603362362098014e-05 0.01932470143435463 7.912704112403223e-05']
['59866.340983618575 0.03431961104414244 6.791407816376897e-05 0.015038016675869915 4.060712032225759e-05 0.0005318610418362333 1.4361830942254785e-06 0.015038016675869917 4.060712032225759e-05 0.019281594368272523 7.91281254276937e-05']
['59866.34101515654 0.03432270452573064 6.79264427110994e-05 0.015038147767208802 4.065139370599998e-05 0.0005318656782439177 1.4377489448632575e-06 0.0150381477672088 4.065139370599998e-05 0.019284556758521844 7.916146429686912e-05']
['59866.3410466945 0.03435699353610835 6.792965028696872e-05 0.015047226761020488 4.063669055537854e-05 0.0005321867819646801 1.437228927285385e-06 0.015047226761020488 4.063669055537854e-05 0.01930976677508786 7.915666748545861e-05']
['59866.341078232464 0.03435848876675894 6.795116925178896e-05 0.015111649576740938 4.067017318120502e-05 0.000534465272980193 1.4384131329316029e-06 0.015111649576740938 4.067017318120502e-05 0.019246839190018003 7.9192325318016e-05']
['59866.34110977043 0.03428944326340286 6.791708704537756e-05 0.015020350142920838 4.0608741849522325e-05 0.0005312362160482018 1.4362404440209322e-06 0.015020350142920838 4.0608741849522325e-05 0.01926909312048202 7.913154002880608e-05']
['59866.34114130839 0.034282864513907885 6.791037576192784e-05 0.015092415812122327 4.067266802352647e-05 0.0005337850177105668 1.438501369928868e-06 0.015092415812122327 4.067266802352647e-05 0.01919044870178556 7.915860698798477e-05']
['59866.341172846354 0.03426011965635853 6.782837039464624e-05 0.015088108712276577 4.066346080280872e-05 0.0005336326852148243 1.4381757311090085e-06 0.015088108712276579 4.066346080280872e-05 0.019172010944081948 7.908353099637677e-05']
['59866.34120438432 0.03439683154665896 6.796113160009945e-05 0.015064323407095147 4.064151456103738e-05 0.0005327914521275856 1.43739954158452e-06 0.015064323407095149 4.064151456103738e-05 0.01933250813956381 7.918616112794615e-05']
['59866.34123592228 0.03428911393016774 6.791772208390328e-05 0.015052554420207158 4.064890115243668e-05 0.0005323752093634952 1.4376607888142533e-06 0.01505255442020716 4.064890115243668e-05 0.019236559509960578 7.915270139399471e-05']
['59866.341267460244 0.03417970221735909 6.780864489235588e-05 0.014964232884575174 4.058790867749386e-05 0.0005292514740352068 1.4355036212856847e-06 0.014964232884575174 4.058790867749386e-05 0.019215469332783914 7.902778405693913e-05']
['59866.3412989982 0.03425480467452576 6.790269627926587e-05 0.015096665376803967 4.067180736387932e-05 0.0005339353153161382 1.4384709303206097e-06 0.015096665376803967 4.067180736387932e-05 0.019158139297721796 7.915157658719588e-05']
['59866.34133053617 0.03431200002486346 6.794294357381889e-05 0.015016017985499166 4.0609469535329674e-05 0.0005310829973219993 1.4362661806416559e-06 0.015016017985499166 4.0609469535329674e-05 0.019295982039364293 7.915410663645953e-05']
['59866.341362074134 0.034168500937750194 6.780784568065037e-05 0.014978358239148542 4.059866381694444e-05 0.0005297510562581573 1.4358840065317295e-06 0.01497835823914854 4.059866381694444e-05 0.019190142698601656 7.903262262871054e-05']
['59866.34139361209 0.03429040915454427 6.789023496958941e-05 0.015009975636380488 4.061205119542719e-05 0.0005308692929375271 1.4363574881896342e-06 0.015009975636380487 4.061205119542719e-05 0.019280433518163782 7.911019344260295e-05']
['59866.34142515006 0.03425519884203649 6.78833189442289e-05 0.015079784842499878 4.065023364192092e-05 0.0005333382885435765 1.437707915989372e-06 0.015079784842499878 4.065023364192092e-05 0.019175413999536612 7.912386799207093e-05']
['59866.341456688024 0.034330840247587396 6.793768920624145e-05 0.01501149485245961 4.061907715902482e-05 0.0005309230242149976 1.4366059808199781e-06 0.015011494852459612 4.061907715902482e-05 0.019319345395127786 7.915452636416105e-05']
['59866.34148822598 0.03421003413929589 6.78394223001947e-05 0.01495715937912233 4.059712432196563e-05 0.000529001299955694 1.4358295580348977e-06 0.01495715937912233 4.059712432196563e-05 0.01925287476017356 7.905892562663173e-05']
['59866.34151976395 0.03426805736681878 6.786935218577091e-05 0.015033806341686305 4.064369364354181e-05 0.000531712131725702 1.4374766108627391e-06 0.015033806341686305 4.064369364354181e-05 0.019234251025132477 7.91085254514726e-05']
['59866.341551301906 0.034301914036097426 6.788898475633603e-05 0.015040641226521262 4.061242551394763e-05 0.0005319538663272459 1.4363707269991495e-06 0.015040641226521262 4.061242551394763e-05 0.019261272809576166 7.910931270951588e-05']
['59866.34158283987 0.034297150803975 6.788182764089527e-05 0.01507540862434218 4.064829618863017e-05 0.0005331835114876106 1.4376393925964312e-06 0.015075408624342179 4.064829618863017e-05 0.019221742179632823 7.912159317725358e-05']
['59866.34161437784 0.0342653341942147 6.787628515151953e-05 0.015018547078653058 4.062443808019896e-05 0.0005311724456946618 1.4367955846209535e-06 0.015018547078653056 4.062443808019896e-05 0.019246787115561645 7.910458302337678e-05']
['59866.341645915796 0.03428594383595722 6.789558344137079e-05 0.015016845135004179 4.060688599588841e-05 0.0005311122517514212 1.4361748066254891e-06 0.015016845135004177 4.060688599588841e-05 0.019269098700953044 7.911213207294581e-05']
['59866.34167745376 0.034187287089755984 6.78090184053903e-05 0.015047811895736013 4.0649284067959676e-05 0.0005322074768718691 1.4376743316805357e-06 0.015047811895736013 4.0649284067959676e-05 0.01913947519401997 7.905964376557892e-05']
['59866.34170899173 0.034504021842648516 6.80642342558721e-05 0.0150145125440618 4.060647346852985e-05 0.0005310297532228232 1.4361602164547614e-06 0.0150145125440618 4.060647346852985e-05 0.019489509298586716 7.925670742838521e-05']
['59866.341740529686 0.03425416754321305 6.786227358407061e-05 0.015055803326613361 4.063523468565588e-05 0.000532490115922204 1.4371774364269718e-06 0.01505580332661336 4.063523468565588e-05 0.019198364216599692 7.909810663952442e-05']
['59866.34177206765 0.03422252882740171 6.78438951017239e-05 0.014989643945273235 4.061633514913713e-05 0.000530150206461719 1.4365090020582818e-06 0.014989643945273237 4.061633514913713e-05 0.019232884882128473 7.907262980020803e-05']
['59866.34180360561 0.03430664284855786 6.790652878834746e-05 0.015091008705616719 4.065853518354593e-05 0.0005337352514981614 1.4380015229637948e-06 0.01509100870561672 4.065853518354593e-05 0.01921563414294114 7.914804568246966e-05']
['59866.341835143576 0.034279308938655724 6.788567501234164e-05 0.015043418330821732 4.064251246599012e-05 0.0005320520862998907 1.4374348352525122e-06 0.015043418330821734 4.064251246599012e-05 0.01923589060783399 7.912192295078165e-05']
['59866.34186668154 0.03429891108087457 6.789017356668685e-05 0.015014180447347007 4.062383736061608e-05 0.0005310180077042134 1.4367743385118364e-06 0.015014180447347005 4.062383736061608e-05 0.019284730633527567 7.91161919509316e-05']
['59866.3418982195 0.03431115690390644 6.791031111276565e-05 0.015051477512596213 4.062417012999871e-05 0.0005323371215480428 1.4367861078212042e-06 0.015051477512596213 4.062417012999871e-05 0.019259679391310226 7.913364363015077e-05']
['59866.341929757466 0.034222758753531556 6.783952354789225e-05 0.01505752807336639 4.0641092156250065e-05 0.0005325511163602765 1.4373846020712118e-06 0.015057528073366388 4.0641092156250065e-05 0.019165230680165166 7.908159916730211e-05']
['59866.34196129543 0.034160767220587515 6.77988178817181e-05 0.015082878835591292 4.065589730371062e-05 0.0005334477161645522 1.4379082270493345e-06 0.015082878835591293 4.065589730371062e-05 0.019077888384996224 7.905429584613503e-05']
['59866.34199283339 0.03417797139760576 6.780639225089681e-05 0.015040231512880026 4.064882284246536e-05 0.0005319393756714114 1.43765801916558e-06 0.015040231512880026 4.064882284246536e-05 0.019137739884725738 7.905715418961534e-05']
['59866.342024371355 0.034342385072534044 6.794513032928958e-05 0.015058072310483544 4.0637395865276226e-05 0.0005325703648108119 1.4372538725201913e-06 0.015058072310483544 4.0637395865276226e-05 0.0192843127620505 7.917031437461465e-05']
['59866.342055909314 0.034104042216170895 6.775903298338217e-05 0.015026555665994038 4.0624144815712105e-05 0.0005314556915307731 1.4367852125114612e-06 0.01502655566599404 4.0624144815712105e-05 0.019077486550176853 7.900384606366339e-05']
['59866.34208744728 0.034238384946232985 6.784188071564783e-05 0.014919493317614043 4.057235340092567e-05 0.0005276691355388391 1.4349534659174647e-06 0.014919493317614043 4.057235340092567e-05 0.01931889162861894 7.904831838518637e-05']
['59866.342118985245 0.034215319151844815 6.784887613868693e-05 0.01501549812993847 4.06175404137186e-05 0.0005310646111926263 1.4365516295729205e-06 0.01501549812993847 4.06175404137186e-05 0.019199821021906344 7.907752261257901e-05']
['59866.3421505232 0.034362757320045643 6.797073923531574e-05 0.015023468876155644 4.0634425706695566e-05 0.0005313465186727583 1.437148824649107e-06 0.015023468876155644 4.0634425706695566e-05 0.019339288443889997 7.919076931504235e-05']
['59866.34218206117 0.034221403239530414 6.785157011587194e-05 0.015046981675492555 4.0648015208026476e-05 0.0005321781138372911 1.4376294549404333e-06 0.015046981675492555 4.0648015208026476e-05 0.01917442156403786 7.909549106959914e-05']
['59866.342213599135 0.034215664127456066 6.783412580350996e-05 0.014975473437002059 4.059146075209911e-05 0.0005296490272533895 1.4356292502260526e-06 0.014975473437002057 4.059146075209911e-05 0.01924019069045401 7.905147253224078e-05']
['59866.34224513709 0.03428091141224238 6.787951835965687e-05 0.015016944478716782 4.061765181997037e-05 0.0005311157653165159 1.4365555697630674e-06 0.015016944478716782 4.061765181997037e-05 0.0192639669335256 7.910387254810814e-05']
['59866.34227667506 0.03429345164890386 6.790814171587351e-05 0.014996655697179532 4.060156292700453e-05 0.0005303981964563015 1.4359865415754254e-06 0.014996655697179534 4.060156292700453e-05 0.019296795951724323 7.912017835810703e-05']
['59866.34230821302 0.03431897240408988 6.791980699001806e-05 0.01504012140374225 4.061830142669707e-05 0.0005319354813572878 1.4365785449012052e-06 0.015040121403742251 4.061830142669707e-05 0.01927885100034763 7.913878058418216e-05']
['59866.34233975098 0.0342823314484719 6.788032482434705e-05 0.01510978085636223 4.0686735727058035e-05 0.0005343991805167424 1.4389989131633127e-06 0.01510978085636223 4.0686735727058035e-05 0.019172550592109667 7.91400591507381e-05']
['59866.34237128895 0.03428038171238342 6.7877079568282e-05 0.01504984523047259 4.063992517828086e-05 0.0005322793913772661 1.4373433286684833e-06 0.015049845230472588 4.063992517828086e-05 0.019230536481910834 7.911321918121619e-05']
['59866.34240282691 0.03432646364449313 6.79260986502925e-05 0.014993935857359092 4.0614566803829594e-05 0.0005303020018003368 1.4364464596367735e-06 0.014993935857359093 4.0614566803829594e-05 0.019332527787134034 7.914226376918975e-05']
['59866.34243436487 0.034267141593023215 6.787062405601543e-05 0.015007321221924576 4.0619763543318455e-05 0.0005307754122304887 1.4366302566984653e-06 0.015007321221924576 4.0619763543318455e-05 0.01925982037109864 7.909732486037744e-05']
['59866.34246590284 0.03417749650287069 6.779915040768729e-05 0.014953803835431052 4.058150917526468e-05 0.0005288826218745323 1.435277285193884e-06 0.01495380383543105 4.058150917526468e-05 0.01922369266743964 7.901635073164474e-05']
['59866.3424974408 0.03432746198222423 6.79442526544015e-05 0.015100158861045276 4.065573728175491e-05 0.0005340588720462756 1.437902567430389e-06 0.015100158861045276 4.065573728175491e-05 0.019227303121178953 7.917897727735703e-05']
['59866.34252897876 0.034283568465215755 6.78893283818797e-05 0.01503166179602392 4.0631386794297076e-05 0.0005316362839384009 1.437041345109142e-06 0.015031661796023919 4.0631386794297076e-05 0.019251906669191837 7.911934340583518e-05']
['59866.34256051672 0.0342320627235531 6.784722448532261e-05 0.015053906981231954 4.065870365825103e-05 0.0005324230464241462 1.4380074815375955e-06 0.015053906981231956 4.065870365825103e-05 0.019178155742321144 7.909725692798224e-05']
['59866.34259205469 0.034229494530872394 6.786001906625621e-05 0.015032150198252854 4.0633471368494796e-05 0.0005316535576337236 1.4371150718397662e-06 0.015032150198252853 4.0633471368494796e-05 0.01919734433261954 7.909526650266086e-05']
['59866.34262359265 0.03426084980531859 6.789317564849328e-05 0.01502998973097538 4.06325505166579e-05 0.0005315771467344796 1.437082503368278e-06 0.015029989730975381 4.06325505166579e-05 0.01923086007434321 7.912324223087623e-05']
['59866.34265513061 0.034160649046253065 6.780811611488588e-05 0.014985993052722794 4.0600439392796254e-05 0.0005300210825514745 1.4359468046814298e-06 0.014985993052722794 4.0600439392796254e-05 0.01917465599353027 7.903376677052643e-05']
['59866.34268666858 0.0343062688973512 6.790400396686905e-05 0.014983612059438359 4.06019649670216e-05 0.0005299368721402108 1.4360007608323224e-06 0.014983612059438357 4.06019649670216e-05 0.019322656837912844 7.911683331577305e-05']
['59866.34271820654 0.0342214942909624 6.785403687332581e-05 0.015002649840012433 4.062839467399847e-05 0.0005306101958921803 1.4369355205011757e-06 0.015002649840012433 4.062839467399847e-05 0.019218844450949964 7.908752603156104e-05']
['59866.3427497445 0.034259536703452595 6.788316203589956e-05 0.015062464366258159 4.064074837444256e-05 0.0005327257020078931 1.4373724432769875e-06 0.015062464366258159 4.064074837444256e-05 0.019197072337194435 7.911886068711398e-05']
['59866.34278128247 0.03419796952262051 6.782289569381328e-05 0.015017745227595625 4.062059444836948e-05 0.0005311440860147922 1.4366596439531566e-06 0.015017745227595627 4.062059444836948e-05 0.019180224295024882 7.905680156465212e-05']
['59866.342812820425 0.034298948363015454 6.788688896380081e-05 0.015078371491364298 4.0647137284132507e-05 0.0005332883014725649 1.437598404734348e-06 0.0150783714913643 4.0647137284132507e-05 0.019220576871651154 7.912534020513616e-05']
['59866.34284435839 0.034284424064725816 6.790130884026087e-05 0.014970024172118486 4.05992037096551e-05 0.0005294562989328479 1.4359031013303162e-06 0.014970024172118486 4.05992037096551e-05 0.01931439989260733 7.911310311243367e-05']
['59866.34287589636 0.03422564702798819 6.785635385160528e-05 0.015014297569711637 4.06286624632428e-05 0.0005310221500604974 1.4369449916082738e-06 0.015014297569711637 4.06286624632428e-05 0.019211349458276558 7.90896514822665e-05']
['59866.342907434315 0.03424012195531063 6.784786514273672e-05 0.015032602791696378 4.063543084698475e-05 0.0005316695648523342 1.4371843742147792e-06 0.015032602791696376 4.063543084698475e-05 0.019207519163614253 7.908584604432748e-05']
['59866.34293897228 0.03422167745060678 6.784942625571713e-05 0.015051378160140919 4.062455994653338e-05 0.0005323336076737388 1.4367998947608467e-06 0.015051378160140919 4.062455994653338e-05 0.01917029929046586 7.908160035102654e-05']
['59866.342970510246 0.03423978644113448 6.781089023024932e-05 0.01501495846730042 4.0619805147825776e-05 0.0005310455245311935 1.4366317281569087e-06 0.015014958467300422 4.0619805147825776e-05 0.019224827973834055 7.904609670354543e-05']
['59866.343002048205 0.034259686216283426 6.786515056293196e-05 0.015055525614939577 4.0648981782019026e-05 0.0005324802938809514 1.4376636405023842e-06 0.015055525614939579 4.0648981782019026e-05 0.019204160601343848 7.910763794251689e-05']
['59866.34303358617 0.034265287488399264 6.788098636307393e-05 0.015114922212418686 4.0685762600928994e-05 0.0005345810187902046 1.4389644958669373e-06 0.015114922212418686 4.0685762600928994e-05 0.019150365275980578 7.914012628270808e-05']
['59866.34306512413 0.03437105836568473 6.795325500614142e-05 0.015096088850310756 4.0663007738565045e-05 0.0005339149248625342 1.4381597072392488e-06 0.015096088850310755 4.0663007738565045e-05 0.019274969515373976 7.91904354343142e-05']
['59866.343096662094 0.03433957503685472 6.794954276200023e-05 0.015118217772885256 4.067512213861624e-05 0.000534697575398763 1.4385881664949687e-06 0.015118217772885256 4.067512213861624e-05 0.019221357263969462 7.919347146423274e-05']
['59866.34312820006 0.03419420003656879 6.78568038538781e-05 0.014996344196307835 4.0626205467559396e-05 0.000530387179366633 1.436858093162014e-06 0.014996344196307835 4.0626205467559396e-05 0.019197855840260958 7.908877543593679e-05']
['59866.34315973802 0.03430374414018988 6.791198208147922e-05 0.014978394194834698 4.060256207410538e-05 0.0005297523279304204 1.43602187917542e-06 0.014978394194834698 4.060256207410538e-05 0.01932534994535518 7.912398724291349e-05']
['59866.343191275984 0.034246150678281836 6.783713670926978e-05 0.015161424107659804 4.069404915085262e-05 0.0005362256868992636 1.4392575726183867e-06 0.015161424107659803 4.069404915085262e-05 0.019084726570622032 7.910678070307353e-05']
['59866.34322281395 0.03429514680839294 6.789524531759478e-05 0.01506475291523889 4.063429367986525e-05 0.0005328066428707355 1.4371441551551813e-06 0.015064752915238889 4.063429367986525e-05 0.019230393893154053 7.912591332552133e-05']
['59866.34325435191 0.03437236615049652 6.7977709119145e-05 0.014968443185147527 4.060113595085572e-05 0.0005294003829569829 1.4359714403832774e-06 0.014968443185147525 4.060113595085572e-05 0.019403922965348992 7.917967654383894e-05']
['59866.343285889874 0.03413340140823486 6.777807859011726e-05 0.015012912135318772 4.060969951599102e-05 0.0005309731503422854 1.4362743145436712e-06 0.015012912135318773 4.060969951599102e-05 0.01912048927291609 7.901275613562149e-05']
['59866.34331742783 0.03431639633689889 6.792529523994825e-05 0.015037647420229538 4.0628268546696265e-05 0.0005318479820894708 1.4369310596603745e-06 0.015037647420229536 4.0628268546696265e-05 0.019278748916669353 7.914860667463835e-05']
['59866.3433489658 0.034271653897719016 6.787991721814175e-05 0.014970425856428162 4.0584303453050214e-05 0.0005294705056091695 1.435376112554315e-06 0.014970425856428164 4.0584303453050214e-05 0.019301228041290853 7.908709659806105e-05']
['59866.343380503764 0.034355178270196164 6.794080052905773e-05 0.015121129105952879 4.067571947391492e-05 0.0005348005427429184 1.4386092929095174e-06 0.015121129105952879 4.067571947391492e-05 0.019234049164243285 7.918627741755407e-05']
['59866.34341204172 0.034280826800936706 6.788777611342001e-05 0.015039171082746843 4.06448396557776e-05 0.0005319018706275226 1.4375171427543321e-06 0.015039171082746843 4.06448396557776e-05 0.019241655718189865 7.91249210822337e-05']
['59866.34344357969 0.034292338641974354 6.789297266620971e-05 0.01506537026687501 4.065072687701526e-05 0.0005328284772184054 1.4377253606123433e-06 0.015065370266875008 4.065072687701526e-05 0.019226968375099344 7.913240381211978e-05']
['59866.343475117654 0.034189627793371535 6.779809376591728e-05 0.015019187018999137 4.060805109945477e-05 0.0005311950789545202 1.436216013734778e-06 0.015019187018999135 4.060805109945477e-05 0.0191704407743724 7.90290790303673e-05']
['59866.34350665561 0.03432684142963076 6.792804980966845e-05 0.015044129695424228 4.0625295250596234e-05 0.0005320772456760747 1.436825900822242e-06 0.01504412969542423 4.0625295250596234e-05 0.01928271173420653 7.914944450305962e-05']
['59866.34353819358 0.03419754601811526 6.783685386401033e-05 0.015007307844703633 4.061839299884259e-05 0.0005307749391080803 1.4365817836033407e-06 0.015007307844703633 4.061839299884259e-05 0.01919023817341163 7.906764567113099e-05']
['59866.343569731536 0.03440248608617567 6.799276702595509e-05 0.01506206319854664 4.064312483811268e-05 0.0005327115136024937 1.4374564934859157e-06 0.01506206319854664 4.064312483811268e-05 0.01934042288762903 7.92141399274916e-05']
['59866.3436012695 0.034352659833597914 6.793573557890484e-05 0.01506979424826185 4.0652430605168936e-05 0.0005329849435530414 1.4377856176695303e-06 0.015069794248261848 4.0652430605168936e-05 0.019282865585336068 7.916997083967477e-05']
['59866.34363280747 0.034202206182637945 6.785143370046446e-05 0.01503404796389459 4.0632054558283354e-05 0.0005317206773632152 1.437064962428972e-06 0.01503404796389459 4.0632054558283354e-05 0.019168158218743354 7.908717287168532e-05']
['59866.343664345426 0.03427641782366794 6.785984625995355e-05 0.015060985387696386 4.06457527224859e-05 0.0005326733938414857 1.4375494358832208e-06 0.015060985387696386 4.06457527224859e-05 0.019215432435971555 7.910142823490611e-05']
['59866.34369588339 0.03433566423676871 6.794617436314002e-05 0.015022155642344999 4.063250946744207e-05 0.0005313000725277806 1.4370810515492536e-06 0.015022155642344999 4.063250946744207e-05 0.01931350859442371 7.916870237794728e-05']
['59866.34372742136 0.03417509278956487 6.77967783974584e-05 0.01511218583049184 4.0659092258870063e-05 0.0005344842390769057 1.4380212254730195e-06 0.015112185830491839 4.0659092258870063e-05 0.01906290695907303 7.905418992304828e-05']
['59866.343758959316 0.03421613806648964 6.781773495242844e-05 0.015105401440919533 4.066191404581744e-05 0.0005342442903799515 1.4381210257710255e-06 0.015105401440919531 4.066191404581744e-05 0.01911073662557011 7.907361398056422e-05']
['59866.34379049728 0.03414735702231325 6.778218114914563e-05 0.015066678648356792 4.064450937356971e-05 0.0005328747517473555 1.4375054614107765e-06 0.01506667864835679 4.064450937356971e-05 0.01908067837395646 7.903417123974788e-05']
['59866.34382203524 0.03434014810543369 6.79239116285384e-05 0.015096570969993095 4.065450795973992e-05 0.0005339319763582245 1.4378590890580918e-06 0.015096570969993095 4.065450795973992e-05 0.019243577135440594 7.916089178609631e-05']
['59866.343853573206 0.03419705380504437 6.780882342782557e-05 0.01498766282642501 4.059671453228262e-05 0.0005300801387155973 1.435815064689636e-06 0.01498766282642501 4.059671453228262e-05 0.01920939097861936 7.903246020137341e-05']
['59866.34388511117 0.03422434189348226 6.784444023024899e-05 0.014987025711718182 4.059226034894383e-05 0.0005300576053922844 1.4356575301794566e-06 0.014987025711718184 4.059226034894383e-05 0.019237316181764073 7.906073406181014e-05']
['59866.34391664913 0.034391627414072125 6.797921034171546e-05 0.015078125819070247 4.065336897428915e-05 0.0005332796125925696 1.4378188056881808e-06 0.015078125819070247 4.065336897428915e-05 0.019313501595001878 7.920776128412474e-05']
['59866.343948187096 0.034292682140364725 6.790179031531548e-05 0.01498669353583406 4.0610262302076854e-05 0.0005300458570736324 1.4362942190297743e-06 0.01498669353583406 4.0610262302076854e-05 0.019305988604530665 7.911919193386997e-05']
['59866.34397972506 0.03423302047276136 6.783954284785927e-05 0.014970083304349922 4.059366796202974e-05 0.0005294583903077209 1.4357073143084751e-06 0.01497008330434992 4.059366796202974e-05 0.01926293716841144 7.905725426814452e-05']
['59866.34401126302 0.0342398535546889 6.784127390861674e-05 0.015009538117076655 4.062707750588271e-05 0.0005308538188575487 1.4368889352086187e-06 0.015009538117076655 4.062707750588271e-05 0.019230315437612243 7.907589943979747e-05']
['59866.344042800985 0.03426660747465117 6.788594550062597e-05 0.01504124054820385 4.064431417664181e-05 0.0005319750629957539 1.437498557731676e-06 0.01504124054820385 4.064431417664181e-05 0.019225366926447322 7.912308052271174e-05']
['59866.344074338944 0.03435002326659982 6.793789390162194e-05 0.015070668799523004 4.064687598018611e-05 0.0005330158744766415 1.4375891629977441e-06 0.015070668799523006 4.064687598018611e-05 0.019279354467076813 7.916897090866263e-05']
['59866.34410587691 0.03431383970877373 6.791987045749266e-05 0.014959962219497042 4.0590468640521906e-05 0.000529100430155768 1.4355941614568059e-06 0.014959962219497042 4.0590468640521906e-05 0.01935387748927669 7.912455337895928e-05']
['59866.344137414875 0.0343987382782901 6.794399364681227e-05 0.015054876827861304 4.0634100921279e-05 0.0005324573477319466 1.437137337714776e-06 0.015054876827861304 4.0634100921279e-05 0.019343861450428795 7.916764762425844e-05']
['59866.34416895283 0.034212738273475415 6.786205692933822e-05 0.014960895490264055 4.0581469397138214e-05 0.0005291334378570598 1.43527587833045e-06 0.014960895490264055 4.0581469397138214e-05 0.019251842783211362 7.907031319725253e-05']
['59866.3442004908 0.03427226461140321 6.789638718288787e-05 0.01507072758682843 4.064542036287741e-05 0.0005330179536522524 1.4375376810666486e-06 0.01507072758682843 4.064542036287741e-05 0.019201537024574777 7.913260762140744e-05']
['59866.344232028765 0.03420266997704927 6.785771149901006e-05 0.014945661650458528 4.057403407047043e-05 0.0005285946509887665 1.4350129074431877e-06 0.014945661650458526 4.057403407047043e-05 0.019257008326590747 7.906276779012089e-05']
['59866.34426356672 0.03427195059193701 6.790319256582412e-05 0.015034050087517167 4.0641534928640343e-05 0.0005317207524709997 1.437400261941118e-06 0.015034050087517167 4.0641534928640343e-05 0.01923790050441984 7.913645128502595e-05']
['59866.34429510469 0.03428478957744682 6.789055672816197e-05 0.015026955572327978 4.062622424433019e-05 0.0005314698353240664 1.4368587572544334e-06 0.015026955572327978 4.062622424433019e-05 0.019257834005118844 7.911774636079052e-05']
['59866.34432664265 0.034282657891286365 6.78766724131893e-05 0.015075216435413262 4.065529859229214e-05 0.0005331767141947117 1.4378870519645039e-06 0.01507521643541326 4.065529859229214e-05 0.019207441455873105 7.912076820605223e-05']
['59866.34435818061 0.03422800403497868 6.785759268315007e-05 0.01510012131492677 4.065578231253202e-05 0.0005340575441239746 1.4379041600683374e-06 0.015100121314926768 4.065578231253202e-05 0.019127882720051913 7.9104649169289e-05']
['59866.34438971858 0.03434685390579516 6.791338798713371e-05 0.015126200392706927 4.067323197526223e-05 0.0005349799028217502 1.438521315641404e-06 0.015126200392706925 4.067323197526223e-05 0.019220653513088232 7.916148095636192e-05']
['59866.34442125654 0.0344063639010485 6.799427569839e-05 0.015043864012288875 4.0642373298884664e-05 0.0005320678490573441 1.4374299132230123e-06 0.015043864012288875 4.0642373298884664e-05 0.019362499888759627 7.921504929692691e-05']
['59866.3444527945 0.03433858371142274 6.794928361082166e-05 0.01509998740359886 4.0682147473928774e-05 0.0005340528079795806 1.438836636904273e-06 0.015099987403598858 4.0682147473928774e-05 0.01923859630782388 7.919685767954664e-05']
['59866.34448433247 0.034278138177843205 6.79134403165891e-05 0.015062419637775002 4.0647134198001465e-05 0.0005327241200614061 1.4375982955847903e-06 0.015062419637775002 4.0647134198001465e-05 0.019215718540068205 7.914811996595528e-05']
['59866.34451587043 0.034188904253106306 6.782473646425737e-05 0.015103239293599148 4.066645155383373e-05 0.0005341678200613445 1.438281507288828e-06 0.015103239293599148 4.066645155383373e-05 0.019085664959507156 7.908195216625769e-05']
['59866.34454740839 0.0342763162544833 6.787946423298321e-05 0.015077809226430913 4.066134475055069e-05 0.0005332684154184592 1.4381008910697405e-06 0.015077809226430913 4.066134475055069e-05 0.019198507028052383 7.912627010974284e-05']
['59866.34457894635 0.0342590094405854 6.789670064625976e-05 0.015072237458250938 4.0633605336881846e-05 0.0005330713544301025 1.4371198100022144e-06 0.01507223745825094 4.0633605336881846e-05 0.019186771982334462 7.912680861327142e-05']
['59866.34461048432 0.034265830242504146 6.788540820593464e-05 0.015098018648260872 4.066205861272187e-05 0.0005339831775031852 1.4381261387793472e-06 0.015098018648260872 4.066205861272187e-05 0.019167811594243273 7.913173609817243e-05']
['59866.34464202228 0.034238348278775095 6.782649817568577e-05 0.014974946231626015 4.059544452191336e-05 0.0005296303811774736 1.435770147261181e-06 0.014974946231626016 4.059544452191336e-05 0.01926340204714908 7.904697319131233e-05']
['59866.34467356024 0.034209788398276056 6.78254617131615e-05 0.015106978426602455 4.067925603983398e-05 0.000534300064839201 1.438734373342315e-06 0.015106978426602455 4.067925603983398e-05 0.0191028099716736 7.90891593618108e-05']
['59866.34470509821 0.03434810441084739 6.7947695708955e-05 0.015070369591959024 4.065312246380397e-05 0.000533005292173793 1.4378100871632384e-06 0.015070369591959024 4.065312246380397e-05 0.019277734818888365 7.918058927675257e-05']
['59866.34473663617 0.03430934335566405 6.791291095403755e-05 0.015014219273859413 4.062657520518777e-05 0.0005310193809111852 1.4368711699556146e-06 0.015014219273859415 4.062657520518777e-05 0.019295124081804636 7.913710941874117e-05']
['59866.34476817413 0.034217038081842094 6.786128703357346e-05 0.015017413848443475 4.063156182498832e-05 0.0005311323658747694 1.4370475355535207e-06 0.015017413848443475 4.063156182498832e-05 0.01919962423339862 7.909537340572388e-05']
['59866.3447997121 0.034232561724482434 6.784393360398714e-05 0.015118704819386321 4.068071984342048e-05 0.0005347148011450208 1.4387861448037608e-06 0.015118704819386321 4.068071984342048e-05 0.019113856905096115 7.91057538605194e-05']
['59866.344831250055 0.03423474302780684 6.786068340695023e-05 0.01504255382657524 4.064211649824901e-05 0.0005320215107167455 1.437420830758445e-06 0.015042553826575239 4.064211649824901e-05 0.0191921892012316 7.91002780394328e-05']
['59866.34486278802 0.03429078005310251 6.789436810090423e-05 0.015027269133973111 4.062820857357926e-05 0.0005314809252986857 1.436928938545258e-06 0.01502726913397311 4.062820857357926e-05 0.0192635109191294 7.9122035816322e-05']
['59866.34489432599 0.03428736335058462 6.786778960419348e-05 0.01502141658547044 4.063757392351642e-05 0.0005312739337378224 1.4372601700422103e-06 0.01502141658547044 4.063757392351642e-05 0.01926594676511418 7.910404085853221e-05']
['59866.344925863945 0.03409754463835549 6.775562693609741e-05 0.014994795037235711 4.061372203411713e-05 0.0005303323890724187 1.4364165820199929e-06 0.014994795037235711 4.061372203411713e-05 0.019102749601119774 7.899556569180412e-05']
['59866.34495740191 0.034255987500900004 6.785443312598373e-05 0.015038215830056396 4.062696266167947e-05 0.0005318680854747256 1.4368848734258118e-06 0.015038215830056396 4.062696266167947e-05 0.019217771670843608 7.908713036874012e-05']
['59866.344988939876 0.03432561191123458 6.792097490785418e-05 0.015008695965949833 4.061202505765929e-05 0.00053082403385429 1.4363565637551983e-06 0.015008695965949833 4.061202505765929e-05 0.019316915945284747 7.913656178857723e-05']
['59866.345020477835 0.034202415371609354 6.784517160733845e-05 0.015104130733783182 4.066917125204954e-05 0.0005341993483084022 1.4383776969365536e-06 0.015104130733783182 4.066917125204954e-05 0.019098284637826174 7.910087737034106e-05']
['59866.3450520158 0.03423940665559694 6.784772828270431e-05 0.015064650939888518 4.0647552737691696e-05 0.0005328030362304944 1.4376130983982525e-06 0.015064650939888518 4.0647552737691696e-05 0.019174755715708418 7.909195772445579e-05']
['59866.34508355376 0.03430235344266658 6.79097000107227e-05 0.014933302555614703 4.0580790574706016e-05 0.0005281575374250919 1.4352518698981019e-06 0.014933302555614703 4.0580790574706016e-05 0.019369050887051875 7.911085841535598e-05']
['59866.345115091724 0.03429505095531578 6.787944761637075e-05 0.015032718171546477 4.0646562694038706e-05 0.0005316736455797734 1.4375780827668637e-06 0.015032718171546475 4.0646562694038706e-05 0.019262332783769303 7.911866067840152e-05']
['59866.34514662969 0.03429834189616845 6.788588746286556e-05 0.01502738996843041 4.0637748333983414e-05 0.0005314851989433912 1.4372663385506433e-06 0.015027389968430407 4.0637748333983414e-05 0.01927095192773804 7.911965815318604e-05']
['59866.34517816765 0.034221497284916434 6.784776780319409e-05 0.015046482492946583 4.0639174138347956e-05 0.0005321604588662474 1.4373167660645319e-06 0.015046482492946585 4.0639174138347956e-05 0.019175014791969848 7.908768596009817e-05']
['59866.345209705614 0.03432605465487434 6.792590749525918e-05 0.015022872463110577 4.0633776246781726e-05 0.000531325424876259 1.437125854703412e-06 0.015022872463110577 4.0633776246781726e-05 0.01930318219176376 7.915195942696573e-05']
['59866.34524124358 0.03416964607399769 6.783708575435336e-05 0.014960993909894546 4.058708163517203e-05 0.0005291369187394354 1.4354743706470921e-06 0.014960993909894546 4.058708163517203e-05 0.01920865216410314 7.905176404928363e-05']
['59866.34527278154 0.034212481264475084 6.783785168115774e-05 0.015054324131581977 4.0653697764602396e-05 0.0005324378000997503 1.4378304342667572e-06 0.015054324131581977 4.0653697764602396e-05 0.01915815713289311 7.908664402192315e-05']
['59866.345304319504 0.03425936401466201 6.786384695490383e-05 0.015004646155401992 4.0624341048999415e-05 0.0005306808011060067 1.4367921528442778e-06 0.01500464615540199 4.0624341048999415e-05 0.01925471785926002 7.909386075533315e-05']
['59866.34533585746 0.03422547876449066 6.782959726499793e-05 0.015070497527085098 4.0626411293907556e-05 0.0005330098169532841 1.4368653727799536e-06 0.015070497527085098 4.0626411293907556e-05 0.019154981237405562 7.906553964751998e-05']
['59866.34536739543 0.03431246471728015 6.788183058206394e-05 0.015128069920741826 4.0670180787618886e-05 0.0005350460238501953 1.438413401953462e-06 0.015128069920741826 4.0670180787618886e-05 0.01918439479653833 7.913284102362075e-05']
['59866.345398933394 0.03435615161536807 6.793684182633855e-05 0.015136711256036793 4.068922093161836e-05 0.0005353516485673306 1.439086809294506e-06 0.015136711256036795 4.068922093161836e-05 0.019219440359331277 7.918981738430132e-05']
['59866.34543047135 0.03428704800484438 6.788494251212214e-05 0.015027327576004026 4.063953747138515e-05 0.000531482992262709 1.4373296163420559e-06 0.015027327576004026 4.063953747138515e-05 0.019259720428840357 7.911976634041739e-05']
['59866.34546200932 0.034352365889489325 6.79452220541079e-05 0.015039734080204814 4.0635306846657e-05 0.0005319217825893859 1.437179988600311e-06 0.015039734080204816 4.0635306846657e-05 0.01931263180928451 7.916932084149768e-05']
['59866.345493547284 0.034167126631455685 6.781805893478258e-05 0.014990753840947342 4.060318244952449e-05 0.0005301894609912413 1.4360438204675364e-06 0.014990753840947342 4.060318244952449e-05 0.019176372790508343 7.904370653449279e-05']
['59866.34552508524 0.03425093488155274 6.7885175190645e-05 0.015066854336847823 4.0651940582502504e-05 0.0005328809654566426 1.4377682866629549e-06 0.015066854336847822 4.0651940582502504e-05 0.019184080544704916 7.912633748498585e-05']
['59866.34555662321 0.03426391199705961 6.789345169615643e-05 0.015043707111526203 4.065158690822922e-05 0.000532062299828021 1.4377557779943242e-06 0.015043707111526205 4.065158690822922e-05 0.019220204885533405 7.913325660792458e-05']
['59866.345588161166 0.034271918126231656 6.788662793692955e-05 0.01505103230790209 4.063735498287867e-05 0.0005323213756529856 1.4372524266011564e-06 0.015051032307902088 4.063735498287867e-05 0.019220885818329567 7.91200914600811e-05']
['59866.34561969913 0.034357399551147846 6.793968491163476e-05 0.015109471013962634 4.067686317540681e-05 0.0005343882220835256 1.4386497430752631e-06 0.015109471013962634 4.067686317540681e-05 0.01924792853718521 7.91859077341605e-05']
['59866.3456512371 0.03421524205522565 6.784053014122881e-05 0.014990486048521153 4.061061229305786e-05 0.0005301799897716079 1.4363065974285887e-06 0.014990486048521155 4.061061229305786e-05 0.019224756006704494 7.906680315189199e-05']
['59866.345682775056 0.03421298314202178 6.781213850727658e-05 0.015082684437842764 4.0650688366557534e-05 0.0005334408407506402 1.4377239985835191e-06 0.015082684437842764 4.0650688366557534e-05 0.019130298704179014 7.906304189445939e-05']
['59866.34571431302 0.034236507650477414 6.786388614340685e-05 0.015098494377381028 4.065648085748723e-05 0.0005340000029789732 1.4379288660422472e-06 0.015098494377381028 4.065648085748723e-05 0.019138013273096388 7.911040688936262e-05']
['59866.34574585098 0.034313231941146945 6.789878775373492e-05 0.015049150293199363 4.0635585007645624e-05 0.0005322548129990055 1.4371898265328256e-06 0.015049150293199363 4.0635585007645624e-05 0.01926408164794758 7.912961612026395e-05']
['59866.345777388946 0.03435029928993667 6.793663735641982e-05 0.015020127068843675 4.062677369337549e-05 0.0005312283264166338 1.4368781900392191e-06 0.015020127068843675 4.062677369337549e-05 0.019330172221092998 7.915757345971669e-05']
['59866.34580892691 0.034273373374947694 6.788292059352314e-05 0.015099014133405267 4.067186213691179e-05 0.0005340183855879642 1.4384728675203576e-06 0.015099014133405267 4.067186213691179e-05 0.019174359241542427 7.913464018993532e-05']
['59866.34584046487 0.03429683002629218 6.788163779377226e-05 0.01510580564390791 4.0666960829701257e-05 0.00053425858613631 1.438299519238098e-06 0.01510580564390791 4.0666960829701257e-05 0.019191024382384268 7.913102079898468e-05']
['59866.345872002836 0.034109518231007316 6.777630942828846e-05 0.014991896025614038 4.061949052126639e-05 0.0005302298575102698 1.4366206005186522e-06 0.014991896025614038 4.061949052126639e-05 0.01911762220539328 7.901627129855188e-05']
['59866.3459035408 0.03416560448393177 6.778522780669047e-05 0.015014871773969722 4.062113418143677e-05 0.0005310424583818349 1.4366787331055142e-06 0.015014871773969724 4.062113418143677e-05 0.019150732709962048 7.902476606097112e-05']
['59866.34593507876 0.034283440857938455 6.789300355436983e-05 0.01510081134649973 4.066311843751199e-05 0.0005340819489985805 1.4381636224136045e-06 0.015100811346499732 4.066311843751199e-05 0.019182629511438724 7.913879663412126e-05']
['59866.345966616725 0.03423249926940685 6.782964163252785e-05 0.01503783719260478 4.063607857918617e-05 0.0005318546939142669 1.4372072830551472e-06 0.01503783719260478 4.063607857918617e-05 0.019194662076802073 7.90705455039419e-05']
['59866.345998154684 0.0343052373053676 6.790926577411162e-05 0.015040912547570846 4.062990175236345e-05 0.0005319634623464028 1.436988822494823e-06 0.015040912547570846 4.062990175236345e-05 0.019264324757796755 7.913568913193108e-05']
['59866.34602969265 0.03419391230911737 6.779094555181707e-05 0.014984307676396661 4.0596846254424353e-05 0.0005299614745574136 1.4358197234074071e-06 0.014984307676396661 4.0596846254424353e-05 0.019209604632720707 7.9017189424927e-05']
['59866.346061230615 0.03431407021481945 6.790409205824183e-05 0.015058277952991413 4.063432193823033e-05 0.0005325776379267313 1.4371451545904007e-06 0.015058277952991415 4.063432193823033e-05 0.019255792261828032 7.913351905250977e-05']
['59866.346092768574 0.03422347807371281 6.783269319447866e-05 0.015008029916757735 4.0618456738771644e-05 0.0005308004771828978 1.436584037942181e-06 0.015008029916757735 4.0618456738771644e-05 0.019215448156955073 7.906410875900477e-05']
['59866.34612430654 0.03437464587123121 6.79594944220593e-05 0.015105013200449581 4.067932937213533e-05 0.0005342305591821958 1.4387369669419256e-06 0.015105013200449581 4.067932937213533e-05 0.019269632670781627 7.920417110398025e-05']
['59866.346155844505 0.03431597172354663 6.79134159873513e-05 0.015133304088544042 4.069128440048471e-05 0.0005352311446676832 1.4391597895767272e-06 0.015133304088544042 4.069128440048471e-05 0.019182667635002593 7.917078184047542e-05']
['59866.34618738246 0.03429612453383462 6.790206661271964e-05 0.01509183569533772 4.0667340844149687e-05 0.0005337645002763798 1.4383129594998565e-06 0.015091835695337718 4.0667340844149687e-05 0.019204288838496904 7.914874137731099e-05']
['59866.34621892043 0.03432333445184526 6.791990594052198e-05 0.014988840009241201 4.060508376483415e-05 0.0005301217730409572 1.4361110657408494e-06 0.014988840009241203 4.060508376483415e-05 0.019334494442604058 7.913208230874852e-05']
['59866.34625045839 0.03425053252494176 6.78602346291383e-05 0.015066720590579789 4.062775329161032e-05 0.0005328762351500476 1.436912836239512e-06 0.01506672059057979 4.062775329161032e-05 0.019183811934361965 7.909251406704464e-05']
['59866.34628199635 0.034298760720793055 6.791252602684301e-05 0.01508494652790326 4.0668308950346965e-05 0.0005335208458206062 1.4383471992524644e-06 0.015084946527903261 4.0668308950346965e-05 0.019213814192889794 7.915821210858354e-05']
['59866.34631353432 0.03436761689266776 6.794231931502324e-05 0.015094723066665218 4.0643652131548114e-05 0.0005338666201473383 1.4374751426762957e-06 0.015094723066665218 4.0643652131548114e-05 0.019272893826002543 7.917111349788429e-05']
['59866.34634507228 0.034228091071706525 6.783868769090608e-05 0.015126982754706832 4.068822346865777e-05 0.0005350075732172107 1.4390515312587884e-06 0.015126982754706832 4.068822346865777e-05 0.019101108316999692 7.910511409927757e-05']
['59866.34637661024 0.03422608015755779 6.787127486534912e-05 0.014996598556343886 4.061637107654281e-05 0.0005303961755126469 1.4365102727303278e-06 0.014996598556343886 4.061637107654281e-05 0.019229481601213905 7.909614119080143e-05']
['59866.34640814821 0.034212424101057605 6.78547172580312e-05 0.01503339932511882 4.063314465679223e-05 0.0005316977364593386 1.437103516777004e-06 0.015033399325118822 4.063314465679223e-05 0.01917902477593878 7.909054999724784e-05']
['59866.34643968617 0.03421106484443753 6.7856931809544e-05 0.015011639195251891 4.062598572474138e-05 0.0005309281292969734 1.436850321349637e-06 0.01501163919525189 4.062598572474138e-05 0.019199425649185642 7.908877234293117e-05']
['59866.34647122413 0.03428722225897642 6.788040782407244e-05 0.015062347677117375 4.063265144849408e-05 0.0005327215749737684 1.4370860731017542e-06 0.015062347677117373 4.063265144849408e-05 0.01922487458185905 7.911233867164591e-05']
['59866.34650276209 0.03448139331316141 6.805868417149366e-05 0.015115287685425118 4.067388968451833e-05 0.000534593944753658 1.4385445773478988e-06 0.015115287685425118 4.067388968451833e-05 0.019366105627736295 7.928650448357204e-05']
['59866.34653430006 0.03428615216652648 6.78809855933202e-05 0.015064831328281616 4.063173523404053e-05 0.000532809416164814 1.437053668644151e-06 0.015064831328281616 4.063173523404053e-05 0.019221320838244862 7.911236384567025e-05']
['59866.34656583802 0.034224650091824495 6.785518675267834e-05 0.01500065032033583 4.062148547152859e-05 0.0005305394773498824 1.4366911574509747e-06 0.015000650320335832 4.062148547152859e-05 0.019223999771488663 7.908496349594189e-05']
['59866.34659737598 0.03423971871189173 6.783169194774706e-05 0.01497061492183957 4.060245058645221e-05 0.0005294771924302347 1.4360179361062878e-06 0.014970614921839572 4.060245058645221e-05 0.01926910379005216 7.905502783580148e-05']
['59866.34662891395 0.034221805062183315 6.784385576880389e-05 0.01500135530924038 4.060543043780902e-05 0.0005305644112318788 1.4361233267892022e-06 0.015001355309240379 4.060543043780902e-05 0.019220449752942938 7.906699530536122e-05']
['59866.34666045191 0.03434495662681678 6.79184945264726e-05 0.015042163161760616 4.063622505293786e-05 0.0005320076937753368 1.437212463504395e-06 0.015042163161760618 4.063622505293786e-05 0.019302793465056166 7.914685518260029e-05']
['59866.34669198987 0.03427036146951357 6.786790752927567e-05 0.015111235252663066 4.066229124890865e-05 0.0005344506192635185 1.4381343666013622e-06 0.015111235252663068 4.066229124890865e-05 0.019159126216850505 7.91168427202033e-05']
['59866.34672352784 0.03441595703485392 6.801726132260733e-05 0.014984803238862017 4.0608544177300526e-05 0.0005299790014942963 1.4362334527962185e-06 0.014984803238862017 4.0608544177300526e-05 0.019431153795991904 7.921743304366549e-05']
['59866.346755065795 0.03423092042759691 6.787510990658941e-05 0.015046997747387712 4.062324543195964e-05 0.0005321786822643042 1.436753403318141e-06 0.015046997747387714 4.062324543195964e-05 0.019183922680209194 7.910296210798191e-05']
['59866.34678660376 0.034267121387807964 6.788400268187389e-05 0.014966880485533667 4.060313250028819e-05 0.0005293451137640689 1.4360420538746785e-06 0.014966880485533669 4.060313250028819e-05 0.019300240902274293 7.910026668064161e-05']
['59866.34681814173 0.03438661036075821 6.796534904394281e-05 0.015063820458231092 4.063923235882246e-05 0.0005327736639502885 1.4373188251926e-06 0.01506382045823109 4.063923235882246e-05 0.019322789902527122 7.918860951790567e-05']
['59866.346849679685 0.034351055396985956 6.794037453245155e-05 0.015117983137280131 4.0692418707764074e-05 0.0005346892768617895 1.4391999074901709e-06 0.015117983137280133 4.0692418707764074e-05 0.019233072259705823 7.919449117140521e-05']
['59866.34688121765 0.0342666542429125 6.787962625248834e-05 0.015115625443972547 4.0674267634934475e-05 0.0005346058905186347 1.4385579446094482e-06 0.015115625443972549 4.0674267634934475e-05 0.019151028798939956 7.913305066668277e-05']
['59866.346912755616 0.034258359729616404 6.784748184160968e-05 0.014996011301652158 4.06168608445293e-05 0.0005303754056266375 1.4365275947294428e-06 0.014996011301652158 4.06168608445293e-05 0.019262348427964246 7.907597724411259e-05']
['59866.346944293575 0.03419436386637847 6.786435905146079e-05 0.015027421710700237 4.063387252340044e-05 0.0005314863215965353 1.4371292597922506e-06 0.015027421710700237 4.063387252340044e-05 0.01916694215567823 7.909919611294128e-05']
['59866.34697583154 0.034119422035003094 6.778094298441934e-05 0.014964004913284496 4.059885513538608e-05 0.0005292434112001414 1.4358907730374388e-06 0.014964004913284496 4.059885513538608e-05 0.019155417121718598 7.900964036218093e-05']
['59866.3470073695 0.03418673931495758 6.785241644722043e-05 0.015016193786391905 4.063891329040313e-05 0.0005310892150066836 1.4373075404556843e-06 0.015016193786391905 4.063891329040313e-05 0.019170545528565675 7.909153994677266e-05']
['59866.347038907465 0.03427580574975567 6.788747537704522e-05 0.015030615153002304 4.0625111386293253e-05 0.0005315992665138359 1.4368193979527582e-06 0.015030615153002302 4.0625111386293253e-05 0.019245190596753364 7.911453082852514e-05']
['59866.34707044543 0.034292488420787595 6.790604820169917e-05 0.014962017610776876 4.058366651190619e-05 0.0005291731247518066 1.4353535853695308e-06 0.014962017610776876 4.058366651190619e-05 0.01933047081001072 7.91091990221182e-05']
['59866.34710198339 0.03414481426187857 6.779244303831433e-05 0.014966369506588842 4.059054095615643e-05 0.0005293270415807611 1.435596719099183e-06 0.014966369506588842 4.059054095615643e-05 0.01917844475528973 7.901523491211366e-05']
['59866.347133521354 0.034355393871963937 6.794074785732302e-05 0.015075765277160447 4.064043408018604e-05 0.0005331961255007206 1.4373613273915408e-06 0.015075765277160447 4.064043408018604e-05 0.01927962859480349 7.916811290941757e-05']
['59866.34716505932 0.034179333983875355 6.782598391693333e-05 0.01507524550977439 4.065127809680862e-05 0.0005331777424898875 1.4377448560245304e-06 0.01507524550977439 4.065127809680862e-05 0.019104088474100965 7.907522055109408e-05']
['59866.34719659728 0.03432748764308291 6.791477729262568e-05 0.01502032672042229 4.061120900537164e-05 0.0005312353876467744 1.4363277018095536e-06 0.015020326720422292 4.061120900537164e-05 0.01930716092266062 7.913082377673648e-05']
['59866.347228135244 0.034201689695791036 6.783578320468994e-05 0.015060215703175079 4.0649136786863564e-05 0.0005326461718201108 1.43766912267732e-06 0.01506021570317508 4.0649136786863564e-05 0.019141473992615954 7.908252527904529e-05']
['59866.3472596732 0.034233754185663864 6.784622000639765e-05 0.014962014931774055 4.058087233812249e-05 0.000529173030001464 1.435254761687412e-06 0.014962014931774053 4.058087233812249e-05 0.01927173925388981 7.905641510263103e-05']
['59866.34729121117 0.034325558261392095 6.791248474577558e-05 0.015128521065915826 4.06735585843764e-05 0.0005350619798467496 1.438532867075844e-06 0.015128521065915827 4.06735585843764e-05 0.019197037195476267 7.916087387252557e-05']
['59866.347322749134 0.03419679520044745 6.784358523564344e-05 0.01499241535722252 4.060181856159186e-05 0.000530248225108624 1.4359955827994695e-06 0.014992415357222521 4.060181856159186e-05 0.01920437984322493 7.906490832306353e-05']
['59866.34735428709 0.03430234025377217 6.792782708432966e-05 0.014997170295437954 4.062369650835303e-05 0.0005304163966466424 1.4367693568820787e-06 0.014997170295437954 4.062369650835303e-05 0.019305169958334215 7.914843277286901e-05']
['59866.34738582506 0.034295164550242056 6.788914054836308e-05 0.01507535406093903 4.0654334143640214e-05 0.0005331815817019833 1.4378529415711013e-06 0.015075354060939032 4.0654334143640214e-05 0.019219810489303026 7.913096921596593e-05']
['59866.347417363024 0.034337161655706105 6.795877532851713e-05 0.01501333451953346 4.062655903188663e-05 0.0005309880891279857 1.4368705979420985e-06 0.015013334519533461 4.062655903188663e-05 0.019323827136172644 7.917646394556426e-05']
['59866.34744890098 0.03431391472132768 6.788066948387453e-05 0.01503692891923397 4.062812209263643e-05 0.0005318225703150128 1.4369258799075836e-06 0.01503692891923397 4.062812209263643e-05 0.019276985802093707 7.911023697571122e-05']
['59866.34748043895 0.034432894590961174 6.80126939296565e-05 0.015015757966461742 4.0618045726889096e-05 0.0005310738010297539 1.4365695013704526e-06 0.01501575796646174 4.0618045726889096e-05 0.019417136624499433 7.921838280500802e-05']
['59866.34751197691 0.03438027368194616 6.793627684438247e-05 0.015061057919903375 4.0652667770840674e-05 0.000532675959143547 1.4377940056893057e-06 0.015061057919903375 4.0652667770840674e-05 0.019319215762042787 7.917055708003403e-05']
['59866.34754351487 0.03430763738206861 6.78880823921108e-05 0.015056903269448163 4.063894275089002e-05 0.0005325290184420434 1.4373085824072653e-06 0.015056903269448162 4.063894275089002e-05 0.019250734112620446 7.91221549174954e-05']
['59866.34757505284 0.03434861970686278 6.795322787439946e-05 0.015056069661573955 4.0637629034733174e-05 0.0005324995355945366 1.4372621192027804e-06 0.015056069661573954 4.0637629034733174e-05 0.019292550045288827 7.917738358972623e-05']
['59866.347606590796 0.0342741901790656 6.789204148923836e-05 0.015135299174490344 4.070758150581759e-05 0.0005353017063988492 1.4397361817704644e-06 0.015135299174490345 4.070758150581759e-05 0.019138891004575255 7.916082673664573e-05']
['59866.34763812876 0.034289523320221636 6.791974795444656e-05 0.01502464912567396 4.0627837580769054e-05 0.0005313882614605188 1.4369158173586812e-06 0.015024649125673962 4.0627837580769054e-05 0.019264874194547674 7.914362481390967e-05']
['59866.34766966673 0.03415737296564777 6.778785148977462e-05 0.01503572412197133 4.0640366922710325e-05 0.0005317799593283967 1.4373589521817129e-06 0.015035724121971331 4.0640366922710325e-05 0.01912164884367644 7.903690424866265e-05']
['59866.347701204686 0.03429296175393767 6.78955226007675e-05 0.01498465035654339 4.060480392582685e-05 0.0005299735943883584 1.4361011684605645e-06 0.014984650356543392 4.060480392582685e-05 0.01930831139739428 7.911101118735731e-05']
['59866.34773274265 0.034281079233990694 6.790904482690543e-05 0.014986371324425322 4.06065527387336e-05 0.0005300344611762054 1.4361630200647095e-06 0.014986371324425322 4.06065527387336e-05 0.019294707909565372 7.912351417010118e-05']
['59866.34776428061 0.03429044065468096 6.787194474153769e-05 0.015045177120889075 4.0630912785943586e-05 0.0005321142907739081 1.4370245804930255e-06 0.015045177120889075 4.0630912785943586e-05 0.019245263533791884 7.910418419285607e-05']
['59866.347795818576 0.0343230122793331 6.790958937521377e-05 0.01500418647852752 4.060369282835711e-05 0.000530664543362274 1.4360618714262166e-06 0.01500418647852752 4.060369282835711e-05 0.01931882580080558 7.912251386558522e-05']
['59866.34782735654 0.03429483408062105 6.790282422790384e-05 0.015049008135696668 4.064401712791778e-05 0.0005322497852058385 1.437488051782172e-06 0.01504900813569667 4.064401712791778e-05 0.019245825944924376 7.913741003103449e-05']
['59866.3478588945 0.03425477990209248 6.787716332743644e-05 0.01508648408127534 4.0665774211564193e-05 0.000533575225647147 1.4382575512065254e-06 0.01508648408127534 4.0665774211564193e-05 0.019168295820817145 7.912657261379014e-05']
['59866.347890432466 0.03425774309416759 6.788166387928497e-05 0.015132518420729114 4.068061174536512e-05 0.0005352033573529333 1.438782321617128e-06 0.015132518420729112 4.068061174536512e-05 0.01912522467343848 7.913805950993086e-05']
['59866.34792197043 0.034207983505076096 6.780996441113843e-05 0.015045403776741663 4.063427981384569e-05 0.0005321223070848682 1.4371436647450582e-06 0.015045403776741665 4.063427981384569e-05 0.019162579728334433 7.905274169457861e-05']
['59866.34795350839 0.034257431233549594 6.787246816419814e-05 0.014983435743119623 4.060646053368217e-05 0.000529930636226061 1.4361597589781067e-06 0.014983435743119623 4.060646053368217e-05 0.01927399549042997 7.909207654230339e-05']
['59866.347985046355 0.03418565065825179 6.779850417913741e-05 0.015083797561655931 4.064258126517839e-05 0.0005334802094522265 1.4374372685260442e-06 0.015083797561655931 4.064258126517839e-05 0.01910185309659586 7.904717946154147e-05']
['59866.348016584314 0.03428987494513008 6.789670517785382e-05 0.015057533543950098 4.062668414231021e-05 0.0005325513098425963 1.4368750228181752e-06 0.0150575335439501 4.062668414231021e-05 0.019232341401179985 7.912325851737554e-05']
['59866.34804812228 0.034209764472845544 6.781635529609185e-05 0.01503344174554733 4.064665932274234e-05 0.0005316992367750909 1.4375815003081589e-06 0.01503344174554733 4.064665932274234e-05 0.019176322727298214 7.906458726727688e-05']
['59866.348079660245 0.034250778230605405 6.786500230371903e-05 0.015026101863359113 4.063040526167566e-05 0.000531439641545765 1.4370066304939188e-06 0.015026101863359113 4.063040526167566e-05 0.019224676367246292 7.909796691073539e-05']
['59866.348111198204 0.03414515735947046 6.78103823546125e-05 0.015068054915348749 4.065213521366437e-05 0.0005329234272350853 1.4377751703321751e-06 0.015068054915348749 4.065213521366437e-05 0.019077102444121714 7.906227958077603e-05']
['59866.34814273617 0.034265996751267944 6.788677318502133e-05 0.015091088878424749 4.064989212559691e-05 0.0005337380870312057 1.4376958373202357e-06 0.015091088878424749 4.064989212559691e-05 0.019174907872843195 7.912665608565294e-05']
['59866.348174274135 0.03438802110428786 6.796534532609262e-05 0.01505294654367709 4.063308827011271e-05 0.0005323890778942823 1.4371015225061663e-06 0.01505294654367709 4.063308827011271e-05 0.01933507456061077 7.918545338420303e-05']
['59866.34820581209 0.03434815888760888 6.795422231372802e-05 0.014975133719176404 4.060828731686988e-05 0.0005296370121931208 1.436224368216836e-06 0.014975133719176402 4.060828731686988e-05 0.01937302516843248 7.916318165077137e-05']
['59866.34823735006 0.034293105225075164 6.785074213606718e-05 0.015119946398034467 4.068126593205165e-05 0.0005347587130070408 1.4388054587382091e-06 0.015119946398034467 4.068126593205165e-05 0.019173158827040696 7.911187399025122e-05']
['59866.34826888802 0.03421030878021739 6.784867469948356e-05 0.015076481116408328 4.064090114920407e-05 0.0005332214431351116 1.4373778465788707e-06 0.015076481116408327 4.064090114920407e-05 0.019133827663809066 7.908935139888123e-05']
['59866.34830042598 0.034170712847074285 6.781390644505241e-05 0.014987475951973967 4.0614179920639674e-05 0.0005300735293839037 1.436432776442979e-06 0.014987475951973967 4.0614179920639674e-05 0.01918323689510032 7.904579380311398e-05']
['59866.34833196395 0.03430421263969868 6.7902807351469e-05 0.014945789268450312 4.0575766847165e-05 0.0005285991645519266 1.4350741918823465e-06 0.014945789268450313 4.0575766847165e-05 0.019358423371248365 7.910236470198731e-05']
['59866.34836350191 0.03420447602191441 6.783619869643563e-05 0.01498559501595263 4.059815242549173e-05 0.0005300070048804736 1.4358659197589399e-06 0.014985595015952629 4.059815242549173e-05 0.019218881005961783 7.905668747136927e-05']
['59866.34839503987 0.034176249984615895 6.783936639185884e-05 0.01504011640282951 4.062535472263797e-05 0.0005319353044861805 1.4368280042154463e-06 0.01504011640282951 4.062535472263797e-05 0.019136133581786383 7.907337781319975e-05']
['59866.34842657784 0.0343583429924344 6.79445901892667e-05 0.015038298206853474 4.062478568540267e-05 0.000531870998957937 1.4368078786401572e-06 0.015038298206853476 4.062478568540267e-05 0.01932004478558092 7.916337883120133e-05']
['59866.3484581158 0.03425047751331615 6.785356484186603e-05 0.015106074932077747 4.066309921473122e-05 0.0005342681102570534 1.4381629425468092e-06 0.015106074932077747 4.066309921473122e-05 0.019144402581238402 7.910495496172407e-05']
['59866.34848965376 0.03421858650564935 6.78311065436256e-05 0.014999827799428898 4.062132287581672e-05 0.0005305103866236302 1.436685406804026e-06 0.014999827799428898 4.062132287581672e-05 0.019218758706220453 7.906422001837518e-05']
['59866.34852119172 0.03436140644088456 6.793049599644432e-05 0.015047167834003266 4.063095679641886e-05 0.0005321846978477751 1.437026137045178e-06 0.015047167834003268 4.063095679641886e-05 0.019314238606881293 7.915444988448467e-05']
['59866.34855272969 0.03431435317292719 6.788946314009629e-05 0.015138888426115079 4.069485356438461e-05 0.0005354286502073107 1.439286022927255e-06 0.015138888426115079 4.069485356438461e-05 0.019175464746812115 7.915207080094115e-05']
['59866.34858426765 0.03433019165894179 6.789990160559207e-05 0.015077134822779576 4.064650578910431e-05 0.0005332445632685149 1.4375760701665091e-06 0.015077134822779578 4.064650578910431e-05 0.019253056836162213 7.913618054286405e-05']
['59866.34861580561 0.034273231440204215 6.787929679045451e-05 0.015054144264197504 4.066104876068182e-05 0.0005324314385923415 1.4380904225695772e-06 0.015054144264197504 4.066104876068182e-05 0.019219087176006712 7.912597436420706e-05']
['59866.34864734358 0.034232451528293906 6.785009317962437e-05 0.015096708155415245 4.064968470262297e-05 0.0005339368283000146 1.4376885012332105e-06 0.015096708155415245 4.064968470262297e-05 0.019135743372878662 7.909508209052172e-05']
['59866.34867888154 0.0342566966992474 6.786039648787314e-05 0.01497468552415895 4.0604424993847175e-05 0.0005296211605370104 1.4360877664833066e-06 0.014974685524158952 4.0604424993847175e-05 0.019282011175088445 7.908067235786697e-05']
['59866.3487104195 0.034246059721055426 6.786263298113139e-05 0.015067974971961974 4.064927623851619e-05 0.0005329205998161581 1.4376740547706172e-06 0.015067974971961976 4.064927623851619e-05 0.019178084749093452 7.910562947001268e-05']
['59866.34874195747 0.03431698599211383 6.791538925192112e-05 0.015101591918918383 4.066441819693236e-05 0.0005341095561005515 1.4382095919995118e-06 0.015101591918918383 4.066441819693236e-05 0.019215394073195446 7.915866980018655e-05']
['59866.348773495425 0.03436436885667923 6.797312328413614e-05 0.015110357524435685 4.0667647061218803e-05 0.0005344195759777232 1.4383237897132363e-06 0.015110357524435685 4.0667647061218803e-05 0.01925401133224354 7.92098668506407e-05']
['59866.34880503339 0.03424575545607365 6.785090214689909e-05 0.015033660070242632 4.062952448450597e-05 0.0005317069584316367 1.436975479373848e-06 0.015033660070242632 4.062952448450597e-05 0.019212095385831015 7.908541699950217e-05']
['59866.34883657136 0.034288773500014226 6.79031787623413e-05 0.01498654080975638 4.060032106667576e-05 0.0005300404554935875 1.435942619750991e-06 0.01498654080975638 4.060032106667576e-05 0.019302232690257846 7.911528143631694e-05']
['59866.348868109315 0.034131593308814254 6.777553359501592e-05 0.014981186627037095 4.060657724669075e-05 0.0005298510900167005 1.436163886856382e-06 0.014981186627037095 4.060657724669075e-05 0.019150406681777157 7.900896828702799e-05']
['59866.34889964728 0.03432710723531428 6.794570425419179e-05 0.014962859053562007 4.059520670895099e-05 0.0005292028847026027 1.4357617363481828e-06 0.014962859053562007 4.059520670895099e-05 0.01936424818175227 7.914916003559706e-05']
['59866.348931185246 0.0341836901115765 6.782337554839473e-05 0.014981307039839726 4.0585277028962086e-05 0.0005298553487484228 1.435410545758504e-06 0.014981307039839726 4.0585277028962086e-05 0.019202383071736773 7.903907250402289e-05']
['59866.348962723205 0.034295086135836636 6.790477874421703e-05 0.015001546256645038 4.060853556904553e-05 0.0005305711646148392 1.4362331483414776e-06 0.015001546256645036 4.060853556904553e-05 0.0192935398791916 7.912087042850011e-05']
['59866.34899426117 0.034324940018741035 6.792555639859762e-05 0.015092642044334803 4.0656658306959914e-05 0.0005337930190383227 1.4379351420335199e-06 0.015092642044334801 4.0656658306959914e-05 0.01923229797440623 7.916340743517777e-05']
['59866.34902579913 0.034187831912583594 6.78154846176943e-05 0.014990095748351157 4.0615038361553974e-05 0.0005301661857268647 1.4364631375796153e-06 0.014990095748351159 4.0615038361553974e-05 0.019197736164232433 7.90475887996796e-05']
['59866.349057337095 0.03435673699049685 6.796481602483141e-05 0.015140055400224228 4.068746271891716e-05 0.0005354699234735177 1.4390246252406389e-06 0.015140055400224228 4.068746271891716e-05 0.019216681590272622 7.921291460230745e-05']
['59866.34908887506 0.03437402037628775 6.795302346097384e-05 0.015047659491910313 4.063175639065723e-05 0.0005322020866891566 1.4370544169064015e-06 0.015047659491910313 4.063175639065723e-05 0.019326360884377437 7.917419418521021e-05']
['59866.34912041302 0.03417665668443814 6.781649804639449e-05 0.015008287326473115 4.061392324786718e-05 0.0005308095811892539 1.436423698500646e-06 0.015008287326473113 4.061392324786718e-05 0.019168369357965023 7.904788529024843e-05']
['59866.349151950984 0.03434546015626231 6.794577256815275e-05 0.015062866378803292 4.065486570131578e-05 0.0005327399202931692 1.4378717415781247e-06 0.01506286637880329 4.065486570131578e-05 0.01928259377745902 7.917983401772929e-05']
['59866.34918348895 0.03421955583379572 6.785008845876063e-05 0.01504836925399024 4.065693568969212e-05 0.0005322271893876987 1.437944952440844e-06 0.01504836925399024 4.065693568969212e-05 0.01917118657980548 7.909880481737638e-05']
['59866.34921502691 0.034268899762882166 6.787150440686288e-05 0.01501828108188529 4.061827705238706e-05 0.0005311630379834537 1.4365776828363335e-06 0.01501828108188529 4.061827705238706e-05 0.019250618680996874 7.909731690237842e-05']
['59866.349246564874 0.03426300749339284 6.789326456742626e-05 0.015023398305151483 4.062363727845018e-05 0.000531344022734058 1.4367672620527858e-06 0.015023398305151483 4.062363727845018e-05 0.019239609188241358 7.911874164414917e-05']
['59866.34927810283 0.034365385703864104 6.796127641789008e-05 0.01511494932659604 4.066493365246668e-05 0.0005345819777580609 1.4382278225097855e-06 0.015114949326596037 4.066493365246668e-05 0.019250436377268067 7.919830756593463e-05']
['59866.3493096408 0.0342113203281821 6.787326877031454e-05 0.014951615260970143 4.058967662366182e-05 0.000528805216887026 1.4355661495905181e-06 0.014951615260970141 4.058967662366182e-05 0.01925970506721196 7.908414798163278e-05']
['59866.349341178764 0.03418491761107825 6.78306635369659e-05 0.015017814243752595 4.063212451389282e-05 0.0005311465269620221 1.4370674366025373e-06 0.015017814243752595 4.063212451389282e-05 0.019167103367325657 7.906939014800585e-05']
['59866.34937271672 0.034382577541280795 6.798207512274456e-05 0.015054666827774678 4.0654813381475475e-05 0.0005324499204982053 1.437869891142301e-06 0.01505466682777468 4.0654813381475475e-05 0.019327910713506116 7.921096129373183e-05']
['59866.34940425469 0.034268817080095944 6.786671387987633e-05 0.015122885686344185 4.068129403069267e-05 0.0005348626690656327 1.4388064525243452e-06 0.015122885686344185 4.068129403069267e-05 0.01914593139375176 7.912558711860955e-05']
['59866.349435792654 0.03432343080410822 6.792498329966476e-05 0.015128831680914273 4.067459883948047e-05 0.000535072965605061 1.4385696585740413e-06 0.015128831680914273 4.067459883948047e-05 0.019194599123193948 7.917213112587285e-05']
['59866.34946733061 0.03420557806883455 6.78615813853968e-05 0.014981514212158589 4.061145128195855e-05 0.0005298626759703381 1.4363362705909761e-06 0.014981514212158587 4.061145128195855e-05 0.019224063856675962 7.908529701122533e-05']
['59866.34949886858 0.034321891077948495 6.790972598955743e-05 0.015079884961596547 4.06435959978052e-05 0.0005333418295322726 1.4374731573512605e-06 0.015079884961596547 4.06435959978052e-05 0.019242006116351948 7.914311580680646e-05']
['59866.349530406536 0.03433970687862917 6.79329170170429e-05 0.015038736903305544 4.064169660900546e-05 0.0005318865146710178 1.4374059802142977e-06 0.015038736903305544 4.064169660900546e-05 0.01930096997532362 7.916204088894425e-05']
['59866.3495619445 0.03417081983969477 6.780577243402292e-05 0.014987029458820975 4.0612778373963296e-05 0.0005300577379189358 1.436383206869308e-06 0.014987029458820975 4.0612778373963296e-05 0.019183790380873797 7.903809551492977e-05']
['59866.34959348247 0.03430152453964023 6.788377472024407e-05 0.015051852408428624 4.062650000362024e-05 0.0005323503807757923 1.4368685102442367e-06 0.015051852408428624 4.062650000362024e-05 0.019249672131211606 7.911206843973303e-05']
['59866.349625020426 0.034284869715951245 6.78938258995371e-05 0.015067309320444259 4.064506974733673e-05 0.00053289705720962 1.4375252805785544e-06 0.015067309320444257 4.064506974733673e-05 0.01921756039550699 7.913022993801119e-05']
['59866.34965655839 0.03418367766658583 6.78318943474207e-05 0.014984170979978279 4.0596011313847275e-05 0.000529956639910594 1.4357901934251783e-06 0.01498417097997828 4.0596011313847275e-05 0.01919950668660755 7.905189450831434e-05']
['59866.34968809636 0.0342664276126362 6.788654184447746e-05 0.015069739601685285 4.0649987442324166e-05 0.0005329830108257563 1.4376992084598583e-06 0.015069739601685287 4.0649987442324166e-05 0.019196688010950914 7.912650657436546e-05']
['59866.349719634316 0.034194392538413124 6.780882594542943e-05 0.015060689679295735 4.0639170928963124e-05 0.0005326629352962241 1.437316652555763e-06 0.015060689679295736 4.0639170928963124e-05 0.019133702859117387 7.90542793901192e-05']
['59866.34975117228 0.03419427477738255 6.781184987441301e-05 0.015051728041644348 4.062558579150763e-05 0.0005323459822005759 1.4368361766049576e-06 0.015051728041644348 4.062558579150763e-05 0.019142546735738203 7.904989060266355e-05']
['59866.34978271024 0.03435833665459976 6.795217178101624e-05 0.015132529100766014 4.0691180336119566e-05 0.0005352037350819701 1.4391561090527022e-06 0.015132529100766014 4.0691180336119566e-05 0.019225807553833747 7.920397595388343e-05']
['59866.349814248206 0.03427731129301685 6.788795160396465e-05 0.015047911618230983 4.0647039199826604e-05 0.0005322110038336495 1.437594935711654e-06 0.015047911618230983 4.0647039199826604e-05 0.019229399674785867 7.912620153081081e-05']
['59866.34984578617 0.03418293002638561 6.781068426299902e-05 0.015030804960468679 4.062278694575213e-05 0.0005316059795797268 1.4367371876856376e-06 0.015030804960468677 4.062278694575213e-05 0.01915212506591693 7.904745232742238e-05']
['59866.34987732413 0.034276824282644454 6.787541176775708e-05 0.015058490663210104 4.0633155713371934e-05 0.0005325851610117869 1.4371039078235183e-06 0.015058490663210102 4.0633155713371934e-05 0.01921833361943435 7.910831097849143e-05']
['59866.349908862096 0.03433428753098841 6.790919237659975e-05 0.015027083976394271 4.065470775301294e-05 0.000531474376688925 1.437866155299647e-06 0.015027083976394271 4.065470775301294e-05 0.01930720355459414 7.914836493399547e-05']
['59866.34994040006 0.03426324102907835 6.78994066306137e-05 0.015098027049712479 4.066316228994744e-05 0.0005339834746437525 1.4381651733762421e-06 0.015098027049712479 4.066316228994744e-05 0.019165213979365874 7.914431241856885e-05']
['59866.34997193802 0.03425452634379596 6.785300643517393e-05 0.015007548780482096 4.062001101950613e-05 0.0005307834604681048 1.4366390093781465e-06 0.015007548780482098 4.062001101950613e-05 0.01924697756331386 7.90823354328674e-05']
['59866.350003475985 0.034186222867674684 6.781938546597412e-05 0.014989606443314235 4.059662836339955e-05 0.000530148880101241 1.4358120170888177e-06 0.014989606443314235 4.059662836339955e-05 0.01919661642436045 7.904147822161703e-05']
['59866.350035013944 0.034356239955856176 6.791408010466052e-05 0.015089118088353202 4.064519531159283e-05 0.0005336683845908317 1.4375297215056729e-06 0.015089118088353202 4.064519531159283e-05 0.019267121867502974 7.914767323414994e-05']
['59866.35006655191 0.03431786744917814 6.792861492595258e-05 0.015077569120512144 4.064828594065048e-05 0.0005332599234087176 1.4376390301482925e-06 0.015077569120512146 4.064828594065048e-05 0.019240298328665993 7.91617323943282e-05']
['59866.350098089875 0.0342362767933179 6.785565774095001e-05 0.01501374461113031 4.062229547267624e-05 0.0005310025931512656 1.436719805381321e-06 0.01501374461113031 4.062229547267624e-05 0.019222532182187592 7.908578365879902e-05']
['59866.350129627834 0.034250537512276184 6.784236908219474e-05 0.014995156293949345 4.0614906041709216e-05 0.0005303451659150187 1.4364584577224237e-06 0.014995156293949345 4.0614906041709216e-05 0.019255381218326838 7.907058641151968e-05']
['59866.3501611658 0.034188660406812246 6.783865568445264e-05 0.015062472956153369 4.063679118528242e-05 0.0005327260058132894 1.4372324863401905e-06 0.01506247295615337 4.063679118528242e-05 0.019126187450658874 7.907864441750355e-05']
['59866.350192703765 0.03420335753886609 6.784605825638531e-05 0.015038463710279965 4.064522862523556e-05 0.0005318768524442536 1.4375308997347646e-06 0.015038463710279965 4.064522862523556e-05 0.019164893828586122 7.908933070222872e-05']
['59866.35022424172 0.03421002837175063 6.783907280851877e-05 0.015045771934868148 4.064919795285106e-05 0.0005321353280150169 1.4376712859815997e-06 0.015045771934868148 4.064919795285106e-05 0.01916425643688248 7.908537850784798e-05']
['59866.35025577969 0.03429779221135257 6.792082776782268e-05 0.01499242271700242 4.060702968474177e-05 0.0005302484854075908 1.4361798885791071e-06 0.014992422717002418 4.060702968474177e-05 0.01930536949435015 7.913387204278414e-05']
['59866.35028731765 0.034152381830858586 6.778630465510357e-05 0.01496484937873258 4.059473321916931e-05 0.0005292732780557709 1.4357449900727923e-06 0.01496484937873258 4.059473321916931e-05 0.019187532452126004 7.901212225937261e-05']
['59866.35031885561 0.034215933679866736 6.786010342273787e-05 0.015023681269677508 4.062424880045379e-05 0.000531354030556955 1.4367888902193823e-06 0.015023681269677507 4.062424880045379e-05 0.01919225241018923 7.909060138313433e-05']
['59866.35035039358 0.034260388244611126 6.78681298261004e-05 0.015005063112562143 4.062112902966072e-05 0.0005306955479489169 1.4366785508987088e-06 0.015005063112562144 4.062112902966072e-05 0.01925532513204898 7.909588592168851e-05']
['59866.35038193154 0.03425599224725785 6.787779585461898e-05 0.015068239478561916 4.064812745174009e-05 0.0005329299548234606 1.437633424749734e-06 0.015068239478561916 4.064812745174009e-05 0.019187752768695936 7.911804746967809e-05']
['59866.3504134695 0.03422148767239641 6.783070903470044e-05 0.015078234314970275 4.065735414645277e-05 0.0005332834498500795 1.4379597523212723e-06 0.015078234314970275 4.065735414645277e-05 0.019143253357426136 7.908239712059993e-05']
['59866.35044500747 0.034358306028759764 6.794170277212858e-05 0.01505919862529586 4.064827179014469e-05 0.000532610200048558 1.4376385296765275e-06 0.01505919862529586 4.064827179014469e-05 0.019299107403463904 7.917295608414364e-05']
['59866.35047654543 0.03437386748959399 6.79787519111478e-05 0.015007370740257018 4.06081975948405e-05 0.0005307771635832402 1.4362211949491736e-06 0.015007370740257018 4.06081975948405e-05 0.019366496749336975 7.918419301412997e-05']
['59866.35050808339 0.03433607616098138 6.789401070322574e-05 0.014990837526230044 4.0603501998553184e-05 0.0005301924207526649 1.4360551222025312e-06 0.014990837526230046 4.0603501998553184e-05 0.019345238634751336 7.910904539884326e-05']
['59866.35053962135 0.03427768537040173 6.789561894823091e-05 0.015020576331940792 4.0627786124882986e-05 0.0005312442158483348 1.4369139974789883e-06 0.015020576331940792 4.0627786124882986e-05 0.01925710903846094 7.912289224853075e-05']
['59866.35057115932 0.03426383801928141 6.785102789836713e-05 0.01508743815029981 4.065833984966846e-05 0.0005336089689363238 1.4379946144410945e-06 0.015087438150299812 4.065833984966846e-05 0.019176399868981595 7.91003324025641e-05']
['59866.35060269728 0.03419001338378121 6.784426603605683e-05 0.014992388364922915 4.060846462615707e-05 0.0005302472704513112 1.4362306392500608e-06 0.014992388364922914 4.060846462615707e-05 0.0191976250188583 7.906890560305677e-05']
['59866.35063423524 0.03429726142239032 6.791022204114261e-05 0.014979670645754221 4.0604548664912846e-05 0.000529797473146744 1.4360921404525108e-06 0.014979670645754221 4.0604548664912846e-05 0.019317590776636098 7.912349606759403e-05']
['59866.35066577321 0.03428652875772787 6.787907827461103e-05 0.015057909636511773 4.064390400486276e-05 0.0005325646113959853 1.437484050872531e-06 0.015057909636511773 4.064390400486276e-05 0.019228619121216095 7.911697795143132e-05']
['59866.35069731117 0.03426874922496716 6.791030869968156e-05 0.015077141470369534 4.067095959102585e-05 0.0005332447983789152 1.4384409464894431e-06 0.015077141470369532 4.067095959102585e-05 0.019191607754597627 7.915767165436906e-05']
['59866.35072884913 0.03446362109138035 6.801484939721928e-05 0.015015770223530098 4.060878388973089e-05 0.0005310742345348687 1.4362419308891548e-06 0.015015770223530097 4.060878388973089e-05 0.019447850867850253 7.921548502363213e-05']
['59866.3507603871 0.034205599706096886 6.783019419749747e-05 0.01504657286276476 4.063957481873699e-05 0.0005321636550447516 1.437330937234424e-06 0.01504657286276476 4.063957481873699e-05 0.019159026843332125 7.907281635504038e-05']
['59866.350791925055 0.03419675241429081 6.781632142934515e-05 0.014977718785816472 4.058367281307822e-05 0.000529728440222896 1.4353538082279033e-06 0.01497771878581647 4.058367281307822e-05 0.01921903362847434 7.903219566232007e-05']
['59866.35082346302 0.0343571966654659 6.795195456344868e-05 0.014988302603999998 4.0606106748078825e-05 0.0005301027662186059 1.4361472463719806e-06 0.014988302603999998 4.0606106748078825e-05 0.0193688940614659 7.916011643643133e-05']
['59866.35085500099 0.03431874142465997 6.79117221709232e-05 0.015029587240432787 4.0615921835619066e-05 0.0005315629115435015 1.4364943840828492e-06 0.015029587240432787 4.0615921835619066e-05 0.019289154184227178 7.913062058885787e-05']
['59866.350886538945 0.034269720367848186 6.789082310014361e-05 0.015037778255885344 4.0635124243512376e-05 0.0005318526094542162 1.4371735303351797e-06 0.015037778255885344 4.0635124243512376e-05 0.019231942111962844 7.912254535529478e-05']
['59866.35091807691 0.034347585267214584 6.792139375163894e-05 0.015118224437793882 4.066545730849423e-05 0.000534697811121686 1.4382463430531775e-06 0.015118224437793882 4.066545730849423e-05 0.0192293608294207 7.916435528237531e-05']
['59866.350949614876 0.03426928320028723 6.787745759731491e-05 0.01505083017554955 4.0641166352319546e-05 0.0005323142266834155 1.437387226220371e-06 0.01505083017554955 4.0641166352319546e-05 0.01921845302473768 7.91141811077647e-05']
['59866.350981152835 0.034402599365582806 6.79923955615678e-05 0.015007116041661762 4.0603070322187795e-05 0.0005307681554631438 1.4360398547742273e-06 0.01500711604166176 4.0603070322187795e-05 0.019395483323921048 7.9193277326988e-05']
['59866.3510126908 0.03421816607349544 6.783910968166544e-05 0.015032372634631041 4.0623036323681314e-05 0.000531661424711304 1.436746007625666e-06 0.01503237263463104 4.0623036323681314e-05 0.019185793438864403 7.90719664771034e-05']
['59866.35104422876 0.03425153570061942 6.785701878453839e-05 0.015066565240371785 4.064377668255854e-05 0.0005328707407603778 1.4374795477671796e-06 0.015066565240371785 4.064377668255854e-05 0.019184970460247638 7.909798721425776e-05']
['59866.351075766725 0.034244605859380634 6.788024601009123e-05 0.014967874818151303 4.059551016781544e-05 0.000529380281086552 1.4357724690100279e-06 0.014967874818151304 4.059551016781544e-05 0.01927673104122933 7.909313019583756e-05']
['59866.35110730469 0.03431884633565619 6.79038886561093e-05 0.01512430050601673 4.0674441082877454e-05 0.0005349127080755148 1.438564079075558e-06 0.01512430050601673 4.0674441082877454e-05 0.01919454582963946 7.915395285155226e-05']
['59866.35113884265 0.0342050139413004 6.780547151796846e-05 0.014960703260344441 4.0580258508853315e-05 0.0005291266391144117 1.435233051917989e-06 0.014960703260344441 4.0580258508853315e-05 0.01924431068095596 7.90211322901627e-05']
['59866.351170380614 0.03429611922831096 6.787076869447305e-05 0.015054172738024648 4.0649619857587835e-05 0.0005324324456479722 1.437686207809238e-06 0.015054172738024646 4.0649619857587835e-05 0.019241946490286314 7.911278555167339e-05']
['59866.35120191857 0.03429718552132706 6.787102353786598e-05 0.015069650467128264 4.0651789313500405e-05 0.0005329798583356784 1.4377629366164168e-06 0.015069650467128264 4.0651789313500405e-05 0.019227535054198795 7.911411890722657e-05']
['59866.35123345654 0.034385883022970465 6.795098554171495e-05 0.01507286049200779 4.064672106988406e-05 0.0005330933897416839 1.4375836841665647e-06 0.01507286049200779 4.064672106988406e-05 0.019313022530962676 7.918012610386089e-05']
['59866.351264994504 0.03433088046529436 6.793054533437447e-05 0.015015944560890903 4.0614897812173206e-05 0.0005310804004576993 1.436458166662127e-06 0.015015944560890901 4.0614897812173206e-05 0.01931493590440346 7.914625015576401e-05']
['59866.35129653246 0.0341854775314041 6.78231709029926e-05 0.014958274144696694 4.060112402051009e-05 0.0005290407267227048 1.4359710184336152e-06 0.014958274144696694 4.060112402051009e-05 0.019227203386707407 7.904703525791073e-05']
['59866.35132807043 0.03424320088027848 6.786395754407094e-05 0.015079336310743591 4.065318081280056e-05 0.0005333224249777661 1.4378121508368455e-06 0.015079336310743593 4.065318081280056e-05 0.01916386456953489 7.910877223002339e-05']
['59866.351359608394 0.0342800500012397 6.79176094830105e-05 0.01501163401111116 4.0638288869115605e-05 0.0005309279459455017 1.437285456070244e-06 0.015011634011111162 4.0638288869115605e-05 0.01926841599012854 7.914715535062775e-05']
['59866.35139114635 0.03426340185520076 6.787676470221426e-05 0.015015040169656992 4.061766156959096e-05 0.0005310484141609514 1.4365559145853585e-06 0.015015040169656994 4.061766156959096e-05 0.01924836168554377 7.910151463670962e-05']
['59866.35142268432 0.0343050579344882 6.7902964102189e-05 0.015045028904365229 4.063280269368916e-05 0.0005321090486867041 1.4370914223062911e-06 0.015045028904365229 4.063280269368916e-05 0.01926002903012297 7.913177104429952e-05']
['59866.35145422228 0.03409747844742315 6.776444755699821e-05 0.015014875352448347 4.0628711717381364e-05 0.0005310425849446264 1.4369467336170783e-06 0.015014875352448347 4.0628711717381364e-05 0.019082603094974802 7.901083829778826e-05']
['59866.35148576024 0.034323978024514305 6.790929176392788e-05 0.015065308045588479 4.062168643521057e-05 0.0005328262765905572 1.436698265087279e-06 0.01506530804558848 4.062168643521057e-05 0.019258669978925825 7.913149383601231e-05']
['59866.35151729821 0.03427581190568157 6.790402538356021e-05 0.015049372236932831 4.063657395641575e-05 0.0005322626626528432 1.4372248034406543e-06 0.015049372236932831 4.063657395641575e-05 0.019226439668748735 7.91346182540008e-05']
['59866.351548836166 0.03432488958226117 6.793752475416372e-05 0.015012155305393883 4.0615440092844705e-05 0.0005309463829592574 1.4364773459175518e-06 0.015012155305393885 4.0615440092844705e-05 0.019312734276867284 7.915251887121511e-05']
['59866.35158037413 0.03422931639892101 6.785477379541683e-05 0.015028110037230785 4.064123985591499e-05 0.0005315106661676016 1.437389825878271e-06 0.015028110037230787 4.064123985591499e-05 0.019201206361690225 7.909475775203562e-05']
['59866.3516119121 0.03422205346544824 6.7868030567474e-05 0.015082274961706716 4.066053570656575e-05 0.0005334263584948334 1.4380722769921001e-06 0.015082274961706714 4.066053570656575e-05 0.019139778503741524 7.911604601503094e-05']
['59866.351643450056 0.03433311427549319 6.793106913785179e-05 0.015001472890855084 4.062737421967791e-05 0.0005305685698308115 1.4368994293124386e-06 0.015001472890855084 4.062737421967791e-05 0.019331641384638103 7.915310284630255e-05']
['59866.35167498802 0.03434131213095546 6.790783984663828e-05 0.015105371816065099 4.066552308486131e-05 0.0005342432426150579 1.4382486694162797e-06 0.015105371816065099 4.066552308486131e-05 0.019235940314890364 7.915276040923691e-05']
['59866.35170652598 0.03425074585602884 6.78774209976739e-05 0.015037323445828404 4.063150409396801e-05 0.000531836523838943 1.4370454937363536e-06 0.015037323445828405 4.063150409396801e-05 0.01921342241020043 7.910918661087093e-05']
['59866.351738063946 0.03427214554198798 6.78948182264432e-05 0.015040156115461178 4.064745102641981e-05 0.0005319367090332101 1.4376095010978773e-06 0.015040156115461178 4.064745102641981e-05 0.0192319894265268 7.913230450926448e-05']
['59866.35176960191 0.03430892491968101 6.793742223864128e-05 0.015017403803579625 4.062275601442664e-05 0.000531132010610384 1.4367360937137825e-06 0.015017403803579627 4.062275601442664e-05 0.019291521116101384 7.915618514455497e-05']
['59866.35180113987 0.034167678713353695 6.780260049165573e-05 0.015062634565274848 4.063733022149867e-05 0.000532731721566741 1.4372515508464843e-06 0.01506263456527485 4.063733022149867e-05 0.019105044148078846 7.904799327599786e-05']
['59866.351832677836 0.034306369356422076 6.790535665431798e-05 0.015015410693064621 4.062675923720896e-05 0.0005310615187458081 1.4368776787569168e-06 0.015015410693064621 4.062675923720896e-05 0.019290958663357456 7.91307211420967e-05']
['59866.3518642158 0.03433105994392959 6.792434484305568e-05 0.0149634423476863 4.05978917243716e-05 0.0005292235145121934 1.4358566993429535e-06 0.014963442347686302 4.05978917243716e-05 0.019367617596243288 7.91322022619246e-05']
['59866.35189575376 0.034265285306137275 6.787115621585266e-05 0.015045041164224802 4.0640293395611785e-05 0.000532109482290538 1.4373563516925608e-06 0.0150450411642248 4.0640293395611785e-05 0.019220244141912472 7.910832632130502e-05']
['59866.351927291726 0.034129002633180666 6.776787464824495e-05 0.014976723607262736 4.059834940881724e-05 0.0005296932429815437 1.4358728866189314e-06 0.014976723607262737 4.059834940881724e-05 0.01915227902591793 7.899816965639553e-05']
['59866.351958829684 0.03426582117283099 6.787458944793097e-05 0.01508942994837112 4.066167171369927e-05 0.0005336794143826993 1.4381124550255863e-06 0.01508942994837112 4.066167171369927e-05 0.01917639122445987 7.912225628277946e-05']
['59866.35199036765 0.034308200759387994 6.788539431322708e-05 0.015056823364957849 4.0640171548635415e-05 0.000532526192398797 1.4373520422373186e-06 0.015056823364957849 4.0640171548635415e-05 0.019251377394430145 7.912047967855629e-05']
['59866.352021905615 0.034223829818434304 6.785181088490311e-05 0.015018451037105461 4.0626674363050306e-05 0.0005311690489197636 1.4368746769476077e-06 0.015018451037105461 4.0626674363050306e-05 0.019205378781328844 7.908473247196316e-05']
['59866.352053443574 0.03433672485459815 6.792999421469825e-05 0.015088337383142834 4.065389787922125e-05 0.0005336407727923143 1.4378375118735962e-06 0.015088337383142832 4.065389787922125e-05 0.019248387471455318 7.916579770824701e-05']
['59866.35208498154 0.034363897422278245 6.794088696882055e-05 0.015008643820685176 4.061051621900947e-05 0.0005308221895928168 1.43630319950421e-06 0.015008643820685175 4.061051621900947e-05 0.01935525360159307 7.915287834112214e-05']
['59866.352116519505 0.03421594260166948 6.78296697934994e-05 0.014989039380851653 4.0611630581375095e-05 0.0005301288243692496 1.436342612010629e-06 0.014989039380851653 4.0611630581375095e-05 0.019226903220817826 7.905800808756343e-05']
['59866.35214805746 0.03420035137957871 6.785634219180414e-05 0.015013993978471321 4.063081473887098e-05 0.0005310114127168139 1.4370211127871897e-06 0.015013993978471323 4.063081473887098e-05 0.01918635740110739 7.90907471326177e-05']
['59866.35217959543 0.03426326074567637 6.786187497951836e-05 0.015036527064981625 4.062354450927286e-05 0.0005318083576281988 1.436763981014311e-06 0.015036527064981625 4.062354450927286e-05 0.019226733680694746 7.909175964809895e-05']
['59866.35221113339 0.03420962987771537 6.783183222541393e-05 0.015044804769211129 4.064260531556678e-05 0.0005321011215272162 1.437438119134532e-06 0.01504480476921113 4.064260531556678e-05 0.01916482510850424 7.907577903437715e-05']
['59866.35224267135 0.03423323731082962 6.788154808472826e-05 0.015039891205963348 4.064251284893492e-05 0.0005319273397763098 1.4374348487964138e-06 0.01503989120596335 4.064251284893492e-05 0.01919334610486627 7.911838232076738e-05']
['59866.35227420932 0.03420254679345462 6.782500957402794e-05 0.015041064842065759 4.062907704995714e-05 0.0005319688486623297 1.4369596546138134e-06 0.015041064842065759 4.062907704995714e-05 0.019161481951388865 7.906297379714689e-05']
['59866.35230574728 0.034159458825707215 6.779999275252565e-05 0.015014147748805317 4.061483094152538e-05 0.0005310168512298708 1.4364558015967603e-06 0.015014147748805317 4.061483094152538e-05 0.0191453110769019 7.903419202883786e-05']
['59866.35233728524 0.034092723085280066 6.773643004350369e-05 0.015000986942698672 4.061828827730585e-05 0.0005305513829305493 1.436578079836625e-06 0.01500098694269867 4.061828827730585e-05 0.019091736142581396 7.89814490726575e-05']
['59866.35236882321 0.03418175986269739 6.782732230793366e-05 0.014980212801340898 4.0597104943791766e-05 0.0005298166479781983 1.4358288726721958e-06 0.014980212801340896 4.0597104943791766e-05 0.019201547061356496 7.904853307482409e-05']
['59866.35240036117 0.03433821377841311 6.79492702186659e-05 0.015097864231229469 4.06620994957879e-05 0.0005339777161178863 1.4381275847220244e-06 0.015097864231229469 4.06620994957879e-05 0.019240349547183642 7.918654973323835e-05']
['59866.35243189913 0.03416238311434057 6.780024472282619e-05 0.015021135685762988 4.0634054395007166e-05 0.0005312639989429437 1.437135692184521e-06 0.015021135685762988 4.0634054395007166e-05 0.019141247428577583 7.904428860487974e-05']
['59866.35246343709 0.034227777785999 6.78802860354408e-05 0.015022344106179026 4.063203552721953e-05 0.0005313067380723983 1.4370642893427766e-06 0.015022344106179026 4.063203552721953e-05 0.01920543367981998 7.91119178337783e-05']
['59866.35249497506 0.034218183979964886 6.784604350596497e-05 0.015053153474809983 4.063337262037195e-05 0.0005323963965859887 1.4371115793393503e-06 0.015053153474809983 4.063337262037195e-05 0.019165030505154904 7.908322571771642e-05']
['59866.35252651302 0.03416685543860241 6.781438117450298e-05 0.015014129047828756 4.0623475516837746e-05 0.0005310161898181241 1.43676154090607e-06 0.015014129047828758 4.0623475516837746e-05 0.01915272639077365 7.905097758502358e-05']
['59866.35255805098 0.03432166147301032 6.79449769194969e-05 0.014987952952676664 4.059411573344826e-05 0.0005300903998327243 1.4357231509828381e-06 0.014987952952676666 4.059411573344826e-05 0.019333708520333656 7.914797610028673e-05']
['59866.35258958895 0.03435651077155231 6.793758099903305e-05 0.015006710357023683 4.061323637930357e-05 0.0005307538073041468 1.4363994054946117e-06 0.015006710357023683 4.061323637930357e-05 0.019349800414528627 7.915143638116344e-05']
['59866.35262112691 0.034339883207480125 6.79519378600454e-05 0.015073092339209313 4.065564667447072e-05 0.0005331015896590537 1.4378993628532426e-06 0.015073092339209311 4.065564667447072e-05 0.019266790868270815 7.918552560572464e-05']
['59866.35265266487 0.03429411414376855 6.791662410217218e-05 0.014985313894115813 4.060029516989962e-05 0.0005299970622293758 1.435941703839895e-06 0.014985313894115814 4.060029516989962e-05 0.019308800249652737 7.912680833522055e-05']
['59866.35268420284 0.03425228642602303 6.78624788345896e-05 0.01500863230292039 4.06161338904653e-05 0.000530821782235217 1.436501883988846e-06 0.01500863230292039 4.06161338904653e-05 0.019243654123102638 7.908847176285129e-05']
['59866.352715740795 0.034187830363392124 6.780044145741746e-05 0.01499776460518308 4.061413896748728e-05 0.0005304374160541234 1.4364313280215037e-06 0.01499776460518308 4.061413896748728e-05 0.019190065758209043 7.903422135942798e-05']
['59866.35274727876 0.03423614137241313 6.78581698596563e-05 0.015177355606673274 4.07209846175105e-05 0.0005367891484145652 1.440210219876851e-06 0.015177355606673272 4.07209846175105e-05 0.019058785765739862 7.913867452087819e-05']
['59866.35277881673 0.03427627736198551 6.789970221332373e-05 0.015075890136640933 4.063518331750497e-05 0.0005332005415015009 1.4371756196502752e-06 0.015075890136640934 4.063518331750497e-05 0.019200387225344576 7.913019451451685e-05']
['59866.352810354685 0.03429907718284687 6.789074754312057e-05 0.015069415018899628 4.0641109851317156e-05 0.0005329715310580273 1.4373852279061888e-06 0.015069415018899626 4.0641109851317156e-05 0.01922966216394724 7.912555473366718e-05']
['59866.35284189265 0.0342531925121889 6.786197144700395e-05 0.015019998351593608 4.063896276420855e-05 0.000531223773975165 1.4373092902336147e-06 0.015019998351593608 4.063896276420855e-05 0.01923319416059529 7.909976272546403e-05']
['59866.35287343062 0.034265801861020156 6.787893709690015e-05 0.015022217245770277 4.062460972599693e-05 0.0005313022513032572 1.436801655349222e-06 0.015022217245770277 4.062460972599693e-05 0.01924358461524988 7.910694670377875e-05']
['59866.352904968575 0.03434834797542086 6.79330791940611e-05 0.01500609182461735 4.060983541058654e-05 0.0005307319311952733 1.4362791208318081e-06 0.01500609182461735 4.060983541058654e-05 0.019342256150803514 7.914582731175097e-05']
['59866.35293650654 0.03443591636876867 6.79964377762876e-05 0.015059103103047351 4.0638611999935877e-05 0.000532606821640108 1.4372968844852022e-06 0.015059103103047353 4.0638611999935877e-05 0.01937681326572132 7.921497545001124e-05']
['59866.3529680445 0.03439093582262916 6.797478066163758e-05 0.015051712359178173 4.0630901017446006e-05 0.0005323454275467955 1.437024164267567e-06 0.015051712359178173 4.0630901017446006e-05 0.01933922346345098 7.919242971071941e-05']
['59866.352999582465 0.03422326797738881 6.783332564660033e-05 0.015093164225010156 4.0663425070997586e-05 0.0005338114874018049 1.4381744673547047e-06 0.015093164225010157 4.0663425070997586e-05 0.019130103752378655 7.908776268666576e-05']
['59866.35303112043 0.03432486745461979 6.790709167700922e-05 0.015119352154656368 4.0661984991899346e-05 0.0005347376959468133 1.4381235349753873e-06 0.01511935215465637 4.0661984991899346e-05 0.019205515299963418 7.915030084283434e-05']
['59866.35306265839 0.034304204979801925 6.789729595057777e-05 0.015122569815769255 4.067489196135096e-05 0.0005348514974293267 1.438580025639512e-06 0.015122569815769257 4.067489196135096e-05 0.01918163516403267 7.914852894064372e-05']
['59866.353094196355 0.034259180256031224 6.789157177454532e-05 0.014995903415977067 4.062640818576973e-05 0.0005303715899514198 1.4368652628520651e-06 0.014995903415977068 4.062640818576973e-05 0.019263276840054154 7.911871182024525e-05']
['59866.35312573432 0.034161205070616804 6.779556243316087e-05 0.01500017459770877 4.062235511141615e-05 0.0005305226521037408 1.436721914670267e-06 0.01500017459770877 4.062235511141615e-05 0.019161030472908035 7.9034258523925e-05']
['59866.35315727228 0.03417696087054957 6.781685529565123e-05 0.015093462612947917 4.0676006036394686e-05 0.0005338220407163057 1.4386194279839973e-06 0.015093462612947918 4.0676006036394686e-05 0.019083498257601653 7.908010703877503e-05']
['59866.353188810244 0.034283229201054644 6.786765102612086e-05 0.015018761466267272 4.0626300677974076e-05 0.0005311800281054485 1.4368614605415985e-06 0.015018761466267273 4.0626300677974076e-05 0.01926446773478737 7.909813122053188e-05']
['59866.3532203482 0.034249863234927846 6.786961420998474e-05 0.014933925021777525 4.0573343491006044e-05 0.0005281795526621408 1.4349884831908866e-06 0.014933925021777523 4.0573343491006044e-05 0.01931593821315032 7.90726294937213e-05']
['59866.35325188617 0.03425500521634023 6.786332543951247e-05 0.014958156361496704 4.059589956827122e-05 0.0005290365609941512 1.43578624123389e-06 0.014958156361496704 4.059589956827122e-05 0.019296848854843524 7.907880880151359e-05']
['59866.353283424134 0.034272903200475775 6.788705136174129e-05 0.015122914157779005 4.067239646205316e-05 0.0005348636760366524 1.4384917654064614e-06 0.015122914157779006 4.067239646205316e-05 0.01914998904269677 7.913845826498096e-05']
['59866.35331496209 0.034367244066077066 6.796647737920528e-05 0.015034171411413428 4.063631348092412e-05 0.0005317250434260676 1.4372155910046442e-06 0.015034171411413428 4.063631348092412e-05 0.019333072654663636 7.918808004149336e-05']
['59866.35334650006 0.03426265319258724 6.787828169615387e-05 0.015025755308092968 4.062566618927506e-05 0.0005314273846605068 1.4368390200943131e-06 0.015025755308092968 4.062566618927506e-05 0.019236897884494272 7.910692687334545e-05']
['59866.353378038024 0.034276901218566865 6.788329593606458e-05 0.015111781598772049 4.066443986328774e-05 0.0005344699423043814 1.4382103582900803e-06 0.015111781598772047 4.066443986328774e-05 0.019165119619794817 7.913114770138411e-05']
['59866.35340957598 0.034304443725608966 6.790398975249569e-05 0.015018365247032393 4.062163280100413e-05 0.0005311660147166087 1.4366963681652626e-06 0.015018365247032392 4.062163280100413e-05 0.019286078478576572 7.912691625310982e-05']
['59866.35344111395 0.03424538513805742 6.783641175809192e-05 0.015062037990748383 4.0618432069692067e-05 0.0005327106220590055 1.4365831654519683e-06 0.015062037990748383 4.0618432069692067e-05 0.01918334714730904 7.906728643385696e-05']
['59866.35347265191 0.034181422490144296 6.780946505188737e-05 0.014987186283652369 4.0604155051086655e-05 0.0005300632844627394 1.4360782192111536e-06 0.014987186283652369 4.0604155051086655e-05 0.019194236206491928 7.90368329200748e-05']
['59866.35350418987 0.0343320294003102 6.793698220408837e-05 0.014957091384498848 4.059932649388603e-05 0.0005289988951378206 1.4359074439341576e-06 0.01495709138449885 4.059932649388603e-05 0.019374938015811353 7.91437860021605e-05']
['59866.35353572784 0.03418562802854508 6.782596497754796e-05 0.01507172796067489 4.065362475745181e-05 0.0005330533346394978 1.4378278521670023e-06 0.01507172796067489 4.065362475745181e-05 0.01911390006787019 7.907641071176196e-05']
['59866.353567265796 0.0341975043224448 6.781777034819195e-05 0.015033765957245673 4.064217409241616e-05 0.0005317107034182908 1.4374228677354216e-06 0.015033765957245673 4.064217409241616e-05 0.019163738365199124 7.906349530572479e-05']
['59866.35359880376 0.03421627575384514 6.784268194209309e-05 0.014974999904092755 4.060939346808224e-05 0.0005296322794526712 1.4362634903131144e-06 0.014974999904092755 4.060939346808224e-05 0.01924127584975239 7.906802344147428e-05']
['59866.35363034173 0.03425611214440353 6.787542992313265e-05 0.015077166369067183 4.066433458669421e-05 0.0005332456789902058 1.4382066348922463e-06 0.015077166369067184 4.066433458669421e-05 0.019178945775336347 7.912434577693964e-05']
['59866.353661879686 0.034244742597917474 6.785691648285847e-05 0.01497246141135019 4.0601170690283156e-05 0.0005295424986375641 1.4359726690391877e-06 0.01497246141135019 4.0601170690283156e-05 0.019272281186567285 7.907601517516635e-05']
['59866.35369341765 0.034280366543209026 6.789641856198924e-05 0.01499715783884845 4.061756455399521e-05 0.0005304159560849105 1.436552483360554e-06 0.01499715783884845 4.061756455399521e-05 0.019283208704360576 7.911833039089491e-05']
['59866.35372495561 0.03413804052377397 6.777669870945323e-05 0.01499091131164509 4.0614047250193376e-05 0.0005301950303778943 1.4364280841857945e-06 0.01499091131164509 4.0614047250193376e-05 0.01914712921212888 7.901380716047633e-05']
['59866.353756493576 0.034315048320076084 6.789913157490988e-05 0.015051086697016857 4.062145350752223e-05 0.0005323232992744224 1.436690026955505e-06 0.015051086697016857 4.062145350752223e-05 0.019263961623059225 7.912265512285792e-05']
['59866.35378803154 0.03423715916258437 6.784824310342742e-05 0.015047912706357783 4.0636829241081186e-05 0.0005322110423182626 1.4372338322887433e-06 0.015047912706357783 4.0636829241081186e-05 0.01918924645622659 7.908688881850504e-05']
['59866.3538195695 0.03426763626947338 6.786563920140166e-05 0.015077608366138376 4.064621367024923e-05 0.0005332613114388085 1.4375657385754522e-06 0.015077608366138376 4.064621367024923e-05 0.019190027903335002 7.910663480355096e-05']
['59866.353851107466 0.0342769666957955 6.788579489041073e-05 0.015088037075228386 4.06575612548185e-05 0.000533630151572529 1.4379670772813083e-06 0.015088037075228385 4.06575612548185e-05 0.019188929620567112 7.912975695079718e-05']
['59866.35388264543 0.03430842536347918 6.789868582918346e-05 0.014980109960532716 4.060101477503404e-05 0.0005298130107286486 1.4359671546652766e-06 0.014980109960532714 4.060101477503404e-05 0.019328315402946467 7.911178128504433e-05']
['59866.35391418339 0.03414609264301523 6.780721972804806e-05 0.014996407563210017 4.06022943389746e-05 0.0005303894205123464 1.436012409982197e-06 0.014996407563210017 4.06022943389746e-05 0.01914968507980521 7.903395063412001e-05']
['59866.353945721356 0.03431868063500247 6.792067067536564e-05 0.015050635326878985 4.062424303356369e-05 0.0005323073353213988 1.4367886862573678e-06 0.015050635326878985 4.062424303356369e-05 0.019268045308123486 7.914257152153651e-05']
['59866.353977259314 0.03429278295558902 6.790213856283623e-05 0.014990279486023479 4.0608556934123915e-05 0.0005301726841177051 1.4362339039765519e-06 0.014990279486023477 4.0608556934123915e-05 0.01930250346956554 7.911861549394425e-05']
['59866.35400879728 0.03427454453527887 6.789410187976906e-05 0.015065592501897079 4.064191807328333e-05 0.00053283633717447 1.4374138129108625e-06 0.015065592501897079 4.064191807328333e-05 0.01920895203338179 7.91288479300434e-05']
['59866.354040335245 0.03429229793645968 6.78897434908785e-05 0.01507004560654828 4.063787915186794e-05 0.0005329938335338798 1.4372709652868583e-06 0.015070045606548281 4.063787915186794e-05 0.0192222523299114 7.912303389796868e-05']
['59866.354071873204 0.03422414562613036 6.785956806067997e-05 0.014966016568435861 4.058191169512704e-05 0.0005293145589470605 1.4352915214218371e-06 0.014966016568435861 4.058191169512704e-05 0.0192581290576945 7.906840414611354e-05']
['59866.35410341117 0.03427880461802434 6.789554349197873e-05 0.01499089150278099 4.062202770970342e-05 0.0005301943297826413 1.4367103352033875e-06 0.01499089150278099 4.062202770970342e-05 0.019287913115243353 7.911987083735089e-05']
['59866.354134949135 0.034266185975184466 6.788303098587478e-05 0.015029690597474114 4.062188528417407e-05 0.0005315665670510638 1.4367052979307166e-06 0.015029690597474114 4.062188528417407e-05 0.019236495377710352 7.910906054220233e-05']
['59866.35416648709 0.03425191229278531 6.788833381525509e-05 0.015108372879453805 4.0664513201742315e-05 0.0005343493835201345 1.4382129521073168e-06 0.015108372879453805 4.0664513201742315e-05 0.01914353941333151 7.913550721481592e-05']
['59866.35419802506 0.03422178184807714 6.78547259034773e-05 0.015053296292337046 4.063300510800535e-05 0.0005324014477227426 1.4370985812482853e-06 0.015053296292337046 4.063300510800535e-05 0.0191684855557401 7.909048572074408e-05']
['59866.35422956302 0.03427232135285202 6.789499398523102e-05 0.015084800410053539 4.0659961930198444e-05 0.0005335156779588156 1.4380519838043031e-06 0.015084800410053539 4.0659961930198444e-05 0.01918752094279848 7.91388824309501e-05']
['59866.35426110098 0.03432003268181344 6.794110340018679e-05 0.015084651059505327 4.063263918774541e-05 0.0005335103957637042 1.4370856394664749e-06 0.015084651059505325 4.063263918774541e-05 0.019235381622308114 7.916441687144785e-05']
['59866.35429263895 0.03430370040369379 6.792080052211302e-05 0.015042991036314622 4.06308801863653e-05 0.0005320369738481212 1.4370234275187972e-06 0.015042991036314624 4.06308801863653e-05 0.01926070936737917 7.914609003787515e-05']
['59866.35432417691 0.03420792950454835 6.782603342336414e-05 0.015031637244247624 4.0635307965549756e-05 0.0005316354155969434 1.4371800281730473e-06 0.015031637244247624 4.0635307965549756e-05 0.01917629226030073 7.906705422236483e-05']
['59866.35435571487 0.034156027753733186 6.780675202411306e-05 0.015047984336637031 4.061143418537607e-05 0.0005322135757211553 1.4363356659230626e-06 0.015047984336637031 4.061143418537607e-05 0.019108043417096154 7.903824521491284e-05']
['59866.35438725284 0.03413121851942404 6.777476770328821e-05 0.014974273335161678 4.0602465739126934e-05 0.0005296065823333651 1.4360184720225283e-06 0.01497427333516168 4.0602465739126934e-05 0.019156945184262364 7.900619824628733e-05']
['59866.3544187908 0.0343148481290865 6.791203212203205e-05 0.015052280711861078 4.063973966141339e-05 0.0005323655289109964 1.4373367673514868e-06 0.015052280711861078 4.063973966141339e-05 0.019262567417225422 7.914311433530633e-05']
['59866.35445032876 0.034138182430779804 6.776590466161164e-05 0.014974147301536326 4.0587350792807755e-05 0.0005296021248057049 1.435483890151136e-06 0.014974147301536327 4.0587350792807755e-05 0.019164035129243476 7.899082781554495e-05']
['59866.35448186672 0.03407633218699288 6.774401655184215e-05 0.014989899504305262 4.060578391242241e-05 0.0005301592450135409 1.4361358283963086e-06 0.014989899504305262 4.060578391242241e-05 0.01908643268268762 7.898152610401122e-05']
['59866.35451340469 0.03413471948415446 6.777331732341044e-05 0.014954527945401676 4.0585020892714654e-05 0.0005289082320259027 1.435401486791863e-06 0.014954527945401676 4.0585020892714654e-05 0.019180191538752785 7.899599016331001e-05']
['59866.35454494265 0.0342699402834512 6.7870972094511e-05 0.01488804992026905 4.05405072644105e-05 0.0005265570528466039 1.4338271392408494e-06 0.01488804992026905 4.05405072644105e-05 0.01938189036318215 7.905695151161353e-05']
['59866.35457648061 0.03422185269638573 6.785379532596332e-05 0.015038743288633171 4.063226704179274e-05 0.0005318867405057857 1.4370724774958262e-06 0.015038743288633171 4.063226704179274e-05 0.019183109407752558 7.908930815915182e-05']
['59866.35460801858 0.03417946472132879 6.781908516832078e-05 0.014938716658836214 4.0590687268022124e-05 0.0005283490221562281 1.435601893822885e-06 0.014938716658836214 4.0590687268022124e-05 0.019240748062492576 7.903816929786723e-05']
['59866.35463955654 0.0342353023119125 6.782923764845395e-05 0.015004150650362728 4.0606466488814574e-05 0.0005306632762001565 1.4361599695978308e-06 0.015004150650362726 4.0606466488814574e-05 0.01923115166154977 7.905498466686122e-05']
['59866.3546710945 0.03425371879373877 6.787267747120356e-05 0.01498369144845159 4.06085255736753e-05 0.0005299396799521848 1.436232794827571e-06 0.01498369144845159 4.06085255736753e-05 0.019270027345287183 7.909331638247231e-05']
['59866.35470263247 0.03430713169479586 6.790212461204249e-05 0.015003555259450537 4.061050675569316e-05 0.0005306422185542127 1.4363028648078614e-06 0.015003555259450536 4.061050675569316e-05 0.01930357643534532 7.911960430755166e-05']
['59866.354734170425 0.03423833378623453 6.783181696854565e-05 0.015079153346033011 4.06566325531566e-05 0.0005333159539248549 1.437934231179053e-06 0.015079153346033011 4.06566325531566e-05 0.01915918044020152 7.908297644763171e-05']
['59866.35476570839 0.034377287923491456 6.796262924248652e-05 0.015071386648670235 4.064643168390405e-05 0.0005330412631966805 1.4375734492311912e-06 0.015071386648670235 4.064643168390405e-05 0.01930590127482122 7.918997021205377e-05']
['59866.35479724636 0.034227254701750975 6.785220310390747e-05 0.015019728255719601 4.0609346974372604e-05 0.0005312142212877301 1.436261845934512e-06 0.015019728255719601 4.0609346974372604e-05 0.019207526446031374 7.907616915189364e-05']
['59866.354828784315 0.03422030333082781 6.783519312571768e-05 0.014972439642196104 4.05935122825877e-05 0.0005295417287112353 1.4357018082745332e-06 0.014972439642196102 4.05935122825877e-05 0.019247863688631708 7.905344183424282e-05']
['59866.35486032228 0.034282643472605644 6.787820240703443e-05 0.01496998472129133 4.0605378975451655e-05 0.0005294549036452587 1.4361215066806337e-06 0.01496998472129133 4.0605378975451655e-05 0.019312658751314313 7.909644216872454e-05']
['59866.35489186025 0.034229736720632724 6.784686464867528e-05 0.014982901872478277 4.059368614717593e-05 0.0005299117544146072 1.4357079574764546e-06 0.014982901872478277 4.059368614717593e-05 0.019246834848154447 7.906354657913524e-05']
['59866.354923398205 0.034329372541337576 6.793783529344835e-05 0.015066216680102947 4.064201324893875e-05 0.0005328584129626553 1.4374171790610897e-06 0.015066216680102947 4.064201324893875e-05 0.01926315586123463 7.916642410319308e-05']
['59866.35495493617 0.03426392078080289 6.786786673633314e-05 0.01498463948878074 4.0610929620155884e-05 0.0005299732100198815 1.4363178205788614e-06 0.01498463948878074 4.0610929620155884e-05 0.019279281292022152 7.909042255516106e-05']
['59866.35498647413 0.03425434994861449 6.789172076136084e-05 0.015002601057833843 4.0605192934750534e-05 0.0005306084705755453 1.4361149268368116e-06 0.015002601057833843 4.0605192934750534e-05 0.019251748890780646 7.910794802803894e-05']
['59866.355018012095 0.03415944864201803 6.77958018112586e-05 0.015016807334065546 4.0605798896340976e-05 0.0005311109148167019 1.436136358344021e-06 0.015016807334065546 4.0605798896340976e-05 0.019142641307952485 7.902595552881053e-05']
['59866.35504955006 0.034208685568276734 6.780833933118277e-05 0.015083380147856979 4.0640042309691534e-05 0.0005334654464590225 1.4373474713447055e-06 0.015083380147856979 4.0640042309691534e-05 0.019125305420419757 7.905430995073163e-05']
['59866.35508108802 0.03426398103257212 6.787655256953569e-05 0.015031885767777605 4.063306471930305e-05 0.0005316442053187814 1.4371006895666617e-06 0.015031885767777604 4.063306471930305e-05 0.019232095264794514 7.91092430579892e-05']
['59866.355112625984 0.03414962983397499 6.777907584811153e-05 0.014983202575887531 4.060812461525711e-05 0.0005299223896221599 1.4362186138244087e-06 0.01498320257588753 4.060812461525711e-05 0.019166427258087457 7.901280217529502e-05']
['59866.35514416395 0.03420973148127786 6.783339070195466e-05 0.0150387214722095 4.0621543137807966e-05 0.0005318859689076372 1.4366931969783997e-06 0.0150387214722095 4.0621543137807966e-05 0.01917101000906836 7.90662928245711e-05']
['59866.35517570191 0.03424144106185465 6.787050024325341e-05 0.014929336112641935 4.056746395937028e-05 0.0005280172532016234 1.4347805372969092e-06 0.014929336112641935 4.056746395937028e-05 0.019312104949212715 7.907037330988306e-05']
['59866.355207239874 0.034261627490244306 6.788924147935175e-05 0.015101859382825223 4.065741969416408e-05 0.0005341190157011898 1.437962070597331e-06 0.015101859382825223 4.065741969416408e-05 0.01915976810741908 7.913264108336795e-05']
['59866.35523877783 0.03415548409114374 6.776383722898866e-05 0.014997100606812678 4.061645991033139e-05 0.0005304139319157112 1.4365134145828979e-06 0.014997100606812676 4.061645991033139e-05 0.019158383484331062 7.900401541468906e-05']
['59866.3552703158 0.03423385422584579 6.786527459874035e-05 0.014990458068757226 4.0620301154785274e-05 0.0005301790001898888 1.4366492708145557e-06 0.014990458068757226 4.0620301154785274e-05 0.01924339615708856 7.909301083071679e-05']
['59866.355301853764 0.03414039957564217 6.774236281394455e-05 0.015001156557811906 4.062084697894212e-05 0.000530557381838037 1.4366685753951383e-06 0.015001156557811904 4.062084697894212e-05 0.019139243017830265 7.89878530465459e-05']
['59866.35533339172 0.03430508436483614 6.793037083822628e-05 0.014965269641886167 4.060602233987707e-05 0.0005292881418242804 1.4361442610425258e-06 0.014965269641886167 4.060602233987707e-05 0.019339814722949975 7.914154618457702e-05']
['59866.35536492969 0.034227969295013184 6.785347706222583e-05 0.015029126153085758 4.063687323972259e-05 0.0005315466039145067 1.4372353884223586e-06 0.01502912615308576 4.063687323972259e-05 0.019198843141927425 7.909140165741968e-05']
['59866.355396467654 0.03415500954116987 6.782059466208797e-05 0.015010708244697595 4.0621159783583055e-05 0.0005308952036564199 1.4366796385962108e-06 0.015010708244697593 4.0621159783583055e-05 0.01914430129647228 7.905511800309087e-05']
['59866.35542800561 0.034259671663263686 6.786250085297142e-05 0.015012256969118006 4.061864829009663e-05 0.0005309499785779746 1.4365908126844535e-06 0.015012256969118006 4.061864829009663e-05 0.01924741469414568 7.908978196286874e-05']
['59866.35545954358 0.03419244278474034 6.78594238045317e-05 0.01497297302619133 4.060731103116218e-05 0.0005295605933111034 1.4361898391732248e-06 0.014972973026191331 4.060731103116218e-05 0.019219469758549008 7.90813195910677e-05']
['59866.35549108154 0.0342625121056377 6.7900512579427e-05 0.014966482595313252 4.058329675519704e-05 0.0005293310412762051 1.4353405079010859e-06 0.014966482595313253 4.058329675519704e-05 0.01929602951032445 7.910425768610252e-05']
['59866.3555226195 0.03414528928230457 6.780796454067721e-05 0.0150652019853654 4.065663587660854e-05 0.0005328225254774975 1.4379343487221207e-06 0.015065201985365399 4.065663587660854e-05 0.01908008729693917 7.90625201720314e-05']
['59866.35555415747 0.034344659499819526 6.795125129700138e-05 0.015054092755921799 4.064176501036371e-05 0.000532429616859744 1.437408399417471e-06 0.0150540927559218 4.064176501036371e-05 0.019290566743897723 7.917781012370737e-05']
['59866.355585695426 0.03429240473656025 6.789858853795198e-05 0.014957354500090435 4.058920260254603e-05 0.0005290082009482662 1.4355493845230274e-06 0.014957354500090437 4.058920260254603e-05 0.019335050236469812 7.910563629322903e-05']
['59866.35561723339 0.03424412342067876 6.783946991656817e-05 0.015086098060259102 4.066050903599685e-05 0.0005335615729465089 1.4380713337136834e-06 0.015086098060259102 4.066050903599685e-05 0.019158025360419655 7.909153351419695e-05']
['59866.35564877136 0.03424727760605926 6.786100031219505e-05 0.01497201358250485 4.057895428577983e-05 0.000529526659932143 1.435186924462647e-06 0.01497201358250485 4.057895428577983e-05 0.01927526402355441 7.906811553527215e-05']
['59866.355680309316 0.03410404464346245 6.776737140485537e-05 0.014899913823210594 4.056208675418312e-05 0.0005269766525793837 1.4345903575667858e-06 0.014899913823210594 4.056208675418312e-05 0.019204130820251856 7.897910805382324e-05']
['59866.35571184728 0.034168546567731294 6.782357055537167e-05 0.015005856396662699 4.061948691584353e-05 0.0005307236046346679 1.4366204730029032e-06 0.0150058563966627 4.061948691584353e-05 0.019162690171068593 7.905681147242065e-05']
['59866.35574338524 0.03427130517584305 6.791456178720131e-05 0.015013624916650611 4.0618548675185665e-05 0.00053099835982502 1.436587289527679e-06 0.015013624916650611 4.0618548675185665e-05 0.019257680259192438 7.913440591314255e-05']
['59866.355774923206 0.03418543441827635 6.780387827289498e-05 0.015039998065891699 4.063668550880184e-05 0.0005319311191731576 1.4372287487992455e-06 0.015039998065891697 4.063668550880184e-05 0.019145436352384654 7.904875785227004e-05']
['59866.35580646117 0.03422006765855415 6.782521977583354e-05 0.014997547923950411 4.062786833874096e-05 0.0005304297525231779 1.4369169051994076e-06 0.01499754792395041 4.062786833874096e-05 0.01922251973460374 7.906253299376507e-05']
['59866.35583799913 0.03421127840164346 6.784014669977565e-05 0.015055425496373355 4.065134808668743e-05 0.0005324767529110159 1.437747331410126e-06 0.015055425496373356 4.065134808668743e-05 0.019155852905270103 7.908740484749836e-05']
['59866.355869537096 0.03425343611753652 6.788625412495528e-05 0.014984788603839859 4.0607479911374705e-05 0.0005299784838862699 1.4361958120889166e-06 0.014984788603839857 4.0607479911374705e-05 0.01926864751369666 7.910443049457286e-05']
['59866.35590107506 0.034056940507926355 6.770691545563849e-05 0.014987720743635474 4.0620022985845345e-05 0.0005300821871178941 1.4366394326008215e-06 0.014987720743635474 4.0620022985845345e-05 0.01906921976429088 7.895703051589252e-05']
['59866.35593261302 0.03424516450829448 6.785897944906676e-05 0.015012883842480403 4.061967619630255e-05 0.000530972149687823 1.4366271674297217e-06 0.015012883842480403 4.061967619630255e-05 0.019232280665814075 7.90872883980816e-05']
['59866.355964150986 0.034386136801354696 6.796272320727603e-05 0.014968685370889136 4.0591078169539226e-05 0.0005294089485254104 1.4356157191359312e-06 0.014968685370889138 4.0591078169539226e-05 0.019417451430465558 7.916165342332398e-05']
['59866.355995688944 0.034230863737315896 6.782634586629266e-05 0.015020184611664383 4.060672299375957e-05 0.0005312303615776016 1.4361690416044806e-06 0.015020184611664383 4.060672299375957e-05 0.01921067912565151 7.905263528729373e-05']
['59866.35602722691 0.03423707768473046 6.785465197253866e-05 0.01500315512295214 4.062718871501125e-05 0.0005306280666205168 1.4368928684269575e-06 0.015003155122952139 4.062718871501125e-05 0.01923392256177832 7.908743425601492e-05']
['59866.356058764875 0.03421591372297436 6.784284635376399e-05 0.0150404709766844 4.062782346052594e-05 0.0005319478449710021 1.4369153179572393e-06 0.0150404709766844 4.062782346052594e-05 0.01917544274628996 7.907763173312722e-05']
['59866.356090302834 0.03411536331443802 6.780833524023902e-05 0.014912083333990675 4.05523683440668e-05 0.0005274070609784193 1.4342466391203401e-06 0.014912083333990675 4.05523683440668e-05 0.019203279980447345 7.900927101527714e-05']
['59866.3561218408 0.03407951105069836 6.775605390700412e-05 0.014985580142234995 4.061189614050185e-05 0.0005300064788303217 1.4363520042434526e-06 0.014985580142234996 4.061189614050185e-05 0.019093930908463366 7.899499319055453e-05']
['59866.356153378765 0.034146650511194414 6.780600055998994e-05 0.014932435388447785 4.057649729717385e-05 0.0005281268676604025 1.4351000262666999e-06 0.014932435388447783 4.057649729717385e-05 0.019214215122746632 7.901965480087162e-05']
['59866.35618491672 0.03421612832743814 6.784491824181357e-05 0.015012600219423113 4.062684212695219e-05 0.0005309621185741469 1.436880610381887e-06 0.015012600219423113 4.062684212695219e-05 0.019203528108015025 7.907890510399511e-05']
['59866.35621645469 0.03414990578951774 6.77557200920652e-05 0.015090253536132216 4.065428133474604e-05 0.000533708542841199 1.4378510738385354e-06 0.015090253536132218 4.065428133474604e-05 0.019059652253385517 7.90165058455445e-05']
['59866.35624799265 0.03417168542681224 6.782826471206786e-05 0.014989447540891324 4.060654261050544e-05 0.0005301432600776688 1.436162661851915e-06 0.014989447540891326 4.060654261050544e-05 0.01918223788592091 7.905418898849791e-05']
['59866.35627953061 0.03422820248204294 6.784875908672019e-05 0.015074441079643331 4.064000828408068e-05 0.0005331492915939475 1.4373462679348925e-06 0.01507444107964333 4.064000828408068e-05 0.019153761402399612 7.908896498840999e-05']
['59866.35631106858 0.03421197485050291 6.782447060071076e-05 0.015033949180975052 4.062093784437887e-05 0.000531717183632118 1.4366717891025638e-06 0.015033949180975052 4.062093784437887e-05 0.019178025669527858 7.905832912238641e-05']
['59866.35634260654 0.03414015038574715 6.778837533773451e-05 0.014895398448150982 4.0551845925165384e-05 0.0005268169538547946 1.4342281623313344e-06 0.01489539844815098 4.0551845925165384e-05 0.019244751937596172 7.899187324572019e-05']
['59866.3563741445 0.03419631707571197 6.782334648633346e-05 0.01500669428709035 4.062457909810119e-05 0.0005307532389465191 1.436800572108999e-06 0.01500669428709035 4.062457909810119e-05 0.019189622788621616 7.905923573816737e-05']
['59866.35640568247 0.034156029154537325 6.782534538752673e-05 0.015000665424264713 4.06181366463402e-05 0.0005305400115420916 1.4365727169882453e-06 0.015000665424264712 4.06181366463402e-05 0.019155363730272615 7.905764037433738e-05']
['59866.35643722043 0.034078043817368384 6.775845711999488e-05 0.014891308463585568 4.055161461969122e-05 0.0005266723002412935 1.4342199815736504e-06 0.014891308463585568 4.055161461969122e-05 0.019186735353782815 7.896608106995141e-05']
['59866.35646875839 0.034143919060763195 6.77648898052206e-05 0.014969324855708658 4.056387677452883e-05 0.0005294315656743124 1.4346536665859537e-06 0.014969324855708658 4.056387677452883e-05 0.01917459420505454 7.897789810632371e-05']
['59866.35650029635 0.03419470201144233 6.781714785984152e-05 0.015065536770597816 4.062276464750953e-05 0.0005328343660829672 1.4367363990466304e-06 0.015065536770597816 4.062276464750953e-05 0.01912916524084451 7.905298572129048e-05']
['59866.35653183432 0.034209574165819975 6.784947824606363e-05 0.015033064207189077 4.062426365446297e-05 0.000531685884087108 1.4367894155724903e-06 0.015033064207189077 4.062426365446297e-05 0.019176509958630898 7.908149275102477e-05']
['59866.35656337228 0.03424363250676487 6.783273710879922e-05 0.015028036966534293 4.061733660509841e-05 0.00053150808182037 1.43654442131751e-06 0.015028036966534293 4.061733660509841e-05 0.019215595540230578 7.906357098287007e-05']
['59866.35659491024 0.03400675972963626 6.76768881278695e-05 0.014879425578673694 4.054184500132447e-05 0.0005262520291586453 1.4338744520058306e-06 0.014879425578673694 4.054184500132447e-05 0.019127334150962565 7.889107923449635e-05']
['59866.35662644821 0.03413160256057821 6.782117649791006e-05 0.014923830342395614 4.0579113971452175e-05 0.0005278225264126834 1.4351925721880013e-06 0.014923830342395614 4.0579113971452175e-05 0.0192077722181826 7.903402098001071e-05']
['59866.356657986165 0.03406561570841692 6.773927442861785e-05 0.014934170299596938 4.0572651247238703e-05 0.0005281882275904498 1.4349640000759095e-06 0.014934170299596938 4.0572651247238703e-05 0.019131445408819985 7.896042888273632e-05']
['59866.35668952413 0.03402848832001113 6.769017085114463e-05 0.014929030427716417 4.0575322436395946e-05 0.0005280064418089734 1.4350584740666447e-06 0.014929030427716417 4.0575322436395946e-05 0.019099457892294714 7.891968081964503e-05']
['59866.3567210621 0.034232029092966236 6.783542019137599e-05 0.015045153553012669 4.063407767474275e-05 0.0005321134572307907 1.4371365155367415e-06 0.015045153553012669 4.063407767474275e-05 0.019186875539953567 7.907447439608795e-05']
['59866.356752600055 0.03410958508644484 6.776254391760297e-05 0.014990366518732165 4.0618326968564104e-05 0.0005301757622701047 1.4365794482599596e-06 0.014990366518732166 4.0618326968564104e-05 0.019119218567712676 7.900386600610285e-05']
['59866.35678413802 0.03412433334308148 6.777708338479928e-05 0.015088961962916701 4.065596525473105e-05 0.0005336628627830624 1.4379106303250657e-06 0.0150889619629167 4.065596525473105e-05 0.01903537138016478 7.903569157629946e-05']
['59866.35681567599 0.034224647806855205 6.783245316012215e-05 0.015080553343880712 4.065409045879792e-05 0.0005333654687199171 1.437844322982833e-06 0.015080553343880714 4.065409045879792e-05 0.019144094462974492 7.908221527468923e-05']
['59866.356847213945 0.03411429214791393 6.777550775028527e-05 0.0150143433376187 4.061250139940938e-05 0.0005310237687690849 1.4363734108983378e-06 0.0150143433376187 4.061250139940938e-05 0.01909994881029523 7.901199099330435e-05']
['59866.35687875191 0.03418362797760472 6.780576868210043e-05 0.014982623937807166 4.059051706021469e-05 0.0005299019244864374 1.4355958739531279e-06 0.014982623937807166 4.059051706021469e-05 0.019201004039797555 7.902665589398359e-05']
['59866.35691028987 0.03414932756051075 6.780237644937502e-05 0.01496364081541869 4.059752103718167e-05 0.0005292305338723387 1.435843588965483e-06 0.014963640815418691 4.059752103718167e-05 0.019185686745092058 7.902734315758801e-05']
['59866.356941827835 0.0340925237146148 6.774589598843278e-05 0.015001253917085924 4.061167844793853e-05 0.0005305608252179738 1.436344304944002e-06 0.015001253917085924 4.061167844793853e-05 0.019091269797528874 7.898616872360822e-05']
['59866.3569733658 0.03425354291631536 6.785457947473976e-05 0.01490501006297462 4.054937182627992e-05 0.0005271568951904118 1.434140658983041e-06 0.01490501006297462 4.054937182627992e-05 0.01934853285334074 7.904742570887225e-05']
['59866.35700490376 0.034166632700895684 6.780530872034565e-05 0.015013323973996667 4.060750301281121e-05 0.0005309877161559172 1.4361966291350972e-06 0.015013323973996667 4.060750301281121e-05 0.019153308726899018 7.9034987136058e-05']
['59866.357036441725 0.034296270036183 6.790608563813872e-05 0.01504622348774284 4.062575184303397e-05 0.0005321512984310335 1.4368420494763407e-06 0.01504622348774284 4.062575184303397e-05 0.019250046548440158 7.913082951357207e-05']
['59866.35706797969 0.034171242015006716 6.780050591285784e-05 0.014942529794258908 4.058392607764186e-05 0.0005284838842342727 1.4353627656295062e-06 0.014942529794258906 4.058392607764186e-05 0.01922871222074781 7.901875510228549e-05']
['59866.35709951765 0.034157220271999474 6.780195661485345e-05 0.014948406319653142 4.057561673669631e-05 0.0005286917238042055 1.4350688828105462e-06 0.014948406319653142 4.057561673669631e-05 0.019208813952346332 7.901573257501153e-05']
['59866.357131055614 0.034110153634376965 6.77709576165873e-05 0.014957195620227832 4.059259552697049e-05 0.0005290025817226015 1.4356693846771808e-06 0.014957195620227832 4.059259552697049e-05 0.01915295801414913 7.899785761579548e-05']
['59866.35716259357 0.034200609312091096 6.784939523943801e-05 0.014890470886361914 4.055225197542052e-05 0.0005266426770067677 1.4342425234213895e-06 0.014890470886361914 4.055225197542052e-05 0.019310138425729182 7.904445315539523e-05']
['59866.35719413154 0.03418601767010367 6.782801744028416e-05 0.014898255454051476 4.05612168546364e-05 0.0005269179997684627 1.4345595911639295e-06 0.014898255454051476 4.05612168546364e-05 0.019287762216052197 7.903070455594036e-05']
['59866.357225669504 0.03426562366432935 6.787368375492885e-05 0.015031331238709034 4.062465803733302e-05 0.0005316245928649255 1.4368033640132102e-06 0.015031331238709034 4.062465803733302e-05 0.019234292425620317 7.910246384983428e-05']
['59866.35725720746 0.0341129037537845 6.776909250891618e-05 0.014996155030040988 4.0612934912217904e-05 0.0005303804889785364 1.436388743277531e-06 0.01499615503004099 4.0612934912217904e-05 0.019116748723743512 7.900671099132079e-05']
['59866.35728874543 0.034229878378141315 6.784561436533851e-05 0.015000837024456152 4.0612719857178705e-05 0.000530546080657359 1.4363811372614143e-06 0.01500083702445615 4.0612719857178705e-05 0.019229041353685167 7.90722479938942e-05']
['59866.357320283394 0.03404794583502238 6.771654118163851e-05 0.015030371947307533 4.061889321889135e-05 0.0005315906648719446 1.4365994752685393e-06 0.015030371947307533 4.061889321889135e-05 0.01901757388771485 7.896470373484752e-05']
['59866.35735182135 0.03409392550495255 6.772450104627082e-05 0.01504289200870067 4.0628635473708056e-05 0.0005320334714627294 1.436944037048748e-06 0.01504289200870067 4.0628635473708056e-05 0.01905103349625188 7.897654121586856e-05']
['59866.35738335932 0.03402630415295326 6.772088514903497e-05 0.01495827113405576 4.0593516272788445e-05 0.0005290406202430634 1.435701949399016e-06 0.014958271134055762 4.0593516272788445e-05 0.0190680330188975 7.89553788462694e-05']
['59866.35741489728 0.03411516013597503 6.776541404480517e-05 0.015009002269952724 4.0610651669268406e-05 0.0005308348671423231 1.436307990077155e-06 0.015009002269952726 4.0610651669268406e-05 0.0191061578660223 7.900238205058458e-05']
['59866.35744643524 0.03406180567377195 6.774771086327183e-05 0.014919650800296565 4.056002086324118e-05 0.0005276747053493668 1.434517291621164e-06 0.014919650800296565 4.056002086324118e-05 0.019142154873475384 7.896117792713099e-05']
['59866.35747797321 0.034051617144046954 6.774057158681276e-05 0.014952337888723289 4.0574754333904e-05 0.0005288307746156768 1.4350383815511387e-06 0.014952337888723289 4.0574754333904e-05 0.019099279255323665 7.89626223485819e-05']
['59866.35750951117 0.034098018036140494 6.774459804675851e-05 0.014936607544045367 4.057562683059108e-05 0.0005282744274796701 1.4350692398090456e-06 0.014936607544045369 4.057562683059108e-05 0.019161410492095125 7.896652491538589e-05']
['59866.35754104913 0.03415821732852706 6.778388740076315e-05 0.014903141206252728 4.056472831099904e-05 0.0005270907979048075 1.434683783527833e-06 0.014903141206252728 4.056472831099904e-05 0.01925507612227433 7.899463636288545e-05']
['59866.3575725871 0.03401877387629433 6.76655354225256e-05 0.015055027789870138 4.0638049916450455e-05 0.0005324626869208189 1.4372770048485055e-06 0.01505502778987014 4.0638049916450455e-05 0.01896374608642419 7.89308291165688e-05']
['59866.357604125056 0.03418869825289922 6.781737091261101e-05 0.015010717541043656 4.0611960242309456e-05 0.0005308955324474041 1.4363542713811284e-06 0.015010717541043656 4.0611960242309456e-05 0.019177980711855565 7.904762559509034e-05']
['59866.35763566302 0.03412428884610681 6.780186285770545e-05 0.014952690459734136 4.0580430229574014e-05 0.0005288432442643806 1.435239125296107e-06 0.014952690459734136 4.0580430229574014e-05 0.019171598386372675 7.901812402602596e-05']
['59866.35766720098 0.03401770329690409 6.771688648015128e-05 0.015051434888306493 4.064351693253067e-05 0.0005323356140221751 1.437470360989201e-06 0.015051434888306493 4.064351693253067e-05 0.018966268408597595 7.89776688894437e-05']
['59866.357698738946 0.034142883372109745 6.780189460201417e-05 0.014933823424369979 4.057303417168063e-05 0.0005281759593888929 1.4349775432576346e-06 0.01493382342436998 4.057303417168063e-05 0.019209059947739762 7.901435321205257e-05']
['59866.35773027691 0.0341607322261725 6.7791645591741e-05 0.01498301414986981 4.0582871255693946e-05 0.0005299157254150205 1.4353254589345967e-06 0.01498301414986981 4.0582871255693946e-05 0.019177718076302686 7.901061100505707e-05']
['59866.35776181487 0.034110640900784736 6.77674567301223e-05 0.015018640703459771 4.060354788168121e-05 0.0005311757569948362 1.4360567449862268e-06 0.015018640703459771 4.060354788168121e-05 0.019092000197324967 7.900048286085964e-05']
['59866.357793352836 0.03416843649984402 6.78333002432966e-05 0.014955047061177763 4.059660837447726e-05 0.0005289265919907474 1.435811310125309e-06 0.014955047061177762 4.059660837447726e-05 0.019213389438666253 7.905340747499692e-05']
['59866.3578248908 0.03420406521926634 6.780290670403587e-05 0.015018545112604325 4.060857888781809e-05 0.000531172376159912 1.4362346804296512e-06 0.015018545112604325 4.060857888781809e-05 0.019185520106662017 7.903347921485133e-05']
['59866.35785642876 0.03418795139891599 6.78046785497023e-05 0.014980045342042262 4.059462656723828e-05 0.0005298107253170551 1.4357412180323447e-06 0.014980045342042262 4.059462656723828e-05 0.01920790605687373 7.902783142261962e-05']
['59866.357887966726 0.03399385625600628 6.766941285281603e-05 0.015018249285428806 4.061774924379501e-05 0.0005311619134138488 1.4365590154260157e-06 0.015018249285428808 4.061774924379501e-05 0.01897560697057747 7.892370359706058e-05']
['59866.357919504684 0.03408692544440099 6.774192118351344e-05 0.014904733710730872 4.05826135973249e-05 0.0005271471212291613 1.4353163461339162e-06 0.014904733710730872 4.05826135973249e-05 0.01918219173367012 7.896781883794895e-05']
['59866.35795104265 0.033983536844522 6.765878155565537e-05 0.014970827572243413 4.059369313226307e-05 0.0005294847133997729 1.435708204523376e-06 0.014970827572243413 4.059369313226307e-05 0.01901270927227859 7.890220937155202e-05']
['59866.357982580615 0.03422130292182207 6.784666261791116e-05 0.014986500843768936 4.05995102568628e-05 0.0005300390419859304 1.43591394321996e-06 0.014986500843768938 4.05995102568628e-05 0.019234802078053136 7.90663636541214e-05']
['59866.358014118574 0.034089383820665675 6.77673476476199e-05 0.014878783916501872 4.053986641440447e-05 0.0005262293350016585 1.4338044738083517e-06 0.014878783916501872 4.053986641440447e-05 0.0192105999041638 7.89676780467245e-05']
['59866.35804565654 0.03412784207303174 6.776708946337073e-05 0.014998154414987292 4.060845599119269e-05 0.0005304512027557248 1.4362303338506686e-06 0.014998154414987294 4.060845599119269e-05 0.019129687658044445 7.90026905385198e-05']
['59866.358077194505 0.03406886850390957 6.774074627504278e-05 0.014908639183773472 4.0548835618175246e-05 0.0005272852490824596 1.4341216945007334e-06 0.014908639183773473 4.0548835618175246e-05 0.019160229320136096 7.894945709686368e-05']
['59866.358108732464 0.034210994007612815 6.786066576040948e-05 0.014950795267152634 4.058437794027066e-05 0.0005287762155382791 1.4353787470008334e-06 0.014950795267152634 4.058437794027066e-05 0.01926019874046018 7.90706120517904e-05']
['59866.35814027043 0.03387524393548308 6.758293658875792e-05 0.014893432945367081 4.0555350781034e-05 0.0005267474384139683 1.4343521212505155e-06 0.014893432945367081 4.0555350781034e-05 0.018981810990115998 7.881744600615265e-05']
['59866.35817180839 0.03414387292537752 6.777341938142682e-05 0.014922503431706816 4.057023217033063e-05 0.0005277755965470914 1.4348784427319895e-06 0.014922503431706816 4.057023217033063e-05 0.019221369493670707 7.898848088807185e-05']
['59866.35820334635 0.034127311291493025 6.775512131015287e-05 0.014985357874219079 4.0588282686486034e-05 0.0005299986177073385 1.4355168491478768e-06 0.014985357874219079 4.0588282686486034e-05 0.019141953417273948 7.89820559063363e-05']
['59866.35823488432 0.034100659684486195 6.77386629550073e-05 0.014869848638672231 4.0540532090917315e-05 0.0005259133141939947 1.4338280172989116e-06 0.014869848638672231 4.0540532090917315e-05 0.019230811045813964 7.894340505163667e-05']
['59866.35826642228 0.03416576501460888 6.777432830325475e-05 0.014959134097422921 4.057652005061006e-05 0.0005290711413287502 1.4351008310048876e-06 0.01495913409742292 4.057652005061006e-05 0.019206630917185958 7.899249050621784e-05']
['59866.35829796024 0.03404021302677629 6.768840609854035e-05 0.014866385471023475 4.0528469782284785e-05 0.0005257908296939824 1.4334014004002522e-06 0.014866385471023475 4.0528469782284785e-05 0.019173827555752816 7.889408839104795e-05']
['59866.35832949821 0.034029556780655106 6.768816530105726e-05 0.014968389350161666 4.058337100884137e-05 0.0005293984789338472 1.4353431340865386e-06 0.014968389350161666 4.058337100884137e-05 0.01906116743049344 7.892209908678632e-05']
['59866.35836103617 0.03403851600815984 6.771596021150746e-05 0.014985038828554616 4.060202691970965e-05 0.0005299873337752116 1.4360029519604425e-06 0.014985038828554616 4.060202691970965e-05 0.019053477179605222 7.895553088514627e-05']
['59866.35839257413 0.03411788446524314 6.77800716851653e-05 0.014941934977796622 4.0573610256469536e-05 0.0005284628469053382 1.4349979180891446e-06 0.014941934977796624 4.0573610256469536e-05 0.01917594948744651 7.899592373591207e-05']
['59866.35842411209 0.03402445991787459 6.768906167315413e-05 0.014994993689348809 4.06086266832417e-05 0.0005303394149536976 1.4362363708469678e-06 0.014994993689348807 4.06086266832417e-05 0.019029466228525783 7.893585770289035e-05']
['59866.35845565006 0.03394079615265323 6.763844982138364e-05 0.014918094946339177 4.0568930478941816e-05 0.000527619678272023 1.4348324048166762e-06 0.014918094946339179 4.0568930478941816e-05 0.019022701206314052 7.887203569355267e-05']
['59866.35848718802 0.03399627867990832 6.769244194272271e-05 0.014925729024300585 4.0567185583148004e-05 0.0005278896785483578 1.4347706917520618e-06 0.014925729024300585 4.0567185583148004e-05 0.019070549655607737 7.891744574114432e-05']
['59866.35851872598 0.03396877230393164 6.765291117094765e-05 0.014924862901139764 4.0562471141464827e-05 0.000527859045707831 1.4346039524858847e-06 0.014924862901139764 4.0562471141464827e-05 0.019043909402791874 7.888111595943797e-05']
['59866.35855026395 0.0339377109681996 6.766052203768852e-05 0.014909483933116054 4.055015086809367e-05 0.000527315125978803 1.4341682119509374e-06 0.014909483933116054 4.055015086809367e-05 0.019028227035083545 7.888130943282884e-05']
['59866.35858180191 0.03413444435832528 6.779060711689144e-05 0.014934862728423861 4.058780086879134e-05 0.0005282127172505708 1.4354998083328145e-06 0.014934862728423863 4.058780086879134e-05 0.019199581629901416 7.901225216788465e-05']
['59866.35861333987 0.03403520367126834 6.771451908057684e-05 0.014883047456154779 4.054987363332357e-05 0.0005263801268707315 1.4341584067767022e-06 0.01488304745615478 4.054987363332357e-05 0.01915215621511356 7.89274878986549e-05']
['59866.35864487784 0.03413021923166543 6.775325452108438e-05 0.014923405546236152 4.054124904299376e-05 0.0005278075023218867 1.4338533742915619e-06 0.014923405546236152 4.054124904299376e-05 0.01920681368542928 7.895629406301238e-05']
['59866.358676415795 0.03401100542603836 6.771784024500213e-05 0.014858435991836283 4.052903692136824e-05 0.0005255096743811718 1.4334214588421528e-06 0.014858435991836285 4.052903692136824e-05 0.01915256943420208 7.891963457354109e-05']
['59866.35870795376 0.034059026949926095 6.773771821027278e-05 0.01494935344498597 4.057246753384671e-05 0.000528725221510527 1.43495750254381e-06 0.014949353444985969 4.057246753384671e-05 0.019109673504940125 7.895899942450744e-05']
['59866.35873949173 0.0342117865170361 6.782063582154645e-05 0.015008117731564878 4.0613027011784925e-05 0.0005308035829963719 1.4363920006333862e-06 0.01500811773156488 4.0613027011784925e-05 0.019203668785471223 7.905097473338833e-05']
['59866.358771029685 0.03406147567476623 6.773845963550744e-05 0.014966408879189545 4.059546097659579e-05 0.0005293284341016554 1.4357707292265247e-06 0.014966408879189545 4.059546097659579e-05 0.019095066795576685 7.897145285287324e-05']
['59866.35880256765 0.03405086720032677 6.770797717177609e-05 0.014871607404604067 4.054794264099579e-05 0.0005259755178143933 1.4340901118935825e-06 0.014871607404604067 4.054794264099579e-05 0.0191792597957227 7.892088332698283e-05']
['59866.35883410562 0.03389093347313459 6.759126474580297e-05 0.014911667866633128 4.0566808910073647e-05 0.0005273923668264978 1.4347573696672365e-06 0.014911667866633128 4.0566808910073647e-05 0.018979265606501462 7.883048303215995e-05']
['59866.358865643575 0.034098024521798054 6.77703759863512e-05 0.014868425304216766 4.0531303101265693e-05 0.0005258629740352702 1.4335016085605118e-06 0.014868425304216764 4.0531303101265693e-05 0.01922959921758129 7.896588119193046e-05']
['59866.35889718154 0.03394550059843524 6.764544057382809e-05 0.014978647467672572 4.059036471358957e-05 0.0005297612856246646 1.4355904857934723e-06 0.014978647467672572 4.059036471358957e-05 0.01896685313076267 7.888905714995919e-05']
['59866.3589287195 0.034005480759189646 6.767551202689193e-05 0.014966818913650884 4.061301856492437e-05 0.0005293429361041799 1.436391701886806e-06 0.014966818913650886 4.061301856492437e-05 0.019038661845538762 7.892649875078005e-05']
['59866.358960257465 0.03401802165177115 6.77123913891394e-05 0.014911197169061237 4.055979982713925e-05 0.0005273757193053271 1.4345094740682252e-06 0.014911197169061235 4.055979982713925e-05 0.01910682448270992 7.893076275859499e-05']
['59866.35899179543 0.03401801212303837 6.770459418411046e-05 0.014885470507940255 4.055049715940179e-05 0.0005264658247971818 1.4341804595005902e-06 0.014885470507940257 4.055049715940179e-05 0.019132541615098114 7.891929354416281e-05']
['59866.35902333339 0.03406836178743441 6.773790811234404e-05 0.015058901083440856 4.0648221235257146e-05 0.0005325996766581135 1.4376367416631385e-06 0.015058901083440856 4.0648221235257146e-05 0.01900946070399355 7.899811443969263e-05']
['59866.359054871355 0.03404102845620293 6.770752253108404e-05 0.01493546536806572 4.0574026279076064e-05 0.000528234031267883 1.4350126318789815e-06 0.01493546536806572 4.0574026279076064e-05 0.019105563088137212 7.893389776130663e-05']
['59866.35908640932 0.03404478940792631 6.770832621286578e-05 0.01497206430876612 4.060102115486368e-05 0.0005295284540066377 1.435967380305593e-06 0.014972064308766122 4.060102115486368e-05 0.019072725099160186 7.894846646620525e-05']
['59866.35911794728 0.03404863718616366 6.770143082347052e-05 0.014945606522484845 4.057719677319382e-05 0.0005285927012355412 1.4351247651702894e-06 0.014945606522484847 4.057719677319382e-05 0.019103030663678813 7.893030237820995e-05']
['59866.359149485244 0.0339535771472004 6.768273606629115e-05 0.014875168622974236 4.0534961353437166e-05 0.0005261014701492915 1.4336309927641043e-06 0.014875168622974238 4.0534961353437166e-05 0.019078408524226168 7.889255892252369e-05']
['59866.3591810232 0.03391143675855366 6.76278094724835e-05 0.01486583377830375 4.054315660021092e-05 0.0005257713175554464 1.4339208403271935e-06 0.01486583377830375 4.054315660021092e-05 0.01904560298024991 7.884965542826269e-05']
['59866.35921256117 0.03400649504262445 6.771770058406127e-05 0.014912465324095446 4.0580061373449645e-05 0.0005274205711147275 1.435226079679333e-06 0.014912465324095448 4.0580061373449645e-05 0.019094029718529002 7.894573043214884e-05']
['59866.359244099134 0.033946842329715544 6.764310151033279e-05 0.014885396029680545 4.054381917000239e-05 0.0005264631906675849 1.4339442739399613e-06 0.014885396029680547 4.054381917000239e-05 0.019061446300035 7.886311212998786e-05']
['59866.35927563709 0.03402337401881051 6.773196776330377e-05 0.014894876688327624 4.056612934958556e-05 0.000526798500375907 1.4347333351315011e-06 0.014894876688327624 4.056612934958556e-05 0.019128497330482885 7.895080941634815e-05']
['59866.35930717506 0.03403542167872688 6.772307765604747e-05 0.014933037283573947 4.057238644555964e-05 0.0005281481553458584 1.4349546346323177e-06 0.014933037283573947 4.057238644555964e-05 0.019102384395152938 7.894639820216543e-05']
['59866.359338713024 0.034013353826037096 6.770616140747904e-05 0.014946129668796666 4.057608346878513e-05 0.0005286112037514271 1.4350853900814428e-06 0.014946129668796666 4.057608346878513e-05 0.01906722415724043 7.893378770970909e-05']
['59866.35937025098 0.034034064716995945 6.770283727915571e-05 0.01497781889470594 4.0607602291746925e-05 0.0005297319808505864 1.4362001404091779e-06 0.01497781889470594 4.0607602291746925e-05 0.019056245822290006 7.89471439605799e-05']
['59866.35940178895 0.03407092617255398 6.77494892388572e-05 0.014845461760859553 4.051970357326305e-05 0.0005250508048272246 1.4330913591784774e-06 0.014845461760859553 4.051970357326305e-05 0.019225464411694426 7.894200193680886e-05']
['59866.35943332691 0.03406080506811206 6.772200323572884e-05 0.014867032898161192 4.0532939882313936e-05 0.000525813727744929 1.4335594978481977e-06 0.014867032898161192 4.0532939882313936e-05 0.019193772169950864 7.892521104034719e-05']
['59866.35946486487 0.0339743389659245 6.76554218012548e-05 0.014917644997035339 4.057426937510666e-05 0.0005276037645707237 1.435021229642296e-06 0.014917644997035337 4.057426937510666e-05 0.019056693968889163 7.888933663321947e-05']
['59866.35949640284 0.03390938757707343 6.763718293113496e-05 0.01497620502325898 4.060071765909914e-05 0.0005296749018242978 1.435956646338674e-06 0.01497620502325898 4.060071765909914e-05 0.018933182553814452 7.888730436067453e-05']
['59866.3595279408 0.03389946672422848 6.760410962922059e-05 0.014898442680028953 4.05457051599231e-05 0.0005269246215328606 1.4340109771885174e-06 0.014898442680028951 4.05457051599231e-05 0.019001024044199528 7.883064027188343e-05']
['59866.35955947876 0.03394803333158091 6.763490267797455e-05 0.014976366469953824 4.0593053155101634e-05 0.0005296806118330823 1.4356855699614408e-06 0.014976366469953824 4.0593053155101634e-05 0.018971666861627087 7.888140480944793e-05']
['59866.35959101673 0.034033707976638246 6.76979115270733e-05 0.014820713678310149 4.049853060773372e-05 0.0005241755204561614 1.4323425187064982e-06 0.014820713678310149 4.049853060773372e-05 0.019212994298328095 7.888686967114989e-05']
['59866.359622554686 0.03402781160566679 6.771151437330669e-05 0.014853719399824236 4.052618843109972e-05 0.0005253428590626685 1.4333207141073564e-06 0.014853719399824236 4.052618843109972e-05 0.019174092205842555 7.891274375840392e-05']
['59866.35965409265 0.034013982490856035 6.769535408959126e-05 0.01493937827436597 4.056615951127831e-05 0.0005283724220188919 1.4347344018831663e-06 0.014939378274365969 4.056615951127831e-05 0.019074604216490064 7.891941625993958e-05']
['59866.35968563061 0.03399652727769563 6.768157082859181e-05 0.015022693553640889 4.061912394750247e-05 0.0005313190972481552 1.4366076356238664e-06 0.015022693553640887 4.061912394750247e-05 0.018973833724054742 7.893483552962063e-05']
['59866.359717168576 0.03388210299749555 6.758627698202809e-05 0.014874341729881679 4.0547605949026446e-05 0.0005260722247886051 1.4340782038510892e-06 0.01487434172988168 4.0547605949026446e-05 0.019007761267613867 7.88163256215928e-05']
['59866.35974870654 0.034023876759759264 6.770785707688424e-05 0.0148560013171492 4.0525006033508493e-05 0.0005254235653786674 1.4332788953470577e-06 0.014856001317149202 4.0525006033508493e-05 0.01916787544261006 7.890899837128642e-05']
['59866.3597802445 0.033976702767063785 6.766231842614521e-05 0.014886373841538668 4.0544319708810604e-05 0.0005264977736877258 1.4339619768789694e-06 0.014886373841538666 4.0544319708810604e-05 0.01909032892552512 7.887985291220641e-05']
['59866.359811782466 0.03392723309970754 6.762552588975598e-05 0.01491311085345381 4.0559030291749946e-05 0.0005274434020454595 1.434482257321316e-06 0.014913110853453808 4.0559030291749946e-05 0.019014122246253734 7.885586021389372e-05']
['59866.35984332043 0.034060449884737956 6.770083601819043e-05 0.014843751939353342 4.0505030589000245e-05 0.0005249903322617761 1.432572408517292e-06 0.014843751939353342 4.0505030589000245e-05 0.019216697945384616 7.889271639750881e-05']
['59866.35987485839 0.033922892340569465 6.762826024867048e-05 0.014820868663935206 4.051176913261659e-05 0.0005241810019513473 1.4328107357452435e-06 0.014820868663935206 4.051176913261659e-05 0.019102023676634258 7.883390782218226e-05']
['59866.359906396356 0.03393285514338421 6.764489412583993e-05 0.014870102725571663 4.054688034804933e-05 0.0005259223006797768 1.4340525409661511e-06 0.014870102725571661 4.054688034804933e-05 0.01906275241781255 7.886622348797438e-05']
['59866.359937934314 0.033990368431222766 6.765128292712907e-05 0.014832337479849845 4.052242264248128e-05 0.000524586628338953 1.4331875265799643e-06 0.014832337479849845 4.052242264248128e-05 0.01915803095137292 7.885913275266438e-05']
['59866.35996947228 0.033931015196341 6.766636856206518e-05 0.01485461072571296 4.051528408232854e-05 0.0005253743832673564 1.4329350516611048e-06 0.014854610725712957 4.051528408232854e-05 0.01907640447062804 7.886840735458671e-05']
['59866.360001010245 0.03396157246799 6.765563488774833e-05 0.014871234488957627 4.053853366330606e-05 0.0005259623286213961 1.4337573373805243e-06 0.014871234488957627 4.053853366330606e-05 0.019090337979032375 7.887114582428296e-05']
['59866.360032548204 0.033930424073244314 6.764874057317393e-05 0.014844323666907785 4.051079226576146e-05 0.0005250105529876408 1.4327761861477466e-06 0.014844323666907785 4.051079226576146e-05 0.01908610040633653 7.88509758413697e-05']
['59866.36006408617 0.03395017739253311 6.764329386422914e-05 0.014883779564505798 4.055844687645004e-05 0.0005264060199069411 1.4344616232260149e-06 0.014883779564505798 4.055844687645004e-05 0.019066397828027312 7.887079825786145e-05']
['59866.360095624135 0.03393680661499518 6.763277464615495e-05 0.014905293515025527 4.057977352164047e-05 0.0005271669202559743 1.4352158990041534e-06 0.014905293515025527 4.057977352164047e-05 0.01903151309996965 7.887274703853806e-05']
['59866.360127162094 0.033936989955288335 6.762908557918417e-05 0.0149350214087522 4.056929290299378e-05 0.0005282183294191545 1.4348452229454242e-06 0.014935021408752202 4.056929290299378e-05 0.019001968546536133 7.886419176613374e-05']
['59866.36015870006 0.03393033309422705 6.763174149770052e-05 0.014976805342834425 4.0592758526284224e-05 0.000529696133786046 1.4356751495986255e-06 0.014976805342834425 4.0592758526284224e-05 0.018953527751392626 7.887854272731594e-05']
['59866.36019023802 0.03396071191577946 6.766779885077724e-05 0.014983932975277763 4.05988033601006e-05 0.0005299482222162459 1.4358889418613022e-06 0.014983932975277763 4.05988033601006e-05 0.018976778940501694 7.891257083368508e-05']
['59866.36022177598 0.034030687123278225 6.772216302427324e-05 0.014814857340857785 4.050797522741836e-05 0.0005239683948886153 1.4326765537972613e-06 0.014814857340857785 4.050797522741836e-05 0.019215829782420438 7.891253019458559e-05']
['59866.36025331395 0.03400389464405965 6.768417901510367e-05 0.014922859002609645 4.054904242411472e-05 0.0005277881722952702 1.4341290087646284e-06 0.014922859002609645 4.054904242411472e-05 0.019081035641450007 7.890103250567291e-05']
['59866.36028485191 0.033993166271364124 6.765280541116145e-05 0.014841598032957891 4.0537924726912944e-05 0.0005249141534062664 1.4337358006611926e-06 0.014841598032957891 4.0537924726912944e-05 0.019151568238406233 7.886840572222401e-05']
['59866.36031638987 0.03387045633204511 6.758561504710737e-05 0.014864534691711829 4.054218733382978e-05 0.0005257253717659778 1.4338865595414753e-06 0.014864534691711829 4.054218733382978e-05 0.019005921640333278 7.881297047508826e-05']
['59866.36034792784 0.033884090712356686 6.760416944887852e-05 0.014876767512075399 4.054678890738426e-05 0.0005261580192834928 1.4340493069141856e-06 0.014876767512075399 4.054678890738426e-05 0.019007323200281288 7.883124899158113e-05']
['59866.3603794658 0.03397851078490798 6.766186721931344e-05 0.014873726019367126 4.053087260021836e-05 0.0005260504484837374 1.4334863827005808e-06 0.014873726019367126 4.053087260021836e-05 0.019104784765540856 7.887255485489952e-05']
['59866.36041100376 0.03394162859942035 6.766485931658505e-05 0.01496093475157698 4.057925705698025e-05 0.0005291348264419542 1.435197632803352e-06 0.01496093475157698 4.057925705698025e-05 0.01898069384784337 7.889999549828711e-05']
['59866.36044254172 0.0338152507769146 6.754055306461642e-05 0.01489668463062358 4.056564696845648e-05 0.0005268624432544017 1.434716274389024e-06 0.01489668463062358 4.056564696845648e-05 0.01891856614629102 7.878640759828886e-05']
['59866.36047407969 0.033806153191790665 6.75500083902239e-05 0.014866929048976588 4.0537126385202496e-05 0.0005258100548313588 1.4337075650990827e-06 0.014866929048976588 4.0537126385202496e-05 0.018939224142814078 7.877983402552457e-05']
['59866.36050561765 0.033877987204314584 6.760290427014643e-05 0.014868672714218273 4.0537865553131164e-05 0.0005258717243740947 1.4337337078167766e-06 0.014868672714218273 4.0537865553131164e-05 0.01900931449009631 7.88255745894841e-05']
['59866.36053715561 0.03388024887941993 6.759364986951478e-05 0.01489454664501383 4.053774650997847e-05 0.0005267868274815015 1.4337294975265115e-06 0.01489454664501383 4.053774650997847e-05 0.0189857022344061 7.881757668686489e-05']
['59866.36056869358 0.033959870618429 6.763936978855864e-05 0.01496916670269198 4.0564266332707e-05 0.0005294259721555638 1.4346674443881042e-06 0.014969166702691982 4.0564266332707e-05 0.01899070391573702 7.887042568988813e-05']
['59866.36060023154 0.0339703329919872 6.768956627998937e-05 0.014930812243020772 4.057304281276792e-05 0.0005280694606341656 1.4349778488735804e-06 0.014930812243020772 4.057304281276792e-05 0.019039520748966428 7.891799025735369e-05']
['59866.3606317695 0.033889853242617236 6.760112408559485e-05 0.014903711815775773 4.055749949332705e-05 0.0005271109790884003 1.4344281164022313e-06 0.014903711815775773 4.055749949332705e-05 0.018986141426841463 7.883414706069455e-05']
['59866.36066330747 0.033859427590123815 6.757790375714012e-05 0.014788687657746316 4.04744000775447e-05 0.0005230428316827622 1.4314890757822735e-06 0.014788687657746316 4.04744000775447e-05 0.019070739932377498 7.877150587519858e-05']
['59866.360694845425 0.03386739329673954 6.757537359623763e-05 0.014961290941596853 4.058234229379449e-05 0.0005291474240869192 1.4353067507343733e-06 0.014961290941596853 4.058234229379449e-05 0.018906102355142687 7.88248540926134e-05']
['59866.36072638339 0.033921502624481265 6.762160884069564e-05 0.014795648857058839 4.0489305616606795e-05 0.0005232890337450813 1.4320162513869805e-06 0.014795648857058839 4.0489305616606795e-05 0.019125853767422426 7.88166597333269e-05']
['59866.36075792136 0.033900266893271906 6.762425414238364e-05 0.014947916032173814 4.0586408645927576e-05 0.0005286743834317896 1.4354505685215583e-06 0.014947916032173813 4.0586408645927576e-05 0.018952350861098095 7.886885516531805e-05']
['59866.360789459315 0.03397952224707514 6.767879899300557e-05 0.014899171304072692 4.055643010933118e-05 0.0005269503913369087 1.43439029468023e-06 0.014899171304072692 4.055643010933118e-05 0.01908035094300245 7.890021455198152e-05']
['59866.36082099728 0.0340092085760499 6.771383364158993e-05 0.014849113432716244 4.0529834609073494e-05 0.0005251799562997894 1.4334496712735605e-06 0.014849113432716244 4.0529834609073494e-05 0.01916009514333366 7.891660636317155e-05']
['59866.36085253525 0.03397181969935719 6.765668937882736e-05 0.014850656837352719 4.052063981181623e-05 0.0005252345430724752 1.4331244718437336e-06 0.014850656837352719 4.052063981181623e-05 0.019121162862004472 7.886285480796442e-05']
['59866.360884073205 0.03406240166609788 6.774138084687068e-05 0.014880554368633453 4.052979988968983e-05 0.0005262919519368249 1.4334484433265534e-06 0.014880554368633453 4.052979988968983e-05 0.019181847297464423 7.894022648902826e-05']
['59866.36091561117 0.033988203477081466 6.767893111829065e-05 0.014980445411244799 4.057653420376735e-05 0.0005298248748706468 1.4351013315704304e-06 0.014980445411244797 4.057653420376735e-05 0.01900775806583667 7.891066369828499e-05']
['59866.36094714913 0.03380920210463057 6.753687320446114e-05 0.014865848212002764 4.0538079782589576e-05 0.0005257718280431231 1.4337412846339461e-06 0.014865848212002764 4.0538079782589576e-05 0.018943353892627808 7.876906216716725e-05']
['59866.360978687095 0.03395793876158818 6.765126986485474e-05 0.014889324873455914 4.055257668567e-05 0.0005266021450914707 1.4342540076972291e-06 0.014889324873455916 4.055257668567e-05 0.019068613888132267 7.887462069750035e-05']
['59866.36101022506 0.033911707869120546 6.76192434314339e-05 0.014843584529912648 4.050613658533517e-05 0.0005249844113639968 1.432611525135902e-06 0.014843584529912648 4.050613658533517e-05 0.019068123339207897 7.882327818169797e-05']
['59866.36104176302 0.03389684996295461 6.758298309460352e-05 0.014933238766765135 4.057670283663033e-05 0.0005281552813560423 1.4351072957379219e-06 0.014933238766765134 4.057670283663033e-05 0.01896361119618948 7.8828474658956e-05']
['59866.361073300985 0.03386166756069143 6.758136880080526e-05 0.014861532912844465 4.054294757686012e-05 0.0005256192055560201 1.4339134476384154e-06 0.014861532912844465 4.054294757686012e-05 0.019000134647846965 7.880972025842042e-05']
['59866.36110483895 0.03382050334360778 6.757184939302694e-05 0.014832560991200646 4.051401856572633e-05 0.0005245945334359124 1.4328902931671477e-06 0.014832560991200647 4.051401856572633e-05 0.018987942352407135 7.878667736830849e-05']
['59866.36113637691 0.03391903863349467 6.762798317010671e-05 0.014783524579931056 4.04894700678235e-05 0.0005228602251592363 1.4320220676589886e-06 0.014783524579931057 4.04894700678235e-05 0.019135514053563615 7.882221320179617e-05']
['59866.361167914874 0.03392180153375922 6.760134822488319e-05 0.014862213250140331 4.052245263740441e-05 0.0005256432675657105 1.4331885874333606e-06 0.01486221325014033 4.052245263740441e-05 0.019059588283618888 7.88163146155198e-05']
['59866.36119945283 0.033844556638874465 6.758901047684702e-05 0.014860936860549387 4.053309309673397e-05 0.0005255981245184416 1.4335649166998202e-06 0.014860936860549385 4.053309309673397e-05 0.018983619778325078 7.881120461728674e-05']
['59866.3612309908 0.033878818927364364 6.759616324127474e-05 0.014928015002994137 4.0568219481746195e-05 0.0005279705285058871 1.4348072584348524e-06 0.014928015002994137 4.0568219481746195e-05 0.01895080392437023 7.883540902957372e-05']
['59866.361262528764 0.033866160314769224 6.758932603935466e-05 0.014869215016725326 4.053555407756072e-05 0.0005258909044017944 1.4336519560916938e-06 0.014869215016725326 4.053555407756072e-05 0.018996945298043896 7.881274096761916e-05']
['59866.36129406672 0.03398950274964362 6.769093571725104e-05 0.014920147110326454 4.0560149170499423e-05 0.0005276922587259364 1.4345218295621382e-06 0.014920147110326454 4.0560149170499423e-05 0.01906935563931717 7.891253689376726e-05']
['59866.36132560469 0.033908424053041765 6.75960969676101e-05 0.01484663826103901 4.0545747033618333e-05 0.0005250924150092489 1.4340124581675355e-06 0.014846638261039012 4.0545747033618333e-05 0.019061785792002753 7.882379036666986e-05']
['59866.361357142654 0.03374950330688151 6.751696511522013e-05 0.014793256124061955 4.04736831617693e-05 0.000523204408126425 1.43146372007351e-06 0.014793256124061955 4.04736831617693e-05 0.01895624718281956 7.871886436585033e-05']
['59866.36138868061 0.033898884562587675 6.763261668943814e-05 0.014837740687987381 4.0513807062861985e-05 0.0005247777277353181 1.4328828127835171e-06 0.01483774068798738 4.0513807062861985e-05 0.019061143874600298 7.883869229627844e-05']
['59866.36142021858 0.03392930855227142 6.76183445216788e-05 0.014871029280922763 4.0536018389344504e-05 0.0005259550708718159 1.4336683777618105e-06 0.014871029280922763 4.0536018389344504e-05 0.019058279271348656 7.883786718775265e-05']
['59866.36145175654 0.03396447484274725 6.764601540647668e-05 0.014847204611838001 4.0520077032131716e-05 0.0005251124455712896 1.4331045675840307e-06 0.014847204611838001 4.0520077032131716e-05 0.01911727023090925 7.885340856971986e-05']
['59866.3614832945 0.033896117604682204 6.759227082885127e-05 0.01493489795194462 4.056705937414576e-05 0.0005282139630277801 1.4347662280217127e-06 0.01493489795194462 4.056705937414576e-05 0.018961219652737584 7.883147456483512e-05']
['59866.36151483247 0.03388332442708127 6.76102553174692e-05 0.014903188248858732 4.055480664079965e-05 0.0005270924616966478 1.4343328762265085e-06 0.014903188248858732 4.055480664079965e-05 0.018980136178222543 7.884059211958025e-05']
['59866.36154637043 0.033921465066132535 6.764521582577866e-05 0.014826460336579918 4.051073800583201e-05 0.0005243787669161378 1.4327742670953056e-06 0.014826460336579918 4.051073800583201e-05 0.01909500472955262 7.884792399228617e-05']
['59866.36157790839 0.03385481067791786 6.757392697496312e-05 0.014832569531976553 4.050938749612222e-05 0.0005245948355040687 1.432726502585082e-06 0.014832569531976553 4.050938749612222e-05 0.019022241145941306 7.878607797148322e-05']
['59866.36160944636 0.0338829221455872 6.760458697069832e-05 0.01482944537174124 4.0522855200096905e-05 0.0005244843409386329 1.4332028251761196e-06 0.01482944537174124 4.0522855200096905e-05 0.01905347677384596 7.88192994960418e-05']
['59866.361640984316 0.03399459913510824 6.768836087577077e-05 0.014912150894550382 4.0552601757651074e-05 0.0005274094504444272 1.434254894437167e-06 0.01491215089455038 4.0552601757651074e-05 0.019082448240557857 7.890644908601084e-05']
['59866.36167252228 0.03399808326223669 6.770254913178933e-05 0.014952834846582434 4.058069774507243e-05 0.0005288483509045194 1.435248586721424e-06 0.014952834846582436 4.058069774507243e-05 0.019045248415654255 7.893306144081372e-05']
['59866.36170406024 0.03382347523655117 6.756616922102563e-05 0.014814800569333781 4.0502468599968934e-05 0.0005239663870066881 1.432481796690963e-06 0.014814800569333781 4.0502468599968934e-05 0.019008674667217392 7.877586677337001e-05']
['59866.361735598206 0.03388238143286422 6.759891637149798e-05 0.014786609290570114 4.0492151191371744e-05 0.0005229693244806173 1.4321168930069315e-06 0.014786609290570116 4.0492151191371744e-05 0.019095772142294104 7.879865355896435e-05']
['59866.36176713617 0.03386700207614727 6.756486500582151e-05 0.014799635225327913 4.048870364948809e-05 0.0005234300226817497 1.4319949611553095e-06 0.014799635225327913 4.048870364948809e-05 0.019067366850819355 7.876767170908985e-05']
['59866.36179867413 0.03385865700275736 6.758754070423136e-05 0.014845080845199261 4.053135749777631e-05 0.0005250373326916165 1.4335035324435232e-06 0.014845080845199261 4.053135749777631e-05 0.019013576157558096 7.880905150462527e-05']
['59866.361830212096 0.03398036676485443 6.769397295654677e-05 0.014894971602027181 4.05370228959461e-05 0.0005268018572613407 1.433703904915369e-06 0.014894971602027181 4.05370228959461e-05 0.019085395162827246 7.890325848726492e-05']
['59866.36186175006 0.03384288102161744 6.759458527807578e-05 0.014917903736104353 4.054788302852126e-05 0.0005276129155933469 1.4340880035335843e-06 0.014917903736104353 4.054788302852126e-05 0.018924977285513088 7.882359276897812e-05']
['59866.36189328802 0.033917624389797535 6.762593258890045e-05 0.014879537537615443 4.0532120128191036e-05 0.0005262559888962015 1.4335305049769134e-06 0.014879537537615445 4.0532120128191036e-05 0.01903808685218209 7.884237135325533e-05']
['59866.361924825986 0.03372081586571177 6.748532495643906e-05 0.014810449966921635 4.0502735515413053e-05 0.0005238125159223947 1.4324912368937007e-06 0.014810449966921635 4.0502735515413053e-05 0.01891036589879013 7.870667486755922e-05']
['59866.361956363944 0.0338784513003299 6.76038052991655e-05 0.014886601730742223 4.053135856245227e-05 0.0005265058336195532 1.4335035700987324e-06 0.014886601730742225 4.053135856245227e-05 0.018991849569587674 7.882300119790892e-05']
['59866.36198790191 0.033758513828054 6.753747831202219e-05 0.014856108635643605 4.053209408867357e-05 0.0005254273609939718 1.4335295840173755e-06 0.014856108635643605 4.053209408867357e-05 0.01890240519241039 7.876650067103371e-05']
['59866.362019439875 0.03390153363456009 6.762313748959881e-05 0.014865852929363257 4.054495903206119e-05 0.0005257719948856211 1.4339845883135394e-06 0.014865852929363259 4.054495903206119e-05 0.01903568070519683 7.88465752385524e-05']
['59866.362050977834 0.03384554226494795 6.757366863490718e-05 0.014751057243259038 4.046417099888858e-05 0.000521711928021374 1.431127296130852e-06 0.014751057243259038 4.046417099888858e-05 0.019094485021688916 7.876261694108148e-05']
['59866.3620825158 0.033813338203019495 6.757545642779418e-05 0.014808931162852411 4.050382149232539e-05 0.0005237587992167936 1.4325296454700746e-06 0.014808931162852411 4.050382149232539e-05 0.019004407040167086 7.878452809344529e-05']
['59866.36211405376 0.03373661609383329 6.751769608859587e-05 0.014807424590627748 4.048664325535397e-05 0.0005237055151241979 1.4319220896194953e-06 0.014807424590627746 4.048664325535397e-05 0.018929191503205545 7.872615554692287e-05']
['59866.362145591724 0.03381780001835769 6.75662145190505e-05 0.014818355794249595 4.051132103335377e-05 0.0005240921273665005 1.4327948874757605e-06 0.014818355794249597 4.051132103335377e-05 0.018999444224108097 7.878045745171706e-05']
['59866.36217712969 0.03388422141727802 6.760718726969962e-05 0.014825507444929765 4.051746449882207e-05 0.0005243450652680595 1.4330121681195369e-06 0.014825507444929767 4.051746449882207e-05 0.01905871397234825 7.881875855361806e-05']
['59866.36220866765 0.03375165091606076 6.75197030758942e-05 0.014762723566855615 4.046582856889794e-05 0.0005221245398142862 1.4311859206776322e-06 0.014762723566855615 4.046582856889794e-05 0.018988927349205147 7.871717465219616e-05']
['59866.36224020561 0.033773065173253604 6.749000273925065e-05 0.014853221404610024 4.0527090574682195e-05 0.0005253252460848956 1.4333526209096962e-06 0.014853221404610024 4.0527090574682195e-05 0.018919843768643578 7.872322109893976e-05']
['59866.36227174358 0.0338444847378694 6.757054201264256e-05 0.014832033998803212 4.0511545807898585e-05 0.0005245758948925738 1.432802837249069e-06 0.014832033998803212 4.0511545807898585e-05 0.019012450739066187 7.87842845472862e-05']
['59866.36230328154 0.033810555532363014 6.753730414538915e-05 0.014835440883446486 4.0519391025174794e-05 0.0005246963887884673 1.4330803050511e-06 0.014835440883446484 4.0519391025174794e-05 0.01897511464891653 7.87598152631011e-05']
['59866.3623348195 0.03384421352133681 6.758910726237988e-05 0.01479157550289246 4.049132726842294e-05 0.0005231449683116273 1.432087752693592e-06 0.014791575502892462 4.049132726842294e-05 0.01905263801844435 7.87898153601341e-05']
['59866.36236635746 0.03387386257841213 6.760141148861633e-05 0.014790695588900803 4.0483652948263714e-05 0.0005231138477202344 1.431816329140656e-06 0.014790695588900803 4.0483652948263714e-05 0.019083166989511326 7.879642752871914e-05']
['59866.36239789543 0.0338071636760492 6.756676795817387e-05 0.014892639903770752 4.055402527240458e-05 0.0005267193903050497 1.4343052409726305e-06 0.014892639903770752 4.055402527240458e-05 0.018914523772278445 7.880290031533446e-05']
['59866.36242943339 0.033837412044983015 6.756321649988729e-05 0.01477895389795206 4.048486324372645e-05 0.0005226985703525122 1.431859134586322e-06 0.01477895389795206 4.048486324372645e-05 0.019058458147030954 7.876428362953526e-05']
['59866.36246097135 0.033831981269615057 6.755039892131306e-05 0.014885402617072429 4.054338563552386e-05 0.0005264634236489138 1.4339289407943482e-06 0.014885402617072427 4.054338563552386e-05 0.01894657865254263 7.878338983072088e-05']
['59866.36249250932 0.033801000358395464 6.753235264545231e-05 0.014835984327746382 4.0534667737566915e-05 0.0005247156091988281 1.4336206082269664e-06 0.014835984327746382 4.0534667737566915e-05 0.01896501603064908 7.876343023526006e-05']
['59866.36252404728 0.03380494312153473 6.751823765191646e-05 0.014835022463589614 4.051020433549456e-05 0.0005246815902132431 1.432755392368153e-06 0.014835022463589614 4.051020433549456e-05 0.018969920657945116 7.873873932775524e-05']
['59866.36255558524 0.03390422667000395 6.75991747760052e-05 0.01481185139543484 4.049281615493667e-05 0.0005238620813168984 1.4321404112821168e-06 0.01481185139543484 4.049281615493667e-05 0.019092375274569112 7.879921694125138e-05']
['59866.36258712321 0.033709534204964996 6.747304053786443e-05 0.01485979776794454 4.052943350346151e-05 0.0005255578373587304 1.433435485064483e-06 0.01485979776794454 4.052943350346151e-05 0.018849736437020453 7.870988616136988e-05']
['59866.362618661165 0.033798778685420236 6.756171581333459e-05 0.014807604782467402 4.0509987487290995e-05 0.0005237118881068614 1.43274772293182e-06 0.0148076047824674 4.0509987487290995e-05 0.018991173902952838 7.877591338640421e-05']
['59866.36265019913 0.03387168769301828 6.758707594287135e-05 0.014816906353506121 4.0500303779926014e-05 0.0005240408638867132 1.432405231844133e-06 0.014816906353506121 4.0500303779926014e-05 0.019054781339512158 7.87926864675507e-05']
['59866.3626817371 0.03385527606985077 6.75874080584504e-05 0.014817149948641806 4.0509790452566996e-05 0.0005240494793022592 1.432740754253979e-06 0.014817149948641804 4.0509790452566996e-05 0.019038126121208962 7.879784800722906e-05']
['59866.362713275055 0.03388700285732627 6.761375331369494e-05 0.014882349666102902 4.053806295909604e-05 0.0005263554475960655 1.433740689624578e-06 0.014882349666102902 4.053806295909604e-05 0.01900465319122337 7.88349807232857e-05']
['59866.36274481302 0.03386051199020185 6.759041713385635e-05 0.014829158581105846 4.051250131877636e-05 0.0005244741977947983 1.4328366315333748e-06 0.014829158581105844 4.051250131877636e-05 0.019031353409096 7.880182264029531e-05']
['59866.36277635099 0.033832505717369024 6.755174335897106e-05 0.014855499866805717 4.0526341636427296e-05 0.0005254058302006939 1.4333261326373989e-06 0.014855499866805717 4.0526341636427296e-05 0.018977005850563305 7.877577290810108e-05']
['59866.362807888945 0.033827519117014614 6.755399635250513e-05 0.014773944938709942 4.0497937046040407e-05 0.0005225214146584835 1.432321525755938e-06 0.01477394493870994 4.0497937046040407e-05 0.019053574178304673 7.876309623281279e-05']
['59866.36283942691 0.03393437486553076 6.761922176643482e-05 0.014900735871341513 4.0546461270051426e-05 0.0005270057265846049 1.4340377191139495e-06 0.014900735871341511 4.0546461270051426e-05 0.01903363899418925 7.884398945907083e-05']
['59866.36287096487 0.03383172940286717 6.756379175489043e-05 0.014852936328835335 4.051544997074312e-05 0.0005253151635918517 1.4329409187635899e-06 0.014852936328835335 4.051544997074312e-05 0.018978793074031833 7.878050293460932e-05']
['59866.362902502835 0.03377020933758807 6.75202278586484e-05 0.014773559173707543 4.047995197751052e-05 0.0005225077710124828 1.4316854340762983e-06 0.014773559173707543 4.047995197751052e-05 0.018996650163880528 7.872488604110747e-05']
['59866.3629340408 0.03387525796731229 6.761214655854e-05 0.014882008442900963 4.0527692353076156e-05 0.000526343379294002 1.433373904466595e-06 0.014882008442900965 4.0527692353076156e-05 0.018993249524411327 7.882827037122583e-05']
['59866.36296557876 0.03373856483449805 6.750137214292471e-05 0.01474450595605371 4.046327557868185e-05 0.0005214802236341867 1.4310956271192864e-06 0.014744505956053712 4.046327557868185e-05 0.01899405887844434 7.870013921038491e-05']
['59866.362997116725 0.03389412652756679 6.761541439179798e-05 0.014771365862221523 4.0475407510620485e-05 0.0005224301984869849 1.4315247064386837e-06 0.014771365862221523 4.0475407510620485e-05 0.019122760665345268 7.880420595707666e-05']
['59866.36302865469 0.033845986562318096 6.758260382966756e-05 0.014754688812540537 4.046559518434247e-05 0.0005218403685107809 1.431177666387489e-06 0.014754688812540537 4.046559518434247e-05 0.01909129774977756 7.877101455498005e-05']
['59866.36306019265 0.03379171543682312 6.711757708946595e-05 0.014868771156307893 4.024034516867082e-05 0.0005258752060507994 1.42321107673734e-06 0.014868771156307893 4.024034516867082e-05 0.018922944280515226 7.82563386164608e-05']
['59866.363091730615 0.03374908153334352 6.711193735957191e-05 0.0147538167939362 4.017396245705621e-05 0.0005218095271615923 1.4208632685841603e-06 0.014753816793936197 4.017396245705621e-05 0.018995264739407325 7.821738550767384e-05']
['59866.36312326857 0.033699087287264035 6.705516152963842e-05 0.014779722848910815 4.019616806954539e-05 0.0005227257664294191 1.4216486314712794e-06 0.014779722848910814 4.019616806954539e-05 0.018919364438353223 7.818009091348667e-05']
['59866.36315480654 0.03379556109409124 6.713738553371803e-05 0.01485293543728504 4.022275589409463e-05 0.0005253151320597102 1.4225889834052952e-06 0.01485293543728504 4.022275589409463e-05 0.018942625656806197 7.826428705366845e-05']
['59866.363186344504 0.0338304859035789 6.714752121545322e-05 0.01475971752369532 4.017882602981421e-05 0.0005220182227858175 1.4210352822831653e-06 0.014759717523695318 4.017882602981421e-05 0.01907076837988358 7.825041639834139e-05']
['59866.36321788246 0.03376280006663365 6.710043295986144e-05 0.014797398542874695 4.019456547152164e-05 0.0005233509162220704 1.4215919511607751e-06 0.014797398542874695 4.019456547152164e-05 0.01896540152375896 7.82181001868832e-05']
['59866.36324942043 0.03374618895416149 6.710400297291374e-05 0.014753193033470858 4.016119845531674e-05 0.0005217874661479559 1.4204118343685001e-06 0.01475319303347086 4.016119845531674e-05 0.01899299592069063 7.820402212390454e-05']
['59866.363280958394 0.033869462295687665 6.720575217438459e-05 0.014798496460520779 4.019409903255563e-05 0.0005233897471155109 1.421575454256977e-06 0.014798496460520779 4.019409903255563e-05 0.019070965835166886 7.83082289568835e-05']
['59866.36331249635 0.03362938030292368 6.696061648524448e-05 0.014844999466892234 4.0212164494258676e-05 0.0005250344545227667 1.422214389263483e-06 0.014844999466892234 4.0212164494258676e-05 0.018784380836031445 7.810724891709676e-05']
['59866.36334403432 0.03377858518064537 6.712960889172055e-05 0.014786583763660875 4.019641671607332e-05 0.0005229684216508867 1.42165742554328e-06 0.014786583763660875 4.019641671607332e-05 0.01899200141698449 7.824408160856376e-05']
['59866.36337557228 0.03373208722320969 6.70825929678981e-05 0.014773563805067775 4.017274887023948e-05 0.0005225079348133437 1.4208203467306594e-06 0.014773563805067775 4.017274887023948e-05 0.018958523418141915 7.819158542380387e-05']
['59866.36340711024 0.03368298859067696 6.706170292022878e-05 0.01484374605474113 4.021553218674819e-05 0.0005249901241361934 1.4223334970204874e-06 0.01484374605474113 4.021553218674819e-05 0.018839242535935833 7.819565862389292e-05']
['59866.36343864821 0.03370863696529255 6.706551783346347e-05 0.014831739359301507 4.0224550076294024e-05 0.0005245654741518791 1.4226524396199266e-06 0.014831739359301507 4.0224550076294024e-05 0.01887689760599104 7.820356840394748e-05']
['59866.36347018617 0.033890098613828794 6.72251084073845e-05 0.014743098422087313 4.0165451976810897e-05 0.0005214304423034485 1.4205622719176874e-06 0.014743098422087311 4.0165451976810897e-05 0.01914700019174148 7.831014450814212e-05']
['59866.36350172413 0.033790421790449485 6.711500803403338e-05 0.014826744972860966 4.020193516500297e-05 0.0005243888338652739 1.421852600748914e-06 0.014826744972860966 4.020193516500297e-05 0.018963676817588516 7.823439073974736e-05']
['59866.3635332621 0.03364317805159058 6.699112090043303e-05 0.014803126326935496 4.0210863005165556e-05 0.000523553495143457 1.4221683585029164e-06 0.014803126326935496 4.0210863005165556e-05 0.018840051724655086 7.813273182934683e-05']
['59866.363564800056 0.03378594581252861 6.714700483764659e-05 0.014836126360552513 4.0217488654373026e-05 0.0005247206325817563 1.4224026929079301e-06 0.014836126360552511 4.0217488654373026e-05 0.018949819451976102 7.826983232594507e-05']
['59866.36359633802 0.033741238319484786 6.710260020730067e-05 0.014813152077195899 4.0207463932100517e-05 0.0005239080835239343 1.4220481408850872e-06 0.014813152077195899 4.0207463932100517e-05 0.018928086242288887 7.822658825765056e-05']
['59866.36362787598 0.03379384330085041 6.712425212424641e-05 0.014825482891503698 4.0205470131007135e-05 0.0005243441968682531 1.4219776245962975e-06 0.014825482891503696 4.0205470131007135e-05 0.018968360409346713 7.824413749089899e-05']
['59866.363659413946 0.03356994593437087 6.695224776671531e-05 0.014713788127408518 4.0150394184762814e-05 0.0005203938026853129 1.4200297114651315e-06 0.01471378812740852 4.0150394184762814e-05 0.01885615780696235 7.806828827512149e-05']
['59866.36369095191 0.03370465668143941 6.706285477952868e-05 0.014844978234779283 4.023494888203495e-05 0.0005250337035903826 1.4230202221390202e-06 0.014844978234779283 4.023494888203495e-05 0.01885967844666013 7.820663400709763e-05']
['59866.36372248987 0.033785193210728065 6.711726744166295e-05 0.014878886243702677 4.023080624366194e-05 0.0005262329540860632 1.4228737062780187e-06 0.014878886243702679 4.023080624366194e-05 0.018906306967025388 7.825116842482787e-05']
['59866.363754027836 0.03381578221742384 6.714389780699307e-05 0.014860382586879209 4.021645614730704e-05 0.0005255785210974562 1.4223661754405238e-06 0.014860382586879207 4.021645614730704e-05 0.01895539963054463 7.826663630030487e-05']
['59866.3637855658 0.03376302213662058 6.711899532008087e-05 0.01486023660751209 4.0219090489784234e-05 0.0005255733581334859 1.422459346246533e-06 0.014860236607512088 4.0219090489784234e-05 0.01890278552910849 7.824662786729209e-05']
['59866.36381710376 0.033745610080562045 6.710812048767081e-05 0.014825495145136591 4.020944208229886e-05 0.0005243446302518633 1.4221181036366971e-06 0.014825495145136591 4.020944208229886e-05 0.018920114935425454 7.823234029451943e-05']
['59866.363848641726 0.03378679531342237 6.713181562452219e-05 0.014826721936734582 4.021251039774172e-05 0.0005243880191289664 1.4222266230966295e-06 0.014826721936734583 4.021251039774172e-05 0.01896007337668779 7.825424372858847e-05']
['59866.363880179684 0.03366295031524568 6.704921370626694e-05 0.014841302481472212 4.021202743782338e-05 0.0005249037004107366 1.42220954188367e-06 0.014841302481472212 4.021202743782338e-05 0.01882164783377347 7.818314530184185e-05']
['59866.36391171765 0.03384402201745407 6.713899689275338e-05 0.014869815328138414 4.023536552836534e-05 0.0005259121360748583 1.4230349579885762e-06 0.014869815328138414 4.023536552836534e-05 0.018974206689315654 7.827215049406984e-05']
['59866.363943255616 0.03374384021080955 6.710111928405187e-05 0.014755688569553371 4.0166259492670266e-05 0.0005218757276819994 1.4205908319489417e-06 0.014755688569553371 4.0166259492670266e-05 0.018988151641256175 7.820414701794964e-05']
['59866.363974793574 0.033733174711157374 6.709218539270572e-05 0.014761251820903267 4.017266143422081e-05 0.0005220724874491102 1.4208172543140872e-06 0.014761251820903267 4.017266143422081e-05 0.01897192289025411 7.819977025207764e-05']
['59866.36400633154 0.033699255210314964 6.70431495010242e-05 0.014880545477667154 4.023389948652075e-05 0.0005262916374832171 1.4229831073649437e-06 0.014880545477667156 4.023389948652075e-05 0.018818709732647806 7.818919722639527e-05']
['59866.364037869505 0.033719817146860884 6.707793398843597e-05 0.014781999291807383 4.0191967456022156e-05 0.0005228062791271203 1.4215000651587814e-06 0.014781999291807383 4.0191967456022156e-05 0.018937817855053503 7.819746464012063e-05']
['59866.364069407464 0.03372378139006935 6.706441393393145e-05 0.014728424827700638 4.015396749974339e-05 0.0005209114700635453 1.4201560916301055e-06 0.01472842482770064 4.015396749974339e-05 0.018995356562368712 7.816634008492497e-05']
['59866.36410094543 0.03364810842985428 6.700718871589613e-05 0.01477707262127043 4.017245908505207e-05 0.0005226320338006889 1.4208100976762126e-06 0.01477707262127043 4.017245908505207e-05 0.01887103580858385 7.81267547549999e-05']
['59866.36413248339 0.033628047682282315 6.699129688122906e-05 0.014778105569610738 4.01856519031303e-05 0.000522668566874982 1.4212766981674265e-06 0.01477810556961074 4.01856519031303e-05 0.018849942112671575 7.811991088518042e-05']
['59866.364164021354 0.033732130219223305 6.707772074672666e-05 0.014821468880566655 4.019624052682238e-05 0.0005242022302721964 1.421651194123234e-06 0.014821468880566655 4.019624052682238e-05 0.01891066133865665 7.819947808691565e-05']
['59866.36419555932 0.03375494895527055 6.709012876494103e-05 0.014835206042049817 4.021739279405196e-05 0.0005246880829731068 1.4223993025426092e-06 0.014835206042049819 4.021739279405196e-05 0.01891974291322073 7.822099501315124e-05']
['59866.36422709728 0.03364389010675308 6.698946820719604e-05 0.014768930574595713 4.016902957340983e-05 0.0005223440678062075 1.4206888035139338e-06 0.01476893057459571 4.016902957340983e-05 0.01887495953215737 7.810979316034836e-05']
['59866.36425863524 0.033641684119489916 6.698772534646642e-05 0.01480807353584017 4.0188218502126124e-05 0.0005237284668660542 1.4213674730378974e-06 0.01480807353584017 4.0188218502126124e-05 0.018833610583649747 7.811816852351475e-05']
['59866.36429017321 0.03368147464132752 6.705187536868126e-05 0.01483582684320289 4.021534614919374e-05 0.0005247100393224821 1.422326917287956e-06 0.014835826843202891 4.021534614919374e-05 0.01884564779812463 7.818713485194759e-05']
['59866.36432171117 0.033728484800587995 6.705920781389277e-05 0.014816628211816492 4.018231567967368e-05 0.000524031026636761 1.4211587033997863e-06 0.014816628211816492 4.018231567967368e-05 0.0189118565887715 7.817644047926335e-05']
['59866.36435324913 0.03375507447157691 6.710800898353148e-05 0.014840951036061497 4.020499070920357e-05 0.0005248912705719939 1.42196066851855e-06 0.014840951036061497 4.020499070920357e-05 0.018914123435515413 7.822995684302074e-05']
['59866.36438478709 0.0336550417926916 6.69973017002794e-05 0.01476235219755394 4.017135982454988e-05 0.0005221114053120474 1.4207712192889527e-06 0.01476235219755394 4.017135982454988e-05 0.018892689595137666 7.811770980559864e-05']
['59866.36441632506 0.03377178405427137 6.713370618197442e-05 0.014790109274719217 4.0195461629084436e-05 0.0005230931110979667 1.421623646250977e-06 0.014790109274719215 4.0195461629084436e-05 0.018981674779552156 7.824710628069813e-05']
['59866.36444786302 0.03368608339357045 6.706136562877875e-05 0.014800604988966888 4.019058115372374e-05 0.0005234643210543661 1.4214510347446897e-06 0.01480060498896689 4.019058115372374e-05 0.018885478404603563 7.818254008070344e-05']
['59866.36447940098 0.033743023663621675 6.709057571681551e-05 0.014762994763495204 4.016197801946321e-05 0.0005221341314333396 1.4204394058101376e-06 0.014762994763495206 4.016197801946321e-05 0.01898002890012647 7.819290139424168e-05']
['59866.36451093895 0.03374833602743688 6.707704822510264e-05 0.014806678255935743 4.017989162012666e-05 0.0005236791189341016 1.4210729698310625e-06 0.014806678255935742 4.017989162012666e-05 0.01894165777150114 7.819049871434426e-05']
['59866.36454247691 0.03372303473778708 6.709115593924577e-05 0.014732538713325206 4.0157867715202874e-05 0.0005210569690040929 1.4202940335344389e-06 0.014732538713325204 4.0157867715202874e-05 0.018990496024461876 7.81912881636818e-05']
['59866.36457401487 0.033669475615897476 6.70496792568497e-05 0.014734641619931791 4.0160506651278076e-05 0.0005211313441110482 1.4203873668057436e-06 0.014734641619931793 4.0160506651278076e-05 0.018934833995965683 7.815705843322003e-05']
['59866.36460555284 0.03366297086942535 6.70290039568591e-05 0.014724878268192807 4.01550447913125e-05 0.0005207860361798473 1.4201941930253e-06 0.014724878268192809 4.01550447913125e-05 0.018938092601232543 7.813651511067631e-05']
['59866.364637090795 0.03367229977044559 6.705011373588576e-05 0.014793130679447136 4.018799758380516e-05 0.0005231999714307511 1.4213596596506085e-06 0.014793130679447136 4.018799758380516e-05 0.018879169090998456 7.817156069691295e-05']
['59866.36466862876 0.03370519714890204 6.704087329891517e-05 0.014844560327245987 4.0219653751871705e-05 0.0005250189231348983 1.4224792675677503e-06 0.014844560327245987 4.0219653751871705e-05 0.018860636821656056 7.81799158390545e-05']
['59866.36470016673 0.03374206294767891 6.708531786704009e-05 0.01473996223777222 4.016235232413539e-05 0.0005213195224731831 1.4204526441298706e-06 0.01473996223777222 4.016235232413539e-05 0.01900210070990669 7.818858239877349e-05']
['59866.364731704685 0.0336583125532775 6.703640460759043e-05 0.01473250894503123 4.015794580379023e-05 0.0005210559161660632 1.4202967953532558e-06 0.01473250894503123 4.015794580379023e-05 0.01892580360824627 7.814435458747307e-05']
['59866.36476324265 0.03367010744908865 6.701500734084924e-05 0.014776458017510666 4.0198864537955064e-05 0.0005226102966392645 1.4217439995326773e-06 0.014776458017510664 4.0198864537955064e-05 0.018893649431577987 7.814704037284418e-05']
['59866.36479478062 0.033734325276159806 6.7087556969942e-05 0.014828358401410882 4.0226354073070774e-05 0.0005244458972272838 1.4227162429542248e-06 0.014828358401410882 4.0226354073070774e-05 0.018905966874748922 7.822339715332792e-05']
['59866.364826318575 0.03355963020393463 6.695073887018979e-05 0.014717268829038552 4.014658174169386e-05 0.0005205169073230569 1.4198948738740913e-06 0.014717268829038553 4.014658174169386e-05 0.01884236137489608 7.806503353491145e-05']
['59866.36485785654 0.03361768203734155 6.700769236085264e-05 0.01474587246539533 4.0150636220370814e-05 0.0005215285540156312 1.4200382717236685e-06 0.01474587246539533 4.0150636220370814e-05 0.01887180957194622 7.811596779421748e-05']
['59866.3648893945 0.033594601697737383 6.696643828684788e-05 0.014696740477942293 4.0149365143704415e-05 0.0005197908654229467 1.4199933165826673e-06 0.014696740477942293 4.0149365143704415e-05 0.01889786121979509 7.807992942023394e-05']
['59866.364920932465 0.03374549286030633 6.709671298899165e-05 0.01480155672229171 4.017760910219032e-05 0.0005234979817350662 1.4209922422727815e-06 0.01480155672229171 4.017760910219032e-05 0.01894393613801462 7.820619647505899e-05']
['59866.36495247043 0.03371323020114221 6.707365038408967e-05 0.014800109454792675 4.017757400901481e-05 0.0005234467951180778 1.4209910011055923e-06 0.014800109454792675 4.017757400901481e-05 0.018913120746349536 7.818639286408444e-05']
['59866.36498400839 0.03379161936687188 6.710889441908771e-05 0.014848964843812405 4.022136909317146e-05 0.0005251747010423374 1.4225399353559604e-06 0.014848964843812406 4.022136909317146e-05 0.018942654523059474 7.82391349765665e-05']
['59866.365015546355 0.03363496369534298 6.700978904367624e-05 0.01475710286662924 4.016937928263758e-05 0.0005219257482088049 1.4207011719477652e-06 0.01475710286662924 4.016937928263758e-05 0.01887786082871374 7.812740146472546e-05']
['59866.36504708432 0.033612039434205425 6.697609078034882e-05 0.014766558744112101 4.0177654020725616e-05 0.0005222601814627313 1.4209938309409878e-06 0.014766558744112101 4.0177654020725616e-05 0.018845480690093324 7.810275679402524e-05']
['59866.36507862228 0.03374741308904537 6.708618491056226e-05 0.014722191124230486 4.0147651302486e-05 0.0005206909979033132 1.4199327018489814e-06 0.014722191124230484 4.0147651302486e-05 0.01902522196481489 7.818177607959644e-05']
['59866.365110160245 0.033673255210106216 6.704585291142167e-05 0.014753959755314846 4.0184561234359334e-05 0.0005218145833860552 1.4212381236504986e-06 0.014753959755314846 4.0184561234359334e-05 0.01891929545479137 7.81661394352949e-05']
['59866.3651416982 0.03377150145912196 6.712119613789595e-05 0.014792995637527432 4.019038542612538e-05 0.0005231951952998521 1.421444112296961e-06 0.014792995637527432 4.019038542612538e-05 0.018978505821594528 7.823376541930222e-05']
['59866.36517323617 0.03351809473976637 6.69378756499003e-05 0.014713693283268454 4.0156723630945604e-05 0.000520390448260043 1.420253569831137e-06 0.014713693283268455 4.0156723630945604e-05 0.018804401456497914 7.80592188616672e-05']
['59866.365204774134 0.03379562859000178 6.715482728761645e-05 0.01469868453635759 4.013907605558213e-05 0.0005198596224243809 1.4196294145305407e-06 0.014698684536357589 4.013907605558213e-05 0.01909694405364419 7.823628477008223e-05']
['59866.36523631209 0.0337522520572807 6.711962349421759e-05 0.01476630718332363 4.017264365223353e-05 0.0005222512843198484 1.4208166254049373e-06 0.014766307183323632 4.017264365223353e-05 0.018985944873957064 7.822330315203306e-05']
['59866.36526785006 0.03364712054686749 6.698118233762502e-05 0.014779089262533955 4.0180815406057215e-05 0.0005227033578952519 1.4211056420748861e-06 0.014779089262533957 4.0180815406057215e-05 0.018868031284333536 7.81087492797178e-05']
['59866.365299388024 0.03356070756858342 6.696891528376749e-05 0.014746647957714827 4.017853628935524e-05 0.0005215559814458485 1.4210250348106633e-06 0.014746647957714827 4.017853628935524e-05 0.018814059610868593 7.809705751588509e-05']
['59866.36533092598 0.0336837112299051 6.705709514349907e-05 0.014721742063605202 4.0152166803881645e-05 0.0005206751156325884 1.420092405041794e-06 0.014721742063605202 4.0152166803881645e-05 0.0189619691662999 7.81591357944228e-05']
['59866.36536246395 0.0337338678559638 6.706766779096386e-05 0.014772493777102708 4.017784862193007e-05 0.000522470090315591 1.4210007135506813e-06 0.014772493777102706 4.017784862193007e-05 0.018961374078861094 7.818140177053503e-05']
['59866.36539400191 0.03355348280714934 6.695977892770414e-05 0.014735739089905728 4.017148049816906e-05 0.0005211701591713253 1.4207754872451732e-06 0.014735739089905726 4.017148049816906e-05 0.018817743717243617 7.8085593033938e-05']
['59866.36542553987 0.033706444827612654 6.705559249946568e-05 0.01477262834745006 4.017119898946377e-05 0.0005224748497680298 1.420765530911402e-06 0.01477262834745006 4.017119898946377e-05 0.018933816480162596 7.816762573921184e-05']
['59866.36545707784 0.033558807308784244 6.694839066286421e-05 0.014740980691005337 4.016272393367673e-05 0.0005213555428879294 1.4204657871288497e-06 0.014740980691005337 4.016272393367673e-05 0.018817826617778907 7.80713225590563e-05']
['59866.3654886158 0.033802236449492915 6.711989552300183e-05 0.014865367824232582 4.0238465528107724e-05 0.0005257548378012953 1.4231445980513727e-06 0.014865367824232582 4.0238465528107724e-05 0.018936868625260332 7.825736056803472e-05']
['59866.36552015376 0.033639395634466204 6.701045484301096e-05 0.014770891415545736 4.017302360270027e-05 0.0005224134183683882 1.4208300634038066e-06 0.014770891415545736 4.017302360270027e-05 0.018868504218920466 7.812984630504737e-05']
['59866.36555169173 0.03367579691065047 6.704900425777094e-05 0.014768100004301909 4.0180522295381124e-05 0.000522314692391131 1.4210952754053366e-06 0.014768100004301909 4.0180522295381124e-05 0.018907696906348564 7.816676623660598e-05']
['59866.365583229686 0.03359858702258364 6.698411138359304e-05 0.014775594894117354 4.017558347447975e-05 0.0005225797698938104 1.4209206003476702e-06 0.014775594894117353 4.017558347447975e-05 0.01882299212846629 7.810856985865564e-05']
['59866.36561476765 0.03357012261594802 6.695959925212631e-05 0.014804733079180269 4.0209651705245766e-05 0.0005236103223794747 1.4221255175318495e-06 0.014804733079180267 4.0209651705245766e-05 0.018765389536767756 7.810508320373603e-05']
['59866.36564630561 0.03362378004291084 6.700396932066987e-05 0.01487911463792051 4.0244757441958014e-05 0.0005262410318791169 1.4233671289826577e-06 0.01487911463792051 4.0244757441958014e-05 0.01874466540499033 7.816119501573209e-05']
['59866.365677843576 0.033653077759087414 6.7025373323553e-05 0.014709099028619325 4.013183929157233e-05 0.0005202279597406582 1.4193734663607297e-06 0.014709099028619327 4.013183929157233e-05 0.01894397873046809 7.812147716272548e-05']
['59866.36570938154 0.03360145979728258 6.698196091250137e-05 0.014740375473342084 4.01716067073428e-05 0.0005213341376917621 1.4207799509815876e-06 0.014740375473342086 4.01716067073428e-05 0.018861084323940493 7.810468022553636e-05']
['59866.3657409195 0.03361561069436191 6.699055626127986e-05 0.014733400521323214 4.0156783678258856e-05 0.0005210874492269549 1.4202556935704088e-06 0.014733400521323214 4.0156783678258856e-05 0.018882210173038698 7.810442947476269e-05']
['59866.365772457466 0.03370659830941386 6.705120317339978e-05 0.014698174117851716 4.013398152230744e-05 0.0005198415700625464 1.4194492322742265e-06 0.014698174117851714 4.013398152230744e-05 0.019008424191562144 7.814473955317435e-05']
['59866.36580399543 0.03363586359395712 6.69863645774994e-05 0.014783677893136662 4.018524456168539e-05 0.0005228656475046837 1.4212622914108745e-06 0.014783677893136662 4.018524456168539e-05 0.018852185700820458 7.811547170562392e-05']
['59866.36583553339 0.03357809513769953 6.698774797542755e-05 0.014716810063728552 4.014256349863529e-05 0.0005205006818193223 1.4197527575973543e-06 0.01471681006372855 4.014256349863529e-05 0.018861285073970977 7.809471033982625e-05']
['59866.365867071356 0.03367389652073123 6.701977292011863e-05 0.01478639463093678 4.01860640628456e-05 0.0005229617324491223 1.4212912753354338e-06 0.01478639463093678 4.01860640628456e-05 0.01888750188979445 7.814454368110033e-05']
['59866.365898609314 0.033711838620554664 6.706283693497811e-05 0.014797512980096217 4.019547294520588e-05 0.0005233549636108435 1.4216240464769023e-06 0.014797512980096217 4.019547294520588e-05 0.018914325640458446 7.81863168531185e-05']
['59866.36593014728 0.03377059830521197 6.711921446509493e-05 0.014818103642424016 4.0199598473477284e-05 0.0005240832093199558 1.4217699571918488e-06 0.014818103642424016 4.0199598473477284e-05 0.018952494662787957 7.823679868092894e-05']
['59866.365961685246 0.03355272427629256 6.694828021105126e-05 0.014674981969474758 4.012673912369707e-05 0.0005190213156058545 1.4191930848211862e-06 0.01467498196947476 4.012673912369707e-05 0.018877742306817796 7.805272202760566e-05']
['59866.365993223204 0.03370343330151817 6.70664516810952e-05 0.014802656371708009 4.0196105366407906e-05 0.000523536873877349 1.42164641380144e-06 0.01480265637170801 4.0196105366407906e-05 0.01890077692981016 7.818974247124775e-05']
['59866.36602476117 0.03350566305156144 6.689210517767939e-05 0.014667676063795647 4.012127071187417e-05 0.0005187629220497226 1.4189996793161914e-06 0.014667676063795647 4.012127071187417e-05 0.018837986987765794 7.800173138230467e-05']
['59866.366056299135 0.0337557868252185 6.711782140474864e-05 0.014823601889887112 4.018817796361463e-05 0.0005242776700448657 1.4213660392813443e-06 0.014823601889887112 4.018817796361463e-05 0.018932184935331386 7.822973602253108e-05']
['59866.366087837094 0.033673384567058894 6.703218148740231e-05 0.014838280583768173 4.0216595655164545e-05 0.0005247968226424888 1.422371109521662e-06 0.014838280583768175 4.0216595655164545e-05 0.01883510398329072 7.817088921747687e-05']
['59866.36611937506 0.033600934691775504 6.697583941404744e-05 0.014682508367517326 4.01401955440488e-05 0.0005192875074841105 1.4196690083356973e-06 0.014682508367517326 4.01401955440488e-05 0.018918426324258178 7.808327838616119e-05']
['59866.36615091302 0.033590732029098735 6.698470109112959e-05 0.014755547200996262 4.0164936907168543e-05 0.0005218707277920746 1.4205440550555504e-06 0.01475554720099626 4.0164936907168543e-05 0.018835184828102473 7.810360002602189e-05']
['59866.36618245098 0.033587671407646735 6.69901135080498e-05 0.014723403310069702 4.0149586044219004e-05 0.0005207338702073705 1.4200011293401847e-06 0.014723403310069704 4.0149586044219004e-05 0.018864268097577033 7.810034934200705e-05']
['59866.36621398895 0.03361493062524328 6.699317051696543e-05 0.014842094700446349 4.0218067042151e-05 0.0005249317194253466 1.4224231491910165e-06 0.014842094700446347 4.0218067042151e-05 0.018772835924796935 7.813819688553197e-05']
['59866.36624552691 0.03363717590477991 6.70120477307208e-05 0.014762575434412867 4.017330601430225e-05 0.0005221193007008426 1.420840051671016e-06 0.014762575434412865 4.017330601430225e-05 0.018874600470367042 7.813135770728151e-05']
['59866.36627706487 0.0336455293922552 6.70029989640322e-05 0.014723382287167555 4.015184246264498e-05 0.000520733126674305 1.4200809338171131e-06 0.014723382287167555 4.015184246264498e-05 0.018922147105087647 7.811256187911878e-05']
['59866.36630860284 0.03361943335187412 6.699097163105477e-05 0.014710815354717325 4.015947306230013e-05 0.0005202886623589814 1.420350811073529e-06 0.014710815354717327 4.015947306230013e-05 0.01890861799715679 7.810616849336802e-05']
['59866.3663401408 0.03349053159527852 6.692581685329235e-05 0.014757639921626828 4.020022546846383e-05 0.0005219447426438224 1.4217921326032718e-06 0.01475763992162683 4.020022546846383e-05 0.018732891673651688 7.807126929412483e-05']
['59866.36637167876 0.033649127425189405 6.701955473184526e-05 0.014734165304129998 4.016499228502656e-05 0.0005211144978856419 1.420546013646626e-06 0.014734165304129998 4.016499228502656e-05 0.018914962121059406 7.8133522394111e-05']
['59866.36640321672 0.033677657040582086 6.703864744608526e-05 0.014737272413829302 4.016134092253466e-05 0.0005212243894117248 1.4204168731156025e-06 0.014737272413829302 4.016134092253466e-05 0.018940384626752786 7.814802336653544e-05']
['59866.36643475469 0.033642939689188994 6.703958724702535e-05 0.014712743759327556 4.0141972306447657e-05 0.0005203568657203146 1.4197318484509147e-06 0.014712743759327556 4.0141972306447657e-05 0.018930195929861438 7.813887764041107e-05']
['59866.36646629265 0.033620179160471206 6.699645816261898e-05 0.01470813478985971 4.0143675131285904e-05 0.0005201938567706774 1.419792073559854e-06 0.01470813478985971 4.0143675131285904e-05 0.018912044370611496 7.810275321255825e-05']
['59866.36649783061 0.03350752129000418 6.690686126480665e-05 0.014715479586593338 4.0147482415901816e-05 0.0005204536258164912 1.4199267287079384e-06 0.01471547958659334 4.0147482415901816e-05 0.01879204170341084 7.802786956365802e-05']
['59866.36652936858 0.03372509508157184 6.709416587647051e-05 0.014691544548452154 4.014706932829003e-05 0.0005196070970090995 1.419912118722306e-06 0.014691544548452153 4.014706932829003e-05 0.01903355053311969 7.818832566508804e-05']
['59866.36656090654 0.03359756831429383 6.698306017312625e-05 0.014724789468953928 4.0157116821198855e-05 0.0005207828955492227 1.420267476091666e-06 0.014724789468953926 4.0157116821198855e-05 0.018872778845339902 7.809817143536758e-05']
['59866.3665924445 0.033623013421520305 6.700875448910502e-05 0.014689137806092599 4.014319448900562e-05 0.0005195219759105946 1.4197750743165726e-06 0.014689137806092599 4.014319448900562e-05 0.018933875615427705 7.811305423527673e-05']
['59866.36662398247 0.033526436457374374 6.692308831276321e-05 0.014651498922258229 4.011038618063534e-05 0.0005181907727073277 1.4186147177717696e-06 0.01465149892225823 4.011038618063534e-05 0.018874937535116144 7.802270713630492e-05']
['59866.366655520425 0.033664542221102677 6.703712777892269e-05 0.014799447601452267 4.0180136505007864e-05 0.0005234233868445828 1.4210816308620251e-06 0.014799447601452267 4.0180136505007864e-05 0.01886509461965041 7.815638086815863e-05']
['59866.36668705839 0.033558430762530816 6.695856497527593e-05 0.01475223091132659 4.0170646799999265e-05 0.0005217534380379295 1.4207460012041135e-06 0.01475223091132659 4.0170646799999265e-05 0.018806199851204228 7.808412314855396e-05']
['59866.36671859636 0.033678670992504434 6.702104805386328e-05 0.014787131414099148 4.017887216530138e-05 0.0005229877908229617 1.4210369139922398e-06 0.014787131414099148 4.017887216530138e-05 0.018891539578405288 7.814193912819083e-05']
['59866.366750134315 0.03359169124944501 6.697693613900723e-05 0.014762450680161998 4.0164674131289715e-05 0.0005221148884217988 1.4205347612599857e-06 0.014762450680161998 4.0164674131289715e-05 0.018829240569283014 7.80968054573383e-05']
['59866.36678167228 0.033549552644588365 6.69343716841448e-05 0.014704446669039403 4.014737716736195e-05 0.000520063416179728 1.4199230063022999e-06 0.014704446669039401 4.014737716736195e-05 0.018845105975548962 7.805140617676059e-05']
['59866.36681321025 0.03361917744071065 6.698519149380753e-05 0.014742540754061204 4.015820681601726e-05 0.0005214107188316798 1.420306026772398e-06 0.014742540754061204 4.015820681601726e-05 0.018876636686649444 7.810055988365307e-05']
['59866.366844748205 0.033735631115817136 6.707746881033098e-05 0.014770004187491434 4.016537687083981e-05 0.0005223820390949455 1.4205596155873421e-06 0.014770004187491434 4.016537687083981e-05 0.0189656269283257 7.818340182658669e-05']
['59866.36687628617 0.03365321621061107 6.702120074181116e-05 0.014857369894479163 4.022795159583805e-05 0.0005254719689002378 1.42277274376425e-06 0.014857369894479163 4.022795159583805e-05 0.018795846316131907 7.816731694558307e-05']
['59866.36690782413 0.033584851407979184 6.697911188296871e-05 0.014711817456586073 4.013328007757614e-05 0.0005203241044625131 1.4194244237417172e-06 0.014711817456586075 4.013328007757614e-05 0.018873033951393108 7.808253068655247e-05']
['59866.366939362095 0.03358897813407254 6.698285104427253e-05 0.014714392714298306 4.014577877812044e-05 0.0005204151855724325 1.4198664748470174e-06 0.014714392714298306 4.014577877812044e-05 0.018874585419774235 7.809216278040318e-05']
['59866.36697090006 0.03362269547683175 6.697761813752804e-05 0.014734326124261758 4.014504342567755e-05 0.0005211201857342904 1.4198404670745284e-06 0.014734326124261756 4.014504342567755e-05 0.018888369352569993 7.808729629732394e-05']
['59866.36700243802 0.033536259061382516 6.695044194887664e-05 0.014713867514290874 4.014649745734639e-05 0.0005203966104219225 1.4198918929250857e-06 0.014713867514290872 4.014649745734639e-05 0.018822391547091644 7.806473554200143e-05']
['59866.367033975985 0.03355548821886618 6.697017835424487e-05 0.014757661520797839 4.018698361665157e-05 0.0005219455065582297 1.4213237978984693e-06 0.014757661520797839 4.018698361665157e-05 0.018797826698068336 7.810248677861922e-05']
['59866.36706551395 0.033732509155755944 6.707541917079781e-05 0.014762285171735374 4.0164576422915256e-05 0.0005221090347586387 1.4205313055331464e-06 0.014762285171735374 4.0164576422915256e-05 0.018970223984020568 7.81812321223606e-05']
['59866.36709705191 0.03365995208356651 6.701620881757532e-05 0.014826986528295644 4.020971882451767e-05 0.0005243973771411538 1.422127891390494e-06 0.014826986528295645 4.020971882451767e-05 0.018832965555270864 7.81536546312943e-05']
['59866.367128589874 0.03361519643758745 6.700115342113672e-05 0.014789976052136286 4.018203078816145e-05 0.0005230883993129435 1.4211486274236939e-06 0.014789976052136288 4.018203078816145e-05 0.018825220385451164 7.812650099693097e-05']
['59866.36716012783 0.03363758295885863 6.700071539800721e-05 0.014754784301145636 4.014554029522497e-05 0.0005218437457293388 1.4198580402399826e-06 0.014754784301145636 4.014554029522497e-05 0.018882798657712994 7.810736373377539e-05']
['59866.3671916658 0.033630569287533746 6.701718865248685e-05 0.014682792320075508 4.013201004497783e-05 0.0005192975502514968 1.419379505527071e-06 0.014682792320075508 4.013201004497783e-05 0.018947776967458238 7.811454285300025e-05']
['59866.367223203764 0.03351987523965541 6.695923722418026e-05 0.01467783193898942 4.013258312904498e-05 0.0005191221126582811 1.4193997742297583e-06 0.014677831938989421 4.013258312904498e-05 0.018842043300665988 7.806512459641471e-05']
['59866.36725474172 0.03360913652190039 6.700989232679323e-05 0.014709714445443058 4.014417036529757e-05 0.000520249725658338 1.4198095888800634e-06 0.014709714445443058 4.014417036529757e-05 0.018899422076457333 7.811453183605762e-05']
['59866.36728627969 0.033641858933185824 6.70101416296341e-05 0.01473846629629023 4.016104554602394e-05 0.0005212666143661976 1.420406426308546e-06 0.01473846629629023 4.016104554602394e-05 0.018903392636895593 7.81234194116811e-05']
['59866.36731781765 0.03357324806175838 6.69586313419134e-05 0.014719455939087396 4.014227163314349e-05 0.0005205942605175812 1.4197424349671904e-06 0.014719455939087397 4.014227163314349e-05 0.018853792122670986 7.806958615908851e-05']
['59866.36734935561 0.03353335163417331 6.691209899679976e-05 0.01474473049500646 4.0165018530444234e-05 0.0005214881650751305 1.4205469418883941e-06 0.014744730495006462 4.0165018530444234e-05 0.018788621139166843 7.8041384570678e-05']
['59866.36738089358 0.03352301404651686 6.69526158483285e-05 0.014721599915721483 4.013711657648894e-05 0.0005206700881796231 1.4195601121341925e-06 0.014721599915721483 4.013711657648894e-05 0.018801414130795373 7.806177615202278e-05']
['59866.36741243154 0.033489068919823714 6.689535440076427e-05 0.014791721438203374 4.017603155616045e-05 0.0005231501297174281 1.4209364479953128e-06 0.014791721438203375 4.017603155616045e-05 0.018697347481620337 7.803269796697698e-05']
['59866.3674439695 0.033566123566487416 6.693459350424509e-05 0.014665172213692493 4.009607698577012e-05 0.0005186743664673496 1.418108633528555e-06 0.014665172213692491 4.009607698577012e-05 0.018900951352794924 7.802522154551907e-05']
['59866.36747550747 0.03349973939953301 6.692790141370608e-05 0.014672141590191961 4.013453313734755e-05 0.0005189208577384961 1.4194687416654083e-06 0.014672141590191961 4.013453313734755e-05 0.01882759780934105 7.803925126367889e-05']
['59866.36750704543 0.033600522762377266 6.699169265952362e-05 0.014739293909369467 4.016591997860008e-05 0.0005212958851912038 1.4205788240950484e-06 0.014739293909369467 4.016591997860008e-05 0.018861228853007797 7.811010186342978e-05']
['59866.36753858339 0.033567963850227305 6.695630555389026e-05 0.014717060891782392 4.015335678054208e-05 0.0005205095530470189 1.420134491856832e-06 0.014717060891782393 4.015335678054208e-05 0.01885090295844491 7.807329193886613e-05']
['59866.36757012135 0.03370001660869523 6.707351636667607e-05 0.014704313748606559 4.015160365142252e-05 0.000520058715081078 1.4200724875978863e-06 0.014704313748606559 4.015160365142252e-05 0.018995702860088674 7.817293568474763e-05']
['59866.367601659316 0.03352127434637904 6.694685703851987e-05 0.014708332024034983 4.0145862688834746e-05 0.0005202008325026643 1.419869442581453e-06 0.014708332024034982 4.0145862688834746e-05 0.01881294232234406 7.806133459252916e-05']
['59866.36763319728 0.03368985366896324 6.705217406943608e-05 0.014762111769613624 4.0170032335555935e-05 0.0005221029019131233 1.42072426897e-06 0.014762111769613624 4.0170032335555935e-05 0.018927741899349614 7.81640937085409e-05']
['59866.36766473524 0.033633766919085296 6.701937665586823e-05 0.014796828127299566 4.01966183934923e-05 0.000523330741897982 1.4216645584228669e-06 0.014796828127299566 4.01966183934923e-05 0.01883693879178573 7.814963197362595e-05']
['59866.367696273206 0.033625449995778184 6.699450348856536e-05 0.014774985057152249 4.0176092495234294e-05 0.00052255820132326 1.420938603274164e-06 0.014774985057152249 4.0176092495234294e-05 0.018850464938625935 7.811774386056613e-05']
['59866.36772781117 0.03358076850922451 6.695713887585242e-05 0.014779425614115558 4.0173317494291725e-05 0.0005227152538989916 1.4208404576925874e-06 0.014779425614115558 4.0173317494291725e-05 0.01880134289510895 7.808427424864339e-05']
['59866.36775934913 0.03344421157443423 6.686457154857976e-05 0.014638914281536488 4.010450332767083e-05 0.0005177456820900164 1.4184066544098175e-06 0.01463891428153649 4.010450332767083e-05 0.01880529729289774 7.796949477542037e-05']
['59866.367790887096 0.03357863985346255 6.695365159088225e-05 0.014683972062747689 4.0132267517135046e-05 0.0005193392751132421 1.4193886117418552e-06 0.01468397206274769 4.0132267517135046e-05 0.01889466779071486 7.80601713898973e-05']
['59866.367822425054 0.03359321071001613 6.698770833945475e-05 0.014739799589410768 4.015890421469561e-05 0.0005213137699641362 1.4203306922050569e-06 0.014739799589410766 4.015890421469561e-05 0.01885341112060536 7.810307712438065e-05']
['59866.36785396302 0.03353835938799133 6.694495980253805e-05 0.014769046196960227 4.0187142092280724e-05 0.0005223481571108396 1.4213294028273002e-06 0.014769046196960227 4.0187142092280724e-05 0.018769313191031103 7.808094538687782e-05']
['59866.367885500986 0.033463660115403686 6.687237182922791e-05 0.014681664996131934 4.012354788795373e-05 0.0005192576793230333 1.4190802179449364e-06 0.014681664996131936 4.012354788795373e-05 0.018781995119271748 7.798598085030047e-05']
['59866.367917038944 0.033501321022050126 6.694057047588212e-05 0.014664857864079167 4.0122987253628796e-05 0.0005186632486240564 1.4190603895618074e-06 0.014664857864079167 4.0122987253628796e-05 0.01883646315797096 7.804418031981244e-05']
['59866.36794857691 0.03342788745247206 6.682971520983151e-05 0.014733365271330956 4.016226763608157e-05 0.0005210862025135078 1.4204496489026738e-06 0.014733365271330954 4.016226763608157e-05 0.018694522181141107 7.796934382627207e-05']
['59866.367980114876 0.033562255362839376 6.694720884266574e-05 0.014734215810996605 4.016132136828239e-05 0.0005211162842006376 1.420416181525401e-06 0.014734215810996605 4.016132136828239e-05 0.01882803955184277 7.806958758613983e-05']
['59866.368011652834 0.033614228043443134 6.701856427784312e-05 0.014705257901075472 4.014010399818152e-05 0.000520092107643847 1.4196657705629644e-06 0.014705257901075474 4.014010399818152e-05 0.01890897014236766 7.811988163616364e-05']
['59866.3680431908 0.03355435069773325 6.696256485795872e-05 0.014765788324986576 4.015897017637371e-05 0.000522232933460047 1.4203330251221955e-06 0.014765788324986578 4.015897017637371e-05 0.018788562372746672 7.808154697483396e-05']
['59866.36807472876 0.0335092114962623 6.694570427538529e-05 0.014812035606726968 4.019479881267369e-05 0.0005238685964586129 1.4216002039158364e-06 0.014812035606726968 4.019479881267369e-05 0.01869717588953533 7.808552473101948e-05']
['59866.368106266724 0.03363355774100951 6.699269104131298e-05 0.01476749063354052 4.0173601140918954e-05 0.0005222931403091642 1.4208504896398795e-06 0.01476749063354052 4.0173601140918954e-05 0.018866067107468992 7.811490819034777e-05']
['59866.36813780469 0.0335585649019612 6.695172075858685e-05 0.014760459987189346 4.016385026055682e-05 0.000522044482060293 1.4205056227934059e-06 0.014760459987189344 4.016385026055682e-05 0.018798104914771855 7.807475763835723e-05']
['59866.36816934265 0.03355215695413533 6.695971480124035e-05 0.014743051516957163 4.016970055553127e-05 0.0005214287833738219 1.4207125346520125e-06 0.014743051516957161 4.016970055553127e-05 0.01880910543717817 7.808462235923598e-05']
['59866.36820088061 0.03356178364962869 6.694490591068146e-05 0.014755345598946607 4.0171765755425214e-05 0.0005218635975781324 1.4207855761568112e-06 0.014755345598946607 4.0171765755425214e-05 0.018806438050682082 7.807298630959845e-05']
['59866.36823241858 0.03359084542600643 6.698409082808225e-05 0.014722188277085643 4.016059505360583e-05 0.0005206908972061632 1.4203904933985088e-06 0.014722188277085643 4.016059505360583e-05 0.01886865714892079 7.810084390788925e-05']
['59866.36826395654 0.03351882217091042 6.693492916023705e-05 0.0146486967046905 4.0107162694106757e-05 0.0005180916645345447 1.418500710257322e-06 0.0146486967046905 4.0107162694106757e-05 0.018870125466219922 7.803120684096524e-05']
['59866.3682954945 0.03360810599186462 6.698584700190844e-05 0.014745682994844805 4.0154278111394064e-05 0.0005215218528657009 1.4201670772700136e-06 0.014745682994844805 4.0154278111394064e-05 0.01886242299701981 7.809910210245869e-05']
['59866.36832703246 0.03360011013582773 6.700307418997106e-05 0.014649340143600822 4.010087485894652e-05 0.0005181144215308015 1.418278323580189e-06 0.014649340143600822 4.010087485894652e-05 0.018950769992226904 7.808644002232177e-05']
['59866.36835857043 0.03349165851485384 6.690182368592306e-05 0.01465469312956832 4.011820076465204e-05 0.0005183037446812523 1.4188911021438728e-06 0.01465469312956832 4.011820076465204e-05 0.018836965385285523 7.800848700683319e-05']
['59866.36839010839 0.03341177151865527 6.684552875379785e-05 0.014665961138024555 4.012108654488376e-05 0.0005187022689578326 1.4189931657413293e-06 0.014665961138024554 4.012108654488376e-05 0.018745810380630716 7.796169764645244e-05']
['59866.36842164635 0.03347645902927901 6.690040838956514e-05 0.014721024269240794 4.014713427795963e-05 0.0005206497288500953 1.4199144158469656e-06 0.014721024269240794 4.014713427795963e-05 0.018755434760038214 7.802215732356493e-05']
['59866.36845318432 0.033555715366397974 6.69569462258206e-05 0.014710146665654173 4.0140951983354755e-05 0.0005202650123212497 1.4196957619034065e-06 0.014710146665654171 4.0140951983354755e-05 0.018845568700743803 7.806746232597433e-05']
['59866.36848472228 0.03346102452999449 6.687921584144451e-05 0.014694347374268595 4.01382690930164e-05 0.00051970622669428 1.4196008740680459e-06 0.014694347374268595 4.01382690930164e-05 0.018766677155725896 7.799942408345024e-05']
['59866.36851626024 0.0334450542880791 6.68787821232785e-05 0.014654131182874671 4.0097645718902955e-05 0.000518283869882575 1.4181641161135512e-06 0.014654131182874671 4.0097645718902955e-05 0.018790923105204426 7.797815521344175e-05']
['59866.36854779821 0.0335080939767432 6.692321745815521e-05 0.014735740673280586 4.015032640633628e-05 0.0005211702151717554 1.4200273142936608e-06 0.014735740673280585 4.015032640633628e-05 0.018772353303462618 7.804335811257018e-05']
['59866.368579336166 0.0334920653039256 6.687542533746249e-05 0.014690977845296101 4.012183031896968e-05 0.0005195870539849769 1.419019471368511e-06 0.014690977845296101 4.012183031896968e-05 0.0188010874586295 7.798771558528121e-05']
['59866.36861087413 0.03356588891926385 6.694946430346311e-05 0.014683096963129805 4.014084140480027e-05 0.0005193083247954901 1.419691850987063e-06 0.014683096963129805 4.014084140480027e-05 0.018882791956134043 7.806098845906327e-05']
['59866.3686424121 0.03351501694829088 6.690809315220663e-05 0.014730833248263233 4.014256954503766e-05 0.000520996650516341 1.4197529714450933e-06 0.014730833248263232 4.014256954503766e-05 0.018784183700027646 7.802639821843979e-05']
['59866.368673950055 0.03349067236265456 6.690231357417852e-05 0.014708316213308249 4.012691299229977e-05 0.0005202002733125946 1.4191992341650902e-06 0.014708316213308249 4.012691299229977e-05 0.01878235614934631 7.801338800404267e-05']
['59866.36870548802 0.03352391894954307 6.69191979112637e-05 0.014645260439760414 4.01118139331611e-05 0.0005179701315235677 1.4186652141877665e-06 0.014645260439760414 4.01118139331611e-05 0.018878658509782653 7.802010424304378e-05']
['59866.36873702599 0.033565765524979925 6.698205932174266e-05 0.014675771967680603 4.013009056892218e-05 0.0005190492560768531 1.4193116179487589e-06 0.014675771967680601 4.013009056892218e-05 0.018889993557299325 7.808341975125928e-05']
['59866.368768563945 0.03352157580731778 6.692145357666942e-05 0.014713754639457993 4.0137054697290214e-05 0.000520392618291344 1.4195579236052254e-06 0.014713754639457993 4.0137054697290214e-05 0.018807821167859787 7.8035018476243e-05']
['59866.36880010191 0.033562004513275616 6.6984240526427e-05 0.014608583220585647 4.009661927984335e-05 0.0005166729402501168 1.4181278132579694e-06 0.014608583220585647 4.009661927984335e-05 0.018953421292689968 7.806809435726564e-05']
['59866.36883163987 0.03360921073875496 6.700836512346271e-05 0.014736621655607428 4.014985254566015e-05 0.0005212013735477762 1.4200105549005624e-06 0.014736621655607428 4.014985254566015e-05 0.018872589083147533 7.811614209596853e-05']
['59866.368863177835 0.03359848177436791 6.701940490291654e-05 0.014741017171155455 4.0147419737729654e-05 0.0005213568331093108 1.4199245119210664e-06 0.014741017171155455 4.0147419737729654e-05 0.018857464603212457 7.812436204628182e-05']
['59866.3688947158 0.033506168781848894 6.691260070810026e-05 0.014672383884711584 4.0129446820037846e-05 0.0005189294271541587 1.4192888499894141e-06 0.014672383884711582 4.0129446820037846e-05 0.01883378489713731 7.802351335080922e-05']
['59866.36892625376 0.033627645360808506 6.700218747307864e-05 0.014747089033540783 4.014237787010775e-05 0.000521571581312066 1.4197461923311907e-06 0.014747089033540783 4.014237787010775e-05 0.018880556327267723 7.810700114102508e-05']
['59866.368957791725 0.03344504526441749 6.686761892395952e-05 0.014708746085815067 4.014317852163436e-05 0.0005202154769424523 1.419774509586336e-06 0.014708746085815067 4.014317852163436e-05 0.018736299178602422 7.799200755449033e-05']
['59866.36898932969 0.033536823940156335 6.695487453370467e-05 0.014712414487084885 4.0147023568995734e-05 0.0005203452200969714 1.4199105003183327e-06 0.014712414487084885 4.0147023568995734e-05 0.01882440945307145 7.806880763322592e-05']
['59866.36902086765 0.03360036781579823 6.699853533134747e-05 0.014686132593134624 4.0140205620936285e-05 0.0005194156882445268 1.419669364732687e-06 0.014686132593134624 4.0140205620936285e-05 0.018914235222663604 7.810275183267783e-05']
['59866.369052405615 0.033541758231795046 6.692339490007105e-05 0.014753519290189839 4.0165858831238974e-05 0.0005217990051189653 1.4205766614495423e-06 0.014753519290189839 4.0165858831238974e-05 0.01878823894160521 7.80515022315514e-05']
['59866.36908394357 0.0335354493241865 6.695066458945634e-05 0.014700779292842584 4.012262723292899e-05 0.0005199337092797499 1.419047656434254e-06 0.014700779292842582 4.012262723292899e-05 0.01883467003134392 7.805265341448976e-05']
['59866.36911548154 0.03351639272164091 6.692445053814394e-05 0.014669653670711191 4.012103753751043e-05 0.000518832865586634 1.41899143246006e-06 0.014669653670711191 4.012103753751043e-05 0.01884673905092972 7.802935173970623e-05']
['59866.369147019504 0.033413612917100655 6.686033355742667e-05 0.014672784379465094 4.0131284696552526e-05 0.0005189435917585374 1.4193538515743261e-06 0.014672784379465096 4.0131284696552526e-05 0.01874082853763556 7.797963974529573e-05']
['59866.36917855746 0.033559918764669565 6.695408747613146e-05 0.01479268460607905 4.019492450332298e-05 0.0005231841948126373 1.4216046493131996e-06 0.014792684606079052 4.019492450332298e-05 0.018767234158590513 7.809277678242271e-05']
['59866.36921009543 0.03359583519783163 6.700191460826905e-05 0.014786661551011488 4.017436002297741e-05 0.0005229711728156333 1.4208773296022856e-06 0.014786661551011486 4.017436002297741e-05 0.018809173646820145 7.812320887181723e-05']
['59866.369241633394 0.03361006442216994 6.700966533627754e-05 0.014682781881243695 4.014310614575328e-05 0.000519297181053345 1.4197719498131727e-06 0.014682781881243697 4.014310614575328e-05 0.018927282540926245 7.811379020063697e-05']
['59866.36927317135 0.03353066983526311 6.695919985665592e-05 0.01465481216600805 4.0117599929137166e-05 0.0005183079547340948 1.4188698519345e-06 0.014654812166008049 4.0117599929137166e-05 0.018875857669255057 7.805739087055047e-05']
['59866.36930470932 0.03350569364363509 6.692262614724443e-05 0.014650410281693964 4.011074193747143e-05 0.0005181522699235381 1.4186273000959923e-06 0.014650410281693964 4.011074193747143e-05 0.01885528336194113 7.80224936106138e-05']
['59866.36933624728 0.03366029544005713 6.703432247168157e-05 0.01474661176214733 4.01491497565321e-05 0.0005215547012895183 1.4199856988197445e-06 0.01474661176214733 4.01491497565321e-05 0.0189136836779098 7.8138048448946e-05']
['59866.36936778524 0.0334888755932603 6.689255348988752e-05 0.014701330730261704 4.014577937845376e-05 0.0005199532123888741 1.4198664960794652e-06 0.014701330730261704 4.014577937845376e-05 0.0187875448629986 7.801472498381921e-05']
['59866.36939932321 0.033486660811992384 6.691731243051422e-05 0.014664990937854627 4.012630458614426e-05 0.000518667955146092 1.4191777161990775e-06 0.014664990937854627 4.012630458614426e-05 0.018821669874137758 7.802593814023048e-05']
['59866.36943086117 0.03351983806126483 6.692474911255965e-05 0.014621775850255862 4.008568287566046e-05 0.0005171395340777603 1.4177410170834453e-06 0.014621775850255862 4.008568287566046e-05 0.018898062211008967 7.801143515784767e-05']
['59866.36946239913 0.03345523902365941 6.689801713975665e-05 0.014745266316756087 4.015551638471946e-05 0.0005215071158929236 1.4202108722301548e-06 0.014745266316756085 4.015551638471946e-05 0.018709972706903326 7.802442049355219e-05']
['59866.3694939371 0.03348454960864619 6.691603332122072e-05 0.014703653599290807 4.015459002391944e-05 0.0005200353670751268 1.4201781089189526e-06 0.014703653599290807 4.015459002391944e-05 0.018780896009355383 7.803939143429922e-05']
['59866.36952547506 0.03347618285195505 6.690420588184611e-05 0.014663769534118087 4.0106017985200194e-05 0.0005186247568256073 1.4184602244615707e-06 0.014663769534118087 4.0106017985200194e-05 0.01881241331783696 7.800426554560752e-05']
['59866.36955701302 0.03345806362005546 6.68676494614561e-05 0.014706556100720887 4.014268395602584e-05 0.0005201380220639998 1.4197570179060516e-06 0.014706556100720887 4.014268395602584e-05 0.018751507519334576 7.799177918020299e-05']
['59866.36958855098 0.03352497313001664 6.689877036324278e-05 0.01476209842237032 4.0164472479234966e-05 0.000522102429850957 1.420527629277475e-06 0.014762098422370322 4.0164472479234966e-05 0.018762874707646322 7.802967592941236e-05']
['59866.369620088946 0.033584123060528784 6.696643106031138e-05 0.014784143818245915 4.0169755596808694e-05 0.0005228821262345167 1.4207144813389848e-06 0.014784143818245915 4.0169755596808694e-05 0.01879997924228287 7.809041012610179e-05']
['59866.36965162691 0.03349611617412151 6.693247153641347e-05 0.014731428700549038 4.015748824025879e-05 0.0005210177103329325 1.4202806123537431e-06 0.01473142870054904 4.015748824025879e-05 0.018764687473572468 7.805497810991509e-05']
['59866.36968316487 0.03350748371314194 6.689709625299846e-05 0.014668027155661316 4.012720286727704e-05 0.0005187753393843671 1.4192094863952038e-06 0.014668027155661316 4.012720286727704e-05 0.01883945655748062 7.800906291601347e-05']
['59866.369714702836 0.033552234549517015 6.694639138431757e-05 0.014747354158918455 4.0157080221581746e-05 0.0005215809582041539 1.4202661816450042e-06 0.014747354158918454 4.0157080221581746e-05 0.018804880390598563 7.806670488309842e-05']
['59866.3697462408 0.033544711928480034 6.693426047426638e-05 0.014735446510828748 4.015564833016005e-05 0.0005211598113032483 1.4202155388455077e-06 0.01473544651082875 4.015564833016005e-05 0.018809265417651284 7.805556558024817e-05']
['59866.36977777876 0.033397216463755104 6.682237683101316e-05 0.014678786661666771 4.0117623878337916e-05 0.0005191558790656995 1.4188706989642073e-06 0.014678786661666773 4.0117623878337916e-05 0.01871842980208833 7.794006537711983e-05']
['59866.369809316726 0.033596362311660036 6.698981646227224e-05 0.014780050867772801 4.0183856609119505e-05 0.0005227373677234886 1.4212132026305104e-06 0.014780050867772803 4.0183856609119505e-05 0.018816311443887235 7.811771784704926e-05']
['59866.369840854684 0.03359401382582646 6.69777782516686e-05 0.014746911170147665 4.015639419150972e-05 0.0005215652906813528 1.4202419182945436e-06 0.014746911170147666 4.015639419150972e-05 0.018847102655678794 7.809326970996673e-05']
['59866.36987239265 0.03357450307178107 6.69771166056908e-05 0.014767017699883913 4.0186115803368134e-05 0.0005222764137026746 1.4212931052820824e-06 0.014767017699883913 4.0186115803368134e-05 0.018807485371897158 7.810798968206783e-05']
['59866.369903930616 0.033458864697974 6.687647317692211e-05 0.014620331301042401 4.007699643739156e-05 0.0005170884436004577 1.4174337971749215e-06 0.014620331301042401 4.007699643739156e-05 0.018838533396931603 7.796555847312503e-05']
['59866.369935468574 0.03355127694264825 6.697432315624368e-05 0.014632583044607104 4.0104874419656096e-05 0.0005175217603893058 1.4184197791039944e-06 0.014632583044607104 4.0104874419656096e-05 0.018918693898041145 7.806382590197168e-05']
['59866.36996700654 0.033446531917022564 6.68575027909278e-05 0.014679762510753737 4.011566629183206e-05 0.000519190392667011 1.4188014635044437e-06 0.014679762510753735 4.011566629183206e-05 0.018766769406268827 7.796917571371747e-05']
['59866.369998544506 0.03343648384255402 6.685624940525045e-05 0.014792416548003118 4.01779093803389e-05 0.000523174714197566 1.4210028624398145e-06 0.014792416548003118 4.01779093803389e-05 0.018644067294550905 7.800014414545512e-05']
['59866.370030082464 0.033474869983125814 6.688588323149385e-05 0.01464386262455655 4.010238356395512e-05 0.0005179206939237401 1.4183316831045858e-06 0.014643862624556548 4.010238356395512e-05 0.01883100735856927 7.798668183201288e-05']
['59866.37006162043 0.03353683608761541 6.690552982446854e-05 0.014774665084887362 4.016835354143302e-05 0.0005225468846193469 1.4206648937737566e-06 0.01477466508488736 4.016835354143302e-05 0.018762171002728048 7.803746886798933e-05']
['59866.37009315839 0.03346943252814845 6.68926362415373e-05 0.01471931335886053 4.015597021589009e-05 0.0005205892177736049 1.4202269232244069e-06 0.014719313358860528 4.015597021589009e-05 0.01875011916928792 7.802004054934913e-05']
['59866.370124696354 0.03355722455818274 6.695667776947847e-05 0.014720955706938559 4.014499650758713e-05 0.000520647303954693 1.419838807686526e-06 0.014720955706938559 4.014499650758713e-05 0.018836268851244183 7.806931178459276e-05']
['59866.37015623432 0.03352895582073374 6.691315543438737e-05 0.014713731273827198 4.012590455629249e-05 0.0005203917919012019 1.4191635680372346e-06 0.014713731273827198 4.012590455629249e-05 0.01881522454690654 7.802216727730126e-05']
['59866.37018777228 0.03362094931686325 6.698523678233278e-05 0.014663668738645837 4.011685270012992e-05 0.0005186211919150184 1.4188434241144723e-06 0.014663668738645837 4.011685270012992e-05 0.01895728057821741 7.807934308989228e-05']
['59866.37021931024 0.033450358181959135 6.685627121207688e-05 0.014675060554753743 4.0122977331246e-05 0.0005190240949915445 1.4190600386293031e-06 0.014675060554753743 4.0122977331246e-05 0.01877529762720539 7.797188153627216e-05']
['59866.37025084821 0.033635494309182216 6.702780432624515e-05 0.014644357959068181 4.011669476290931e-05 0.0005179382127984091 1.4188378382279483e-06 0.014644357959068181 4.011669476290931e-05 0.018991136350114034 7.811578426603579e-05']
['59866.37028238617 0.03341078082577217 6.685586968753943e-05 0.014652881399579602 4.011147763990259e-05 0.0005182396678405296 1.4186533202467843e-06 0.014652881399579602 4.011147763990259e-05 0.018757899426192565 7.796562030878519e-05']
['59866.37031392413 0.03367870783623914 6.70190934986672e-05 0.014724194477984509 4.012930272569189e-05 0.0005207618520483609 1.4192837536944295e-06 0.014724194477984509 4.012930272569189e-05 0.018954513358254634 7.811478624840062e-05']
['59866.37034546209 0.03349541492489514 6.69231796964252e-05 0.014635270921647762 4.010172082468508e-05 0.0005176168245931823 1.4183082434977396e-06 0.014635270921647762 4.010172082468508e-05 0.018860144003247377 7.801833113942518e-05']
['59866.37037700006 0.03353421830658081 6.693315381598412e-05 0.014648047979380515 4.012333817171134e-05 0.0005180687205701463 1.4190728007501312e-06 0.014648047979380515 4.012333817171134e-05 0.018886170327200292 7.803799937079178e-05']
['59866.37040853802 0.033498717589401414 6.693381302354137e-05 0.014647987267256492 4.010710405011551e-05 0.0005180665733180033 1.4184986361504131e-06 0.014647987267256494 4.010710405011551e-05 0.018850730322144918 7.803021928174487e-05']
['59866.37044007598 0.03349873972842205 6.692994843737659e-05 0.014730237565952405 4.014953490811131e-05 0.0005209755825642786 1.4199993207703382e-06 0.014730237565952405 4.014953490811131e-05 0.018768502162469648 7.804872293104826e-05']
['59866.37047161395 0.033496433791775554 6.690187237859403e-05 0.014650014341173228 4.0113202501552304e-05 0.0005181382663921946 1.4187143247484956e-06 0.014650014341173226 4.0113202501552304e-05 0.01884641945060233 7.800595837942269e-05']
['59866.37050315191 0.03353877410463217 6.691584037809112e-05 0.014706747911001596 4.014187816118994e-05 0.0005201448059649577 1.4197285187435514e-06 0.014706747911001596 4.014187816118994e-05 0.018832026193630575 7.80326859451473e-05']
['59866.37053468987 0.03359396674209881 6.697661185194296e-05 0.014806628507873142 4.018908171968365e-05 0.0005236773594563078 1.4213980031137295e-06 0.014806628507873142 4.018908171968365e-05 0.018787338234225667 7.810908285620332e-05']
['59866.37056622784 0.033548251391557586 6.69320988943332e-05 0.01470196353063117 4.0134738302946156e-05 0.0005199755931237166 1.4194759979141129e-06 0.014701963530631171 4.0134738302946156e-05 0.018846287860926417 7.804295663957621e-05']
['59866.370597765796 0.03351732372568972 6.695134074127075e-05 0.014637569357031036 4.012014262806173e-05 0.000517698115115988 1.418959781512864e-06 0.014637569357031036 4.012014262806173e-05 0.018879754368658682 7.805195623140881e-05']
['59866.37062930376 0.033497548706702865 6.69162923389941e-05 0.014801504814165251 4.019093012322403e-05 0.0005234961458606412 1.421463377016014e-06 0.014801504814165251 4.019093012322403e-05 0.018696043892537616 7.805831822789674e-05']
['59866.37066084173 0.033402588208393695 6.685394614010137e-05 0.014691870639213655 4.013950101502087e-05 0.0005196186301105639 1.4196444443961605e-06 0.014691870639213657 4.013950101502087e-05 0.018710717569180038 7.797839223937895e-05']
['59866.370692379685 0.03356248728172006 6.698893831480467e-05 0.014705417236980758 4.014070752310594e-05 0.0005200977429987221 1.4196871158907425e-06 0.014705417236980758 4.014070752310594e-05 0.0188570700447393 7.809477739900562e-05']
['59866.37072391765 0.033474105958110095 6.692289243099367e-05 0.014792269851284534 4.018201380379623e-05 0.0005231695258624776 1.4211480267246538e-06 0.014792269851284533 4.018201380379623e-05 0.018681836106825563 7.805938614067382e-05']
['59866.37075545562 0.03351082948686133 6.692263646876328e-05 0.014689652599957068 4.0130073031288025e-05 0.0005195401830190843 1.4193109976818332e-06 0.014689652599957068 4.0130073031288025e-05 0.01882117688690426 7.803244218545741e-05']
['59866.370786993575 0.03337722100256001 6.683785360290276e-05 0.014657572506776562 4.012070390066513e-05 0.0005184055818180785 1.4189796324704759e-06 0.01465757250677656 4.012070390066513e-05 0.018719648495783454 7.795492002258682e-05']
['59866.37081853154 0.033450895294433854 6.688308573087901e-05 0.014626545884375081 4.009352845388972e-05 0.0005173082395241583 1.418018497651579e-06 0.014626545884375083 4.009352845388972e-05 0.01882434941005877 7.797972929400933e-05']
['59866.3708500695 0.03358335046450138 6.698135519924846e-05 0.014773568687195525 4.0178459324293e-05 0.0005225081074832912 1.4210223127284186e-06 0.014773568687195524 4.0178459324293e-05 0.018809781777305856 7.810768552454845e-05']
['59866.370881607465 0.03353643373079299 6.694417931173453e-05 0.01469229234208063 4.0136244314548156e-05 0.0005196335447985183 1.4195292621787377e-06 0.014692292342080629 4.0136244314548156e-05 0.018844141388712363 7.805409182995318e-05']
['59866.37091314543 0.0335350771457089 6.693799660551732e-05 0.014739925268422528 4.015012199149802e-05 0.0005213182149499062 1.4200200845976717e-06 0.01473992526842253 4.015012199149802e-05 0.01879515187728637 7.805592665193605e-05']
['59866.37094468339 0.033351432274999836 6.680766056351369e-05 0.014639773669517107 4.010862295838712e-05 0.0005177760767222717 1.4185523565414199e-06 0.014639773669517105 4.010862295838712e-05 0.018711658605482732 7.792281530840452e-05']
['59866.370976221355 0.03346598150311387 6.688708452300841e-05 0.014635162789122878 4.010079594484137e-05 0.0005176130001874391 1.4182755325646523e-06 0.014635162789122878 4.010079594484137e-05 0.01883081871399099 7.798689576716e-05']
['59866.37100775932 0.033475545855284984 6.68744243744153e-05 0.014659972272396668 4.009958730027892e-05 0.0005184904561649011 1.4182327855076402e-06 0.014659972272396666 4.009958730027892e-05 0.018815573582888316 7.79754162352602e-05']
['59866.37103929728 0.03356061614744646 6.693223900486417e-05 0.014749244927321763 4.017016737373062e-05 0.0005216478304569602 1.4207290449684461e-06 0.014749244927321761 4.017016737373062e-05 0.018811371220124697 7.806130260915323e-05']
['59866.371070835245 0.03347232610719515 6.691708836091472e-05 0.01472897133388611 4.015065655364507e-05 0.0005209307987659559 1.4200389908661369e-06 0.014728971333886108 4.015065655364507e-05 0.018743354773309046 7.803827225401156e-05']
['59866.3711023732 0.03344965787866974 6.687494052598954e-05 0.01472582966196121 4.0142841143016536e-05 0.0005208196848511958 1.4197625772586204e-06 0.01472582966196121 4.0142841143016536e-05 0.01872382821670853 7.799811129372363e-05']
['59866.37113391117 0.03340161504005524 6.684720629833623e-05 0.01467517609519204 4.012837405544517e-05 0.0005190281813986293 1.4192509087032592e-06 0.01467517609519204 4.012837405544517e-05 0.0187264389448632 7.796688652387017e-05']
['59866.371165449134 0.033458186804249404 6.687817633427263e-05 0.01457971339881091 4.0070095591377025e-05 0.0005156518791741988 1.4171897296738705e-06 0.014579713398810912 4.0070095591377025e-05 0.01887847340543849 7.796347241176574e-05']
['59866.37119698709 0.03351719378316778 6.692143120640196e-05 0.014751789363039166 4.01754997612094e-05 0.0005217378214618057 1.420917639596386e-06 0.014751789363039166 4.01754997612094e-05 0.018765404420128615 7.80547803518537e-05']
['59866.37122852506 0.03346088382062404 6.688803431103672e-05 0.01462861605347342 4.0094783408083345e-05 0.0005173814567786108 1.4180628825767499e-06 0.01462861605347342 4.0094783408083345e-05 0.018832267767150617 7.798461893563077e-05']
['59866.371260063024 0.03340259090055648 6.683753760528974e-05 0.014659782640604111 4.011340537533975e-05 0.0005184837493122005 1.4187214999409615e-06 0.014659782640604111 4.011340537533975e-05 0.01874280825995237 7.795089302852698e-05']
['59866.37129160098 0.03355021862800521 6.695815896050435e-05 0.014644042850125593 4.010709611531568e-05 0.0005179270680993368 1.4184983555142764e-06 0.014644042850125593 4.010709611531568e-05 0.01890617577787962 7.805109999342314e-05']
['59866.37132313895 0.0334987332094985 6.692116739021774e-05 0.014650806270194114 4.010514412218053e-05 0.0005181662751518062 1.418429317879534e-06 0.014650806270194116 4.010514412218053e-05 0.018847926939304382 7.801836469659188e-05']
['59866.37135467691 0.03350718998639726 6.690080786991466e-05 0.014713926127190158 4.013110936155272e-05 0.0005203986834291781 1.4193476503672336e-06 0.014713926127190156 4.013110936155272e-05 0.018793263859207106 7.801425531424459e-05']
['59866.37138621487 0.03344951887080781 6.688299477558015e-05 0.014649585188364988 4.012745823644761e-05 0.0005181230882164672 1.4192185182320503e-06 0.014649585188364988 4.012745823644761e-05 0.018799933682442822 7.799710183505621e-05']
['59866.37141775284 0.033524674554239874 6.697199325929594e-05 0.014699796640628955 4.0136715813631523e-05 0.0005198989550670524 1.419545938047578e-06 0.014699796640628957 4.0136715813631523e-05 0.018824877913610916 7.807819053632967e-05']
['59866.3714492908 0.03366501515620877 6.704251865499539e-05 0.014750070441336421 4.015984018921702e-05 0.0005216770270427435 1.4203637955320992e-06 0.014750070441336421 4.015984018921702e-05 0.018914944714872345 7.81505730729395e-05']
['59866.37148082876 0.03346081060884185 6.689164464337345e-05 0.014693603090022808 4.0143999243973005e-05 0.0005196799030238839 1.4198035367012474e-06 0.014693603090022806 4.0143999243973005e-05 0.018767207518819044 7.801302967066115e-05']
['59866.37151236673 0.03355131397296667 6.696472329814717e-05 0.014732099396625795 4.015344061407107e-05 0.0005210414313542498 1.4201374568613955e-06 0.014732099396625795 4.015344061407107e-05 0.01881921457634088 7.808055429839844e-05']
['59866.37154390469 0.033436832745964526 6.688006864600549e-05 0.014721178543193558 4.015551826819992e-05 0.0005206551851750225 1.4202109388446492e-06 0.014721178543193558 4.015551826819992e-05 0.01871565420277097 7.800903299927607e-05']
['59866.37157544265 0.03351430853066579 6.694404665696506e-05 0.014725820330037977 4.013185366580258e-05 0.0005208193548019266 1.4193739747451291e-06 0.014725820330037977 4.013185366580258e-05 0.018788488200627812 7.805172042603101e-05']
['59866.37160698061 0.03363138688240207 6.70224630449472e-05 0.014748999823480253 4.0173044389722214e-05 0.0005216391616818609 1.4208307985943166e-06 0.014748999823480251 4.0173044389722214e-05 0.018882387058921816 7.814015643796667e-05']
['59866.371638518576 0.03348838621230304 6.689924216695536e-05 0.014712801029699974 4.014218191838521e-05 0.0005203588912453953 1.4197392619566908e-06 0.014712801029699974 4.014218191838521e-05 0.018775585182603062 7.80186091370621e-05']
['59866.37167005654 0.033512958026109076 6.690895339480228e-05 0.014722575317403903 4.013627427385827e-05 0.0005207045859572358 1.4195303217725812e-06 0.014722575317403903 4.013627427385827e-05 0.018790382708705172 7.802389734545564e-05']
['59866.3717015945 0.03347764039730289 6.69152635593708e-05 0.014717427541774233 4.0164615017042173e-05 0.0005205225206378158 1.4205326705211628e-06 0.014717427541774231 4.0164615017042173e-05 0.018760212855528657 7.804389019447498e-05']
['59866.371733132466 0.03354843321610727 6.694641927520438e-05 0.014671485853666231 4.0113840371000856e-05 0.0005188976658030659 1.4187368847653367e-06 0.014671485853666231 4.0113840371000856e-05 0.01887694736244104 7.804449527725574e-05']
['59866.37176467043 0.033530684691140365 6.691980539260078e-05 0.014716264715413296 4.014554934726022e-05 0.0005204813940681935 1.4198583603902394e-06 0.014716264715413298 4.014554934726022e-05 0.018814419975727067 7.803797464168882e-05']
['59866.37179620839 0.03341561888456212 6.685682564325469e-05 0.01479359889774166 4.017371050604991e-05 0.0005232165312654221 1.4208543576401449e-06 0.01479359889774166 4.017371050604991e-05 0.01862201998682046 7.799847531148582e-05']
['59866.371827746356 0.03357615192791894 6.699312785975784e-05 0.01472741424145613 4.014517786020597e-05 0.0005208757278866044 1.419845221723355e-06 0.014727414241456132 4.014517786020597e-05 0.018848737686462808 7.81006689207041e-05']
['59866.371859284314 0.03353520008055108 6.694935109865536e-05 0.014763587123259278 4.017156007157515e-05 0.0005221550818743487 1.4207783015787107e-06 0.014763587123259278 4.017156007157515e-05 0.0187716129572918 7.807669211176403e-05']
['59866.37189082228 0.0335197971520415 6.693069495555174e-05 0.014662972523340525 4.013176095193213e-05 0.0005185965683356192 1.4193706956627345e-06 0.014662972523340525 4.013176095193213e-05 0.018856824628700974 7.804022145237764e-05']
['59866.371922360246 0.03351257348511395 6.691738417627881e-05 0.014730159414124214 4.015342161279841e-05 0.0005209728185087746 1.4201367848288471e-06 0.014730159414124214 4.015342161279841e-05 0.01878241407098974 7.803994856617242e-05']
['59866.371953898204 0.033520639957441464 6.69259981590038e-05 0.014794100420765526 4.018258383984813e-05 0.0005232342690139382 1.421168187625854e-06 0.014794100420765524 4.018258383984813e-05 0.01872653953667594 7.806234222482313e-05']
['59866.37198543617 0.03353907691686525 6.695232951349775e-05 0.014653575086567661 4.0120784153074595e-05 0.0005182642019989981 1.4189824708188452e-06 0.014653575086567661 4.0120784153074595e-05 0.01888550183029759 7.805313413529007e-05']
['59866.372016974135 0.033574072520091106 6.695110618591332e-05 0.0146607820839386 4.012288373988902e-05 0.000518519097389317 1.4190567285121712e-06 0.0146607820839386 4.012288373988902e-05 0.018913290436152506 7.805316405580297e-05']
['59866.372048512094 0.03345421667122108 6.688351845755543e-05 0.014637631069780452 4.009889592103241e-05 0.0005177002977580149 1.4182083329688329e-06 0.014637631069780454 4.009889592103241e-05 0.018816585601440627 7.798286026652234e-05']
['59866.37208005006 0.033593965442415635 6.696187183413939e-05 0.014772602930249441 4.017144722137204e-05 0.000522473950818448 1.4207743103192321e-06 0.014772602930249441 4.017144722137204e-05 0.018821362512166193 7.80873706266973e-05']
['59866.37211158802 0.03359828583441805 6.69958654525423e-05 0.014701155989367746 4.013940258587735e-05 0.0005199470321939778 1.4196409631773303e-06 0.014701155989367748 4.013940258587735e-05 0.0188971298450503 7.810004883280348e-05']
['59866.372143125984 0.033612750042975245 6.700159888750628e-05 0.014692350932405352 4.013762483923371e-05 0.000519635617007362 1.4195780882515748e-06 0.01469235093240535 4.013762483923371e-05 0.018920399110569894 7.810405355176743e-05']
['59866.37217466395 0.03362477659376904 6.699781500002365e-05 0.014721340437541613 4.0142887192788605e-05 0.0005206609110163007 1.4197642059361434e-06 0.014721340437541615 4.0142887192788605e-05 0.01890343615622743 7.81035121294193e-05']
['59866.37220620191 0.0334306252841903 6.686528925614576e-05 0.014663688512962065 4.0131863956806574e-05 0.0005186218912883905 1.4193743387149413e-06 0.014663688512962066 4.0131863956806574e-05 0.018766936771228235 7.798418693527343e-05']
['59866.37223773987 0.033570026536076665 6.696496633479222e-05 0.014679322075520987 4.014844541766652e-05 0.0005191748154571435 1.4199607879281735e-06 0.014679322075520987 4.014844541766652e-05 0.018890704460555678 7.807819404721912e-05']
['59866.37226927784 0.03353066437612343 6.694219080815822e-05 0.014730412973109593 4.0144190772640544e-05 0.0005209817863234164 1.4198103106421768e-06 0.014730412973109591 4.0144190772640544e-05 0.01880025140301384 7.805647290895241e-05']
['59866.3723008158 0.033462151229599106 6.687670788304194e-05 0.014573205624062098 4.006898047936354e-05 0.0005154217137253538 1.4171502906540823e-06 0.014573205624062098 4.006898047936354e-05 0.018888945605537007 7.796163963084243e-05']
['59866.37233235376 0.033630581842088454 6.700653165253398e-05 0.014716107447826808 4.014121067355033e-05 0.0005204758318651317 1.4197049111974854e-06 0.014716107447826808 4.014121067355033e-05 0.018914474394261645 7.811012788646803e-05']
['59866.37236389172 0.0334285366969022 6.686394434580887e-05 0.014744765068298875 4.01697058326076e-05 0.0005214893878552165 1.4207127212904087e-06 0.014744765068298877 4.01697058326076e-05 0.01868377162860332 7.800251483226458e-05']
['59866.37239542969 0.03351775119211497 6.692672474991454e-05 0.014741186679324097 4.0170082389303926e-05 0.0005213628282344072 1.420726039259203e-06 0.014741186679324097 4.0170082389303926e-05 0.01877656451279087 7.805653082807542e-05']
['59866.37242696765 0.033528717750632896 6.692394175754271e-05 0.014697433880724817 4.0143285272480455e-05 0.0005198153895297006 1.4197782851251883e-06 0.014697433880724815 4.0143285272480455e-05 0.01883128386990808 7.804035707782683e-05']
['59866.37245850561 0.033452609440011244 6.686294825345301e-05 0.014675093172013888 4.012119329852868e-05 0.0005190252485911405 1.4189969413791698e-06 0.014675093172013888 4.012119329852868e-05 0.018777516267997355 7.797668882968703e-05']
['59866.37249004358 0.033530814890471175 6.692423044824612e-05 0.014707516931653833 4.014651326069959e-05 0.0005201720045067673 1.4198924518543701e-06 0.014707516931653833 4.014651326069959e-05 0.01882329795881734 7.804226513935562e-05']
['59866.37252158154 0.033453250748768246 6.688178371243559e-05 0.01464737999373237 4.01023224181146e-05 0.0005180450954106315 1.4183295205128596e-06 0.014647379993732371 4.01023224181146e-05 0.018805870755035876 7.798313443228242e-05']
['59866.3725531195 0.03343457477563706 6.684214342435339e-05 0.014620624360607931 4.009683410246928e-05 0.0005170988084623409 1.4181354110541481e-06 0.014620624360607933 4.009683410246928e-05 0.018813950415029132 7.794631641458609e-05']
['59866.37258465747 0.033482899777684025 6.68903798976039e-05 0.014694554172380855 4.01342959170283e-05 0.0005197135406813441 1.4194603517128727e-06 0.014694554172380856 4.01342959170283e-05 0.018788345605303167 7.800695245682506e-05']
['59866.372616195426 0.03354502100274142 6.693397252148095e-05 0.014776211615078983 4.016767828040681e-05 0.0005226015819359331 1.4206410113003793e-06 0.014776211615078985 4.016767828040681e-05 0.018768809387662434 7.806150815827628e-05']
['59866.37264773339 0.03356939556722839 6.69664721881796e-05 0.014724798954009691 4.01573891828892e-05 0.0005207832310144472 1.4202771089159608e-06 0.01472479895400969 4.01573891828892e-05 0.018844596613218703 7.808408482729537e-05']
['59866.37267927136 0.033545878441053174 6.69251020973546e-05 0.014713009672043496 4.01362083177478e-05 0.0005203662704587975 1.4195279890523573e-06 0.014713009672043498 4.01362083177478e-05 0.018832868769009678 7.80377120940061e-05']
['59866.372710809315 0.03350481728891589 6.691025787052504e-05 0.014742752763728379 4.016347637201946e-05 0.0005214182171397939 1.4204923991914312e-06 0.014742752763728377 4.016347637201946e-05 0.018762064525187513 7.803901231170167e-05']
['59866.37274234728 0.03351964104036374 6.691712051982576e-05 0.01468699789997803 4.014421752121788e-05 0.0005194462922137311 1.4198112566795778e-06 0.014686997899978032 4.014421752121788e-05 0.018832643140385713 7.803498714714921e-05']
['59866.37277388524 0.03356303050537887 6.698788104545326e-05 0.014747934316313379 4.0165848140201116e-05 0.000521601477074637 1.4205762833314265e-06 0.014747934316313379 4.0165848140201116e-05 0.018815096189065492 7.810679588730735e-05']
['59866.372805423205 0.03350302703821819 6.691836291586343e-05 0.014615796593071499 4.008627892583615e-05 0.0005169280611140027 1.4177620980460658e-06 0.014615796593071499 4.008627892583615e-05 0.01888723044514669 7.800626291176332e-05']
['59866.37283696117 0.033563987062792275 6.696033860179116e-05 0.014723647933733902 4.0143225734282244e-05 0.0005207425219996715 1.4197761793921776e-06 0.014723647933733902 4.0143225734282244e-05 0.018840339129058373 7.807154102501157e-05']
['59866.37286849913 0.0333005741018018 6.67859117083097e-05 0.014699787846371612 4.0135312749235704e-05 0.0005198986440338242 1.4194963147955622e-06 0.014699787846371612 4.0135312749235704e-05 0.018600786255430192 7.791791406466872e-05']
['59866.372900037095 0.03355462394085427 6.695561071192099e-05 0.01471361106712771 4.0157786008668514e-05 0.0005203875404588871 1.420291143756922e-06 0.01471361106712771 4.0157786008668514e-05 0.01884101287372656 7.807497411414442e-05']
['59866.37293157506 0.03357270167848083 6.699543225890082e-05 0.01466281882147924 4.0107019839026297e-05 0.000518591132244289 1.4184956577923884e-06 0.01466281882147924 4.0107019839026297e-05 0.01890988285700159 7.808303902849209e-05']
['59866.37296311302 0.03352529665042523 6.694470414724899e-05 0.014710218529561182 4.015152889942163e-05 0.0005202675539870342 1.4200698437866757e-06 0.01471021852956118 4.015152889942163e-05 0.01881507812086405 7.806240251442296e-05']
['59866.372994650985 0.03354131110226456 6.694421578172066e-05 0.014764644953827328 4.016091951942969e-05 0.0005221924949774285 1.4204019690295602e-06 0.014764644953827328 4.016091951942969e-05 0.018776666148437232 7.806681422522432e-05']
['59866.37302618894 0.03357590418180379 6.694303088051073e-05 0.014763544431813417 4.016615083601327e-05 0.0005221535719733183 1.420586989005817e-06 0.014763544431813417 4.016615083601327e-05 0.018812359749990376 7.8068489523305e-05']
['59866.37305772691 0.0335525221834633 6.697625095745929e-05 0.014728509907804208 4.0146319779940265e-05 0.0005209144791566657 1.4198856088723167e-06 0.014728509907804208 4.0146319779940265e-05 0.018824012275659094 7.808677982981364e-05']
['59866.373089264875 0.0334622607943563 6.686608513051671e-05 0.01477823132603371 4.01825732124987e-05 0.0005226730145986133 1.4211678117602553e-06 0.014778231326033708 4.01825732124987e-05 0.018684029468322587 7.801097698823754e-05']
['59866.37312080283 0.033488192905521824 6.691500346578284e-05 0.014665642145455871 4.01312565320749e-05 0.0005186909869035847 1.4193528554596963e-06 0.014665642145455873 4.01312565320749e-05 0.01882255076006595 7.802650472543887e-05']
['59866.3731523408 0.03365016028714361 6.703661298945314e-05 0.014696344396477169 4.013257500700246e-05 0.0005197768569067153 1.4193994869712664e-06 0.014696344396477169 4.013257500700246e-05 0.018953815890666442 7.813149849958336e-05']
['59866.373183878764 0.033503641439290015 6.690794791761823e-05 0.014727028053465544 4.0157634061396265e-05 0.0005208620692804567 1.4202857697214846e-06 0.014727028053465544 4.0157634061396265e-05 0.01877661338582447 7.803402506570917e-05']
['59866.37321541672 0.033456506044324735 6.687980377577999e-05 0.014677747204476638 4.011323999300188e-05 0.0005191191157879345 1.4187156507372787e-06 0.014677747204476638 4.011323999300188e-05 0.018778758839848097 7.79870513343273e-05']
['59866.37324695469 0.03349989508065485 6.691444032597282e-05 0.014697656012738026 4.014532152310291e-05 0.000519823245842572 1.4198503027589522e-06 0.014697656012738026 4.014532152310291e-05 0.018802239067916827 7.803325678408845e-05']
['59866.37327849265 0.03343107779927358 6.687733430524972e-05 0.014642944171657448 4.0095566171746965e-05 0.0005178882102973203 1.4180905671781584e-06 0.014642944171657447 4.0095566171746965e-05 0.018788133627616135 7.79758441468194e-05']
['59866.37331003061 0.03345688519100067 6.686666611644798e-05 0.014777876645172923 4.018024117903851e-05 0.0005226604703292324 1.4210853329485564e-06 0.014777876645172923 4.018024117903851e-05 0.018679008545827748 7.801027380245652e-05']
['59866.37334156858 0.03356099505748105 6.692217870864488e-05 0.014710308437925937 4.013979491464824e-05 0.0005202707338449623 1.4196548389691535e-06 0.014710308437925937 4.013979491464824e-05 0.018850686619555114 7.803704978343186e-05']
['59866.37337310654 0.0335379946159338 6.693575776557961e-05 0.014681073677020734 4.012970389532244e-05 0.0005192367656875905 1.419297942167701e-06 0.014681073677020732 4.012970389532244e-05 0.018856920938913065 7.804350583090567e-05']
['59866.3734046445 0.03353312939467171 6.69187652953329e-05 0.014742278157395568 4.016203252708658e-05 0.0005214014313744852 1.4204413336229587e-06 0.014742278157395568 4.016203252708658e-05 0.01879085123727614 7.804556364943885e-05']
['59866.37343618247 0.03346586604411959 6.688994158633287e-05 0.014714388966718934 4.01385033017393e-05 0.0005204150530289255 1.4196091575071493e-06 0.014714388966718936 4.01385033017393e-05 0.01875147707740065 7.800874138663411e-05']
['59866.37346772043 0.0334940773060827 6.69230706224139e-05 0.0147511268482704 4.017208539514126e-05 0.0005217143897950678 1.4207968810992151e-06 0.0147511268482704 4.017208539514126e-05 0.018742950457812296 7.805442861572379e-05']
['59866.37349925839 0.03358630710684273 6.69724368382297e-05 0.014758048666384645 4.0160951389438024e-05 0.0005219591990324156 1.4204030962005298e-06 0.014758048666384645 4.0160951389438024e-05 0.018828258440458087 7.809103221596875e-05']
['59866.37353079635 0.03352455705722655 6.694460989657933e-05 0.014665405022456243 4.013643844682272e-05 0.0005186826003930265 1.419536128203429e-06 0.014665405022456243 4.013643844682272e-05 0.01885915203477031 7.805456095194422e-05']
['59866.37356233432 0.0334026445690223 6.679983105890032e-05 0.014667477458277404 4.010921777917687e-05 0.0005187558978163995 1.418573394023407e-06 0.014667477458277404 4.010921777917687e-05 0.018735167110744893 7.791640892876841e-05']
['59866.37359387228 0.03357763174053887 6.699441384593055e-05 0.014722394171165904 4.015945943442772e-05 0.0005206981792196358 1.4203503290861383e-06 0.014722394171165902 4.015945943442772e-05 0.01885523756937297 7.810911386403802e-05']
['59866.37362541024 0.03348706755720591 6.689613513225341e-05 0.014654302637202948 4.011015488697137e-05 0.0005182899338389882 1.418606537431786e-06 0.014654302637202948 4.011015488697137e-05 0.01883276492000296 7.799947064364952e-05']
['59866.373656948206 0.03348757485693514 6.690578934697783e-05 0.014700155858988172 4.013102399284377e-05 0.0005199116598176121 1.419344631066786e-06 0.014700155858988172 4.013102399284377e-05 0.01878741899794697 7.80184832898998e-05']
['59866.37368848617 0.03342792409571397 6.686138474453827e-05 0.014679470410620357 4.0128332441428673e-05 0.0005191800617380987 1.4192494369084973e-06 0.014679470410620355 4.0128332441428673e-05 0.018748453685093612 7.79790217589769e-05']
['59866.37372002413 0.03348347965073519 6.690278612337178e-05 0.014689192102606153 4.015056677288797e-05 0.0005195238962569335 1.4200358155214063e-06 0.014689192102606153 4.015056677288797e-05 0.01879428754812904 7.802596236672613e-05']
['59866.373751562096 0.03347821164703404 6.687410648486636e-05 0.0145980586322952 4.00818563145243e-05 0.0005163007090833542 1.41760568016792e-06 0.0145980586322952 4.00818563145243e-05 0.01888015301473884 7.796602672810393e-05']
['59866.373783100054 0.033387869514542944 6.68240135305295e-05 0.014769385104196519 4.01907917388844e-05 0.0005223601435023742 1.4214584826711921e-06 0.014769385104196519 4.01907917388844e-05 0.018618484410346425 7.79791544255692e-05']
['59866.37381463802 0.033561449101422954 6.692667405468696e-05 0.014724705810842969 4.0153938658798244e-05 0.000520779936748803 1.4201550715903313e-06 0.014724705810842969 4.0153938658798244e-05 0.018836743290579987 7.804818056711406e-05']
['59866.373846175986 0.03351933961637505 6.691940892409382e-05 0.014759765598590154 4.01559518027336e-05 0.0005220199230874068 1.4202262719922128e-06 0.014759765598590156 4.01559518027336e-05 0.018759574017784893 7.804298659029877e-05']
['59866.373877713944 0.03352234044264717 6.693733892230388e-05 0.014688355726440278 4.0141309203862785e-05 0.0005194943155011373 1.4197083959944347e-06 0.01468835572644028 4.0141309203862785e-05 0.018833984716206887 7.805082989052388e-05']
['59866.37390925191 0.03359372047562431 6.699930195682197e-05 0.014693053164365534 4.01229505789285e-05 0.0005196604533823976 1.419059092459621e-06 0.014693053164365534 4.01229505789285e-05 0.01890066731125878 7.809454286863165e-05']
['59866.373940789876 0.03341787703175969 6.68302390738134e-05 0.014637715908893179 4.010538279315783e-05 0.0005177032983278277 1.4184377591386029e-06 0.014637715908893177 4.010538279315783e-05 0.018780161122866512 7.794050669355939e-05']
['59866.373972327834 0.033474207127120195 6.690800444255069e-05 0.014745636986500747 4.0167805736014906e-05 0.0005215202256533941 1.420645519120391e-06 0.014745636986500747 4.0167805736014906e-05 0.018728570140619447 7.803930853185858e-05']
['59866.3740038658 0.033593128100357646 6.697100816561751e-05 0.01472387542374217 4.0147204440916894e-05 0.0005207505678128536 1.4199168973539591e-06 0.014723875423742169 4.0147204440916894e-05 0.018869252676615475 7.808273790755537e-05']
['59866.37403540376 0.033583423270521016 6.697015748287313e-05 0.014695909235000214 4.01382602722146e-05 0.000519761466217804 1.4196005620959998e-06 0.014695909235000214 4.01382602722146e-05 0.018887514035520803 7.807740986329445e-05']
['59866.374066941724 0.033513010322740476 6.690578390822257e-05 0.014655811593703175 4.012833228790011e-05 0.000518343302258082 1.4192494314785352e-06 0.014655811593703175 4.012833228790011e-05 0.0188571987290373 7.801709410495818e-05']
['59866.37409847969 0.03345454193277572 6.689214807860215e-05 0.014668236171399 4.0123506961782574e-05 0.0005187827318038863 1.4190787704777272e-06 0.014668236171398999 4.0123506961782574e-05 0.018786305761376722 7.800291844208043e-05']
['59866.37413001765 0.03349726401945982 6.689284485065795e-05 0.014706752329272758 4.014055381196275e-05 0.0005201449622293345 1.419681679471132e-06 0.014706752329272758 4.014055381196275e-05 0.018790511690187063 7.801228590770349e-05']
['59866.374161555614 0.03342267789801648 6.688125484926153e-05 0.014642133900123295 4.01077413787059e-05 0.0005178595528040077 1.4185211770383095e-06 0.014642133900123295 4.01077413787059e-05 0.01878054399789318 7.798546767643972e-05']
['59866.37419309358 0.03346463218689141 6.690499107936771e-05 0.014637578760198847 4.0096673621284956e-05 0.0005176984476850185 1.418129735193313e-06 0.014637578760198847 4.0096673621284956e-05 0.018827053426692567 7.800013504361465e-05']
['59866.37422463154 0.03356659290141738 6.695722041955367e-05 0.014721707520208393 4.0135831844741257e-05 0.0005206738939098432 1.4195146740434835e-06 0.014721707520208393 4.0135831844741257e-05 0.018844885381208987 7.806506494061246e-05']
['59866.3742561695 0.0334254295223857 6.685940711844207e-05 0.0146436740352461 4.011006721563572e-05 0.0005179140239413019 1.4186034366925778e-06 0.014643674035246102 4.011006721563572e-05 0.018781755487139597 7.796792810042086e-05']
['59866.37428770746 0.03344099460811209 6.686230856507685e-05 0.01474299314825524 4.0152932382167904e-05 0.0005214267190032812 1.4201194818348122e-06 0.014742993148255239 4.0152932382167904e-05 0.018698001459856853 7.79924758264443e-05']
['59866.37431924543 0.033479601575938 6.689997294428511e-05 0.014703799076157651 4.013740884016408e-05 0.0005200405122667855 1.4195704488472113e-06 0.014703799076157653 4.013740884016408e-05 0.01877580249978035 7.801678004345323e-05']
['59866.37435078339 0.03360493101584751 6.700869105771404e-05 0.014683452157278449 4.014046952868889e-05 0.0005193208872187155 1.4196786985600977e-06 0.01468345215727845 4.014046952868889e-05 0.018921478858569058 7.811159946673584e-05']
['59866.37438232135 0.03353914844717602 6.691594818656525e-05 0.014741214317665311 4.015908903705692e-05 0.0005213638057407679 1.4203372289589227e-06 0.014741214317665311 4.015908903705692e-05 0.01879793412951071 7.804163346569157e-05']
['59866.37441385932 0.03349961949638182 6.693358126010814e-05 0.014664137029404039 4.010697595649e-05 0.0005186377543125678 1.4184941057651513e-06 0.014664137029404039 4.010697595649e-05 0.01883548246697778 7.80299546371646e-05']
['59866.37444539728 0.03352638953987966 6.692482183495782e-05 0.01473466832257062 4.016403458723651e-05 0.0005211322885237067 1.4205121420161205e-06 0.014734668322570619 4.016403458723651e-05 0.01879172121730904 7.805178698765056e-05']
['59866.37447693524 0.033517434501236926 6.696557477001268e-05 0.01468841744473547 4.013722597104835e-05 0.0005194964983393058 1.4195639811752763e-06 0.01468841744473547 4.013722597104835e-05 0.018829017056501456 7.807294738210642e-05']
['59866.37450847321 0.03351114227313327 6.691571789242062e-05 0.014689362957679454 4.0132174365800744e-05 0.0005195299390190376 1.4193853171873418e-06 0.014689362957679454 4.0132174365800744e-05 0.018821779315453813 7.802758948208675e-05']
['59866.374540011166 0.03343298579881898 6.688588728756678e-05 0.014677011507045519 4.012803357184197e-05 0.0005190930958139828 1.4192388665591498e-06 0.014677011507045519 4.012803357184197e-05 0.01875597429177346 7.799987818316105e-05']
['59866.37457154913 0.03354672748182497 6.696408411565387e-05 0.01474439791782935 4.015925330965971e-05 0.0005214764025636424 1.4203430389137559e-06 0.014744397917829352 4.015925330965971e-05 0.018802329563995614 7.808299551014792e-05']
['59866.3746030871 0.03340110103461132 6.686825745916323e-05 0.014687893541284842 4.014517457255767e-05 0.0005194779690451125 1.4198451054465822e-06 0.01468789354128484 4.014517457255767e-05 0.018713207493326483 7.799358240961925e-05']
['59866.374634625055 0.03349934465690852 6.693237849440139e-05 0.014689675048755518 4.014538620210778e-05 0.0005195409769829154 1.4198525903108053e-06 0.014689675048755518 4.014538620210778e-05 0.018809669608153 7.804867278970342e-05']
['59866.37466616302 0.03340002172931524 6.684707843094837e-05 0.014681105847007953 4.013020266868153e-05 0.0005192379034681428 1.419315582666719e-06 0.014681105847007953 4.013020266868153e-05 0.01871891588230729 7.796771806961403e-05']
['59866.37469770099 0.03357570371153031 6.695239108091333e-05 0.01465304640803672 4.010248311020123e-05 0.0005182455038208857 1.4183352038328379e-06 0.01465304640803672 4.010248311020123e-05 0.018922657303493594 7.804378145025738e-05']
['59866.374729238945 0.03344121718892957 6.684818547711633e-05 0.014688466201655249 4.013460653925087e-05 0.0005194982227625932 1.419471337726685e-06 0.014688466201655249 4.013460653925087e-05 0.01875275098727432 7.797093396672522e-05']
['59866.37476077691 0.03341772250464994 6.684322556174827e-05 0.014671803525678763 4.011644347532001e-05 0.000518908901152194 1.4188289507475094e-06 0.014671803525678763 4.011644347532001e-05 0.018745918978971175 7.795733346265316e-05']
['59866.37479231487 0.0335898172117956 6.699841652378001e-05 0.014698276387557486 4.013865717474358e-05 0.0005198451871134802 1.4196145996514247e-06 0.014698276387557488 4.013865717474358e-05 0.018891540824238114 7.810185411682306e-05']
['59866.374823852835 0.033588487397566966 6.70010965194563e-05 0.01469495416256871 4.014141923269982e-05 0.000519727687440363 1.4197122874685006e-06 0.014694954162568708 4.014141923269982e-05 0.018893533234998258 7.810557261056897e-05']
['59866.3748553908 0.03351108039527972 6.690267752366654e-05 0.014679639928127122 4.013821834187598e-05 0.0005191860571934637 1.4195990791136315e-06 0.01467963992812712 4.013821834187598e-05 0.0188314404671526 7.80195157091854e-05']
['59866.37488692876 0.03346710549277787 6.688457401977249e-05 0.014728961835639352 4.0163144458892265e-05 0.0005209304628341954 1.4204806601659045e-06 0.014728961835639352 4.0163144458892265e-05 0.01873814365713852 7.801682135688606e-05']
['59866.374918466725 0.03343796762737402 6.687067733070841e-05 0.014644883227266032 4.0116717881015944e-05 0.0005179567903606618 1.418838655863714e-06 0.014644883227266032 4.0116717881015944e-05 0.01879308440010799 7.798101397271483e-05']
['59866.37495000469 0.03350495020379893 6.691137881536853e-05 0.014780441726122244 4.018697029746e-05 0.0005227511915097913 1.42132332682843e-06 0.014780441726122242 4.018697029746e-05 0.018724508477676684 7.80520672158187e-05']
['59866.37498154265 0.033421255978212 6.683592057893614e-05 0.014710818026361122 4.0145151515875885e-05 0.0005202887568490517 1.419844289983276e-06 0.014710818026361122 4.0145151515875885e-05 0.01871043795185088 7.796584809944987e-05']
['59866.375013080615 0.03351873238326579 6.694000102932935e-05 0.014736850673038307 4.0139666521256274e-05 0.0005212094733824825 1.419650297981822e-06 0.014736850673038308 4.0139666521256274e-05 0.01878188171022748 7.805226816847975e-05']
['59866.37504461857 0.03344099175784757 6.68355223850416e-05 0.014655729947565721 4.011205508703604e-05 0.0005183404146166686 1.418673743261376e-06 0.014655729947565723 4.011205508703604e-05 0.01878526181028185 7.794847025944005e-05']
['59866.37507615654 0.033469079011416054 6.691495640113288e-05 0.014700570242583753 4.01461805317288e-05 0.000519926315639295 1.4198806839742785e-06 0.014700570242583753 4.01461805317288e-05 0.0187685087688323 7.803414125529719e-05']
['59866.375107694505 0.033409088089758746 6.683904900617268e-05 0.014638937993305288 4.010708916635556e-05 0.0005177465207222862 1.4184981097450869e-06 0.014638937993305288 4.010708916635556e-05 0.018770150096453456 7.794893888596272e-05']
['59866.37513923246 0.033532484323653494 6.694924550197995e-05 0.014649549250186458 4.011023058920853e-05 0.0005181218171634097 1.4186092148507296e-06 0.014649549250186458 4.011023058920853e-05 0.018882935073467035 7.804506436158448e-05']
['59866.37517077043 0.03339916743498898 6.683083136416171e-05 0.014643580203073698 4.011097911985769e-05 0.0005179107053070666 1.4186356887069228e-06 0.014643580203073697 4.011097911985769e-05 0.018755587231915286 7.794389435214717e-05']
['59866.375202308394 0.03357988160635059 6.694581187896396e-05 0.014740802707876022 4.015488103470931e-05 0.0005213492480224145 1.4201884013202195e-06 0.014740802707876024 4.015488103470931e-05 0.01883907889847456 7.806507669275224e-05']
['59866.37523384635 0.0334711489328415 6.692954217253043e-05 0.014621874774904621 4.0099237479547234e-05 0.0005171430328215033 1.4182204131301638e-06 0.01462187477490462 4.0099237479547234e-05 0.018849274157936878 7.802251253238167e-05']
['59866.37526538432 0.033508835435025364 6.692301041847566e-05 0.014741585899255007 4.0153184372151315e-05 0.0005213769477511594 1.4201283941573608e-06 0.014741585899255005 4.0153184372151315e-05 0.01876724953577036 7.804465092942232e-05']
['59866.37529692228 0.03348031574504705 6.690256415490254e-05 0.014682159583182653 4.011893384789482e-05 0.0005192751717616802 1.4189170296598252e-06 0.014682159583182653 4.011893384789482e-05 0.018798156161864393 7.800949906000302e-05']
['59866.37532846024 0.033448534538200084 6.687999572661807e-05 0.01466722479736146 4.012908173385109e-05 0.0005187469617644665 1.4192759377069085e-06 0.01466722479736146 4.012908173385109e-05 0.018781309740838623 7.799536543407276e-05']
['59866.37535999821 0.03347875703110914 6.68498356396489e-05 0.014683193510280666 4.0113683991704727e-05 0.0005193117394524458 1.4187313539791197e-06 0.014683193510280666 4.0113683991704727e-05 0.018795563520828475 7.796158136181193e-05']
['59866.37539153617 0.03358083012279546 6.69958690004325e-05 0.01461936156211265 4.010773266595061e-05 0.0005170541461017513 1.418520868887627e-06 0.01461936156211265 4.010773266595061e-05 0.018961468560682808 7.80837798952284e-05']
['59866.37542307413 0.033340170543739604 6.679140086309886e-05 0.014690780538456353 4.0124324228898725e-05 0.0005195800756830098 1.4191076753891408e-06 0.014690780538456351 4.0124324228898725e-05 0.018649390005283255 7.791695979747254e-05']
['59866.3754546121 0.03355451999308946 6.695920272571089e-05 0.014679102403790372 4.011961058364017e-05 0.0005191670461589691 1.418940964290723e-06 0.014679102403790372 4.011961058364017e-05 0.01887541758929909 7.805842672668839e-05']
['59866.37548615006 0.03352381326570021 6.695809168320231e-05 0.014735011167395127 4.0161610958489546e-05 0.0005211444141789363 1.420426423683832e-06 0.014735011167395125 4.0161610958489546e-05 0.018788802098305087 7.807906913275281e-05']
['59866.37551768802 0.033511497109562284 6.692138746098737e-05 0.014679791032940101 4.012685902405698e-05 0.0005191914014329994 1.4191973254289547e-06 0.0146797910329401 4.012685902405698e-05 0.018831706076622184 7.8029718151741e-05']
['59866.37554922598 0.033441745850377694 6.688777011028995e-05 0.01464938337653333 4.011117328427957e-05 0.0005181159505830044 1.4186425558685926e-06 0.01464938337653333 4.011117328427957e-05 0.018792362473844363 7.799282026294792e-05']
['59866.375580763946 0.033473362870306285 6.688927852027229e-05 0.014626901351691946 4.009590906194447e-05 0.0005173208116087331 1.4181026944381295e-06 0.014626901351691946 4.009590906194447e-05 0.01884646151861434 7.798626484494741e-05']
['59866.37561230191 0.03355699410966053 6.696777651598774e-05 0.014655539898338758 4.0117463861047984e-05 0.0005183336930002459 1.41886503951028e-06 0.014655539898338756 4.0117463861047984e-05 0.018901454211321774 7.806467830035407e-05']
['59866.37564383987 0.033532808380951844 6.69186686586866e-05 0.014804450871925168 4.01868307817683e-05 0.0005236003413395579 1.4213183924702137e-06 0.014804450871925168 4.01868307817683e-05 0.018728357509026676 7.805824481330314e-05']
['59866.375675377836 0.03355666855772909 6.697241273764188e-05 0.014711624976236308 4.013509057425351e-05 0.0005203172968627102 1.419488456962974e-06 0.014711624976236308 4.013509057425351e-05 0.018845043581492783 7.80777148955103e-05']
['59866.3757069158 0.033426812890657465 6.685972206345584e-05 0.014699474831902282 4.0133471394069196e-05 0.0005198875734115901 1.4194311901785094e-06 0.014699474831902282 4.0133471394069196e-05 0.018727338058755184 7.79802408340801e-05']
['59866.37573845376 0.03339185201093738 6.686414326050273e-05 0.01465364258208258 4.011427853655902e-05 0.0005182665891645172 1.4187523817018867e-06 0.01465364258208258 4.011427853655902e-05 0.018738209428854805 7.797415595227481e-05']
['59866.375769991726 0.033494580604491384 6.691742599902602e-05 0.014695388871755592 4.0141435593979785e-05 0.0005197430621327852 1.4197128661304077e-06 0.014695388871755592 4.0141435593979785e-05 0.018799191732735792 7.803381801424784e-05']
['59866.375801529684 0.03352720117258729 6.691787862665045e-05 0.014632688820508985 4.0083593000034563e-05 0.0005175255014465602 1.4176671028531545e-06 0.014632688820508985 4.0083593000034563e-05 0.018894512352078306 7.800446722902184e-05']
['59866.37583306765 0.0335268197792288 6.693322460987525e-05 0.014691699688073129 4.012009916133636e-05 0.0005196125839507768 1.4189582441919303e-06 0.014691699688073129 4.012009916133636e-05 0.01883512009115567 7.80363948000641e-05']
['59866.375864605616 0.033555094387559395 6.696858187189898e-05 0.014725773892805012 4.014866101765704e-05 0.0005208177124207777 1.4199684132180007e-06 0.01472577389280501 4.014866101765704e-05 0.018829320494754387 7.808140584956172e-05']
['59866.375896143574 0.03354545235245845 6.69486393868871e-05 0.014704349717881274 4.014284833283154e-05 0.0005200599872339381 1.4197628315463088e-06 0.014704349717881272 4.014284833283154e-05 0.018841102634577174 7.806131300476676e-05']
['59866.37592768154 0.033497988934859176 6.691033469921411e-05 0.014608212326679151 4.0088263868357475e-05 0.0005166598225615432 1.4178323010269595e-06 0.014608212326679151 4.0088263868357475e-05 0.018889776608180024 7.800039608578864e-05']
['59866.375959219506 0.03350012550955343 6.692415821475004e-05 0.014641634678789818 4.0107715328232155e-05 0.0005178418964611367 1.4185202556912726e-06 0.014641634678789818 4.0107715328232155e-05 0.018858490830763616 7.802225183627684e-05']
['59866.375990757464 0.03343754964710914 6.68555025615315e-05 0.014680219511405112 4.01307040940167e-05 0.0005192065557587138 1.4193333169602044e-06 0.014680219511405112 4.01307040940167e-05 0.018757330135704027 7.797519883806949e-05']
['59866.37602229543 0.03355229296883467 6.695987235789903e-05 0.01473568901115119 4.0156317424596434e-05 0.0005211683879976967 1.4202392032203846e-06 0.01473568901115119 4.0156317424596434e-05 0.01881660395768348 7.807787353207743e-05']
['59866.37605383339 0.03354201079344347 6.69178233612372e-05 0.014747333452828654 4.0171278312317927e-05 0.000521580225876033 1.4207683363834776e-06 0.014747333452828653 4.0171278312317927e-05 0.018794677340614817 7.804951431400101e-05']
['59866.376085371354 0.03347063415124401 6.687480497452143e-05 0.014635790613489063 4.010657063524915e-05 0.0005176352049321662 1.418479770458702e-06 0.014635790613489063 4.010657063524915e-05 0.01883484353775495 7.79793341116767e-05']
['59866.37611690932 0.033482313326279746 6.690436121901945e-05 0.014714043233690776 4.0152804628077035e-05 0.0005204028252243874 1.4201149634581317e-06 0.014714043233690776 4.0152804628077035e-05 0.018768270092588968 7.80284644833253e-05']
['59866.37614844728 0.0334663588089417 6.687468547330138e-05 0.014801094404469436 4.0200269613912496e-05 0.0005234816305869119 1.4217936939291318e-06 0.014801094404469436 4.0200269613912496e-05 0.018665264404472262 7.802746461461018e-05']
['59866.376179985244 0.03333730990585685 6.680486026889721e-05 0.014681371427686744 4.012040982108292e-05 0.0005192472964632138 1.4189692315328826e-06 0.014681371427686746 4.012040982108292e-05 0.018655938478170105 7.792648227501693e-05']
['59866.37621152321 0.03359401535896508 6.697675452704016e-05 0.014760141653430116 4.017595289380658e-05 0.0005220332233066632 1.4209336658836564e-06 0.014760141653430116 4.017595289380658e-05 0.01883387370553496 7.810245090841107e-05']
['59866.37624306117 0.033456256537225955 6.689825382588049e-05 0.014621630058194779 4.008473576382841e-05 0.0005171343777383859 1.417707519854616e-06 0.014621630058194779 4.008473576382841e-05 0.018834626479031176 7.798821966302269e-05']
['59866.37627459913 0.03340372128710716 6.684845767885075e-05 0.014636856888984424 4.0112791926365106e-05 0.0005176729167134516 1.4186998036217062e-06 0.014636856888984424 4.0112791926365106e-05 0.018766864398122737 7.795994080403705e-05']
['59866.37630613709 0.033481342662545634 6.689687727465532e-05 0.014681189880143065 4.012183281101356e-05 0.0005192408755323287 1.419019559506534e-06 0.014681189880143065 4.012183281101356e-05 0.018800152782402567 7.800611294773776e-05']
['59866.37633767506 0.03343460769585295 6.688371148657661e-05 0.014663668775997502 4.011220587090872e-05 0.0005186211932360634 1.4186790761499706e-06 0.014663668775997502 4.011220587090872e-05 0.01877093891985545 7.798987063747307e-05']
['59866.37636921302 0.033469227389059795 6.68975510508186e-05 0.014702186862413296 4.014262843257553e-05 0.0005199834918697332 1.419755054165702e-06 0.014702186862413296 4.014262843257553e-05 0.0187670405266465 7.801738879296527e-05']
['59866.37640075098 0.03345336367629621 6.689666859407812e-05 0.014646641953459123 4.011551924829014e-05 0.0005180189925755896 1.4187962629029889e-06 0.01464664195345912 4.011551924829014e-05 0.018806721722837094 7.800268683542801e-05']
['59866.37643228895 0.033466460903447896 6.688489670593268e-05 0.014744097808507077 4.0139267117746016e-05 0.0005214657883676184 1.4196361719722786e-06 0.014744097808507078 4.0139267117746016e-05 0.018722363094940818 7.800480864737155e-05']
['59866.37646382691 0.03338711532232147 6.682827826281583e-05 0.01480028978993146 4.0192561937342494e-05 0.0005234531731689114 1.421521090634494e-06 0.01480028978993146 4.0192561937342494e-05 0.01858682553239001 7.798372144659073e-05']
['59866.37649536487 0.03342721150832355 6.688036594820125e-05 0.014668958400565547 4.013145952183477e-05 0.00051880827543542 1.4193600347538475e-06 0.014668958400565547 4.013145952183477e-05 0.018758253107758 7.799690630222445e-05']
['59866.37652690284 0.03340424421261957 6.682266536125423e-05 0.01461991001895215 4.009920401379404e-05 0.0005170735437944355 1.418219229521265e-06 0.014619910018952149 4.009920401379404e-05 0.01878433419366742 7.793083323384937e-05']
['59866.376558440796 0.03347062137758985 6.691091454369915e-05 0.014711718836732193 4.013878029750679e-05 0.0005203206164986837 1.4196189542283964e-06 0.01471171883673219 4.013878029750679e-05 0.018758902540857658 7.802686824963392e-05']
['59866.37658997876 0.03347794372751523 6.689633280351053e-05 0.014667142956849734 4.011725296807416e-05 0.0005187440672484695 1.4188575806971138e-06 0.014667142956849732 4.011725296807416e-05 0.0188108007706655 7.800329049637902e-05']
['59866.37662151673 0.03342515082813833 6.685879744016784e-05 0.014675471020294394 4.0126909129556686e-05 0.0005190386122403808 1.4191990975485e-06 0.014675471020294394 4.0126909129556686e-05 0.018749679807843936 7.797607088996659e-05']
['59866.376653054685 0.03341002259411169 6.684613899728344e-05 0.014680281965803677 4.013867854463724e-05 0.0005192087646312137 1.4196153554568045e-06 0.014680281965803675 4.013867854463724e-05 0.01872974062830801 7.797127557090406e-05']
['59866.37668459265 0.033375996232176554 6.683502131145387e-05 0.014706930456878793 4.0128450587333496e-05 0.0005201512622046682 1.4192536154651103e-06 0.014706930456878793 4.0128450587333496e-05 0.018669065775297762 7.795647901388671e-05']
['59866.37671613062 0.03342988866308666 6.684462367901979e-05 0.014652354849269302 4.012097172866431e-05 0.000518221044932825 1.4189891049482468e-06 0.0146523548492693 4.012097172866431e-05 0.01877753381381736 7.796086253526224e-05']
['59866.376747668575 0.033654349160073545 6.702466612035195e-05 0.014696982920208688 4.014236329643826e-05 0.0005197994400640825 1.419745676893071e-06 0.014696982920208688 4.014236329643826e-05 0.018957366239864857 7.812627726679346e-05']
['59866.37677920654 0.03350143202883552 6.691450097079245e-05 0.014698798065743307 4.01370513120446e-05 0.0005198636377050306 1.4195578038766535e-06 0.014698798065743307 4.01370513120446e-05 0.018802633963092216 7.802905438486286e-05']
['59866.3768107445 0.03343825970453171 6.686770317626556e-05 0.014648624243213568 4.01155807669057e-05 0.0005180891017340475 1.4187984386789352e-06 0.014648624243213568 4.01155807669057e-05 0.018789635461318142 7.797787858319364e-05']
['59866.376842282465 0.03348919418090769 6.6933770988924e-05 0.014641275474523244 4.011064443831164e-05 0.0005178291922090022 1.4186238517686084e-06 0.014641275474523244 4.011064443831164e-05 0.01884791870638445 7.803200302474865e-05']
['59866.37687382043 0.03341813675956896 6.683444988719071e-05 0.014756436371559836 4.0154658983265676e-05 0.0005219021757677289 1.420180547856914e-06 0.014756436371559834 4.0154658983265676e-05 0.01866170038800912 7.796948332383488e-05']
['59866.37690535839 0.033494879484864584 6.69135480771799e-05 0.014737566534751343 4.015173598162339e-05 0.0005212347918114158 1.4200771678213505e-06 0.014737566534751341 4.015173598162339e-05 0.018757312950113243 7.803579190740014e-05']
['59866.376936896355 0.03339915383559166 6.685900840046854e-05 0.014686686162839314 4.012667676215097e-05 0.0005194352667678262 1.4191908792326704e-06 0.014686686162839314 4.012667676215097e-05 0.018712467672752343 7.797613219612826e-05']
['59866.37696843432 0.03350250389495539 6.691948306379631e-05 0.014672755220918269 4.0117233781258386e-05 0.0005189425604859016 1.41885690210232e-06 0.014672755220918269 4.0117233781258386e-05 0.01882974867403712 7.802313541370828e-05']
['59866.37699997228 0.03342756770594609 6.687290822542731e-05 0.014742948707918382 4.015409177559379e-05 0.000521425147247885 1.420160486989194e-06 0.014742948707918384 4.015409177559379e-05 0.01868461899802771 7.800215984733521e-05']
['59866.377031510245 0.03351797958711004 6.692879150696599e-05 0.014737411926220108 4.015846010483034e-05 0.0005212293236531958 1.4203149850316494e-06 0.01473741192622011 4.015846010483034e-05 0.018780567660889928 7.805232251877052e-05']
['59866.3770630482 0.03337490853202153 6.682295052277669e-05 0.014615554506534107 4.008412931896798e-05 0.0005169194990542067 1.4176860712552273e-06 0.014615554506534107 4.008412931896798e-05 0.018759354025487424 7.792332218167556e-05']
['59866.37709458617 0.033498362162322104 6.687637395302533e-05 0.014675823570427635 4.010676210774556e-05 0.0005190510811506903 1.4184865424129844e-06 0.014675823570427633 4.010676210774556e-05 0.01882253859189447 7.798077814354111e-05']
['59866.377126124135 0.03344327679323329 6.684285897820174e-05 0.014626843206250647 4.010393122647591e-05 0.0005173187551344217 1.4183864204691238e-06 0.014626843206250646 4.010393122647591e-05 0.018816433586982647 7.795058111520192e-05']
['59866.37715766209 0.03349709389353181 6.689098809851798e-05 0.01462466933234624 4.00927553867699e-05 0.0005172418700727451 1.4179911559952542e-06 0.014624669332346239 4.00927553867699e-05 0.01887242456118557 7.798610981001322e-05']
['59866.37718920006 0.03351925085858658 6.693552850320018e-05 0.014688733913399421 4.013133717613927e-05 0.000519507691128684 1.4193557076600242e-06 0.014688733913399421 4.013133717613927e-05 0.018830516945187156 7.804414904108893e-05']
['59866.377220738024 0.0335034154191574 6.691694597309355e-05 0.014741138573456119 4.015787459938552e-05 0.000521361126837367 1.4202942770125936e-06 0.014741138573456117 4.015787459938552e-05 0.01876227684570128 7.804186409040915e-05']
['59866.37725227598 0.03350240659004592 6.693060384320475e-05 0.014609037721551957 4.0077775422432464e-05 0.0005166890149335454 1.417461348134889e-06 0.014609037721551957 4.0077775422432464e-05 0.018893368868493965 7.801239525631133e-05']
['59866.37728381395 0.03344635199019589 6.688623826284554e-05 0.014669100039340324 4.012593961585441e-05 0.0005188132848823397 1.419164808015586e-06 0.014669100039340324 4.012593961585441e-05 0.018777251950855566 7.799910191155624e-05']
['59866.37731535191 0.03348037093224044 6.690969048478889e-05 0.014673481995280348 4.012100806978757e-05 0.0005189682648708432 1.418990390252559e-06 0.014673481995280346 4.012100806978757e-05 0.018806888936960094 7.801667750748046e-05']
['59866.37734688987 0.0334629026056941 6.688364165104552e-05 0.01462845262336847 4.0104804851435906e-05 0.0005173756766210435 1.4184173186315221e-06 0.01462845262336847 4.0104804851435906e-05 0.018834449982325634 7.798600446668125e-05']
['59866.37737842784 0.033521828130867466 6.694882262321862e-05 0.014685427813912568 4.0128012805580204e-05 0.0005193907617785315 1.419238132102881e-06 0.014685427813912568 4.0128012805580204e-05 0.018836400316954896 7.805384207302033e-05']
['59866.3774099658 0.03353998446427929 6.695076102432612e-05 0.01467598715284489 4.012939964199553e-05 0.0005190568666952034 1.4192871814074943e-06 0.014675987152844888 4.012939964199553e-05 0.018863997311434403 7.805621767267112e-05']
['59866.37744150376 0.03355305230765607 6.698229675574253e-05 0.014722729839476988 4.012988586300697e-05 0.0005207100510576243 1.4193043779580288e-06 0.014722729839476988 4.012988586300697e-05 0.01883032246817908 7.80835182228127e-05']
['59866.37747304173 0.03347641544260082 6.690341895680083e-05 0.014643088120665868 4.011384139169347e-05 0.0005178933014520411 1.4187369208649532e-06 0.014643088120665868 4.011384139169347e-05 0.01883332732193495 7.800761334194987e-05']
['59866.37750457969 0.03347030630531609 6.68843092844877e-05 0.014731571539524672 4.0161109729527355e-05 0.0005210227622282743 1.42040869633562e-06 0.014731571539524674 4.0161109729527355e-05 0.018738734765791416 7.801554693245536e-05']
['59866.37753611765 0.033397926750193194 6.68377820844608e-05 0.014704756802227999 4.0153159701190525e-05 0.0005200743848975018 1.420127521600614e-06 0.014704756802227999 4.0153159701190525e-05 0.018693169947965195 7.79715675612539e-05']
['59866.37756765561 0.03356198819421203 6.69703764937449e-05 0.014665319380190672 4.0126085407741306e-05 0.0005186795714174925 1.4191699643488e-06 0.014665319380190672 4.0126085407741306e-05 0.018896668814021356 7.807133954187855e-05']
['59866.377599193576 0.03349113168541412 6.688607216383626e-05 0.01466955196081658 4.012351529836288e-05 0.0005188292683349699 1.4190790653239415e-06 0.014669551960816579 4.012351529836288e-05 0.018821579724597543 7.799771233442602e-05']
['59866.37763073154 0.03347580716327139 6.690019010500985e-05 0.014648838306202134 4.011730229899323e-05 0.0005180966726635505 1.4188593254214732e-06 0.014648838306202136 4.011730229899323e-05 0.018826968857069255 7.800662394845238e-05']
['59866.3776622695 0.03357719705883314 6.695265953317364e-05 0.014728391999271027 4.0143511580899216e-05 0.0005209103089953572 1.4197862891481904e-06 0.01472839199927103 4.0143511580899216e-05 0.018848805059562115 7.806510193813146e-05']
['59866.377693807466 0.03353915145553359 6.696607750143375e-05 0.014801516206316492 4.0193486546939476e-05 0.0005234965487755707 1.4215537920095585e-06 0.014801516206316494 4.0193486546939476e-05 0.0187376352492171 7.810231684609002e-05']
['59866.37772534543 0.033409080519255695 6.68441057184029e-05 0.014644908475364118 4.010251671278704e-05 0.0005179576833294648 1.4183363922812009e-06 0.014644908475364116 4.010251671278704e-05 0.01876417204389158 7.795092248326756e-05']
['59866.37775688339 0.0334392678278228 6.688024453790036e-05 0.014681302276417332 4.013535960853738e-05 0.0005192448507373587 1.4194979721043381e-06 0.014681302276417332 4.013535960853738e-05 0.018757965551405464 7.799880896754747e-05']
['59866.377788421356 0.033529275757863734 6.695791507265188e-05 0.01470232594738376 4.01378976250635e-05 0.0005199884109943019 1.4195877360767339e-06 0.01470232594738376 4.01378976250635e-05 0.018826949810479974 7.806672285062656e-05']
['59866.377819959314 0.03351529774487899 6.69280135673752e-05 0.01469810512313786 4.0152274249877715e-05 0.0005198391298737114 1.4200962051665473e-06 0.014698105123137859 4.0152274249877715e-05 0.018817192621741134 7.80484729351712e-05']
['59866.37785149728 0.0334705337040786 6.687847536867435e-05 0.014691657653696084 4.0139549652277194e-05 0.0005196110972888019 1.4196461645872188e-06 0.014691657653696082 4.0139549652277194e-05 0.018778876050382518 7.79994481642403e-05']
['59866.377883035246 0.033447437344617525 6.688127728493067e-05 0.0147081396332242 4.015774600071038e-05 0.0005201940280696551 1.420289728764855e-06 0.014708139633224199 4.015774600071038e-05 0.018739297711393328 7.801121595720294e-05']
['59866.377914573204 0.03338062224477 6.686430173702407e-05 0.014663219521262767 4.010994241214941e-05 0.0005186053041001211 1.4185990226721864e-06 0.014663219521262769 4.010994241214941e-05 0.018717402723507234 7.797206119557018e-05']
['59866.37794611117 0.03354037687923759 6.692852117353074e-05 0.014673354079295525 4.012185467738264e-05 0.0005189637407683355 1.4190203328711399e-06 0.014673354079295525 4.012185467738264e-05 0.018867022799942065 7.803326322299206e-05']
['59866.377977649136 0.03348718213515306 6.689938213794237e-05 0.014709698374654174 4.013928456086946e-05 0.0005202491572704512 1.4196367888965716e-06 0.014709698374654172 4.013928456086946e-05 0.018777483760498887 7.80172384508507e-05']
['59866.378009187094 0.033475672689756854 6.69034823700904e-05 0.014687849455191006 4.0123696185406716e-05 0.0005194764098185002 1.419085462894423e-06 0.014687849455191007 4.0123696185406716e-05 0.018787823234565848 7.801273581168537e-05']
['59866.37804072506 0.0333913602373546 6.683788849725445e-05 0.014705967126394156 4.0160575589412e-05 0.0005201171913583434 1.4203898049934727e-06 0.014705967126394154 4.0160575589412e-05 0.01868539311096045 7.797547800715487e-05']
['59866.37807226302 0.03350118083273271 6.694666248569691e-05 0.01470267940925299 4.01459505100292e-05 0.0005200009121506758 1.419872548620832e-06 0.01470267940925299 4.01459505100292e-05 0.01879850142347972 7.806121290581854e-05']
['59866.378103800984 0.033482403697335295 6.689156218174261e-05 0.014744260222650404 4.016192389198859e-05 0.0005214715325928936 1.4204374914423282e-06 0.014744260222650405 4.016192389198859e-05 0.018738143474684887 7.802218416463244e-05']
['59866.37813533895 0.033570046145841616 6.696517248185857e-05 0.014700093718011365 4.011507510128206e-05 0.0005199094620301393 1.418780554415923e-06 0.014700093718011365 4.011507510128206e-05 0.018869952427830253 7.806121684874358e-05']
['59866.37816687691 0.03350185658222387 6.691943179477675e-05 0.014768993104066581 4.0174754253239224e-05 0.000522346279333847 1.4208912726455932e-06 0.014768993104066581 4.0174754253239224e-05 0.018732863478157287 7.805268240774265e-05']
['59866.37819841487 0.033445579596609785 6.6878505145631e-05 0.014648282713573666 4.0104994925528134e-05 0.000518077022593958 1.4184240411273738e-06 0.014648282713573666 4.0104994925528134e-05 0.01879729688303612 7.798169700956008e-05']
['59866.37822995283 0.03342546990843314 6.686600530365853e-05 0.014612580331583459 4.008440737000446e-05 0.0005168143091330922 1.41769590529898e-06 0.01461258033158346 4.008440737000446e-05 0.01881288957684968 7.796038981093771e-05']
['59866.3782614908 0.03346252719846682 6.686733263196461e-05 0.01464631180197608 4.0114797732385346e-05 0.0005180073158554796 1.4187707444979294e-06 0.01464631180197608 4.0114797732385346e-05 0.01881621539649074 7.797715800427705e-05']
['59866.37829302876 0.0333390834164291 6.678135570658776e-05 0.014643214310264427 4.010274059065326e-05 0.000517897764496125 1.4183443103409914e-06 0.014643214310264427 4.010274059065326e-05 0.01869586910616467 7.789723533535083e-05']
['59866.37832456672 0.03345286102846439 6.68915564303078e-05 0.014669405583977092 4.012317764766268e-05 0.0005188240913132902 1.4190671233732804e-06 0.014669405583977094 4.012317764766268e-05 0.0187834554444873 7.80022416742939e-05']
['59866.37835610469 0.03349906446408463 6.689869223177125e-05 0.014785361176465138 4.0186291215484207e-05 0.000522925181474095 1.421299309216605e-06 0.014785361176465136 4.0186291215484207e-05 0.01871370328761949 7.80408420250381e-05']
['59866.37838764265 0.03352818359779582 6.693180705429514e-05 0.014747873224482498 4.014768902152137e-05 0.0005215993163931109 1.4199340358869655e-06 0.014747873224482498 4.014768902152137e-05 0.018780310373313326 7.804936725766698e-05']
['59866.37841918061 0.03349280556480747 6.692386751567939e-05 0.014672589530869522 4.012495085712722e-05 0.0005189367003991729 1.419129837829151e-06 0.014672589530869522 4.012495085712722e-05 0.01882021603393795 7.803086392282917e-05']
['59866.37845071858 0.03358404566345901 6.696297125197437e-05 0.014721080701102037 4.014241518313203e-05 0.0005206517247189097 1.4197475120094697e-06 0.014721080701102037 4.014241518313203e-05 0.018862964962356975 7.807338224790632e-05']
['59866.378482256536 0.03354083032137004 6.694991151365045e-05 0.014716517059467195 4.01456814115156e-05 0.0005204903189134241 1.4198630312078058e-06 0.014716517059467195 4.01456814115156e-05 0.01882431326190285 7.806386095806774e-05']
['59866.3785137945 0.0335859418405878 6.696318801353748e-05 0.0147564658244975 4.015732970440211e-05 0.0005219032174523107 1.420275005294799e-06 0.014756465824497501 4.015732970440211e-05 0.0188294760160903 7.808123768181717e-05']
['59866.37854533247 0.033478643992348366 6.691053689185672e-05 0.01472991634083309 4.01656799231201e-05 0.0005209642215497044 1.4205703338692138e-06 0.014729916340833092 4.01656799231201e-05 0.018748727651515272 7.804038564002009e-05']
['59866.378576870426 0.03344361158432979 6.68703175085155e-05 0.014668194615696137 4.012160219857382e-05 0.0005187812620715477 1.4190114032599288e-06 0.014668194615696139 4.012160219857382e-05 0.018775416968633652 7.798321823745335e-05']
['59866.37860840839 0.033553878886747046 6.696103264478954e-05 0.014747067890234307 4.016333378749772e-05 0.0005215708335205685 1.4204873562955549e-06 0.014747067890234307 4.016333378749772e-05 0.01880681099651274 7.808247737989956e-05']
['59866.37863994636 0.03354998127544457 6.695746734504087e-05 0.014750535271321944 4.016151682696631e-05 0.0005216934670404976 1.4204230944622268e-06 0.014750535271321944 4.016151682696631e-05 0.018799446004122623 7.8078485302322e-05']
['59866.378671484315 0.03350973331645317 6.691769343666708e-05 0.014629454642023117 4.01016589602676e-05 0.0005174111157814785 1.4183060554915522e-06 0.014629454642023117 4.01016589602676e-05 0.018880278674430054 7.801359334275897e-05']
['59866.37870302228 0.033486900240308363 6.693574253448677e-05 0.01463030682556013 4.008869210377511e-05 0.0005174412556086645 1.4178474467566314e-06 0.01463030682556013 4.008869210377511e-05 0.018856593414748234 7.80224125699429e-05']
['59866.37873456024 0.033513750695696724 6.692682636102913e-05 0.014735398399806589 4.015187941010127e-05 0.0005211581097239163 1.4200822405660693e-06 0.01473539839980659 4.015187941010127e-05 0.018778352295890133 7.804725175765421e-05']
['59866.378766098205 0.033415492528394805 6.68575150171352e-05 0.014704948272474093 4.0150209451372655e-05 0.0005200811567721953 1.4200231778579763e-06 0.014704948272474093 4.0150209451372655e-05 0.01871054425592071 7.798696450853534e-05']
['59866.37879763617 0.033436305825183955 6.686668662014664e-05 0.014689111572981828 4.0130409327777365e-05 0.0005195210481040943 1.4193228917370828e-06 0.014689111572981828 4.0130409327777365e-05 0.01874719425220213 7.798463651496914e-05']
['59866.37882917413 0.03349942826797936 6.691699225969963e-05 0.014691373513214331 4.011887068148323e-05 0.000519601047874979 1.418914795605016e-06 0.014691373513214331 4.011887068148323e-05 0.018808054754765026 7.80218407745054e-05']
['59866.378860712095 0.03351898500765949 6.694320672316353e-05 0.014746451951134465 4.015383277516198e-05 0.0005215490491311499 1.4201513267227527e-06 0.014746451951134465 4.015383277516198e-05 0.01877253305652503 7.806230340513839e-05']
['59866.37889225006 0.03346815579331411 6.690289642716156e-05 0.014780296382318245 4.0171671456068554e-05 0.0005227460510242682 1.4207822409993127e-06 0.014780296382318245 4.0171671456068554e-05 0.018687859410995863 7.803691906987244e-05']
['59866.37892378802 0.033533624951750114 6.693089196438412e-05 0.01470201194326337 4.0138562880995545e-05 0.0005199773053703216 1.4196112646922907e-06 0.01470201194326337 4.0138562880995545e-05 0.018831613008486743 7.804388848141596e-05']
['59866.378955325985 0.0334742800387602 6.689364676987718e-05 0.014639003047609449 4.009627051616435e-05 0.0005177488215476365 1.418115478266084e-06 0.014639003047609449 4.009627051616435e-05 0.01883527699115075 7.799019738068709e-05']
['59866.37898686394 0.03357665560907956 6.696305975713245e-05 0.014716787362350886 4.013831538649654e-05 0.0005204998789223288 1.4196025113649787e-06 0.014716787362350884 4.013831538649654e-05 0.018859868246728678 7.807135027718655e-05']
['59866.37901840191 0.033490443071259486 6.687787077313691e-05 0.014644882984160569 4.0111794503417256e-05 0.0005179567817625648 1.4186645270011497e-06 0.014644882984160569 4.0111794503417256e-05 0.018845560087098916 7.798465013983698e-05']
['59866.379049939875 0.03352344225167973 6.68965851258425e-05 0.01469868379052743 4.012555716573098e-05 0.000519859596046035 1.419151281609446e-06 0.01469868379052743 4.012555716573098e-05 0.0188247584611523 7.800777806962224e-05']
['59866.37908147783 0.03353689543745867 6.692798120298498e-05 0.014674638844542707 4.013057696749726e-05 0.000519009180043847 1.4193288207793229e-06 0.014674638844542707 4.013057696749726e-05 0.018862256592915964 7.803728516325599e-05']
['59866.3791130158 0.03351654784576941 6.69308408757159e-05 0.014611261257867953 4.009180184084195e-05 0.000516767656443731 1.4179574312068322e-06 0.014611261257867955 4.009180184084195e-05 0.01890528658790145 7.801980540334448e-05']
['59866.379144553764 0.03354144899097551 6.695491165499753e-05 0.014688915179477853 4.013186526587737e-05 0.0005195141021047723 1.41937438501385e-06 0.014688915179477855 4.013186526587737e-05 0.01885253381149766 7.80610453712161e-05']
['59866.37917609172 0.033534268579021045 6.693196909523841e-05 0.01469851466563388 4.0146819556652935e-05 0.0005198536144765221 1.4199032848577085e-06 0.01469851466563388 4.0146819556652935e-05 0.018835753913387165 7.80490589788269e-05']
['59866.37920762969 0.0335313387727712 6.692735490780125e-05 0.014707120005951977 4.014411147460765e-05 0.0005201579661317695 1.419807506047974e-06 0.014707120005951979 4.014411147460765e-05 0.018824218766819223 7.804370904205228e-05']
['59866.37923916765 0.033519647300168355 6.693736199830469e-05 0.014749819977134291 4.01529754710972e-05 0.0005216681686836687 1.420121005793943e-06 0.014749819977134291 4.01529754710972e-05 0.018769827323034064 7.805685024694898e-05']
['59866.37927070561 0.03346242684260186 6.689254387967499e-05 0.014644026912639135 4.010317502088702e-05 0.000517926504426059 1.418359675167465e-06 0.014644026912639137 4.010317502088702e-05 0.018818399929962724 7.799280142070895e-05']
['59866.37930224358 0.03350785102948402 6.693847513704732e-05 0.014690373547651904 4.012114050785677e-05 0.0005195656813278274 1.4189950742910848e-06 0.014690373547651904 4.012114050785677e-05 0.018817477481832115 7.804143367035416e-05']
['59866.37933378154 0.033518385097927095 6.691336017491266e-05 0.014677504466942255 4.014294498691127e-05 0.0005191105307038299 1.4197662499850995e-06 0.014677504466942257 4.014294498691127e-05 0.018840880630984838 7.803110791293285e-05']
['59866.3793653195 0.03337453089584209 6.68264330957008e-05 0.01466066344537337 4.012525500019229e-05 0.0005185149014084064 1.4191405946896428e-06 0.01466066344537337 4.012525500019229e-05 0.01871386745046872 7.794747108870582e-05']
['59866.37939685747 0.033482131257802354 6.688084506950851e-05 0.014670882417399755 4.011200074136477e-05 0.0005188763236109213 1.4186718211764387e-06 0.014670882417399755 4.011200074136477e-05 0.018811248840402597 7.798730692033703e-05']
['59866.37942839543 0.033518790087334216 6.693458523767865e-05 0.014771430733192963 4.0179665032404386e-05 0.0005224324928282667 1.4210649559297193e-06 0.014771430733192963 4.0179665032404386e-05 0.018747359354141253 7.80682021251693e-05']
['59866.37945993339 0.033462458117910106 6.689921907647668e-05 0.01467762871966785 4.012820037220875e-05 0.0005191149252450456 1.419244765915346e-06 0.01467762871966785 4.012820037220875e-05 0.018784829398242255 7.801139646330244e-05']
['59866.37949147135 0.0334635824701202 6.690245498722973e-05 0.01465923300812967 4.0124062139473496e-05 0.0005184643100399358 1.419098405871906e-06 0.01465923300812967 4.0124062139473496e-05 0.018804349461990527 7.801204295421721e-05']
['59866.37952300932 0.03348843846022377 6.689981285213419e-05 0.014610549316456405 4.0078188190703795e-05 0.0005167424766670999 1.4174759468261633e-06 0.014610549316456407 4.0078188190703795e-05 0.018877889143767364 7.79861919079272e-05']
['59866.37955454728 0.033512736094672896 6.690116665096511e-05 0.014741140645870204 4.015305707436775e-05 0.0005213612001340217 1.4201238919192498e-06 0.014741140645870204 4.015305707436775e-05 0.01877159544880269 7.802585527680962e-05']
['59866.37958608524 0.03344651356175871 6.6870325831186e-05 0.014643690900472205 4.0098543917276244e-05 0.0005179146204266576 1.4181958833826592e-06 0.014643690900472203 4.0098543917276244e-05 0.01880282266128651 7.797136462224265e-05']
['59866.379617623206 0.03347912300162185 6.687866844217517e-05 0.014766634373144936 4.017711833438442e-05 0.0005222628562926017 1.4209748849122881e-06 0.014766634373144934 4.017711833438442e-05 0.018712488628476916 7.801895366033516e-05']
['59866.37964916117 0.033565767889580655 6.694672039892781e-05 0.014727138728372648 4.014627012514294e-05 0.000520865983604577 1.4198838526931074e-06 0.014727138728372648 4.014627012514294e-05 0.018838629161208008 7.80614269478413e-05']
['59866.37968069913 0.033488456826873646 6.688934744592604e-05 0.014610770378132297 4.00905628277122e-05 0.0005167502951245324 1.4179136100814645e-06 0.014610770378132297 4.00905628277122e-05 0.018877686448741347 7.798357538343925e-05']
['59866.379712237096 0.03353255983248355 6.693846892051979e-05 0.014658000533591838 4.0121642452166815e-05 0.0005184207201699512 1.4190128269395514e-06 0.014658000533591838 4.0121642452166815e-05 0.018874559298891713 7.804168638928114e-05']
['59866.379743775055 0.033434496453259646 6.685488199029717e-05 0.01467884021378453 4.012502412079899e-05 0.0005191577730844227 1.419132429001487e-06 0.014678840213784532 4.012502412079899e-05 0.018755656239475116 7.797174364236869e-05']
['59866.37977531302 0.03342812680276851 6.688809911096199e-05 0.014662251754372323 4.01230879362521e-05 0.0005185710763480377 1.4190639504811812e-06 0.014662251754372323 4.01230879362521e-05 0.018765875048396184 7.79992306899119e-05']
['59866.379806850986 0.03346685480279888 6.687751386844426e-05 0.01478040491660183 4.0177871555843126e-05 0.0005227498896393188 1.4210015246719318e-06 0.014780404916601831 4.0177871555843126e-05 0.018686449886197047 7.801835184097253e-05']
['59866.379838388944 0.03337902078380632 6.684064083098279e-05 0.014683629909886236 4.013807763931983e-05 0.0005193271739311992 1.4195941027786722e-06 0.014683629909886236 4.013807763931983e-05 0.018695390873920085 7.796625259223705e-05']
['59866.37986992691 0.03355910924595966 6.695411966206586e-05 0.014722593226111616 4.0143472789303365e-05 0.000520705219348204 1.4197849171761392e-06 0.014722593226111615 4.0143472789303365e-05 0.018836516019848044 7.806633427609992e-05']
['59866.379901464876 0.03348172504183936 6.69284658666549e-05 0.014662932158816816 4.010974801130222e-05 0.0005185951407326249 1.4185921471486817e-06 0.014662932158816814 4.010974801130222e-05 0.01881879288302255 7.802699166823077e-05']
['59866.379933002834 0.03352186790970663 6.694566381082075e-05 0.01461501090450607 4.011176297229517e-05 0.0005169002730653541 1.4186634118158293e-06 0.01461501090450607 4.011176297229517e-05 0.01890685700520056 7.804277949827918e-05']
['59866.3799645408 0.033445915511132636 6.688335475959727e-05 0.01468754492222259 4.012308404669368e-05 0.0005194656391679984 1.4190638129161925e-06 0.014687544922222589 4.012308404669368e-05 0.01875837058891005 7.799516021726083e-05']
['59866.37999607876 0.03351021492944891 6.691196166549551e-05 0.014706724536986324 4.0146832161194186e-05 0.0005201439792782754 1.4199037306521632e-06 0.014706724536986323 4.0146832161194186e-05 0.01880349039246259 7.803190851506732e-05']
['59866.380027616724 0.03349610670974181 6.692673440498285e-05 0.014688324863638554 4.012585818157452e-05 0.0005194932239528145 1.4191619278671014e-06 0.014688324863638552 4.012585818157452e-05 0.01880778184610326 7.80337893026024e-05']
['59866.38005915469 0.033573930149844514 6.696519358011054e-05 0.014730498912653413 4.0133890195509094e-05 0.0005209848258130178 1.4194460022494725e-06 0.014730498912653415 4.0133890195509094e-05 0.0188434312371911 7.807090555031918e-05']
['59866.38009069265 0.03342055848526957 6.687289582759944e-05 0.014609682170414353 4.009275966044764e-05 0.0005167118076495499 1.4179913071456847e-06 0.014609682170414353 4.009275966044764e-05 0.018810876314855215 7.797059428758629e-05']
['59866.380122230614 0.033538943167036844 6.695088336647792e-05 0.014728223432413305 4.0138725316339475e-05 0.0005209043471623243 1.419617009667384e-06 0.014728223432413305 4.0138725316339475e-05 0.01881071973462354 7.806111742456856e-05']
['59866.38015376858 0.033476708676331055 6.68919899413745e-05 0.014624159927214924 4.008540615889252e-05 0.0005172238535517038 1.417731230229789e-06 0.014624159927214922 4.008540615889252e-05 0.018852548749116134 7.798319117117693e-05']
['59866.38018530654 0.03349725231496035 6.69030427682568e-05 0.01463971617602054 4.0100961141798026e-05 0.0005177740433057887 1.4182813752118158e-06 0.014639716176020542 4.0100961141798026e-05 0.018857536138939805 7.800066804936477e-05']
['59866.3802168445 0.033437154288569595 6.6862762281425e-05 0.01468413203959445 4.013480419418831e-05 0.0005193449331367849 1.4194783283400895e-06 0.014684132039594452 4.013480419418831e-05 0.018753022248975144 7.798353343884968e-05']
['59866.38024838246 0.03351736557808557 6.69190781299395e-05 0.014719925356748518 4.015453555060964e-05 0.0005206108627711683 1.4201761823197257e-06 0.014719925356748518 4.015453555060964e-05 0.018797440221337055 7.804197423852193e-05']
['59866.38027992043 0.03351369891982193 6.691721105673929e-05 0.014760795168472712 4.0183640447631314e-05 0.0005220563366731995 1.4212055574817656e-06 0.01476079516847271 4.0183640447631314e-05 0.01875290375134922 7.805535276479572e-05']
['59866.38031145839 0.03348940882221905 6.690760741750434e-05 0.014616574443779142 4.008868326952888e-05 0.000516955571955138 1.4178471343090858e-06 0.014616574443779142 4.008868326952888e-05 0.018872834378439906 7.799827213867937e-05']
['59866.38034299635 0.03353636840757 6.694748522412784e-05 0.014645921277544098 4.01069867391929e-05 0.0005179935038790911 1.418494487125255e-06 0.014645921277544098 4.01069867391929e-05 0.018890447130025904 7.804188723456532e-05']
['59866.38037453432 0.03345303105282959 6.689786499164769e-05 0.014706848971922705 4.014089659424635e-05 0.0005201483802638795 1.4196938029144296e-06 0.014706848971922707 4.014089659424635e-05 0.018746182080906882 7.801676691475172e-05']
['59866.38040607228 0.03339728627629407 6.683650857496524e-05 0.014625167544013266 4.0107487308231196e-05 0.0005172594907059703 1.4185121911334334e-06 0.014625167544013266 4.0107487308231196e-05 0.018772118732280803 7.794696541027963e-05']
['59866.38043761024 0.03353774148550593 6.695056543014932e-05 0.014709368244498916 4.0127118007201535e-05 0.0005202374813046573 1.4192064850839842e-06 0.014709368244498918 4.0127118007201535e-05 0.018828373241007012 7.805487691989901e-05']
['59866.38046914821 0.033481109264393974 6.694351367004172e-05 0.014696705026975272 4.01359712050502e-05 0.0005197896116014715 1.419519602906159e-06 0.014696705026975274 4.01359712050502e-05 0.0187844042374187 7.805338049734734e-05']
['59866.380500686166 0.033532239799940376 6.692901343502902e-05 0.01471828449304124 4.013343838047443e-05 0.0005205528290889565 1.4194300225614435e-06 0.014718284493041241 4.013343838047443e-05 0.018813955306899135 7.803964194962477e-05']
['59866.38053222413 0.03341556126535182 6.685094877906891e-05 0.01472323643824052 4.015730021024591e-05 0.0005207279683237088 1.42027396215241e-06 0.014723236438240517 4.015730021024591e-05 0.018692324827111303 7.798498645789145e-05']
['59866.3805637621 0.0334988860863093 6.690484808163645e-05 0.014752855433054 4.016510262702922e-05 0.0005217755259757041 1.4205499161966605e-06 0.014752855433054001 4.016510262702922e-05 0.018746030653255297 7.803521106440759e-05']
['59866.380595300056 0.033574544313582144 6.698622547531047e-05 0.014773585780426392 4.018094585597916e-05 0.000522508712032666 1.4211102557970869e-06 0.014773585780426394 4.018094585597916e-05 0.01880095853315575 7.8113141105132e-05']
['59866.38062683802 0.03357633409444517 6.69811507054599e-05 0.014711124186328384 4.0151171972451486e-05 0.0005202995850428665 1.4200572200774266e-06 0.014711124186328384 4.0151171972451486e-05 0.01886520990811679 7.809347706811949e-05']
['59866.38065837599 0.03344642744114097 6.690889747385622e-05 0.014644462660382314 4.012155249045897e-05 0.0005179419158498963 1.4190096451949976e-06 0.014644462660382314 4.012155249045897e-05 0.018801964780758657 7.801627737473545e-05']
['59866.380689913945 0.03345689778459807 6.68685111976881e-05 0.014628148403290606 4.008757407225811e-05 0.0005173649170367813 1.4178079044805287e-06 0.014628148403290606 4.008757407225811e-05 0.018828749381307467 7.796416731290164e-05']
['59866.38072145191 0.033403596046026635 6.683571728451948e-05 0.014634991845019136 4.0113598328823235e-05 0.0005176069542765274 1.4187283242744466e-06 0.014634991845019136 4.0113598328823235e-05 0.018768604201007497 7.794943152982185e-05']
['59866.38075298987 0.03345412243104609 6.687860284705039e-05 0.014685011918279391 4.0138276513648405e-05 0.0005193760524794581 1.4196011365192158e-06 0.014685011918279391 4.0138276513648405e-05 0.0187691105127667 7.79989023016324e-05']
['59866.380784527835 0.033484301914944524 6.690604822633517e-05 0.014708900408076053 4.014907356373206e-05 0.0005202209349759334 1.419983004050688e-06 0.014708900408076053 4.014907356373206e-05 0.01877540150686847 7.802799111402687e-05']
['59866.3808160658 0.033512703521540545 6.691287304072028e-05 0.014683245599902929 4.012227771968126e-05 0.0005193135817459718 1.4190352949317983e-06 0.014683245599902927 4.012227771968126e-05 0.018829457921637618 7.8020059907557e-05']
['59866.38084760376 0.03359958064538446 6.698016394325253e-05 0.014656492597195647 4.0104150364080366e-05 0.0005183673878296574 1.4183941708764498e-06 0.014656492597195645 4.0104150364080366e-05 0.01894308804818881 7.806846506938479e-05']
['59866.380879141725 0.03346297257205824 6.685990094142073e-05 0.014646863892053648 4.0123237223145704e-05 0.0005180268420476744 1.4190692304249713e-06 0.014646863892053648 4.0123237223145704e-05 0.018816108680004592 7.797512756745844e-05']
['59866.38091067969 0.03337432966467826 6.681167613154181e-05 0.014720537061449296 4.0144378577648546e-05 0.0005206324973993554 1.4198169528855903e-06 0.014720537061449298 4.0144378577648546e-05 0.018653792603228962 7.794466754622538e-05']
['59866.38094221765 0.03342153272742468 6.685279000768442e-05 0.014694704191086235 4.014583086398643e-05 0.0005197188465076813 1.4198683170076922e-06 0.014694704191086237 4.014583086398643e-05 0.018726828536338443 7.798065957384148e-05']
['59866.380973755615 0.03340299709789966 6.682910088027221e-05 0.014641800137675782 4.0114669096645943e-05 0.0005178477483721544 1.4187661949393107e-06 0.014641800137675784 4.0114669096645943e-05 0.018761196960223873 7.794430961397375e-05']
['59866.38100529357 0.03350337272242052 6.689957687027668e-05 0.014718497616814433 4.0136176385895e-05 0.0005205603668005107 1.4195268596940872e-06 0.014718497616814433 4.0136176385895e-05 0.01878487510560609 7.801580634910937e-05']
['59866.38103683154 0.03345606643399537 6.685349368873551e-05 0.014666949045283529 4.0122424884778294e-05 0.0005187372090297397 1.4190404998323856e-06 0.014666949045283529 4.0122424884778294e-05 0.018789117388711838 7.796921570097057e-05']
['59866.381068369505 0.0335035801238642 6.688401188988132e-05 0.014679406377389622 4.013238324942596e-05 0.0005191777970258336 1.4193927049343382e-06 0.014679406377389624 4.013238324942596e-05 0.018824173746474576 7.80005078942733e-05']
['59866.38109990746 0.03346358183324715 6.688001493363501e-05 0.014617877781710902 4.009234945079362e-05 0.0005170016681049956 1.4179767989469868e-06 0.014617877781710904 4.009234945079362e-05 0.018845704051536245 7.797648929009176e-05']
['59866.38113144543 0.03359724402914863 6.700518276582621e-05 0.014669387237003282 4.01197467387906e-05 0.0005188234424218296 1.4189457797941048e-06 0.014669387237003282 4.01197467387906e-05 0.01892785679214535 7.809794232799269e-05']
['59866.381162983394 0.03333553678086073 6.679927059971421e-05 0.014679765751322323 4.0122620147039196e-05 0.0005191905072786797 1.419047405822168e-06 0.014679765751322323 4.0122620147039196e-05 0.018655771029538408 7.792282849151101e-05']
['59866.38119452135 0.03356058353266072 6.693630949264866e-05 0.014720364584520657 4.0136550264466306e-05 0.0005206263972758527 1.4195400829435848e-06 0.014720364584520659 4.0136550264466306e-05 0.01884021894814006 7.804749961163187e-05']
['59866.38122605932 0.0335433620635665 6.694751678029076e-05 0.014705903491338204 4.013589995629441e-05 0.0005201149407286304 1.4195170829968981e-06 0.014705903491338204 4.013589995629441e-05 0.018837458572228294 7.805677720959907e-05']
['59866.38125759728 0.03350865631223978 6.691602690922792e-05 0.014623932525146004 4.008666489430362e-05 0.0005172158108487399 1.4177757488881713e-06 0.014623932525146004 4.008666489430362e-05 0.018884723787093778 7.800445730639186e-05']
['59866.38128913524 0.033399183567543775 6.685238087015691e-05 0.014680495150551955 4.012675120066682e-05 0.0005192163044993204 1.4191935119566157e-06 0.014680495150551953 4.012675120066682e-05 0.01871868841699182 7.797048794209728e-05']
['59866.38132067321 0.03347100574035414 6.689319112814483e-05 0.01460605858087097 4.008089558588471e-05 0.0005165836493856464 1.41757170134304e-06 0.014606058580870971 4.008089558588471e-05 0.018864947159483166 7.798190309471235e-05']
['59866.38135221117 0.033596162864688396 6.697133014114616e-05 0.014787570997525952 4.01878844606549e-05 0.0005230033379063566 1.4213556587375992e-06 0.01478757099752595 4.01878844606549e-05 0.018808591867162446 7.810393791799066e-05']
['59866.38138374913 0.033570049125641224 6.695919261918123e-05 0.014748154048822055 4.016056935604177e-05 0.0005216092485223956 1.4203895845330987e-06 0.014748154048822057 4.016056935604177e-05 0.018821895076819167 7.807947750346474e-05']
['59866.3814152871 0.03344155113390113 6.687307664853695e-05 0.01466075242010332 4.012216362740694e-05 0.0005185180482457579 1.4190312597430367e-06 0.01466075242010332 4.012216362740694e-05 0.018780798713797814 7.798587304496574e-05']
['59866.38144682506 0.03346878290677663 6.689541672449195e-05 0.01464420719186469 4.009761129707256e-05 0.0005179328804993665 1.4181628986903383e-06 0.01464420719186469 4.009761129707256e-05 0.01882457571491194 7.799240482556337e-05']
['59866.38147836302 0.03352436847364413 6.692698789437167e-05 0.014752801762211516 4.017636141807999e-05 0.0005217736277579527 1.420948114474209e-06 0.014752801762211517 4.017636141807999e-05 0.01877156671143261 7.805998799263011e-05']
['59866.38150990098 0.03343967079373194 6.686161111684271e-05 0.014691720792429024 4.011718762398743e-05 0.0005196133303646793 1.4188552696228017e-06 0.014691720792429025 4.011718762398743e-05 0.018747950001302915 7.797348128689725e-05']
['59866.38154143895 0.03352933262285254 6.6960376571802e-05 0.014753632867394164 4.014839037125893e-05 0.0005218030220908522 1.4199588410597586e-06 0.014753632867394164 4.014839037125893e-05 0.018775699755458376 7.80742292952068e-05']
['59866.38157297691 0.03351389081565037 6.689624943220154e-05 0.014779531782119038 4.018401767442957e-05 0.0005227190088240031 1.4212188991505676e-06 0.014779531782119038 4.018401767442957e-05 0.018734359033531333 7.803757725963943e-05']
['59866.38160451487 0.033484323226529424 6.69026536454669e-05 0.014740557477799432 4.014350616655176e-05 0.0005213405747826625 1.419786097654821e-06 0.014740557477799433 4.014350616655176e-05 0.01874376574872999 7.802221576031588e-05']
['59866.381636052836 0.03348487638821748 6.690239849235897e-05 0.014654534346440035 4.010323893082226e-05 0.0005182981288768643 1.4183619355190441e-06 0.014654534346440035 4.010323893082226e-05 0.01883034204177745 7.800128650716611e-05']
['59866.3816675908 0.03345581914681682 6.688702771885413e-05 0.014715293472653572 4.014535953732564e-05 0.0005204470433823818 1.4198516472370534e-06 0.014715293472653572 4.014535953732564e-05 0.018740525674163247 7.800977098699818e-05']
['59866.38169912876 0.033470048933785426 6.691424887555165e-05 0.014637072951394872 4.008969087542275e-05 0.000517680558358038 1.4178827710776853e-06 0.01463707295139487 4.008969087542275e-05 0.018832975982390556 7.800448715981805e-05']
['59866.381730666726 0.03343649754961951 6.682699087706894e-05 0.0146866624534336 4.012438205365784e-05 0.0005194344282191335 1.41910972052164e-06 0.0146866624534336 4.012438205365784e-05 0.018749835096185913 7.79474999270134e-05']
['59866.381762204684 0.03346405966480551 6.688975218587902e-05 0.014721588269962624 4.0168898168454425e-05 0.000520669676295159 1.420684156014334e-06 0.014721588269962622 4.0168898168454425e-05 0.018742471394842884 7.802422269754417e-05']
['59866.38179374265 0.03339466036030477 6.685183760735572e-05 0.014674397033614945 4.0127400692945374e-05 0.0005190006277317476 1.4192164830469784e-06 0.014674397033614943 4.0127400692945374e-05 0.01872026332668983 7.797035640454937e-05']
['59866.381825280616 0.03352539135168205 6.693032896969516e-05 0.014746083994614922 4.015730581225776e-05 0.0005215360353313882 1.4202741602830495e-06 0.014746083994614922 4.015730581225776e-05 0.01877930735706713 7.805304700068285e-05']
['59866.381856818574 0.03352358742907708 6.69252884108885e-05 0.014737359699580206 4.0152731157644e-05 0.0005212274765136622 1.420112364973112e-06 0.014737359699580206 4.0152731157644e-05 0.018786227729496875 7.804637114112766e-05']
['59866.38188835654 0.03352361507521833 6.689859336972709e-05 0.014632366017362414 4.010129572869475e-05 0.0005175140846206886 1.4182932088025952e-06 0.014632366017362416 4.010129572869475e-05 0.018891249057855913 7.799702375070682e-05']
['59866.381919894506 0.03355444351349564 6.693508469750768e-05 0.01470607678592874 4.013171296252213e-05 0.0005201210697710071 1.4193689983845529e-06 0.014706076785928742 4.013171296252213e-05 0.018848366727566894 7.804396164194123e-05']
['59866.381951432464 0.033349446311273005 6.680277591824872e-05 0.014681270376684147 4.012860453145405e-05 0.0005192437225150877 1.4192590601246096e-06 0.014681270376684147 4.012860453145405e-05 0.01866817593458886 7.79289148649305e-05']
['59866.38198297043 0.03362288947271035 6.698214818934052e-05 0.014706833789601841 4.014019553139615e-05 0.0005201478432991211 1.4196690078882011e-06 0.014706833789601843 4.014019553139615e-05 0.01891605568310851 7.8088689791528e-05']
['59866.38201450839 0.03343156633606501 6.689699340381268e-05 0.014626959115285387 4.0088195974915223e-05 0.0005173228545779391 1.41782989978764e-06 0.014626959115285389 4.0088195974915223e-05 0.018804607220779625 7.798891705231562e-05']
['59866.382046046354 0.03343601628419055 6.690339997881315e-05 0.01462754400963272 4.009164557961654e-05 0.0005173435409838422 1.4179519045965128e-06 0.01462754400963272 4.009164557961654e-05 0.018808472274557834 7.799618563754668e-05']
['59866.38207758432 0.03345208589843534 6.686858877523153e-05 0.01459848651875848 4.007535479898074e-05 0.0005163158424712905 1.4173757360931766e-06 0.01459848651875848 4.007535479898074e-05 0.018853599379676858 7.795795166020725e-05']
['59866.38210912228 0.03356034717866854 6.696936303140245e-05 0.014761025550371681 4.017526059081354e-05 0.0005220644847660929 1.4209091806739988e-06 0.014761025550371681 4.017526059081354e-05 0.01879932162829686 7.809575627632752e-05']
['59866.382140660244 0.033439478671495534 6.6863345005509e-05 0.014631679949994857 4.010397929255474e-05 0.0005174898199511684 1.418388120458911e-06 0.014631679949994857 4.010397929255474e-05 0.01880779872150068 7.796817338134442e-05']
['59866.38217219821 0.03351330626855295 6.691887779439393e-05 0.014646075284209636 4.01113743200662e-05 0.0005179989507506665 1.4186496660550773e-06 0.014646075284209636 4.01113743200662e-05 0.018867230984343314 7.80196036589875e-05']
['59866.38220373617 0.03343456750061058 6.684701527950046e-05 0.014668310441106468 4.012614793406528e-05 0.0005187853585574565 1.4191721757651408e-06 0.01466831044110647 4.012614793406528e-05 0.01876625705950411 7.796557701834996e-05']
['59866.38223527413 0.033576120730663434 6.694947564808301e-05 0.01471533790975844 4.01377262082076e-05 0.0005204486150234699 1.4195816734456349e-06 0.01471533790975844 4.01377262082076e-05 0.018860782820904993 7.805939632560769e-05']
['59866.38226681209 0.03347458467437312 6.688097994361198e-05 0.014782590869952443 4.0175445721476574e-05 0.0005228272019240117 1.4209157283318077e-06 0.014782590869952443 4.0175445721476574e-05 0.01869199380442068 7.802007380884191e-05']
['59866.38229835006 0.033523685592025905 6.692426454820134e-05 0.014661745390414713 4.012246938443877e-05 0.0005185531673865139 1.4190420736859255e-06 0.014661745390414713 4.012246938443877e-05 0.018861940201611194 7.802992845583586e-05']
['59866.38232988802 0.03348809591308349 6.690118417491848e-05 0.014667622481590563 4.0124353252155714e-05 0.0005187610269668779 1.4191087018768775e-06 0.014667622481590563 4.0124353252155714e-05 0.01882047343149293 7.801110285023627e-05']
['59866.38236142598 0.033530546452707324 6.694512348535323e-05 0.014648743302526315 4.0117973496884655e-05 0.0005180933125958575 1.418883064190854e-06 0.014648743302526315 4.0117973496884655e-05 0.01888180315018101 7.804550823696346e-05']
['59866.38239296395 0.033447199628232956 6.68645755762029e-05 0.014645261433277034 4.0116940695119375e-05 0.0005179701666620302 1.4188465363005922e-06 0.014645261433277034 4.0116940695119375e-05 0.018801938194955924 7.797589626109773e-05']
['59866.38242450191 0.03347781668118373 6.690404458277097e-05 0.014645596668839935 4.009688505257081e-05 0.0005179820231946827 1.4181372130453726e-06 0.014645596668839935 4.009688505257081e-05 0.018832220012343793 7.799943187262636e-05']
['59866.38245603987 0.03355747815153905 6.699020166710792e-05 0.014743693639927486 4.016467617033544e-05 0.0005214514938282218 1.420534833376476e-06 0.014743693639927486 4.016467617033544e-05 0.01881378451161156 7.810818351022959e-05']
['59866.38248757784 0.03347537794979686 6.689375106741426e-05 0.014718701932299403 4.0147722432079775e-05 0.0005205675929825959 1.4199352175437483e-06 0.014718701932299402 4.0147722432079775e-05 0.018756676017497458 7.801675171623404e-05']
['59866.382519115796 0.03334698028281925 6.680942244986657e-05 0.014635142299237042 4.011528978062501e-05 0.0005176122755059693 1.4187881471445031e-06 0.014635142299237042 4.011528978062501e-05 0.01871183798358221 7.792775758526773e-05']
['59866.38255065376 0.03358404329632533 6.696424196623019e-05 0.014725778148734511 4.0146886289667984e-05 0.0005208178629434926 1.4199056450553115e-06 0.01472577814873451 4.0146886289667984e-05 0.018858265147590824 7.807677107096167e-05']
['59866.38258219173 0.03349956782408208 6.69028395374402e-05 0.014690983854959892 4.013923575276919e-05 0.0005195872665333544 1.4196350626631447e-06 0.01469098385495989 4.013923575276919e-05 0.01880858396912219 7.802017806304248e-05']
['59866.382613729686 0.03350122377987022 6.69252397127601e-05 0.01470596023167688 4.013038480027143e-05 0.0005201169475076022 1.4193220242540137e-06 0.01470596023167688 4.013038480027143e-05 0.01879526354819334 7.80348351368045e-05']
['59866.38264526765 0.03348315330353438 6.688867828319438e-05 0.014632700040384222 4.010202039387715e-05 0.0005175258982684723 1.4183188385905653e-06 0.014632700040384222 4.010202039387715e-05 0.018850453263150158 7.798889229976035e-05']
['59866.38267680562 0.03342121991705872 6.688738988797104e-05 0.014669185167999348 4.011499266110339e-05 0.0005188162956927581 1.4187776386910466e-06 0.014669185167999348 4.011499266110339e-05 0.018752034749059374 7.79944585353718e-05']
['59866.382708343575 0.03344168171466504 6.686429857100454e-05 0.01461055378965649 4.008588161804458e-05 0.0005167426348741898 1.4177480461574086e-06 0.014610553789656488 4.008588161804458e-05 0.018831127925008555 7.795968399428209e-05']
['59866.38273988154 0.03348111805751266 6.692288099681603e-05 0.014764592717059261 4.018180509718253e-05 0.0005221906474796842 1.4211406452381592e-06 0.01476459271705926 4.018180509718253e-05 0.0187165253404534 7.805926890371164e-05']
['59866.3827714195 0.03347024859316928 6.688845916101357e-05 0.014749518962396277 4.015293815781495e-05 0.0005216575224651135 1.4201196861065402e-06 0.014749518962396277 4.015293815781495e-05 0.018720729630773 7.801489865173121e-05']
['59866.382802957465 0.03343792620324823 6.687162814548161e-05 0.014641627934840473 4.010771615135299e-05 0.0005178416579427202 1.4185202848032171e-06 0.014641627934840473 4.010771615135299e-05 0.018796298268407757 7.797719888342405e-05']
['59866.38283449543 0.0333530857262402 6.679437125210361e-05 0.014645398829487077 4.0104685823949193e-05 0.000517975026058917 1.418413108895328e-06 0.014645398829487078 4.0104685823949193e-05 0.018707686896753117 7.790939517158067e-05']
['59866.38286603339 0.033482276553663586 6.691555673634788e-05 0.014727037494064612 4.014492772715045e-05 0.0005208624031733472 1.419836375076196e-06 0.014727037494064614 4.014492772715045e-05 0.01875523905959897 7.803401153057252e-05']
['59866.382897571355 0.03348208516024095 6.691753624401029e-05 0.01461796744395471 4.0094167655674485e-05 0.0005170048392581757 1.4180411047901742e-06 0.01461796744395471 4.0094167655674485e-05 0.01886411771628624 7.80096079785674e-05']
['59866.38292910932 0.033562859644187114 6.697675216671771e-05 0.014651373057459659 4.010932404593233e-05 0.0005181863211506935 1.4185771524410555e-06 0.014651373057459659 4.010932404593233e-05 0.018911486586727456 7.806819586889101e-05']
['59866.38296064728 0.033556987993498356 6.69732434840638e-05 0.014668486396054156 4.0126006382961374e-05 0.00051879158169072 1.4191671694189437e-06 0.014668486396054154 4.0126006382961374e-05 0.0188885015974442 7.807375827396265e-05']
['59866.382992185245 0.03341604710975739 6.684197185512033e-05 0.014687904918327504 4.014156764027171e-05 0.0005194783714256852 1.4197175363126469e-06 0.014687904918327502 4.014156764027171e-05 0.018728142191429886 7.796919041582518e-05']
['59866.3830237232 0.03334651728342492 6.680567559175278e-05 0.01463940304819737 4.009902501419473e-05 0.0005177629686744826 1.4182128987054779e-06 0.01463940304819737 4.009902501419473e-05 0.01870711423522755 7.791617353514948e-05']
['59866.38305526117 0.03354713917418737 6.6948058424817e-05 0.014670466054985214 4.011968306950534e-05 0.0005188615978028343 1.4189435279537778e-06 0.014670466054985214 4.011968306950534e-05 0.018876673119202155 7.80489045179384e-05']
['59866.383086799135 0.033532758907085916 6.692310307395895e-05 0.014764269267285222 4.017435361942448e-05 0.0005221792077840442 1.4208771031229295e-06 0.014764269267285222 4.017435361942448e-05 0.018768489639800694 7.80556238447064e-05']
['59866.38311833709 0.03358827949649786 6.698330203189981e-05 0.014705228148554511 4.015054809236751e-05 0.0005200910553636735 1.4200351548331463e-06 0.014705228148554511 4.015054809236751e-05 0.018883051347943353 7.809500152515671e-05']
['59866.38314987506 0.03350826841773957 6.688993171281498e-05 0.014749646010363542 4.015723532669428e-05 0.0005216620158677802 1.4202716673661948e-06 0.014749646010363543 4.015723532669428e-05 0.01875862240737603 7.801837292348869e-05']
['59866.383181413024 0.0334530944566656 6.689768635451159e-05 0.014654829026030063 4.0110416081159836e-05 0.0005183085510353935 1.4186157752864973e-06 0.014654829026030063 4.0110416081159836e-05 0.018798265430635536 7.800093536484272e-05']
['59866.38321295098 0.033493504428534805 6.689605013920489e-05 0.01464700894876463 4.0116315486090804e-05 0.0005180319723793593 1.4188244240545116e-06 0.014647008948764632 4.0116315486090804e-05 0.018846495479770173 7.800256593476001e-05']
['59866.38324448895 0.03352151378054937 6.692983822994412e-05 0.014625466881942726 4.009557895777065e-05 0.0005172700776195544 1.4180910193912409e-06 0.014625466881942726 4.009557895777065e-05 0.018896046898606647 7.802088628979621e-05']
['59866.38327602691 0.03342159980162904 6.683875320256661e-05 0.014703640833289126 4.014608019543269e-05 0.0005200349155701777 1.4198771353037237e-06 0.014703640833289126 4.014608019543269e-05 0.01871795896833991 7.796875454136562e-05']
['59866.38330756487 0.03352217938136995 6.694659677277695e-05 0.014640322729604837 4.0102620474062324e-05 0.0005177954957504978 1.4183400620856148e-06 0.014640322729604839 4.0102620474062324e-05 0.01888185665176511 7.803888126019921e-05']
['59866.38333910284 0.03344371582390481 6.687683110323123e-05 0.014675635908283746 4.012118810812837e-05 0.0005190444439600612 1.4189967578063109e-06 0.014675635908283746 4.012118810812837e-05 0.018768079915621065 7.798859066310877e-05']
['59866.3833706408 0.03355769364807729 6.694938726592598e-05 0.014634570679731515 4.009238339547369e-05 0.0005175920586015532 1.4179779994944588e-06 0.014634570679731514 4.009238339547369e-05 0.01892312296834578 7.803601515718614e-05']
['59866.38340217876 0.033489101195405775 6.690126654900833e-05 0.01475938547061532 4.0171785608259136e-05 0.0005220064788104729 1.4207862783071784e-06 0.01475938547061532 4.0171785608259136e-05 0.018729715724790458 7.803558050541687e-05']
['59866.38343371672 0.033552178218616106 6.69582316784137e-05 0.014749309897623875 4.0176006960154515e-05 0.0005216501283113459 1.4209355780895518e-06 0.014749309897623877 4.0176006960154515e-05 0.01880286832099223 7.808659503885739e-05']
['59866.38346525469 0.033396942779012256 6.682730564218915e-05 0.014715280340834448 4.014334398730246e-05 0.0005204465789392873 1.4197803617372227e-06 0.014715280340834448 4.014334398730246e-05 0.018681662438177808 7.795753232290936e-05']
['59866.38349679265 0.03345554882901135 6.690962005568463e-05 0.014628195320885011 4.01020436762411e-05 0.0005173665764072408 1.4183196620357452e-06 0.014628195320885011 4.01020436762411e-05 0.018827353508126338 7.800686612733026e-05']
['59866.38352833061 0.03346518228622221 6.688103512468463e-05 0.01468787807988248 4.012767627607771e-05 0.0005194774222098651 1.419226229806477e-06 0.014687878079882479 4.012767627607771e-05 0.01877730420633973 7.799553360716875e-05']
['59866.38355986858 0.033432107158596014 6.68343026336057e-05 0.014629190505093766 4.009640917402752e-05 0.0005174017738485986 1.4181203822848223e-06 0.014629190505093764 4.009640917402752e-05 0.018802916653502248 7.793937411329033e-05']
['59866.38359140654 0.03351847577214747 6.691691317184079e-05 0.014714653764609375 4.0142343632651796e-05 0.0005204244183385219 1.4197449814288898e-06 0.014714653764609375 4.0142343632651796e-05 0.018803822007538093 7.803384535424088e-05']
['59866.3836229445 0.03347840549148188 6.688717089048502e-05 0.014796339551449314 4.019731240949942e-05 0.0005233134620620613 1.4216891042180042e-06 0.014796339551449315 4.019731240949942e-05 0.018682065940032563 7.803664238471465e-05']
['59866.383654482466 0.03347091706678015 6.692216601436254e-05 0.014695424138403553 4.0138431115536954e-05 0.0005197443094353073 1.4196066044424989e-06 0.014695424138403555 4.0138431115536954e-05 0.018775492928376592 7.803633741066149e-05']
['59866.383686020425 0.03354266067009864 6.694923109149117e-05 0.0147224653752131 4.013861948938357e-05 0.0005207006975476535 1.419613266804463e-06 0.0147224653752131 4.013861948938357e-05 0.018820195294885537 7.805964590142214e-05']
['59866.38371755839 0.033538546310322645 6.696403019415951e-05 0.01466768115290296 4.013674005553805e-05 0.0005187631020400747 1.4195467954296343e-06 0.01466768115290296 4.013674005553805e-05 0.018870865157419685 7.807137274398432e-05']
['59866.383749096356 0.0334008953382709 6.684895621798238e-05 0.014624066161473583 4.010396434153008e-05 0.0005172205372669867 1.4183875916745822e-06 0.014624066161473583 4.010396434153008e-05 0.018776829176797315 7.795582661572156e-05']
['59866.383780634314 0.03360958117068524 6.699629107256147e-05 0.014743122265298775 4.014729297593205e-05 0.0005214312855845515 1.419920028639581e-06 0.014743122265298775 4.014729297593205e-05 0.01886645890538647 7.810446946734037e-05']
['59866.38381217228 0.03346689303121504 6.686059314052111e-05 0.014730146194642255 4.016426284764384e-05 0.0005209723509652415 1.420520215076596e-06 0.014730146194642255 4.016426284764384e-05 0.01873674683657279 7.799683920004016e-05']
['59866.383843710246 0.03348201600058186 6.690858977820947e-05 0.014634631187991463 4.010478839804811e-05 0.0005175941986434796 1.418416736711967e-06 0.014634631187991465 4.010478839804811e-05 0.018847384812590393 7.800739348652108e-05']
['59866.383875248204 0.03349137953804229 6.69095334805848e-05 0.014691160776675455 4.013623388139997e-05 0.0005195935238590371 1.419528893181603e-06 0.014691160776675457 4.013623388139997e-05 0.018800218761366838 7.802437401717451e-05']
['59866.38390678617 0.03357933687124282 6.697213760772365e-05 0.014772524498313882 4.017434208314279e-05 0.0005224711768561723 1.4208766951104282e-06 0.01477252449831388 4.017434208314279e-05 0.018806812372928944 7.809766307362371e-05']
['59866.38393832413 0.0334710653393287 6.688077513445917e-05 0.01467741902999463 4.013931061701329e-05 0.0005191075089899327 1.4196377104441467e-06 0.014677419029994629 4.013931061701329e-05 0.01879364630933407 7.800129703662091e-05']
['59866.383969862094 0.03359331844466321 6.697165733944914e-05 0.014660623348223833 4.012189593655421e-05 0.0005185134832618391 1.4190217921158294e-06 0.014660623348223833 4.012189593655421e-05 0.01893269509643938 7.807028513036363e-05']
['59866.38400140006 0.033388509862780656 6.68384032006617e-05 0.014671765497156711 4.010703815338396e-05 0.0005189075561683578 1.4184963055302889e-06 0.014671765497156711 4.010703815338396e-05 0.018716744365623945 7.794835887849866e-05']
['59866.38403293802 0.033517887874805904 6.693095770537548e-05 0.014696824515548091 4.013899234416667e-05 0.0005197938376452509 1.41962645384486e-06 0.014696824515548091 4.013899234416667e-05 0.018821063359257813 7.804416573815004e-05']
['59866.384064475984 0.03348549756419737 6.691378472955803e-05 0.01469816121459794 4.01330340794978e-05 0.0005198411137032974 1.4194157233394598e-06 0.014698161214597938 4.01330340794978e-05 0.018787336349599434 7.802637381847093e-05']
['59866.38409601395 0.03462478991795037 6.784163094882544e-05 0.014700405195805259 4.014338793736909e-05 0.0005199204783035975 1.4197819161528568e-06 0.014700405195805259 4.014338793736909e-05 0.01992438472214511 7.882879223283039e-05']
['59866.38412755191 0.033334123835502924 6.678447901129701e-05 0.014608795799948157 4.0088494202883735e-05 0.0005166804587070819 1.417840447444386e-06 0.014608795799948157 4.0088494202883735e-05 0.018725328035554767 7.789257990505265e-05']
['59866.384159089874 0.033545172349557895 6.694523815207231e-05 0.014677777545171918 4.012275371727591e-05 0.000519120188870519 1.4190521299029288e-06 0.014677777545171916 4.012275371727591e-05 0.018867394804385977 7.804806389075168e-05']
['59866.38419062783 0.03347615607255794 6.688867600689522e-05 0.014618730658296485 4.008579649380748e-05 0.0005170318324437607 1.4177450355033838e-06 0.014618730658296487 4.008579649380748e-05 0.018857425414261452 7.798054923183312e-05']
['59866.3842221658 0.03342878330022391 6.685951378218487e-05 0.014694313664232872 4.013042702195485e-05 0.000519705034445654 1.4193235175405963e-06 0.014694313664232872 4.013042702195485e-05 0.01873446963599104 7.797849547249942e-05']
['59866.38425370376 0.0335536407831298 6.694552883555628e-05 0.014736022033333676 4.014201910464503e-05 0.0005211801662480304 1.4197335035985677e-06 0.014736022033333674 4.014201910464503e-05 0.018817618749796126 7.805821884254076e-05']
['59866.38428524172 0.033572220042449884 6.697344349119438e-05 0.014713949288199045 4.0142173166300136e-05 0.0005203995025823007 1.4197389524150015e-06 0.014713949288199047 4.0142173166300136e-05 0.01885827075425084 7.808223997543509e-05']
['59866.38431677969 0.03332540375887283 6.678822825746353e-05 0.014591058117916474 4.007306288198996e-05 0.0005160531165350076 1.4172946761113458e-06 0.014591058117916476 4.007306288198996e-05 0.018734345640956353 7.788785401148868e-05']
['59866.38434831765 0.03354844769149238 6.697566316994602e-05 0.014638132436523574 4.0098646625449306e-05 0.0005177180299792304 1.4181995159412013e-06 0.014638132436523574 4.0098646625449306e-05 0.018910315254968807 7.806177629446259e-05']
['59866.38437985561 0.03346030954236599 6.686314757334692e-05 0.014643870714438494 4.0111954721495284e-05 0.0005179209800447847 1.4186701935565032e-06 0.014643870714438494 4.0111954721495284e-05 0.0188164388279275 7.79721066471495e-05']
['59866.38441139358 0.033477212190516956 6.688116905410405e-05 0.014716109699819038 4.0137173668930445e-05 0.000520475911513064 1.4195621313662544e-06 0.014716109699819038 4.0137173668930445e-05 0.018761102490697918 7.800053515312269e-05']
['59866.384442931536 0.033451689853653946 6.68635896814857e-05 0.014681094540461733 4.012610969485922e-05 0.0005192375035808716 1.4191708233298821e-06 0.014681094540461731 4.012610969485922e-05 0.018770595313192216 7.79797685578635e-05']
['59866.3844744695 0.03358818838274505 6.697792987852221e-05 0.014695178153390323 4.013301631384399e-05 0.0005197356094951334 1.4194150950079883e-06 0.014695178153390321 4.013301631384399e-05 0.018893010229354728 7.808138119461967e-05']
['59866.38450600747 0.033442655642960416 6.689475180468764e-05 0.01470793497261996 4.0129519253336226e-05 0.0005201867896814726 1.419291411793299e-06 0.01470793497261996 4.0129519253336226e-05 0.018734720670340457 7.800824401635152e-05']
['59866.384537545426 0.033414335474333735 6.684438075932228e-05 0.014642990799812456 4.0101874220729676e-05 0.0005178898594309552 1.418313668773017e-06 0.014642990799812456 4.0101874220729676e-05 0.01877134467452128 7.795082780261206e-05']
['59866.38456908339 0.03353883491690254 6.695366973671771e-05 0.014725316749914445 4.015379213147868e-05 0.0005208015442983926 1.4201498892465078e-06 0.014725316749914443 4.015379213147868e-05 0.01881351816698809 7.807125536169806e-05']
['59866.38460062136 0.033443649427912885 6.684607327682165e-05 0.014654930644336334 4.010543370556153e-05 0.0005183121450477828 1.4184395597965393e-06 0.014654930644336334 4.010543370556153e-05 0.01878871878357655 7.79541103806682e-05']
['59866.384632159316 0.0334139971095046 6.685521759379106e-05 0.014627726904290095 4.0106599184686675e-05 0.0005173500095591281 1.4184807801885032e-06 0.014627726904290095 4.0106599184686675e-05 0.018786270205214506 7.79625513799687e-05']
['59866.38466369728 0.03343518695859771 6.68563871797285e-05 0.01475734897963936 4.01654448105784e-05 0.0005219344526759427 1.4205620184640596e-06 0.01475734897963936 4.01654448105784e-05 0.018677837978958348 7.79938424720656e-05']
['59866.38469523524 0.033472735059780497 6.690987027469497e-05 0.014646835103644557 4.01178049699039e-05 0.0005180258238659832 1.4188771037681803e-06 0.014646835103644557 4.01178049699039e-05 0.01882589995613594 7.80151845205775e-05']
['59866.384726773205 0.03354010530536023 6.691930725008228e-05 0.01465449576624987 4.011900952954416e-05 0.0005182967643817598 1.418919706350624e-06 0.014654495766249869 4.011900952954416e-05 0.01888560953911036 7.80238976754082e-05']
['59866.38475831117 0.033465171295894956 6.690855500617202e-05 0.014635495563390185 4.010087744758757e-05 0.0005176247696695671 1.4182784151346376e-06 0.014635495563390185 4.010087744758757e-05 0.01882967573250477 7.800535305400767e-05']
['59866.38478984913 0.03357766734892861 6.696665216715812e-05 0.014666518948396311 4.0119424822276824e-05 0.0005187219974640488 1.4189343943264536e-06 0.014666518948396313 4.0119424822276824e-05 0.018911148400532294 7.806472154915731e-05']
['59866.384821387095 0.033471224899528154 6.688758264081137e-05 0.014703519075210404 4.015213649297304e-05 0.0005200306092590465 1.4200913330126976e-06 0.014703519075210404 4.015213649297304e-05 0.01876770582431775 7.801373453746276e-05']
['59866.38485292506 0.03345688106572365 6.685700079260257e-05 0.014787094500630059 4.018569473558835e-05 0.0005229864852760568 1.4212782130557427e-06 0.014787094500630059 4.018569473558835e-05 0.01866978656509359 7.800479867523506e-05']
['59866.38488446302 0.033572552957237975 6.697231098882917e-05 0.014641553143710998 4.010755080610817e-05 0.0005178390127476189 1.4185144369114326e-06 0.014641553143710998 4.010755080610817e-05 0.01893099981352698 7.806347462705587e-05']
['59866.384916000985 0.0334827167520539 6.688299403958402e-05 0.014680558776794026 4.011734347033714e-05 0.0005192185548173062 1.418860781559895e-06 0.014680558776794028 4.011734347033714e-05 0.018802157975259873 7.799189790494929e-05']
['59866.38494753894 0.03356427209313968 6.69484330593673e-05 0.01477500054780319 4.0160501825621424e-05 0.0005225587491929643 1.4203871961330527e-06 0.01477500054780319 4.0160501825621424e-05 0.018789271545336494 7.807021580596742e-05']
['59866.38497907691 0.03338726977651101 6.684719489644145e-05 0.014671625738808883 4.013061513707723e-05 0.0005189026132279367 1.4193301707520624e-06 0.014671625738808885 4.013061513707723e-05 0.01871564403770213 7.796803022266909e-05']
['59866.385010614875 0.03340550529721095 6.683252334199802e-05 0.014573530423611116 4.006437077932097e-05 0.0005154332011595183 1.4169872558656497e-06 0.014573530423611116 4.006437077932097e-05 0.018831974873599836 7.792137051028825e-05']
['59866.38504215283 0.03355953138227181 6.695142753269385e-05 0.0147636053210823 4.0176666678545644e-05 0.0005221557254906793 1.4209589108546622e-06 0.0147636053210823 4.0176666678545644e-05 0.01879592606118951 7.808110010792956e-05']
['59866.3850736908 0.03352518276385063 6.693429788951058e-05 0.01465348815576068 4.012147880043955e-05 0.000518261127450634 1.419007038943698e-06 0.014653488155760678 4.012147880043955e-05 0.01887169460808995 7.803802467448712e-05']
['59866.385105228765 0.033448078458257265 6.68874502222554e-05 0.014667123519700386 4.011150129945397e-05 0.0005187433797999366 1.4186541570322405e-06 0.014667123519700388 4.011150129945397e-05 0.018780954938556877 7.799271461957708e-05']
['59866.38513676672 0.03348203962231085 6.68808864885844e-05 0.014658329155850434 4.0100334758755484e-05 0.0005184323428048102 1.4182592214434849e-06 0.014658329155850434 4.0100334758755484e-05 0.018823710466460412 7.798134280238553e-05']
['59866.38516830469 0.03345762948167423 6.690501740599177e-05 0.014692503030241149 4.0146560671077346e-05 0.0005196409963678956 1.4198941286534754e-06 0.014692503030241149 4.0146560671077346e-05 0.018765126451433082 7.802581423998442e-05']
['59866.38519984265 0.033549743784947635 6.696158680983287e-05 0.01465587859560044 4.011693274142117e-05 0.0005183456719654477 1.418846254996062e-06 0.014655878595600438 4.011693274142117e-05 0.018893865189347197 7.805909556656735e-05']
['59866.38523138061 0.033475257267140394 6.69116513298479e-05 0.014656584988258649 4.011863864694163e-05 0.000518370655495074 1.4189065890618463e-06 0.01465658498825865 4.011863864694163e-05 0.018818672278881746 7.801714074849844e-05']
['59866.38526291858 0.03337448009216135 6.682579348313647e-05 0.014681450334598294 4.012647494402843e-05 0.0005192500872243287 1.4191837413767131e-06 0.014681450334598294 4.012647494402843e-05 0.01869302975756306 7.79475507382018e-05']
['59866.38529445654 0.03349527805787809 6.690644361489806e-05 0.014693107824835325 4.015181089272937e-05 0.0005196623866010552 1.4200798172597525e-06 0.014693107824835324 4.015181089272937e-05 0.018802170233042766 7.80297386587898e-05']
['59866.3853259945 0.03339352942942233 6.67992762935236e-05 0.014630716523349747 4.0103339241865196e-05 0.0005174557457038627 1.4183654832964508e-06 0.01463071652334975 4.0103339241865196e-05 0.018762812906072582 7.79129073497237e-05']
['59866.38535753247 0.033418758146812326 6.682447990339322e-05 0.014674231025067474 4.013781205530097e-05 0.0005189947563804309 1.4195847096654704e-06 0.014674231025067475 4.013781205530097e-05 0.01874452712174485 7.79522614870516e-05']
['59866.38538907043 0.033468780906434015 6.688969180189775e-05 0.014709813167670073 4.0145722234463895e-05 0.0005202532172428763 1.419864475024253e-06 0.014709813167670073 4.0145722234463895e-05 0.01875896773876394 7.801224187958962e-05']
['59866.38542060839 0.03354418672325994 6.696549655555436e-05 0.01471741889049142 4.013398517440122e-05 0.0005205222146612772 1.4194493614406218e-06 0.01471741889049142 4.013398517440122e-05 0.018826767832768522 7.80712142528283e-05']
['59866.38545214635 0.03351217495916134 6.690454442026146e-05 0.014747973308485826 4.0165923371466676e-05 0.000521602856140634 1.4205789440931574e-06 0.014747973308485825 4.0165923371466676e-05 0.018764201650675515 7.803537316092793e-05']
['59866.38548368432 0.03343698165984653 6.688393195182968e-05 0.014683449395061127 4.013968406307684e-05 0.000519320789525262 1.4196509183968116e-06 0.014683449395061129 4.013968406307684e-05 0.0187535322647854 7.800419597701528e-05']
['59866.38551522228 0.03355599280610817 6.696382274633814e-05 0.01471184934691751 4.015002581078719e-05 0.0005203252323522653 1.4200166829008809e-06 0.014711849346917511 4.015002581078719e-05 0.018844143459190662 7.807802590620406e-05']
['59866.38554676024 0.033360498050674675 6.682485325678479e-05 0.014621439076373593 4.009208875995899e-05 0.0005171276231381897 1.4179675788947757e-06 0.014621439076373591 4.009208875995899e-05 0.018739058974301084 7.792904846029657e-05']
['59866.38557829821 0.033470788425052383 6.688653884942632e-05 0.014720839684428883 4.013884555749119e-05 0.0005206432004978208 1.419621262328197e-06 0.014720839684428885 4.013884555749119e-05 0.0187499487406235 7.800599978170877e-05']
['59866.38560983617 0.03352900081507987 6.690673699526528e-05 0.014641696667286595 4.011376144382133e-05 0.0005178440888557315 1.418734093287389e-06 0.014641696667286597 4.011376144382133e-05 0.01888730414779327 7.801041797430269e-05']
['59866.38564137413 0.033418167774526455 6.687278451274851e-05 0.014645284054443104 4.011803118868086e-05 0.0005179709667221188 1.4188851046207522e-06 0.014645284054443104 4.011803118868086e-05 0.01877288372008335 7.798349655500495e-05']
['59866.385672912096 0.033517340499378115 6.693342090861016e-05 0.014746352713322308 4.016358549007761e-05 0.0005215455393115174 1.4204962584532835e-06 0.014746352713322308 4.016358549007761e-05 0.018770987786055807 7.805892923905595e-05']
['59866.385704450055 0.03354955124614481 6.694817811907339e-05 0.014639692959173885 4.010036939097832e-05 0.000517773222177809 1.418260446307808e-06 0.014639692959173885 4.010036939097832e-05 0.018909858286970924 7.80390810988705e-05']
['59866.38573598802 0.033485079347959655 6.691970672208153e-05 0.014635011718867849 4.010154753288813e-05 0.0005176076571701409 1.4183021145541659e-06 0.01463501171886785 4.010154753288813e-05 0.018850067629091805 7.80152630086055e-05']
['59866.385767525986 0.0335057237620574 6.6903374112027e-05 0.01470091859069663 4.0127127640794985e-05 0.0005199386359335353 1.4192068258026548e-06 0.014700918590696633 4.0127127640794985e-05 0.018804805171360767 7.801440790183885e-05']
['59866.385799063944 0.03351874502313177 6.691310031294032e-05 0.014742000795126777 4.015878836611222e-05 0.0005213916216909063 1.4203265948995686e-06 0.014742000795126779 4.015878836611222e-05 0.01877674422800499 7.803903687593667e-05']
['59866.38583060191 0.03343724423245399 6.688182644193932e-05 0.014642272373456519 4.010326526779226e-05 0.0005178644502963341 1.4183628669988134e-06 0.014642272373456519 4.010326526779226e-05 0.01879497185899747 7.798365593730911e-05']
['59866.385862139876 0.033463188784762656 6.687983988895264e-05 0.014645622219839175 4.011117511750167e-05 0.0005179829268764227 1.4186426207055616e-06 0.014645622219839177 4.011117511750167e-05 0.018817566564923477 7.798602024003292e-05']
['59866.385893677834 0.03356543983206281 6.694146011512677e-05 0.01472746699889583 4.014813008572169e-05 0.0005208775937993405 1.4199496353420104e-06 0.014727466998895829 4.014813008572169e-05 0.01883797283316698 7.805787232384149e-05']
['59866.3859252158 0.03344113637355505 6.685755072128668e-05 0.014706417026876669 4.013534035912125e-05 0.0005201331033329416 1.4194972912955096e-06 0.01470641702687667 4.013534035912125e-05 0.01873471934667838 7.797934107308119e-05']
['59866.38595675376 0.033534059215101136 6.692880299479306e-05 0.014668751738114692 4.0111480064962286e-05 0.0005188009662463966 1.418653406015726e-06 0.014668751738114693 4.0111480064962286e-05 0.01886530747698644 7.80281712160274e-05']
['59866.385988291724 0.033398016791531725 6.682237909715303e-05 0.014633882034230345 4.0100756474905455e-05 0.0005175677027492089 1.418274136601229e-06 0.014633882034230343 4.0100756474905455e-05 0.018764134757301383 7.79313866042643e-05']
['59866.38601982969 0.033442675709676406 6.688636535324283e-05 0.014732554096746302 4.016168525557335e-05 0.0005210575130813171 1.420429051405642e-06 0.0147325540967463 4.016168525557335e-05 0.018710121612930106 7.801760591517289e-05']
['59866.38605136765 0.033472642995391835 6.689170170715364e-05 0.014696337527843883 4.013509613788552e-05 0.0005197766139785065 1.4194886537362041e-06 0.014696337527843883 4.013509613788552e-05 0.018776305467547952 7.800849760940236e-05']
['59866.386082905614 0.03337635621429319 6.682371916301773e-05 0.01468937331886025 4.014459568426603e-05 0.0005195303054708464 1.419824631461446e-06 0.014689373318860248 4.014459568426603e-05 0.01868698289543294 7.795510249772657e-05']
['59866.38611444358 0.0334289637595856 6.683979835525003e-05 0.01469694632476419 4.011754041544695e-05 0.0005197981457649967 1.4188677470682826e-06 0.01469694632476419 4.011754041544695e-05 0.01873201743482141 7.795495938781255e-05']
['59866.38614598154 0.0334699937502392 6.685826678446028e-05 0.014662204970583572 4.01011529563823e-05 0.0005185694217099852 1.4182881592649813e-06 0.01466220497058357 4.01011529563823e-05 0.01880778877965563 7.796236467586929e-05']
['59866.386177519504 0.03355412271497208 6.692032057829696e-05 0.014750054479097595 4.013935577955482e-05 0.0005216764624940297 1.4196393077423084e-06 0.014750054479097595 4.013935577955482e-05 0.018804068235874487 7.803523043279693e-05']
['59866.38620905746 0.033413031349852074 6.68301426672823e-05 0.01465434175114222 4.0104394478030354e-05 0.0005182913172116058 1.4184028046412984e-06 0.01465434175114222 4.0104394478030354e-05 0.018758689598709855 7.79399154822404e-05']
['59866.38624059543 0.0335271255582297 6.689761916687823e-05 0.014691060149901182 4.01313193535184e-05 0.0005195899649149187 1.4193550773137553e-06 0.014691060149901182 4.01313193535184e-05 0.018836065408328523 7.801162889756087e-05']
['59866.38627213339 0.03349147924584429 6.687218295159022e-05 0.014677513117072381 4.010704189066752e-05 0.0005191108366396005 1.4184964377096558e-06 0.014677513117072381 4.010704189066752e-05 0.018813966128771904 7.797732787118774e-05']
['59866.38630367135 0.03348626847128832 6.687112373988709e-05 0.014723415797701521 4.012801575280435e-05 0.0005207343118669997 1.4192382363396125e-06 0.014723415797701521 4.012801575280435e-05 0.0187628526735868 7.798720945445223e-05']
['59866.38633520932 0.03357425948033016 6.691968234033797e-05 0.01473934987587452 4.014230148591207e-05 0.0005212978646014098 1.4197434907928982e-06 0.014739349875874521 4.014230148591207e-05 0.01883490960445564 7.80361983512626e-05']
['59866.38636674728 0.03363553613383621 6.696784912506622e-05 0.014704487783728796 4.0102914364906026e-05 0.0005200648703144059 1.418350456347949e-06 0.014704487783728796 4.0102914364906026e-05 0.01893104835010741 7.805726460103901e-05']
['59866.38639828524 0.033450096454570914 6.683866887609388e-05 0.014616828887469645 4.007059996236357e-05 0.000516964571059823 1.4172075681484617e-06 0.014616828887469646 4.007059996236357e-05 0.01883326756710127 7.792984433753151e-05']
['59866.38642982321 0.03343233767597176 6.684117737406715e-05 0.01463338437549499 4.009651866792601e-05 0.0005175501016719412 1.4181242548393073e-06 0.01463338437549499 4.009651866792601e-05 0.01879895330047677 7.794532572283502e-05']
['59866.386461361166 0.033472917310133854 6.68750981721529e-05 0.014683427453817932 4.010966314243689e-05 0.0005193200135125259 1.4185891455265855e-06 0.014683427453817932 4.010966314243689e-05 0.01878948985631592 7.798117614485465e-05']
['59866.38649289913 0.033495170026119944 6.687463781035258e-05 0.0147892943311283 4.016995598772458e-05 0.0005230642883644477 1.4207215687178324e-06 0.014789294331128298 4.016995598772458e-05 0.018705875694991644 7.801181030024602e-05']
['59866.3865244371 0.03342610006323633 6.684512702317926e-05 0.014724489970836635 4.0131818765000486e-05 0.000520772302970153 1.4193727403817579e-06 0.014724489970836634 4.0131818765000486e-05 0.0187016100923997 7.796687683966708e-05']
['59866.386555975056 0.03356287655375822 6.69068519325372e-05 0.014738064417487517 4.0143559849505146e-05 0.0005212524008110919 1.419787996300908e-06 0.014738064417487519 4.0143559849505146e-05 0.0188248121362707 7.802584336560073e-05']
['59866.38658751302 0.033479378021975835 6.6860712799983e-05 0.01464776355316869 4.008500241301216e-05 0.0005180586610506893 1.4177169506403195e-06 0.01464776355316869 4.008500241301216e-05 0.018831614468807142 7.795615648922797e-05']
['59866.38661905099 0.033425715431009265 6.684656099423284e-05 0.01475169007883353 4.01379943374087e-05 0.0005217343100013394 1.4195911565762444e-06 0.01475169007883353 4.01379943374087e-05 0.018674025352175737 7.79712851387326e-05']
['59866.386650588945 0.03344230057876274 6.683332502958749e-05 0.014622840797331874 4.007868651998124e-05 0.0005171771988758222 1.4174935716190062e-06 0.014622840797331876 4.007868651998124e-05 0.018819459781430865 7.792941965443739e-05']
['59866.38668212691 0.03336233089939935 6.680417729337676e-05 0.014702182267579196 4.012187872622549e-05 0.0005199833293607199 1.4190211834249653e-06 0.014702182267579194 4.012187872622549e-05 0.018660148631820153 7.792665305508032e-05']
['59866.38671366487 0.03347291834980077 6.689086876771504e-05 0.014653785514355002 4.008087065531201e-05 0.000518271644359558 1.4175708196044003e-06 0.014653785514355002 4.008087065531201e-05 0.018819132835445767 7.797989815963809e-05']
['59866.386745202835 0.03348375377227102 6.687867309048014e-05 0.014725189977889814 4.0124000695269774e-05 0.0005207970606552002 1.41909623272774e-06 0.014725189977889814 4.0124000695269774e-05 0.01875856379438121 7.799161715298204e-05']
['59866.3867767408 0.033337678533920244 6.67667938105613e-05 0.014633006015959259 4.009607567610636e-05 0.0005175367199407462 1.418108587208675e-06 0.014633006015959259 4.009607567610636e-05 0.018704672517960985 7.788132022742073e-05']
['59866.38680827876 0.03343724431903388 6.685061658179117e-05 0.014683706613601105 4.011214333930851e-05 0.0005193298867701714 1.418676864547021e-06 0.014683706613601107 4.011214333930851e-05 0.018753537705432775 7.796145830241302e-05']
['59866.386839816725 0.03348585003953033 6.685481165403457e-05 0.014681333061381805 4.010866747127622e-05 0.0005192459395327517 1.4185539308628267e-06 0.014681333061381805 4.010866747127622e-05 0.01880451697814852 7.796326729696394e-05']
['59866.38687135469 0.033367586410170055 6.676942130770052e-05 0.014718737917620085 4.0130371848272955e-05 0.0005205688657029659 1.4193215661707735e-06 0.014718737917620085 4.0130371848272955e-05 0.01864884849254997 7.790123469140826e-05']
['59866.38690289265 0.03345551912362949 6.686395147922877e-05 0.014734747653422385 4.013002532710108e-05 0.0005211350942786396 1.4193093104913534e-06 0.014734747653422387 4.013002532710108e-05 0.018720771470207107 7.798209371497045e-05']
['59866.386934430615 0.033406936833243556 6.682559997685615e-05 0.014683750200899372 4.0107367163313554e-05 0.0005193314283554992 1.4185079418762045e-06 0.014683750200899372 4.0107367163313554e-05 0.018723186632344183 7.793755008363836e-05']
['59866.38696596857 0.0335875555818033 6.694852070071323e-05 0.01468843811078124 4.010219891712339e-05 0.0005194972292511589 1.418325152558809e-06 0.014688438110781242 4.010219891712339e-05 0.018899117471022055 7.804031510701606e-05']
['59866.38699750654 0.03348597583128883 6.686270505646015e-05 0.014758576866061525 4.014499133235585e-05 0.00052197788027453 1.4198386246501616e-06 0.014758576866061524 4.014499133235585e-05 0.018727398965227307 7.798872775306767e-05']
['59866.387029044505 0.03349660634787254 6.691149551421755e-05 0.014700403318949642 4.011417256428915e-05 0.0005199204119234088 1.4187486336995353e-06 0.014700403318949642 4.011417256428915e-05 0.0187962030289229 7.801471061579811e-05']
['59866.38706058246 0.03337656121920326 6.680377709149246e-05 0.014694539615385756 4.011595090719208e-05 0.0005197130258329603 1.4188115297136497e-06 0.014694539615385754 4.011595090719208e-05 0.018682021603817503 7.792325808690277e-05']
['59866.38709212043 0.033596365344809254 6.696040858443805e-05 0.014688326713992849 4.009927414007377e-05 0.0005194932893957106 1.4182217097310558e-06 0.014688326713992847 4.009927414007377e-05 0.018908038630816408 7.804901091209084e-05']
['59866.387123658395 0.03349217239949723 6.687502793141608e-05 0.01471618062992532 4.0120231807995395e-05 0.0005204784201524038 1.4189629356078126e-06 0.01471618062992532 4.0120231807995395e-05 0.018775991769571905 7.798655243793616e-05']
['59866.38715519635 0.033450394892274755 6.684416384454984e-05 0.014716617017252388 4.015161096407847e-05 0.0005204938541968939 1.4200727462301846e-06 0.014716617017252388 4.015161096407847e-05 0.018733777875022367 7.79762406319241e-05']
['59866.38718673432 0.03355195419221884 6.694266261299595e-05 0.014735724790437178 4.013429334389305e-05 0.0005211696534310801 1.4194602607068295e-06 0.014735724790437178 4.013429334389305e-05 0.01881622940178166 7.805178780739788e-05']
['59866.38721827228 0.03351663987874444 6.689370839280031e-05 0.014701094774575658 4.0118808512848344e-05 0.0005199448671635886 1.4189125968393387e-06 0.014701094774575657 4.0118808512848344e-05 0.01881554510416878 7.800183984388827e-05']
['59866.38724981024 0.033434241716625034 6.685733301273051e-05 0.014663569699728254 4.010326163589158e-05 0.0005186176891298425 1.418362738546603e-06 0.014663569699728254 4.010326163589158e-05 0.018770672016896778 7.796264856591211e-05']
['59866.38728134821 0.033476131286804704 6.685717876313488e-05 0.014656374569134748 4.0081596372415506e-05 0.0005183632134409206 1.4175964865964687e-06 0.014656374569134748 4.0081596372415506e-05 0.018819756717669958 7.79513740733735e-05']
['59866.38731288617 0.03343088528382587 6.683677752710648e-05 0.014640902923639315 4.008716895677227e-05 0.0005178160159168398 1.4177935764511742e-06 0.014640902923639315 4.008716895677227e-05 0.018789982360186558 7.793674322921592e-05']
['59866.38734442413 0.0335349735833284 6.693232913274469e-05 0.014704790131283464 4.011876036086141e-05 0.0005200755636717076 1.4189108938111743e-06 0.014704790131283464 4.011876036086141e-05 0.018830183452044937 7.803493843161721e-05']
['59866.3873759621 0.033503414676808056 6.689166697723495e-05 0.014689705156675045 4.010768222464309e-05 0.0005195420418327418 1.4185190848913097e-06 0.014689705156675044 4.010768222464309e-05 0.01881370952013301 7.799436700445909e-05']
['59866.38740750006 0.0334947034170792 6.688290801894573e-05 0.014664590217463223 4.010082835912199e-05 0.0005186537825614054 1.4182766789853163e-06 0.014664590217463223 4.010082835912199e-05 0.018830113199615976 7.798333039924953e-05']
['59866.38743903802 0.03338178447000351 6.679168975107824e-05 0.014646093490996527 4.007772599547153e-05 0.0005179995946840291 1.4174596000137435e-06 0.014646093490996527 4.007772599547153e-05 0.018735690979006986 7.789322140451237e-05']
['59866.38747057598 0.03343766697072755 6.683248010443337e-05 0.014624095371877855 4.008664620313504e-05 0.0005172215703737044 1.4177750878233109e-06 0.014624095371877855 4.008664620313504e-05 0.018813571598849697 7.793278899619084e-05']
['59866.38750211395 0.03344075673777781 6.683072413591656e-05 0.014631909994797599 4.007797033288806e-05 0.0005174979561217214 1.417468241682104e-06 0.014631909994797597 4.007797033288806e-05 0.018808846742980216 7.792682076496408e-05']
['59866.38753365191 0.03347005635351628 6.688159019025135e-05 0.014720850359271134 4.0136012424645585e-05 0.0005206435780431343 1.4195210607511273e-06 0.014720850359271133 4.0136012424645585e-05 0.018749205994245143 7.800029871563334e-05']
['59866.38756518987 0.03343713328682069 6.684086883710242e-05 0.014691537334122904 4.010982671950933e-05 0.000519606841854397 1.4185949308820646e-06 0.014691537334122904 4.010982671950933e-05 0.01874559595269779 7.795190790716924e-05']
['59866.387596727836 0.03342375699582094 6.68338448820328e-05 0.01468716410723509 4.010229850458511e-05 0.0005194521705929618 1.418328674744765e-06 0.014687164107235088 4.010229850458511e-05 0.01873659288858585 7.794201156671844e-05']
['59866.3876282658 0.033492301329160944 6.6883646177156e-05 0.014693777483879239 4.012903170624958e-05 0.0005196860709448385 1.419274168342448e-06 0.014693777483879239 4.012903170624958e-05 0.018798523845281703 7.799846993135301e-05']
['59866.38765980376 0.033564395599298906 6.691495543190455e-05 0.014661461691445107 4.009571392358482e-05 0.0005185431335879888 1.4180957928304574e-06 0.014661461691445105 4.009571392358482e-05 0.018902933907853803 7.800818890024128e-05']
['59866.387691341726 0.03353398864728886 6.689221112893941e-05 0.014664638306080086 4.0092765769676756e-05 0.0005186554833483121 1.4179915232154654e-06 0.014664638306080086 4.0092765769676756e-05 0.018869350341208777 7.798716417963131e-05']
['59866.387722879685 0.03347399536066977 6.687845775853082e-05 0.014624268555466719 4.008039675028956e-05 0.0005172276954902 1.4175540586428715e-06 0.014624268555466719 4.008039675028956e-05 0.018849726805203054 7.796900868819747e-05']
['59866.38775441765 0.0335347641804732 6.690328213662275e-05 0.014658022289797646 4.011102716650745e-05 0.0005184214896383284 1.4186373880095469e-06 0.014658022289797646 4.011102716650745e-05 0.018876741890675557 7.800604887446128e-05']
['59866.387785955616 0.03344244379251731 6.684412051668853e-05 0.014638193914813575 4.0083424221916956e-05 0.0005177202043289518 1.4176611335483316e-06 0.014638193914813575 4.0083424221916956e-05 0.018804249877703738 7.79411145994445e-05']
['59866.387817493574 0.03351631949070275 6.6885924142838e-05 0.014746158921302904 4.0138519941935956e-05 0.0005215386853208907 1.4196097460337163e-06 0.014746158921302903 4.0138519941935956e-05 0.018770160569399848 7.8005305150167e-05']
['59866.38784903154 0.033390208538104545 6.680708972465674e-05 0.014633671181341045 4.008367971477839e-05 0.0005175602453537429 1.4176701697598475e-06 0.014633671181341045 4.008367971477839e-05 0.018756537356763497 7.79094899030617e-05']
['59866.387880569506 0.03339232322859849 6.679780643323405e-05 0.01464483345443169 4.008609036781747e-05 0.0005179550300067468 1.4177554291703474e-06 0.01464483345443169 4.008609036781747e-05 0.0187474897741668 7.79027700744244e-05']
['59866.387912107464 0.03343570068908362 6.684220536687525e-05 0.014665863403508964 4.011061036998778e-05 0.0005186988123064399 1.4186226468481316e-06 0.014665863403508964 4.011061036998778e-05 0.01876983728557466 7.795345715592412e-05']
['59866.38794364543 0.03348644477910638 6.686771873344935e-05 0.014743659470591744 4.0137645540341314e-05 0.0005214502853351806 1.4195788204034864e-06 0.014743659470591744 4.0137645540341314e-05 0.018742785308514635 7.798924540048951e-05']
['59866.38797518339 0.03337994233853593 6.679563102217047e-05 0.014653380944545477 4.009685513843122e-05 0.0005182573356295553 1.4181361550491095e-06 0.014653380944545477 4.009685513843122e-05 0.018726561393990454 7.790644463484572e-05']
['59866.388006721354 0.03348086616512656 6.688640582045266e-05 0.014699913641240993 4.011538283869575e-05 0.0005199030931172192 1.4187914384004926e-06 0.014699913641240993 4.011538283869575e-05 0.01878095252388557 7.799381529245387e-05']
['59866.38803825932 0.03346946392528175 6.688742940106025e-05 0.014606683322386087 4.006419186336669e-05 0.000516605745096821 1.4169809280082003e-06 0.014606683322386087 4.006419186336669e-05 0.018862780602895667 7.796837616332969e-05']
['59866.38806979728 0.033543754588918916 6.691702260699025e-05 0.01463325478907346 4.008992867060058e-05 0.0005175455184898203 1.4178911813616842e-06 0.01463325478907346 4.008992867060058e-05 0.018910499799845458 7.800698875997129e-05']
['59866.388101335244 0.033455372083864066 6.685764165032417e-05 0.014609742363241873 4.005598478103674e-05 0.0005167139365353362 1.4166906618479397e-06 0.014609742363241873 4.005598478103674e-05 0.018845629720622193 7.793860509286657e-05']
['59866.38813287321 0.033488479085886945 6.687708642969216e-05 0.014571968665751894 4.004669889049529e-05 0.0005153779652743611 1.4163622406522325e-06 0.014571968665751896 4.004669889049529e-05 0.01891651042013505 7.795051495243961e-05']
['59866.38816441117 0.03340532712284581 6.6811984389737e-05 0.014617579880466604 4.005710863260175e-05 0.0005169911320037548 1.4167304099661334e-06 0.014617579880466603 4.005710863260175e-05 0.018787747242379207 7.790002060396723e-05']
['59866.388195949134 0.03346925796942261 6.68337411679107e-05 0.01474713449146539 4.0140631018576156e-05 0.0005215731890572669 1.4196844100965015e-06 0.01474713449146539 4.0140631018576156e-05 0.018722123477957216 7.796165222126042e-05']
['59866.38822748709 0.03343649947337544 6.68299878854331e-05 0.01471946084068771 4.013080829964009e-05 0.0005205944338762298 1.4193370024802176e-06 0.014719460840687709 4.013080829964009e-05 0.018717038632687727 7.795337744799513e-05']
['59866.38825902506 0.033509822624962625 6.686428835624627e-05 0.014716617119699566 4.0130440161287955e-05 0.0005204938578202216 1.4193239822494434e-06 0.014716617119699566 4.0130440161287955e-05 0.01879320550526306 7.798259603864162e-05']
['59866.38829056302 0.03350939750272648 6.687356177912004e-05 0.014643893561634504 4.008371018973614e-05 0.0005179217880990471 1.4176712475909956e-06 0.014643893561634504 4.008371018973614e-05 0.018865503941091977 7.796651260381307e-05']
['59866.38832210098 0.03344962556912252 6.684768557858009e-05 0.014620715305249355 4.007323674220725e-05 0.0005171020249710587 1.4173008251586767e-06 0.014620715305249355 4.007323674220725e-05 0.018828910263873164 7.793893359682113e-05']
['59866.38835363895 0.03331658999978524 6.676549964591766e-05 0.014623390590299627 4.009190479708737e-05 0.0005171966438243767 1.4179610725391393e-06 0.014623390590299627 4.009190479708737e-05 0.018693199409485613 7.787806349176736e-05']
['59866.38838517691 0.03350553485979358 6.68575472933876e-05 0.014629251924958939 4.009258982837e-05 0.0005174039461319645 1.4179853005646509e-06 0.014629251924958939 4.009258982837e-05 0.01887628293483464 7.795734339517655e-05']
['59866.38841671487 0.03331173918096383 6.674133090545823e-05 0.014592424173978921 4.0064959385231694e-05 0.0005161014308849807 1.4170080735412552e-06 0.014592424173978923 4.0064959385231694e-05 0.018719315006984906 7.784347256881684e-05']
['59866.38844825284 0.033501238834188436 6.687199754237367e-05 0.014678545203656803 4.011976042039466e-05 0.0005191473392355137 1.418946263681864e-06 0.014678545203656801 4.011976042039466e-05 0.018822693630531635 7.798371132164138e-05']
['59866.388479790796 0.033556702211637 6.692841683351715e-05 0.014690827605434663 4.011634108745832e-05 0.0005195817403368442 1.4188253295176648e-06 0.014690827605434663 4.011634108745832e-05 0.018865874606202336 7.803033898482255e-05']
['59866.38851132876 0.03349414616973629 6.689822929573197e-05 0.014625972035022765 4.0069595048287024e-05 0.0005172879437550447 1.417172026583425e-06 0.014625972035022765 4.0069595048287024e-05 0.018868174134713527 7.798041760748682e-05']
['59866.38854286673 0.03349471845526608 6.685698931825645e-05 0.01470711871862987 4.012054804757526e-05 0.0005201579206020635 1.4189741202949985e-06 0.014707118718629869 4.012054804757526e-05 0.018787599736636212 7.797124724114173e-05']
['59866.388574404686 0.03349510968367969 6.687756950935378e-05 0.014657149173755555 4.008619767641045e-05 0.0005183906094752192 1.4177592244354606e-06 0.014657149173755556 4.008619767641045e-05 0.018837960509924135 7.797122897345341e-05']
['59866.38860594265 0.033536445381101246 6.687883807080151e-05 0.014736091608310778 4.014033135367619e-05 0.0005211826269594797 1.4196738116187016e-06 0.01473609160831078 4.014033135367619e-05 0.018800353772790466 7.800016142857276e-05']
['59866.38863748062 0.03346123103746011 6.686110787171245e-05 0.014669750297020867 4.0104428702725365e-05 0.0005188362830432602 1.4184040150922733e-06 0.014669750297020868 4.0104428702725365e-05 0.018791480740439244 7.796648605269286e-05']
['59866.388669018575 0.0334816014849864 6.688156676697505e-05 0.014718889241750232 4.01439603349308e-05 0.0005205742176992597 1.4198021605753812e-06 0.01471888924175023 4.01439603349308e-05 0.018762712243236168 7.800436862495484e-05']
['59866.38870055654 0.03350286970805644 6.68847228813806e-05 0.014629392329522725 4.00792859104186e-05 0.0005174089119275999 1.4175147707192165e-06 0.014629392329522723 4.00792859104186e-05 0.018873477378533714 7.797381171911603e-05']
['59866.3887320945 0.033462774522334794 6.686819587924372e-05 0.014690903089878648 4.012425820720167e-05 0.0005195844100529301 1.419105340349266e-06 0.014690903089878646 4.012425820720167e-05 0.01877187143245615 7.798276551150964e-05']
['59866.388763632465 0.033453032616378914 6.683902425381779e-05 0.014763630940614161 4.015016996026803e-05 0.000522156631596265 1.420021781145863e-06 0.014763630940614163 4.015016996026803e-05 0.01868940167576475 7.79710927911162e-05']
['59866.38879517043 0.033439141136885106 6.68311896579517e-05 0.014618939871223294 4.00863664868537e-05 0.0005170392318374185 1.417765194883569e-06 0.014618939871223294 4.00863664868537e-05 0.018820201265661814 7.793153847586647e-05']
['59866.38882670839 0.0334299598911435 6.686477204520153e-05 0.014663155077391268 4.010547071867072e-05 0.0005186030248644097 1.4184408688674918e-06 0.014663155077391268 4.010547071867072e-05 0.018766804813752234 7.797016430804105e-05']
['59866.388858246355 0.03348739475262131 6.688318352637052e-05 0.014659355181518785 4.010576169761345e-05 0.0005184686310396674 1.4184511601423965e-06 0.014659355181518783 4.010576169761345e-05 0.018828039571102524 7.798610363371104e-05']
['59866.38888978431 0.033435697098779915 6.682146352516475e-05 0.014656988999677236 4.010598765604715e-05 0.000518384944476037 1.4184591517872093e-06 0.014656988999677234 4.010598765604715e-05 0.018778708099102683 7.793329348559528e-05']
['59866.38892132228 0.0335505196429768 6.688851517188096e-05 0.01475167319090465 4.0134996457388634e-05 0.0005217337127130373 1.4194851282598021e-06 0.01475167319090465 4.0134996457388634e-05 0.018798846452072148 7.800571390951786e-05']
['59866.388952860245 0.033508058912276865 6.690313138736882e-05 0.01469524660957269 4.0107758715462216e-05 0.0005197380306373132 1.4185217902006351e-06 0.01469524660957269 4.0107758715462216e-05 0.018812812302704176 7.800423897848931e-05']
['59866.3889843982 0.03353734594836797 6.687491120387608e-05 0.014687562336343642 4.0108684313982876e-05 0.0005194662550665417 1.41855452655172e-06 0.01468756233634364 4.0108684313982876e-05 0.01884978361202433 7.798051234715661e-05']
['59866.38901593617 0.03339683983881719 6.679598310837569e-05 0.014621010114892587 4.0071031258430485e-05 0.0005171124517292791 1.4172228221264586e-06 0.014621010114892587 4.0071031258430485e-05 0.0187758297239246 7.789345868253973e-05']
['59866.389047474135 0.033444061092002604 6.685481785378668e-05 0.01463899312387664 4.007979622053242e-05 0.0005177484705673852 1.4175328192474665e-06 0.014638993123876638 4.007979622053242e-05 0.018805067968125967 7.794842355905859e-05']
['59866.38907901209 0.03351995389141447 6.689132633538678e-05 0.014734164357430444 4.013232832973619e-05 0.0005211144644029944 1.4193907625476494e-06 0.014734164357430442 4.013232832973619e-05 0.018785789533984028 7.80067517338913e-05']
['59866.38911055006 0.0334877745535315 6.687320886223596e-05 0.014674039140768586 4.0111282620655675e-05 0.0005189879698616153 1.4186464228518633e-06 0.014674039140768586 4.0111282620655675e-05 0.01881373541276292 7.798038892571868e-05']
['59866.38914208802 0.03348001005653611 6.684943282394186e-05 0.01471827152431074 4.013535232158046e-05 0.0005205523704139421 1.4194977143809572e-06 0.01471827152431074 4.013535232158046e-05 0.018761738532225368 7.797238725895283e-05']
['59866.38917362598 0.03339533503461095 6.681426848934121e-05 0.01474608870938677 4.0163115550019444e-05 0.0005215362020823315 1.4204796377236803e-06 0.01474608870938677 4.0163115550019444e-05 0.018649246325224182 7.795654125504791e-05']
['59866.38920516395 0.033583585766388126 6.695001650696118e-05 0.014700833642784943 4.0113237438804024e-05 0.0005199356315157463 1.4187155604010089e-06 0.014700833642784945 4.0113237438804024e-05 0.01888275212360318 7.804727111247544e-05']
['59866.38923670191 0.03347786163304698 6.687618687473472e-05 0.014673550993196694 4.011098334631864e-05 0.0005189707051729432 1.418635838187401e-06 0.014673550993196694 4.011098334631864e-05 0.01880431063985029 7.798278884416158e-05']
['59866.38926823987 0.03351544611557415 6.688841714395648e-05 0.014739575996154426 4.014174770051804e-05 0.000521305861970361 1.4197239046411487e-06 0.014739575996154428 4.014174770051804e-05 0.018775870119419724 7.800910367691694e-05']
['59866.38929977784 0.033393732778052396 6.67852138265872e-05 0.014775596755864519 4.0159629339624596e-05 0.0005225798357396469 1.4203563382532362e-06 0.014775596755864519 4.0159629339624596e-05 0.018618136022187877 7.792984418410582e-05']
['59866.3893313158 0.03349537620121354 6.69034702815559e-05 0.01471775217886898 4.013798027834311e-05 0.0005205340023263358 1.4195906593385144e-06 0.014717752178868978 4.013798027834311e-05 0.018777624022344563 7.802007303598026e-05']
['59866.38936285376 0.03350767176546944 6.69114445435356e-05 0.014702292334835785 4.011469790758e-05 0.0005199872221935996 1.4187672139176597e-06 0.014702292334835785 4.011469790758e-05 0.018805379430633658 7.801493702566865e-05']
['59866.38939439172 0.03340848981027729 6.680634534498323e-05 0.014622774575429423 4.007132562809037e-05 0.0005171748567551298 1.4172332333234513e-06 0.014622774575429423 4.007132562809037e-05 0.018785715234847865 7.790249621126151e-05']
['59866.38942592969 0.03346956946152261 6.683202481954159e-05 0.014590026745966354 4.00519735976264e-05 0.0005160166392141124 1.4165487952551833e-06 0.014590026745966354 4.00519735976264e-05 0.018879542715556256 7.791456943694668e-05']
['59866.38945746765 0.03345459719787476 6.683131699542188e-05 0.014636074846025623 4.008864739000856e-05 0.000517645257601762 1.4178458653306379e-06 0.014636074846025625 4.008864739000856e-05 0.018818522351849137 7.79328209479357e-05']
['59866.38948900561 0.03351676967737334 6.686584251280906e-05 0.014686891133673845 4.011362563172551e-05 0.0005194425161281607 1.4187292899170818e-06 0.014686891133673845 4.011362563172551e-05 0.018829878543699496 7.797527721188306e-05']
['59866.38952054358 0.03351449776118459 6.691005071663015e-05 0.014713959482700774 4.012263024491969e-05 0.0005203998631390435 1.4190477629616337e-06 0.014713959482700776 4.012263024491969e-05 0.018800538278483818 7.801782068651086e-05']
['59866.38955208154 0.033503259199539843 6.689267292998914e-05 0.014680494174894702 4.012729493121119e-05 0.0005192162699925038 1.4192127424908039e-06 0.0146804941748947 4.012729493121119e-05 0.018822765024645145 7.800531706374194e-05']
['59866.3895836195 0.03354175287948597 6.691030750687326e-05 0.014718470868406195 4.0121496610642004e-05 0.0005205594207690906 1.4190076688507556e-06 0.014718470868406195 4.0121496610642004e-05 0.018823282011079776 7.801745792412169e-05']
['59866.389615157466 0.03351937578265916 6.689344748372707e-05 0.014707252428934225 4.0129569263091596e-05 0.0005201626496367036 1.4192931805265813e-06 0.014707252428934225 4.0129569263091596e-05 0.01881212335372493 7.800715124589167e-05']
['59866.389646695425 0.033315939565570246 6.674914208522689e-05 0.014673188241658272 4.01064303873382e-05 0.0005189578754617311 1.4184748102035274e-06 0.014673188241658272 4.01064303873382e-05 0.018642751323911973 7.787152064476596e-05']
['59866.38967823339 0.03349613779385833 6.687248166569513e-05 0.01468641596923558 4.01141381961375e-05 0.0005194257106239092 1.4187474181748197e-06 0.014686415969235578 4.01141381961375e-05 0.01880972182462275 7.798123419995062e-05']
['59866.389709771356 0.03348231352760316 6.68671655682306e-05 0.01472134597564922 4.012999877424011e-05 0.0005206611068867898 1.4193083713760033e-06 0.014721345975649221 4.012999877424011e-05 0.01876096755195394 7.798483591538599e-05']
['59866.389741309315 0.0334682762772057 6.684042264003182e-05 0.014661814854324239 4.01147281394399e-05 0.0005185556241697511 1.41876828315098e-06 0.014661814854324239 4.01147281394399e-05 0.018806461422881462 7.795404744077918e-05']
['59866.38977284728 0.0335231744093498 6.690780098173758e-05 0.014701125109725148 4.0103309187773724e-05 0.000519945940050031 1.4183644203504024e-06 0.014701125109725148 4.0103309187773724e-05 0.018822049299624652 7.800595643937698e-05']
['59866.389804385246 0.03359416992788528 6.695568090145588e-05 0.014733765678457909 4.013178619190048e-05 0.000521100364018731 1.4193715883440072e-06 0.01473376567845791 4.013178619190048e-05 0.018860404249427372 7.806166452190216e-05']
['59866.389835923204 0.03338702077597301 6.681848259229529e-05 0.014644039310172332 4.008721799565855e-05 0.0005179269428991013 1.4177953108469865e-06 0.014644039310172332 4.008721799565855e-05 0.01874298146580068 7.792107970612522e-05']
['59866.38986746117 0.03354309651303599 6.689050411258875e-05 0.014729927743026568 4.0115482345689226e-05 0.0005209646248198053 1.418794957740467e-06 0.01472992774302657 4.0115482345689226e-05 0.018813168770009422 7.799738113721228e-05']
['59866.38989899913 0.03344725175857344 6.684225530991447e-05 0.014652675303321459 4.009865186493661e-05 0.0005182323786764771 1.4181997012501575e-06 0.014652675303321457 4.009865186493661e-05 0.018794576455251982 7.794734746161137e-05']
['59866.389930537094 0.033498365814568824 6.686263754642335e-05 0.014698977952088394 4.010867242780645e-05 0.000519869999883034 1.418554106164224e-06 0.014698977952088394 4.010867242780645e-05 0.018799387862480428 7.79699807848217e-05']
['59866.38996207506 0.033388733129804726 6.681284369613899e-05 0.014686425751471485 4.012871277142683e-05 0.0005194260565997312 1.4192628883305446e-06 0.014686425751471485 4.012871277142683e-05 0.01870230737833324 7.793760113999131e-05']
['59866.38999361302 0.03347476821203356 6.688241589805719e-05 0.014645604735263693 4.009854037602637e-05 0.0005179823084860636 1.4181957581365655e-06 0.014645604735263693 4.009854037602637e-05 0.018829163476769866 7.798173181360177e-05']
['59866.390025150984 0.03361832039681991 6.696621227922519e-05 0.014749564602975109 4.013910571433256e-05 0.0005216591366703861 1.41963046349426e-06 0.014749564602975109 4.013910571433256e-05 0.018868755793844803 7.807446057817252e-05']
['59866.39005668895 0.03341601363240564 6.685190269527335e-05 0.014676823162771841 4.009601676396564e-05 0.0005190864344979475 1.4181065036179184e-06 0.01467682316277184 4.009601676396564e-05 0.018739190469633803 7.795426514511255e-05']
['59866.39008822691 0.03357812209738379 6.696263547163412e-05 0.014718022547312947 4.012147664717151e-05 0.000520543564653961 1.41900696278742e-06 0.014718022547312946 4.012147664717151e-05 0.018860099550070845 7.806233046518969e-05']
['59866.390119764874 0.033461293757254616 6.68427207546544e-05 0.01468149850959127 4.012030634008376e-05 0.0005192517910661655 1.4189655716412086e-06 0.014681498509591268 4.012030634008376e-05 0.01877979524766335 7.7958888516364e-05']
['59866.39015130283 0.03363208060249695 6.696183114207507e-05 0.01472797268914598 4.0125215291556534e-05 0.0005208954789333372 1.4191391902839398e-06 0.01472797268914598 4.0125215291556534e-05 0.018904107913350968 7.8063562127881e-05']
['59866.3901828408 0.0336080142761867 6.696224512654183e-05 0.014680850973848034 4.009746977328916e-05 0.0005192288891740845 1.4181578933104067e-06 0.014680850973848034 4.009746977328916e-05 0.018927163302338665 7.804965954190263e-05']
['59866.39021437876 0.03341313846010415 6.684018102588915e-05 0.014721739651920338 4.0136150192628255e-05 0.0005206750303366846 1.419525933296781e-06 0.01472173965192034 4.0136150192628255e-05 0.01869139880818381 7.796486613763179e-05']
['59866.39024591672 0.033423748479151534 6.682437452977264e-05 0.014666189694756438 4.0094492893443026e-05 0.0005187103524986451 1.4180526077231838e-06 0.01466618969475644 4.0094492893443026e-05 0.018757558784395095 7.792987483422311e-05']
['59866.39027745469 0.0334324651302135 6.683911493633404e-05 0.014574177640046652 4.004604614985794e-05 0.0005154560917583997 1.4163391546746787e-06 0.014574177640046652 4.004604614985794e-05 0.01885828749016685 7.791760454293384e-05']
['59866.39030899265 0.033577745107486845 6.694508714357833e-05 0.014619180353858072 4.007628177931691e-05 0.0005170477371707635 1.4174085213159876e-06 0.014619180353858072 4.007628177931691e-05 0.018958564753628775 7.802405432888312e-05']
['59866.39034053061 0.03344216612363051 6.684568498866883e-05 0.01472059727932493 4.013081116038125e-05 0.0005206346271710375 1.4193371036582392e-06 0.014720597279324931 4.013081116038125e-05 0.018721568844305578 7.796683657808956e-05']
['59866.39037206858 0.033611152254393664 6.696723416133466e-05 0.01469685961569137 4.0100351157453876e-05 0.0005197950790588744 1.418259801428798e-06 0.01469685961569137 4.0100351157453876e-05 0.01891429263870229 7.805542014600998e-05']
['59866.390403606536 0.03350375897151815 6.687648427897628e-05 0.01467780044734022 4.012312167905043e-05 0.0005191209988690286 1.4190651438885475e-06 0.01467780044734022 4.012312167905043e-05 0.018825958524177934 7.798928800026353e-05']
['59866.3904351445 0.03346273894208793 6.685460470195647e-05 0.014677573878152628 4.010451412952025e-05 0.0005191129856232158 1.4184070364470906e-06 0.014677573878152628 4.010451412952025e-05 0.0187851650639353 7.7960953197224e-05']
['59866.39046668247 0.033471623803688365 6.687810186763964e-05 0.014684835822068748 4.0121754797020903e-05 0.0005193698243500395 1.4190168003259646e-06 0.014684835822068748 4.0121754797020903e-05 0.018786787981619618 7.79899719028713e-05']
['59866.390498220426 0.03356576205426076 6.693834829545929e-05 0.014749332867226551 4.015180826771466e-05 0.0005216509406948585 1.4200797244188488e-06 0.014749332867226551 4.015180826771466e-05 0.01881642918703421 7.805709563961202e-05']
['59866.39052975839 0.033536511428448226 6.69159822830057e-05 0.014655548645222737 4.0096926367058736e-05 0.0005183340023579841 1.418138674246478e-06 0.014655548645222735 4.0096926367058736e-05 0.018880962783225493 7.800969291687324e-05']
['59866.39056129636 0.033363624105571824 6.677325553964005e-05 0.01466135689153637 4.00975485023064e-05 0.0005185394270494308 1.4181606777797974e-06 0.014661356891536371 4.00975485023064e-05 0.01870226721403545 7.788761808693911e-05']
['59866.390592834316 0.03345868941698115 6.682520292234365e-05 0.014662258185558186 4.0102191009055954e-05 0.0005185713038047088 1.4183248728681373e-06 0.014662258185558186 4.0102191009055954e-05 0.018796431231422966 7.793454605846636e-05']
['59866.39062437228 0.03346200136830981 6.6838345077389e-05 0.014645821525407344 4.0101517874353055e-05 0.000517989975868947 1.4183010655980633e-06 0.014645821525407344 4.0101517874353055e-05 0.018816179842902465 7.794546881321061e-05']
['59866.39065591024 0.03353800898135641 6.691174424939578e-05 0.014675964948396897 4.0112045111486024e-05 0.000519056081373502 1.418673390448466e-06 0.014675964948396897 4.0112045111486024e-05 0.01886204403295951 7.801383006571617e-05']
['59866.390687448205 0.033470209445204235 6.685467990932014e-05 0.014688418446673342 4.0118903669559014e-05 0.0005194965337756093 1.4189159623195326e-06 0.014688418446673342 4.0118903669559014e-05 0.018781790998530893 7.796842089862414e-05']
['59866.39071898617 0.03352243862401167 6.688488642822338e-05 0.014692161109382556 4.010229746947852e-05 0.0005196289033912753 1.4183286381353581e-06 0.014692161109382556 4.010229746947852e-05 0.018830277514629117 7.798578264560075e-05']
['59866.39075052413 0.03338280179779889 6.682493348623243e-05 0.014672702369693683 4.01144908441713e-05 0.0005189406912562036 1.4187598905476532e-06 0.014672702369693685 4.01144908441713e-05 0.01871009942810521 7.794064479542424e-05']
['59866.390782062095 0.03349402421044663 6.688272200415663e-05 0.014788219842894296 4.01554447876522e-05 0.0005230262861169509 1.420208340001896e-06 0.014788219842894294 4.01554447876522e-05 0.018705804367552335 7.801127001132261e-05']
['59866.39081360006 0.0334687843568437 6.683711916020691e-05 0.014660724854056626 4.010257639097409e-05 0.0005185170732962929 1.4183385029653037e-06 0.014660724854056626 4.010257639097409e-05 0.018808059502787078 7.794496219018655e-05']
['59866.39084513802 0.03343871668554691 6.682641227653743e-05 0.014667242643744565 4.009502379975168e-05 0.0005187475929511527 1.4180713846928151e-06 0.014667242643744565 4.009502379975168e-05 0.018771474041802346 7.793189533981838e-05']
['59866.390876675985 0.03336738808351421 6.680186282994219e-05 0.014685117745143977 4.012345135078546e-05 0.0005193797953391494 1.4190768036410425e-06 0.014685117745143979 4.012345135078546e-05 0.01868227033837023 7.792547866936243e-05']
['59866.39090821394 0.03344949875775089 6.685267414236078e-05 0.014653484762062824 4.010096077084579e-05 0.0005182610074231254 1.4182813620920642e-06 0.014653484762062824 4.010096077084579e-05 0.018796013995688067 7.795746978147499e-05']
['59866.39093975191 0.03354382892997647 6.690541812845835e-05 0.014634124817600834 4.008151567375723e-05 0.0005175762894544342 1.4175936324652764e-06 0.014634124817600834 4.008151567375723e-05 0.018909704112375636 7.799271038789132e-05']
['59866.390971289875 0.03343970390631037 6.681702818125565e-05 0.014614800371520225 4.006619887036987e-05 0.0005168928269841583 1.4170519113605062e-06 0.014614800371520223 4.006619887036987e-05 0.018824903534790147 7.790902095967282e-05']
['59866.39100282783 0.033407933358980776 6.680911666371965e-05 0.014674223483823898 4.01048029671553e-05 0.0005189944896634993 1.4184172519887283e-06 0.014674223483823898 4.01048029671553e-05 0.01873370987515688 7.792209757457028e-05']
['59866.3910343658 0.03358361515156054 6.695787852109962e-05 0.014691265987466558 4.013346940676065e-05 0.0005195972449295862 1.4194311198918476e-06 0.014691265987466558 4.013346940676065e-05 0.01889234916409398 7.806441482948378e-05']
['59866.391065903765 0.03343570952249374 6.684571605640747e-05 0.014653016830991105 4.0111105691631326e-05 0.0005182444577468831 1.418640165267685e-06 0.014653016830991105 4.0111105691631326e-05 0.01878269269150263 7.795672232013781e-05']
['59866.39109744172 0.033463665594051874 6.686981267175171e-05 0.01465524625836572 4.009583729596987e-05 0.0005183233076106463 1.4181001562359954e-06 0.01465524625836572 4.009583729596987e-05 0.018808419335686152 7.796953260870592e-05']
['59866.39112897969 0.03336607813370845 6.680096745161702e-05 0.014660533740673085 4.0093019060810876e-05 0.0005185103140430303 1.4180004815568068e-06 0.014660533740673085 4.0093019060810876e-05 0.018705544393035362 7.790904587968294e-05']
['59866.39116051765 0.033438695010835275 6.684172150794358e-05 0.014667445783765616 4.0084165283119234e-05 0.0005187547775597059 1.417687343226882e-06 0.014667445783765614 4.0084165283119234e-05 0.01877124922706966 7.793943828762118e-05']
['59866.39119205561 0.033402592515096516 6.682588349256022e-05 0.014675351852215053 4.0120032389605214e-05 0.0005190343975317395 1.4189558826250258e-06 0.014675351852215055 4.0120032389605214e-05 0.01872724066288146 7.794431155321217e-05']
['59866.39122359358 0.033558781055606064 6.691729109251691e-05 0.014715051795482242 4.0115891807020624e-05 0.0005204384958009486 1.4188094394726663e-06 0.014715051795482242 4.0115891807020624e-05 0.018843729260123822 7.802056538268117e-05']
['59866.39125513154 0.033397695995027434 6.677769238116723e-05 0.01466247112450246 4.0122457300848854e-05 0.0005185788349792772 1.4190416463163556e-06 0.014662471124502459 4.0122457300848854e-05 0.018735224870524973 7.790424750687371e-05']
['59866.3912866695 0.03342031236765407 6.684912668433077e-05 0.014657993183334099 4.0102059015063666e-05 0.0005184204602077619 1.4183202045356192e-06 0.014657993183334099 4.0102059015063666e-05 0.01876231918431997 7.795499262847347e-05']
['59866.39131820747 0.0334753300955599 6.689368808664937e-05 0.014736092416472139 4.0115933912584804e-05 0.0005211826555423408 1.418810928652371e-06 0.014736092416472139 4.0115933912584804e-05 0.018739237679087757 7.80003439704775e-05']
['59866.39134974543 0.0334075655097515 6.681982336350838e-05 0.014734681158254695 4.014737845734989e-05 0.0005211327424931663 1.4199230519262905e-06 0.014734681158254695 4.014737845734989e-05 0.018672884351496805 7.795319615851644e-05']
['59866.39138128339 0.033391394713530136 6.6787541917543e-05 0.014677369879569113 4.011026011722264e-05 0.0005191057706492269 1.4186102591905976e-06 0.014677369879569113 4.011026011722264e-05 0.01871402483396102 7.790641001906598e-05']
['59866.39141282135 0.03354760662149244 6.691827872131416e-05 0.014735417188306186 4.013770312375689e-05 0.0005211587742311572 1.419580857000204e-06 0.014735417188306187 4.013770312375689e-05 0.018812189433186254 7.803262932308721e-05']
['59866.39144435932 0.033460876923289175 6.683706589913983e-05 0.014676068813629832 4.011862180097112e-05 0.0005190597548546657 1.418905993257518e-06 0.014676068813629832 4.011862180097112e-05 0.018784808109659344 7.795317307983888e-05']
['59866.39147589728 0.03350319414606134 6.687866187778936e-05 0.01470442401038332 4.0120992218053605e-05 0.0005200626147937015 1.4189898296121549e-06 0.01470442401038332 4.0120992218053605e-05 0.018798770135678017 7.799005982254914e-05']
['59866.39150743524 0.0334935052737202 6.687657497981578e-05 0.014702499109360407 4.0121728944507075e-05 0.0005199945353464217 1.4190158859803276e-06 0.014702499109360407 4.0121728944507075e-05 0.018791006164359792 7.798864926723259e-05']
['59866.39153897321 0.033458788521383 6.68675535770269e-05 0.01468007169093803 4.0108399746192266e-05 0.0005192013276791524 1.4185444620249377e-06 0.01468007169093803 4.0108399746192266e-05 0.01877871683044497 7.797405627243538e-05']
['59866.39157051117 0.03347966484620431 6.687847864336972e-05 0.014616782577170105 4.007815520869299e-05 0.0005169629331680256 1.4174747803261515e-06 0.014616782577170105 4.007815520869299e-05 0.018862882269034202 7.796787434952774e-05']
['59866.39160204913 0.03355897748810669 6.692706003436423e-05 0.014707529412277631 4.013065118599021e-05 0.0005201724459185385 1.4193314457215498e-06 0.014707529412277631 4.013065118599021e-05 0.018851448075829058 7.803653329982702e-05']
['59866.391633587096 0.03351100035799161 6.689088817861597e-05 0.014673617028542462 4.0126253253856486e-05 0.0005189730406955427 1.4191759006907799e-06 0.014673617028542463 4.0126253253856486e-05 0.018837383329449144 7.800325071121545e-05']
['59866.391665125055 0.03354743626009022 6.690826467701283e-05 0.014715471166817633 4.0132075942141235e-05 0.0005204533280278416 1.419381836162469e-06 0.014715471166817633 4.0132075942141235e-05 0.018831965093272587 7.80211471430342e-05']
['59866.39169666302 0.033355831548822934 6.6769565205364e-05 0.014703323167806061 4.0127899493800574e-05 0.0005200236804519822 1.4192341245184725e-06 0.01470332316780606 4.0127899493800574e-05 0.018652508381016876 7.79000844383234e-05']
['59866.391728200986 0.033459825023715035 6.686978248877098e-05 0.01468441395239098 4.0116715135175246e-05 0.0005193549037623601 1.418838558749465e-06 0.014684413952390979 4.0116715135175246e-05 0.018775411071324057 7.798024521205572e-05']
['59866.391759738945 0.03346371714770394 6.686594487517381e-05 0.014701069611536985 4.013021213285882e-05 0.0005199439772031469 1.4193159173935185e-06 0.014701069611536987 4.013021213285882e-05 0.01876264753616696 7.798389904254615e-05']
['59866.39179127691 0.03348860459783805 6.687148541740529e-05 0.014679237887882833 4.0095351886064044e-05 0.0005191718379285303 1.4180829883724537e-06 0.014679237887882833 4.0095351886064044e-05 0.018809366709955214 7.797071761114905e-05']
['59866.391822814876 0.033442967232250126 6.683626969840625e-05 0.014688603448649706 4.011481153251635e-05 0.0005195030768820582 1.4187712325777213e-06 0.014688603448649707 4.011481153251635e-05 0.018754363783600417 7.795052951383592e-05']
['59866.391854352834 0.03352969833546435 6.690919507924608e-05 0.014669906404616708 4.0107934347845575e-05 0.0005188418042200452 1.4185280019255193e-06 0.01466990640461671 4.0107934347845575e-05 0.018859791930847636 7.800953008321291e-05']
['59866.3918858908 0.033446901084820256 6.687762970983911e-05 0.014650647321168052 4.0091472304527905e-05 0.0005181606534799845 1.4179457762438748e-06 0.014650647321168052 4.0091472304527905e-05 0.018796253763652203 7.797399250488e-05']
['59866.39191742876 0.03344944133656991 6.687119594694459e-05 0.014663293507691393 4.009518974174883e-05 0.0005186079208347516 1.4180772536903958e-06 0.014663293507691393 4.009518974174883e-05 0.018786147828878514 7.797038596673419e-05']
['59866.391948966724 0.0333378786266245 6.674188767582554e-05 0.014634923483804971 4.0087926404095395e-05 0.0005176045364931606 1.417820365670198e-06 0.014634923483804971 4.0087926404095395e-05 0.018702955142819527 7.785577315724686e-05']
['59866.39198050469 0.033453318597703854 6.684590321131875e-05 0.014668318021289038 4.009861575805343e-05 0.0005187856266515733 1.4181984242303936e-06 0.01466831802128904 4.009861575805343e-05 0.018785000576414815 7.795045709839684e-05']
['59866.39201204265 0.033501782954971686 6.686195150149899e-05 0.014728770398788534 4.011596819824146e-05 0.0005209236921406182 1.4188121412594229e-06 0.014728770398788536 4.011596819824146e-05 0.01877301255618315 7.797314578155177e-05']
['59866.392043580614 0.03340840959035255 6.683465248999298e-05 0.0146235385884842 4.007758658282162e-05 0.0005172018781894086 1.417454669299885e-06 0.0146235385884842 4.007758658282162e-05 0.01878487100186835 7.792999242757365e-05']
['59866.39207511858 0.033510267884090304 6.688154325493306e-05 0.01477744540351106 4.015685728660387e-05 0.0005226452182754207 1.420258296933067e-06 0.01477744540351106 4.015685728660387e-05 0.018732822480579246 7.801098650381338e-05']
['59866.39210665654 0.03350959170725321 6.688460513202894e-05 0.014760840128763176 4.015156664090009e-05 0.000522057926818193 1.4200711786184215e-06 0.014760840128763176 4.015156664090009e-05 0.018748751578490035 7.801088838992973e-05']
['59866.392138194504 0.033401245378249886 6.678071513454383e-05 0.01464427483402624 4.010089977232755e-05 0.0005179352728514492 1.4182792047107979e-06 0.014644274834026241 4.010089977232755e-05 0.018756970544223643 7.789573849981366e-05']
['59866.39216973246 0.03350288578325268 6.685781616103928e-05 0.014760465207765108 4.014287510137268e-05 0.0005220446667003904 1.4197637782897848e-06 0.014760465207765106 4.014287510137268e-05 0.018742420575487577 7.798344698221368e-05']
['59866.39220127043 0.03357888982494854 6.69441279127371e-05 0.014730425639288535 4.0153467781085636e-05 0.0005209822342978585 1.4201384176979862e-06 0.014730425639288537 4.0153467781085636e-05 0.018848464185660004 7.80629056392573e-05']
['59866.39223280839 0.0335423016091791 6.691928140706664e-05 0.014704779692020789 4.011846015197477e-05 0.0005200751944583171 1.4189002760937812e-06 0.014704779692020789 4.011846015197477e-05 0.01883752191715831 7.80235930280307e-05']
['59866.39226434635 0.03330256606863663 6.675139995534202e-05 0.01467265332322889 4.0098716252936344e-05 0.0005189389565923563 1.4182019785098094e-06 0.01467265332322889 4.0098716252936344e-05 0.01862991274540774 7.786948337527055e-05']
['59866.39229588432 0.03350892723241582 6.690740757065455e-05 0.014675813358772037 4.011780363342249e-05 0.0005190507199872536 1.4188770564998198e-06 0.014675813358772037 4.011780363342249e-05 0.01883311387364378 7.801307170080877e-05']
['59866.39232742228 0.03352019751040948 6.691625546820977e-05 0.014723253635742223 4.0123906068711604e-05 0.0005207285765609099 1.4190928859978554e-06 0.014723253635742223 4.0123906068711604e-05 0.01879694387466726 7.802379819066427e-05']
['59866.39235896024 0.03353144135850864 6.69255689055138e-05 0.014686622295052604 4.012402664438133e-05 0.0005194330079069463 1.419097150489823e-06 0.014686622295052602 4.012402664438133e-05 0.018844819063456038 7.803184790510667e-05']
['59866.39239049821 0.03351397333748726 6.691616124535182e-05 0.014727207101683678 4.0119098359340834e-05 0.0005208684018157829 1.4189228480620093e-06 0.01472720710168368 4.0119098359340834e-05 0.01878676623580358 7.802124511298438e-05']
['59866.392422036166 0.03349211385931318 6.687370187149125e-05 0.014717825463287015 4.0114155377093484e-05 0.0005205365942324207 1.4187480258268358e-06 0.014717825463287015 4.0114155377093484e-05 0.018774288396026163 7.798228942275734e-05']
['59866.39245357413 0.033537505953828754 6.69401926204183e-05 0.014657075946570447 4.010477683033701e-05 0.000518388019593335 1.4184163275878778e-06 0.014657075946570447 4.010477683033701e-05 0.01888043000725831 7.803449565845762e-05']
['59866.3924851121 0.033518420894655565 6.691303832247818e-05 0.014735418793062251 4.01281996204289e-05 0.0005211588309877929 1.419244739326573e-06 0.014735418793062253 4.01281996204289e-05 0.01878300210159331 7.80232471916058e-05']
['59866.392516650056 0.033468734159968684 6.6846029319412e-05 0.014702942575306934 4.011481532116767e-05 0.0005200102197458622 1.4187713665738517e-06 0.014702942575306932 4.011481532116767e-05 0.018765791584661753 7.795889971018752e-05']
['59866.39254818802 0.033534242122162106 6.687900346551114e-05 0.014694426559085658 4.011487806197049e-05 0.0005197090272842918 1.41877358557583e-06 0.014694426559085656 4.011487806197049e-05 0.01883981556307645 7.798720758218373e-05']
['59866.39257972599 0.03355022584826311 6.692936794881547e-05 0.014723424139755007 4.013742530508181e-05 0.0005207346069067881 1.4195710311745544e-06 0.014723424139755008 4.013742530508181e-05 0.0188268017085081 7.804199641314251e-05']
['59866.392611263946 0.03347473609238653 6.686385499420621e-05 0.014987550569032372 4.0249246635434623e-05 0.0005300761684225002 1.4235259017231684e-06 0.014987550569032372 4.0249246635434623e-05 0.018487185523354155 7.804342995669962e-05']
['59866.39264280191 0.03354220500079745 6.687103106077986e-05 0.01472916538520465 4.0126293674209254e-05 0.0005209376619274136 1.4191773302683231e-06 0.014729165385204652 4.0126293674209254e-05 0.0188130396155928 7.798624390981187e-05']
['59866.39267433987 0.033487743324706526 6.688366428229367e-05 0.014639027174965076 4.009058564099382e-05 0.0005177496748782835 1.4179144169362507e-06 0.014639027174965074 4.009058564099382e-05 0.01884871614974145 7.797871251094382e-05']
['59866.392705877835 0.033391133214347946 6.678009793922428e-05 0.014629191273788868 4.0078915262745705e-05 0.0005174018010356265 1.4175016617393752e-06 0.014629191273788868 4.0078915262745705e-05 0.01876194194055908 7.788389390246701e-05']
['59866.3927374158 0.033487876823234855 6.689187610245479e-05 0.014748232840979886 4.013841940242421e-05 0.000521612035224928 1.4196061901758785e-06 0.014748232840979886 4.013841940242421e-05 0.01873964398225497 7.801035700873997e-05']
['59866.39276895376 0.033492761583177905 6.69086623101885e-05 0.014727692687212314 4.014489576814454e-05 0.0005208855758907109 1.419835244757581e-06 0.014727692687212314 4.014489576814454e-05 0.01876506889596559 7.802808307509565e-05']
['59866.392800491725 0.033447532213209785 6.68571312618501e-05 0.01461287168107869 4.00743610915386e-05 0.0005168246135136106 1.4173405908817535e-06 0.01461287168107869 4.00743610915386e-05 0.018834660532131096 7.794761328904996e-05']
['59866.39283202969 0.0334413743144026 6.683235207544885e-05 0.01466525288334269 4.0091354848390444e-05 0.0005186772195725912 1.417941622082792e-06 0.014665252883342693 4.0091354848390444e-05 0.018776121431059903 7.793510131844515e-05']
['59866.39286356765 0.0335698781157118 6.69250350642963e-05 0.014757523782954057 4.014900095560809e-05 0.0005219406350785212 1.4199804360636127e-06 0.014757523782954059 4.014900095560809e-05 0.01881235433275774 7.804423486773836e-05']
['59866.392895105615 0.0335644771061566 6.692324573374708e-05 0.0146338246181404 4.008780381366725e-05 0.000517565672070425 1.417816029920728e-06 0.014633824618140402 4.008780381366725e-05 0.018930652488016196 7.801123530711824e-05']
['59866.39292664357 0.03356890689564123 6.694408389949758e-05 0.014734615804278619 4.0144644203708655e-05 0.0005211304310690901 1.419826347485697e-06 0.01473461580427862 4.0144644203708655e-05 0.018834291091362608 7.80583296476765e-05']
['59866.39295818154 0.03340772817495581 6.683031812622147e-05 0.01466850495789718 4.010291354437032e-05 0.0005187922381816245 1.418350427327435e-06 0.014668504957897179 4.010291354437032e-05 0.018739223217058634 7.79393039204175e-05']
['59866.392989719505 0.03339912575174074 6.68124782872367e-05 0.0146999626151625 4.011426357277688e-05 0.0005199048252153726 1.4187518524663544e-06 0.0146999626151625 4.011426357277688e-05 0.01869916313657824 7.792984920342583e-05']
['59866.39302125746 0.0334126223425589 6.683302321705176e-05 0.014727231493830996 4.0139100337772125e-05 0.0005208692645115202 1.4196302733373331e-06 0.014727231493830996 4.0139100337772125e-05 0.018685390848727904 7.796024864157835e-05']
['59866.39305279543 0.03340012918762036 6.68290161034119e-05 0.014644236802656141 4.009783114047236e-05 0.0005179339277668839 1.4181706740600684e-06 0.014644236802656141 4.009783114047236e-05 0.018755892384964216 7.793557246546614e-05']
['59866.393084333395 0.033609590377887126 6.694812446679407e-05 0.014724714968125274 4.0118895303567324e-05 0.0005207802606214128 1.4189156664331034e-06 0.014724714968125274 4.0118895303567324e-05 0.018884875409761852 7.804855623264243e-05']
['59866.39311587135 0.03339761023741821 6.681210498623818e-05 0.014682226523826563 4.0131739393369826e-05 0.0005192775393026518 1.4193699331845666e-06 0.014682226523826562 4.0131739393369826e-05 0.01871538371359165 7.793852628469096e-05']
['59866.39314740932 0.03346159835756762 6.685190831998538e-05 0.01461177880988187 4.008225044366794e-05 0.0005167859611018025 1.417619619634904e-06 0.01461177880988187 4.008225044366794e-05 0.018849819547685755 7.794719011390115e-05']
['59866.39317894728 0.033506020538165725 6.689366853929765e-05 0.014709426554380841 4.0134391131769536e-05 0.000520239543594866 1.4194637192454777e-06 0.014709426554380841 4.0134391131769536e-05 0.018796593983784884 7.800982144681067e-05']
['59866.39321048524 0.033420382469588936 6.681061832393819e-05 0.014603664250029376 4.007642567390303e-05 0.0005164989672547937 1.4174136105459134e-06 0.014603664250029376 4.007642567390303e-05 0.01881671821955956 7.790878394393548e-05']
['59866.39324202321 0.03340427516749841 6.680743721459965e-05 0.014581119413594369 4.004243808657714e-05 0.0005157016067748316 1.4162115455399839e-06 0.014581119413594369 4.004243808657714e-05 0.018823155753904038 7.788857756500652e-05']
['59866.39327356117 0.03348332765174174 6.68867266610012e-05 0.014625643154388728 4.007564160495927e-05 0.0005172763119820238 1.4173858797796636e-06 0.01462564315438873 4.007564160495927e-05 0.018857684497353006 7.797365743296021e-05']
['59866.39330509913 0.033564136462894356 6.691810526408159e-05 0.014771748321699831 4.01497436847309e-05 0.000522443725223986 1.4200067047327846e-06 0.014771748321699831 4.01497436847309e-05 0.018792388141194525 7.803867457923855e-05']
['59866.3933366371 0.03352564858378845 6.690750694298758e-05 0.014726117668480001 4.0140263323400443e-05 0.0005208298709981087 1.419671405539887e-06 0.014726117668480001 4.0140263323400443e-05 0.018799530915308452 7.80247090670504e-05']
['59866.39336817506 0.03355530345468686 6.691666413319287e-05 0.014699855066245488 4.012508951387153e-05 0.0005199010214505356 1.4191347418083176e-06 0.01469985506624549 4.012508951387153e-05 0.01885544838844137 7.802475727107867e-05']
['59866.39339971302 0.03363478330364084 6.699888559988943e-05 0.014745007245620365 4.01547754625194e-05 0.000521497953125843 1.4201846674678025e-06 0.014745007245620364 4.01547754625194e-05 0.01888977605802048 7.81105413121201e-05']
['59866.39343125098 0.03341827916188892 6.68270494764615e-05 0.014701002908874513 4.0118379087487385e-05 0.0005199416180790469 1.4188974090240309e-06 0.014701002908874513 4.0118379087487385e-05 0.018717276253014406 7.79444602414872e-05']
['59866.39346278895 0.03346339084974894 6.684722885650149e-05 0.014666958160053017 4.010128124839164e-05 0.0005187375313987662 1.418292696666636e-06 0.014666958160053015 4.010128124839164e-05 0.018796432689695927 7.795296507225426e-05']
['59866.39349432691 0.03339498706784093 6.680533473350237e-05 0.014677860189532401 4.010626147589108e-05 0.0005191231118168501 1.4184688361831377e-06 0.0146778601895324 4.010626147589108e-05 0.01871712687830853 7.791960573840094e-05']
['59866.39352586487 0.03361497697789084 6.6929201366435e-05 0.01473263006491116 4.0125754822575036e-05 0.0005210601999055294 1.4191582722902832e-06 0.01473263006491116 4.0125754822575036e-05 0.018882346912979683 7.803585198887886e-05']
['59866.39355740284 0.033406420909302376 6.683288288828464e-05 0.014652704146385653 4.009132782982355e-05 0.0005182333987911972 1.4179406664964637e-06 0.014652704146385653 4.009132782982355e-05 0.018753716762916723 7.79355426125818e-05']
['59866.3935889408 0.033459963530245995 6.685033653924946e-05 0.014692303274447755 4.0103830997330855e-05 0.0005196339314519111 1.4183828755882623e-06 0.014692303274447753 4.0103830997330855e-05 0.018767660255798242 7.795694167983622e-05']
['59866.39362047876 0.0335639680713345 6.69295974386586e-05 0.014701218460666762 4.01153494952456e-05 0.0005199492416642088 1.4187902591171792e-06 0.014701218460666762 4.01153494952456e-05 0.018862749610667737 7.803084184107332e-05']
['59866.393652016726 0.03355535809763727 6.693993844883441e-05 0.014635547855666087 4.008986975912446e-05 0.0005176266191304993 1.4178890977944332e-06 0.014635547855666087 4.008986975912446e-05 0.01891981024197118 7.802661736123962e-05']
['59866.393683554685 0.03360268094487844 6.696361261959207e-05 0.0147701641259448 4.016045266972474e-05 0.0005223876957605998 1.4203854575988437e-06 0.014770164125944802 4.016045266972474e-05 0.01883251681893364 7.808320801365676e-05']
['59866.39371509265 0.03349244479205579 6.686487693544078e-05 0.014696661135380205 4.0101929515373086e-05 0.0005197880592538458 1.418315624420978e-06 0.014696661135380203 4.0101929515373086e-05 0.01879578365667559 7.796843283308695e-05']
['59866.393746630616 0.033560723400537604 6.692517719161624e-05 0.01466042915763444 4.010470253649542e-05 0.0005185066151746827 1.4184136999807376e-06 0.01466042915763444 4.010470253649542e-05 0.018900294242903164 7.802157719291512e-05']
['59866.393778168574 0.03346774587533025 6.689310006799077e-05 0.014730964676576612 4.013749555574594e-05 0.0005210012988420603 1.419573515783544e-06 0.014730964676576612 4.013749555574594e-05 0.01873678119875364 7.80109311968121e-05']
['59866.39380970654 0.03343269932474366 6.681598655556968e-05 0.014765212193675607 4.01549576218287e-05 0.0005222125569831556 1.4201911100354703e-06 0.014765212193675607 4.01549576218287e-05 0.018667487131068052 7.795381120256358e-05']
['59866.393841244506 0.03346670104952154 6.685860084100373e-05 0.014694173754802949 4.013150183621848e-05 0.0005197000861617968 1.4193615313190324e-06 0.014694173754802949 4.013150183621848e-05 0.018772527294718594 7.797826585688522e-05']
['59866.393872782464 0.03342222964821984 6.684560221583045e-05 0.014716953448487731 4.014384693730067e-05 0.0005205057530178084 1.4197981499546323e-06 0.014716953448487731 4.014384693730067e-05 0.018705276199732106 7.797347614748531e-05']
['59866.39390432043 0.03350225900656942 6.685536104401056e-05 0.014720088540512872 4.0120065062420894e-05 0.0005206166342162193 1.4189570381894968e-06 0.01472008854051287 4.0120065062420894e-05 0.01878217046605655 7.796960254443965e-05']
['59866.39393585839 0.03353807477850517 6.691473362998292e-05 0.014721427006620933 4.013938065661834e-05 0.0005206639727711658 1.419640187588448e-06 0.014721427006620935 4.013938065661834e-05 0.018816647771884236 7.803045210857409e-05']
['59866.393967396354 0.03339027437985033 6.680199731793379e-05 0.014689032144934843 4.012151666610051e-05 0.0005195182389115836 1.4190083781675016e-06 0.014689032144934843 4.012151666610051e-05 0.018701242234915486 7.79245978190033e-05']
['59866.39399893432 0.03347605273954469 6.686669847417914e-05 0.014760696460238658 4.0156445816009577e-05 0.000522052845583561 1.4202437441377295e-06 0.014760696460238658 4.0156445816009577e-05 0.018715356279306032 7.799804808718551e-05']
['59866.39403047228 0.03347163324185607 6.687588111858997e-05 0.01466328373981387 4.009622327769372e-05 0.0005186075753667535 1.4181138075469497e-06 0.01466328373981387 4.009622327769372e-05 0.0188083495020422 7.797493569425015e-05']
['59866.394062010244 0.033454221187366476 6.686794461702559e-05 0.01463997998195544 4.009249617314345e-05 0.0005177833735321344 1.4179819881885952e-06 0.01463997998195544 4.009249617314345e-05 0.018814241205411038 7.796621234034089e-05']
['59866.39409354821 0.033464992906215005 6.68472811406125e-05 0.014725967393762425 4.013247103661139e-05 0.0005208245561171923 1.419395809770894e-06 0.014725967393762425 4.013247103661139e-05 0.01873902551245258 7.796905942357225e-05']
['59866.39412508617 0.033434375029029996 6.684940603053776e-05 0.014738289793960503 4.0141646487530305e-05 0.0005212603718732546 1.4197203249639703e-06 0.014738289793960501 4.0141646487530305e-05 0.018696085235069493 7.797560432190027e-05']
['59866.394156624134 0.03342116448236716 6.682136306272167e-05 0.01461941077338399 4.0073678482102e-05 0.0005170558865944379 1.4173164485115231e-06 0.01461941077338399 4.0073678482102e-05 0.018801753708983175 7.791658532460819e-05']
['59866.39418816209 0.03356266830977594 6.692569978550176e-05 0.014722048521721627 4.012958650103272e-05 0.0005206859543712728 1.4192937901940341e-06 0.014722048521721627 4.012958650103272e-05 0.018840619788054312 7.803481918043367e-05']
['59866.39421970006 0.03354307469645704 6.690349145305123e-05 0.014677645738566643 4.009996477415343e-05 0.0005191155271654609 1.4182461359149773e-06 0.014677645738566643 4.009996477415343e-05 0.018865428957890396 7.80005406615675e-05']
['59866.39425123802 0.033563977644390515 6.693447115019749e-05 0.014644947110140834 4.006785495965948e-05 0.0005179590497551737 1.417110483537538e-06 0.014644947110140836 4.006785495965948e-05 0.01891903053424968 7.801061741343244e-05']
['59866.39428277598 0.033512304040247444 6.688028090492754e-05 0.014701944086930497 4.010342349593171e-05 0.0005199749054434779 1.4183684631744866e-06 0.014701944086930497 4.010342349593171e-05 0.018810359953316945 7.798241179917472e-05']
['59866.39431431395 0.033493305484713215 6.686235302911386e-05 0.014715421645819442 4.012829929642775e-05 0.0005204515765808085 1.4192482646438893e-06 0.014715421645819442 4.012829929642775e-05 0.018777883838893773 7.797983493835784e-05']
['59866.394345851906 0.03351304037226594 6.689391993836516e-05 0.01469331388635939 4.011018510167307e-05 0.0005196696745366409 1.418607606058259e-06 0.014693313886359388 4.011018510167307e-05 0.018819726485906553 7.799758633195572e-05']
['59866.39437738987 0.03355846744771285 6.690901809825364e-05 0.014612570708449237 4.008171250837184e-05 0.0005168139687843411 1.4176005940656955e-06 0.014612570708449237 4.008171250837184e-05 0.018945896739263612 7.799589976707881e-05']
['59866.39440892784 0.03349669858769282 6.688824997602974e-05 0.01469104663286619 4.012402513968947e-05 0.0005195894868475998 1.4190970972722345e-06 0.01469104663286619 4.012402513968947e-05 0.018805651954826634 7.799984216821388e-05']
['59866.394440465796 0.03342544049165326 6.683562888593121e-05 0.01463198032467383 4.007867044475337e-05 0.0005175004435322658 1.4174930030741223e-06 0.01463198032467383 4.007867044475337e-05 0.018793460166979428 7.793138721463305e-05']
['59866.39447200376 0.03357836524620672 6.695035018395146e-05 0.014683348039161213 4.0108235481477867e-05 0.0005193172047935991 1.4185386523490994e-06 0.014683348039161213 4.0108235481477867e-05 0.018895017207045506 7.804498666276656e-05']
['59866.39450354173 0.03342690792871277 6.684856587282578e-05 0.014758074315280067 4.014074198444928e-05 0.0005219601061765247 1.4196883347114399e-06 0.014758074315280067 4.014074198444928e-05 0.018668833613432703 7.797441840960186e-05']
['59866.394535079686 0.03353352841687177 6.688993343706156e-05 0.014709472968870752 4.0109166117140414e-05 0.0005202411851716438 1.4185715668526355e-06 0.01470947296887075 4.0109166117140414e-05 0.018824055448001024 7.799364334243459e-05']
['59866.39456661765 0.0335382529739583 6.689693677204691e-05 0.014724650834231107 4.0134866157348873e-05 0.0005207779923489069 1.4194805198385991e-06 0.014724650834231105 4.0134866157348873e-05 0.018813602139727194 7.801286836767093e-05']
['59866.39459815561 0.033523665809919063 6.692123335944903e-05 0.014648283535193183 4.010421799364349e-05 0.0005180770516528041 1.4183965627829543e-06 0.014648283535193183 4.010421799364349e-05 0.01887538227472588 7.801794521282595e-05']
['59866.394629693576 0.03345042663283258 6.685976043714242e-05 0.014673112747953975 4.010950820889415e-05 0.0005189552054181287 1.418583665873435e-06 0.014673112747953975 4.010950820889415e-05 0.018777313884878608 7.796794350546525e-05']
['59866.39466123154 0.033562244897307796 6.694045477253324e-05 0.014678728308608332 4.012382854714575e-05 0.0005191538152484338 1.4190901442333217e-06 0.014678728308608332 4.012382854714575e-05 0.018883516588699464 7.804451359598775e-05']
['59866.3946927695 0.03356608970941029 6.691934890699435e-05 0.014746149471444807 4.013976622942951e-05 0.0005215383511005291 1.4196538244370747e-06 0.014746149471444807 4.013976622942951e-05 0.01881994023796548 7.803460829074043e-05']
['59866.394724307465 0.033512096861344674 6.688695179078355e-05 0.014686642889743085 4.009692492114953e-05 0.0005194337362951222 1.4181386231079006e-06 0.014686642889743085 4.009692492114953e-05 0.01882545397160159 7.79847915172882e-05']
['59866.39475584543 0.03339456101549745 6.681989986785308e-05 0.014625207196843907 4.0096728344233765e-05 0.0005172608931379712 1.4181316706217136e-06 0.014625207196843909 4.0096728344233765e-05 0.018769353818653536 7.792718808131852e-05']
['59866.39478738339 0.03350681867520288 6.689021135251834e-05 0.014704215888186843 4.0124171137348146e-05 0.0005200552539767378 1.4191022608831365e-06 0.014704215888186841 4.0124171137348146e-05 0.018802602787016037 7.800159924157821e-05']
['59866.394818921355 0.03350199826729982 6.688509260043277e-05 0.014706476879204063 4.013832861306987e-05 0.0005201352201759994 1.4196029791593176e-06 0.014706476879204063 4.013832861306987e-05 0.018795521388095756 7.800449369119224e-05']
['59866.39485045931 0.03340217638148917 6.680242676360238e-05 0.014741352944775554 4.0134607280894305e-05 0.0005213687086718438 1.419471363956956e-06 0.014741352944775554 4.0134607280894305e-05 0.018660823436713617 7.79317067893298e-05']
['59866.39488199728 0.033534783618512885 6.691732328883035e-05 0.01470401137137159 4.013444037856512e-05 0.0005200480206740505 1.4194654609945774e-06 0.01470401137137159 4.013444037856512e-05 0.018830772247141296 7.803013174820632e-05']
['59866.394913535245 0.03359366059662712 6.693416542080155e-05 0.01476008438086015 4.0143925166269866e-05 0.0005220311977038601 1.4198009167384413e-06 0.014760084380860149 4.0143925166269866e-05 0.01883357621576697 7.804945373501535e-05']
['59866.3949450732 0.03343775594256227 6.682700557274851e-05 0.014661829511257166 4.011847942987265e-05 0.0005185561425527125 1.4189009579099457e-06 0.014661829511257166 4.011847942987265e-05 0.018775926431305105 7.794447424664097e-05']
['59866.39497661117 0.033469423956194885 6.686720272437109e-05 0.014718753384400547 4.013739577534849e-05 0.0005205694127284247 1.419569986773882e-06 0.014718753384400547 4.013739577534849e-05 0.018750670571794338 7.798867443295278e-05']
['59866.395008149135 0.03351595362041895 6.686552915057164e-05 0.014660782960771373 4.0089124407548115e-05 0.0005185191284009326 1.4178627363749406e-06 0.014660782960771373 4.0089124407548115e-05 0.01885517065964758 7.796240686606472e-05']
['59866.39503968709 0.03358458071597174 6.695596113560411e-05 0.01474694735061639 4.0132148788567954e-05 0.000521566570303673 1.41938441257778e-06 0.014746947350616392 4.0132148788567954e-05 0.01883763336535535 7.806209129904402e-05']
['59866.39507122506 0.033436311718482804 6.682798511450011e-05 0.014695366270063943 4.012566690322828e-05 0.0005197422627614634 1.4191551627794767e-06 0.014695366270063945 4.012566690322828e-05 0.01874094544841886 7.794901371340549e-05']
['59866.39510276302 0.033421835639930175 6.685480684380415e-05 0.01465429072038496 4.008600598215825e-05 0.0005182895123677686 1.4177524446381719e-06 0.014654290720384962 4.008600598215825e-05 0.018767544919545215 7.795160725555304e-05']
['59866.39513430098 0.033601631432340275 6.697311545458456e-05 0.014712814871113068 4.01140116218274e-05 0.0005203593807852426 1.4187429415243484e-06 0.014712814871113067 4.01140116218274e-05 0.018888816561227206 7.806748440989511e-05']
['59866.39516583895 0.033446364370748785 6.683277422494089e-05 0.0146539135533761 4.009167069288575e-05 0.0005182761728135838 1.41795279279672e-06 0.0146539135533761 4.009167069288575e-05 0.018792450817372686 7.793562580456204e-05']
['59866.39519737691 0.03358219030780821 6.693243063639036e-05 0.014773690474985796 4.014635625351556e-05 0.0005225124148452535 1.419886898861161e-06 0.014773690474985796 4.014635625351556e-05 0.01880849983282241 7.804921646838868e-05']
['59866.39522891487 0.03342746801833171 6.682445270632373e-05 0.014671462101347885 4.010721749370011e-05 0.0005188968257366493 1.418502648396469e-06 0.014671462101347886 4.010721749370011e-05 0.01875600591698383 7.793648936529448e-05']
['59866.39526045284 0.033506233864553626 6.692610059723641e-05 0.014697309892197346 4.012513060730672e-05 0.000519811004332582 1.419136195191282e-06 0.014697309892197348 4.012513060730672e-05 0.018808923972356277 7.803287158246088e-05']
['59866.3952919908 0.03351634747342354 6.691173133069244e-05 0.01469400302490258 4.0119149317326685e-05 0.0005196940478267796 1.4189246503320845e-06 0.014694003024902579 4.0119149317326685e-05 0.01882234444852096 7.801747196376414e-05']
['59866.39532352876 0.03346398514856527 6.684857557897093e-05 0.014676776132741072 4.0112613868327134e-05 0.0005190847711508651 1.4186935061068392e-06 0.014676776132741072 4.0112613868327134e-05 0.018787209015824202 7.795995028402019e-05']
['59866.39535506672 0.03347656699893832 6.686526447832809e-05 0.014650524274449617 4.010301046844384e-05 0.0005181563015925467 1.4183538553153028e-06 0.014650524274449617 4.010301046844384e-05 0.018826042724488703 7.796932116152404e-05']
['59866.39538660469 0.033495317691679655 6.690897719312663e-05 0.014777523518573237 4.016530256878461e-05 0.000522647981030593 1.420556987689705e-06 0.014777523518573237 4.016530256878461e-05 0.018717794173106417 7.80388541655524e-05']
['59866.39541814265 0.03351426654837315 6.690315459338065e-05 0.014641399261905622 4.007900798496523e-05 0.0005178335702920683 1.4175049411170578e-06 0.01464139926190562 4.007900798496523e-05 0.018872867286467532 7.798947990341195e-05']
['59866.39544968061 0.03343527022686264 6.684942121007246e-05 0.014711651101063077 4.0112457481415236e-05 0.0005203182208394474 1.4186879750512696e-06 0.014711651101063076 4.0112457481415236e-05 0.01872361912579957 7.796059492666812e-05']
['59866.39548121858 0.03346896707097599 6.685154754640016e-05 0.014606692672229945 4.006272902341149e-05 0.0005166060757799026 1.4169291906282398e-06 0.014606692672229946 4.006272902341149e-05 0.018862274398746045 7.793684408642616e-05']
['59866.39551275654 0.03346138818288082 6.686039976705601e-05 0.01466110305905997 4.010062398869615e-05 0.0005185304495620227 1.4182694508600952e-06 0.01466110305905997 4.010062398869615e-05 0.018800285123820853 7.796392179266853e-05']
['59866.3955442945 0.033466415333507804 6.6880684697806e-05 0.014651455422077067 4.009453599645779e-05 0.0005181892342031371 1.4180541321804863e-06 0.014651455422077067 4.009453599645779e-05 0.018814959911430736 7.797818799137738e-05']
['59866.39557583247 0.03354528263753793 6.69361311555973e-05 0.014684957235676293 4.0120317259521194e-05 0.000519374118477995 1.418965957837307e-06 0.014684957235676295 4.0120317259521194e-05 0.01886032540186163 7.80389999364674e-05']
['59866.395607370425 0.03349142792366544 6.689449576437351e-05 0.0147816367188337 4.015918029744063e-05 0.0005227934557313441 1.4203404566347396e-06 0.014781636718833702 4.015918029744063e-05 0.01870979120483174 7.802328707336117e-05']
['59866.39563890839 0.03355368770717946 6.694375145296044e-05 0.014662623722057415 4.010393178166858e-05 0.0005185842320137606 1.418386440105048e-06 0.014662623722057417 4.010393178166858e-05 0.018891063985122043 7.803711426587012e-05']
['59866.395670446356 0.033490005571680054 6.690490299970835e-05 0.014710774945925447 4.0117927264599816e-05 0.0005202872331903209 1.4188814290582623e-06 0.014710774945925447 4.0117927264599816e-05 0.01877923062575461 7.801098726082182e-05']
['59866.395701984315 0.03355721064660929 6.691978349592968e-05 0.01473060587357376 4.0137238923263835e-05 0.0005209886087817269 1.4195644392661917e-06 0.01473060587357376 4.0137238923263835e-05 0.01882660477303553 7.80336810071476e-05']
['59866.39573352228 0.03348525289320643 6.686091809147176e-05 0.014683493021976048 4.011287582643147e-05 0.0005193223325117423 1.4187027709795478e-06 0.01468349302197605 4.011287582643147e-05 0.01880175987123038 7.797066868445599e-05']
['59866.395765060246 0.03349148523432245 6.691054467146583e-05 0.01468207527804467 4.011300157306599e-05 0.0005192721900773606 1.4187072183569835e-06 0.01468207527804467 4.011300157306599e-05 0.018809409956277782 7.801329299185505e-05']
['59866.395796598204 0.03352213742218533 6.690520270408657e-05 0.014701862707687837 4.012712040833233e-05 0.0005199720272415369 1.4192065700066143e-06 0.014701862707687837 4.012712040833233e-05 0.018820274714497494 7.801597234630684e-05']
['59866.39582813617 0.03344269563002173 6.683600415674519e-05 0.014674084128962164 4.0100988559096445e-05 0.0005189895609934795 1.4182823449003869e-06 0.014674084128962164 4.0100988559096445e-05 0.018768611501059566 7.794318915118398e-05']
['59866.39585967413 0.033591463258235005 6.696313719708623e-05 0.014664456545513845 4.010254108026426e-05 0.0005186490548832951 1.418337254104412e-06 0.014664456545513843 4.010254108026426e-05 0.018927006712721163 7.805303033431871e-05']
['59866.395891212094 0.03352119518337318 6.689236512760901e-05 0.014667900298831171 4.011169845547964e-05 0.0005187708527417933 1.4186611300002508e-06 0.014667900298831173 4.011169845547964e-05 0.01885329488454201 7.799703113163147e-05']
['59866.39592275006 0.03347435186179492 6.684783857460509e-05 0.01473772095254188 4.013780921812499e-05 0.0005212402532235636 1.4195846093208966e-06 0.014737720952541878 4.013780921812499e-05 0.01873663090925304 7.797228514624321e-05']
['59866.39595428802 0.033429006633142085 6.68490137991641e-05 0.014751972244999302 4.0138699912747586e-05 0.0005217442895880186 1.4196161111991125e-06 0.014751972244999302 4.0138699912747586e-05 0.018677034388142784 7.797375120260943e-05']
['59866.395985825984 0.0334458374853316 6.68641383886093e-05 0.014606687232300377 4.0065438138832225e-05 0.0005166058833817513 1.4170250059861546e-06 0.014606687232300377 4.0065438138832225e-05 0.018839150253031223 7.794903678498976e-05']
['59866.39601736395 0.033557219071289356 6.69280472990229e-05 0.01475565792852045 4.014837424232126e-05 0.0005218746439771437 1.4199582706152792e-06 0.014755657928520452 4.014837424232126e-05 0.018801561142768902 7.804649556233599e-05']
['59866.39604890191 0.033447776061730536 6.684315229774e-05 0.014717217360644309 4.012897081061092e-05 0.0005205150870009776 1.4192720145998025e-06 0.01471721736064431 4.012897081061092e-05 0.018730558701086225 7.796371789119428e-05']
['59866.396080439874 0.03329948576118189 6.673806853376274e-05 0.014678603561522282 4.010646616554357e-05 0.0005191494032227936 1.4184760755986918e-06 0.014678603561522282 4.010646616554357e-05 0.01862088219965961 7.786204736522861e-05']
['59866.39611197783 0.033439545020446236 6.682955816780059e-05 0.01469967902998582 4.0106999281126174e-05 0.000519894795441449 1.4184949307054053e-06 0.014699679029985818 4.0106999281126174e-05 0.018739865990460416 7.794075465531301e-05']
['59866.3961435158 0.03345607535551757 6.684111365921533e-05 0.01463602066044937 4.0094617941887383e-05 0.0005176433411790276 1.418057030407194e-06 0.01463602066044937 4.0094617941887383e-05 0.0188200546950682 7.794429333254655e-05']
['59866.396175053764 0.03339689487971955 6.682466073042297e-05 0.014606834630420371 4.006285619154905e-05 0.0005166110965238401 1.4169336882810614e-06 0.014606834630420371 4.006285619154905e-05 0.01879006024929918 7.791384811418875e-05']
['59866.39620659172 0.03338923783799918 6.678320935198422e-05 0.014614234191272939 4.0065929486311354e-05 0.0005168728024541501 1.4170423838483944e-06 0.014614234191272939 4.0065929486311354e-05 0.01877500364672624 7.787988030905688e-05']
['59866.39623812969 0.033534190813466404 6.688986251982652e-05 0.014669307192832682 4.010406712552412e-05 0.0005188206114384036 1.4183912269147426e-06 0.01466930719283268 4.010406712552412e-05 0.018864883620633724 7.799096042446097e-05']
['59866.39626966765 0.03356470090593089 6.693503209410584e-05 0.014760534871827656 4.0161671625827995e-05 0.0005220471305625927 1.4204285693520095e-06 0.014760534871827656 4.0161671625827995e-05 0.01880416603410323 7.805932608740493e-05']
['59866.39630120561 0.03353329656254663 6.69011622301224e-05 0.014740213933170933 4.014436719416178e-05 0.0005213284243769295 1.4198165502771041e-06 0.014740213933170933 4.014436719416178e-05 0.0187930826293757 7.802137992345976e-05']
['59866.39633274358 0.03344905601453647 6.68616879940445e-05 0.014645123726721741 4.009839950748246e-05 0.0005179652962889256 1.4181907759309901e-06 0.014645123726721743 4.009839950748246e-05 0.018803932287814726 7.796388243587299e-05']
['59866.396364281536 0.033478689758576104 6.686119939950248e-05 0.014687364298812636 4.010956933697118e-05 0.0005194592509216579 1.4185858278369065e-06 0.014687364298812637 4.010956933697118e-05 0.018791325459763468 7.796920890670451e-05']
['59866.3963958195 0.03341160217237583 6.682138594139645e-05 0.014631678473971926 4.0073041931777075e-05 0.000517489767747536 1.417293935149137e-06 0.014631678473971926 4.0073041931777075e-05 0.0187799236984039 7.791627755992337e-05']
['59866.39642735747 0.03353186403434393 6.690247082988829e-05 0.014675162906631812 4.010266831504635e-05 0.0005190277149487287 1.4183417541143015e-06 0.01467516290663181 4.010266831504635e-05 0.018856701127712122 7.80010551795979e-05']
['59866.396458895426 0.03348763035558514 6.68470391274183e-05 0.014797485387011264 4.019721381646055e-05 0.0005233539877050957 1.421685617202562e-06 0.014797485387011264 4.019721381646055e-05 0.01869014496857388 7.800219637105637e-05']
['59866.39649043339 0.033437435226594994 6.683831475193953e-05 0.014674240571566207 4.011499438032481e-05 0.0005189950940187558 1.4187776994960659e-06 0.014674240571566206 4.011499438032481e-05 0.01876319465502879 7.795237708378641e-05']
['59866.39652197136 0.033399017973827626 6.68170723215183e-05 0.014704875050349507 4.014052570252083e-05 0.0005200785670692905 1.419680685302992e-06 0.014704875050349505 4.014052570252083e-05 0.01869414292347812 7.794730885215821e-05']
['59866.396553509316 0.0335100980921669 6.690487973031755e-05 0.014657829251645613 4.009379793681974e-05 0.0005184146623103059 1.4180280286605547e-06 0.014657829251645615 4.009379793681974e-05 0.018852268840521286 7.799856129908285e-05']
['59866.39658504728 0.03348582156130306 6.687023275923925e-05 0.01463367005405713 4.008488324996861e-05 0.0005175602054842301 1.417712736109783e-06 0.01463367005405713 4.008488324996861e-05 0.01885215150724593 7.796426036613474e-05']
['59866.39661658524 0.033471801530962804 6.683408975089701e-05 0.014744802827988462 4.013119789665871e-05 0.0005214907233310491 1.419350781656068e-06 0.014744802827988462 4.013119789665871e-05 0.01872699870297434 7.795709459344762e-05']
['59866.396648123206 0.03350983906667871 6.688923255718866e-05 0.014737454130765963 4.012643949889747e-05 0.0005212308163336611 1.4191824877616463e-06 0.014737454130765963 4.012643949889747e-05 0.018772384935912746 7.800192676433287e-05']
['59866.39667966117 0.03346696743900866 6.686995772986742e-05 0.014679910794928292 4.01211414664518e-05 0.0005191956371468694 1.4189951081944484e-06 0.01467991079492829 4.01211414664518e-05 0.018787056644080372 7.798267268672761e-05']
['59866.39671119913 0.03357409530841253 6.694353340298054e-05 0.014781264295627145 4.016996373115778e-05 0.000522780283954845 1.4207218425857591e-06 0.014781264295627145 4.016996373115778e-05 0.018792831012785387 7.807088222018824e-05']
['59866.396742737095 0.03354086464179864 6.691840721244237e-05 0.014707839394416871 4.013226495021498e-05 0.0005201834092940341 1.4193885209556291e-06 0.014707839394416871 4.013226495021498e-05 0.018833025247381768 7.802994241882095e-05']
['59866.39677427506 0.03335486320435749 6.677258615210711e-05 0.014642826816250138 4.0077750280720435e-05 0.0005178840596988377 1.417460458928723e-06 0.014642826816250138 4.0077750280720435e-05 0.01871203638810735 7.787685361520682e-05']
['59866.39680581302 0.033484839137793564 6.688518234029307e-05 0.014737441068152609 4.012772457312171e-05 0.0005212303543382199 1.4192279379649858e-06 0.014737441068152607 4.012772457312171e-05 0.018747398069640958 7.799911471363357e-05']
['59866.396837350985 0.03347310781536142 6.687682276092356e-05 0.014724679822303108 4.014798683540041e-05 0.0005207790175922291 1.4199445688982925e-06 0.014724679822303108 4.014798683540041e-05 0.01874842799305831 7.800237348652583e-05']
['59866.39686888894 0.033520498109676 6.688124138966574e-05 0.014700162543916203 4.009973360671024e-05 0.0005199118962485766 1.4182379600391404e-06 0.014700162543916203 4.009973360671024e-05 0.018820335565759797 7.79813380569471e-05']
['59866.39690042691 0.03341109689615355 6.685173818059905e-05 0.014658875973052307 4.0086138687388595e-05 0.000518451682507176 1.4177571381255902e-06 0.014658875973052307 4.0086138687388595e-05 0.01875222092310124 7.794904369286333e-05']
['59866.396931964875 0.03350366969968485 6.689702273820685e-05 0.014705526335311796 4.0126910221812244e-05 0.0005201016015628705 1.419199136179138e-06 0.014705526335311797 4.0126910221812244e-05 0.018798143364373056 7.800884933894067e-05']
['59866.39696350283 0.03342901285073429 6.684221977595187e-05 0.014635562624850343 4.007125347066462e-05 0.0005176271414835393 1.4172306812765647e-06 0.014635562624850343 4.007125347066462e-05 0.018793450225883947 7.793322590068309e-05']
['59866.3969950408 0.03349941265167246 6.688859644500198e-05 0.014754983223138998 4.015707764631812e-05 0.0005218507811556794 1.4202660905636852e-06 0.014754983223138996 4.015707764631812e-05 0.018744429428533462 7.801714695805501e-05']
['59866.397026578765 0.03345986429840716 6.68723928070727e-05 0.014603652134438632 4.005039355813514e-05 0.0005164985387534259 1.4164929127895578e-06 0.014603652134438632 4.005039355813514e-05 0.018856212163968527 7.794838640988626e-05']
['59866.39705811672 0.03337501687479445 6.680677756992466e-05 0.014636410104674747 4.008831592058689e-05 0.0005176571149509225 1.4178341419979842e-06 0.014636410104674747 4.008831592058689e-05 0.018738606770119706 7.791160762444946e-05']
['59866.39708965469 0.03345376548472767 6.684377605732605e-05 0.014688594858233425 4.011946201325794e-05 0.0005195027730582327 1.4189357096883387e-06 0.014688594858233425 4.011946201325794e-05 0.018765170626494247 7.795935883417206e-05']
['59866.39712119265 0.033534483186467616 6.692587989142002e-05 0.014609665034778367 4.007789080026543e-05 0.000516711201600401 1.4174654287909868e-06 0.014609665034778369 4.007789080026543e-05 0.018924818151689247 7.80084016644283e-05']
['59866.39715273061 0.03348540079236902 6.688471275668259e-05 0.014681111773783102 4.011282845102163e-05 0.0005192381130849343 1.4187010954171795e-06 0.014681111773783102 4.011282845102163e-05 0.01880428901858592 7.799104953060338e-05']
['59866.39718426858 0.0335137848909535 6.691798677442925e-05 0.014701603283565921 4.011781834895685e-05 0.0005199628519901235 1.4188775769553827e-06 0.014701603283565921 4.011781834895685e-05 0.018812181607387582 7.802215264283977e-05']
['59866.39721580654 0.033597349991965744 6.695894482166035e-05 0.014745605377589774 4.0136970605771635e-05 0.0005215191077168548 1.4195549494761467e-06 0.014745605377589774 4.0136970605771635e-05 0.01885174461437597 7.806712945304657e-05']
['59866.3972473445 0.033479461797957175 6.68761360946282e-05 0.014671126013438786 4.01184665701158e-05 0.0005188849390584168 1.4189005030890857e-06 0.014671126013438788 4.01184665701158e-05 0.018808335784518387 7.798659461012983e-05']
['59866.39727888247 0.03336515544073717 6.679098475654431e-05 0.014715654796838007 4.013005909915922e-05 0.0005204598226112733 1.4193105049335738e-06 0.014715654796838007 4.013005909915922e-05 0.018649500643899163 7.791955651857205e-05']
['59866.39731042043 0.03352601974390579 6.689510308008589e-05 0.014708910195150094 4.0122819678578e-05 0.0005202212811228694 1.4190544628067691e-06 0.014708910195150094 4.0122819678578e-05 0.018817109548755692 7.800509903240302e-05']
['59866.39734195839 0.03339398617477471 6.680172677279391e-05 0.014681971065732222 4.0123762278810164e-05 0.0005192685043207702 1.419087800470393e-06 0.014681971065732222 4.0123762278810164e-05 0.01871201510904249 7.792552213000232e-05']
['59866.39737349635 0.03350939897941509 6.689303049451991e-05 0.01473781770625083 4.0134377105588495e-05 0.0005212436751860175 1.4194632231708008e-06 0.01473781770625083 4.0134377105588495e-05 0.018771581273164265 7.800926710586606e-05']
['59866.39740503432 0.03350763074383462 6.688090875607797e-05 0.014661066669088217 4.009238941620077e-05 0.0005185291625300487 1.4179782124341202e-06 0.014661066669088217 4.009238941620077e-05 0.018846564074746407 7.797727646653936e-05']
['59866.39743657228 0.03352873451017581 6.689487101345365e-05 0.014709252208402628 4.012368970630726e-05 0.000520233377367257 1.4190852337431554e-06 0.01470925220840263 4.012368970630726e-05 0.01881948230177318 7.800534753178546e-05']
['59866.39746811024 0.033416137666983106 6.681128189979983e-05 0.014610726283877735 4.0080989141413595e-05 0.0005167487356092935 1.4175750101930125e-06 0.014610726283877737 4.0080989141413595e-05 0.018805411383105368 7.79117005311053e-05']
['59866.39749964821 0.03349945942311666 6.688413779943354e-05 0.01460391836537642 4.006657818698651e-05 0.0005165079547467044 1.417065326941514e-06 0.014603918365376422 4.006657818698651e-05 0.018895541057740238 7.796677867391673e-05']
['59866.39753118617 0.03343271638702829 6.681540204749549e-05 0.014680719957282049 4.011027245997978e-05 0.0005192242554109504 1.418610695726333e-06 0.014680719957282049 4.011027245997978e-05 0.018751996429746245 7.793030160073986e-05']
['59866.39756272413 0.03329619713207523 6.673588389124784e-05 0.014661516089088195 4.0098692174104235e-05 0.0005185450575110532 1.4182011268953309e-06 0.014661516089088195 4.0098692174104235e-05 0.018634681042987038 7.785617067914193e-05']
['59866.3975942621 0.03347548778719506 6.688506372834653e-05 0.014717817588046135 4.0141355499080735e-05 0.0005205363157027509 1.4197100333528299e-06 0.014717817588046135 4.0141355499080735e-05 0.018757670199148924 7.800602650596013e-05']
['59866.397625800055 0.033566077326061435 6.694993490479212e-05 0.01473217142354656 4.013140392861622e-05 0.0005210439787854665 1.4193580685459511e-06 0.01473217142354656 4.013140392861622e-05 0.018833905902514873 7.80565395405001e-05']
['59866.39765733802 0.033383301628925464 6.678488743972113e-05 0.014650298405924847 4.010980472626416e-05 0.000518148313127612 1.418594153030135e-06 0.014650298405924847 4.010980472626416e-05 0.018733003223000616 7.79038999377776e-05']
['59866.397688875986 0.033544700467032285 6.689709586656305e-05 0.01473050976654059 4.011864810410373e-05 0.0005209852096907503 1.4189069235405342e-06 0.01473050976654059 4.011864810410373e-05 0.018814190700491694 7.800466243168438e-05']
['59866.397720413945 0.03339748146797907 6.680337717232778e-05 0.014649908502139014 4.009397344535501e-05 0.0005181345231020908 1.4180342360052087e-06 0.014649908502139014 4.009397344535501e-05 0.018747572965840058 7.791160316836715e-05']
['59866.39775195191 0.0334982090350251 6.688766767877257e-05 0.014701422107548196 4.0117669111941685e-05 0.0005199564441992812 1.4188722987756814e-06 0.014701422107548198 4.0117669111941685e-05 0.018796786927476904 7.799607337860769e-05']
['59866.397783489876 0.03347240705803403 6.688000994854884e-05 0.014733599275656727 4.0149296460956246e-05 0.0005210944787235415 1.4199908874273614e-06 0.014733599275656728 4.0149296460956246e-05 0.018738807782377305 7.800578015139484e-05']
['59866.397815027834 0.03355940600254844 6.694932544936853e-05 0.014676367196386028 4.011654310032952e-05 0.0005190703079859061 1.418832474261447e-06 0.014676367196386026 4.011654310032952e-05 0.018883038806162412 7.804837735946892e-05']
['59866.3978465658 0.03341799673989797 6.68038043766795e-05 0.014666170424622075 4.008833918658138e-05 0.0005187096709570588 1.4178349648642129e-06 0.014666170424622073 4.008833918658138e-05 0.018751826315275895 7.790907019042173e-05']
['59866.39787810376 0.03351527098924241 6.690291814278241e-05 0.014710493739032519 4.011200920679051e-05 0.0005202772875309785 1.418672120579628e-06 0.014710493739032519 4.011200920679051e-05 0.01880477725020989 7.800624166453278e-05']
['59866.397909641724 0.03348585107395527 6.688889660562202e-05 0.014607643346502741 4.007630713064919e-05 0.0005166396990042995 1.4174094179359536e-06 0.014607643346502743 4.007630713064919e-05 0.018878207727452526 7.797586089520087e-05']
['59866.39794117969 0.03344275495768603 6.682629536069887e-05 0.014694049252807168 4.011333595542576e-05 0.0005196956828044516 1.418719044713748e-06 0.014694049252807168 4.011333595542576e-05 0.018748705704878865 7.79412180627697e-05']
['59866.39797271765 0.033382378159901895 6.681956881280065e-05 0.014653061878693967 4.010312515988719e-05 0.0005182460509834577 1.4183579116953337e-06 0.014653061878693968 4.010312515988719e-05 0.018729316281207928 7.793019584165163e-05']
['59866.398004255614 0.03350274372782306 6.68981702933853e-05 0.014727181862917584 4.013149026314244e-05 0.0005208675091770314 1.419361122005197e-06 0.014727181862917585 4.013149026314244e-05 0.018775561864905477 7.801218942795719e-05']
['59866.39803579358 0.03344768301222799 6.684775031737104e-05 0.014683527112913361 4.0136797662314974e-05 0.0005193235382320063 1.4195488328525906e-06 0.014683527112913361 4.0136797662314974e-05 0.018764155899314627 7.797168876636694e-05']
['59866.39806733154 0.03359602461962188 6.695381512135424e-05 0.014702785255670113 4.010296376943991e-05 0.0005200046557018967 1.4183522036758999e-06 0.014702785255670115 4.010296376943991e-05 0.018893239363951764 7.804525009504098e-05']
['59866.398098869504 0.033450548052023785 6.686822227996526e-05 0.014571281937352095 4.003438062592023e-05 0.0005153536772256078 1.4159265711639138e-06 0.014571281937352095 4.003438062592023e-05 0.018879266114671688 7.793658180202606e-05']
['59866.39813040746 0.03349195737566717 6.689397462670799e-05 0.014652117873403639 4.0097636784822835e-05 0.0005182126636260664 1.4181638001351039e-06 0.01465211787340364 4.0097636784822835e-05 0.018839839502263526 7.799118102122976e-05']
['59866.39816194543 0.03355548339951225 6.69285484236002e-05 0.014647041546568129 4.008417918672318e-05 0.0005180331252908172 1.417687834966281e-06 0.01464704154656813 4.008417918672318e-05 0.018908441852944116 7.801392193168812e-05']
['59866.398193483394 0.03349471559181983 6.68624900601895e-05 0.014657039776663333 4.009599464989961e-05 0.0005183867403445553 1.4181057214928249e-06 0.014657039776663331 4.009599464989961e-05 0.0188376758151565 7.796333345883639e-05']
['59866.39822502135 0.03346621350886681 6.684613750956374e-05 0.014653644568793457 4.0089400119718914e-05 0.0005182666594300408 1.4178724876982413e-06 0.014653644568793455 4.0089400119718914e-05 0.018812568940073354 7.794591780142449e-05']
['59866.39825655932 0.033469585848796946 6.685978053763534e-05 0.01470473475987012 4.013282830755824e-05 0.0005200736053085654 1.4194084456458306e-06 0.014704734759870122 4.013282830755824e-05 0.018764851088926823 7.797995999937874e-05']
['59866.39828809728 0.03338986968334771 6.680059085844042e-05 0.014705164970284061 4.0125615472399946e-05 0.0005200888208894428 1.4191533437860196e-06 0.014705164970284061 4.0125615472399946e-05 0.018684704713063646 7.792550260393355e-05']
['59866.39831963524 0.033483654228539037 6.687310333971636e-05 0.014762903503833656 4.0158922312351917e-05 0.000522130903783064 1.4203313322787146e-06 0.014762903503833656 4.0158922312351917e-05 0.01872075072470538 7.800481390000171e-05']
['59866.39835117321 0.03337536215041973 6.681136669216994e-05 0.014662948133023244 4.009062205380622e-05 0.0005185957057046061 1.4179157047760474e-06 0.014662948133023245 4.009062205380622e-05 0.018712414017396484 7.791672924306261e-05']
['59866.398382711166 0.0335633053578283 6.693467455727674e-05 0.014722512040369399 4.014263683941922e-05 0.0005207023479899413 1.419755351496975e-06 0.014722512040369399 4.014263683941922e-05 0.018840793317458904 7.804922773807598e-05']
['59866.39841424913 0.033522504483686294 6.68958324052738e-05 0.014678277213385433 4.01011995754095e-05 0.0005191378610185384 1.4182898080757859e-06 0.014678277213385433 4.01011995754095e-05 0.018844227270300863 7.799460622749052e-05']
['59866.3984457871 0.033460680196384936 6.684840227988655e-05 0.014637344865551499 4.0093833481101964e-05 0.0005176901753540656 1.4180292857823802e-06 0.014637344865551499 4.0093833481101964e-05 0.018823335330833437 7.795014028585114e-05']
['59866.398477325056 0.03346832301409089 6.68572162854068e-05 0.014730086962079605 4.012852196906474e-05 0.0005209702560418775 1.4192561400774157e-06 0.014730086962079603 4.012852196906474e-05 0.018738236052011286 7.797554517190229e-05']
['59866.39850886302 0.033473963020051664 6.68572222064598e-05 0.014689841731625696 4.012037353370067e-05 0.0005195468721835194 1.4189679481292698e-06 0.014689841731625698 4.012037353370067e-05 0.018784121288425965 7.797135713611512e-05']
['59866.39854040099 0.03342087819496453 6.68417420147045e-05 0.014676526219612551 4.009862742054888e-05 0.0005190759322820323 1.4181988367067936e-06 0.014676526219612551 4.009862742054888e-05 0.01874435197535198 7.794689472052307e-05']
['59866.398571938946 0.033468232591221926 6.685250688249536e-05 0.014692431995014622 4.0108935004050844e-05 0.0005196384840106876 1.4185633928991647e-06 0.014692431995014622 4.0108935004050844e-05 0.018775800596207304 7.796142856331755e-05']
['59866.39860347691 0.03346035749170477 6.685595389787491e-05 0.014681290604991603 4.010507329735262e-05 0.0005192444379451147 1.418426812963655e-06 0.014681290604991603 4.010507329735262e-05 0.018779066886713165 7.796239783242176e-05']
['59866.39863501487 0.03358790406670899 6.694435831627373e-05 0.014659341218223381 4.009248974145808e-05 0.0005184681371891151 1.4179817607142575e-06 0.014659341218223381 4.009248974145808e-05 0.018928562848485604 7.803175535669161e-05']
['59866.398666552835 0.03350703916474092 6.690799984915558e-05 0.014665919426855184 4.009122095067224e-05 0.0005187007937269909 1.417936886419743e-06 0.014665919426855183 4.009122095067224e-05 0.018841119737885735 7.799991308411968e-05']
['59866.3986980908 0.03347412611023687 6.685813100353571e-05 0.014660604576589964 4.0103983268047365e-05 0.0005185128193511013 1.4183882610632002e-06 0.014660604576589964 4.0103983268047365e-05 0.018813521533646904 7.796370408882435e-05']
['59866.39872962876 0.033479294243391786 6.68897844579286e-05 0.014684089540690788 4.009948761021633e-05 0.0005193434300455417 1.4182292596929204e-06 0.014684089540690786 4.009948761021633e-05 0.018795204702700997 7.798853871839143e-05']
['59866.398761166725 0.03347864882430514 6.68662582036042e-05 0.014675495749087221 4.010057412967643e-05 0.0005190394868425175 1.4182676874579963e-06 0.014675495749087221 4.010057412967643e-05 0.018803153075217918 7.796892029315746e-05']
['59866.39879270469 0.03349271631313108 6.686747330871897e-05 0.014669408246383131 4.0105523615087497e-05 0.0005188241854766416 1.4184427396955366e-06 0.01466940824638313 4.0105523615087497e-05 0.01882330806674795 7.797250804695579e-05']
['59866.39882424265 0.03341984611392729 6.683450195709966e-05 0.014662615810053058 4.0101600305214366e-05 0.0005185839521838488 1.4183039809934056e-06 0.01466261581005306 4.0101600305214366e-05 0.018757230303874228 7.794221576843146e-05']
['59866.398855780615 0.03343880139201261 6.684187628929578e-05 0.014677337080124503 4.0111421800968966e-05 0.0005191046106061734 1.4186513453484946e-06 0.014677337080124501 4.0111421800968966e-05 0.018761464311888104 7.795359250713703e-05']
['59866.39888731857 0.03341648330561957 6.684263569810044e-05 0.014688489520922367 4.011416986160966e-05 0.0005194990475129557 1.4187485381118017e-06 0.014688489520922368 4.011416986160966e-05 0.0187279937846972 7.795565772126513e-05']
['59866.39891885654 0.033475210021918396 6.68638661913466e-05 0.014656572515933499 4.010427501039383e-05 0.0005183702143768074 1.418398579337989e-06 0.014656572515933499 4.010427501039383e-05 0.0188186375059849 7.796877244232848e-05']
['59866.398950394505 0.03358477877512672 6.695839087800243e-05 0.014694970316681055 4.009932106221477e-05 0.0005197282587752144 1.418223369262318e-06 0.014694970316681056 4.009932106221477e-05 0.018889808458445664 7.804730398048314e-05']
['59866.39898193246 0.033496649062891744 6.687377998370917e-05 0.014650230136634329 4.008168313252562e-05 0.0005181458985953793 1.417599555107666e-06 0.01465023013663433 4.008168313252562e-05 0.018846418926257415 7.796565764518202e-05']
['59866.39901347043 0.03359403893671587 6.693457874537409e-05 0.014698360454695768 4.0119734272504046e-05 0.0005198481603802822 1.41894533888941e-06 0.01469836045469577 4.0119734272504046e-05 0.018895678482020103 7.803736867627598e-05']
['59866.399045008395 0.03350142306946881 6.689960304722129e-05 0.014723640178635915 4.013549586723431e-05 0.0005207422477191873 1.4195027912699284e-06 0.014723640178635916 4.013549586723431e-05 0.018777782890832893 7.801547869740057e-05']
['59866.39907654635 0.03351591945768521 6.687552766215242e-05 0.014703173492845702 4.011487393297664e-05 0.0005200183867831382 1.4187734395425451e-06 0.014703173492845703 4.011487393297664e-05 0.018812745964839506 7.798422475571532e-05']
['59866.39910808432 0.033641915260941783 6.696115009195129e-05 0.01470194883333543 4.01032625266564e-05 0.0005199750733132128 1.418362770050964e-06 0.014701948833335431 4.01032625266564e-05 0.018939966427606352 7.805169624626201e-05']
['59866.39913962228 0.033409579698203296 6.684715463599108e-05 0.014651448688024083 4.010277832997394e-05 0.0005181889960347328 1.4183456450964215e-06 0.014651448688024083 4.010277832997394e-05 0.018758131010179212 7.795367157941396e-05']
['59866.39917116024 0.03347669720380934 6.684342585315806e-05 0.01469914996440288 4.013024182249532e-05 0.0005198760835741724 1.419316967449609e-06 0.01469914996440288 4.013024182249532e-05 0.01877754723940646 7.796460663992727e-05']
['59866.39920269821 0.03346270235072417 6.682244009257414e-05 0.014724486409277373 4.012309770170747e-05 0.0005207721770057615 1.419064295863513e-06 0.014724486409277373 4.012309770170747e-05 0.018738215941446798 7.794293726250264e-05']
['59866.39923423617 0.03345181820076283 6.686401975183784e-05 0.014670334224061263 4.0106970150020166e-05 0.0005188569352376789 1.41849390040329e-06 0.014670334224061264 4.0106970150020166e-05 0.01878148397670157 7.797029044442998e-05']
['59866.39926577413 0.03347607185925099 6.685221085243903e-05 0.01472924688386401 4.0149672368186814e-05 0.0005209405443528563 1.4200041824260035e-06 0.014729246883864011 4.0149672368186814e-05 0.01874682497538698 7.798214082167602e-05']
['59866.3992973121 0.033386126083501465 6.682377767385215e-05 0.014599518166866029 4.007745403623155e-05 0.0005163523295592567 1.4174499814232184e-06 0.01459951816686603 4.007745403623155e-05 0.018786607916635435 7.792059794836454e-05']
['59866.39932885006 0.03341038131177162 6.68498378633684e-05 0.014683713322932439 4.0113375218566524e-05 0.0005193301240642262 1.4187204333632888e-06 0.014683713322932439 4.0113375218566524e-05 0.01872666798883918 7.796142439555701e-05']
['59866.39936038802 0.033451459203521536 6.686423168221294e-05 0.014638300220601004 4.008003507967545e-05 0.0005177239641270737 1.4175412671615367e-06 0.014638300220601004 4.008003507967545e-05 0.018813158982920533 7.795662056836907e-05']
['59866.39939192598 0.03357404179950818 6.693570037824412e-05 0.014656455778307828 4.0103451127447626e-05 0.0005183660856278807 1.4183694404394519e-06 0.014656455778307828 4.0103451127447626e-05 0.018917586021200354 7.802996076801302e-05']
['59866.39942346395 0.033392365522092446 6.679346708850846e-05 0.014766679253231989 4.015621663065642e-05 0.0005222644436009798 1.4202356383639875e-06 0.01476667925323199 4.015621663065642e-05 0.018625686268860457 7.793515881674887e-05']
['59866.39945500191 0.03337280131658795 6.680124030411104e-05 0.014615293460466125 4.008526577810343e-05 0.0005169102664381858 1.4177262652750114e-06 0.014615293460466125 4.008526577810343e-05 0.018757507856121826 7.790529018409968e-05']
['59866.39948653987 0.03353409030886032 6.69077093030144e-05 0.014648805380909659 4.008796951996211e-05 0.0005180955081695393 1.4178218905820457e-06 0.014648805380909659 4.008796951996211e-05 0.018885284927950663 7.799799269474882e-05']
['59866.39951807784 0.03349375750736803 6.68888085734749e-05 0.014711974389522138 4.013253017278612e-05 0.0005203296548297372 1.4193979012852329e-06 0.014711974389522138 4.013253017278612e-05 0.01878178311784589 7.80046965922473e-05']
['59866.3995496158 0.03352594054766789 6.690111592567648e-05 0.014695022067494266 4.012155870933603e-05 0.0005197300890858213 1.4190098651427807e-06 0.014695022067494266 4.012155870933603e-05 0.01883091848017362 7.800960700687768e-05']
['59866.39958115376 0.033462382485691076 6.68710923924486e-05 0.014651621458869429 4.008770454561179e-05 0.0005181951065534125 1.4178125190314575e-06 0.014651621458869427 4.008770454561179e-05 0.01881076102682165 7.796644825497478e-05']
['59866.399612691726 0.033469652551522275 6.688062941426485e-05 0.014636608681092692 4.007376695134311e-05 0.000517664138155033 1.4173195774708643e-06 0.014636608681092692 4.007376695134311e-05 0.018833043870429583 7.796746365323672e-05']
['59866.399644229685 0.03350364408616383 6.687585997130485e-05 0.01469575842444787 4.01222838754019e-05 0.0005197561323856094 1.4190355126458797e-06 0.01469575842444787 4.01222838754019e-05 0.018807885661715963 7.798832162753542e-05']
['59866.39967576765 0.03344540695903369 6.685642134853892e-05 0.01461273306042085 4.007594143859812e-05 0.0005168197108107418 1.4173964842253808e-06 0.014612733060420852 4.007594143859812e-05 0.018832673898612838 7.79478168887578e-05']
['59866.399707305616 0.03347649769244744 6.686072391385354e-05 0.01469750931988594 4.0116579651863035e-05 0.0005198180576442329 1.4188337670074995e-06 0.01469750931988594 4.0116579651863035e-05 0.0187789883725615 7.79724077174023e-05']
['59866.399738843575 0.033534977005937126 6.689488427646367e-05 0.014680903776791559 4.0114494266036535e-05 0.0005192307566961893 1.4187600115713794e-06 0.014680903776791559 4.0114494266036535e-05 0.01885407322914557 7.800062943708432e-05']
['59866.39977038154 0.033493347814875785 6.686997992357617e-05 0.014676233689030586 4.0119932550610694e-05 0.0005190655861291156 1.4189523515429165e-06 0.014676233689030586 4.0119932550610694e-05 0.018817114125845198 7.798206975225158e-05']
['59866.3998019195 0.03338493045514498 6.680329693080522e-05 0.01469392004953892 4.0115115839004274e-05 0.000519691113173606 1.4187819952181145e-06 0.01469392004953892 4.0115115839004274e-05 0.018691010405606057 7.792241654108311e-05']
['59866.399833457464 0.03343118313600849 6.683516174795293e-05 0.014676077810577122 4.010386308620056e-05 0.0005190600730565844 1.4183840104998694e-06 0.014676077810577124 4.010386308620056e-05 0.01875510532543137 7.794394575790829e-05']
['59866.39986499543 0.03349637795362772 6.688670021002978e-05 0.014635637989859989 4.008821015044657e-05 0.0005176298069754996 1.4178304011445035e-06 0.014635637989859989 4.008821015044657e-05 0.01886073996376773 7.798009526829757e-05']
['59866.39989653339 0.03329439930418058 6.671838365839152e-05 0.014674622862342673 4.010134825920341e-05 0.0005190086147891499 1.4182950666892878e-06 0.014674622862342673 4.010134825920341e-05 0.018619776441837904 7.784253882161245e-05']
['59866.399928071354 0.03355328376490004 6.692873612858102e-05 0.014760817427551379 4.0142568880934055e-05 0.0005220571239270659 1.419752947957233e-06 0.014760817427551379 4.0142568880934055e-05 0.018792466337348664 7.804410007252157e-05']
['59866.39995960932 0.03349605989662846 6.688196839004191e-05 0.014685093032247656 4.0108229223656864e-05 0.0005193789212992366 1.418538431023956e-06 0.014685093032247657 4.0108229223656864e-05 0.0188109668643808 7.798633051493043e-05']
['59866.39999114728 0.0334592589866979 6.685962639134684e-05 0.014662218810664044 4.0102065389117044e-05 0.0005185699112027007 1.418320429971642e-06 0.014662218810664044 4.0102065389117044e-05 0.01879704017603386 7.796399995936267e-05']
['59866.400022685244 0.03345263939224092 6.683984545808383e-05 0.014722388687621156 4.013752127182272e-05 0.000520697985278913 1.4195744253037077e-06 0.014722388687621154 4.013752127182272e-05 0.018730250704619766 7.796528429183435e-05']
['59866.4000542232 0.03370696650639008 6.702123978538592e-05 0.014683732664481051 4.0097522901437305e-05 0.0005193308081315748 1.418159772334272e-06 0.014683732664481053 4.0097522901437305e-05 0.01902323384190903 7.810030681886906e-05']
['59866.40008576117 0.03362626537473989 6.698052694251372e-05 0.01477301004208803 4.014869105158672e-05 0.0005224883494543375 1.4199694754509714e-06 0.01477301004208803 4.014869105158672e-05 0.018853255332651857 7.809166653781033e-05']
['59866.400117299134 0.03347627505722282 6.683872960810713e-05 0.01472066415219495 4.013058848218985e-05 0.0005206369923149981 1.4193292280282658e-06 0.014720664152194952 4.013058848218985e-05 0.018755610905027864 7.796075876716777e-05']
['59866.40014883709 0.033401709592926564 6.682770779559979e-05 0.014609634648518891 4.005542909332246e-05 0.0005167101269063126 1.4166710084153746e-06 0.014609634648518891 4.005542909332246e-05 0.018792074944407672 7.791264293466274e-05']
['59866.40018037506 0.0335253750688729 6.690318716589298e-05 0.014687130717765767 4.011641805678814e-05 0.000519450989682053 1.4188280517508444e-06 0.014687130717765765 4.011641805678814e-05 0.018838244351107133 7.800873957872608e-05']
['59866.400211913024 0.03343880498742333 6.682430293271069e-05 0.014613223661525905 4.006883785988585e-05 0.0005168370622753986 1.4171452465218921e-06 0.014613223661525905 4.006883785988585e-05 0.018825581325897428 7.791661716145348e-05']
['59866.40024345098 0.033454739040197544 6.682516526394719e-05 0.014757140588772531 4.015009017017257e-05 0.0005219270823567092 1.4200189591485071e-06 0.014757140588772533 4.015009017017257e-05 0.01869759845142501 7.795917170690593e-05']
['59866.40027498895 0.03342475414544279 6.683510205039014e-05 0.014688009485568653 4.011027678758173e-05 0.0005194820697353107 1.4186108487839426e-06 0.014688009485568653 4.011027678758173e-05 0.018736744659874138 7.794719475428531e-05']
['59866.400306526906 0.033424696931972746 6.683774690103319e-05 0.014727044694969433 4.0132978308019076e-05 0.0005208626578532576 1.4194137508268992e-06 0.014727044694969433 4.0132978308019076e-05 0.018697652237003315 7.796114646847173e-05']
['59866.40033806487 0.03348835388852743 6.686555543993083e-05 0.01477575449655082 4.01643415747664e-05 0.0005225854146751916 1.420522999478976e-06 0.01477575449655082 4.01643415747664e-05 0.01871259939197661 7.800113357141017e-05']
['59866.40036960284 0.03354960129375705 6.691547146944395e-05 0.01475579211486849 4.014043722683256e-05 0.000521879389848385 1.4196775561156296e-06 0.014755792114868488 4.014043722683256e-05 0.018793809178888565 7.803162834863343e-05']
['59866.400401140796 0.033403196049427174 6.68121954697228e-05 0.014707024496038064 4.011153763533109e-05 0.0005201545881595664 1.4186554421510084e-06 0.014707024496038064 4.011153763533109e-05 0.01869617155338911 7.792820359122254e-05']
['59866.40043267876 0.03350342107996048 6.688190841453177e-05 0.014784476787737116 4.0152225904021134e-05 0.0005228939026212774 1.4200944952816465e-06 0.014784476787737115 4.0152225904021134e-05 0.018718944292223365 7.800891563287726e-05']
['59866.40046421673 0.033499569459788506 6.688396560103831e-05 0.014759662895923472 4.015593040739886e-05 0.0005220162907236132 1.420225515287039e-06 0.014759662895923472 4.015593040739886e-05 0.01873990656386503 7.801258617303196e-05']
['59866.400495754686 0.03359509818997334 6.697537221796666e-05 0.014701023405476962 4.011194258832964e-05 0.0005199423429980683 1.4186697644335503e-06 0.014701023405476963 4.011194258832964e-05 0.018894074784496374 7.806835736676309e-05']
['59866.40052729265 0.033445422300594725 6.682127025559704e-05 0.014685129664424378 4.0116215054218845e-05 0.0005193802168974591 1.4188208720036524e-06 0.014685129664424378 4.0116215054218845e-05 0.018760292636170347 7.793839149512821e-05']
['59866.40055883061 0.03349882418479223 6.68864833808689e-05 0.014710179753529659 4.012018489571565e-05 0.0005202661825654587 1.4189612764253207e-06 0.014710179753529659 4.012018489571565e-05 0.018788644431262568 7.799635180651503e-05']
['59866.400590368576 0.033535779741511 6.690809150434789e-05 0.014638487880025213 4.00848960258843e-05 0.0005177306012215139 1.4177131879653684e-06 0.014638487880025213 4.00848960258843e-05 0.01889729186148579 7.799674094576097e-05']
['59866.40062190654 0.03352278473741518 6.688436163058139e-05 0.014689988031606106 4.011838890279602e-05 0.0005195520464868652 1.4188977561695614e-06 0.014689988031606106 4.011838890279602e-05 0.01883279670580907 7.799360844893879e-05']
['59866.4006534445 0.03343797603593571 6.683587268285887e-05 0.014670662169248717 4.011340099883118e-05 0.0005188685339260448 1.4187213451536343e-06 0.014670662169248717 4.011340099883118e-05 0.01876731386668699 7.794946322440169e-05']
['59866.400684982465 0.0334880680847443 6.687038003848742e-05 0.01473787067944417 4.014072770659086e-05 0.0005212455487294777 1.4196878297354966e-06 0.01473787067944417 4.014072770659086e-05 0.01875019740530013 7.799311346078196e-05']
['59866.40071652043 0.033526630420854936 6.69008367527112e-05 0.014760833602079627 4.015076568313873e-05 0.0005220576959839821 1.4200428505324377e-06 0.014760833602079625 4.015076568313873e-05 0.018765796818775313 7.80243932572066e-05']
['59866.40074805839 0.03347911893175824 6.688812296993789e-05 0.014745267373981819 4.0156679508369704e-05 0.000521507153284635 1.4202520093142355e-06 0.01474526737398182 4.0156679508369704e-05 0.01873385155777642 7.801653609062281e-05']
['59866.400779596355 0.03349389682264921 6.68875001956741e-05 0.014639836674765466 4.008124953730257e-05 0.0005177783050770978 1.4175842198136548e-06 0.014639836674765466 4.008124953730257e-05 0.018854060147883742 7.797720337956357e-05']
['59866.400811134314 0.03352556388166855 6.688338753638057e-05 0.014705163485960532 4.0118103812262204e-05 0.0005200887683922368 1.4188876731545201e-06 0.01470516348596053 4.0118103812262204e-05 0.018820400395708023 7.799262645810252e-05']
['59866.40084267228 0.033410623495368254 6.68535159572531e-05 0.014680758426601048 4.010229491516913e-05 0.0005192256159847895 1.4183285477951439e-06 0.014680758426601048 4.010229491516913e-05 0.018729865068767206 7.795887796338461e-05']
['59866.400874210245 0.03347633188413343 6.689579673147839e-05 0.014676164480754988 4.011642841690776e-05 0.0005190631383870791 1.4188284181651217e-06 0.014676164480754988 4.011642841690776e-05 0.01880016740337844 7.800240668894876e-05']
['59866.4009057482 0.033444627226801055 6.6882537748339e-05 0.014666865535203346 4.010989991530976e-05 0.0005187342554648377 1.4185975196539427e-06 0.014666865535203346 4.010989991530976e-05 0.018777761691597707 7.798767804515119e-05']
['59866.40093728617 0.03344746263434072 6.68633375644945e-05 0.014705098958815069 4.0134274231858466e-05 0.0005200864862113115 1.419459584756879e-06 0.014705098958815067 4.0134274231858466e-05 0.018742363675525654 7.798375393876316e-05']
['59866.400968824135 0.033494875522051396 6.690979216432492e-05 0.014649248145552532 4.008917291548095e-05 0.000518111167765437 1.417864451992116e-06 0.01464924814555253 4.008917291548095e-05 0.018845627376498864 7.800039789975745e-05']
['59866.40100036209 0.03346936759896418 6.68568658337662e-05 0.01458064654488455 4.0056582352255466e-05 0.0005156848824653646 1.4167117966064529e-06 0.01458064654488455 4.0056582352255466e-05 0.018888721054079627 7.793824670120081e-05']
['59866.40103190006 0.033437844900196904 6.68480204525544e-05 0.014651415891891851 4.009853240267623e-05 0.0005181878361088309 1.4181954761369904e-06 0.014651415891891853 4.009853240267623e-05 0.01878642900830505 7.795222985440254e-05']
['59866.40106343802 0.03351559034410089 6.6890788596347e-05 0.01471765706278394 4.0131177129436646e-05 0.0005205306382829799 1.4193500471658358e-06 0.01471765706278394 4.0131177129436646e-05 0.01879793328131695 7.800569836130823e-05']
['59866.40109497598 0.033524859769612794 6.68886612376005e-05 0.014672552219176736 4.0102853311340434e-05 0.0005189353807679858 1.4183482970197808e-06 0.014672552219176736 4.0102853311340434e-05 0.018852307550436057 7.798930597119946e-05']
['59866.40112651395 0.033488343860384996 6.684393930037368e-05 0.014722958777203692 4.011639896885446e-05 0.0005207181480733721 1.418827376653289e-06 0.014722958777203692 4.011639896885446e-05 0.018765385083181305 7.79579225442825e-05']
['59866.40115805191 0.03354563611275545 6.692204618073016e-05 0.01471667604833666 4.0125326196372796e-05 0.0005204959419944178 1.4191431127394333e-06 0.014716676048336659 4.0125326196372796e-05 0.01882896006441879 7.802949485535006e-05']
['59866.40118958987 0.033565789540609806 6.692503600739498e-05 0.014707298469587042 4.0111836244347656e-05 0.0005201642779916989 1.4186660032845725e-06 0.014707298469587042 4.0111836244347656e-05 0.018858491071022762 7.80251232071086e-05']
['59866.40122112784 0.03345012871935862 6.683525830651846e-05 0.01464558870560287 4.0099494442227175e-05 0.0005179817415527845 1.4182295013258754e-06 0.014645588705602872 4.0099494442227175e-05 0.018804540013755745 7.79417808843322e-05']
['59866.4012526658 0.03358772387117406 6.694281351530996e-05 0.014695627397377956 4.010640503782074e-05 0.0005197514982509748 1.4184739136477477e-06 0.014695627397377956 4.010640503782074e-05 0.018892096473796107 7.803758073135852e-05']
['59866.40128420376 0.03337868017365582 6.679494231155326e-05 0.014605762372254501 4.005948701522121e-05 0.0005165731731488693 1.4168145280440117e-06 0.014605762372254503 4.005948701522121e-05 0.018772917801401317 7.788662798148605e-05']
['59866.40131574172 0.03348981159527375 6.68899284678287e-05 0.014719625158700145 4.012192229852145e-05 0.0005206002454371005 1.419022724479695e-06 0.014719625158700143 4.012192229852145e-05 0.018770186436573605 7.800019986743517e-05']
['59866.40134727969 0.03356046331335845 6.695058377811821e-05 0.014680017280965338 4.009626852763249e-05 0.0005191994033200175 1.4181154079361564e-06 0.01468001728096534 4.009626852763249e-05 0.01888044603239311 7.803903778283557e-05']
['59866.40137881765 0.03350659268226528 6.68834515911703e-05 0.014714611894436118 4.01149326269618e-05 0.0005204229374840681 1.418775515417627e-06 0.014714611894436118 4.01149326269618e-05 0.018791980787829163 7.799105023279342e-05']
['59866.40141035561 0.03340378087850916 6.683295133582045e-05 0.014759046088435904 4.014705720425902e-05 0.0005219944756212616 1.4199116899224247e-06 0.014759046088435906 4.014705720425902e-05 0.018644734790073256 7.796428404351694e-05']
['59866.40144189358 0.03339253933379787 6.681628575893021e-05 0.01466493786321737 4.0104621445164074e-05 0.0005186660780147871 1.4184108319615764e-06 0.01466493786321737 4.0104621445164074e-05 0.0187276014705805 7.792815090760805e-05']
['59866.40147343154 0.03345347109475777 6.684143481928293e-05 0.014787446157046163 4.01631718243961e-05 0.0005229989225775885 1.4204816280226169e-06 0.014787446157046162 4.01631718243961e-05 0.018666024937711606 7.797985496072953e-05']
['59866.4015049695 0.033355873574285655 6.676663421465259e-05 0.014648714274073776 4.0106850565953274e-05 0.0005180922859243659 1.4184896709820986e-06 0.014648714274073776 4.0106850565953274e-05 0.018707159300211877 7.788673126196094e-05']
['59866.40153650747 0.033484320630098666 6.686072645732635e-05 0.01465286881357109 4.010610397984538e-05 0.0005182392227015367 1.4184632658999843e-06 0.01465286881357109 4.010610397984538e-05 0.018831451816527574 7.796702071288596e-05']
['59866.401568045425 0.03356151433880945 6.69147309512001e-05 0.014778922071867864 4.015666712603227e-05 0.0005226974447350414 1.4202515713786334e-06 0.014778922071867866 4.015666712603227e-05 0.018782592266941588 7.803934349379457e-05']
['59866.40159958339 0.03348939315186987 6.688963119890292e-05 0.014566344326500306 4.004325783839164e-05 0.0005151790449646909 1.4162405383296252e-06 0.014566344326500306 4.004325783839164e-05 0.018923048825369562 7.795951038992716e-05']
['59866.401631121356 0.03357022393639675 6.693447826917147e-05 0.014698499009610955 4.010448509719846e-05 0.0005198530607579804 1.4184060096387523e-06 0.014698499009610956 4.010448509719846e-05 0.018871724926785793 7.802944384062724e-05']
['59866.401662659315 0.033495887062618766 6.689350877025001e-05 0.014711921451798525 4.013357940753333e-05 0.0005203277825407619 1.41943501037334e-06 0.014711921451798525 4.013357940753333e-05 0.01878396561082024 7.800926683193669e-05']
['59866.40169419728 0.03346974073051642 6.685284085099569e-05 0.014748791731583645 4.013702670829232e-05 0.0005216318019365359 1.4195569336969216e-06 0.014748791731583645 4.013702670829232e-05 0.018720948998932778 7.797617099364862e-05']
['59866.401725735246 0.03352006390168778 6.690308763064395e-05 0.014726301709299379 4.0131404772299045e-05 0.0005208363801105831 1.419358098385127e-06 0.01472630170929938 4.0131404772299045e-05 0.018793762192388402 7.80163622806891e-05']
['59866.401757273205 0.03348243076723061 6.688669919600168e-05 0.014698440319857935 4.0131905752730094e-05 0.0005198509850325799 1.4193758169433479e-06 0.014698440319857934 4.0131905752730094e-05 0.01878399044737268 7.800256655189253e-05']
['59866.40178881117 0.033489879967138286 6.687220821195037e-05 0.014726594649507966 4.0127875601334145e-05 0.0005208467407510779 1.4192332794953313e-06 0.014726594649507966 4.0127875601334145e-05 0.018763285317630322 7.798806723735747e-05']
['59866.40182034913 0.033563967270009584 6.690423609047961e-05 0.01474123717232121 4.013780125372085e-05 0.0005213646140588699 1.4195843276377215e-06 0.014741237172321212 4.013780125372085e-05 0.018822730097688374 7.802063763091038e-05']
['59866.401851887094 0.033530124232661315 6.691332264576955e-05 0.014775703149094734 4.0165995415193685e-05 0.0005225835986304247 1.4205814921187733e-06 0.014775703149094734 4.0165995415193685e-05 0.01875442108356658 7.804293648492614e-05']
['59866.40188342506 0.033663771546510506 6.697881962726468e-05 0.01472278168045585 4.013580564906937e-05 0.0005207118845571889 1.4195137475611127e-06 0.014722781680455849 4.013580564906937e-05 0.018940989866054657 7.808357813113795e-05']
['59866.40191496302 0.033430819925739715 6.68284428956883e-05 0.014637665753920984 4.00867512570115e-05 0.000517701524458551 1.4177788033441398e-06 0.014637665753920984 4.00867512570115e-05 0.018793154171818732 7.792938089195745e-05']
['59866.401946500984 0.03340602263911913 6.679033158953804e-05 0.01463701009151693 4.009069191322558e-05 0.0005176783351446389 1.4179181755475835e-06 0.01463701009151693 4.009069191322558e-05 0.0187690125476022 7.789872894933276e-05']
['59866.40197803895 0.033360000025788435 6.677366312036775e-05 0.014690997182396415 4.011180710987246e-05 0.0005195877378949992 1.4186649728632967e-06 0.014690997182396415 4.011180710987246e-05 0.01866900284339202 7.78953089481772e-05']
['59866.40200957691 0.03357854691748677 6.695128962037417e-05 0.014642676155418111 4.0072150930646465e-05 0.0005178787311619161 1.4172624224304175e-06 0.014642676155418113 4.0072150930646465e-05 0.018935870762068655 7.802725461042271e-05']
['59866.402041114874 0.03352274063414618 6.689580698727432e-05 0.014743660072967889 4.013539249592888e-05 0.0005214503066398787 1.4194991352578765e-06 0.014743660072967889 4.013539249592888e-05 0.018779080561178295 7.801217035361164e-05']
['59866.40207265283 0.033430023590699874 6.683311141715766e-05 0.014739611517405087 4.015038453007069e-05 0.0005213071182776115 1.420029370000248e-06 0.014739611517405087 4.015038453007069e-05 0.018690412073294787 7.796613469712828e-05']
['59866.4021041908 0.03346035856641462 6.684436778657484e-05 0.01465108547266823 4.0096957717366685e-05 0.0005181761499193348 1.4181397830368064e-06 0.01465108547266823 4.0096957717366685e-05 0.018809273093746387 7.79482874922546e-05']
['59866.402135728764 0.033464872702560725 6.685379014311578e-05 0.01469532466585766 4.011137369083195e-05 0.000519740791313667 1.4186496438004682e-06 0.014695324665857658 4.011137369083195e-05 0.018769548036703068 7.796378361691619e-05']
['59866.40216726672 0.03354297317526333 6.690802876720256e-05 0.014750748374442102 4.0140782223549374e-05 0.0005217010040216001 1.419689757878481e-06 0.014750748374442102 4.0140782223549374e-05 0.018792224800821225 7.802542349152117e-05']
['59866.40219880469 0.03350179468725845 6.6898232734408e-05 0.014702582908099334 4.0131521963547856e-05 0.0005199974991205383 1.4193622431776904e-06 0.014702582908099332 4.0131521963547856e-05 0.018799211779159122 7.801225928081908e-05']
['59866.402230342654 0.03340883099966522 6.681358290843155e-05 0.014764611497263132 4.014954712882704e-05 0.0005221913116935238 1.4199997529897416e-06 0.01476461149726313 4.014954712882704e-05 0.01864421950240209 7.79489640451479e-05']
['59866.40226188061 0.033395604923111805 6.681326072650729e-05 0.014714067987465227 4.012605343599674e-05 0.0005204037007100682 1.4191688335796471e-06 0.014714067987465225 4.012605343599674e-05 0.01868153693564658 7.79365894381882e-05']
['59866.40229341858 0.03335956392800609 6.681819956160534e-05 0.014722752332417712 4.013314330930305e-05 0.000520710846582669 1.419419586553557e-06 0.014722752332417712 4.013314330930305e-05 0.01863681159558838 7.794447372674712e-05']
['59866.402324956536 0.03338593193870805 6.681091012022335e-05 0.01464221408327623 4.00843203566404e-05 0.0005178623887029283 1.4176928278307567e-06 0.014642214083276232 4.00843203566404e-05 0.018743717855431816 7.791309549457228e-05']
['59866.4023564945 0.03347892226440406 6.686025237801105e-05 0.01472094973444846 4.012127659590686e-05 0.0005206470927210659 1.4189998874212776e-06 0.014720949734448461 4.012127659590686e-05 0.0187579725299556 7.797442006027744e-05']
['59866.40238803247 0.03350334674162889 6.68790958404903e-05 0.014661351007751957 4.00876949730415e-05 0.0005185392189531255 1.4178121804710398e-06 0.014661351007751955 4.00876949730415e-05 0.01884199573387693 7.797330792452699e-05']
['59866.402419570426 0.033600676032338 6.695557834898349e-05 0.014707065025102413 4.011384634712353e-05 0.0005201560215819953 1.4187370961274399e-06 0.014707065025102413 4.011384634712353e-05 0.01889361100723559 7.805235512659117e-05']
['59866.40245110839 0.033475039487128135 6.683656898972534e-05 0.014704875664744661 4.0120153013521235e-05 0.000520078588799074 1.4189601488233568e-06 0.014704875664744661 4.0120153013521235e-05 0.018770163822383473 7.795353508434798e-05']
['59866.40248264636 0.03348890052865693 6.689672149530265e-05 0.014740012402049814 4.013645217101414e-05 0.000521321296671571 1.4195366135974077e-06 0.014740012402049814 4.013645217101414e-05 0.01874888812660712 7.801349972726639e-05']
['59866.402514184316 0.0334243377988746 6.683832252382015e-05 0.014640985696308015 4.010081407445205e-05 0.0005178189434011458 1.4182761737684648e-06 0.014640985696308017 4.010081407445205e-05 0.01878335210256658 7.79450873835675e-05']
['59866.40254572228 0.03346498047169963 6.684636955900836e-05 0.014749413530961706 4.013856134094884e-05 0.0005216537935908981 1.4196112102242807e-06 0.014749413530961708 4.013856134094884e-05 0.01871556694073792 7.79714129007589e-05']
['59866.40257726024 0.03351164543627243 6.688404062205065e-05 0.014741696030623704 4.0134772420505235e-05 0.0005213808428515411 1.4194772045759293e-06 0.014741696030623702 4.0134772420505235e-05 0.018769949405648724 7.800176182098626e-05']
['59866.402608798206 0.03355816118388395 6.694434692379044e-05 0.01466496436609088 4.010615740096178e-05 0.0005186670153621927 1.4184651552854823e-06 0.014664964366090882 4.010615740096178e-05 0.01889319681779307 7.803876886857924e-05']
['59866.40264033617 0.033546585470426 6.6924613302032e-05 0.014705746066998236 4.011449189730683e-05 0.0005201093729815485 1.4187599277947035e-06 0.014705746066998237 4.011449189730683e-05 0.01884083940342776 7.802612591821802e-05']
['59866.40267187413 0.03345035044833877 6.685840094342483e-05 0.014649034664614003 4.007929603383666e-05 0.0005181036174217431 1.417515128761889e-06 0.014649034664614003 4.007929603383666e-05 0.01880131578372477 7.79512395493469e-05']
['59866.402703412095 0.03343331568660379 6.683101542061505e-05 0.014635797895537896 4.00817038489143e-05 0.000517635462481959 1.4176002878000352e-06 0.014635797895537896 4.00817038489143e-05 0.018797517791065897 7.792899079022233e-05']
['59866.40273495006 0.03353550230935042 6.689465473240897e-05 0.014689174840754375 4.011583010258266e-05 0.0005195232857438141 1.4188072571245967e-06 0.014689174840754375 4.011583010258266e-05 0.018846327468596047 7.800111958547443e-05']
['59866.40276648802 0.03357611157388675 6.695285038874169e-05 0.014731765489543868 4.0127548402765586e-05 0.0005210296218070004 1.4192217072132073e-06 0.014731765489543866 4.0127548402765586e-05 0.018844346084342885 7.805705807928917e-05']
['59866.402798025985 0.03349288600567907 6.688397733855545e-05 0.014784857083487346 4.0162158984358196e-05 0.0005229073528320521 1.4204458061340403e-06 0.014784857083487346 4.0162158984358196e-05 0.01870802892219172 7.80158024948104e-05']
['59866.402829563944 0.03343897562250806 6.684291795632872e-05 0.014719573904393476 4.013669691781217e-05 0.0005205984326868203 1.4195452697446772e-06 0.014719573904393476 4.013669691781217e-05 0.018719401718114585 7.796749399838887e-05']
['59866.40286110191 0.03348784006215069 6.686865693374301e-05 0.014672583882018028 4.008690410737204e-05 0.00051893650061192 1.4177842093197918e-06 0.014672583882018028 4.008690410737204e-05 0.018815256180132665 7.796394782870002e-05']
['59866.402892639875 0.03352012656899746 6.69147741857246e-05 0.014600218301829183 4.006188309777505e-05 0.0005163770917681939 1.4168992721290116e-06 0.014600218301829183 4.006188309777505e-05 0.018919908267168273 7.799064996309692e-05']
['59866.40292417783 0.03357622054704876 6.693268151507071e-05 0.014705661552409696 4.0123889154834465e-05 0.0005201063838894308 1.4190922877918214e-06 0.014705661552409696 4.0123889154834465e-05 0.01887055899463906 7.803787757049349e-05']
['59866.4029557158 0.03361950417784008 6.696176132048987e-05 0.014765652414109686 4.01526943485435e-05 0.0005222281265960742 1.4201110631174908e-06 0.014765652414109686 4.01526943485435e-05 0.01885385176373039 7.807763023164708e-05']
['59866.402987253765 0.03336645761773885 6.680841090650216e-05 0.014644588390071307 4.008951407027752e-05 0.0005179463626280066 1.4178765178748347e-06 0.014644588390071305 4.008951407027752e-05 0.018721869227667543 7.79136246509108e-05']
['59866.40301879172 0.033490450017444266 6.689121365652445e-05 0.014641049083288008 4.0085059716165525e-05 0.0005178211852569666 1.417718977324789e-06 0.01464104908328801 4.0085059716165525e-05 0.018849400934156255 7.798234721327231e-05']
['59866.40305032969 0.033516588654166936 6.688978969614977e-05 0.01460582144744125 4.0064778216616184e-05 0.0005165752625061993 1.4170016660122126e-06 0.014605821447441252 4.0064778216616184e-05 0.018910767206725684 7.797070231273915e-05']
['59866.40308186765 0.03347724543064426 6.689586964924236e-05 0.014756997380304332 4.0168263252239695e-05 0.000521922017393241 1.4206617004467732e-06 0.014756997380304332 4.0168263252239695e-05 0.01872024805033993 7.802914038248567e-05']
['59866.40311340561 0.03357709537467512 6.692514860699624e-05 0.014710306149235266 4.011680780579283e-05 0.0005202706528990882 1.4188418363021024e-06 0.014710306149235266 4.011680780579283e-05 0.018866789225439853 7.802777572502918e-05']
['59866.40314494358 0.033493707685439175 6.686908156292494e-05 0.014734504956746249 4.012357795016247e-05 0.0005211265106395998 1.4190812811780743e-06 0.01473450495674625 4.012357795016247e-05 0.018759202728692925 7.798317495839645e-05']
['59866.40317648154 0.033517863778651964 6.690882052416577e-05 0.01467401608738937 4.010882745810117e-05 0.0005189871545151138 1.418559589239276e-06 0.01467401608738937 4.010882745810117e-05 0.018843847691262593 7.800966801620654e-05']
['59866.4032080195 0.03353529294064364 6.691668751430343e-05 0.014694029915724972 4.012536800195425e-05 0.0005196949988950702 1.4191445913094192e-06 0.014694029915724974 4.012536800195425e-05 0.01884126302491867 7.802492053939681e-05']
['59866.40323955747 0.033391211518103175 6.678634692772882e-05 0.014620618745223002 4.007969841425361e-05 0.0005170986098587256 1.4175293600579692e-06 0.014620618745223002 4.007969841425361e-05 0.018770592772880172 7.788965503151542e-05']
['59866.40327109543 0.03338024287502095 6.67967272524905e-05 0.014644546658926793 4.009764851722609e-05 0.0005179448866906889 1.4181642150839866e-06 0.014644546658926793 4.009764851722609e-05 0.018735696216094156 7.790779285960174e-05']
['59866.40330263339 0.03348820041912015 6.686088310494424e-05 0.014682318629526445 4.01084271884956e-05 0.0005192807968754124 1.4185454325978766e-06 0.014682318629526445 4.01084271884956e-05 0.018805881789593706 7.796835012431564e-05']
['59866.40333417135 0.033508310828856455 6.688913735394638e-05 0.01472232293708483 4.012384454872595e-05 0.000520695659829387 1.419090710173452e-06 0.014722322937084831 4.012384454872595e-05 0.018785987891771626 7.80005102375967e-05']
['59866.40336570932 0.03346504979605614 6.68714388247666e-05 0.014647879467145908 4.0090683924988736e-05 0.000518062760669011 1.417917893021499e-06 0.01464787946714591 4.0090683924988736e-05 0.018817170328910234 7.7968277318842e-05']
['59866.40339724728 0.03351110345442004 6.689122875823258e-05 0.014659769757247974 4.0101367406502806e-05 0.0005184832936566866 1.4182957438864756e-06 0.014659769757247972 4.0101367406502806e-05 0.018851333697172065 7.799074401913042e-05']
['59866.40342878524 0.03345484768191594 6.68742769020416e-05 0.014756714628786596 4.0133587466989575e-05 0.0005219120171039712 1.4194352954182955e-06 0.014756714628786596 4.0133587466989575e-05 0.018698133053129347 7.799278014112228e-05']
['59866.40346032321 0.033534804714625305 6.690473504094351e-05 0.01469857448578912 4.012268377772963e-05 0.0005198557301817228 1.4190496562974824e-06 0.014698574485789121 4.012268377772963e-05 0.01883623022883618 7.80132894090907e-05']
['59866.40349186117 0.03352598271609613 6.689419575334454e-05 0.014745674565179102 4.014415612742278e-05 0.0005215215547272641 1.419809085318252e-06 0.0147456745651791 4.014415612742278e-05 0.01878030815091703 7.801529783747334e-05']
['59866.40352339913 0.033487775556027714 6.687891481865149e-05 0.014812522791222346 4.018673351225622e-05 0.0005238858270854212 1.421314952264956e-06 0.014812522791222346 4.018673351225622e-05 0.018675252764805368 7.802411676978816e-05']
['59866.4035549371 0.033427427041773886 6.684247017542479e-05 0.014691452134589786 4.0116411644216964e-05 0.0005196038285373203 1.418827824952533e-06 0.014691452134589784 4.0116411644216964e-05 0.0187359749071841 7.795666938986566e-05']
['59866.403586475055 0.033452718543499446 6.687942932618866e-05 0.014676166330697125 4.0102463959273205e-05 0.0005190632038153981 1.4183345265073136e-06 0.014676166330697125 4.0102463959273205e-05 0.01877655221280232 7.79811880045532e-05']
['59866.40361801302 0.0334569570576926 6.68368658739058e-05 0.014692886564270586 4.012718167508293e-05 0.0005196545611093686 1.4192087368746598e-06 0.014692886564270587 4.012718167508293e-05 0.018764070493422016 7.795740727494459e-05']
['59866.403649550986 0.03353989783106919 6.691229359368315e-05 0.014608740351328274 4.007165836827158e-05 0.000516678497613317 1.41724500160003e-06 0.014608740351328274 4.007165836827158e-05 0.018931157479740918 7.799354356836673e-05']
['59866.403681088945 0.033553739150133655 6.692643800330995e-05 0.014741918801517697 4.01441953436093e-05 0.0005213887217601981 1.4198104723071261e-06 0.014741918801517699 4.01441953436093e-05 0.018811820348615955 7.80429658816011e-05']
['59866.40371262691 0.033481119323079706 6.687064676329372e-05 0.014707114240336671 4.0132299063416455e-05 0.0005201577622148414 1.4193897274633268e-06 0.014707114240336671 4.0132299063416455e-05 0.018774005082743035 7.798900452407828e-05']
['59866.403744164876 0.03346411095555882 6.6873298179948e-05 0.014666066235809001 4.009952911014705e-05 0.0005187059860315887 1.4182307274527232e-06 0.014666066235809 4.009952911014705e-05 0.01879804471974982 7.79744204487585e-05']
['59866.403775702835 0.033607093663986135 6.692983612904214e-05 0.014638410168960357 4.0085087545276245e-05 0.000517727852754824 1.4177199615782407e-06 0.014638410168960357 4.0085087545276245e-05 0.018968683495025777 7.801549338287169e-05']
['59866.4038072408 0.03331708125474894 6.677130258063812e-05 0.014640376546574005 4.00922601865469e-05 0.0005177973991364233 1.417973641870074e-06 0.014640376546574005 4.00922601865469e-05 0.018676704708174938 7.788322139704356e-05']
['59866.40383877876 0.033436679926591356 6.686387516990885e-05 0.014668620485721751 4.0096794219940645e-05 0.0005187963241425901 1.4181340004982425e-06 0.014668620485721751 4.0096794219940645e-05 0.018768059440869605 7.796493256236048e-05']
['59866.403870316724 0.03356442110080407 6.69443933781852e-05 0.0147550395376644 4.015857422468637e-05 0.0005218527728745874 1.4203190211959143e-06 0.0147550395376644 4.015857422468637e-05 0.01880938156313967 7.806576002661378e-05']
['59866.40390185469 0.03353926845566519 6.691073408860762e-05 0.014774634826635411 4.0158104592460605e-05 0.0005225458144525986 1.4203024113536553e-06 0.01477463482663541 4.0158104592460605e-05 0.018764633629029782 7.803665613502005e-05']
['59866.40393339265 0.03362115941311671 6.69690595296591e-05 0.01472112282467769 4.013810069535015e-05 0.0005206532145356398 1.4195949182189374e-06 0.014721122824677689 4.013810069535015e-05 0.01890003658843902 7.807638606977843e-05']
['59866.403964930614 0.033452899454869366 6.685896777125512e-05 0.014692009801512135 4.012144539293548e-05 0.0005196235519700517 1.4190058573949408e-06 0.014692009801512135 4.012144539293548e-05 0.018760889653357232 7.797340541400019e-05']
['59866.40399646858 0.0335413666795616 6.690152936923386e-05 0.01473599805678701 4.0124345752067104e-05 0.0005211793182511592 1.419108436615505e-06 0.014735998056787008 4.0124345752067104e-05 0.01880536862277459 7.801139502645679e-05']
['59866.40402800654 0.03346633114799528 6.68532095301245e-05 0.01467296111899801 4.010956997934583e-05 0.0005189498426408269 1.4185858505562622e-06 0.01467296111899801 4.010956997934583e-05 0.018793370028997267 7.796235776582677e-05']
['59866.404059544504 0.03355723972943453 6.69437642210864e-05 0.014696258571645346 4.01189519570594e-05 0.000519773821474221 1.418917670140505e-06 0.014696258571645348 4.01189519570594e-05 0.018860981157789183 7.804484527642584e-05']
['59866.40409108246 0.03354393878863763 6.692715966026653e-05 0.014756624913729042 4.0159723921639884e-05 0.0005219088440828868 1.4203596834077385e-06 0.014756624913729042 4.0159723921639884e-05 0.01878731387490859 7.805157349889329e-05']
['59866.40412262043 0.03348582398965755 6.688559566243594e-05 0.01463472992244553 4.007808636850171e-05 0.0005175976906604614 1.4174723456024347e-06 0.01463472992244553 4.007808636850171e-05 0.01885109406721202 7.797394381509732e-05']
['59866.404154158394 0.033434473210257644 6.685401476036084e-05 0.014596128192183387 4.005682803899805e-05 0.0005162324337308792 1.4167204859974605e-06 0.014596128192183387 4.005682803899805e-05 0.018838345018074257 7.793592728725568e-05']
['59866.40418569635 0.03347319964787795 6.689516158706559e-05 0.014626426370935032 4.0089788568879204e-05 0.0005173040126008805 1.417886226276908e-06 0.014626426370935032 4.0089788568879204e-05 0.018846773276942917 7.798816443061763e-05']
['59866.40421723432 0.03356462825863195 6.69578498754858e-05 0.014765977433505459 4.015926497805351e-05 0.0005222396218057271 1.4203434515987671e-06 0.014765977433505459 4.015926497805351e-05 0.018798650825126488 7.807765508470147e-05']
['59866.40424877228 0.03360795823012462 6.69653944286341e-05 0.01471936429290778 4.0129166222573644e-05 0.0005205910191970253 1.4192789258842037e-06 0.014719364292907778 4.0129166222573644e-05 0.01888859393721684 7.806864948685538e-05']
['59866.40428031024 0.03342871364756285 6.684645206269131e-05 0.01464769342950407 4.009217694818377e-05 0.0005180561809333887 1.4179706979151968e-06 0.01464769342950407 4.009217694818377e-05 0.018781020218058782 7.794761578017742e-05']
['59866.40431184821 0.03349214826014841 6.689814885776166e-05 0.01463717166017938 4.009073427122184e-05 0.000517684049467145 1.4179196736552466e-06 0.01463717166017938 4.009073427122184e-05 0.01885497659996903 7.799121293454128e-05']
['59866.404343386166 0.03339547900631581 6.680835582309449e-05 0.014770932226947994 4.015350228240898e-05 0.000522414861776478 1.4201396379326867e-06 0.014770932226947994 4.015350228240898e-05 0.018624546779367812 7.794652111113508e-05']
['59866.40437492413 0.033491044466623064 6.685511868736493e-05 0.014640959517159857 4.008995956564126e-05 0.0005178180175031824 1.4178922740502267e-06 0.014640959517159857 4.008995956564126e-05 0.018850084949463206 7.795390787302714e-05']
['59866.4044064621 0.03341641257963534 6.681985421143436e-05 0.014698493954541262 4.011884251284771e-05 0.0005198528819714628 1.4189137993433307e-06 0.014698493954541264 4.011884251284771e-05 0.018717918625094074 7.793852988995891e-05']
['59866.404438000056 0.03352951923350174 6.690631516400119e-05 0.014703304359469817 4.0125530399971935e-05 0.0005200230152431634 1.4191503349643666e-06 0.014703304359469815 4.0125530399971935e-05 0.018826214874031924 7.80161085847258e-05']
['59866.40446953802 0.033490781103173335 6.686161623735746e-05 0.014717234759612393 4.0124828507545736e-05 0.0005205157023635943 1.4191255105978893e-06 0.014717234759612393 4.0124828507545736e-05 0.018773546343560942 7.797741717081695e-05']
['59866.40450107599 0.033438037512335594 6.68331968879525e-05 0.014667586307845279 4.0108400526060976e-05 0.0005187597475823508 1.418544489607151e-06 0.014667586307845277 4.0108400526060976e-05 0.018770451204490318 7.794459570119505e-05']
['59866.404532613946 0.03347381625097054 6.68371067547341e-05 0.014746034658848198 4.014015773564558e-05 0.0005215342904355781 1.4196676711369723e-06 0.014746034658848198 4.014015773564558e-05 0.018727781592122343 7.796429376571195e-05']
['59866.40456415191 0.03349874036410332 6.689353377293401e-05 0.014641832560732747 4.008163100802801e-05 0.0005178488951032179 1.417597711580677e-06 0.014641832560732747 4.008163100802801e-05 0.018856907803370578 7.798257500810278e-05']
['59866.40459568987 0.03345419703098536 6.683027074832709e-05 0.014596920684294095 4.0074009863052645e-05 0.0005162604624057192 1.4173281687151547e-06 0.014596920684294095 4.0074009863052645e-05 0.018857276346691265 7.792439511987721e-05']
['59866.404627227836 0.03339162104015834 6.678572800760394e-05 0.014675152935680362 4.010672362872045e-05 0.0005190273622984597 1.4184851814958615e-06 0.014675152935680362 4.010672362872045e-05 0.018716468104477975 7.7903034252436e-05']
['59866.4046587658 0.033455948841900576 6.684448969431831e-05 0.014688029686323583 4.012145844078098e-05 0.0005194827841908665 1.4190063188680757e-06 0.014688029686323583 4.012145844078098e-05 0.018767919155576993 7.79609981330995e-05']
['59866.40469030376 0.03341739296794479 6.679127475384196e-05 0.014666395231796239 4.0107502289654965e-05 0.0005187176218843946 1.4185127209929107e-06 0.014666395231796239 4.0107502289654965e-05 0.01875099773614855 7.790819034708664e-05']
['59866.404721841725 0.033501808724081435 6.687708725201971e-05 0.014611933820021671 4.0071214696800834e-05 0.00051679144346402 1.4172293099316571e-06 0.014611933820021671 4.0071214696800834e-05 0.018889874904059765 7.79631133715898e-05']
['59866.40475337969 0.03352905187394356 6.690595940065057e-05 0.014723450957706018 4.01257250154943e-05 0.0005207355553977808 1.4191572180804526e-06 0.01472345095770602 4.01257250154943e-05 0.018805600916237543 7.801590357959438e-05']
['59866.40478491765 0.03351809158325166 6.688364543978285e-05 0.014658278112451897 4.010083264425967e-05 0.0005184305375138793 1.4182768305410593e-06 0.014658278112451897 4.010083264425967e-05 0.018859813470799763 7.798396505742387e-05']
['59866.404816455615 0.03352240121800686 6.69054260277463e-05 0.014765654890726884 4.0148729882469746e-05 0.0005222282141884897 1.4199708488125224e-06 0.014765654890726884 4.0148729882469746e-05 0.01875674632727998 7.80272807621139e-05']
['59866.404847993574 0.03354129495256628 6.688912910760802e-05 0.01472849997690112 4.0128987665107495e-05 0.0005209141279228177 1.4192726107056785e-06 0.01472849997690112 4.0128987665107495e-05 0.01881279497566516 7.800314893515904e-05']
['59866.40487953154 0.03345751012015919 6.686667735347907e-05 0.014667206014517016 4.010028614241852e-05 0.0005187462974572358 1.4182575019922975e-06 0.014667206014517016 4.010028614241852e-05 0.018790304105642176 7.796913164193964e-05']
['59866.404911069505 0.03353068968320145 6.689463928798594e-05 0.01475142002971531 4.015455298928554e-05 0.0005217247589675522 1.4201767990867192e-06 0.014751420029715308 4.015455298928554e-05 0.01877926965348614 7.802102851949013e-05']
['59866.40494260746 0.033466220002656234 6.683770836183337e-05 0.01473102938104 4.014775146441141e-05 0.0005210035872943243 1.4199362443524347e-06 0.01473102938104 4.014775146441141e-05 0.018735190621616236 7.796871941175922e-05']
['59866.40497414543 0.03336624683659184 6.679118414742417e-05 0.014725734708476776 4.014885236393601e-05 0.0005208163265586599 1.4199751807082541e-06 0.014725734708476778 4.014885236393601e-05 0.01864051212811506 7.792940796616036e-05']
['59866.40500568339 0.03350291875075572 6.688658482998404e-05 0.014744476186622715 4.014284821104049e-05 0.0005214791707559432 1.4197628272388316e-06 0.014744476186622715 4.014284821104049e-05 0.018758442564133004 7.800809889180282e-05']
['59866.40503722135 0.03340403427063531 6.677642673417495e-05 0.014691420797614629 4.009467469729308e-05 0.0005196027202185431 1.4180590377190524e-06 0.014691420797614629 4.009467469729308e-05 0.01871261347302068 7.78888573960768e-05']
['59866.40506875932 0.033510542983811197 6.690752252161205e-05 0.014755467072906682 4.0145039078228334e-05 0.0005218678938406219 1.4198403133149656e-06 0.014755467072906684 4.0145039078228334e-05 0.018755075910904515 7.802717944775721e-05']
['59866.40510029728 0.03341682617225765 6.683409623030121e-05 0.014692879900064367 4.0110536446579954e-05 0.0005196543254112883 1.418620032342406e-06 0.01469287990006437 4.0110536446579954e-05 0.01872394627219328 7.794646594268133e-05']
['59866.40513183524 0.03334443360123194 6.676323603831422e-05 0.014668750894587655 4.011249357715972e-05 0.0005188009364127305 1.4186892516770827e-06 0.014668750894587655 4.011249357715972e-05 0.018675682706644284 7.78867243327471e-05']
['59866.40516337321 0.033373997504524425 6.680175259547304e-05 0.014674214135813915 4.011765778912736e-05 0.0005189941590452778 1.418871898313044e-06 0.014674214135813915 4.011765778912736e-05 0.01869978336871051 7.792240124837222e-05']
['59866.40519491117 0.0334005471545021 6.67781753787461e-05 0.014593030384956402 4.0057666485128486e-05 0.0005161228712124524 1.4167501399632772e-06 0.014593030384956402 4.0057666485128486e-05 0.0188075167695457 7.787131276117257e-05']
['59866.40522644913 0.033566424076550895 6.692633871915486e-05 0.014704454986913142 4.012382452934339e-05 0.0005200637103643329 1.4190900021326314e-06 0.014704454986913142 4.012382452934339e-05 0.018861969089637755 7.803240422550484e-05']
['59866.40525798709 0.0335673095852211 6.692653103926518e-05 0.014638401622800116 4.009153576588373e-05 0.0005177275504962358 1.4179480207302027e-06 0.014638401622800118 4.009153576588373e-05 0.018928907962420978 7.801597142263153e-05']
['59866.40528952506 0.033500373444145 6.687227993801017e-05 0.014641799458029757 4.009712815973378e-05 0.0005178477243345934 1.4181458112024143e-06 0.014641799458029759 4.009712815973378e-05 0.01885857398611524 7.797231246260248e-05']
['59866.40532106302 0.03343712542611032 6.684864790105492e-05 0.014663659749343935 4.010392101058863e-05 0.0005186208739835001 1.418386059156022e-06 0.014663659749343935 4.010392101058863e-05 0.018773465676766382 7.795553993541926e-05']
['59866.40535260098 0.03350449012701675 6.689175859833495e-05 0.01465139488425625 4.009643250046902e-05 0.0005181870931157089 1.4181212072889267e-06 0.01465139488425625 4.009643250046902e-05 0.0188530952427605 7.798866114790397e-05']
['59866.40538413895 0.03360253951245884 6.693635867246466e-05 0.014626109337306799 4.0086247905401525e-05 0.0005172927998299783 1.4177610009226196e-06 0.014626109337306797 4.0086247905401525e-05 0.01897643017515204 7.802168534107773e-05']
['59866.40541567691 0.0334014331951434 6.680861946744262e-05 0.014706298027263157 4.013276003427208e-05 0.0005201288945825601 1.419406030972281e-06 0.014706298027263157 4.013276003427208e-05 0.018695135167880246 7.793606394419736e-05']
['59866.40544721487 0.033440083472415456 6.682815318836635e-05 0.014767353993926636 4.015540685287989e-05 0.0005222883076713927 1.4202069983337784e-06 0.014767353993926636 4.015540685287989e-05 0.01867272947848882 7.79644711268413e-05']
['59866.40547875284 0.033481588622121555 6.688659315231722e-05 0.014682149724336657 4.0106624875779686e-05 0.0005192748230763305 1.4184816888250466e-06 0.014682149724336655 4.0106624875779686e-05 0.0187994388977849 7.798947174106334e-05']
['59866.405510290795 0.033365265141130786 6.678577241421404e-05 0.014669595078195145 4.011325004776092e-05 0.000518830793300288 1.418716006351635e-06 0.014669595078195145 4.011325004776092e-05 0.01869567006293564 7.790643250950068e-05']
['59866.40554182876 0.033511954360414827 6.690157322489275e-05 0.014646523628516879 4.00972048114382e-05 0.0005180148076868231 1.4181485222018931e-06 0.014646523628516877 4.00972048114382e-05 0.018865430731897948 7.799747645697333e-05']
['59866.40557336673 0.033433854129765905 6.68325422214427e-05 0.014686265612470892 4.010220293862111e-05 0.0005194203928411699 1.4183252947901959e-06 0.014686265612470894 4.010220293862111e-05 0.01874758851729501 7.794084539130476e-05']
['59866.405604904685 0.033429058362260046 6.681623590210058e-05 0.01465523221258721 4.009510243376747e-05 0.0005183228108428509 1.4180741658022169e-06 0.01465523221258721 4.009510243376747e-05 0.018773826149672837 7.792320975999038e-05']
['59866.40563644265 0.033507072953818495 6.690703023713371e-05 0.014687525133879633 4.013272310924716e-05 0.0005194649392985324 1.4194047250166722e-06 0.014687525133879635 4.013272310924716e-05 0.01881954781993886 7.802042142488224e-05']
['59866.405667980616 0.033648830858742575 6.698748344059452e-05 0.014710183961448861 4.011604465405629e-05 0.0005202663313901567 1.4188148453307247e-06 0.01471018396144886 4.011604465405629e-05 0.018938646897293715 7.808085537691146e-05']
['59866.405699518575 0.033506362866925724 6.686621985545945e-05 0.01462929700651224 4.0068401345752324e-05 0.0005174055405657534 1.417129807992541e-06 0.014629297006512238 4.0068401345752324e-05 0.018877065860413485 7.795234534100257e-05']
['59866.40573105654 0.03341526755074915 6.682328067730209e-05 0.014653386951506307 4.00804754536619e-05 0.0005182575480823351 1.4175568422052595e-06 0.014653386951506307 4.00804754536619e-05 0.018761880599242844 7.792172580910339e-05']
['59866.4057625945 0.03360536594454219 6.693400942602247e-05 0.01471616565719288 4.0114089158973914e-05 0.0005204778906003194 1.4187456838399353e-06 0.014716165657192878 4.0114089158973914e-05 0.018889200287349313 7.803397828444333e-05']
['59866.405794132465 0.03349637643529538 6.68892404275101e-05 0.014655138507220175 4.0083326942689436e-05 0.0005183194966934381 1.4176576929994606e-06 0.014655138507220177 4.0083326942689436e-05 0.0188412379280752 7.797976393759976e-05']
['59866.40582567043 0.03341462550099769 6.680917193309701e-05 0.014630571902606571 4.008951738022631e-05 0.0005174506307913849 1.4178766349403262e-06 0.014630571902606571 4.008951738022631e-05 0.01878405359839112 7.791427891064375e-05']
['59866.40585720839 0.03346688915952414 6.686321384528523e-05 0.014650997315566839 4.0101965098863674e-05 0.0005181730319996781 1.4183168829295158e-06 0.014650997315566837 4.0101965098863674e-05 0.0188158918439573 7.796702489200689e-05']
['59866.405888746354 0.03353321745125355 6.691254316688702e-05 0.0147453696109913 4.014897600354902e-05 0.0005215107691791741 1.419979553565048e-06 0.014745369610991302 4.014897600354902e-05 0.018787847840262252 7.803351015553558e-05']
['59866.40592028432 0.033414594327455006 6.68248547679017e-05 0.014645577375701269 4.007754680727734e-05 0.0005179813408394856 1.417453262527777e-06 0.014645577375701267 4.007754680727734e-05 0.018769016951753738 7.792156936844035e-05']
['59866.40595182228 0.03366861977265725 6.69983174688364e-05 0.014721916099741031 4.012286640751247e-05 0.0005206812709017648 1.4190561155047482e-06 0.014721916099741031 4.012286640751247e-05 0.018946703672916218 7.809365500736971e-05']
['59866.405983360244 0.033391917130799934 6.679469262877261e-05 0.014659213327372257 4.011195823834623e-05 0.0005184636139755301 1.4186703179396616e-06 0.014659213327372257 4.011195823834623e-05 0.018732703803427675 7.791341448741059e-05']
['59866.4060148982 0.03344848315347301 6.687496645029239e-05 0.014738494179114676 4.01306540281314e-05 0.0005212676005193837 1.419331546241732e-06 0.014738494179114674 4.01306540281314e-05 0.01870998897435834 7.799186195016319e-05']
['59866.40604643617 0.0334668666962075 6.68623606356451e-05 0.014687486290155686 4.0127041127563734e-05 0.000519463565482827 1.4192037660230111e-06 0.014687486290155687 4.0127041127563734e-05 0.018779380406051812 7.797919401625188e-05']
['59866.406077974134 0.03352402994056148 6.688667268217493e-05 0.01465422039043114 4.0093440513931346e-05 0.0005182870249544801 1.4180153874117855e-06 0.01465422039043114 4.0093440513931346e-05 0.01886980955013034 7.798276062525972e-05']
['59866.40610951209 0.033541622733819804 6.689644574065331e-05 0.014725733751155245 4.0119028558382127e-05 0.0005208162927003367 1.4189203793580959e-06 0.014725733751155243 4.0119028558382127e-05 0.01881588898266456 7.800430055580559e-05']
['59866.40614105006 0.033467903277785496 6.687954631765929e-05 0.014731471032329574 4.014133166788768e-05 0.000521019207513404 1.4197091904967912e-06 0.014731471032329573 4.014133166788768e-05 0.018736432245455924 7.800128347487172e-05']
['59866.406172588024 0.03355286913456277 6.693405540464672e-05 0.014651901779768613 4.0082790898017325e-05 0.0005182050208771364 1.4176387342973974e-06 0.014651901779768613 4.0082790898017325e-05 0.018900967354794157 7.80179331890207e-05']
['59866.40620412598 0.03352920837339193 6.690451206794643e-05 0.014633718323916604 4.00769898769761e-05 0.0005175619126812829 1.4174335651476883e-06 0.014633718323916604 4.00769898769761e-05 0.018895490049475328 7.798960733744744e-05']
['59866.40623566395 0.03342084112131389 6.682009877786292e-05 0.01466689779233324 4.011937878748276e-05 0.0005187353963274316 1.4189327661786693e-06 0.014666897792333239 4.011937878748276e-05 0.01875394332898065 7.793901561462578e-05']
['59866.406267201906 0.03350481848112127 6.691157427834974e-05 0.014652110982116485 4.009313456676847e-05 0.0005182124198966409 1.4180045667443862e-06 0.014652110982116485 4.009313456676847e-05 0.018852707499004782 7.800396279546392e-05']
['59866.40629873987 0.03348288815877708 6.688160307662435e-05 0.014694053718694419 4.013033328382351e-05 0.000519695840752903 1.4193202022323832e-06 0.014694053718694419 4.013033328382351e-05 0.01878883444008266 7.79973876458044e-05']
['59866.40633027784 0.033584902713172604 6.695852604247383e-05 0.01464158763196899 4.0093899558442706e-05 0.0005178402325202275 1.4180316227902482e-06 0.014641587631968992 4.0093899558442706e-05 0.018943315081203612 7.80446346111194e-05']
['59866.406361815796 0.03358603728091268 6.693349234549553e-05 0.014781433911793835 4.0168847147087437e-05 0.000522786282899591 1.4206823515026097e-06 0.014781433911793835 4.0168847147087437e-05 0.018804603369118846 7.806169789782042e-05']
['59866.40639335376 0.03358976668770368 6.693926172041607e-05 0.014655936171546115 4.0085218513003095e-05 0.0005183477082979717 1.4177245936140438e-06 0.014655936171546115 4.0085218513003095e-05 0.018933830516157563 7.802364707516284e-05']
['59866.40642489173 0.03354454175520479 6.690701756002275e-05 0.014699550860754878 4.0112332643717426e-05 0.0005198902623821919 1.418683559820894e-06 0.014699550860754876 4.0112332643717426e-05 0.018844990894449916 7.800992391290631e-05']
['59866.406456429686 0.03349311630681969 6.688615446499254e-05 0.014673904015143556 4.0099349893906936e-05 0.000518983190770246 1.4182243889748352e-06 0.014673904015143556 4.0099349893906936e-05 0.018819212291676136 7.798535452909614e-05']
['59866.40648796765 0.03345270912386102 6.685603669576265e-05 0.014613836909381875 4.0068599394855605e-05 0.000516858751481536 1.4171368125467103e-06 0.014613836909381875 4.0068599394855605e-05 0.01883887221447915 7.794371238355653e-05']
['59866.40651950561 0.03358529698570772 6.694051263640813e-05 0.014788163090749007 4.015844935756632e-05 0.0005230242789204056 1.4203146049249397e-06 0.014788163090749007 4.015844935756632e-05 0.018797133894958712 7.806236792994007e-05']
['59866.406551043576 0.03345613702865619 6.684797606368298e-05 0.014612144434812931 4.006583504574889e-05 0.0005167988924384905 1.4170390436967623e-06 0.01461214443481293 4.006583504574889e-05 0.018843992593843263 7.79353773438218e-05']
['59866.40658258154 0.03362559613299874 6.697669264686516e-05 0.014696485407163897 4.01083364901415e-05 0.0005197818441395645 1.418542224799791e-06 0.014696485407163897 4.01083364901415e-05 0.018929110725834843 7.806763743010966e-05']
['59866.4066141195 0.033499450221506744 6.68757968803245e-05 0.01471391736705301 4.0144510451166084e-05 0.0005203983736027049 1.4198216169571858e-06 0.014713917367053008 4.0144510451166084e-05 0.018785532854453738 7.7999704664455e-05']
['59866.406645657466 0.03352018916707993 6.690382830089718e-05 0.014682035820353394 4.0105994213630676e-05 0.000519270794547003 1.4184593837142832e-06 0.014682035820353396 4.0105994213630676e-05 0.018838153346726536 7.80039294726856e-05']
['59866.40667719543 0.03352229731004943 6.691058378160701e-05 0.014640326178139552 4.008742406633315e-05 0.0005177956177174636 1.4178025991062063e-06 0.014640326178139552 4.008742406633315e-05 0.018881971131909876 7.800017814254963e-05']
['59866.40670873339 0.03352597657017305 6.689876100778544e-05 0.01473572312239463 4.01274602765977e-05 0.000521169594436143 1.4192185903875997e-06 0.01473572312239463 4.01274602765977e-05 0.01879025344777842 7.801062294730583e-05']
['59866.406740271355 0.03334756413000691 6.677897786139882e-05 0.014658408966144768 4.0094647100326745e-05 0.0005184351655165554 1.418058061676029e-06 0.014658408966144768 4.0094647100326745e-05 0.018689155163862145 7.789103035852673e-05']
['59866.406771809314 0.03342121108117182 6.680343972012735e-05 0.014680854994172578 4.0113023742361715e-05 0.0005192290313639786 1.418708002435428e-06 0.014680854994172576 4.0113023742361715e-05 0.01874035608699924 7.792146194852842e-05']
['59866.40680334728 0.03355536105846593 6.694615122234712e-05 0.014721044257205705 4.013657383704233e-05 0.0005206504357797438 1.4195409166529172e-06 0.014721044257205707 4.013657383704233e-05 0.018834316801260225 7.80559525139609e-05']
['59866.406834885245 0.03340479215380691 6.683101350240442e-05 0.014734099736923766 4.0136820407279475e-05 0.0005211121789200915 1.419549637291153e-06 0.014734099736923764 4.0136820407279475e-05 0.018670692416883142 7.795735191862772e-05']
['59866.4068664232 0.03351709470316354 6.690020117861564e-05 0.014690282216759155 4.011677490506261e-05 0.0005195624511582634 1.4188406726768033e-06 0.014690282216759155 4.011677490506261e-05 0.018826812486404384 7.800636221823644e-05']
['59866.40689796117 0.033432719172002995 6.683100312151829e-05 0.014662639835625694 4.0112988813520415e-05 0.0005185848019146589 1.4187067670803724e-06 0.014662639835625695 4.0112988813520415e-05 0.0187700793363773 7.794507585333406e-05']
['59866.406929499135 0.03349102607391267 6.684896151129206e-05 0.014639700305738306 4.009052923296942e-05 0.0005177734820093741 1.417912421910492e-06 0.014639700305738308 4.009052923296942e-05 0.01885132576817436 7.794892038583846e-05']
['59866.40696103709 0.03357196444563872 6.690536605459248e-05 0.014756309336949321 4.0151129335641706e-05 0.0005218976828374607 1.4200557121087523e-06 0.014756309336949323 4.0151129335641706e-05 0.0188156551086894 7.802846399761079e-05']
['59866.40699257506 0.03341549128647362 6.683275123975214e-05 0.01466427254253728 4.0108825485286026e-05 0.0005186425471092365 1.418559519465213e-06 0.014664272542537281 4.0108825485286026e-05 0.01875121874393634 7.794443225839624e-05']
['59866.40702411302 0.03342102097760963 6.68449151381789e-05 0.014671606585192593 4.0108549165236854e-05 0.0005189019358073342 1.4185497466426129e-06 0.01467160658519259 4.0108549165236854e-05 0.018749414392417035 7.7954720164789e-05']
['59866.40705565098 0.03346893074343785 6.683317385708692e-05 0.014665264490172004 4.00884425329576e-05 0.0005186776300802042 1.417838619994574e-06 0.014665264490172004 4.00884425329576e-05 0.018803666253265842 7.793430793001148e-05']
['59866.40708718895 0.03344757802181081 6.684401957843719e-05 0.014658507042007201 4.009485690508894e-05 0.0005184386342406229 1.4180654820015816e-06 0.0146585070420072 4.009485690508894e-05 0.01878907097980361 7.794690823658147e-05']
['59866.40711872691 0.03338303088519081 6.678555072980547e-05 0.01464908260510813 4.01083818114617e-05 0.0005181053129698797 1.4185438277135993e-06 0.014649082605108131 4.01083818114617e-05 0.01873394828008268 7.790373596829239e-05']
['59866.40715026487 0.03353931433784225 6.68998817774922e-05 0.014745941363464278 4.0145405005914645e-05 0.0005215309907863517 1.41985325535943e-06 0.014745941363464278 4.0145405005914645e-05 0.01879337297437797 7.802081597196576e-05']
['59866.40718180284 0.033466565769087964 6.684170225588004e-05 0.01466418423018876 4.0094420848135074e-05 0.0005186394236988359 1.4180500596416533e-06 0.014664184230188762 4.0094420848135074e-05 0.018802381538899203 7.794469669971837e-05']
['59866.4072133408 0.03337382491619933 6.680171320506029e-05 0.014589932446197025 4.006467600907313e-05 0.0005160133040420188 1.4169980511598353e-06 0.014589932446197024 4.006467600907313e-05 0.018783892470002304 7.789510351006106e-05']
['59866.40724487876 0.033585253229556564 6.694518626205721e-05 0.014742218702518005 4.012012766924162e-05 0.0005213993285883397 1.418959252452828e-06 0.014742218702518007 4.012012766924162e-05 0.018843034527038557 7.804666942194126e-05']
['59866.40727641672 0.033454999868931024 6.685601347471827e-05 0.014683217067711609 4.009997499162097e-05 0.0005193125726261306 1.4182464972839693e-06 0.01468321706771161 4.009997499162097e-05 0.01877178280121941 7.79598263983466e-05']
['59866.40730795469 0.03344708794956404 6.681705673103664e-05 0.014750461586992608 4.0148565365466475e-05 0.0005216908609904438 1.4199650302137904e-06 0.014750461586992608 4.0148565365466475e-05 0.018696626362571432 7.795143597845843e-05']
['59866.40733949265 0.03347392331944988 6.686748075833883e-05 0.014628714718937267 4.006261085392101e-05 0.0005173849463555628 1.416925011237455e-06 0.014628714718937267 4.006261085392101e-05 0.018845208600512614 7.795045074532618e-05']
['59866.40737103061 0.03360499974625327 6.69446294830887e-05 0.01466303758517144 4.009775627739931e-05 0.000518598869427174 1.4181680263204837e-06 0.014663037585171441 4.009775627739931e-05 0.018941962161081828 7.803469404764617e-05']
['59866.40740256858 0.03348247394242507 6.686776310153916e-05 0.014710874550452117 4.012045500083492e-05 0.0005202907559798262 1.4189708294397397e-06 0.014710874550452117 4.012045500083492e-05 0.01877159939197295 7.798043762173678e-05']
['59866.40743410654 0.033437004037854545 6.684543451937725e-05 0.014643905337934398 4.008529054976532e-05 0.0005179222046004559 1.417727141393331e-06 0.014643905337934398 4.008529054976532e-05 0.018793098699920147 7.794320133625162e-05']
['59866.4074656445 0.03347667945737673 6.688143173858466e-05 0.014732482648669623 4.01306959767706e-05 0.0005210549861225221 1.4193330298713506e-06 0.014732482648669625 4.01306959767706e-05 0.018744196808707106 7.79974273356689e-05']
['59866.40749718247 0.03351313884367268 6.688458690382969e-05 0.014697183137632675 4.011496406018455e-05 0.0005198065213069094 1.4187766271404665e-06 0.014697183137632675 4.011496406018455e-05 0.018815955706040003 7.799204002233718e-05']
['59866.407528720425 0.03351821991890416 6.690480829504249e-05 0.0146791976261845 4.01199241604341e-05 0.0005191704139622398 1.4189520548011212e-06 0.0146791976261845 4.01199241604341e-05 0.018839022292719665 7.801193298230323e-05']
['59866.40756025839 0.03345983148236096 6.687166830589344e-05 0.014621992194455657 4.0075595015034245e-05 0.0005171471856886062 1.4173842319981377e-06 0.014621992194455657 4.0075595015034245e-05 0.018837839287905302 7.796071663230445e-05']
['59866.40759179636 0.03353315989357502 6.691316050045573e-05 0.014668399565823642 4.0100540568394835e-05 0.0005187885106995209 1.4182665004704712e-06 0.014668399565823642 4.0100540568394835e-05 0.018864760327751376 7.80091302479218e-05']
['59866.407623334315 0.03356929403616618 6.691989876386753e-05 0.014709648605708576 4.012259213492085e-05 0.0005202473970540725 1.4190464150961457e-06 0.014709648605708578 4.012259213492085e-05 0.0188596454304576 7.802624718767071e-05']
['59866.40765487228 0.033564560510172925 6.695629705809937e-05 0.014777975366806856 4.016023186446602e-05 0.0005226639618927947 1.4203776482103136e-06 0.014777975366806856 4.016023186446602e-05 0.01878658514336607 7.807682075456273e-05']
['59866.407686410246 0.033453419159605126 6.684407723025129e-05 0.014712561865039917 4.0123688158252925e-05 0.0005203504325258706 1.419085178991933e-06 0.014712561865039919 4.0123688158252925e-05 0.018740857294565205 7.796179200213733e-05']
['59866.407717948205 0.03335149200213338 6.677582033609316e-05 0.014657745407996142 4.009372483958122e-05 0.0005184116969478036 1.418025443374591e-06 0.014657745407996142 4.009372483958122e-05 0.018693746594137237 7.788784855848983e-05']
['59866.40774948617 0.03350993603060292 6.688448457788607e-05 0.014761012646049647 4.014141191810005e-05 0.000522064028369062 1.419712028767454e-06 0.014761012646049647 4.014141191810005e-05 0.018748923384553272 7.800555895593637e-05']
['59866.40778102413 0.03349081456634267 6.689187198700981e-05 0.0146617962682825 4.008921994936718e-05 0.0005185549668229922 1.4178661154755576e-06 0.0146617962682825 4.008921994936718e-05 0.01882901829806017 7.798505045247613e-05']
['59866.407812562094 0.033469367340232564 6.68592556419217e-05 0.014641607928559385 4.008928903480686e-05 0.0005178409503652694 1.417868558873162e-06 0.014641607928559385 4.008928903480686e-05 0.01882775941167318 7.795711103105428e-05']
['59866.40784410006 0.03351582278455509 6.690732643392826e-05 0.014661959681572443 4.0105759781184314e-05 0.0005185607463858502 1.418451092362581e-06 0.014661959681572441 4.0105759781184314e-05 0.01885386310298265 7.800680930638232e-05']
['59866.40787563802 0.033598781193834804 6.69451268011587e-05 0.014775023383438148 4.015619171913825e-05 0.000522559556838338 1.4202347572992639e-06 0.014775023383438148 4.015619171913825e-05 0.018823757810396656 7.806516339448348e-05']
['59866.407907175984 0.03353669451903233 6.690510432894931e-05 0.014709917908282378 4.0121456470648306e-05 0.000520256921684252 1.419006249188886e-06 0.014709917908282378 4.0121456470648306e-05 0.018826776610749954 7.801297491182936e-05']
['59866.40793871395 0.033583946921568714 6.696601307369475e-05 0.014684335264174047 4.011980528967704e-05 0.000519352120735985 1.4189478506081045e-06 0.014684335264174047 4.011980528967704e-05 0.018899611657394667 7.806436884691922e-05']
['59866.40797025191 0.0334558412560438 6.686401885056087e-05 0.014716428831437707 4.0114222299900766e-05 0.0005204871984851991 1.4187503927369656e-06 0.014716428831437707 4.0114222299900766e-05 0.01873941242460609 7.797402033737914e-05']
['59866.408001789874 0.033598472483405646 6.697229917241162e-05 0.014657317955593063 4.0100700252336957e-05 0.0005183965789116065 1.4182721481346315e-06 0.01465731795559306 4.0100700252336957e-05 0.018941154527812587 7.805994502410813e-05']
['59866.40803332783 0.033405796431940124 6.67948645669646e-05 0.01466061311413879 4.009882725546489e-05 0.000518513121305123 1.4182059044211681e-06 0.01466061311413879 4.009882725546489e-05 0.018745183317801332 7.790680252572785e-05']
['59866.4080648658 0.03352726204899588 6.689995724159278e-05 0.014670253194765535 4.009346712145806e-05 0.0005188540694125788 1.418016328460541e-06 0.014670253194765535 4.009346712145806e-05 0.018857008854230344 7.799416891503096e-05']
['59866.408096403764 0.03352264441438644 6.688449135523344e-05 0.014739043476410585 4.015137505272979e-05 0.0005212870279371329 1.4200644025730123e-06 0.014739043476410587 4.015137505272979e-05 0.018783600937975854 7.801069223172724e-05']
['59866.40812794172 0.03350827026843652 6.687722324691855e-05 0.014682761794864331 4.01028096997665e-05 0.0005192964706429973 1.418346754575877e-06 0.014682761794864331 4.01028096997665e-05 0.018825508473572193 7.797947380582835e-05']
['59866.40815947969 0.03336873338911676 6.678941339533302e-05 0.01462675007895497 4.00753902516657e-05 0.0005173154614301009 1.4173769899754114e-06 0.01462675007895497 4.00753902516657e-05 0.01874198331016179 7.789006769489928e-05']
['59866.408191017654 0.03361296629169878 6.697424810422067e-05 0.014691728773525944 4.011377524632358e-05 0.0005196136126382406 1.4187345814510466e-06 0.014691728773525944 4.011377524632358e-05 0.01892123751817283 7.806833464112237e-05']
['59866.40822255561 0.033573722073366855 6.695349180420369e-05 0.014783998006483827 4.017853325541408e-05 0.0005228769691983617 1.4210249275069451e-06 0.014783998006483827 4.017853325541408e-05 0.018789724066883028 7.808383058823373e-05']
['59866.40825409358 0.03345912649811441 6.68461691572371e-05 0.014679180360148812 4.010430383907161e-05 0.0005191698033011449 1.418399598943894e-06 0.014679180360148812 4.010430383907161e-05 0.018779946137965596 7.795361131733751e-05']
['59866.408285631536 0.033607197146299124 6.694928762307827e-05 0.014728725869479943 4.0133029436211976e-05 0.0005209221172384905 1.4194155591168172e-06 0.014728725869479943 4.0133029436211976e-05 0.01887847127681918 7.805682010539192e-05']
['59866.4083171695 0.03341103875465439 6.681087163347398e-05 0.014749184965942738 4.012253979031036e-05 0.0005216457097569899 1.4190445637842558e-06 0.014749184965942736 4.012253979031036e-05 0.018661853788711658 7.79327323250608e-05']
['59866.40834870747 0.03346682640271937 6.687419065579367e-05 0.014686638790398594 4.012219362464232e-05 0.000519433591310469 1.419032320678212e-06 0.014686638790398592 4.012219362464232e-05 0.018780187612320778 7.798684374380546e-05']
['59866.408380245426 0.03346772225248228 6.685752905052325e-05 0.014733818531658805 4.0133987426948234e-05 0.0005211022333183266 1.4194494411081754e-06 0.014733818531658803 4.0133987426948234e-05 0.01873390372082348 7.797862615824928e-05']
['59866.40841178339 0.0334671430038706 6.685396937913787e-05 0.014702947539153775 4.012524311822745e-05 0.0005200103953060315 1.419140174451101e-06 0.014702947539153775 4.012524311822745e-05 0.01876419546471683 7.797107384821349e-05']
['59866.40844332136 0.03343978333546965 6.685249796188729e-05 0.014685122885061845 4.010620876037635e-05 0.0005193799771265573 1.4184669717531938e-06 0.014685122885061845 4.010620876037635e-05 0.018754660450407808 7.796001837400394e-05']
['59866.408474859316 0.03350446468399743 6.687664240044665e-05 0.014701875826518147 4.010864039274833e-05 0.0005199724912252461 1.4185529731558122e-06 0.014701875826518147 4.010864039274833e-05 0.018802588857479284 7.798197441019317e-05']
['59866.40850639728 0.033575491085354056 6.695214295914733e-05 0.014717634045727568 4.014401180450922e-05 0.0005205298242211362 1.4198039809393422e-06 0.01471763404572757 4.014401180450922e-05 0.01885785703962649 7.806491613127294e-05']
['59866.40853793524 0.033470895179034156 6.684953952636756e-05 0.014656252034918861 4.009958194179111e-05 0.0005183588796795526 1.418232595989902e-06 0.014656252034918863 4.009958194179111e-05 0.018814643144115295 7.795407241955868e-05']
['59866.408569473206 0.03347021267943853 6.68517857444366e-05 0.014668334097893714 4.008673931015875e-05 0.0005187861952451516 1.4177783808106577e-06 0.014668334097893714 4.008673931015875e-05 0.01880187858154482 7.79493933635194e-05']
['59866.40860101117 0.033478516245326655 6.68674152719884e-05 0.014639116670648366 4.0091885272738585e-05 0.0005177528401405905 1.417960382006557e-06 0.014639116670648366 4.0091885272738585e-05 0.01883939957467829 7.79654442036918e-05']
['59866.40863254913 0.0333566639129819 6.676599752521296e-05 0.014714342704814178 4.013418707346519e-05 0.0005204134168487435 1.4194565021592965e-06 0.014714342704814178 4.013418707346519e-05 0.018642321208167723 7.790026570933275e-05']
['59866.408664087096 0.033522997541914304 6.691752789103752e-05 0.014651665110350296 4.008762723651755e-05 0.0005181966504087355 1.41780978478157e-06 0.014651665110350296 4.008762723651755e-05 0.018871332431564008 7.800623947160745e-05']
['59866.40869562506 0.033488163242184246 6.68722021748528e-05 0.014739071389563365 4.013279996104633e-05 0.0005212880151629645 1.419407443093055e-06 0.014739071389563365 4.013279996104633e-05 0.01874909185262088 7.799059594866389e-05']
['59866.40872716302 0.03352177251419302 6.687512472694805e-05 0.01475185197655893 4.013927361955437e-05 0.0005217400359620668 1.4196364019267093e-06 0.01475185197655893 4.013927361955437e-05 0.01876992053763409 7.799643321300219e-05']
['59866.408758700985 0.03347244885244927 6.683385694004466e-05 0.014722878524660726 4.013904254217645e-05 0.0005207153097202814 1.4196282292362798e-06 0.014722878524660728 4.013904254217645e-05 0.018749570327788546 7.796093361219454e-05']
['59866.408790238944 0.033472366093879456 6.687584572736389e-05 0.01466421543393588 4.0109388519061424e-05 0.0005186405273056351 1.4185794327115426e-06 0.014664215433935878 4.0109388519061424e-05 0.018808150659943578 7.798167598303585e-05']
['59866.40882177691 0.0336264242300077 6.696501882608745e-05 0.014758080607864155 4.015673662904771e-05 0.0005219603287311608 1.4202540295449594e-06 0.014758080607864155 4.015673662904771e-05 0.018868343622143548 7.808250279718849e-05']
['59866.408853314875 0.033549497584530505 6.691366863971157e-05 0.014763148660312132 4.013341072342075e-05 0.0005221395744198151 1.419429044393265e-06 0.01476314866031213 4.013341072342075e-05 0.018786348924218377 7.802646799080362e-05']
['59866.40888485283 0.0335405512804383 6.692698800649331e-05 0.014756402299226009 4.015275597349117e-05 0.0005219009707054286 1.4201132426541662e-06 0.014756402299226009 4.015275597349117e-05 0.018784148981212292 7.804784132753468e-05']
['59866.4089163908 0.03341459859365865 6.684106624635106e-05 0.014702649806368559 4.0128075731530557e-05 0.000519999865162812 1.419240357653114e-06 0.014702649806368559 4.0128075731530557e-05 0.018711948787290086 7.796146868078194e-05']
['59866.408947928765 0.03341308724439698 6.67982389647756e-05 0.014666310095490558 4.011161088675262e-05 0.0005187146108035311 1.4186580328900805e-06 0.014666310095490558 4.011161088675262e-05 0.018746777148906425 7.791627594235698e-05']
['59866.40897946672 0.033545252996835105 6.691822012500336e-05 0.01470841149794327 4.011999466954245e-05 0.0005202036433171867 1.4189545485507052e-06 0.014708411497943271 4.011999466954245e-05 0.018836841498891834 7.802347183368937e-05']
['59866.40901100469 0.03342468331291517 6.682392535669891e-05 0.014641897872790405 4.009258411083336e-05 0.0005178512050447334 1.417985098348158e-06 0.014641897872790405 4.009258411083336e-05 0.018782785440124766 7.792850762565594e-05']
['59866.40904254265 0.03341319194450527 6.682030597377762e-05 0.014674658256426576 4.011330133415885e-05 0.0005190098665987964 1.4187178202369114e-06 0.014674658256426575 4.011330133415885e-05 0.018738533688078693 7.79360650427919e-05']
['59866.40907408061 0.0334679396494942 6.684708956309813e-05 0.0146432336670242 4.008351854337612e-05 0.0005178984491014583 1.4176644694875462e-06 0.0146432336670242 4.008351854337612e-05 0.01882470598247 7.794370944389315e-05']
['59866.40910561858 0.033421027813611594 6.685266402577029e-05 0.014744634250605486 4.01426678961869e-05 0.0005214847611257616 1.4197564499054401e-06 0.014744634250605487 4.01426678961869e-05 0.018676393563006106 7.797892326241799e-05']
['59866.40913715654 0.03339117954315484 6.677490530405608e-05 0.014645668157023665 4.007963418913597e-05 0.0005179845515719745 1.4175270885590928e-06 0.014645668157023665 4.007963418913597e-05 0.018745511386131175 7.787981160159938e-05']
['59866.4091686945 0.03357932633007215 6.719174988222713e-05 0.014799296907117804 4.03518786553476e-05 0.0005234180571227549 1.427155766898425e-06 0.014799296907117804 4.03518786553476e-05 0.018780029422954345 7.837732684425813e-05']
['59866.40920023247 0.033554044364758805 6.71598218653484e-05 0.01463305565461455 4.0248894473162136e-05 0.0005175384755490481 1.4235134465306268e-06 0.01463305565461455 4.0248894473162136e-05 0.018920988710144256 7.82969678806087e-05']
['59866.40923177043 0.033543677286209155 6.717581300154825e-05 0.014733815819237528 4.030091717486398e-05 0.000521102137386048 1.4253533732259254e-06 0.014733815819237528 4.030091717486398e-05 0.018809861466971625 7.833743535216242e-05']
['59866.40926330839 0.03348740813294522 6.710108108081769e-05 0.014719490343946224 4.0294952180933856e-05 0.0005205954773405476 1.4251424047215937e-06 0.014719490343946224 4.0294952180933856e-05 0.018767917788998997 7.827028972399563e-05']
['59866.40929484635 0.03351600166463609 6.711779760689503e-05 0.014729704202039392 4.0304309168298444e-05 0.0005209567186746735 1.4254733404530432e-06 0.01472970420203939 4.0304309168298444e-05 0.018786297462596704 7.828943794110358e-05']
['59866.40932638432 0.03342898855463976 6.707922386079523e-05 0.014678732246371172 4.0279855684680005e-05 0.0005191539545183051 1.4246084753877785e-06 0.014678732246371172 4.0279855684680005e-05 0.018750256308268584 7.824377961055644e-05']
['59866.40935792228 0.03350316741439546 6.710013516442257e-05 0.014638161407895454 4.0240223828622806e-05 0.0005177190546319066 1.4232067852110208e-06 0.014638161407895454 4.0240223828622806e-05 0.01886500600650001 7.824131742795134e-05']
['59866.40938946024 0.033450328251530256 6.707794701654039e-05 0.014683251612793791 4.028145237315864e-05 0.0005193137944084836 1.4246649466908792e-06 0.014683251612793791 4.028145237315864e-05 0.018767076638736467 7.824350695901129e-05']
['59866.40942099821 0.03353338156864178 6.714010476423094e-05 0.014679054939505628 4.0272416502464445e-05 0.0005191653674532941 1.4243453681384078e-06 0.014679054939505626 4.0272416502464445e-05 0.018854326629136154 7.829215285518642e-05']
['59866.40945253617 0.03344549808812599 6.705633437686413e-05 0.014741565740961025 4.029720243659808e-05 0.0005213762347973524 1.425221991235412e-06 0.014741565740961023 4.029720243659808e-05 0.018703932347164966 7.823309085213224e-05']
['59866.40948407413 0.033526615169643365 6.710715397967786e-05 0.014698499434998935 4.027289256214246e-05 0.0005198530758030025 1.4243622053052885e-06 0.014698499434998933 4.027289256214246e-05 0.01882811573464443 7.826414243172964e-05']
['59866.4095156121 0.033442603668142244 6.705459429923409e-05 0.014713743395060097 4.0301847049185146e-05 0.0005203922206021202 1.4253862608025183e-06 0.014713743395060097 4.0301847049185146e-05 0.018728860273082147 7.823399192301765e-05']
['59866.409547150055 0.033538208697006563 6.714778288322624e-05 0.014746781619568066 4.031738972493576e-05 0.0005215607087668808 1.4259359705079816e-06 0.014746781619568066 4.031738972493576e-05 0.0187914270774385 7.83218785548792e-05']
['59866.40957868802 0.03359339447174401 6.720490752864731e-05 0.014667604060597823 4.027583525001774e-05 0.0005187603754575332 1.424466281598917e-06 0.014667604060597821 4.027583525001774e-05 0.01892579041114619 7.834948947517532e-05']
['59866.40961022599 0.0334637066543092 6.708632668472898e-05 0.01474162464660412 4.0316128344583975e-05 0.0005213783181583023 1.4258913583039582e-06 0.01474162464660412 4.0316128344583975e-05 0.01872208200770508 7.826854689303454e-05']
['59866.409641763945 0.03351575383902825 6.713897112619947e-05 0.014755709608466042 4.0309315231067815e-05 0.0005218764717813214 1.4256503937053041e-06 0.014755709608466042 4.0309315231067815e-05 0.01876004423056221 7.831016752812013e-05']
['59866.40967330191 0.03349996318369053 6.7121601832482e-05 0.014743014083728424 4.0292391483633644e-05 0.0005214274594441797 1.425051838580907e-06 0.014743014083728424 4.0292391483633644e-05 0.018756949099962103 7.828656490119261e-05']
['59866.409704839876 0.03346825806178238 6.707879318820138e-05 0.014648961459536418 4.026931228553237e-05 0.0005181010283217526 1.424235578923037e-06 0.014648961459536418 4.026931228553237e-05 0.01881929660224596 7.8237983150994e-05']
['59866.409736377835 0.03348950943515632 6.710664072714707e-05 0.014650766354206946 4.0254677935978843e-05 0.000518164863412547 1.423717994685175e-06 0.014650766354206946 4.0254677935978843e-05 0.018838743080949377 7.825433103293246e-05']
['59866.4097679158 0.03348777873457797 6.711745154715754e-05 0.014681235941803122 4.029194311971947e-05 0.0005192425046303032 1.425035980951297e-06 0.014681235941803122 4.029194311971947e-05 0.018806542792774848 7.82827757718628e-05']
['59866.40979945376 0.03350202673746618 6.708004479696634e-05 0.014778754449239302 4.032716055029874e-05 0.0005226915162972836 1.4262815427645605e-06 0.014778754449239302 4.032716055029874e-05 0.01872327228822688 7.82688462161835e-05']
['59866.409830991724 0.03354238570309991 6.717207791034473e-05 0.014707128571767689 4.028989456739275e-05 0.0005201582690855277 1.424963528233746e-06 0.014707128571767689 4.028989456739275e-05 0.018835257131332224 7.832856219186617e-05']
['59866.40986252969 0.033516106833665515 6.71432406167601e-05 0.014789893687009266 4.032799271677859e-05 0.0005230854862424759 1.4263109746331703e-06 0.014789893687009264 4.032799271677859e-05 0.01872621314665625 7.832344321520019e-05']
['59866.40989406765 0.03361643978696001 6.719409139275812e-05 0.014711200442793261 4.0290226279087416e-05 0.000520302282063606 1.4249752601350543e-06 0.014711200442793261 4.0290226279087416e-05 0.018905239344166748 7.834761165293041e-05']
['59866.409925605614 0.033531893322542305 6.713161597316622e-05 0.014703809630989623 4.02782986671638e-05 0.0005200408855676036 1.4245534071579595e-06 0.014703809630989622 4.02782986671638e-05 0.018828083691552686 7.828789949085309e-05']
['59866.40995714358 0.0334874716662112 6.70996172795096e-05 0.014658141250760854 4.026406564785113e-05 0.000518425697021735 1.4240500170737966e-06 0.014658141250760856 4.026406564785113e-05 0.018829330415450346 7.825313809395204e-05']
['59866.40998868154 0.03358128712208081 6.718426171623557e-05 0.0147282447250823 4.031284949942624e-05 0.0005209051002364402 1.4257753928785166e-06 0.0147282447250823 4.031284949942624e-05 0.01885304239699851 7.83508191221957e-05']
['59866.410020219504 0.033461641541638616 6.708111741397117e-05 0.014720146738071907 4.0315512684805026e-05 0.0005206186925338185 1.4258695837934952e-06 0.014720146738071907 4.0315512684805026e-05 0.01874149480356671 7.826376477365283e-05']
['59866.41005175746 0.03347306344832688 6.71178023150071e-05 0.014762344398944758 4.0322089708460256e-05 0.0005221111294926695 1.426102198421398e-06 0.014762344398944758 4.0322089708460256e-05 0.018710719049382124 7.829859708866749e-05']
['59866.41008329543 0.03357206179378108 6.71350257014641e-05 0.014776777142398556 4.033466313469619e-05 0.0005226215833733472 1.4265468924074092e-06 0.014776777142398556 4.033466313469619e-05 0.018795284651382527 7.831983609613637e-05']
['59866.410114833394 0.03343764178458468 6.705671685128804e-05 0.014722469995027875 4.030964246532499e-05 0.0005207008609401774 1.4256619672496549e-06 0.014722469995027875 4.030964246532499e-05 0.018715171789556805 7.823982713782124e-05']
['59866.41014637135 0.033398890310859165 6.705261313981954e-05 0.014638233344673323 4.0273369728275765e-05 0.0005177215988749706 1.42437908160502e-06 0.014638233344673325 4.0273369728275765e-05 0.01876065696618584 7.821762741319055e-05']
['59866.41017790932 0.03341943028596209 6.707362189549746e-05 0.014716863510820783 4.029777913752941e-05 0.0005205025721235273 1.4252423878585022e-06 0.014716863510820783 4.029777913752941e-05 0.018702566775141302 7.824820609826947e-05']
['59866.410209447284 0.033462217396322866 6.70963300020533e-05 0.014722037862751332 4.030266869748238e-05 0.0005206855773873148 1.4254153206665154e-06 0.014722037862751332 4.030266869748238e-05 0.018740179533571533 7.827018975244319e-05']
['59866.41024098524 0.033490598150300255 6.709789363326249e-05 0.014648459325334316 4.0252765112067846e-05 0.0005180832689572281 1.423650342378353e-06 0.014648459325334316 4.0252765112067846e-05 0.018842138824965937 7.824584608263824e-05']
['59866.41027252321 0.03349955296456816 6.713571258076233e-05 0.014710115951192704 4.0293137387907415e-05 0.0005202639260193904 1.4250782195480722e-06 0.014710115951192704 4.0293137387907415e-05 0.01878943701337546 7.829904740344874e-05']
['59866.410304061166 0.03346020723295623 6.707986678966218e-05 0.014691250635001638 4.0291634560413354e-05 0.0005195967019472127 1.4250250678982292e-06 0.01469125063500164 4.0291634560413354e-05 0.018768956597954592 7.825039516877035e-05']
['59866.41033559913 0.033608728856097135 6.719807553550388e-05 0.014723021162436192 4.0289004582265726e-05 0.0005207203544996229 1.4249320514488028e-06 0.014723021162436194 4.0289004582265726e-05 0.018885707693660943 7.835040041955825e-05']
['59866.4103671371 0.03346600389089734 6.710573178510013e-05 0.014617985995772735 4.025015479910325e-05 0.0005170054953945183 1.4235580214425013e-06 0.014617985995772733 4.025015479910325e-05 0.018848017895124608 7.825122490904262e-05']
['59866.410398675056 0.03337753131846804 6.702833606859057e-05 0.014677901296457636 4.028115210293583e-05 0.0005191245656769271 1.424654326804163e-06 0.014677901296457636 4.028115210293583e-05 0.018699630022010402 7.820082512904689e-05']
['59866.41043021302 0.033546791194744005 6.715989251580073e-05 0.014688962541888655 4.028436920702324e-05 0.0005195157772073936 1.42476810858593e-06 0.014688962541888655 4.028436920702324e-05 0.01885782865285535 7.831527031902316e-05']
['59866.41046175098 0.03350128575022163 6.713134636612809e-05 0.01465641568061273 4.027199148796916e-05 0.0005183646674620182 1.4243303363255611e-06 0.01465641568061273 4.027199148796916e-05 0.018844870069608895 7.828442350388817e-05']
['59866.410493288946 0.033502689022147356 6.713271876101675e-05 0.014702168789478422 4.029565522345934e-05 0.0005199828526704173 1.4251672697645126e-06 0.014702168789478422 4.029565522345934e-05 0.018800520232668934 7.82977762017139e-05']
['59866.41052482691 0.0335449365619828 6.713745633017596e-05 0.014732949375884387 4.0309148682568126e-05 0.0005210714932210343 1.425644503257084e-06 0.014732949375884387 4.0309148682568126e-05 0.01881198718609841 7.830878309614871e-05']
['59866.41055636487 0.033516348157329415 6.713250211343908e-05 0.014646515121685216 4.025289413705607e-05 0.0005180145068191989 1.4236549057038325e-06 0.014646515121685216 4.025289413705607e-05 0.0188698330356442 7.827559214991571e-05']
['59866.410587902836 0.03343786822942266 6.706934932592367e-05 0.014746219105552598 4.030557036302475e-05 0.0005215408139032985 1.4255179460919084e-06 0.014746219105552596 4.030557036302475e-05 0.01869164912387006 7.824855667225765e-05']
['59866.4106194408 0.033463779627516475 6.709800311878365e-05 0.01466499290937483 4.0263718828082355e-05 0.0005186680248743555 1.4240377508336716e-06 0.01466499290937483 4.0263718828082355e-05 0.018798786718141645 7.825157555215852e-05']
['59866.41065097876 0.033508524633149246 6.710352608453586e-05 0.014738141987096788 4.030735231369503e-05 0.0005212551442748139 1.4255809697046908e-06 0.014738141987096786 4.030735231369503e-05 0.01877038264605246 7.82787701967674e-05']
['59866.410682516726 0.033411911590642156 6.704591010669901e-05 0.01466997176791174 4.028109761230023e-05 0.000518844115973712 1.424652399592161e-06 0.01466997176791174 4.028109761230023e-05 0.018741939822730418 7.821586083964827e-05']
['59866.410714054684 0.033527165901670826 6.712209096330027e-05 0.014722964939441835 4.029351882661113e-05 0.0005207183660179634 1.4250917101825573e-06 0.014722964939441833 4.029351882661113e-05 0.01880420096222899 7.828756449600423e-05']
['59866.41074559265 0.03347424336138777 6.709295197387056e-05 0.014776684259214114 4.031447836217592e-05 0.0005226182983026951 1.4258330021136788e-06 0.014776684259214114 4.031447836217592e-05 0.018697559102173654 7.827337587061422e-05']
['59866.410777130615 0.03359964349443913 6.720366175693515e-05 0.014764529055296991 4.032878348163981e-05 0.0005221883959054284 1.4263389422190563e-06 0.01476452905529699 4.032878348163981e-05 0.01883511443914214 7.83756526649031e-05']
['59866.410808668574 0.03356814840342975 6.717171416559725e-05 0.014703725678439973 4.028380836889741e-05 0.0005200379163535453 1.4247482729948187e-06 0.014703725678439972 4.028380836889741e-05 0.018864422724989775 7.832511985721277e-05']
['59866.41084020654 0.03356661663344056 6.71648616263474e-05 0.01474208157399917 4.0303749931912444e-05 0.0005213944786590926 1.4254535615118901e-06 0.01474208157399917 4.0303749931912444e-05 0.018824535059441386 7.832950207846675e-05']
['59866.410871744505 0.03348360310634683 6.712509446922672e-05 0.014628560122758325 4.025885396698093e-05 0.0005173794786342157 1.423865691568839e-06 0.014628560122758325 4.025885396698093e-05 0.018855042983588505 7.827230436263716e-05']
['59866.41090328246 0.033406391046119255 6.707363467465386e-05 0.01473111074460501 4.0310946238453523e-05 0.0005210064649417819 1.4257080787914496e-06 0.01473111074460501 4.0310946238453523e-05 0.018675280301514247 7.825499891450015e-05']
['59866.41093482043 0.033456068632528604 6.708388077672867e-05 0.014709273055487368 4.0305919490266405e-05 0.0005202341146820537 1.4255302939421923e-06 0.01470927305548737 4.0305919490266405e-05 0.018746795577041234 7.826119220930758e-05']
['59866.41096635839 0.033526287370249756 6.716003584711495e-05 0.014686045737161426 4.0289195677809934e-05 0.0005194126163428664 1.424938810071128e-06 0.014686045737161426 4.0289195677809934e-05 0.018840241633088332 7.831787601404053e-05']
['59866.41099789635 0.03350016640238698 6.710274448436768e-05 0.014672441087802341 4.027237980806847e-05 0.0005189314502996375 1.4243440703396293e-06 0.014672441087802341 4.027237980806847e-05 0.01882772531458464 7.82600977046391e-05']
['59866.41102943432 0.0335105901195835 6.71113826535365e-05 0.014764453971237507 4.032445379417722e-05 0.0005221857403500475 1.4261858108497864e-06 0.014764453971237509 4.032445379417722e-05 0.018746136148345992 7.829431176955408e-05']
['59866.41106097228 0.03350222984845905 6.712884389867997e-05 0.014652781509430493 4.02606141950554e-05 0.0005182361349491969 1.4239279469019548e-06 0.014652781509430491 4.02606141950554e-05 0.018849448339028557 7.827642517729358e-05']
['59866.41109251024 0.033523158876102147 6.714944918963326e-05 0.014725599557040569 4.0295444232345414e-05 0.0005208115465544069 1.4251598074803504e-06 0.014725599557040569 4.0295444232345414e-05 0.018797559319061578 7.831201282276685e-05']
['59866.41112404821 0.03349001778957632 6.709427246228471e-05 0.014680958135536605 4.028034376241659e-05 0.000519232679243517 1.424625737606532e-06 0.014680958135536607 4.028034376241659e-05 0.01880905965403971 7.825693254186334e-05']
['59866.41115558617 0.03347651704106623 6.711055229753016e-05 0.014683468596075474 4.026772375179745e-05 0.0005193214686222276 1.424179396034997e-06 0.014683468596075472 4.026772375179745e-05 0.01879304844499076 7.826439679592889e-05']
['59866.41118712413 0.033529285074169725 6.71430504923923e-05 0.014700227402772208 4.028389608103119e-05 0.0005199141901613625 1.4247513751769655e-06 0.014700227402772208 4.028389608103119e-05 0.018829057671397517 7.830058437132677e-05']
['59866.41121866209 0.03347293813452388 6.710718543878239e-05 0.014668698517762204 4.0275362206191814e-05 0.0005187990839614695 1.4244495510959846e-06 0.014668698517762202 4.0275362206191814e-05 0.018804239616761677 7.826544025529448e-05']
['59866.41125020006 0.03348212267894749 6.711422952225772e-05 0.014674275380630954 4.0270623214315826e-05 0.0005189963251375823 1.4242819435443543e-06 0.014674275380630954 4.0270623214315826e-05 0.018807847298316537 7.826904176260038e-05']
['59866.41128173802 0.03357885506353193 6.719158797093321e-05 0.014736613903610415 4.030534200812795e-05 0.0005212010993769665 1.4255098696895516e-06 0.014736613903610415 4.030534200812795e-05 0.018842241159921513 7.835323917010592e-05']
['59866.41131327598 0.033621729610879766 6.721002663852002e-05 0.014806842949850617 4.0337643675082395e-05 0.0005236849437898015 1.4266523074597535e-06 0.014806842949850617 4.0337643675082395e-05 0.01881488666102915 7.838566946839508e-05']
['59866.41134481395 0.03356082919341691 6.717030212776205e-05 0.014649075705100925 4.027085982142793e-05 0.0005181050689320454 1.4242903118091237e-06 0.014649075705100927 4.027085982142793e-05 0.01891175348831598 7.831724994336774e-05']
['59866.41137635191 0.0334288475225284 6.705446179059422e-05 0.01463752196757873 4.025064015670848e-05 0.0005176964390569691 1.4235751874562879e-06 0.01463752196757873 4.025064015670848e-05 0.01879132555494967 7.820751165361991e-05']
['59866.41140788987 0.033509154295223435 6.711222577763581e-05 0.014602280417466775 4.023578825060622e-05 0.0005164500241897383 1.4230499087295077e-06 0.014602280417466775 4.023578825060622e-05 0.01890687387775666 7.824940578033795e-05']
['59866.41143942784 0.033410966410646774 6.703169567964444e-05 0.01468141438310323 4.028446832327544e-05 0.0005192488157002952 1.4247716141062584e-06 0.014681414383103232 4.028446832327544e-05 0.01872955202754354 7.820541294422942e-05']
['59866.411470965795 0.03354724798417036 6.716520789181014e-05 0.014690944400621964 4.027026214834236e-05 0.0005195858711215971 1.4242691734478078e-06 0.014690944400621962 4.027026214834236e-05 0.018856303583548395 7.831257347735605e-05']
['59866.41150250376 0.03353043333147115 6.713630748915575e-05 0.014600874701098627 4.0239772984955855e-05 0.0005164003071433881 1.423190839878097e-06 0.014600874701098627 4.0239772984955855e-05 0.01892955863037252 7.827210942065668e-05']
['59866.41153404173 0.033512911789214166 6.712697470480875e-05 0.01467198468480776 4.028411953577386e-05 0.0005189153083457198 1.4247592782718217e-06 0.014671984684807762 4.028411953577386e-05 0.018840927104406404 7.828691474181717e-05']
['59866.411565579685 0.03344816512279788 6.706666159886357e-05 0.01477184197678247 4.03262192693186e-05 0.0005224470375949522 1.4262482517599321e-06 0.014771841976782472 4.03262192693186e-05 0.018676323146015406 7.825689144461109e-05']
['59866.41159711765 0.03354483068781367 6.714529391154412e-05 0.01474116212412007 4.0324750400343625e-05 0.0005213619597717184 1.4261963011470164e-06 0.01474116212412007 4.0324750400343625e-05 0.0188036685636936 7.832353407065885e-05']
['59866.41162865562 0.03352202579227871 6.715669403591785e-05 0.014678479705103968 4.028469373338531e-05 0.0005191450226980807 1.4247795863580825e-06 0.01467847970510397 4.028469373338531e-05 0.018843546087174742 7.83126943925858e-05']
['59866.411660193575 0.03355247842265009 6.714433244900185e-05 0.014787739709989953 4.0328607488604286e-05 0.0005230093048891583 1.426332717738711e-06 0.014787739709989955 4.0328607488604286e-05 0.018764738712660135 7.832469573507446e-05']
['59866.41169173154 0.03349536374960558 6.713209050497119e-05 0.014692424248285176 4.0282836933825715e-05 0.00051963821002618 1.4247139155073626e-06 0.014692424248285174 4.0282836933825715e-05 0.018802939501320406 7.829064137561294e-05']
['59866.4117232695 0.033534790768270845 6.715788904493161e-05 0.014774591275706916 4.0319958331909446e-05 0.0005225442741535884 1.4260268163961421e-06 0.014774591275706917 4.0319958331909446e-05 0.018760199492563925 7.833186516902466e-05']
['59866.411754807465 0.033504118340770536 6.712575633263598e-05 0.01467133797917934 4.028419137185784e-05 0.0005188924358129446 1.4247618189535678e-06 0.014671337979179341 4.028419137185784e-05 0.018832780361591195 7.828590701852337e-05']
['59866.41178634543 0.03342712205683404 6.70780429729085e-05 0.014712420299865006 4.031361435282569e-05 0.0005203454256820136 1.4258024440339084e-06 0.014712420299865008 4.031361435282569e-05 0.018714701756969033 7.826015174572377e-05']
['59866.41181788339 0.033536225623735476 6.713632842207555e-05 0.014756636281025666 4.0326722379069465e-05 0.000521909246118764 1.4262660456274362e-06 0.014756636281025666 4.0326722379069465e-05 0.01877958934270981 7.831686364912304e-05']
['59866.411849421354 0.03345476015401784 6.709143261245293e-05 0.014643164644689587 4.024985255673251e-05 0.0005178960079357389 1.42354733180532e-06 0.014643164644689587 4.024985255673251e-05 0.018811595509328254 7.823880725592651e-05']
['59866.41188095932 0.03360405469745852 6.719726051256737e-05 0.014685936211818136 4.0277177256961985e-05 0.000519408742676249 1.4245137453853257e-06 0.014685936211818136 4.0277177256961985e-05 0.018918118485640387 7.834362021366247e-05']
['59866.41191249728 0.033482293014721894 6.711940985711905e-05 0.014661935071569952 4.0263206282033356e-05 0.0005185598759850623 1.4240196232253914e-06 0.014661935071569952 4.0263206282033356e-05 0.01882035794315194 7.826966819705767e-05']
['59866.411944035244 0.03349249645345601 6.709230365108351e-05 0.014667040270927287 4.027633319188642e-05 0.0005187404354768822 1.4244838926899775e-06 0.014667040270927289 4.027633319188642e-05 0.018825456182528726 7.825318028420983e-05']
['59866.4119755732 0.03352817013790124 6.712772547369141e-05 0.014721163707348052 4.031843673057699e-05 0.0005206546604643232 1.425973000757592e-06 0.014721163707348052 4.031843673057699e-05 0.01880700643055319 7.830522248016934e-05']
['59866.41200711117 0.03352832530135217 6.712651141317241e-05 0.014699508354673754 4.0296245894784333e-05 0.0005198887590370981 1.425188160489205e-06 0.014699508354673754 4.0296245894784333e-05 0.018828816946678414 7.82927580796314e-05']
['59866.412038649134 0.03346589849104164 6.707982714591311e-05 0.014655925937621321 4.028194890006323e-05 0.0005183473463469232 1.424682507737822e-06 0.014655925937621323 4.028194890006323e-05 0.018809972553420318 7.824537441352611e-05']
['59866.41207018709 0.03351854855699379 6.7134178585882e-05 0.014620937225130005 4.024031815067485e-05 0.0005171098737812756 1.4232101211712044e-06 0.014620937225130005 4.024031815067485e-05 0.01889761133186378 7.827056368308989e-05']
['59866.41210172506 0.033523820514464224 6.713436633653096e-05 0.014711639019519919 4.028131250211463e-05 0.0005203177935422666 1.4246599997646458e-06 0.014711639019519919 4.028131250211463e-05 0.018812181494944305 7.829180851341064e-05']
['59866.412133263024 0.033510373944276105 6.71202924023027e-05 0.014636024785412226 4.0248162278392314e-05 0.000517643487069745 1.4234875504379772e-06 0.014636024785412226 4.0248162278392314e-05 0.01887434915886388 7.826268727151154e-05']
['59866.41216480098 0.03345095550796647 6.709155517304195e-05 0.01473068021633769 4.0301643618220466e-05 0.0005209912381191408 1.4253790659039389e-06 0.014730680216337689 4.0301643618220466e-05 0.018720275291628785 7.826556876345678e-05']
['59866.41219633895 0.03352341081440133 6.714918195735672e-05 0.014695259873986895 4.027910158594556e-05 0.0005197384997699994 1.4245818046008527e-06 0.014695259873986895 4.027910158594556e-05 0.018828150940414432 7.830337580279105e-05']
['59866.41222787691 0.033498542784476774 6.712511575025486e-05 0.01468510897227563 4.029357588008192e-05 0.0005193794850624022 1.4250937280363121e-06 0.014685108972275632 4.029357588008192e-05 0.018813433812201144 7.829018726308573e-05']
['59866.41225941487 0.0335165535148904 6.713540629366016e-05 0.014648743134458683 4.025369656278266e-05 0.0005180933066516809 1.4236832857084663e-06 0.01464874313445868 4.025369656278266e-05 0.01886781038043172 7.827849554752189e-05']
['59866.41229095284 0.033600443505101794 6.718661868831315e-05 0.014673600607743321 4.028135477252247e-05 0.0005189724599285754 1.4246614947745023e-06 0.014673600607743321 4.028135477252247e-05 0.01892684289735847 7.833664068032665e-05']
['59866.412322490796 0.03350755893090716 6.714336484776237e-05 0.014762049049511256 4.0322825256839805e-05 0.0005221006836432737 1.4261282131237288e-06 0.014762049049511256 4.0322825256839805e-05 0.0187455098813959 7.832088916613096e-05']
['59866.41235402876 0.03355679049558527 6.71606498473395e-05 0.014640674083392442 4.025243635289483e-05 0.0005178079223487358 1.4236387149011368e-06 0.014640674083392442 4.025243635289483e-05 0.01891611641219283 7.829949885063629e-05']
['59866.41238556673 0.03356128683974554 6.716406710313895e-05 0.014726407101169495 4.030231810548363e-05 0.0005208401075854921 1.4254029210110468e-06 0.014726407101169495 4.030231810548363e-05 0.018834879738576046 7.832808407276757e-05']
['59866.412417104686 0.03356230021850957 6.718051980488587e-05 0.014723608368122126 4.0295654540910614e-05 0.0005207411226524069 1.4251672456242895e-06 0.014723608368122127 4.0295654540910614e-05 0.01883869185038744 7.833876445371776e-05']
['59866.41244864265 0.0335530744565123 6.71521825232093e-05 0.014752494140309212 4.03046679683194e-05 0.0005217627478587627 1.4254860304079136e-06 0.014752494140309212 4.03046679683194e-05 0.01880058031620309 7.831910289110115e-05']
['59866.41248018061 0.03367286214560401 6.725567950430122e-05 0.014768182903105935 4.03161003329615e-05 0.0005223176243365615 1.4258903675954736e-06 0.014768182903105935 4.03161003329615e-05 0.018904679242498078 7.841373841134411e-05']
['59866.412511718576 0.03352049319198656 6.716795303757503e-05 0.014673868185975176 4.026824169646134e-05 0.0005189819235726339 1.4241977145802206e-06 0.014673868185975176 4.026824169646134e-05 0.01884662500601138 7.831388896346875e-05']
['59866.41254325654 0.033584848441377824 6.71829472962912e-05 0.014736879747007709 4.0306899447627195e-05 0.0005212105016638037 1.4255649528439676e-06 0.014736879747007709 4.0306899447627195e-05 0.018847968694370117 7.834663075396013e-05']
['59866.4125747945 0.03346203281455336 6.709254449074995e-05 0.014728859910246209 4.0292564774711176e-05 0.0005209268579608298 1.4250579674990365e-06 0.014728859910246209 4.0292564774711176e-05 0.01873317290430715 7.826174226509116e-05']
['59866.412606332466 0.033529634990211866 6.713820727163908e-05 0.014750619944333014 4.030899890708075e-05 0.0005216964617356661 1.425639206032824e-06 0.014750619944333014 4.030899890708075e-05 0.018779015045878852 7.830934981559103e-05']
['59866.41263787043 0.033401446524248125 6.70449645224728e-05 0.014695949707028796 4.0293039534203265e-05 0.0005197628976230053 1.4250747586812466e-06 0.014695949707028796 4.0293039534203265e-05 0.01870549681721933 7.822120110765689e-05']
['59866.41266940839 0.033385145188751915 6.704266469861326e-05 0.014583424760523302 4.02344133935999e-05 0.0005157831417435608 1.4230012831098185e-06 0.014583424760523302 4.02344133935999e-05 0.018801720428228613 7.81890459784347e-05']
['59866.412700946355 0.03348240730993466 6.71290246194201e-05 0.01474195214489557 4.0317420540666364e-05 0.0005213899010409553 1.4259370603915039e-06 0.01474195214489557 4.0317420540666364e-05 0.01874045516503909 7.830581297328861e-05']
['59866.412732484314 0.033521098665507565 6.713529934269037e-05 0.014755858094327903 4.0329145500250296e-05 0.000521881723394409 1.4263517460082451e-06 0.014755858094327903 4.0329145500250296e-05 0.01876524057117966 7.831722923222577e-05']
['59866.41276402228 0.03347896801724687 6.712539195240709e-05 0.014687735187691191 4.028968870502214e-05 0.0005194723684324045 1.4249562473417728e-06 0.014687735187691191 4.028968870502214e-05 0.01879123282955568 7.828842354212957e-05']
['59866.412795560245 0.03352454868341638 6.710947682440595e-05 0.014782394294055742 4.03264954834985e-05 0.0005228202494738667 1.426258020838173e-06 0.014782394294055742 4.03264954834985e-05 0.018742154389360638 7.829372974655189e-05']
['59866.412827098204 0.033557459988320555 6.713988228811522e-05 0.014751621883105994 4.02944916394534e-05 0.000521731898070865 1.4251261163986798e-06 0.014751621883105992 4.02944916394534e-05 0.018805838105214565 7.830331953464008e-05']
['59866.41285863617 0.03351790124900594 6.712212802597627e-05 0.014692925170760573 4.0286856787583244e-05 0.000519655926534639 1.4248560887509219e-06 0.014692925170760571 4.0286856787583244e-05 0.018824976078245365 7.828416762384838e-05']
['59866.412890174135 0.03351731629405562 6.713619351418314e-05 0.014687391409944312 4.029568181821494e-05 0.0005194602097817955 1.4251682103615823e-06 0.014687391409944312 4.029568181821494e-05 0.018829924884111306 7.830076917099004e-05']
['59866.41292171209 0.03349978136791522 6.714189593480333e-05 0.01472063522858386 4.0312713235864916e-05 0.0005206359693515142 1.4257705735408837e-06 0.01472063522858386 4.0312713235864916e-05 0.01877914613933136 7.831442420242287e-05']
['59866.41295325006 0.03349235016482863 6.712991785817538e-05 0.014641909948177545 4.0249433257524875e-05 0.0005178516321241896 1.4235325021294247e-06 0.014641909948177545 4.0249433257524875e-05 0.018850440216651082 7.827159605627909e-05']
['59866.41298478802 0.03341816621912539 6.702869877273317e-05 0.014711847643254635 4.029365131721225e-05 0.0005203251720975169 1.4250963960790199e-06 0.014711847643254634 4.029365131721225e-05 0.018706318575870757 7.820757505279704e-05']
['59866.41301632598 0.03354253739399676 6.712137762008854e-05 0.014757391276803039 4.0314463103071394e-05 0.0005219359486320934 1.4258324624332537e-06 0.014757391276803039 4.0314463103071394e-05 0.018785146117193723 7.829773476229965e-05']
['59866.41304786395 0.03346701853100702 6.707350691256607e-05 0.014661361550177639 4.02736012413901e-05 0.000518539591815161 1.4243872697064727e-06 0.014661361550177639 4.02736012413901e-05 0.01880565698082938 7.823565866342882e-05']
['59866.41307940191 0.03354770520298737 6.719098367236226e-05 0.014677607391214629 4.029135005883117e-05 0.0005191141709053215 1.4250150057130908e-06 0.014677607391214627 4.029135005883117e-05 0.01887009781177274 7.834552429094419e-05']
['59866.41311093987 0.03352663891673765 6.71510854166638e-05 0.014761082410347872 4.031658419039069e-05 0.0005220664957763762 1.425907480551386e-06 0.014761082410347872 4.031658419039069e-05 0.018765556506389777 7.832429529473557e-05']
['59866.41314247784 0.03348828061899756 6.710528046069989e-05 0.014710088853770299 4.0293178199930617e-05 0.0005202629676441191 1.4250796629781234e-06 0.014710088853770299 4.0293178199930617e-05 0.018778191765227256 7.827297665964004e-05']
['59866.4131740158 0.03348963006205845 6.712624174380551e-05 0.01474464838826897 4.030547992491466e-05 0.0005214852611433231 1.4255147474980717e-06 0.014744648388268968 4.030547992491466e-05 0.01874498167378948 7.829727991843342e-05']
['59866.41320555376 0.03353076723669722 6.712126367211394e-05 0.014670489040741195 4.027863458188564e-05 0.0005188624107576532 1.424565287710946e-06 0.014670489040741195 4.027863458188564e-05 0.018860278195956023 7.827919545270324e-05']
['59866.41323709172 0.03343938263134635 6.705755510492114e-05 0.014693896793845354 4.0295117292792435e-05 0.0005196902906716979 1.4251482443590285e-06 0.014693896793845354 4.0295117292792435e-05 0.01874548583750099 7.82330631784889e-05']
['59866.41326862969 0.03351596775545763 6.709995190624018e-05 0.014727929057422902 4.030498578360533e-05 0.0005208939357768031 1.4254972708243015e-06 0.014727929057422902 4.030498578360533e-05 0.018788038698034727 7.82744877008874e-05']
['59866.41330016765 0.033520463488340924 6.714168438041643e-05 0.01463667216081649 4.0254044488267194e-05 0.0005176663832909949 1.4236955910552863e-06 0.01463667216081649 4.0254044488267194e-05 0.018883791327524435 7.828405890794658e-05']
['59866.41333170561 0.0335656995772503 6.715072662399034e-05 0.014646815372348703 4.0254235174429136e-05 0.0005180251260141457 1.4237023351986757e-06 0.014646815372348703 4.0254235174429136e-05 0.0189188842049016 7.829191232565553e-05']
['59866.41336324358 0.03370330672047831 6.726357442463944e-05 0.014771888757586754 4.0311267001545325e-05 0.0005224486921274507 1.4257194234651433e-06 0.014771888757586754 4.0311267001545325e-05 0.018931417962891557 7.84180252980709e-05']
['59866.41339478154 0.033547462277904866 6.71598550018713e-05 0.014723509974933394 4.030097494995811e-05 0.0005207376427052172 1.425355416601885e-06 0.014723509974933394 4.030097494995811e-05 0.018823952302971472 7.832378122760373e-05']
['59866.4134263195 0.0334630756348463 6.71163965131611e-05 0.01467905163549747 4.027732544421235e-05 0.0005191652505979095 1.4245189864371922e-06 0.01467905163549747 4.027732544421235e-05 0.018784023999348833 7.827434845369753e-05']
['59866.41345785747 0.03354923780097497 6.714752771219275e-05 0.01470167070484486 4.029749025106006e-05 0.0005199652365300819 1.4252321705897047e-06 0.014701670704844861 4.029749025106006e-05 0.018847567096130106 7.831141805888828e-05']
['59866.413489395425 0.0336874442410393 6.723240655984838e-05 0.014756453181505069 4.031399760519705e-05 0.0005219027702979238 1.4258159988137649e-06 0.014756453181505069 4.031399760519705e-05 0.018930991059534226 7.839269669261657e-05']
['59866.41352093339 0.03352701240021259 6.713387423541013e-05 0.014729319942195547 4.030535404484206e-05 0.000520943128262767 1.4255102954012295e-06 0.014729319942195547 4.030535404484206e-05 0.01879769245801704 7.830375875100716e-05']
['59866.41355247136 0.033481239882182795 6.708605054387776e-05 0.0146587083976932 4.0279811535435415e-05 0.0005184457557412332 1.424606913927665e-06 0.014658708397693199 4.0279811535435415e-05 0.018822531484489598 7.824960955114036e-05']
['59866.413584009315 0.03354316685893463 6.717626794278201e-05 0.014740352078940814 4.0305818076703304e-05 0.0005213333102840725 1.4255267071711114e-06 0.014740352078940814 4.0305818076703304e-05 0.018802814779993817 7.834034685621927e-05']
['59866.41361554728 0.03351705864262764 6.715082152961049e-05 0.014646898542546742 4.026509312251756e-05 0.0005180280675581759 1.4240863565564775e-06 0.01464689854254674 4.026509312251756e-05 0.0188701601000809 7.829757695016245e-05']
['59866.413647085246 0.03354600049053111 6.714817710734371e-05 0.01471507150139522 4.030051847116481e-05 0.0005204391927550505 1.425339271967136e-06 0.014715071501395218 4.030051847116481e-05 0.018830928989135888 7.831353317201245e-05']
['59866.413678623205 0.03353211093012998 6.715349305185183e-05 0.014707558249897367 4.0284310677183546e-05 0.0005201734658407003 1.4247660385163065e-06 0.014707558249897367 4.0284310677183546e-05 0.018824552680232608 7.83097523671283e-05']
['59866.41371016117 0.033573935883473245 6.716957404821273e-05 0.014707293135707936 4.0300067116511754e-05 0.0005201640893443154 1.4253233085617757e-06 0.014707293135707934 4.0300067116511754e-05 0.01886664274776531 7.833164805756155e-05']
['59866.41374169913 0.03342319452543054 6.705537207707698e-05 0.014651588811118822 4.026209553028846e-05 0.000518193951875437 1.4239803384185587e-06 0.014651588811118822 4.026209553028846e-05 0.01877160571431172 7.821418836045868e-05']
['59866.413773237095 0.03342219467985738 6.706085044918898e-05 0.014664788332449278 4.0267657676175766e-05 0.0005186607894457013 1.4241770590879281e-06 0.01466478833244928 4.0267657676175766e-05 0.0187574063474081 7.822174836766413e-05']
['59866.41380477506 0.03353506306983701 6.712686214587122e-05 0.014772431559064677 4.031416951725593e-05 0.000522467889802635 1.4258220789590865e-06 0.014772431559064677 4.031416951725593e-05 0.01876263151077233 7.830228531413912e-05']
['59866.41383631302 0.03348452753861126 6.708740021850159e-05 0.014664632523517088 4.026982838169955e-05 0.0005186552788319822 1.4242538320910631e-06 0.014664632523517088 4.026982838169955e-05 0.018819895015094172 7.82456282866266e-05']
['59866.413867850984 0.03349348138349823 6.708215639852306e-05 0.014703249105314712 4.02681284772209e-05 0.0005200210610271832 1.4241937102687162e-06 0.014703249105314713 4.02681284772209e-05 0.01879023227818352 7.824025740073889e-05']
['59866.41389938895 0.03346974366164673 6.707760505617268e-05 0.014756886507579661 4.031912178367812e-05 0.0005219180960727553 1.4259972295547752e-06 0.014756886507579661 4.031912178367812e-05 0.018712857154067064 7.826261356151448e-05']
['59866.41393092691 0.03344993168912309 6.709403221930397e-05 0.01467861639203462 4.0283374920509874e-05 0.0005191498570093404 1.4247329428940517e-06 0.01467861639203462 4.0283374920509874e-05 0.01877131529708847 7.825828680996897e-05']
['59866.413962464874 0.03356959589653025 6.716620512845831e-05 0.01477156580003604 4.032713169522474e-05 0.0005224372698406497 1.4262805222250807e-06 0.01477156580003604 4.032713169522474e-05 0.01879803009649421 7.83426873557586e-05']
['59866.41399400283 0.033530951002455005 6.712541101120386e-05 0.014720616886707323 4.029164078206827e-05 0.0005206353206403328 1.425025287944259e-06 0.014720616886707324 4.029164078206827e-05 0.01881033411574768 7.828944450137755e-05']
['59866.4140255408 0.03357679503559446 6.716716951083486e-05 0.014622343355225088 4.025103572414013e-05 0.0005171596054602229 1.423589177792304e-06 0.014622343355225088 4.025103572414013e-05 0.01895445168036937 7.830437112296624e-05']
['59866.414057078764 0.03352250269867568 6.712210619989347e-05 0.014671926736966172 4.02788173785506e-05 0.0005189132588600687 1.424571752820459e-06 0.014671926736966172 4.02788173785506e-05 0.018850575961709512 7.828001194509621e-05']
['59866.41408861672 0.033543824593762685 6.713688557849769e-05 0.014772770764144322 4.033162604412194e-05 0.0005224798867282232 1.426439477301296e-06 0.01477277076414432 4.033162604412194e-05 0.018771053829618363 7.831986634656105e-05']
['59866.41412015469 0.033479818247410024 6.710205055069526e-05 0.014697453579391204 4.0288971358016806e-05 0.0005198160862275068 1.4249308763813703e-06 0.014697453579391204 4.0288971358016806e-05 0.01878236466801882 7.826804201712957e-05']
['59866.414151692654 0.033505658452769226 6.711215986679866e-05 0.014721661790671258 4.0312766680335066e-05 0.0005206722765583142 1.4257724637523515e-06 0.014721661790671258 4.0312766680335066e-05 0.018783996662097967 7.828895937110081e-05']
['59866.41418323061 0.033548852164332364 6.715577172987583e-05 0.014686987468482203 4.02923985862911e-05 0.0005194459232750367 1.4250520897860276e-06 0.014686987468482205 4.02923985862911e-05 0.01886186469585016 7.831586723309488e-05']
['59866.41421476858 0.03358438970866679 6.720621942896453e-05 0.014682890324673193 4.0269994105029676e-05 0.0005193010164550895 1.4242596933548798e-06 0.014682890324673192 4.0269994105029676e-05 0.0189014993839936 7.834761231303258e-05']
['59866.41424630654 0.033463044022795374 6.708536722640595e-05 0.01471823685900257 4.030208194499067e-05 0.0005205511443794645 1.4253945685421984e-06 0.014718236859002568 4.030208194499067e-05 0.018744807163792808 7.826049006364888e-05']
['59866.4142778445 0.033500569104346824 6.711756874995833e-05 0.01471249111240049 4.030266753345627e-05 0.0005203479301631368 1.4254152794975135e-06 0.01471249111240049 4.030266753345627e-05 0.018788077991946334 7.828839661928e-05']
['59866.41430938247 0.03354515358432406 6.716536846145725e-05 0.014749151695446876 4.032394879595953e-05 0.0005216445330539065 1.4261679501914313e-06 0.014749151695446876 4.032394879595953e-05 0.018796001888877187 7.834033167572424e-05']
['59866.414340920426 0.033531894759726316 6.714507119639552e-05 0.014712806335455247 4.028888529781939e-05 0.0005203590788981016 1.4249278326245208e-06 0.014712806335455247 4.028888529781939e-05 0.018819088424271067 7.830488403994907e-05']
['59866.41437245839 0.03355800771205246 6.715341126591241e-05 0.014714773166007371 4.0299264123170975e-05 0.0005204286412991226 1.4252949084818968e-06 0.014714773166007371 4.0299264123170975e-05 0.018843234546045088 7.83173756807381e-05']
['59866.41440399636 0.03357298087347951 6.716956193857383e-05 0.014694136267904943 4.02850601139062e-05 0.0005196987603339926 1.4247925444182943e-06 0.014694136267904943 4.02850601139062e-05 0.01887884460557457 7.832391792677982e-05']
['59866.414435534316 0.03355071361543343 6.714994386417604e-05 0.014777562634467695 4.03227999258979e-05 0.0005226493644723611 1.4261273172249248e-06 0.014777562634467693 4.03227999258979e-05 0.018773150980965735 7.832651629445795e-05']
['59866.41446707228 0.033637647390973274 6.721974442432959e-05 0.014726004170954604 4.0310722806548554e-05 0.0005208258568442874 1.4257001765043117e-06 0.014726004170954604 4.0310722806548554e-05 0.01891164322001867 7.838015318726152e-05']
['59866.41449861024 0.033305859566417656 6.698274947880412e-05 0.014707133979200574 4.0286520465687536e-05 0.0005201584603343439 1.4248441937971059e-06 0.014707133979200574 4.0286520465687536e-05 0.018598725587217084 7.816452174082878e-05']
['59866.414530148206 0.03353990627398732 6.716438759495015e-05 0.014648221783054636 4.0249813270777545e-05 0.0005180748676176716 1.423545942348892e-06 0.014648221783054634 4.0249813270777545e-05 0.018891684490932686 7.8301356497427e-05']
['59866.41456168617 0.033607836702610874 6.71774702433742e-05 0.01476628050436447 4.0325273356207635e-05 0.0005222503407446868 1.4262147969271888e-06 0.01476628050436447 4.0325273356207635e-05 0.018841556198246404 7.835138913607273e-05']
['59866.41459322413 0.03347368315615235 6.709532429456572e-05 0.01466277738296493 4.027069739920552e-05 0.0005185896666566475 1.4242845672981095e-06 0.01466277738296493 4.027069739920552e-05 0.01881090577318742 7.825286966758038e-05']
['59866.414624762096 0.033606182907397864 6.719655279575067e-05 0.01468823010682151 4.028821425708144e-05 0.0005194898726159648 1.4249040994133075e-06 0.014688230106821512 4.028821425708144e-05 0.01891795280057635 7.834868802766647e-05']
['59866.41465630006 0.03343670497375502 6.707314776722727e-05 0.014657909341328658 4.027219250726633e-05 0.0005184174949034052 1.4243374459288505e-06 0.014657909341328657 4.027219250726633e-05 0.018778795632426362 7.823462558705464e-05']
['59866.41468783802 0.033595329878729735 6.720016197558403e-05 0.01467185382060559 4.0287158276852876e-05 0.0005189106799713533 1.4248667517525999e-06 0.01467185382060559 4.0287158276852876e-05 0.018923476058124146 7.835124052348453e-05']
['59866.414719375985 0.033582277449635656 6.720051156214932e-05 0.014766769567633965 4.0333280765451044e-05 0.0005222676378195369 1.4264980010966218e-06 0.014766769567633967 4.0333280765451044e-05 0.01881550788200169 7.837526581466418e-05']
['59866.414750913944 0.03347991548788259 6.710121507924518e-05 0.014644048603248442 4.0262838943445274e-05 0.0005179272715744345 1.4240066312804844e-06 0.014644048603248444 4.0262838943445274e-05 0.018835866884634143 7.825387699594784e-05']
['59866.41478245191 0.03350446738819864 6.7125556108793e-05 0.014726594256638718 4.031744081038724e-05 0.0005208467268561707 1.4259377772862312e-06 0.014726594256638718 4.031744081038724e-05 0.018777873131559923 7.830284998908913e-05']
['59866.414813989875 0.0334375875535382 6.706863182859388e-05 0.01467169838465209 4.027862199741805e-05 0.000518905182549057 1.424564842626452e-06 0.014671698384652092 4.027862199741805e-05 0.018765889168886107 7.823406397069224e-05']
['59866.414845527834 0.03351480356952163 6.713099459600544e-05 0.014702123564940004 4.0291310112392374e-05 0.0005199812531795644 1.4250135928968257e-06 0.014702123564940005 4.0291310112392374e-05 0.01881268000458162 7.829406175452824e-05']
['59866.4148770658 0.03357887353944196 6.717894051092616e-05 0.014742062734803668 4.030553768236377e-05 0.0005213938123588509 1.4255167902499665e-06 0.014742062734803668 4.030553768236377e-05 0.01883681080463829 7.834249431844127e-05']
['59866.414908603765 0.03351139864559432 6.71281984802184e-05 0.014728135890976737 4.031114141131323e-05 0.0005209012510173564 1.4257149816193117e-06 0.014728135890976735 4.031114141131323e-05 0.018783262754617586 7.830187196410114e-05']
['59866.41494014172 0.03348829709675342 6.712003678841186e-05 0.01470252784919886 4.0295578369501095e-05 0.000519995551810278 1.4251645516117678e-06 0.01470252784919886 4.0295578369501095e-05 0.018785769247554557 7.828686335912536e-05']
['59866.41497167969 0.03360864402220918 6.718288431677804e-05 0.014708547640142514 4.030409464723606e-05 0.000520208458362514 1.425465753322493e-06 0.014708547640142513 4.030409464723606e-05 0.018900096382066668 7.834513380201059e-05']
['59866.41500321765 0.03360603976205781 6.721973276132713e-05 0.014753539982406716 4.032972199240224e-05 0.0005217997369564318 1.4263721352472752e-06 0.014753539982406715 4.032972199240224e-05 0.018852499779651095 7.83899161148211e-05']
['59866.41503475561 0.033495062393613106 6.709874354875657e-05 0.014699728415712406 4.0273518415390855e-05 0.0005198965421042278 1.4243843403359845e-06 0.014699728415712406 4.0273518415390855e-05 0.018795333977900702 7.825725315506945e-05']
['59866.41506629358 0.03362597647421904 6.721678646919904e-05 0.014803148398904386 4.035517060921571e-05 0.0005235542757796687 1.4272721959496564e-06 0.014803148398904386 4.035517060921571e-05 0.018822828075314657 7.840048582849985e-05']
['59866.41509783154 0.033458612493368595 6.707363036330309e-05 0.014626659191610044 4.024160566920582e-05 0.0005173122469478321 1.42325565782421e-06 0.014626659191610044 4.024160566920582e-05 0.01883195330175855 7.82192988778912e-05']
['59866.4151293695 0.03359014220423265 6.718485704158207e-05 0.014735963632557577 4.0307199415586134e-05 0.0005211781007430979 1.4255755620402864e-06 0.014735963632557575 4.0307199415586134e-05 0.018854178571675075 7.834842270541027e-05']
['59866.41516090747 0.03358123845896906 6.720332409749174e-05 0.014666546282791298 4.027240134663345e-05 0.0005187229642205107 1.4243448321105368e-06 0.014666546282791298 4.027240134663345e-05 0.018914692176177757 7.834636609299016e-05']
['59866.41519244543 0.033482216307700395 6.709271844866803e-05 0.014657025067265106 4.0272805801005514e-05 0.0005183862201060136 1.4243591367577746e-06 0.014657025067265106 4.0272805801005514e-05 0.018825191240435288 7.825172046618364e-05']
['59866.41522398339 0.0335248925256339 6.713609028019685e-05 0.014671830722854579 4.027571145344226e-05 0.0005189098630555205 1.424461903190711e-06 0.01467183072285458 4.027571145344226e-05 0.01885306180277932 7.829040523072851e-05']
['59866.41525552135 0.03367206122137717 6.724507072020665e-05 0.014784770616839788 4.032585884740346e-05 0.0005229042946999695 1.4262355044422893e-06 0.014784770616839788 4.032585884740346e-05 0.01888729060453738 7.840965774664688e-05']
['59866.41528705932 0.03356053299806132 6.71481010147468e-05 0.014754423174367204 4.0338942124385056e-05 0.0005218309734822564 1.4266982307097253e-06 0.014754423174367202 4.0338942124385056e-05 0.018806109823694114 7.833324786832936e-05']
['59866.41531859728 0.03368720029551555 6.725507204367736e-05 0.014698481565611604 4.029657781416665e-05 0.0005198524438027084 1.4251998997359614e-06 0.014698481565611604 4.029657781416665e-05 0.018988718729903944 7.84031816901165e-05']
['59866.41535013524 0.033582912187342225 6.716396630880898e-05 0.014770759066435206 4.031839639307773e-05 0.0005224087374761316 1.425971574110392e-06 0.014770759066435206 4.031839639307773e-05 0.01881215312090702 7.833627166287766e-05']
['59866.41538167321 0.03351673668120523 6.712766490399872e-05 0.01465345436842809 4.02648808258394e-05 0.0005182599324681906 1.424078848097426e-06 0.01465345436842809 4.02648808258394e-05 0.01886328231277714 7.827760869739564e-05']
['59866.41541321117 0.03363740325957105 6.72239810022585e-05 0.01468631031455632 4.0282909138936725e-05 0.0005194219738540282 1.42471646924077e-06 0.014686310314556321 4.0282909138936725e-05 0.01895109294501473 7.836948634824554e-05']
['59866.41544474913 0.033511667971639035 6.714661733893659e-05 0.014660833685679948 4.026363547069647e-05 0.0005185209224275854 1.4240348026692256e-06 0.014660833685679948 4.026363547069647e-05 0.018850834285959087 7.82932216822038e-05']
['59866.4154762871 0.03358867268079624 6.721481921208766e-05 0.014694084751881165 4.029115737757671e-05 0.0005196969383273631 1.4250081910077377e-06 0.014694084751881166 4.029115737757671e-05 0.018894587928915074 7.836586810938983e-05']
['59866.415507825055 0.033497642543807916 6.710461936126123e-05 0.014757951732770185 4.03148561051555e-05 0.000521955770707106 1.4258463620386605e-06 0.014757951732770187 4.03148561051555e-05 0.01873969081103773 7.828357147191963e-05']
['59866.41553936302 0.033630602833997617 6.721066907679695e-05 0.014808451291551348 4.033046576640945e-05 0.0005237418272413241 1.4263984408716732e-06 0.014808451291551348 4.033046576640945e-05 0.01882215154244627 7.838252679447273e-05']
['59866.41557090099 0.033610763324228486 6.719493135280211e-05 0.014684792405362126 4.0287036311155325e-05 0.0005193682887981569 1.4248624380984549e-06 0.014684792405362126 4.0287036311155325e-05 0.01892597091886636 7.834669166112974e-05']
['59866.415602438945 0.03356131107831726 6.714739481215535e-05 0.014713754235763366 4.0300601002125505e-05 0.0005203926040135672 1.4253421909027701e-06 0.014713754235763364 4.0300601002125505e-05 0.018847556842553896 7.831290488286069e-05']
['59866.41563397691 0.03353705255089127 6.716160598683546e-05 0.014747805913998303 4.0314582856351834e-05 0.000521596935771715 1.4258366978391502e-06 0.014747805913998303 4.0314582856351834e-05 0.018789246636892964 7.833228523165012e-05']
['59866.415665514876 0.03343857129984621 6.705774917982581e-05 0.014659799113651582 4.026865938609059e-05 0.0005184843319270745 1.4242124873289257e-06 0.014659799113651582 4.026865938609059e-05 0.01877877218619463 7.821960530338548e-05']
['59866.415697052835 0.03352406082548726 6.712107821225447e-05 0.014761414989069603 4.033863788633327e-05 0.0005220782583424941 1.4266874704897656e-06 0.014761414989069603 4.033863788633327e-05 0.01876264583641766 7.830992815026907e-05']
['59866.4157285908 0.03354681073901377 6.715654758382341e-05 0.014776784453087647 4.0321402874413655e-05 0.0005226218419360819 1.4260779066361534e-06 0.014776784453087647 4.0321402874413655e-05 0.018770026285926125 7.833145864299421e-05']
['59866.41576012876 0.03360971083993173 6.717858135761514e-05 0.01469121850602014 4.028562738655996e-05 0.0005195955656169412 1.424812607584278e-06 0.014691218506020141 4.028562738655996e-05 0.018918492333911588 7.833194474255358e-05']
['59866.415791666725 0.03355120557314113 6.715622033733446e-05 0.01475490284173782 4.032172665439134e-05 0.0005218479382451617 1.4260893580103585e-06 0.014754902841737819 4.032172665439134e-05 0.018796302731403314 7.833134475028541e-05']
['59866.41582320469 0.03365907674563949 6.727185529584565e-05 0.014694116592941757 4.029237939239678e-05 0.0005196980644745156 1.4250514109408813e-06 0.014694116592941757 4.029237939239678e-05 0.018964960152697732 7.841542164680387e-05']
['59866.41585474265 0.03355054446277479 6.714918976103783e-05 0.014669317482243135 4.028186247167116e-05 0.0005188209753518559 1.4246794509587505e-06 0.014669317482243135 4.028186247167116e-05 0.018881226980531657 7.830480272467646e-05']
['59866.415886280614 0.033610596073498 6.721241122075316e-05 0.014715319059890711 4.0295487545464476e-05 0.0005204479483457753 1.4251613393685726e-06 0.014715319059890711 4.0295487545464476e-05 0.018895277013607287 7.836602923865868e-05']
['59866.41591781857 0.033527229816188005 6.713057911970379e-05 0.014742978675892037 4.0317980936028295e-05 0.0005214262071481386 1.4259568803230455e-06 0.014742978675892035 4.0317980936028295e-05 0.01878425114029597 7.830743412795972e-05']
['59866.41594935654 0.03366024320135849 6.725076266024318e-05 0.014768967669341064 4.031616909317342e-05 0.0005223453797644487 1.425892799490499e-06 0.014768967669341064 4.031616909317342e-05 0.01889127553201743 7.840955661610203e-05']
['59866.415980894504 0.03347794281496401 6.709277171015203e-05 0.014733333055795841 4.030896502186944e-05 0.0005210850631220283 1.425638007588629e-06 0.014733333055795841 4.030896502186944e-05 0.018744609759168168 7.827038186239332e-05']
['59866.41601243246 0.03371567479459773 6.7280505260035e-05 0.014751945075338588 4.030475192942721e-05 0.0005217433286578397 1.4254889999246548e-06 0.014751945075338588 4.030475192942721e-05 0.01896372971925914 7.842920002230204e-05']
['59866.41604397043 0.03360596606392556 6.718695531772914e-05 0.014726256173366878 4.03035871068837e-05 0.0005208347696064173 1.4254478027545161e-06 0.014726256173366878 4.03035871068837e-05 0.018879709890558684 7.834836372604532e-05']
['59866.416075508394 0.033657522688987244 6.72456488067201e-05 0.014724760699640833 4.031134762546058e-05 0.0005207818780429142 1.4257222749528418e-06 0.014724760699640833 4.031134762546058e-05 0.01893276198934641 7.840269147687127e-05']
['59866.41610704635 0.03356540562881558 6.718832591998667e-05 0.014763798668395443 4.0342885410774207e-05 0.0005221625637530393 1.426837695936583e-06 0.014763798668395443 4.0342885410774207e-05 0.018801606960420138 7.83697616635218e-05']
['59866.41613858432 0.03361242664088617 6.718781247628577e-05 0.014743704446816724 4.029869871947769e-05 0.0005214518760437422 1.4252749114168682e-06 0.014743704446816724 4.029869871947769e-05 0.018868722194069446 7.834658425120891e-05']
['59866.41617012228 0.033708033265337646 6.727542213245931e-05 0.014796054168676435 4.034388960643588e-05 0.0005233033687111775 1.4268732120928912e-06 0.014796054168676435 4.034388960643588e-05 0.01891197909666121 7.844496065189199e-05']
['59866.41620166024 0.033557654402165966 6.716038324260772e-05 0.01470551340196469 4.0298010635476386e-05 0.0005201011441392877 1.4252505754235193e-06 0.01470551340196469 4.0298010635476386e-05 0.018852141000201276 7.832270895768935e-05']
['59866.41623319821 0.03363474487207213 6.72021618238037e-05 0.014790088482494086 4.033105837523909e-05 0.0005230923757234318 1.4264194001215747e-06 0.014790088482494088 4.033105837523909e-05 0.018844656389578045 7.8375537149417e-05']
['59866.416264736166 0.03359570039380514 6.718754288752369e-05 0.014696517159003988 4.028901749641071e-05 0.0005197829671311874 1.4249325081932496e-06 0.01469651715900399 4.028901749641071e-05 0.01889918323480115 7.83413738077711e-05']
['59866.41629627413 0.033640196938122105 6.723993090400206e-05 0.01476879821295518 4.0331084894165574e-05 0.0005223393864707927 1.4264203380367382e-06 0.01476879821295518 4.0331084894165574e-05 0.018871398725166924 7.840793784251287e-05']
['59866.4163278121 0.03361616362989398 6.722621573490204e-05 0.014737026998936165 4.031265950809271e-05 0.0005212157096354245 1.4257686733096555e-06 0.014737026998936165 4.031265950809271e-05 0.01887913663095782 7.838669911822419e-05']
['59866.416359350056 0.03369716632102412 6.725935457584526e-05 0.014792543584660095 4.0327753167397944e-05 0.0005231792072002131 1.4263025023069382e-06 0.014792543584660095 4.0327753167397944e-05 0.01890462273636402 7.842288220595983e-05']
['59866.41639088802 0.03365652164767218 6.723102995262859e-05 0.014828392867231224 4.033590361053774e-05 0.0005244471162063227 1.4265907652656243e-06 0.014828392867231224 4.033590361053774e-05 0.018828128780440958 7.840278380625163e-05']
['59866.41642242598 0.03355347569140916 6.715315882532121e-05 0.014702099957634676 4.029000108899775e-05 0.0005199804182419342 1.4249672956648529e-06 0.014702099957634678 4.029000108899775e-05 0.018851375733774482 7.831239319526799e-05']
['59866.416453963946 0.03360385090043777 6.721201035052584e-05 0.014646510702465608 4.025152706191281e-05 0.0005180143505212777 1.4236065553112486e-06 0.014646510702465606 4.025152706191281e-05 0.018957340197972163 7.834309009845789e-05']
['59866.41648550191 0.03367783194461425 6.726656308892457e-05 0.014790935766026931 4.03371533232786e-05 0.0005231223422484212 1.426634964812325e-06 0.014790935766026931 4.03371533232786e-05 0.018886896178587322 7.843389858997164e-05']
['59866.41651703987 0.0337698084278937 6.732247557461619e-05 0.0147902386762704 4.033784609412737e-05 0.0005230976877416367 1.4266594665689941e-06 0.0147902386762704 4.033784609412737e-05 0.0189795697516233 7.848221164702419e-05']
['59866.416548577836 0.033630749427876395 6.724420555753705e-05 0.014801543181843726 4.034588701101071e-05 0.0005234975028396822 1.4269438558287665e-06 0.014801543181843726 4.034588701101071e-05 0.018829206246032668 7.841921817877005e-05']
['59866.4165801158 0.033596337805702654 6.719846646111755e-05 0.014752493391378057 4.031712560733316e-05 0.0005217627213707415 1.4259266292586459e-06 0.014752493391378057 4.031712560733316e-05 0.018843844414324597 7.836519962306878e-05']
['59866.41661165376 0.03366334929971864 6.725925332025244e-05 0.01484497579997828 4.038039161499982e-05 0.0005250336174769125 1.4281642065586097e-06 0.014844975799978278 4.038039161499982e-05 0.018818373499740363 7.844987689078063e-05']
['59866.416643191726 0.03371918750386914 6.727083809557716e-05 0.01476076746814283 4.0315508996371665e-05 0.0005220553569744383 1.4258694533418505e-06 0.014760767468142831 4.0315508996371665e-05 0.018958420035726307 7.842643638287973e-05']
['59866.416674729684 0.03362744364899875 6.719853279140277e-05 0.014801147482826444 4.034484617633991e-05 0.0005234835078497762 1.426907043832589e-06 0.014801147482826444 4.034484617633991e-05 0.018826296166172304 7.837952170248146e-05']
['59866.41670626765 0.033649491483532905 6.722893039717083e-05 0.014738060105577728 4.030807557513662e-05 0.0005212522483084792 1.4256065498454855e-06 0.014738060105577728 4.030807557513662e-05 0.018911431377955177 7.838667003335813e-05']
['59866.416737805615 0.03357596438233007 6.719059490059588e-05 0.014727368886938567 4.0306031303641364e-05 0.0005208741237986795 1.4255342485313763e-06 0.014727368886938567 4.0306031303641364e-05 0.0188485954953915 7.835274215077669e-05']
['59866.416769343574 0.0337374592619473 6.728966871844997e-05 0.014704172750797077 4.0279447977839874e-05 0.0005200537283036683 1.4245940557080143e-06 0.014704172750797079 4.0279447977839874e-05 0.019033286511150223 7.84240616497147e-05']
['59866.41680088154 0.03367526604515396 6.725943421653445e-05 0.014767737426327088 4.032824313355887e-05 0.0005223018688184757 1.4263198313150402e-06 0.014767737426327088 4.032824313355887e-05 0.01890752861882687 7.842320246819663e-05']
['59866.416832419505 0.03363604873386172 6.723920858187921e-05 0.014773017879457232 4.0333298097769635e-05 0.0005224886266445707 1.426498614101995e-06 0.014773017879457234 4.0333298097769635e-05 0.018863030854404488 7.840845685358823e-05']
['59866.416863957464 0.03362962882946578 6.719976978869429e-05 0.01475137062820581 4.030951441423163e-05 0.0005217230117465671 1.42565743836866e-06 0.01475137062820581 4.030951441423163e-05 0.018878258201259972 7.83624017751157e-05']
['59866.41689549543 0.033691844884974884 6.724772995568356e-05 0.01475915938906638 4.033506384194547e-05 0.0005219984828113495 1.4265610645272882e-06 0.01475915938906638 4.033506384194547e-05 0.018932685495908503 7.841667271267225e-05']
['59866.41692703339 0.03359663497525355 6.718786502918945e-05 0.014870736580372898 4.038051782612822e-05 0.0005259447187075144 1.428168670364156e-06 0.014870736580372896 4.038051782612822e-05 0.018725898394880654 7.838874553841794e-05']
['59866.41695857135 0.0335819908865253 6.717742843187336e-05 0.014694350869195735 4.029255193668768e-05 0.0005197063503020422 1.4250575134468366e-06 0.014694350869195735 4.029255193668768e-05 0.018887640017329562 7.833451750212126e-05']
['59866.41699010932 0.033591944306508706 6.717481962348149e-05 0.014642325634738593 4.025992853301254e-05 0.0005178663340288491 1.423903696567863e-06 0.014642325634738593 4.025992853301254e-05 0.018949618671770113 7.831550444790962e-05']
['59866.41702164728 0.03358866740100785 6.722316105769713e-05 0.014793215037424316 4.034750424705418e-05 0.0005232029549838749 1.427001053853314e-06 0.014793215037424314 4.034750424705418e-05 0.018795452363583535 7.840200559650973e-05']
['59866.41705318524 0.03363896808115317 6.721807182143807e-05 0.014711236426058033 4.029305560217852e-05 0.0005203035547112631 1.4250753269696215e-06 0.014711236426058032 4.029305560217852e-05 0.01892773165509514 7.836963384597543e-05']
['59866.41708472321 0.03370490942456666 6.727919455975451e-05 0.014820957641107139 4.0358352161945996e-05 0.0005241841488750663 1.4273847203593748e-06 0.014820957641107139 4.0358352161945996e-05 0.01888395178345952 7.845563465957657e-05']
['59866.41711626117 0.033632094020989566 6.720016478033215e-05 0.014711452779228421 4.028250762450423e-05 0.0005203112066393789 1.4247022685726246e-06 0.014711452779228421 4.028250762450423e-05 0.018920641241761144 7.834885172752716e-05']
['59866.41714779913 0.03350022265934914 6.712858778899754e-05 0.014738715050420965 4.031348035696804e-05 0.0005212754122438689 1.4257977048998864e-06 0.014738715050420965 4.031348035696804e-05 0.018761507608928175 7.830340986851593e-05']
['59866.41717933709 0.03382862210675387 6.733960379499921e-05 0.014834167677468727 4.03577174248454e-05 0.0005246513583384819 1.4273622711266807e-06 0.014834167677468727 4.03577174248454e-05 0.018994454429285143 7.850711811683792e-05']
['59866.41721087506 0.03344731326997508 6.706892063984469e-05 0.014690526243514487 4.027856800931786e-05 0.0005195710818392318 1.4245629331880045e-06 0.014690526243514487 4.027856800931786e-05 0.018756787026460595 7.823428376789187e-05']
['59866.41724241302 0.03370741021321818 6.728008115869646e-05 0.014757129449303717 4.030522802751763e-05 0.0005219266883785924 1.4255058384500963e-06 0.014757129449303717 4.030522802751763e-05 0.018950280763914463 7.842908087610727e-05']
['59866.41727395098 0.03354305669726265 6.713401883729701e-05 0.01474955788862827 4.032374033892602e-05 0.0005216588991989441 1.4261605775320301e-06 0.01474955788862827 4.032374033892602e-05 0.01879349880863438 7.831334828857517e-05']
['59866.41730548895 0.033744085036965896 6.73003169942079e-05 0.014775606978632765 4.032402380044726e-05 0.0005225801972961132 1.426170602932537e-06 0.014775606978632765 4.032402380044726e-05 0.01896847805833313 7.84560995906622e-05']
['59866.41733702691 0.033564608608766075 6.712718931420996e-05 0.014760287880930577 4.033164420599369e-05 0.0005220383950465552 1.4264401196461101e-06 0.014760287880930577 4.033164420599369e-05 0.0188043207278355 7.831156408592954e-05']
['59866.41736856487 0.033695805397973316 6.726032593747505e-05 0.014715768822647681 4.029149640920002e-05 0.0005204638554493288 1.4250201817985631e-06 0.014715768822647681 4.029149640920002e-05 0.018980036575325633 7.84050771832281e-05']
['59866.41740010284 0.03367373205222807 6.722592614829173e-05 0.01476723372515677 4.032442367870129e-05 0.0005222840540337875 1.4261847457327068e-06 0.01476723372515677 4.032442367870129e-05 0.018906498327071294 7.839250150055795e-05']
['59866.417431640795 0.03366478502244243 6.722407593965709e-05 0.014831203952832826 4.035285527963999e-05 0.0005245465380216448 1.42719030791702e-06 0.014831203952832826 4.035285527963999e-05 0.018833581069609605 7.840554390577462e-05']
['59866.41746317876 0.033676429151577 6.723599785440406e-05 0.014810612906503814 4.03547395970698e-05 0.0005238182787312678 1.427256952013311e-06 0.014810612906503814 4.03547395970698e-05 0.018865816245073188 7.841673555705274e-05']
['59866.41749471673 0.03362781661761698 6.724590532442068e-05 0.014735455541942439 4.031348819878117e-05 0.0005211601307135562 1.4257979822472915e-06 0.01473545554194244 4.031348819878117e-05 0.018892361075674543 7.840401210176823e-05']
['59866.417526254685 0.033542594521325325 6.71618538097674e-05 0.014733973263463858 4.032132515456874e-05 0.0005211077058364661 1.4260751578589325e-06 0.014733973263463858 4.032132515456874e-05 0.018808621257861466 7.833596791630921e-05']
['59866.41755779265 0.03356568060599792 6.714080000165033e-05 0.014809000540276455 4.035852601218547e-05 0.0005237612529412326 1.4273908690538125e-06 0.014809000540276457 4.035852601218547e-05 0.01875668006572146 7.833707708829748e-05']
['59866.41758933062 0.03361258450346607 6.720445905330691e-05 0.014763512227013744 4.032773997460002e-05 0.0005221524329615274 1.42630203570716e-06 0.014763512227013744 4.032773997460002e-05 0.018849072276452324 7.837579937778343e-05']
['59866.417620868575 0.03365499784006225 6.721707182550562e-05 0.014749913122578407 4.030129249408675e-05 0.0005216714630298593 1.4253666474280457e-06 0.014749913122578407 4.030129249408675e-05 0.01890508471748384 7.837301143562823e-05']
['59866.41765240654 0.03372940644367013 6.727771029230917e-05 0.014841689811010248 4.0358146745742825e-05 0.0005249173993908665 1.4273774552473467e-06 0.014841689811010248 4.0358146745742825e-05 0.01888771663265988 7.845425616833541e-05']
['59866.4176839445 0.033662898196009795 6.722504208160512e-05 0.014783080493662608 4.0322983469987554e-05 0.0005228445188203957 1.426133808769179e-06 0.014783080493662608 4.0322983469987554e-05 0.018879817702347187 7.839100253724575e-05']
['59866.417715482465 0.03375577578371462 6.72919675140174e-05 0.014852823399037247 4.0374842017842254e-05 0.0005253111695172766 1.4279679297097663e-06 0.014852823399037249 4.0374842017842254e-05 0.018902952384677374 7.847507094532183e-05']
['59866.41774702043 0.03364377351256244 6.722027372975453e-05 0.014830476618073782 4.0376827667674795e-05 0.000524520813816715 1.4280381577066772e-06 0.014830476618073782 4.0376827667674795e-05 0.018813296894488657 7.841462499309829e-05']
['59866.41777855839 0.03366920137804002 6.723868499928137e-05 0.014755480268134636 4.0322225329985584e-05 0.000521868360526345 1.4261069950516526e-06 0.014755480268134634 4.0322225329985584e-05 0.018913721109905385 7.840231256790018e-05']
['59866.417810096355 0.03360122666976882 6.721593075518289e-05 0.01485278645316438 4.037263319273549e-05 0.0005253098628243225 1.4278898085021736e-06 0.01485278645316438 4.037263319273549e-05 0.01874844021660444 7.840874223070223e-05']
['59866.41784163432 0.03363203972545971 6.72098267883496e-05 0.014735832726970485 4.032503429040678e-05 0.0005211734709050392 1.4262063417040932e-06 0.014735832726970486 4.032503429040678e-05 0.01889620699848922 7.837900999274257e-05']
['59866.41787317228 0.033827156463737 6.73688301410394e-05 0.014775050012911059 4.032624007600319e-05 0.0005225604986632816 1.4262489876458662e-06 0.014775050012911059 4.032624007600319e-05 0.01905210645082594 7.851601692164259e-05']
['59866.417904710244 0.03367975538467567 6.725181574797516e-05 0.014746655699517263 4.031938463604896e-05 0.0005215562552560987 1.4260065260556915e-06 0.014746655699517263 4.031938463604896e-05 0.01893309968515841 7.84121132149189e-05']
['59866.4179362482 0.033576727675377796 6.716250334683099e-05 0.014695259242604921 4.028545712505909e-05 0.0005197384774394301 1.4248065858155042e-06 0.014695259242604921 4.028545712505909e-05 0.018881468432772875 7.831806887039579e-05']
['59866.41796778617 0.03374885930234199 6.727457880561401e-05 0.014775440948946911 4.034279366967088e-05 0.000522574325197179 1.4268344512587876e-06 0.01477544094894691 4.034279366967088e-05 0.018973418353395083 7.844367377007789e-05']
['59866.417999324134 0.03360361819992386 6.71845885706394e-05 0.014760067697338725 4.032918297424526e-05 0.0005220306076449927 1.4263530713796975e-06 0.014760067697338723 4.032918297424526e-05 0.018843550502585134 7.835950446995082e-05']
['59866.41803086209 0.03373683794743972 6.730517624245475e-05 0.014846750363592431 4.036071533750541e-05 0.0005250963798260289 1.4274683005975247e-06 0.014846750363592431 4.036071533750541e-05 0.01889008758384729 7.847913156746218e-05']
['59866.41806240006 0.03381568956939062 6.735697873185534e-05 0.014775623819270731 4.033576687961333e-05 0.0005225807929118415 1.4265859293984038e-06 0.014775623819270731 4.033576687961333e-05 0.01904006575011989 7.851074240924056e-05']
['59866.418093938024 0.03373082815176748 6.7304273744314e-05 0.014741109087208378 4.031659793956643e-05 0.0005213600839746824 1.4259079668290046e-06 0.014741109087208378 4.031659793956643e-05 0.0189897190645591 7.84556775107462e-05']
['59866.41812547598 0.03375382065551553 6.732405747726654e-05 0.014843579337136602 4.0366524050633854e-05 0.0005249842277071132 1.427673741799168e-06 0.0148435793371366 4.0366524050633854e-05 0.01891024131837893 7.849831195084828e-05']
['59866.41815701395 0.03374618891348455 6.729139666477982e-05 0.014815583572225944 4.035808551837674e-05 0.0005239940800690755 1.4273752897722435e-06 0.014815583572225944 4.035808551837674e-05 0.018930605341258604 7.846596161269772e-05']
['59866.41818855191 0.033797207482284757 6.732186117394989e-05 0.014882446782403486 4.0393704410085143e-05 0.0005263588823825751 1.4286350503684319e-06 0.014882446782403486 4.0393704410085143e-05 0.01891476069988127 7.851040916906441e-05']
['59866.41822008987 0.03366413631030912 6.727253459139845e-05 0.01477605322489451 4.032500383444914e-05 0.0005225959800290894 1.4262052645449366e-06 0.01477605322489451 4.032500383444914e-05 0.018888083085414613 7.843277277133099e-05']
['59866.41825162784 0.03363919276927498 6.720933010316975e-05 0.014825790350502348 4.0361764257094786e-05 0.0005243550710059049 1.4275053985392036e-06 0.014825790350502348 4.0361764257094786e-05 0.018813402418772635 7.839748763105954e-05']
['59866.418283165796 0.03362993825532329 6.721722757587411e-05 0.014664561595340832 4.026567955791585e-05 0.0005186527702609031 1.424107097465909e-06 0.014664561595340832 4.026567955791585e-05 0.018965376659982457 7.83548379696341e-05']
['59866.41831470376 0.03369463929327869 6.726861827162943e-05 0.014747658504632336 4.0314618504223715e-05 0.0005215917222318812 1.4258379586247103e-06 0.014747658504632334 4.0314618504223715e-05 0.01894698078864636 7.842407455185744e-05']
['59866.41834624173 0.03363396426123132 6.723522802393985e-05 0.014874836864776317 4.03913048838519e-05 0.0005260897366032671 1.4285501844881875e-06 0.014874836864776319 4.03913048838519e-05 0.018759127396454998 7.843489910525456e-05']
['59866.418377779686 0.03360845279218066 6.720755873779539e-05 0.014745756367808538 4.031904017711361e-05 0.0005215244479034491 1.4259943433129684e-06 0.014745756367808538 4.031904017711361e-05 0.01886269642437212 7.83739813477529e-05']
['59866.41840931765 0.03376626940564564 6.729756334336722e-05 0.01473441303813785 4.0307063267902363e-05 0.0005211232596838468 1.4255707468009835e-06 0.01473441303813785 4.0307063267902363e-05 0.019031856367507788 7.844502139229237e-05']
['59866.41844085561 0.03378875294475256 6.73408452383793e-05 0.014836364678116236 4.03717060547705e-05 0.0005247290613413768 1.4278570177043834e-06 0.014836364678116234 4.03717060547705e-05 0.018952388266636325 7.851537484589974e-05']
['59866.418472393576 0.033713319464786055 6.727925959869579e-05 0.01475030766297537 4.0325332107015226e-05 0.000521685417041954 1.4262168748119529e-06 0.01475030766297537 4.0325332107015226e-05 0.018963011801810686 7.843870971459036e-05']
['59866.41850393154 0.03370537434134012 6.726526456854973e-05 0.014810304409642604 4.034511453951202e-05 0.0005238073678867367 1.42691653523823e-06 0.014810304409642604 4.034511453951202e-05 0.018895069931697515 7.843687962102608e-05']
['59866.4185354695 0.03371986473736013 6.728484295733337e-05 0.014764490105831102 4.032221170431706e-05 0.0005221870183498669 1.4261065131422084e-06 0.014764490105831102 4.032221170431706e-05 0.01895537463152903 7.844189472801366e-05']
['59866.418567007466 0.033756422642527845 6.7310165857981e-05 0.014760517149012801 4.0341236920274766e-05 0.0005220465037462395 1.4267793925117773e-06 0.014760517149012801 4.0341236920274766e-05 0.018995905493515042 7.847339564519081e-05']
['59866.41859854543 0.033745177199429544 6.732991364079464e-05 0.01482318002765654 4.0350002097855084e-05 0.0005242627497205769 1.427089397253774e-06 0.014823180027656539 4.0350002097855084e-05 0.018921997171773005 7.849484021369668e-05']
['59866.41863008339 0.033772906392837684 6.734863429273207e-05 0.014887095091551868 4.038149260662559e-05 0.0005265232826887938 1.4282031461718417e-06 0.014887095091551868 4.038149260662559e-05 0.018885811301285818 7.852708759552415e-05']
['59866.418661621356 0.033838134876407445 6.739310645090017e-05 0.014789983766693203 4.035768651793162e-05 0.0005230886721595806 1.4273611780182132e-06 0.014789983766693203 4.035768651793162e-05 0.019048151109714244 7.855299904002394e-05']
['59866.418693159314 0.033869665957805425 6.741316643708026e-05 0.014774937450171909 4.032849561130185e-05 0.0005225565175707607 1.426328760888555e-06 0.014774937450171909 4.032849561130185e-05 0.019094728507633517 7.855521986058137e-05']
['59866.41872469728 0.03372134663567413 6.727783275884597e-05 0.014822987727112217 4.033698081947494e-05 0.0005242559484800906 1.426628863738313e-06 0.014822987727112217 4.033698081947494e-05 0.018898358908561914 7.844347520576799e-05']
['59866.418756235245 0.03379019917019367 6.730314621306272e-05 0.014822143193297003 4.03544873585073e-05 0.0005242260792064686 1.4272480308990753e-06 0.014822143193297005 4.03544873585073e-05 0.018968055976896665 7.847418773166642e-05']
['59866.418787773204 0.0337526026416726 6.729600968559772e-05 0.01479098151122819 4.034667020596507e-05 0.0005231239601539553 1.4269715556839644e-06 0.01479098151122819 4.034667020596507e-05 0.018961621130444407 7.846404728481045e-05']
['59866.41881931117 0.03367305166159901 6.724397098079232e-05 0.014719314748808224 4.029490676930667e-05 0.0005205892669329486 1.4251407986138292e-06 0.014719314748808224 4.029490676930667e-05 0.018953736912790783 7.839280033786748e-05']
['59866.418850849135 0.03382742034556965 6.734824653686393e-05 0.01484671182376532 4.036184612378772e-05 0.0005250950167584754 1.4275082939811714e-06 0.01484671182376532 4.036184612378772e-05 0.018980708521804335 7.851665386470899e-05']
['59866.41888238709 0.03370703970589151 6.72487212835793e-05 0.014979959939131357 4.046134529591525e-05 0.0005298077048069607 1.4310273573317597e-06 0.014979959939131357 4.046134529591525e-05 0.018727079766760156 7.848255205733191e-05']
['59866.41891392506 0.0336978003037558 6.724199144321586e-05 0.014793297331026344 4.033566111235453e-05 0.0005232058655246633 1.4265821886468359e-06 0.014793297331026344 4.033566111235453e-05 0.018904502972729456 7.841205883421392e-05']
['59866.41894546302 0.033735300285031536 6.728273873775937e-05 0.014826812646031653 4.03562309598664e-05 0.0005243912273140805 1.427309698182427e-06 0.014826812646031653 4.03562309598664e-05 0.018908487638999882 7.845758286704776e-05']
['59866.41897700098 0.033709652269577776 6.727104243978911e-05 0.01472657176245518 4.0306704463258896e-05 0.0005208459312871705 1.4255580566826252e-06 0.01472657176245518 4.0306704463258896e-05 0.018983080507122597 7.84220860193377e-05']
['59866.41900853895 0.03388757639097554 6.738012089401107e-05 0.01483029335400233 4.035409126457009e-05 0.0005245143321760788 1.4272340219417343e-06 0.014830293354002329 4.035409126457009e-05 0.01905728303697321 7.85400112903022e-05']
['59866.41904007691 0.03376857894016851 6.732865618703824e-05 0.014851523550753642 4.0369639816566806e-05 0.0005252651967884754 1.4277839394768895e-06 0.014851523550753642 4.0369639816566806e-05 0.01891705538941487 7.850385826742363e-05']
['59866.41907161487 0.033792955480091605 6.73178480852018e-05 0.014873266931727264 4.0382186732003064e-05 0.0005260342115799159 1.4282276958351642e-06 0.014873266931727264 4.0382186732003064e-05 0.01891968854836434 7.850104251588429e-05']
['59866.41910315284 0.03382606550978634 6.734539241943083e-05 0.014899983187778998 4.0396349894562946e-05 0.0005269791058491475 1.4287286152421018e-06 0.014899983187778998 4.0396349894562946e-05 0.01892608232200734 7.853194868925058e-05']
['59866.4191346908 0.033824319894996034 6.736470971316974e-05 0.014863653662983397 4.037992564708746e-05 0.0005256942117488365 1.4281477263149265e-06 0.014863653662983397 4.037992564708746e-05 0.01896066623201264 7.854006945504911e-05']
['59866.41916622876 0.03375577673714971 6.731127442137884e-05 0.014745146417196608 4.031873194627888e-05 0.0005215028753134646 1.4259834418771996e-06 0.014745146417196608 4.031873194627888e-05 0.019010630319953103 7.846277977478276e-05']
['59866.41919776672 0.03377796102502241 6.732087453399963e-05 0.014828815287948861 4.0361323226732545e-05 0.0005244620562830508 1.427489800280936e-06 0.01482881528794886 4.0361323226732545e-05 0.01894914573707355 7.849290770913829e-05']
['59866.41922930469 0.033764455325785786 6.730490419892562e-05 0.014820185254419778 4.036396550496442e-05 0.000524156831284117 1.427583251756853e-06 0.014820185254419778 4.036396550496442e-05 0.01894427007136601 7.848056982790399e-05']
['59866.41926084265 0.033754464014498796 6.729914760626163e-05 0.014746841969661344 4.0326139127680405e-05 0.0005215628432148055 1.4262454173292954e-06 0.014746841969661343 4.0326139127680405e-05 0.019007622044837455 7.845618372999305e-05']
['59866.41929238061 0.033715836008218224 6.725225337709333e-05 0.014799136336065456 4.034556740258975e-05 0.0005234123780834885 1.4269325519932e-06 0.014799136336065456 4.034556740258975e-05 0.018916699672152766 7.842595484489604e-05']
['59866.41932391858 0.0338091973853946 6.733928740705498e-05 0.014848040845005085 4.035923901245501e-05 0.0005251420212695382 1.4274160862798842e-06 0.014848040845005087 4.035923901245501e-05 0.01896115654038951 7.850762894238001e-05']
['59866.41935545654 0.03365344872690337 6.724484387540175e-05 0.014793590706585352 4.0353226123809386e-05 0.0005232162415625297 1.4272034238465039e-06 0.014793590706585353 4.0353226123809386e-05 0.01885985802031802 7.842354165954537e-05']
['59866.4193869945 0.03380803244457037 6.735343167613527e-05 0.014761320616968918 4.033312968247779e-05 0.0005220749206122021 1.4264926576295083e-06 0.014761320616968918 4.033312968247779e-05 0.01904671182760145 7.85063443839757e-05']
['59866.41941853247 0.03380172472964769 6.733567728928498e-05 0.014820180007021974 4.0377097280459326e-05 0.0005241566456953839 1.4280476933083168e-06 0.014820180007021976 4.0377097280459326e-05 0.018981544722625712 7.851371485799411e-05']
['59866.419450070425 0.033748481639842044 6.727745871436006e-05 0.014786723348577105 4.034873218523414e-05 0.0005229733584574198 1.427044483282459e-06 0.014786723348577105 4.034873218523414e-05 0.018961758291264938 7.844919782902927e-05']
['59866.41948160839 0.033752138627382695 6.729321380316508e-05 0.014790011288122344 4.03445056152775e-05 0.0005230896455310225 1.4268949989489208e-06 0.014790011288122344 4.03445056152775e-05 0.01896212733926035 7.846053630520025e-05']
['59866.41951314636 0.033777768929290554 6.731003211263944e-05 0.014855143616716804 4.037006689186861e-05 0.0005253932304312212 1.4277990441758572e-06 0.014855143616716804 4.037006689186861e-05 0.01892262531257375 7.848810562026899e-05']
['59866.419544684315 0.033858247389843915 6.737911213981655e-05 0.014748387156837954 4.032887750250424e-05 0.0005216174930319521 1.4263422675269067e-06 0.014748387156837952 4.032887750250424e-05 0.01910986023300596 7.852619380411842e-05']
['59866.41957622228 0.033772460488626754 6.732652071543198e-05 0.0148321316174908 4.0391425210447615e-05 0.0005245793474473888 1.4285544401709637e-06 0.0148321316174908 4.0391425210447615e-05 0.018940328871135954 7.85132321470507e-05']
['59866.41960776025 0.03370746172560498 6.727139440951683e-05 0.0147981483382065 4.035101071060933e-05 0.0005233774348072625 1.427125069632775e-06 0.0147981483382065 4.035101071060933e-05 0.01890931338739848 7.844516920224267e-05']
['59866.419639298205 0.03375091000122336 6.727727273990327e-05 0.01482763727645875 4.035584098537362e-05 0.0005244203926493462 1.427295905656159e-06 0.014827637276458748 4.035584098537362e-05 0.018923272724764607 7.845269484827206e-05']
['59866.41967083617 0.03374730504877974 6.7326020781854e-05 0.01482445743978129 4.038105900256331e-05 0.0005243079289325813 1.428187810565207e-06 0.014824457439781289 4.038105900256331e-05 0.018922847608998455 7.85074709851689e-05']
['59866.41970237413 0.03379525888165239 6.735763504900829e-05 0.014796528599780848 4.035627274298554e-05 0.0005233201482790495 1.4273111759579715e-06 0.014796528599780848 4.035627274298554e-05 0.018998730281871545 7.852184249685962e-05']
['59866.419733912095 0.03377064367019598 6.731639812506334e-05 0.0148295013160819 4.0362426538778945e-05 0.0005244863195649338 1.4275288219622599e-06 0.0148295013160819 4.0362426538778945e-05 0.01894114235411408 7.848963582939062e-05']
['59866.41976545006 0.03380724370737351 6.736199521631818e-05 0.01483312020947549 4.037362931202183e-05 0.0005246143117365143 1.4279250390151358e-06 0.014833120209475489 4.037362931202183e-05 0.018974123497898017 7.85345041580312e-05']
['59866.41979698802 0.033778715524145166 6.731753367867296e-05 0.014859915364783958 4.0377168219117574e-05 0.0005255619964961272 1.4280502022501205e-06 0.01485991536478396 4.0377168219117574e-05 0.018918800159361204 7.849819140575269e-05']
['59866.419828525984 0.03382006313267917 6.734711823386255e-05 0.014871953827861602 4.03876752620691e-05 0.0005259877700308018 1.428421812877457e-06 0.0148719538278616 4.03876752620691e-05 0.01894810930481757 7.852896693246519e-05']
['59866.41986006395 0.033807643777316536 6.733802117492806e-05 0.014847948310282369 4.037787719480343e-05 0.0005251387485231987 1.428075277135662e-06 0.014847948310282369 4.037787719480343e-05 0.018959695467034167 7.851612613032871e-05']
['59866.41989160191 0.03367953776223448 6.72231779545764e-05 0.014811172215729352 4.034638431938288e-05 0.0005238380602485926 1.4269614445144713e-06 0.014811172215729352 4.034638431938288e-05 0.018868365546505127 7.84014437492065e-05']
['59866.419923139874 0.03377289717074081 6.732465824301154e-05 0.014857272524667928 4.036571007143796e-05 0.0005254685251476232 1.4276449531741455e-06 0.014857272524667927 4.036571007143796e-05 0.01891562464607288 7.849840862788041e-05']
['59866.41995467783 0.033809026697463856 6.73278600666582e-05 0.014856462574896728 4.038110055713608e-05 0.0005254398790343471 1.428189280257577e-06 0.01485646257489673 4.038110055713608e-05 0.018952564122567128 7.850906968854645e-05']
['59866.4199862158 0.03377162589977418 6.732368414277302e-05 0.014849070211015749 4.037486810791379e-05 0.0005251784276448378 1.4279688524572887e-06 0.01484907021101575 4.037486810791379e-05 0.018922555688758426 7.850228290494043e-05']
['59866.420017753764 0.03382091058113314 6.734735671537823e-05 0.014891798594500561 4.0378607121609095e-05 0.0005266896350763786 1.428101093015488e-06 0.014891798594500561 4.0378607121609095e-05 0.018929111986632576 7.852450808269774e-05']
['59866.42004929172 0.03394230940031381 6.74586813935233e-05 0.014881006701234059 4.037255166261538e-05 0.0005263079499300044 1.4278869249640346e-06 0.014881006701234059 4.037255166261538e-05 0.019061302699079748 7.861689782167339e-05']
['59866.42008082969 0.033774494075537495 6.731790049418739e-05 0.014796481661755552 4.035038972444791e-05 0.000523318488185995 1.4271031067400678e-06 0.01479648166175555 4.035038972444791e-05 0.018978012413781945 7.848473531751346e-05']
['59866.420112367654 0.03383068523711548 6.735922908862627e-05 0.014777577109541721 4.0322250342796736e-05 0.0005226498764233795 1.4261078796988827e-06 0.014777577109541721 4.0322250342796736e-05 0.019053108127573756 7.850572982987425e-05']
['59866.42014390561 0.03383410820454948 6.734503583040308e-05 0.01478898498282007 4.034254891549936e-05 0.0005230533474061385 1.4268257948507343e-06 0.01478898498282007 4.034254891549936e-05 0.019045123221729413 7.850398145315773e-05']
['59866.42017544358 0.033866612791604904 6.73772162512092e-05 0.014743276132945543 4.0317260812972226e-05 0.0005214367275393437 1.4259314111799326e-06 0.014743276132945541 4.0317260812972226e-05 0.01912333665865936 7.851860154908157e-05']
['59866.42020698154 0.033783624694861965 6.73103970618311e-05 0.014789773739188196 4.035005729668383e-05 0.0005230812439561124 1.4270913495129847e-06 0.014789773739188198 4.035005729668383e-05 0.01899385095567377 7.847812865038915e-05']
['59866.4202385195 0.03384416537635047 6.737058274765158e-05 0.014870123923668982 4.0390341824824296e-05 0.0005259230504091041 1.4285161232426914e-06 0.014870123923668982 4.0390341824824296e-05 0.018974041452681487 7.855046233144855e-05']
['59866.42027005747 0.03379808250255933 6.732955371843415e-05 0.014777490458590592 4.034073302506811e-05 0.0005226468117728915 1.4267615708644575e-06 0.01477749045859059 4.034073302506811e-05 0.019020592043968738 7.848976713510705e-05']
['59866.420301595426 0.03372322365898817 6.728050730104394e-05 0.01480033017596644 4.0357232635290114e-05 0.0005234546015327111 1.427345125203551e-06 0.01480033017596644 4.0357232635290114e-05 0.018922893483021733 7.845618451508302e-05']
['59866.42033313339 0.03379606575948555 6.734066238675352e-05 0.014825554556170325 4.035796927507824e-05 0.0005243467314873506 1.4273711785065642e-06 0.014825554556170325 4.035796927507824e-05 0.018970511203315228 7.850815559351067e-05']
['59866.42036467136 0.03385022196103926 6.736903510375788e-05 0.014821074945447071 4.0356596995278304e-05 0.0005241882976674099 1.427322644036905e-06 0.014821074945447071 4.0356596995278304e-05 0.01902914701559219 7.853178854356157e-05']
['59866.420396209316 0.03374796025498721 6.730170306916908e-05 0.014754660747215941 4.032553996563203e-05 0.0005218393759029722 1.4262242263066928e-06 0.014754660747215941 4.032553996563203e-05 0.01899329950777127 7.845806784219447e-05']
['59866.42042774728 0.033731019889339006 6.730878639801199e-05 0.014787623619845779 4.035551206371343e-05 0.000523005199040205 1.4272842724321348e-06 0.01478762361984578 4.035551206371343e-05 0.018943396269493228 7.847955198838563e-05']
['59866.42045928524 0.03386764117460003 6.738821835980016e-05 0.014916196166240177 4.040286820596726e-05 0.0005275525226634451 1.4289591533489038e-06 0.014916196166240177 4.040286820596726e-05 0.018951445008359855 7.857202894781874e-05']
['59866.420490823206 0.033881297128587 6.739247862740441e-05 0.01489119015356606 4.038718465173869e-05 0.0005266681158803108 1.42840446108652e-06 0.01489119015356606 4.038718465173869e-05 0.01899010697502094 7.856761966382078e-05']
['59866.42052236117 0.033935758909640526 6.743908725507491e-05 0.014933724870877825 4.041470563285113e-05 0.0005281724737721294 1.4293778166826942e-06 0.014933724870877825 4.041470563285113e-05 0.019002034038762702 7.862174585436028e-05']
['59866.42055389913 0.03388326270981759 6.740263081976096e-05 0.014871212688490676 4.038739717266734e-05 0.0005259615575876012 1.42841197747681e-06 0.014871212688490676 4.038739717266734e-05 0.019012050021326915 7.857643725575605e-05']
['59866.420585437096 0.03380302770018345 6.735252496465965e-05 0.014856094626913719 4.039878689762968e-05 0.0005254268655365033 1.4288148065941908e-06 0.014856094626913717 4.039878689762968e-05 0.018946933073269737 7.853931882767508e-05']
['59866.42061697506 0.03388888000693373 6.740049830842283e-05 0.01480453177014959 4.036362655348531e-05 0.0005236032025289588 1.427571263800549e-06 0.01480453177014959 4.036362655348531e-05 0.01908434823678414 7.856239253467866e-05']
['59866.42064851302 0.033795032267837574 6.731585365132891e-05 0.0148804197161474 4.037752131753646e-05 0.0005262871895793238 1.428062690552068e-06 0.0148804197161474 4.037752131753646e-05 0.018914612551690173 7.849693230028319e-05']
['59866.420680050986 0.03382173373153218 6.736346521040118e-05 0.014863631905309682 4.040370202051259e-05 0.0005256934422285428 1.4289886435059063e-06 0.014863631905309684 4.040370202051259e-05 0.018958101826222498 7.855122902994773e-05']
['59866.420711588944 0.03377943204348755 6.735003465553987e-05 0.014773015490742766 4.0332735945067345e-05 0.0005224885421610785 1.4264787320172521e-06 0.014773015490742766 4.0332735945067345e-05 0.019006416552744786 7.8503227684707e-05']
['59866.42074312691 0.033938353601541627 6.742414047285578e-05 0.014972621181224015 4.043193567605271e-05 0.0005295481493409367 1.4299872048038538e-06 0.014972621181224015 4.043193567605271e-05 0.018965732420317613 7.86177851444306e-05']
['59866.420774664875 0.0338555553568917 6.738243976199418e-05 0.014786115705207756 4.0350954134783604e-05 0.0005229518674694489 1.4271230686722586e-06 0.014786115705207756 4.0350954134783604e-05 0.019069439651683943 7.854038889556242e-05']
['59866.420806202834 0.0338148352775663 6.733581995448807e-05 0.014810119020930136 4.036247225776631e-05 0.0005238008111022962 1.4275304389406671e-06 0.014810119020930138 4.036247225776631e-05 0.01900471625663616 7.850631704329397e-05']
['59866.4208377408 0.033715705403186316 6.726178135456345e-05 0.014783392408718307 4.0341055336659224e-05 0.0005228555505588266 1.426772970305111e-06 0.014783392408718307 4.0341055336659224e-05 0.018932312994468008 7.843180462455586e-05']
['59866.420869278765 0.033798602563777064 6.73414378484236e-05 0.014799583592031124 4.034643876701815e-05 0.0005234281965274359 1.4269633702056475e-06 0.014799583592031122 4.034643876701815e-05 0.01899901897174594 7.850289404011705e-05']
['59866.42090081672 0.03388617894298548 6.741131054799258e-05 0.01493016595917199 4.042198635453498e-05 0.0005280466030187937 1.4296353195371967e-06 0.014930165959171992 4.042198635453498e-05 0.018956012983813483 7.860166519002066e-05']
['59866.42093235469 0.033799379156446686 6.735764061022268e-05 0.014805194908922504 4.034073384938322e-05 0.0005236266562653289 1.4267616000186405e-06 0.014805194908922506 4.034073384938322e-05 0.01899418424752418 7.85138621905883e-05']
['59866.42096389265 0.0337649744241242 6.730311786804031e-05 0.014784590947724559 4.034801733267157e-05 0.0005228979402049007 1.4270192005449222e-06 0.014784590947724559 4.034801733267157e-05 0.01898038347639964 7.847083647723459e-05']
['59866.42099543061 0.03382968117772419 6.736530807765498e-05 0.014909890080101894 4.042053060054892e-05 0.0005273294904900071 1.4295838327721284e-06 0.014909890080101896 4.042053060054892e-05 0.018919791097622294 7.856146654962139e-05']
['59866.42102696858 0.033867023083193566 6.739426585093411e-05 0.01480070552570494 4.034253030478355e-05 0.0005234678768141046 1.4268251366313089e-06 0.01480070552570494 4.034253030478355e-05 0.019066317557488624 7.854620818969406e-05']
['59866.42105850654 0.03382469923276637 6.734137993173527e-05 0.014859484982534168 4.0382675463590856e-05 0.0005255467748377997 1.4282449811791737e-06 0.014859484982534166 4.0382675463590856e-05 0.018965214250232204 7.852147431568017e-05']
['59866.4210900445 0.03390731147813553 6.741444630489734e-05 0.014801682627678815 4.035128874074629e-05 0.0005235024347272261 1.4271349029373585e-06 0.014801682627678813 4.035128874074629e-05 0.01910562885045671 7.856802195317739e-05']
['59866.42112158247 0.03372704864842139 6.728462526914519e-05 0.014859440217016533 4.038484896221572e-05 0.000525545191581486 1.4283218529680513e-06 0.014859440217016531 4.038484896221572e-05 0.018867608431404857 7.847392448011165e-05']
['59866.42115312043 0.03385314304458458 6.737309773900928e-05 0.014886438761932002 4.039514944045746e-05 0.0005265000697769495 1.4286861578632478e-06 0.014886438761932002 4.039514944045746e-05 0.01896670428265258 7.8555091478955e-05']
['59866.42118465839 0.03389177082797536 6.741701052953362e-05 0.014832545538864296 4.0373578245693306e-05 0.0005245939869213096 1.4279232329132226e-06 0.014832545538864296 4.0373578245693306e-05 0.01905922528911106 7.858167171230431e-05']
['59866.42121619635 0.033786219187778126 6.73343419727006e-05 0.014863207216063965 4.0403300763209435e-05 0.0005256784219190464 1.428974451931851e-06 0.014863207216063965 4.0403300763209435e-05 0.01892301197171416 7.8526048681052e-05']
['59866.42124773432 0.03377269867566261 6.731898568142566e-05 0.014739178744897505 4.031258040693197e-05 0.000521291812081208 1.4257658756783806e-06 0.014739178744897505 4.031258040693197e-05 0.01903351993076511 7.846623459961201e-05']
['59866.42127927228 0.03382838684638057 6.736364324262499e-05 0.01477943215191721 4.0336793805832035e-05 0.0005227154851264249 1.4266222494837142e-06 0.014779432151917212 4.0336793805832035e-05 0.01904895469446336 7.851698775076553e-05']
['59866.42131081024 0.03382209141659236 6.735215379688929e-05 0.014774515298499975 4.034385184177668e-05 0.000522541587009578 1.4268718764412943e-06 0.014774515298499975 4.034385184177668e-05 0.019047576118092387 7.851075724071865e-05']
['59866.42134234821 0.0337593879675849 6.729354083554065e-05 0.014821408365822884 4.037496568844667e-05 0.0005242000900009517 1.427972303662657e-06 0.014821408365822885 4.037496568844667e-05 0.018937979601762016 7.847648369115313e-05']
['59866.421373886165 0.03384491109320786 6.73886172504145e-05 0.014818228090291768 4.035764696288312e-05 0.0005240876107629137 1.427359779044548e-06 0.01481822809029177 4.035764696288312e-05 0.019026683002916094 7.854912732362831e-05']
['59866.42140542413 0.033819976682640196 6.735736819827426e-05 0.01484867166615379 4.0385041202534874e-05 0.0005251643320037656 1.4283286520785082e-06 0.01484867166615379 4.0385041202534874e-05 0.018971305016486407 7.853640304679308e-05']
['59866.4214369621 0.033805011639472485 6.732503539407828e-05 0.014891345937072713 4.038223901022761e-05 0.0005266736255947855 1.4282295447991315e-06 0.014891345937072713 4.038223901022761e-05 0.018913665702399773 7.850723290431935e-05']
['59866.421468500055 0.03383169561488026 6.737496795931898e-05 0.014788664068715207 4.033778338946037e-05 0.0005230419973914503 1.4266572488450591e-06 0.014788664068715207 4.033778338946037e-05 0.019043031546165053 7.85272123298305e-05']
['59866.42150003802 0.03395376185504452 6.745116269161757e-05 0.014888544684759746 4.039244899431052e-05 0.0005265745515609062 1.4285906491181724e-06 0.014888544684759746 4.039244899431052e-05 0.019065217170284775 7.862066702978956e-05']
['59866.42153157599 0.03399118899905923 6.749331743399826e-05 0.014805218025363205 4.035793189733661e-05 0.0005236274738421742 1.4273698565393768e-06 0.014805218025363205 4.035793189733661e-05 0.019185970973696023 7.863911600009574e-05']
['59866.421563113945 0.03383674072545086 6.736543512002869e-05 0.014798941139638564 4.034453218606707e-05 0.0005234054744221076 1.4268959386983655e-06 0.014798941139638562 4.034453218606707e-05 0.019037799585812303 7.85225007639428e-05']
['59866.42159465191 0.033847219421961346 6.737499216543946e-05 0.014891021951333707 4.041871777498739e-05 0.0005266621669432623 1.4295197171834437e-06 0.014891021951333705 4.041871777498739e-05 0.018956197470627642 7.856883807125513e-05']
['59866.42162618987 0.03377205297140732 6.730388634043856e-05 0.014944525935696153 4.041857545242242e-05 0.0005285544832957945 1.429514683552393e-06 0.014944525935696154 4.041857545242242e-05 0.018827527035711167 7.850779807210132e-05']
['59866.421657727835 0.033881056393529486 6.737718865051836e-05 0.014805490995022359 4.0358979403537684e-05 0.0005236371281689672 1.4274069044926703e-06 0.014805490995022357 4.0358979403537684e-05 0.01907556539850713 7.854000744170272e-05']
['59866.4216892658 0.033821766112930376 6.735208423429145e-05 0.0148470486813214 4.037330824894137e-05 0.0005251069306574016 1.4279136837315139e-06 0.0148470486813214 4.037330824894137e-05 0.018974717431608976 7.852583822963705e-05']
['59866.42172080376 0.033972186144803976 6.74636411111396e-05 0.014819737600771467 4.0376447288451816e-05 0.0005241409987750232 1.428024704543658e-06 0.014819737600771465 4.0376447288451816e-05 0.01915244854403251 7.86231541443726e-05']
['59866.421752341725 0.03390440255192602 6.743500558222222e-05 0.014829987318716797 4.035293665504437e-05 0.0005245035083919781 1.4271931859832098e-06 0.014829987318716797 4.035293665504437e-05 0.01907441523320922 7.858650949469868e-05']
['59866.42178387969 0.03395465898793929 6.744400193380107e-05 0.014863138509363773 4.040350746448733e-05 0.000525675991916611 1.4289817624940998e-06 0.014863138509363773 4.040350746448733e-05 0.01909152047857552 7.862020613226251e-05']
['59866.42181541765 0.033968946706610194 6.742810041362879e-05 0.014878899034498488 4.0378906716275215e-05 0.0005262334064679253 1.4281116890092738e-06 0.01487889903449849 4.0378906716275215e-05 0.019090047672111705 7.859392363912151e-05']
['59866.421846955614 0.03398088580338112 6.747846018090569e-05 0.014806005741284932 4.0361693700241586e-05 0.0005236553335938842 1.4275029031009912e-06 0.014806005741284932 4.0361693700241586e-05 0.019174880062096188 7.86282958402266e-05']
['59866.42187849357 0.03383093252737615 6.73458896593876e-05 0.014834688151179078 4.035916967753587e-05 0.0005246697663304267 1.4274136340587487e-06 0.014834688151179077 4.035916967753587e-05 0.018996244376197076 7.851325640345419e-05']
['59866.42191003154 0.03398110100516681 6.746172516721145e-05 0.014815374867565796 4.035020534542589e-05 0.0005239866986516735 1.427096585666122e-06 0.014815374867565794 4.035020534542589e-05 0.019165726137601015 7.860803670080055e-05']
['59866.421941569504 0.03393151759530818 6.74253373180393e-05 0.01489778425703396 4.0382556011812174e-05 0.0005269013345830165 1.4282407564367206e-06 0.01489778425703396 4.0382556011812174e-05 0.019033733338274218 7.859342811265157e-05']
['59866.42197310746 0.03379079595699874 6.732554022656003e-05 0.01487838305038718 4.03973575615423e-05 0.0005262151572630649 1.4287642541711584e-06 0.01487838305038718 4.03973575615423e-05 0.01891241290661156 7.851544347931336e-05']
['59866.42200464543 0.033886020798831636 6.739882498617597e-05 0.01485084130454271 4.0396460057333725e-05 0.0005252410672647253 1.4287325114531049e-06 0.01485084130454271 4.0396460057333725e-05 0.019035179494288925 7.857783144552245e-05']
['59866.422036183394 0.03394601209535393 6.744941233945564e-05 0.014914221634933863 4.0395147561644255e-05 0.0005274826879039585 1.4286860914138237e-06 0.014914221634933864 4.0395147561644255e-05 0.019031790460420066 7.86205518389748e-05']
['59866.42206772135 0.03389673107409445 6.74007416997247e-05 0.014961624594022028 4.042953427087288e-05 0.0005291592246275283 1.4299022724694678e-06 0.014961624594022028 4.042953427087288e-05 0.018935106480072426 7.85964835284168e-05']
['59866.42209925932 0.033989307910192564 6.749219180201035e-05 0.014966490893444819 4.044427947572581e-05 0.0005293313347625733 1.4304237774115225e-06 0.014966490893444819 4.044427947572581e-05 0.019022817016747746 7.868249930289435e-05']
['59866.42213079728 0.033896207490363074 6.740859128287877e-05 0.014858379711073967 4.038122274597047e-05 0.0005255076838563888 1.4281936018035733e-06 0.014858379711073967 4.038122274597047e-05 0.019037827779289106 7.857837698248725e-05']
['59866.42216233524 0.03391430586921335 6.742948197779883e-05 0.014903074990003167 4.0397201890330625e-05 0.000527088455984045 1.428758748428306e-06 0.014903074990003165 4.0397201890330625e-05 0.019011230879210188 7.860450979659137e-05']
['59866.42219387321 0.03405597416758288 6.75291016091132e-05 0.014910101740396312 4.0407804618822526e-05 0.0005273369764415877 1.429133743239361e-06 0.014910101740396312 4.0407804618822526e-05 0.01914587242718657 7.869542704787153e-05']
['59866.42222541117 0.03390525159112003 6.741058750272847e-05 0.014898312619814263 4.0411128973021326e-05 0.0005269200215937345 1.4292513182178783e-06 0.014898312619814261 4.0411128973021326e-05 0.019006938971305773 7.859546203399516e-05']
['59866.42225694913 0.03391493948268608 6.740605118509255e-05 0.01488777669255454 4.040031412238278e-05 0.0005265473893929697 1.4288688211205617e-06 0.01488777669255454 4.040031412238278e-05 0.019027162790131537 7.858601095331483e-05']
['59866.4222884871 0.033896956235038446 6.739794945397743e-05 0.014956496085187076 4.043709255023558e-05 0.0005289778407315788 1.4301695919187665e-06 0.014956496085187076 4.043709255023558e-05 0.01894046014985137 7.85979773564003e-05']
['59866.422320025056 0.0339201612328697 6.74339257566923e-05 0.01492615424091791 4.041105787282616e-05 0.0005279047175098094 1.4292488035628747e-06 0.014926154240917911 4.041105787282616e-05 0.01899400699195179 7.861544340242566e-05']
['59866.42235156302 0.033961528421916826 6.745543121667287e-05 0.014810960512553404 4.036024890792033e-05 0.000523830572780388 1.4274518040255092e-06 0.014810960512553402 4.036024890792033e-05 0.019150567909363425 7.860779155107061e-05']
['59866.42238310098 0.0339811891937897 6.747645003894051e-05 0.014878444942947485 4.039415281505346e-05 0.0005262173462646011 1.4286509094500348e-06 0.014878444942947485 4.039415281505346e-05 0.019102744250842216 7.864323805327147e-05']
['59866.422414638946 0.03382725130705834 6.733603948851767e-05 0.014869978906083216 4.038941315097175e-05 0.0005259179214611908 1.4284832781239907e-06 0.014869978906083216 4.038941315097175e-05 0.018957272400975125 7.852035983538984e-05']
['59866.42244617691 0.03400834010993415 6.74849330495126e-05 0.014767324881818415 4.032428693020984e-05 0.0005222872780411866 1.4261799092441791e-06 0.014767324881818414 4.032428693020984e-05 0.019241015228115735 7.861465706296181e-05']
['59866.42247771487 0.03394878603504667 6.742982203454744e-05 0.014855191388967888 4.038656685106143e-05 0.0005253949200289773 1.4283826108572685e-06 0.014855191388967886 4.038656685106143e-05 0.019093594646078783 7.859933639431056e-05']
['59866.422509252836 0.03391333629540199 6.742517151372298e-05 0.014891382691591036 4.03875011418139e-05 0.000526674925519957 1.4284156546331664e-06 0.014891382691591034 4.03875011418139e-05 0.019021953603810954 7.85958268748092e-05']
['59866.4225407908 0.033865874802889544 6.739771154558275e-05 0.01492236401674903 4.0430890545099866e-05 0.0005277706657516086 1.429950240857782e-06 0.01492236401674903 4.0430890545099866e-05 0.018943510786140514 7.85945827131325e-05']
['59866.42257232876 0.0339021101407664 6.742345688087613e-05 0.014821124413538186 4.0359297191662065e-05 0.000524190047243238 1.427418143948415e-06 0.014821124413538188 4.0359297191662065e-05 0.01908098572722821 7.857986642628164e-05']
['59866.422603866726 0.03385305426861125 6.739495958244409e-05 0.01486597454372798 4.039984152151528e-05 0.0005257762961139093 1.428852106284079e-06 0.014865974543727982 4.039984152151528e-05 0.01898707972488327 7.857625450530728e-05']
['59866.422635404684 0.033924174291356746 6.740399228204247e-05 0.014859648622185962 4.038670367656116e-05 0.0005255525624065706 1.4283874500694071e-06 0.014859648622185962 4.038670367656116e-05 0.019064525669170784 7.857724867552949e-05']
['59866.42266694265 0.03401259388505458 6.749059122681396e-05 0.014943437152259438 4.041859171531647e-05 0.0005285159754589257 1.4295152587346102e-06 0.014943437152259438 4.041859171531647e-05 0.01906915673279514 7.866792523255172e-05']
['59866.422698480616 0.03394342459274789 6.741977993067999e-05 0.01492666375567907 4.042532352765217e-05 0.0005279227379082132 1.4297533478922087e-06 0.014926663755679071 4.042532352765217e-05 0.01901676083706882 7.861064500572851e-05']
['59866.422730018574 0.03396693510501521 6.745118631698943e-05 0.014919237624420852 4.040314248419975e-05 0.0005276600922420366 1.4289688539570113e-06 0.014919237624420854 4.040314248419975e-05 0.019047697480594355 7.86261817600713e-05']
['59866.42276155654 0.03402825695347775 6.750522432014603e-05 0.014925243813944116 4.041817466373895e-05 0.0005278725177424308 1.4295005085523686e-06 0.014925243813944116 4.041817466373895e-05 0.01910301313953363 7.868026533802327e-05']
['59866.422793094505 0.033878358187316104 6.738792894856776e-05 0.014908761535144149 4.0407322310416036e-05 0.0005272895763770012 1.4291166850689193e-06 0.014908761535144149 4.0407322310416036e-05 0.018969596652171954 7.857407119575174e-05']
['59866.422824632464 0.03397472104544339 6.746012612037507e-05 0.014923946410614527 4.040048732564831e-05 0.0005278266314861891 1.4288749469329769e-06 0.014923946410614527 4.040048732564831e-05 0.019050774634828863 7.863248687614287e-05']
['59866.42285617043 0.03395912613125625 6.745334711230485e-05 0.014969812640312032 4.042977443270634e-05 0.0005294488175255994 1.4299107664567872e-06 0.014969812640312033 4.042977443270634e-05 0.018989313490944217 7.864172364166874e-05']
['59866.42288770839 0.034013472904286295 6.75091601612355e-05 0.014875236323765391 4.040240713439029e-05 0.0005261038645749723 1.4289428462776608e-06 0.01487523632376539 4.040240713439029e-05 0.019138236580520905 7.867554389979378e-05']
['59866.42291924635 0.03395807078872287 6.747321098795724e-05 0.014919218280437406 4.0412867186368916e-05 0.0005276594080885733 1.4293127949393043e-06 0.014919218280437406 4.0412867186368916e-05 0.019038852508285464 7.865007333275976e-05']
['59866.42295078432 0.03382770667365801 6.733734296226161e-05 0.014896166792671965 4.0396753342609734e-05 0.0005268441284833528 1.4287428842978633e-06 0.014896166792671965 4.0396753342609734e-05 0.018931539880986045 7.852525350383081e-05']
['59866.42298232228 0.033842868840199165 6.736311577808898e-05 0.014883951474322268 4.0383334439241684e-05 0.0005264120999729538 1.4282682876752195e-06 0.014883951474322267 4.0383334439241684e-05 0.018958917365876897 7.854045497553388e-05']
['59866.42301386024 0.03392103252925915 6.743619071729097e-05 0.014856916019753384 4.0370168407336146e-05 0.0005254559163655374 1.42780263455107e-06 0.014856916019753384 4.0370168407336146e-05 0.019064116509505763 7.859637597049575e-05']
['59866.42304539821 0.033936987745766554 6.744821811712905e-05 0.014852477974900035 4.0384167495514574e-05 0.000525298952637521 1.4282977510138203e-06 0.014852477974900037 4.0384167495514574e-05 0.019084509770866516 7.861388625097726e-05']
['59866.42307693617 0.033887311096255215 6.740113703408686e-05 0.014877525533377407 4.0405752427249606e-05 0.0005261848288028669 1.429061161809805e-06 0.014877525533377407 4.0405752427249606e-05 0.019009785562877808 7.858459201840997e-05']
['59866.42310847413 0.03394650237311133 6.745577091359563e-05 0.014886885974335544 4.040291624930591e-05 0.0005265158866802019 1.4289608525344213e-06 0.014886885974335544 4.040291624930591e-05 0.019059616398775785 7.862999854378684e-05']
['59866.42314001209 0.03392907429950988 6.742353430790597e-05 0.014919558044804465 4.0424193512100236e-05 0.0005276714247949075 1.4297133817675728e-06 0.014919558044804465 4.0424193512100236e-05 0.019009516254705414 7.861328386267234e-05']
['59866.42317155006 0.033987456047370086 6.745894207978635e-05 0.014948166140533048 4.042831833124309e-05 0.0005286832292054964 1.4298592674022276e-06 0.014948166140533048 4.042831833124309e-05 0.019039289906837037 7.864577413705263e-05']
['59866.42320308802 0.03388677354150715 6.738893151693504e-05 0.014891063908830703 4.039110690135818e-05 0.0005266636508861616 1.4285431822898495e-06 0.014891063908830703 4.039110690135818e-05 0.018995709632676445 7.856659345874114e-05']
['59866.42323462598 0.0340020934019399 6.75037077030618e-05 0.014941299605832611 4.043722742724807e-05 0.0005284403752189439 1.4301743622172657e-06 0.014941299605832613 4.043722742724807e-05 0.01906079379610729 7.868875342552701e-05']
['59866.42326616395 0.033981885765556226 6.748618311265298e-05 0.014853012546684068 4.036858809789397e-05 0.0005253178592468245 1.427746742537884e-06 0.014853012546684067 4.036858809789397e-05 0.01912887321887216 7.863846270198797e-05']
['59866.42329770191 0.034113570997690044 6.755631215787453e-05 0.015015972116395928 4.046492970633048e-05 0.0005310813750343292 1.4311541299174607e-06 0.01501597211639593 4.046492970633048e-05 0.019097598881294114 7.874811647595422e-05']
['59866.42332923987 0.03409925272106838 6.75686176965057e-05 0.014982982444904012 4.0445454785337986e-05 0.0005299146040812367 1.430465345485843e-06 0.014982982444904012 4.0445454785337986e-05 0.01911627027616437 7.874866925992694e-05']
['59866.42336077784 0.0339969809887913 6.75106379768406e-05 0.014889050242599886 4.040060557321076e-05 0.0005265924320118567 1.428879129084993e-06 0.014889050242599886 4.040060557321076e-05 0.019107930746191416 7.86758868442052e-05']
['59866.423392315795 0.03397460684184606 6.747034411560126e-05 0.01488191785487808 4.040342631679847e-05 0.0005263401753980849 1.4289788924816995e-06 0.01488191785487808 4.040342631679847e-05 0.019092688986967983 7.86427631331365e-05']
['59866.42342385376 0.03422021737061336 6.766478913586663e-05 0.014998666150023831 4.045321450017063e-05 0.0005304693016803066 1.4307397892575316e-06 0.014998666150023831 4.045321450017063e-05 0.019221551220589526 7.883518410074344e-05']
['59866.42345539173 0.033886973503418086 6.738306141600325e-05 0.014876084809931075 4.039246072549707e-05 0.0005261338736343976 1.428591064024023e-06 0.014876084809931077 4.039246072549707e-05 0.019010888693487007 7.856225460902767e-05']
['59866.423486929685 0.0340070836598984 6.749825442302972e-05 0.014852099311141839 4.038591125366412e-05 0.0005252855601466571 1.4283594238424997e-06 0.014852099311141837 4.038591125366412e-05 0.019154984348756565 7.865771531099085e-05']
['59866.42351846765 0.03391653592535253 6.742561351822094e-05 0.01484792653009751 4.038518056260494e-05 0.0005251379782067361 1.4283335809327349e-06 0.01484792653009751 4.038518056260494e-05 0.019068609395255016 7.85950136292545e-05']
['59866.42355000562 0.03399444069724884 6.747471783865456e-05 0.01490679075749114 4.040781903702875e-05 0.0005272198743758431 1.4291342531790925e-06 0.01490679075749114 4.040781903702875e-05 0.0190876499397577 7.864877231549969e-05']
['59866.423581543575 0.033996985171441826 6.747482566134933e-05 0.014880720539786934 4.0403309378119503e-05 0.0005262978290391528 1.4289747566219669e-06 0.014880720539786932 4.0403309378119503e-05 0.019116264631654896 7.864654796450716e-05']
['59866.42361308154 0.03398486215890805 6.743602495808246e-05 0.0149794910050107 4.044686062200765e-05 0.0005297911196551191 1.430515066786989e-06 0.014979491005010698 4.044686062200765e-05 0.019005371153897353 7.863565346789733e-05']
['59866.4236446195 0.03402285108645027 6.751623782269782e-05 0.014914281319858638 4.041360890702167e-05 0.0005274847988263598 1.429339027941144e-06 0.014914281319858638 4.041360890702167e-05 0.019108569766591633 7.868736972742699e-05']
['59866.423676157465 0.03385726653677487 6.740422172129931e-05 0.014838333263272552 4.0359801447898346e-05 0.0005247986857988268 1.427435978364546e-06 0.014838333263272552 4.0359801447898346e-05 0.01901893327350232 7.856362185367892e-05']
['59866.42370769543 0.0339484381505427 6.746074118964659e-05 0.01486351506361844 4.039566938180633e-05 0.0005256893097990493 1.4287045470267568e-06 0.014863515063618441 4.039566938180633e-05 0.01908492308692426 7.863053927489424e-05']
['59866.42373923339 0.033995301307080505 6.748854743200802e-05 0.01488723679097981 4.0400760050004026e-05 0.0005265282942808804 1.4288845925839354e-06 0.014887236790979808 4.0400760050004026e-05 0.019108064516100698 7.865701143000793e-05']
['59866.423770771355 0.03411431578294636 6.755278015285607e-05 0.01497327685024573 4.0438345207804983e-05 0.0005295713388889007 1.4302138956174713e-06 0.01497327685024573 4.0438345207804983e-05 0.01914103893270063 7.873142872783213e-05']
['59866.42380230932 0.03409591862018223 6.757420552172164e-05 0.014855835813351526 4.0378131194735873e-05 0.0005254177118792229 1.428084260545616e-06 0.014855835813351528 4.0378131194735873e-05 0.019240082806830698 7.871890961307314e-05']
['59866.42383384728 0.03392144914689425 6.743172281082496e-05 0.014876250195585161 4.0398226815560246e-05 0.0005261397229553675 1.4287949977431047e-06 0.014876250195585163 4.0398226815560246e-05 0.01904519895130909 7.860695879549966e-05']
['59866.423865385244 0.034029728834509956 6.749825392534951e-05 0.01497573790036063 4.0451651248279096e-05 0.0005296583807313413 1.4306845005317904e-06 0.014975737900360627 4.0451651248279096e-05 0.019053990934149327 7.869148855933125e-05']
['59866.4238969232 0.034015757570075036 6.748925531674477e-05 0.014910093107610795 4.0399279856358476e-05 0.0005273366711192571 1.4288322414427305e-06 0.014910093107610793 4.0399279856358476e-05 0.019105664462464242 7.865685854470121e-05']
['59866.42392846117 0.034007071778775294 6.747428281564921e-05 0.014896301035238955 4.04055199203135e-05 0.0005268488763429328 1.4290529385590974e-06 0.014896301035238955 4.04055199203135e-05 0.01911077074353634 7.864721788796515e-05']
['59866.423959999134 0.03406687947406022 6.75234172142416e-05 0.01489632111212073 4.041162488367815e-05 0.0005268495864173719 1.429268857469515e-06 0.014896321112120728 4.041162488367815e-05 0.019170558361939496 7.869251106698562e-05']
['59866.42399153709 0.03390579845870848 6.741488522998392e-05 0.01490587199630431 4.0421380204782566e-05 0.0005271873798459752 1.4296138813751186e-06 0.014905871996304308 4.0421380204782566e-05 0.018999926462404174 7.860441926654945e-05']
['59866.42402307506 0.034094782696492326 6.757291363833306e-05 0.014899995381353951 4.040436798348482e-05 0.0005269795371086425 1.4290121971278942e-06 0.01489999538135395 4.040436798348482e-05 0.01919478731513838 7.873126195939241e-05']
['59866.424054613024 0.034022955641435884 6.751004751348758e-05 0.014857469401563225 4.038359047333549e-05 0.0005254754882434159 1.428277343028915e-06 0.014857469401563227 4.038359047333549e-05 0.01916548623987266 7.866664410530949e-05']
['59866.42408615098 0.03418339931586774 6.76008340756551e-05 0.014983510117361053 4.04327977350843e-05 0.0005299332666767637 1.4300176939052124e-06 0.014983510117361053 4.04327977350843e-05 0.019199889198506685 7.876981592215695e-05']
['59866.42411768895 0.033989972785449594 6.746319766967883e-05 0.014895084288601236 4.038849492026959e-05 0.0005268058427336254 1.4284508023561801e-06 0.014895084288601236 4.038849492026959e-05 0.01909488849684836 7.8628961342134e-05']
['59866.42414922691 0.03415087965391167 6.759073975527803e-05 0.01494823377591507 4.042261084171039e-05 0.0005286856213178024 1.4296574062529443e-06 0.01494823377591507 4.042261084171039e-05 0.0192026458779966 7.875592401798156e-05']
['59866.42418076487 0.034084124547421386 6.751887590108438e-05 0.014914098950459162 4.04048915286412e-05 0.000527478348828272 1.4290307137500211e-06 0.014914098950459162 4.04048915286412e-05 0.019170025596962223 7.868515655692181e-05']
['59866.42421230284 0.033977720181667836 6.745368127335435e-05 0.014915833642485592 4.041911033301806e-05 0.0005275397010084383 1.429533601083673e-06 0.014915833642485592 4.041911033301806e-05 0.019061886539182244 7.86365283913269e-05']
['59866.4242438408 0.034037164028158096 6.752336521643556e-05 0.01490715721664805 4.0414066277578237e-05 0.000527232835217235 1.4293552041155668e-06 0.014907157216648051 4.0414066277578237e-05 0.019130006811510045 7.869372022747828e-05']
['59866.42427537876 0.03413636437605716 6.756033271043692e-05 0.014970346963818201 4.045430560534563e-05 0.0005294677153538698 1.430778379209095e-06 0.014970346963818203 4.045430560534563e-05 0.01916601741223896 7.874610719239162e-05']
['59866.42430691673 0.03398641404567552 6.747398604563625e-05 0.014976656681021876 4.0442909087087926e-05 0.0005296908759499757 1.430375309828039e-06 0.014976656681021876 4.0442909087087926e-05 0.019009757364653643 7.866617880838738e-05']
['59866.424338454686 0.03409908129735342 6.753706777251034e-05 0.014875677864623037 4.039924089517634e-05 0.0005261194808883215 1.4288308634727916e-06 0.014875677864623037 4.039924089517634e-05 0.019223403432730386 7.869786647816536e-05']
['59866.42436999265 0.03403171459068656 6.748667779930423e-05 0.014869723652696839 4.039140623752597e-05 0.0005259088937193723 1.4285537691411272e-06 0.014869723652696839 4.039140623752597e-05 0.01916199093798972 7.865060316508675e-05']
['59866.42440153061 0.03392310058986874 6.743698348405977e-05 0.014931823060584921 4.0417350789108464e-05 0.0005281052109923652 1.4294713699479398e-06 0.014931823060584921 4.0417350789108464e-05 0.01899127752928382 7.862130109734381e-05']
['59866.424433068576 0.034001908199425654 6.748606935583821e-05 0.014915978773467689 4.042527790956784e-05 0.0005275448339669265 1.4297517344825164e-06 0.014915978773467689 4.042527790956784e-05 0.019085929425957965 7.866748153568155e-05']
['59866.42446460654 0.034128629927933724 6.757946604872728e-05 0.01490494345301524 4.041028610792594e-05 0.000527154539345013 1.429221507963147e-06 0.01490494345301524 4.041028610792594e-05 0.019223686474918483 7.87399228775055e-05']
['59866.4244961445 0.03408709895967801 6.753959553614077e-05 0.01491445974549737 4.041119662159729e-05 0.000527491109342444 1.4292537107968245e-06 0.014914459745497372 4.041119662159729e-05 0.019172639214180637 7.870617369415745e-05']
['59866.424527682466 0.03413523928141055 6.757699131098322e-05 0.015017610180396716 4.045946658337994e-05 0.0005311393096971794 1.4309609114680612e-06 0.015017610180396714 4.045946658337994e-05 0.01911762910101384 7.876305092399823e-05']
['59866.42455922043 0.03413484073420629 6.758414411036415e-05 0.014950238792709328 4.041922567872741e-05 0.0005287565342808665 1.4295376806036301e-06 0.01495023879270933 4.041922567872741e-05 0.019184601941496963 7.874852595190825e-05']
['59866.42459075839 0.0340038268615902 6.750011295167293e-05 0.014908864204822335 4.0408686442543104e-05 0.0005272932075740654 1.4291649313735978e-06 0.014908864204822337 4.0408686442543104e-05 0.019094962656767866 7.867100602191617e-05']
['59866.424622296356 0.034080999534030966 6.752525222931706e-05 0.014914263894969748 4.042082430079299e-05 0.0005274841825469821 1.4295942202933796e-06 0.014914263894969748 4.042082430079299e-05 0.019166735639061218 7.869881019296586e-05']
['59866.424653834314 0.03398330995569426 6.747946354130931e-05 0.01491627606012965 4.0414900044569334e-05 0.0005275553483317634 1.4293846925906824e-06 0.014916276060129649 4.0414900044569334e-05 0.019067033895564613 7.865648190349873e-05']
['59866.42468537228 0.03405821568083821 6.752608007408356e-05 0.014917846681975919 4.041745366397533e-05 0.0005276108977163327 1.4294750084020692e-06 0.014917846681975919 4.041745366397533e-05 0.01914036899886229 7.86977893644487e-05']
['59866.424716910245 0.03410844672238875 6.757194638051828e-05 0.015005858209464281 4.046827853238147e-05 0.0005307236687494085 1.4312725704106985e-06 0.015005858209464281 4.046827853238147e-05 0.019102588512924464 7.876324971092829e-05']
['59866.424748448204 0.034058779858773154 6.75088633747297e-05 0.01489411902577215 4.03981644839095e-05 0.000526771703544596 1.4287927932119209e-06 0.01489411902577215 4.03981644839095e-05 0.019164660833001 7.867311057672074e-05']
['59866.42477998617 0.033997325702236625 6.751640090626792e-05 0.014934840950501136 4.042877876043726e-05 0.0005282119470141148 1.4298755517538265e-06 0.014934840950501137 4.042877876043726e-05 0.019062484751735487 7.869530191438545e-05']
['59866.424811524135 0.03402259561825657 6.748473763440433e-05 0.014963783663067352 4.043775608918568e-05 0.0005292355860744262 1.430193059808509e-06 0.014963783663067352 4.043775608918568e-05 0.019058811955189214 7.867275215163673e-05']
['59866.424843062094 0.03405719712015889 6.751574540170444e-05 0.014928060686260394 4.042352028246717e-05 0.0005279721442209184 1.429689571140031e-06 0.014928060686260394 4.042352028246717e-05 0.01912913643389849 7.869203815618711e-05']
['59866.42487460006 0.03408936151451 6.754646280940669e-05 0.014983444290582838 4.044583118766622e-05 0.0005299309385307324 1.4304786579949828e-06 0.014983444290582838 4.044583118766622e-05 0.019105917223927165 7.872985392164623e-05']
['59866.42490613802 0.03413274487517216 6.756175025866855e-05 0.014992798000526067 4.0457228569256115e-05 0.0005302617583471129 1.4308817579101688e-06 0.014992798000526065 4.0457228569256115e-05 0.01913994687464609 7.874882501675649e-05']
['59866.42493767598 0.034013655420599004 6.750722402119141e-05 0.014896078302925738 4.041283178981992e-05 0.0005268409987987917 1.429311543042473e-06 0.014896078302925737 4.041283178981992e-05 0.019117577117673267 7.867923657687334e-05']
['59866.42496921395 0.034101163609118926 6.755785000176355e-05 0.014886954667971885 4.04113746952062e-05 0.000526518316220598 1.4292600088624005e-06 0.014886954667971885 4.04113746952062e-05 0.01921420894114704 7.872193024575257e-05']
['59866.42500075191 0.034051615845071756 6.751324465780218e-05 0.014995544527198671 4.044305140923542e-05 0.0005303588968573971 1.4303803434443247e-06 0.014995544527198671 4.044305140923542e-05 0.019056071317873083 7.869992764618221e-05']
['59866.42503228987 0.034033378395806786 6.74956847685773e-05 0.014986831609564445 4.043967422389658e-05 0.0005300507404328995 1.430260899946455e-06 0.014986831609564445 4.043967422389658e-05 0.01904654678624234 7.868312852012204e-05']
['59866.42506382784 0.03396821100661344 6.747163358054327e-05 0.014918677517539478 4.042948366554919e-05 0.0005276402825134075 1.4299004826722652e-06 0.014918677517539477 4.042948366554919e-05 0.019049533489073962 7.865725959814519e-05']
['59866.4250953658 0.03401540414961623 6.751214931728929e-05 0.014777910126865666 4.0342959299527985e-05 0.0005226616545018775 1.4268403092166726e-06 0.014777910126865666 4.0342959299527985e-05 0.019237494022750563 7.864759799563707e-05']
['59866.42512690376 0.03403108332189006 6.75094653981963e-05 0.01497405869259745 4.045689002658328e-05 0.0005295989909055662 1.4308697844124288e-06 0.01497405869259745 4.045689002658328e-05 0.01905702462929261 7.870379831350782e-05']
['59866.42515844172 0.03403779073701209 6.75319351743332e-05 0.014921424285435993 4.0423672175301885e-05 0.0005277374295552424 1.4296949432501344e-06 0.014921424285435995 4.0423672175301885e-05 0.01911636645157609 7.870600701678758e-05']
['59866.42518997969 0.03408457160298456 6.755699223538861e-05 0.0149163366534186 4.0429152489492545e-05 0.0005275574913809755 1.4298887697152766e-06 0.0149163366534186 4.0429152489492545e-05 0.01916823494956596 7.87303218011396e-05']
['59866.42522151765 0.034065744291329414 6.754533348287282e-05 0.014950041284143767 4.0438790756282226e-05 0.0005287495488443082 1.430229653671369e-06 0.014950041284143767 4.0438790756282226e-05 0.019115703007185646 7.872526832690299e-05']
['59866.42525305561 0.0342076245243941 6.76271158636062e-05 0.014995108771977085 4.045137574714805e-05 0.0005303434851690653 1.4306747566724942e-06 0.014995108771977085 4.045137574714805e-05 0.01921251575241701 7.880190733647617e-05']
['59866.42528459358 0.034053244359889476 6.751355106420778e-05 0.01493227523191578 4.043525804261863e-05 0.0005281212032817943 1.4301047094842383e-06 0.01493227523191578 4.043525804261863e-05 0.019120969127973696 7.869618586864642e-05']
['59866.42531613154 0.034165055121094405 6.759701904254708e-05 0.014963884660779383 4.045730822080468e-05 0.000529239158137784 1.4308845750074308e-06 0.014963884660779383 4.045730822080468e-05 0.019201170460315022 7.87791264987856e-05']
['59866.4253476695 0.03411071095848848 6.755324566744556e-05 0.014989983766553064 4.046201245643662e-05 0.0005301622251809307 1.4310509533083846e-06 0.014989983766553066 4.046201245643662e-05 0.019120727191935413 7.874398676871196e-05']
['59866.42537920747 0.03409825352622092 6.754486939272956e-05 0.014931759125977644 4.041913262376912e-05 0.0005281029497681913 1.4295343894577209e-06 0.014931759125977644 4.041913262376912e-05 0.01916649440024328 7.871477411095538e-05']
['59866.425410745425 0.03404038695094193 6.751014143147056e-05 0.015015254160498167 4.047160295190574e-05 0.0005310559825387624 1.4313901476996315e-06 0.015015254160498167 4.047160295190574e-05 0.01902513279044376 7.871194217902302e-05']
['59866.42544228339 0.034038672610663546 6.750443813576211e-05 0.014970135733988265 4.045092094443495e-05 0.0005294602446268558 1.430658671316956e-06 0.014970135733988265 4.045092094443495e-05 0.01906853687667528 7.869641779190371e-05']
['59866.42547382136 0.03413454603698509 6.759896569606088e-05 0.014979800925184335 4.043943925191339e-05 0.0005298020808390298 1.4302525895125409e-06 0.014979800925184335 4.043943925191339e-05 0.019154745111800757 7.87716218582962e-05']
['59866.425505359315 0.03416513048576756 6.761703342728965e-05 0.014957677204600492 4.043479916681055e-05 0.0005290196142855848 1.4300884800724334e-06 0.014957677204600492 4.043479916681055e-05 0.019207453281167068 7.878474594213977e-05']
['59866.42553689728 0.03402589721780648 6.752426420590177e-05 0.01493402400970187 4.043451593736343e-05 0.0005281830536438 1.4300784628798693e-06 0.014934024009701872 4.043451593736343e-05 0.01909187320810461 7.870499562059147e-05']
['59866.42556843525 0.03406029081481356 6.751081479978111e-05 0.015035605614004058 4.0477094665970455e-05 0.000531775767966444 1.431584377352842e-06 0.015035605614004058 4.0477094665970455e-05 0.0190246852008095 7.871534353306398e-05']
['59866.425599973205 0.03422901364902445 6.7671207843918e-05 0.015018132900409032 4.04548317862921e-05 0.0005311577971358046 1.4307969890532262e-06 0.015018132900409032 4.04548317862921e-05 0.019210880748615416 7.884152323434612e-05']
['59866.42563151117 0.03414030220158324 6.759439653736926e-05 0.014991847390900197 4.044693842410112e-05 0.0005302281374091334 1.4305178184731576e-06 0.014991847390900197 4.044693842410112e-05 0.019148454810683044 7.877155115353604e-05']
['59866.42566304913 0.0341708047400549 6.760566630279461e-05 0.014976887449478827 4.0430892505897445e-05 0.000529699037714561 1.4299503102068101e-06 0.014976887449478827 4.0430892505897445e-05 0.01919391729057607 7.877298512223751e-05']
['59866.425694587095 0.03406591769532215 6.750959974016845e-05 0.01495875511284147 4.044429818985743e-05 0.000529057737491085 1.4304244392885345e-06 0.01495875511284147 4.044429818985743e-05 0.01910716258248068 7.869744159213727e-05']
['59866.42572612506 0.03417512882377876 6.762513750751605e-05 0.014968630511549804 4.044430670290942e-05 0.0005294070082731816 1.4304247403761579e-06 0.014968630511549803 4.044430670290942e-05 0.019206498312228957 7.879658093844845e-05']
['59866.42575766302 0.034189335756976906 6.76367000008738e-05 0.014850564156179568 4.0370132413463564e-05 0.0005252312651465111 1.4278013615282384e-06 0.014850564156179568 4.0370132413463564e-05 0.01933877160079734 7.876846309335217e-05']
['59866.425789200985 0.03421868820767876 6.765384201603213e-05 0.014893577178213583 4.0401241703887436e-05 0.0005267525396074076 1.4289016276053586e-06 0.014893577178213584 4.0401241703887436e-05 0.019325111029465176 7.879912861666788e-05']
['59866.42582073895 0.034071787386965445 6.753930779404916e-05 0.015000392611381958 4.0461509153369745e-05 0.0005305303627601295 1.4310331526037254e-06 0.015000392611381958 4.0461509153369745e-05 0.019071394775583485 7.873177135227895e-05']
['59866.42585227691 0.03405116410312867 6.751040185527166e-05 0.01498349378014566 4.045318632004775e-05 0.0005299326888659668 1.4307387925895642e-06 0.01498349378014566 4.045318632004775e-05 0.019067670322983007 7.870269780703051e-05']
['59866.425883814874 0.034205511030013756 6.7642449299406e-05 0.014989821960983219 4.0470370204883524e-05 0.0005301565024795394 1.4313465481924832e-06 0.014989821960983219 4.0470370204883524e-05 0.01921568906903054 7.88248172325381e-05']
['59866.42591535283 0.03423761808420387 6.766682184113109e-05 0.014958410722243484 4.045001662768722e-05 0.000529045557165302 1.4306266876546176e-06 0.014958410722243484 4.045001662768722e-05 0.019279207361960385 7.883528793160807e-05']
['59866.4259468908 0.034113972880674755 6.754197388565139e-05 0.01492717714771582 4.0429067292449616e-05 0.0005279408954371893 1.4298857564862724e-06 0.01492717714771582 4.0429067292449616e-05 0.019186795732958936 7.871739146152795e-05']
['59866.425978428764 0.034071644074725974 6.75109525270688e-05 0.01488602224927828 4.039633928400881e-05 0.0005264853386552383 1.4287282399705151e-06 0.014886022249278279 4.039633928400881e-05 0.019185621825447696 7.867396607938925e-05']
['59866.42600996672 0.03412767516332065 6.758278447759724e-05 0.014950504650640543 4.042924835795792e-05 0.000528765937081736 1.4298921603686436e-06 0.014950504650640543 4.042924835795792e-05 0.019177170512680107 7.87525039635871e-05']
['59866.42604150469 0.03423044273277515 6.766530621422684e-05 0.01493596118321997 4.043878735382846e-05 0.0005282515671418071 1.4302295333341835e-06 0.01493596118321997 4.043878735382846e-05 0.01929448154955518 7.882822583131782e-05']
['59866.426073042654 0.03412562794114794 6.760335516499551e-05 0.014939621470128584 4.0434563476462056e-05 0.000528381023309505 1.4300801442315441e-06 0.014939621470128584 4.0434563476462056e-05 0.01918600647101936 7.877288590052141e-05']
['59866.42610458061 0.03412161912131621 6.75798061530797e-05 0.014983271266829011 4.044232269105539e-05 0.0005299248190672449 1.4303545703108863e-06 0.014983271266829011 4.044232269105539e-05 0.019138347854487203 7.875666107914481e-05']
['59866.42613611858 0.034236880912602435 6.76652435254743e-05 0.015038170701656093 4.0484069456120645e-05 0.000531866489384063 1.4318310600927154e-06 0.015038170701656094 4.0484069456120645e-05 0.01919871021094634 7.885141128153473e-05']
['59866.42616765654 0.034163519352266004 6.760286292733882e-05 0.015042462135161926 4.046611186161617e-05 0.0005320182677963749 1.431195940107954e-06 0.015042462135161928 4.046611186161617e-05 0.019121057217104075 7.878866216131224e-05']
['59866.4261991945 0.03403367756092225 6.750743163884888e-05 0.014894402214070807 4.038981204732657e-05 0.000526781719281831 1.4284973861965796e-06 0.014894402214070807 4.038981204732657e-05 0.019139275346851444 7.866759335134272e-05']
['59866.42623073247 0.03426656107341688 6.76805270979944e-05 0.015050009921873584 4.049177519004488e-05 0.0005322852161440556 1.432103594680314e-06 0.015050009921873582 4.049177519004488e-05 0.019216551151543297 7.886848297199262e-05']
['59866.42626227043 0.03403106886090549 6.751043063398268e-05 0.015015996750487348 4.047859918447122e-05 0.0005310822462870887 1.431637588809813e-06 0.015015996750487348 4.047859918447122e-05 0.01901507211041814 7.87157877196364e-05']
['59866.42629380839 0.03427320295356902 6.768108708929277e-05 0.01499537406324289 4.046567225896966e-05 0.0005303528679282458 1.431180392344801e-06 0.014995374063242892 4.046567225896966e-05 0.019277828890326126 7.885556531379875e-05']
['59866.42632534636 0.03413753412077898 6.757960193682475e-05 0.014942928537665358 4.044003883252854e-05 0.0005284979868974197 1.430273795338915e-06 0.014942928537665358 4.044003883252854e-05 0.019194605583113623 7.875531308245879e-05']
['59866.426356884316 0.034119166595660486 6.758514749435978e-05 0.014987387120856415 4.04616072786979e-05 0.0005300703876258018 1.431036623077285e-06 0.014987387120856416 4.04616072786979e-05 0.01913177947480407 7.877114843272215e-05']
['59866.42638842228 0.03414549929055894 6.758104030124261e-05 0.014919593778917906 4.041763979071059e-05 0.0005276726886306389 1.4294815912887265e-06 0.014919593778917906 4.041763979071059e-05 0.019225905511641037 7.874504819002786e-05']
['59866.42641996024 0.03428566687072999 6.7711330197948e-05 0.01506856651236397 4.0493313733256225e-05 0.0005329415212781617 1.4321580095152574e-06 0.015068566512363971 4.0493313733256225e-05 0.019217100358366018 7.889570770501689e-05']
['59866.426451498206 0.03417344257007804 6.761394887077394e-05 0.01505060086065525 4.049660573220447e-05 0.0005323061163280927 1.4322744401608724e-06 0.01505060086065525 4.049660573220447e-05 0.01912284170942279 7.881383861815924e-05']
['59866.42648303617 0.03407212941200419 6.75488010530386e-05 0.014999601441283933 4.0453992454915145e-05 0.0005305023808419235 1.4307673037782185e-06 0.014999601441283933 4.0453992454915145e-05 0.019072527970720253 7.873605291888412e-05']
['59866.42651457413 0.03413744245440957 6.758459694987942e-05 0.014903447728983782 4.041007807671639e-05 0.0005271016389287668 1.4292141503641878e-06 0.01490344772898378 4.041007807671639e-05 0.01923399472542579 7.874421981989513e-05']
['59866.426546112096 0.03417172195161357 6.762052080249237e-05 0.014922525846989958 4.0432474552241085e-05 0.0005277763893255609 1.4300062636503193e-06 0.014922525846989958 4.0432474552241085e-05 0.01924919610462361 7.878654600893433e-05']
['59866.426577650054 0.034138793568965764 6.757830855424637e-05 0.014960715365719803 4.043186528502066e-05 0.0005291270672544843 1.4299847152303648e-06 0.014960715365719803 4.043186528502066e-05 0.019178078203245963 7.875000646018378e-05']
['59866.42660918802 0.034113087347081475 6.759533273525465e-05 0.014933279912893102 4.04304294826404e-05 0.0005281567366026323 1.4299339341090046e-06 0.0149332799128931 4.04304294826404e-05 0.019179807434188373 7.876387900389713e-05']
['59866.426640725986 0.03413268355648951 6.75978235531336e-05 0.014914992294110016 4.041964004077988e-05 0.0005275099443966971 1.4295523356633812e-06 0.014914992294110016 4.041964004077988e-05 0.019217691262379495 7.876047898627077e-05']
['59866.426672263944 0.03422112838424628 6.762882398975118e-05 0.015068435902574784 4.048415732134852e-05 0.0005329369019018139 1.4318341676894583e-06 0.015068435902574786 4.048415732134852e-05 0.019152692481671493 7.882020571056918e-05']
['59866.42670380191 0.034157378431771857 6.760484419097441e-05 0.014987898200490018 4.0450607196236366e-05 0.0005300884633702465 1.430647574744358e-06 0.014987898200490018 4.0450607196236366e-05 0.019169480231281837 7.878240019592025e-05']
['59866.426735339875 0.034218395275266614 6.76315866036857e-05 0.01494697019220124 4.043398016844131e-05 0.0005286409311857876 1.430059513930467e-06 0.014946970192201238 4.043398016844131e-05 0.019271425083065376 7.879681629859004e-05']
['59866.426766877834 0.03406688330921459 6.753211994667705e-05 0.014992820161490329 4.044709291879267e-05 0.000530262542130892 1.4305232826051223e-06 0.014992820161490327 4.044709291879267e-05 0.019074063147724266 7.871819707077788e-05']
['59866.4267984158 0.034044919711064756 6.752557441815046e-05 0.014926608055245257 4.0418413307491914e-05 0.0005279207679083523 1.4295089488485736e-06 0.014926608055245257 4.0418413307491914e-05 0.0191183116558195 7.869784834921737e-05']
['59866.42682995376 0.0343003406533302 6.77046499882254e-05 0.015020588439641854 4.048225365356205e-05 0.0005312446440706623 1.431766839214298e-06 0.015020588439641854 4.048225365356205e-05 0.01927975221368835 7.888429812642974e-05']
['59866.426861491724 0.03418570572088553 6.761790000525697e-05 0.015043424773103503 4.0469122140752666e-05 0.0005320523141489992 1.4313024069534338e-06 0.015043424773103503 4.0469122140752666e-05 0.019142280947782024 7.880311064903522e-05']
['59866.42689302969 0.034227347403310335 6.76756626293737e-05 0.01495560019301166 4.0447165152464e-05 0.0005289461550275355 1.4305258373486444e-06 0.01495560019301166 4.0447165152464e-05 0.019271747210298673 7.884141349059837e-05']
['59866.42692456765 0.03428110342359795 6.770348016754104e-05 0.015003238922768686 4.0456665227232505e-05 0.0005306310304327465 1.430861833761789e-06 0.015003238922768686 4.0456665227232505e-05 0.019277864500829262 7.887016538657052e-05']
['59866.42695610561 0.03421642146058702 6.763443327029762e-05 0.015095900416811154 4.052486344259382e-05 0.0005339082603907774 1.4332738522250775e-06 0.015095900416811154 4.052486344259382e-05 0.019120521043775863 7.884593281099043e-05']
['59866.42698764358 0.03413425438010894 6.757126610697465e-05 0.01493765302527018 4.043638752311582e-05 0.0005283114038140786 1.4301446566851834e-06 0.014937653025270179 4.043638752311582e-05 0.019196601354838763 7.874628524076027e-05']
['59866.42701918154 0.0340548851860634 6.753872945999985e-05 0.014887854452889572 4.039977883755804e-05 0.0005265501396022357 1.4288498892926018e-06 0.014887854452889572 4.039977883755804e-05 0.01916703073317383 7.869956865952097e-05']
['59866.4270507195 0.03420944188169669 6.765355726087118e-05 0.015027141277614873 4.047863071511804e-05 0.0005314764033050371 1.4316387039783242e-06 0.015027141277614875 4.047863071511804e-05 0.01918230060408181 7.883859051645249e-05']
['59866.42708225746 0.034124733148885374 6.75638326854698e-05 0.014942452719279912 4.043610064597586e-05 0.000528481158264518 1.4301345104818757e-06 0.014942452719279912 4.043610064597586e-05 0.019182280429605462 7.873975947767206e-05']
['59866.42711379543 0.03400646134117945 6.750964083021797e-05 0.0149708142896542 4.046768794711056e-05 0.0005294842436242773 1.4312516827295465e-06 0.0149708142896542 4.046768794711056e-05 0.019035647051525245 7.870949988921128e-05']
['59866.42714533339 0.03420882949705499 6.762665651176954e-05 0.01500341304804007 4.04667212717768e-05 0.0005306371888544483 1.4312174935833838e-06 0.015003413048040069 4.04667212717768e-05 0.019205416449014922 7.88093915815148e-05']
['59866.42717687135 0.034236331348423354 6.765215158756589e-05 0.015002596856526317 4.046334998666094e-05 0.0005306083219846875 1.4310982587632146e-06 0.015002596856526317 4.046334998666094e-05 0.01923373449189704 7.882953955574019e-05']
['59866.42720840932 0.03423868723162919 6.767003175896366e-05 0.015049340079619541 4.04881403102251e-05 0.0005322615253205395 1.4319750371045664e-06 0.01504934007961954 4.04881403102251e-05 0.01918934715200965 7.885761031149514e-05']
['59866.42723994728 0.034239872713001565 6.764760790851549e-05 0.015117387025333108 4.052533953849145e-05 0.000534668193714455 1.4332906906729651e-06 0.015117387025333107 4.052533953849145e-05 0.01912248568766846 7.885747903943078e-05']
['59866.42727148524 0.03422264817194476 6.761237083484566e-05 0.015047999069801948 4.049828851698415e-05 0.0005322140968002718 1.432333956497727e-06 0.015047999069801948 4.049828851698415e-05 0.01917464910214281 7.881334952096364e-05']
['59866.42730302321 0.034221723879993705 6.764283703560787e-05 0.015016550306315362 4.0465764102756606e-05 0.0005311018243196012 1.4311836406542865e-06 0.015016550306315364 4.0465764102756606e-05 0.01920517357367834 7.882278519974887e-05']
['59866.427334561165 0.03425469036753169 6.768913563112865e-05 0.015069267462415187 4.0501299097331094e-05 0.0005329663123149421 1.4324404339963471e-06 0.015069267462415189 4.0501299097331094e-05 0.019185422905116503 7.888076008166252e-05']
['59866.42736609913 0.03414809204604189 6.758064737157768e-05 0.014943754343235879 4.0423246083902105e-05 0.0005285271937948823 1.4296798733495823e-06 0.014943754343235879 4.0423246083902105e-05 0.01920433770280601 7.874758868131288e-05']
['59866.4273976371 0.03421111078597155 6.763524281360693e-05 0.015036481018030916 4.047961671981826e-05 0.0005318067290504611 1.4316735767609802e-06 0.015036481018030914 4.047961671981826e-05 0.019174629767940633 7.882338130427392e-05']
['59866.427429175055 0.03435549942364955 6.77081944734319e-05 0.01501901039936291 4.0465985331475076e-05 0.0005311888323127085 1.4311914650196416e-06 0.01501901039936291 4.0465985331475076e-05 0.01933648902428664 7.887899319653637e-05']
['59866.42746071302 0.03415350415792231 6.761750358235489e-05 0.015038851065839132 4.049027460784575e-05 0.0005318905523446926 1.4320505224415345e-06 0.015038851065839132 4.049027460784575e-05 0.019114653092083177 7.881363542261285e-05']
['59866.42749225099 0.034094431045211204 6.755354387808777e-05 0.014964766357813004 4.044889930236094e-05 0.0005292703417913864 1.4305871703549025e-06 0.014964766357813006 4.044889930236094e-05 0.0191296646873982 7.873750532790118e-05']
['59866.427523788945 0.03409607933895209 6.756713826585317e-05 0.014958760342937381 4.043612471585526e-05 0.0005290579224678888 1.430135361779717e-06 0.014958760342937381 4.043612471585526e-05 0.01913731899601471 7.874260825927167e-05']
['59866.42755532691 0.034061312714443154 6.751605748209722e-05 0.014982331817553384 4.045388568705193e-05 0.0005298915928459115 1.4307635276375088e-06 0.014982331817553382 4.045388568705193e-05 0.019078980896889773 7.870790865667134e-05']
['59866.42758686487 0.034329237479667166 6.773567542273204e-05 0.014979345181507201 4.044255269742262e-05 0.0005297859622036968 1.4303627051220613e-06 0.014979345181507203 4.044255269742262e-05 0.019349892298159962 7.889056847087306e-05']
['59866.427618402835 0.03418224183741215 6.761144176139838e-05 0.015005563611398856 4.04776530791586e-05 0.0005307132494742224 1.4316041271793266e-06 0.015005563611398856 4.04776530791586e-05 0.019176678226013294 7.880195083785479e-05']
['59866.4276499408 0.03417990237847865 6.759451750074885e-05 0.015016756077217608 4.046186366061641e-05 0.0005311091019765426 1.4310456907327628e-06 0.015016756077217608 4.046186366061641e-05 0.019163146301261043 7.877931966607325e-05']
['59866.42768147876 0.03418488346804907 6.76148385273795e-05 0.014998504183349373 4.045625264914812e-05 0.0005304635732810052 1.430847241797002e-06 0.014998504183349373 4.045625264914812e-05 0.019186379284699698 7.879387519024119e-05']
['59866.427713016725 0.03419533798706026 6.764390033994389e-05 0.015060828638005027 4.0493057550626225e-05 0.0005326678499552173 1.432148948908169e-06 0.015060828638005029 4.0493057550626225e-05 0.01913450934905523 7.883771282196478e-05']
['59866.42774455469 0.03427630667155238 6.770757530912856e-05 0.014958686634254599 4.045324926705911e-05 0.0005290553155565081 1.4307410188846777e-06 0.014958686634254599 4.045324926705911e-05 0.019317620037297784 7.88719286597211e-05']
['59866.42777609265 0.0341381089078194 6.759959607676175e-05 0.014948007541713446 4.042297443956301e-05 0.0005286776199196946 1.4296702658963979e-06 0.014948007541713446 4.042297443956301e-05 0.01919010136610596 7.876371151921998e-05']
['59866.427807630615 0.03425269579065532 6.767207225714726e-05 0.015068774739505846 4.0496994781109964e-05 0.0005329488858068095 1.4322881999511866e-06 0.015068774739505846 4.0496994781109964e-05 0.019183921051149473 7.886390777711821e-05']
['59866.42783916857 0.03423580331308848 6.766822682216186e-05 0.015007990519997533 4.046040897900214e-05 0.0005307990838075361 1.4309942418950882e-06 0.015007990519997535 4.046040897900214e-05 0.019227812793090944 7.884182656435392e-05']
['59866.42787070654 0.0342609578366244 6.767978882291271e-05 0.015056866326207185 4.048950303696384e-05 0.0005325277118421733 1.4320232337038008e-06 0.015056866326207185 4.048950303696384e-05 0.01920409151041722 7.88666828977507e-05']
['59866.427902244504 0.03420809986124416 6.76120912414315e-05 0.015042216451252545 4.049234168178651e-05 0.0005320095785055712 1.4321236302271808e-06 0.015042216451252543 4.049234168178651e-05 0.019165883409991615 7.881005403445809e-05']
['59866.42793378246 0.03420402379230743 6.761750743140622e-05 0.014908806169714394 4.040906246139898e-05 0.0005272911550019984 1.4291782303201776e-06 0.014908806169714395 4.040906246139898e-05 0.019295217622593033 7.877194703855884e-05']
['59866.42796532043 0.034146229569354945 6.75948798430526e-05 0.014992188038750406 4.045857729579963e-05 0.0005302401853622922 1.4309294593537864e-06 0.014992188038750406 4.045857729579963e-05 0.01915404153060454 7.877794271112259e-05']
['59866.427996858394 0.0343437192783386 6.775564493687764e-05 0.015061126644921355 4.048253794688239e-05 0.0005326783897938415 1.43177689403368e-06 0.015061126644921354 4.048253794688239e-05 0.019282592633417243 7.892821611713397e-05']
['59866.42802839635 0.034172994186018074 6.760677031336312e-05 0.014977869634136368 4.044881329414754e-05 0.0005297337753908446 1.4305841284366113e-06 0.014977869634136368 4.044881329414754e-05 0.019195124551881708 7.878313200875326e-05']
['59866.42805993432 0.03432734344236255 6.770691831498778e-05 0.01504859193382983 4.048196324265215e-05 0.0005322350650759648 1.431756568029445e-06 0.01504859193382983 4.048196324265215e-05 0.019278751508532723 7.888609595924916e-05']
['59866.42809147228 0.034145378727135425 6.757856805958433e-05 0.015031529233856875 4.046625620906155e-05 0.0005316315955108116 1.4312010453544994e-06 0.015031529233856877 4.046625620906155e-05 0.01911384949327855 7.876789163460758e-05']
['59866.42812301024 0.034283762619630155 6.767760673754743e-05 0.015009492294268598 4.046944306204541e-05 0.0005308521982072356 1.4313137572223413e-06 0.015009492294268598 4.046944306204541e-05 0.019274270325361557 7.885451334878849e-05']
['59866.42815454821 0.03425674235850778 6.76633717884946e-05 0.015011475105254489 4.047252670029835e-05 0.0005309223258004849 1.431422818615822e-06 0.015011475105254489 4.047252670029835e-05 0.01924526725325329 7.884387927603771e-05']
['59866.42818608617 0.03425287691503743 6.766065117157369e-05 0.01505074729387702 4.0481490521277094e-05 0.0005323112953438877 1.4317398489308792e-06 0.01505074729387702 4.0481490521277094e-05 0.01920212962116041 7.884614633440004e-05']
['59866.42821762413 0.034164494181260274 6.761233482005211e-05 0.015010999476993242 4.048067027111912e-05 0.0005309055038918511 1.4317108385159427e-06 0.01501099947699324 4.048067027111912e-05 0.019153494704267034 7.88042669239293e-05']
['59866.4282491621 0.034269832553671685 6.770037040026208e-05 0.014961546615725444 4.04462994196583e-05 0.0005291564667094494 1.430495218314106e-06 0.014961546615725444 4.04462994196583e-05 0.019308285937946243 7.886217907893069e-05']
['59866.428280700056 0.0342078670359783 6.761301806070601e-05 0.015067195950634837 4.0492293103175504e-05 0.0005328930475728274 1.4321219121102764e-06 0.015067195950634837 4.0492293103175504e-05 0.019140671085343463 7.88108242060114e-05']
['59866.42831223802 0.034325429015430335 6.77341082665921e-05 0.015000348841405782 4.045224411091919e-05 0.0005305288147138923 1.4307054687584003e-06 0.015000348841405782 4.045224411091919e-05 0.019325080174024553 7.889419165109569e-05']
['59866.42834377598 0.034191898700294945 6.763487909548381e-05 0.014986390523235887 4.0447750907385236e-05 0.0005300351401952282 1.4305465541911235e-06 0.014986390523235886 4.0447750907385236e-05 0.019205508177059058 7.880670925578986e-05']
['59866.428375313946 0.03416747299812864 6.76071537369654e-05 0.01501643133236449 4.047625906865278e-05 0.0005310976164768499 1.4315548241431657e-06 0.015016431332364492 4.047625906865278e-05 0.019151041665764146 7.879755570197829e-05']
['59866.42840685191 0.03427775787734172 6.766556075439018e-05 0.015007772896176457 4.0480299616435434e-05 0.0005307913869393452 1.4316977292881455e-06 0.015007772896176459 4.0480299616435434e-05 0.01926998498116526 7.884974806074177e-05']
['59866.42843838987 0.03425175140048191 6.769782416699043e-05 0.015013256421290347 4.0480292094915806e-05 0.0005309853269676661 1.4316974632688057e-06 0.015013256421290347 4.0480292094915806e-05 0.019238494979191563 7.88774330530251e-05']
['59866.428469927836 0.034162144132793996 6.760502029305694e-05 0.014967243510366374 4.0444401517593324e-05 0.0005293579531410889 1.4304280937596291e-06 0.014967243510366374 4.0444401517593324e-05 0.019194900622427624 7.87793652103198e-05']
['59866.4285014658 0.03424430610918246 6.764671125157381e-05 0.015023199320698103 4.048085048314397e-05 0.0005313369850986461 1.4317172122125118e-06 0.015023199320698103 4.048085048314397e-05 0.019221106788484356 7.883385566488843e-05']
['59866.42853300376 0.03427130916841344 6.769730288470091e-05 0.014950370015887329 4.043885192564118e-05 0.0005287611753514058 1.4302318170948897e-06 0.014950370015887327 4.043885192564118e-05 0.019320939152526116 7.885572625324598e-05']
['59866.428564541726 0.034236198266206934 6.764091679086014e-05 0.015084525726973644 4.050258341557351e-05 0.0005335059630321603 1.432485857462299e-06 0.015084525726973642 4.050258341557351e-05 0.01915167253923329 7.884004621791869e-05']
['59866.428596079684 0.03432373679056226 6.772760596057429e-05 0.015036811437279007 4.048144063145756e-05 0.0005318184152408225 1.4317380844394594e-06 0.015036811437279007 4.048144063145756e-05 0.019286925353283253 7.890358448606147e-05']
['59866.42862761765 0.03418804472478504 6.763093237279639e-05 0.014994064153712058 4.0458435199479635e-05 0.0005303065393556156 1.4309244337245149e-06 0.014994064153712058 4.0458435199479635e-05 0.01919398057107298 7.880880656629849e-05']
['59866.428659155616 0.034215590778605205 6.76526020810627e-05 0.015042557658469 4.049023719134772e-05 0.0005320216462422641 1.4320491991036202e-06 0.015042557658469001 4.049023719134772e-05 0.019173033120136206 7.884373073460061e-05']
['59866.428690693574 0.0342788705707487 6.768751864262827e-05 0.015108635316627487 4.053734642097351e-05 0.0005343586653364551 1.4337153472725526e-06 0.015108635316627487 4.053734642097351e-05 0.019170235254121214 7.88978873915529e-05']
['59866.42872223154 0.03417920709322298 6.761453077932526e-05 0.01501417694229639 4.0467352408190436e-05 0.0005310178837384065 1.4312398154678274e-06 0.01501417694229639 4.0467352408190436e-05 0.01916503015092659 7.879931080559651e-05']
['59866.428753769505 0.034261035054353406 6.763772797579732e-05 0.015019923517369858 4.048298334729931e-05 0.0005312211272559156 1.4317926468510153e-06 0.015019923517369856 4.048298334729931e-05 0.01924111153698355 7.882724266664203e-05']
['59866.428785307464 0.03413248069612599 6.75821884686376e-05 0.01496948451534468 4.044540289950763e-05 0.0005294372124788202 1.4304635103999813e-06 0.01496948451534468 4.044540289950763e-05 0.019162996180781308 7.876028703549749e-05']
['59866.42881684543 0.03424065090205298 6.76688447583129e-05 0.015007691014176377 4.0479746822193236e-05 0.0005307884909559979 1.4316781781912213e-06 0.015007691014176377 4.0479746822193236e-05 0.0192329598878766 7.885228248892682e-05']
['59866.42884838339 0.034283604576656725 6.769761338912039e-05 0.015059307584202526 4.047555224135858e-05 0.000532614053681578 1.431529825241436e-06 0.015059307584202526 4.047555224135858e-05 0.019224296992454197 7.887481973244542e-05']
['59866.428879921354 0.03432093047839066 6.772346538762963e-05 0.015114095428533342 4.052893600107148e-05 0.0005345517772919333 1.4334178895167999e-06 0.015114095428533342 4.052893600107148e-05 0.019206835049857318 7.892440951624798e-05']
['59866.42891145932 0.03424747171967504 6.766265311204312e-05 0.014986852603381503 4.046567858936211e-05 0.0005300514829372903 1.4311806162366343e-06 0.014986852603381501 4.046567858936211e-05 0.019260619116293544 7.883974739849334e-05']
['59866.42894299728 0.03424769373137627 6.768811495846185e-05 0.015012672325218924 4.047601696029415e-05 0.0005309646687949978 1.4315462613116014e-06 0.015012672325218924 4.047601696029415e-05 0.019235021406157342 7.886690595934372e-05']
['59866.42897453524 0.03439428572820174 6.776656877386232e-05 0.015055403086752963 4.0489309499499256e-05 0.0005324759603328251 1.4320163887162093e-06 0.015055403086752961 4.0489309499499256e-05 0.019338882641448778 7.894106679750947e-05']
['59866.42900607321 0.03407297477089843 6.755087698262626e-05 0.01501261232175051 4.047499630552895e-05 0.0005309625466064198 1.4315101630335854e-06 0.01501261232175051 4.047499630552895e-05 0.019060362449147918 7.874862733441446e-05']
['59866.42903761117 0.03430181424884844 6.769529779492614e-05 0.01505843616798118 4.0486617496665615e-05 0.0005325832336373296 1.4319211785922556e-06 0.01505843616798118 4.0486617496665615e-05 0.019243378080867263 7.88785112680573e-05']
['59866.42906914913 0.03428206793750927 6.767702527164575e-05 0.014988019088079228 4.046386537678621e-05 0.000530092738894109 1.4311164869601163e-06 0.014988019088079228 4.046386537678621e-05 0.01929404884943004 7.885115186761482e-05']
['59866.42910068709 0.03429023145134589 6.769908484226862e-05 0.015077396220652774 4.0506501883965636e-05 0.0005332538083271 1.4326244449320672e-06 0.015077396220652774 4.0506501883965636e-05 0.019212835230693115 7.889196906755717e-05']
['59866.42913222506 0.03419030966734858 6.764754161019275e-05 0.014940567758937495 4.044860494289557e-05 0.0005284144914298452 1.430576759518467e-06 0.014940567758937496 4.044860494289557e-05 0.019249741908411083 7.881801524860415e-05']
['59866.42916376302 0.03421744274662262 6.764542140647797e-05 0.015004221035730316 4.0461649090771106e-05 0.0005306657655733061 1.4310381018768699e-06 0.015004221035730316 4.0461649090771106e-05 0.019213221710892302 7.882289061183107e-05']
['59866.42919530098 0.03428945092858056 6.769865260664521e-05 0.015043776621701527 4.04972121949324e-05 0.000532064758247576 1.4322958893921945e-06 0.015043776621701527 4.04972121949324e-05 0.019245674306879033 7.888682881391933e-05']
['59866.42922683895 0.03422218917433446 6.763347550519057e-05 0.015108460100275948 4.0529585107063634e-05 0.0005343524683256866 1.433440846945076e-06 0.015108460100275946 4.0529585107063634e-05 0.019113729074058512 7.884753818517054e-05']
['59866.42925837691 0.034368798437190914 6.773387451548766e-05 0.01503694134500976 4.049463112291808e-05 0.0005318230097869326 1.4322046026434047e-06 0.015036941345009762 4.049463112291808e-05 0.019331857092181153 7.891573294762607e-05']
['59866.42928991487 0.03429297524549838 6.769803497899125e-05 0.01495347225752377 4.04383621346958e-05 0.0005288708947049848 1.4302144942837702e-06 0.01495347225752377 4.04383621346958e-05 0.019339502987974613 7.885610358211673e-05']
['59866.42932145284 0.03430924237464259 6.771849364174702e-05 0.014998894808542232 4.046933616136924e-05 0.0005304773888210807 1.431309976384334e-06 0.01499889480854223 4.046933616136924e-05 0.01931034756610036 7.888955285999053e-05']
['59866.429352990795 0.034248932568665555 6.765231134445339e-05 0.015015240661241264 4.0469339545478724e-05 0.0005310555051002147 1.4313100960727237e-06 0.015015240661241262 4.0469339545478724e-05 0.019233691907424293 7.883275127441706e-05']
['59866.42938452876 0.034223629493488845 6.765861111772462e-05 0.015048489539434554 4.049758813806476e-05 0.0005322314436150419 1.432309185660603e-06 0.015048489539434553 4.049758813806476e-05 0.019175139954054295 7.885266199298419e-05']
['59866.42941606673 0.0342439604658886 6.763246901111938e-05 0.015081366451792953 4.05068595795572e-05 0.0005333942265295838 1.4326370958257382e-06 0.015081366451792954 4.05068595795572e-05 0.019162594014095646 7.883499563986789e-05']
['59866.429447604685 0.03413341240939307 6.758493169659388e-05 0.015030456285746093 4.048157108562279e-05 0.0005315936477340311 1.4317426983117357e-06 0.015030456285746093 4.048157108562279e-05 0.01910295612364698 7.87812197798028e-05']
['59866.42947914265 0.03426689817776898 6.770002977282356e-05 0.01492387767810867 4.041060269033813e-05 0.000527824200571065 1.4292327047755462e-06 0.01492387767810867 4.041060269033813e-05 0.01934302049966031 7.884358465365182e-05']
['59866.42951068062 0.034274517506882075 6.765764123295721e-05 0.014959479805079768 4.044440191618653e-05 0.0005290833682359618 1.43042810785698e-06 0.014959479805079766 4.044440191618653e-05 0.01931503770180231 7.882452704308213e-05']
['59866.429542218575 0.03423737429688759 6.764044898348945e-05 0.015003514044952258 4.047195661810761e-05 0.0005306407608895176 1.4314026560827942e-06 0.015003514044952258 4.047195661810761e-05 0.019233860251935332 7.882391522365546e-05']
['59866.42957375654 0.034218637272017155 6.764901440371893e-05 0.015025105212708726 4.0475856104158506e-05 0.0005314043922396438 1.431540572189576e-06 0.015025105212708726 4.0475856104158506e-05 0.01919353205930843 7.88332675788535e-05']
['59866.4296052945 0.03433538851049969 6.772909952059801e-05 0.015084909098773 4.0508643803270846e-05 0.0005335195220359181 1.4327001998309845e-06 0.015084909098773 4.0508643803270846e-05 0.019250479411726692 7.891882630051807e-05']
['59866.429636832465 0.03421342934520413 6.764764668127507e-05 0.015058351607698405 4.0491276511903986e-05 0.000532580242929109 1.4320859575489506e-06 0.015058351607698405 4.0491276511903986e-05 0.01915507773750573 7.88400125258621e-05']
['59866.42966837043 0.03435499219040257 6.774378064181934e-05 0.015106322749872872 4.0529953367499804e-05 0.0005342768750186269 1.4334538714936895e-06 0.015106322749872872 4.0529953367499804e-05 0.0192486694405297 7.894236464420511e-05']
['59866.42969990839 0.034212856337270725 6.763246066128447e-05 0.01506175859521171 4.0493275788493605e-05 0.0005327007404632856 1.4321566674938052e-06 0.015061758595211711 4.0493275788493605e-05 0.019151097742059014 7.882800973754947e-05']
['59866.429731446355 0.03416253013439856 6.75977302504204e-05 0.015019478751878812 4.047573407585597e-05 0.0005312053968944897 1.4315362563212324e-06 0.015019478751878812 4.047573407585597e-05 0.019143051382519746 7.878920093507745e-05']
['59866.42976298432 0.034175909275573076 6.759744719436967e-05 0.014990256976820394 4.046150415302019e-05 0.0005301718880174971 1.4310329757525367e-06 0.014990256976820392 4.046150415302019e-05 0.019185652298752683 7.878164878650652e-05']
['59866.42979452228 0.03426192753018507 6.76703558968212e-05 0.015061513915930356 4.0500342406749007e-05 0.0005326920867039301 1.4324065979885363e-06 0.015061513915930356 4.0500342406749007e-05 0.01920041361425471 7.886415410226851e-05']
['59866.429826060245 0.03414786053844191 6.761096201605693e-05 0.01500230666668155 4.046995257386265e-05 0.0005305980586184142 1.4313317775166252e-06 0.015002306666681548 4.046995257386265e-05 0.01914555387176036 7.879758401161412e-05']
['59866.4298575982 0.03433633361426255 6.774358800214118e-05 0.01506492847246147 4.051548579365094e-05 0.0005328128519373509 1.4329421857397798e-06 0.01506492847246147 4.051548579365094e-05 0.019271405141801076 7.893477246752141e-05']
['59866.42988913617 0.034350288404612135 6.771582776063575e-05 0.015107305770398812 4.052169754781067e-05 0.0005343116422577078 1.433161881601956e-06 0.015107305770398814 4.052169754781067e-05 0.01924298263421332 7.891413879314867e-05']
['59866.429920674134 0.03430006165725857 6.76967507046623e-05 0.015037798700988857 4.0482567687787345e-05 0.0005318533325518353 1.4317779459030213e-06 0.015037798700988855 4.0482567687787345e-05 0.01926226295626971 7.887767962209258e-05']
['59866.42995221209 0.034131275905113195 6.759111940875496e-05 0.015021259291769276 4.047698960311695e-05 0.0005312683706111429 1.4315806615145152e-06 0.015021259291769274 4.047698960311695e-05 0.01911001661334392 7.878417423733913e-05']
['59866.42998375006 0.03418773425562866 6.76342809430775e-05 0.015077331479397021 4.048745340696583e-05 0.0005332515185735722 1.4319507428714246e-06 0.01507733147939702 4.048745340696583e-05 0.01911040277623164 7.882658080919384e-05']
['59866.430015288024 0.03433518617164611 6.771983087079227e-05 0.015127124793447362 4.052985289449721e-05 0.0005350125968100253 1.433450317988132e-06 0.015127124793447362 4.052985289449721e-05 0.01920806137819875 7.89217616935804e-05']
['59866.43004682598 0.03431096148162388 6.771843480966641e-05 0.015023091054372162 4.0481485285612836e-05 0.0005313331559606585 1.4317396637571354e-06 0.01502309105437216 4.0481485285612836e-05 0.01928787042725172 7.889573539805766e-05']
['59866.43007836395 0.034336295279922005 6.773432819635472e-05 0.014944701488255887 4.0418663603607664e-05 0.0005285606921974954 1.4295178012628088e-06 0.014944701488255887 4.0418663603607664e-05 0.01939159379166612 7.887716769581102e-05']
['59866.43010990191 0.034257847686916594 6.771316181364417e-05 0.014953407107918669 4.0447538697152865e-05 0.0005288685905090532 1.4305390487894663e-06 0.01495340710791867 4.0447538697152865e-05 0.019304440578997925 7.887379583523566e-05']
['59866.43014143987 0.03421032076145803 6.764458925066033e-05 0.015017988005207481 4.047157174082546e-05 0.0005311526725163474 1.4313890438334746e-06 0.01501798800520748 4.047157174082546e-05 0.01919233275625055 7.882727049735601e-05']
['59866.43017297784 0.03420627788606078 6.764645233426428e-05 0.015038987623601464 4.049651591519885e-05 0.0005318953820875577 1.4322712635341126e-06 0.015038987623601464 4.049651591519885e-05 0.019167290262459315 7.884167879162546e-05']
['59866.4302045158 0.034187635205103706 6.762165897789182e-05 0.014995872459281195 4.046753933670797e-05 0.0005303704950822709 1.4312464267117317e-06 0.014995872459281195 4.046753933670797e-05 0.01919176274582251 7.880552330192538e-05']
['59866.43023605376 0.03423540913313796 6.764154197476261e-05 0.015008032331628616 4.0466239071160684e-05 0.0005308005625914839 1.4312004392252468e-06 0.015008032331628616 4.0466239071160684e-05 0.019227376801509342 7.88219176707082e-05']
['59866.43026759173 0.034317535004197895 6.770506405573163e-05 0.015043499467609835 4.045732764040682e-05 0.0005320549559267558 1.4308852618353582e-06 0.015043499467609836 4.045732764040682e-05 0.01927403553658806 7.88718648099178e-05']
['59866.430299129686 0.03427166679367466 6.767619552044289e-05 0.01497829242386825 4.047043772951617e-05 0.0005297487285187819 1.4313489363878312e-06 0.01497829242386825 4.047043772951617e-05 0.01929337436980641 7.885381265442947e-05']
['59866.43033066765 0.034253589500551955 6.767967710764997e-05 0.014994854813550196 4.047436090092959e-05 0.0005303345032270699 1.4314876901929518e-06 0.014994854813550196 4.047436090092959e-05 0.01925873468700176 7.885881424250847e-05']
['59866.43036220561 0.0342120610713315 6.764645610104599e-05 0.014986131976933574 4.045223604984665e-05 0.0005300259959903325 1.4307051836562803e-06 0.014986131976933574 4.045223604984665e-05 0.019225929094397923 7.881894711592675e-05']
['59866.430393743576 0.0342952882639032 6.768992406065786e-05 0.015017839192928786 4.047856733355801e-05 0.0005311474093586258 1.4316364623141953e-06 0.015017839192928784 4.047856733355801e-05 0.019277449070974416 7.886976754571436e-05']
['59866.43042528154 0.034334462343222814 6.775071261494076e-05 0.01513280321055738 4.052532736404731e-05 0.0005352134297326914 1.4332902600900842e-06 0.01513280321055738 4.052532736404731e-05 0.019201659132665434 7.894593857694957e-05']
['59866.4304568195 0.0341971544619688 6.760503703233868e-05 0.015062530062205074 4.050885672239949e-05 0.0005327280255267137 1.4327077303047183e-06 0.015062530062205075 4.050885672239949e-05 0.01913462439976372 7.881248952481943e-05']
['59866.430488357466 0.034267491165494594 6.769266340847547e-05 0.015007014639410541 4.0477606102651235e-05 0.0005307645690921388 1.4316024657252473e-06 0.01500701463941054 4.0477606102651235e-05 0.019260476526084057 7.887162528523513e-05']
['59866.43051989543 0.03440718064507578 6.778833966050516e-05 0.01507548751769932 4.050062054306352e-05 0.0005331863017693364 1.4324164350483826e-06 0.015075487517699318 4.050062054306352e-05 0.01933169312737646 7.896555741778333e-05']
['59866.43055143339 0.03428179281269011 6.768533107008168e-05 0.015041584038392408 4.049330727565806e-05 0.0005319872114760677 1.4321577811244421e-06 0.015041584038392406 4.049330727565806e-05 0.019240208774297704 7.887339206720746e-05']
['59866.430582971356 0.03423387277458934 6.768182989617193e-05 0.014992402413966977 4.0456373071930404e-05 0.0005302477673346019 1.4308515008816823e-06 0.014992402413966975 4.0456373071930404e-05 0.01924147036062237 7.885143131376607e-05']
['59866.430614509314 0.03421331540447857 6.761807621910885e-05 0.01501891915399826 4.0485373803348094e-05 0.0005311856051680822 1.4318771919391058e-06 0.015018919153998259 4.0485373803348094e-05 0.019194396250480313 7.881160906598747e-05']
['59866.43064604728 0.03426419082315541 6.766018489363191e-05 0.014962056593001781 4.0453044461728773e-05 0.0005291745034659813 1.4307337753778567e-06 0.014962056593001781 4.0453044461728773e-05 0.01930213423015363 7.883114502570072e-05']
['59866.430677585246 0.03422923541439916 6.765165178209148e-05 0.015009210340057758 4.048085441522472e-05 0.0005308422261169288 1.43171735128142e-06 0.015009210340057758 4.048085441522472e-05 0.0192200250743414 7.883809715506824e-05']
['59866.430709123204 0.03437639814841656 6.775517261781395e-05 0.015080725846768974 4.050788329065882e-05 0.0005333715697615536 1.4326733021995427e-06 0.015080725846768974 4.050788329065882e-05 0.019295672301647585 7.894081343107254e-05']
['59866.43074066117 0.03425532795876313 6.7668034688197e-05 0.015055436533059586 4.0500828902054066e-05 0.0005324771432539423 1.4324238042402234e-06 0.015055436533059584 4.0500828902054066e-05 0.01919989142570355 7.886241221466974e-05']
['59866.430772199135 0.03427993069404233 6.769090412050575e-05 0.015019001768049012 4.0487882772787446e-05 0.0005311885270424258 1.431965928580959e-06 0.015019001768049012 4.0487882772787446e-05 0.01926092892599332 7.887539002803398e-05']
['59866.430803737094 0.03416579924671646 6.76480786727938e-05 0.015059728123835032 4.04967564350819e-05 0.0005326289272285289 1.4322797701848458e-06 0.01505972812383503 4.04967564350819e-05 0.019106071122881433 7.884319774008946e-05']
['59866.43083527506 0.034190372182161144 6.761916819426025e-05 0.01500318570662124 4.046520496750728e-05 0.0005306291482965425 1.4311638652901116e-06 0.015003185706621241 4.046520496750728e-05 0.0191871864755399 7.880218728148372e-05']
['59866.43086681302 0.034327990225109975 6.771961357934469e-05 0.014997101682208702 4.046368511766023e-05 0.0005304139699500653 1.4311101115976858e-06 0.014997101682208703 4.046368511766023e-05 0.01933088854290127 7.88876154832742e-05']
['59866.43089835098 0.03429316519445841 6.770404377932554e-05 0.015077822258543741 4.05041928191952e-05 0.0005332688763351649 1.4325427784715928e-06 0.01507782225854374 4.05041928191952e-05 0.01921534293591467 7.889503900757877e-05']
['59866.43092988895 0.03428437933607878 6.768462008448003e-05 0.015060561551104936 4.0504216396799545e-05 0.0005326584036884651 1.4325436123587657e-06 0.015060561551104936 4.0504216396799545e-05 0.019223817784973844 7.887838323583441e-05']
['59866.43096142691 0.03426816365676642 6.767681602231537e-05 0.014956962122249043 4.0438218265063366e-05 0.000528994323420929 1.4302094059364006e-06 0.014956962122249043 4.0438218265063366e-05 0.019311201534517382 7.883781404485558e-05']
['59866.43099296487 0.034426916892612 6.77718210183725e-05 0.01508296722393226 4.052233047180604e-05 0.0005334508422626359 1.4331842667091703e-06 0.01508296722393226 4.052233047180604e-05 0.01934394966867974 7.896251636702427e-05']
['59866.43102450284 0.03431981472603241 6.76811031499455e-05 0.015133406540389477 4.052119278798465e-05 0.0005352347681604897 1.4331440293749817e-06 0.015133406540389477 4.052119278798465e-05 0.019186408185642934 7.888408450729832e-05']
['59866.4310560408 0.03423039299604221 6.766004356973538e-05 0.015085827080784226 4.0518078348410896e-05 0.000533551989008086 1.4330338786076207e-06 0.015085827080784224 4.0518078348410896e-05 0.01914456591525799 7.886441636699314e-05']
['59866.43108757876 0.03433169073459454 6.772506951776576e-05 0.015044182259041996 4.048081851345858e-05 0.0005320791047337623 1.4317160815161876e-06 0.015044182259041996 4.048081851345858e-05 0.019287508475552547 7.890108813385134e-05']
['59866.43111911672 0.034270981969625386 6.767511920942222e-05 0.014963272032309268 4.044613464136915e-05 0.0005292174908379402 1.4304893904742766e-06 0.01496327203230927 4.044613464136915e-05 0.019307709937316116 7.88404183616327e-05']
['59866.43115065469 0.03425370218736609 6.76653271752341e-05 0.014997932880522879 4.046818877412405e-05 0.0005304433675768188 1.4312693958617313e-06 0.014997932880522879 4.046818877412405e-05 0.019255769306843213 7.884333075403153e-05']
['59866.43118219265 0.03415383746332699 6.759452781242594e-05 0.014977134736476607 4.045139362935869e-05 0.0005297077837030185 1.43067538912632e-06 0.014977134736476607 4.045139362935869e-05 0.019176702726850382 7.877395151153803e-05']
['59866.43121373061 0.03427602055980461 6.769456750835238e-05 0.014965513144754718 4.0436318988515815e-05 0.0005292967539765442 1.430142232769547e-06 0.01496551314475472 4.0436318988515815e-05 0.019310507415049888 7.885207900546365e-05']
['59866.43124526858 0.0344428109972967 6.782609360824186e-05 0.015021682068922734 4.047804692322423e-05 0.0005312833232942095 1.4316180565637382e-06 0.015021682068922735 4.047804692322423e-05 0.019421128928373964 7.898639918918149e-05']
['59866.43127680654 0.03428223482230543 6.769114916747695e-05 0.014982144857150043 4.0451024651536735e-05 0.0005298849804742773 1.4306623392053743e-06 0.014982144857150045 4.0451024651536735e-05 0.019300089965155382 7.88566869134942e-05']
['59866.4313083445 0.034254342873468374 6.769388698882766e-05 0.01500260331480268 4.046673691749668e-05 0.0005306085503994891 1.4312180469375297e-06 0.01500260331480268 4.046673691749668e-05 0.019251739558665694 7.886709790784786e-05']
['59866.43133988247 0.0342208606430307 6.761292349799184e-05 0.01503761932038248 4.049611827684651e-05 0.0005318469882606799 1.4322571999542598e-06 0.01503761932038248 4.049611827684651e-05 0.019183241322648217 7.881270848941583e-05']
['59866.431371420425 0.034238381981786456 6.765268908377152e-05 0.01499911743836743 4.0488125961022065e-05 0.0005304852627404497 1.4319745296053239e-06 0.01499911743836743 4.0488125961022065e-05 0.019239264543419024 7.884272118655626e-05']
['59866.43140295839 0.034336728730577463 6.772875199861438e-05 0.015039548380979328 4.0470526594439e-05 0.0005319152148227937 1.43135207934155e-06 0.015039548380979326 4.0470526594439e-05 0.01929718034959814 7.889896938567072e-05']
['59866.43143449636 0.0343084307606274 6.770152782583448e-05 0.0150928180118352 4.05096057071597e-05 0.0005337992426155476 1.4327342202218048e-06 0.0150928180118352 4.05096057071597e-05 0.019215612748792202 7.88956590979617e-05']
['59866.431466034315 0.03435151726522276 6.772303263721326e-05 0.015057752858634789 4.0506809669222464e-05 0.0005325590665128543 1.4326353306087415e-06 0.015057752858634789 4.0506809669222464e-05 0.01929376440658797 7.891267819026083e-05']
['59866.43149757228 0.03420124966222095 6.763127352003054e-05 0.014933998233568987 4.0441158176493294e-05 0.0005281821419995862 1.4303133840333618e-06 0.01493399823356899 4.0441158176493294e-05 0.01926725142865196 7.880023117096379e-05']
['59866.43152911025 0.03431657488762023 6.769285394398195e-05 0.015102000367444296 4.052042081653185e-05 0.0005341240020120844 1.4331167264699506e-06 0.015102000367444298 4.052042081653185e-05 0.01921457452017593 7.889377021178605e-05']
['59866.431560648205 0.034286625643112204 6.768618879285802e-05 0.014984089970842317 4.0469933717026076e-05 0.0005299537747984997 1.4313311105924582e-06 0.014984089970842315 4.0469933717026076e-05 0.019302535672269888 7.886213088905791e-05']
['59866.43159218617 0.0342995866354422 6.770476233196413e-05 0.015002700856369691 4.045838156019322e-05 0.0005306120002267217 1.430922536622831e-06 0.015002700856369691 4.045838156019322e-05 0.019296885779072508 7.887214642000008e-05']
['59866.43162372413 0.034213084215884385 6.766681193638656e-05 0.01503776953102383 4.048226947603983e-05 0.0005318523008753634 1.4317673988199756e-06 0.01503776953102383 4.048226947603983e-05 0.019175314684860556 7.885183307675867e-05']
['59866.431655262095 0.034281521010141335 6.768409505533125e-05 0.01511349677062171 4.051005325828681e-05 0.0005345306040995205 1.4327500491049525e-06 0.01511349677062171 4.051005325828681e-05 0.019168024239519625 7.888093013173939e-05']
['59866.43168680006 0.0342398476854106 6.767043688824747e-05 0.015027350810413662 4.048831307113818e-05 0.000531483814011852 1.4319811472719644e-06 0.015027350810413663 4.048831307113818e-05 0.01921249687499694 7.885804666609985e-05']
['59866.43171833802 0.03411997468428052 6.755459228849235e-05 0.015003261390786015 4.0460432557919546e-05 0.0005306318250763064 1.430995075828701e-06 0.015003261390786015 4.0460432557919546e-05 0.019116713293494503 7.874433022153649e-05']
['59866.431749875985 0.03422751163630843 6.764613561168645e-05 0.014971038594275544 4.044401875283165e-05 0.000529492176777443 1.4304145562254378e-06 0.014971038594275546 4.044401875283165e-05 0.019256473042032887 7.881445499446198e-05']
['59866.43178141395 0.03428170123539708 6.766811768486201e-05 0.015053869460792959 4.0513552394268995e-05 0.0005324217194100721 1.4328738057245338e-06 0.015053869460792959 4.0513552394268995e-05 0.019227831774604125 7.886901849659036e-05']
['59866.43181295191 0.034237216883292995 6.764302164266545e-05 0.014999442690032448 4.046623660835143e-05 0.0005304967661649466 1.4312003521211875e-06 0.014999442690032446 4.046623660835143e-05 0.01923777419326055 7.882318619665908e-05']
['59866.431844489874 0.03423502893490375 6.76543725224095e-05 0.01500122576025072 4.046175695214425e-05 0.0005305598293736395 1.4310419166925822e-06 0.01500122576025072 4.046175695214425e-05 0.019233803174653032 7.883062791234986e-05']
['59866.43187602783 0.0341790928505363 6.764967016759876e-05 0.015007214531079107 4.0471543605642345e-05 0.0005307716388137244 1.4313880487549262e-06 0.015007214531079106 4.0471543605642345e-05 0.019171878319457197 7.883161621842033e-05']
['59866.4319075658 0.03416509667338648 6.760760687781301e-05 0.014996216481131227 4.046226485900306e-05 0.000530382662366263 1.4310598802230732e-06 0.014996216481131227 4.046226485900306e-05 0.019168880192255253 7.879075697862676e-05']
['59866.431939103764 0.03435608006508777 6.772846305472773e-05 0.015070014850914783 4.051452878005889e-05 0.0005329927457758578 1.4329083383078285e-06 0.015070014850914783 4.051452878005889e-05 0.01928606521417299 7.892130099045402e-05']
['59866.43197064172 0.03436320562893116 6.77508176840417e-05 0.015043858758106602 4.048648709502254e-05 0.0005320676632286595 1.4319165665775705e-06 0.015043858758106602 4.048648709502254e-05 0.019319346870824556 7.892609792807247e-05']
['59866.43200217969 0.034261033773205794 6.766512660750188e-05 0.015051738586495686 4.0486990346080044e-05 0.0005323463551484013 1.4319343654427744e-06 0.015051738586495684 4.0486990346080044e-05 0.01920929518671011 7.885281064168123e-05']
['59866.43203371765 0.03420853703108993 6.764503224702853e-05 0.014957753196411088 4.044739044774993e-05 0.0005290223019460939 1.4305338055394027e-06 0.014957753196411088 4.044739044774993e-05 0.019250783834678847 7.881523825843744e-05']
['59866.43206525561 0.03431027622416108 6.776258055467769e-05 0.015015021991601847 4.04740421555373e-05 0.0005310477712437664 1.4314764168807804e-06 0.015015021991601846 4.04740421555373e-05 0.019295254232559234 7.89298132003199e-05']
['59866.43209679358 0.03433122891361296 6.771375241426997e-05 0.015101072597253828 4.051902628034342e-05 0.0005340911888538918 1.4330674048415707e-06 0.015101072597253828 4.051902628034342e-05 0.01923015631635913 7.891098628662687e-05']
['59866.43212833154 0.03428191308394855 6.768898654609663e-05 0.015077888410490927 4.0502089082533755e-05 0.0005332712159816959 1.4324683740074523e-06 0.015077888410490927 4.0502089082533755e-05 0.01920402467345762 7.888103777009497e-05']
['59866.4321598695 0.03430660778959675 6.767884148830476e-05 0.01508568432135185 4.0506079208939756e-05 0.0005335469399260115 1.432609495861025e-06 0.01508568432135185 4.0506079208939756e-05 0.019220923468244902 7.887438138001454e-05']
['59866.43219140747 0.03429949504012391 6.770959221841986e-05 0.015088664754188142 4.0512766651050784e-05 0.0005336523511745557 1.4328460157429383e-06 0.015088664754188142 4.0512766651050784e-05 0.019210830285935766 7.890420229688148e-05']
['59866.43222294543 0.03426228548471411 6.792958296675798e-05 0.015048566271607689 4.0659690037159104e-05 0.0005322341574605194 1.438042367555147e-06 0.015048566271607687 4.0659690037159104e-05 0.019213719213106425 7.916841943575425e-05']
['59866.43225448339 0.034222884493708784 6.788987265894427e-05 0.01504217727296222 4.068018244567709e-05 0.0005320081928570008 1.4387671382465907e-06 0.01504217727296222 4.068018244567709e-05 0.019180707220746565 7.914488014686258e-05']
['59866.43228602135 0.034154145581442925 6.782461365069117e-05 0.015030283006528821 4.065139752528226e-05 0.0005315875192353725 1.4377490799427363e-06 0.015030283006528821 4.065139752528226e-05 0.019123862574914104 7.907410661919645e-05']
['59866.432317559316 0.03429717958963774 6.79615676802975e-05 0.01498736137594184 4.064082501319463e-05 0.0005300694770857097 1.4373751538183708e-06 0.014987361375941838 4.064082501319463e-05 0.0193098182136959 7.918618149220711e-05']
['59866.43234909728 0.034431188821701555 6.805686233103354e-05 0.01508999623446466 4.069509083565586e-05 0.0005336994426562529 1.4392944146818488e-06 0.01508999623446466 4.069509083565586e-05 0.019341192587236895 7.929581911089344e-05']
['59866.43238063524 0.03422672710665472 6.787904282192264e-05 0.014968099283868436 4.0633148708342104e-05 0.0005293882199373156 1.4371036600712684e-06 0.014968099283868436 4.0633148708342104e-05 0.019258627822786284 7.91114228691069e-05']
['59866.432412173206 0.03424634485794145 6.788276282859976e-05 0.015091877796541265 4.068070439115408e-05 0.0005337659893018587 1.4387855982916321e-06 0.015091877796541267 4.068070439115408e-05 0.019154467061400185 7.913904977319597e-05']
['59866.43244371117 0.03431038250357487 6.796703986944365e-05 0.01501177603483371 4.065295028059506e-05 0.0005309329690071639 1.4378039974279463e-06 0.015011776034833712 4.065295028059506e-05 0.01929860646874116 7.919710143137233e-05']
['59866.43247524913 0.034230597605403146 6.790558070220447e-05 0.015076170196070918 4.069140262498943e-05 0.0005332104465776435 1.4391639709132428e-06 0.015076170196070918 4.069140262498943e-05 0.01915442740933223 7.916412153300636e-05']
['59866.432506787096 0.03424993413545525 6.792037591795775e-05 0.015128342998305545 4.0720985576361825e-05 0.0005350556819933317 1.4402102537892793e-06 0.015128342998305547 4.0720985576361825e-05 0.0191215911371497 7.919202062800875e-05']
['59866.432538325054 0.03427812149245792 6.793717220856996e-05 0.015024795509228958 4.064364520736475e-05 0.000531393438719711 1.437474897783405e-06 0.015024795509228956 4.064364520736475e-05 0.019253325983228965 7.916669289189132e-05']
['59866.43256986302 0.03430415640851211 6.797883619736849e-05 0.0150807482789097 4.0687863830720955e-05 0.0005333723631362383 1.4390388116687069e-06 0.0150807482789097 4.0687863830720955e-05 0.01922340812960241 7.922515026086064e-05']
['59866.432601400986 0.03422369686126254 6.78949118752985e-05 0.015028486648623666 4.066703572305881e-05 0.0005315239860708907 1.4383021680487778e-06 0.015028486648623664 4.066703572305881e-05 0.019195210212638876 7.914244659507999e-05']
['59866.432632938944 0.03424615244852213 6.790387789619335e-05 0.015030248233512612 4.066428630414371e-05 0.0005315862893915023 1.4382049272463403e-06 0.015030248233512613 4.066428630414371e-05 0.019215904215009516 7.914872591499188e-05']
['59866.43266447691 0.03423882023153618 6.793636919262845e-05 0.014971479500753185 4.062554941811561e-05 0.000529507770654189 1.4368348901593715e-06 0.014971479500753183 4.062554941811561e-05 0.019267340730782997 7.9156714968478e-05']
['59866.432696014876 0.0343810027403671 6.802076685464851e-05 0.015126499940939831 4.0697211961905676e-05 0.0005349904971732972 1.4393694341768666e-06 0.015126499940939833 4.0697211961905676e-05 0.019254502799427267 7.926593079606602e-05']
['59866.432727552834 0.034382524888296025 6.803998068674255e-05 0.01507428120912836 4.067833435126571e-05 0.0005331436373311226 1.4387017752775078e-06 0.01507428120912836 4.067833435126571e-05 0.019308243679167662 7.927273085649102e-05']
['59866.4327590908 0.03438133150717938 6.799024839165363e-05 0.015046272175609793 4.0670854408923646e-05 0.0005321530204120767 1.4384372264335564e-06 0.015046272175609795 4.0670854408923646e-05 0.019335059331569586 7.922620951876104e-05']
['59866.43279062876 0.03412306374171819 6.781700240808589e-05 0.015055389583137992 4.068152055906223e-05 0.0005324754827401425 1.4388144643265156e-06 0.015055389583137993 4.068152055906223e-05 0.019067674158580197 7.908306981026804e-05']
['59866.432822166724 0.034346056182708466 6.798049380199795e-05 0.015014652969375422 4.065414688846842e-05 0.0005310347197523339 1.4378463187741656e-06 0.015014652969375422 4.065414688846842e-05 0.019331403213333043 7.920926206443693e-05']
['59866.43285370469 0.0341576832265119 6.783903791933717e-05 0.015016385777921951 4.0641217962157796e-05 0.0005310960053180255 1.4373890515450087e-06 0.015016385777921953 4.0641217962157796e-05 0.019141297448589948 7.90812472288398e-05']
['59866.43288524265 0.03413544593881818 6.783795770572391e-05 0.015011987101478422 4.064912894160888e-05 0.0005309404339626811 1.437668845208195e-06 0.015011987101478422 4.064912894160888e-05 0.019123458837339763 7.9084386508306e-05']
['59866.43291678061 0.034306510554188825 6.798410666652792e-05 0.014991585286747744 4.0649067600875754e-05 0.0005302188673710294 1.4376666757235526e-06 0.014991585286747742 4.0649067600875754e-05 0.019314925267441083 7.920975606619688e-05']
['59866.43294831858 0.03426252770051409 6.790617893330601e-05 0.015110915673363803 4.069575211243497e-05 0.0005344393164579212 1.4393178025636595e-06 0.015110915673363803 4.069575211243497e-05 0.019151612027150287 7.916687045298006e-05']
['59866.43297985654 0.03431514449863233 6.795792508176652e-05 0.014984602413604312 4.063660460793634e-05 0.0005299718987537493 1.4372258875164355e-06 0.014984602413604314 4.063660460793634e-05 0.019330542085028015 7.918088920617615e-05']
['59866.4330113945 0.03425459079195418 6.793072870212508e-05 0.014909877079158832 4.059152122572621e-05 0.0005273290306757064 1.4356313890430927e-06 0.014909877079158834 4.059152122572621e-05 0.019344713712795343 7.91344141156065e-05']
['59866.43304293246 0.034255503095231205 6.79369681572833e-05 0.01504202507042272 4.066756965048932e-05 0.0005320028097933313 1.4383210518687372e-06 0.015042025070422719 4.066756965048932e-05 0.019213478024808488 7.91788031210445e-05']
['59866.43307447043 0.03433236660285805 6.798382128138362e-05 0.015028736593804302 4.065453746546191e-05 0.0005315328260733353 1.437860132609537e-06 0.015028736593804303 4.065453746546191e-05 0.019303630009053746 7.921231831318759e-05']
['59866.43310600839 0.03421579674001971 6.78804766667637e-05 0.014964783245154982 4.062692577372362e-05 0.0005292709390589311 1.436883568781253e-06 0.01496478324515498 4.062692577372362e-05 0.01925101349486473 7.910945714850216e-05']
['59866.43313754635 0.034151643181678334 6.785149999001045e-05 0.014958675335961723 4.061946848635628e-05 0.0005290549159611392 1.4366198211931266e-06 0.014958675335961723 4.061946848635628e-05 0.019192967845716613 7.908076422878373e-05']
['59866.43316908432 0.034313226236016126 6.798515073193437e-05 0.015089407402580498 4.069712523161047e-05 0.0005336786169884719 1.439366366720156e-06 0.0150894074025805 4.069712523161047e-05 0.019223818833435626 7.923532496406652e-05']
['59866.43320062228 0.03424193661591719 6.790453625042572e-05 0.015047000106421071 4.066968931005485e-05 0.000532178765698042 1.4383960194904098e-06 0.015047000106421073 4.066968931005485e-05 0.01919493650949612 7.915206675736124e-05']
['59866.43323216024 0.03422856956857714 6.788981109561413e-05 0.015029055908306638 4.0665343230119976e-05 0.000531544119513657 1.4382423083560302e-06 0.015029055908306638 4.0665343230119976e-05 0.0191995136602705 7.913720105374991e-05']
['59866.43326369821 0.034327887847175345 6.795541053392913e-05 0.015056496374031152 4.065822484408625e-05 0.0005325146274605015 1.4379905469506738e-06 0.015056496374031154 4.065822484408625e-05 0.01927139147314419 7.918982932363927e-05']
['59866.433295236166 0.03418402263751332 6.785760237061953e-05 0.015042678323706447 4.066740447173864e-05 0.0005320259139020416 1.4383152098654786e-06 0.015042678323706447 4.066740447173864e-05 0.019141344313806874 7.91106313080429e-05']
['59866.43332677413 0.034251472372944326 6.79205463310171e-05 0.015091481871031777 4.0687915065573105e-05 0.0005337519863014295 1.4390406237309242e-06 0.015091481871031777 4.0687915065573105e-05 0.019159990501912548 7.917516685354778e-05']
['59866.4333583121 0.03425013868299263 6.794539694895092e-05 0.015005809385127486 4.065289260816735e-05 0.000530721941941732 1.4378019576830684e-06 0.015005809385127486 4.065289260816735e-05 0.01924432929786514 7.917849862154307e-05']
['59866.433389850055 0.034225709140253364 6.789962081048347e-05 0.015035066375525525 4.0675930061334974e-05 0.0005317566963065854 1.4386167409159296e-06 0.015035066375525527 4.0675930061334974e-05 0.019190642764727837 7.915105680003302e-05']
['59866.43342138802 0.03428116414957069 6.791994931042043e-05 0.015057423513902124 4.06845897309606e-05 0.0005325474183257021 1.4389230140773652e-06 0.015057423513902124 4.06845897309606e-05 0.01922374063566857 7.917294585846017e-05']
['59866.43345292599 0.03424086898386489 6.790431047538587e-05 0.015064835544121942 4.0665875759693664e-05 0.0005328095652696644 1.4382611427369182e-06 0.01506483554412194 4.0665875759693664e-05 0.019176033439742952 7.914991366034735e-05']
['59866.433484463945 0.03434146413067119 6.799856704846021e-05 0.015080473924548914 4.068184635483245e-05 0.000533362659835643 1.4388259869947973e-06 0.015080473924548912 4.068184635483245e-05 0.019260990206122278 7.923899130782858e-05']
['59866.43351600191 0.0343795485650448 6.802071235563616e-05 0.015103777751913761 4.070745649002036e-05 0.0005341868641285487 1.4397317602411102e-06 0.01510377775191376 4.070745649002036e-05 0.01927577081313104 7.927114432916366e-05']
['59866.43354753987 0.03438395343884257 6.799925353282563e-05 0.01507974152690849 4.066612160339723e-05 0.0005333367565679137 1.4382698376792849e-06 0.01507974152690849 4.066612160339723e-05 0.01930421191193408 7.923150842489237e-05']
['59866.433579077835 0.03426224459459055 6.793392034089796e-05 0.015050872311856088 4.066378859930464e-05 0.0005323157169504087 1.4381873245384872e-06 0.015050872311856088 4.066378859930464e-05 0.019211372282734458 7.917424604082068e-05']
['59866.4336106158 0.03426764425915649 6.792476195669447e-05 0.015085977530230188 4.068445387251757e-05 0.000533557310068755 1.438918209067861e-06 0.015085977530230188 4.068445387251757e-05 0.0191816667289263 7.917700470325092e-05']
['59866.43364215376 0.03434435953053352 6.797879766635116e-05 0.014965728049121708 4.062114508435714e-05 0.0005293043546637216 1.4366791187174411e-06 0.014965728049121708 4.062114508435714e-05 0.01937863148141181 7.919087295974898e-05']
['59866.433673691725 0.03416003635305211 6.783443890338613e-05 0.015014160855585532 4.0649286649318096e-05 0.0005310173147873951 1.437674422977414e-06 0.015014160855585532 4.0649286649318096e-05 0.01914587549746658 7.908144919281422e-05']
['59866.43370522969 0.03424785699448857 6.79006878096165e-05 0.015008331227700546 4.0669815141187005e-05 0.0005308111338775547 1.438400469856338e-06 0.015008331227700547 4.0669815141187005e-05 0.019239525766788022 7.914882986271702e-05']
['59866.43373676765 0.034300658407569434 6.795747633037834e-05 0.014994471237055045 4.063362884872929e-05 0.0005303209369836794 1.4371206415637127e-06 0.014994471237055045 4.063362884872929e-05 0.01930618717051439 7.9178976897976e-05']
['59866.433768305615 0.034321206340013406 6.795940042925858e-05 0.015056067824140854 4.067277418833006e-05 0.0005324994706086343 1.4385051247407068e-06 0.015056067824140856 4.067277418833006e-05 0.01926513851587255 7.920072390375733e-05']
['59866.43379984357 0.034258519780196735 6.79435734362553e-05 0.014985905196204873 4.064435035307956e-05 0.0005300179752627833 1.4374998372114297e-06 0.01498590519620487 4.064435035307956e-05 0.019272614583991862 7.91725481900873e-05']
['59866.43383138154 0.03430824659849573 6.798519913053489e-05 0.015056331623068386 4.067070176293478e-05 0.0005325088005871452 1.4384318276860738e-06 0.015056331623068388 4.067070176293478e-05 0.019251914975427345 7.92217980274878e-05']
['59866.433862919504 0.03425185379012799 6.792381307552028e-05 0.015035410064845503 4.0633325611718024e-05 0.0005317688518297326 1.437109916748319e-06 0.015035410064845503 4.0633325611718024e-05 0.019216443725282487 7.91499307200336e-05']
['59866.43389445746 0.03433277688986528 6.798588732923498e-05 0.015021059892779973 4.064925249521659e-05 0.0005312613183145218 1.4376732150231737e-06 0.015021059892779971 4.064925249521659e-05 0.01931171699708531 7.921137926057913e-05']
['59866.43392599543 0.034267495676664296 6.794717648199794e-05 0.015019089509314201 4.064935299214548e-05 0.0005311916302548854 1.437676769374951e-06 0.015019089509314201 4.064935299214548e-05 0.019248406167350095 7.91782084323447e-05']
['59866.433957533394 0.03425062618794657 6.790684759155302e-05 0.015072747198363783 4.0678394680926775e-05 0.0005330893827986918 1.438703909002791e-06 0.015072747198363785 4.0678394680926775e-05 0.019177878989582783 7.915852287429107e-05']
['59866.43398907135 0.034330834404367634 6.799292375673488e-05 0.014983937590180888 4.06429968444163e-05 0.0005299483854350556 1.437451966634924e-06 0.014983937590180886 4.06429968444163e-05 0.019346896814186748 7.92142087853208e-05']
['59866.43402060932 0.03435030722575841 6.798464794014195e-05 0.015093554326404954 4.06995327571967e-05 0.0005338252844163136 1.4394515155196381e-06 0.015093554326404954 4.06995327571967e-05 0.019256752899353455 7.923613015663482e-05']
['59866.43405214728 0.03425812563018967 6.791877912994831e-05 0.01494955611174113 4.0621302548827845e-05 0.0005287323893807235 1.4366846878838575e-06 0.01494955611174113 4.0621302548827845e-05 0.019308569518448542 7.913943883593129e-05']
['59866.43408368524 0.03426049273689419 6.790044466645181e-05 0.0149767333203086 4.064660543033779e-05 0.0005296935865102684 1.4375795942542523e-06 0.0149767333203086 4.064660543033779e-05 0.01928375941658559 7.913669767504486e-05']
['59866.43411522321 0.034352487314913596 6.798726727202694e-05 0.015022675854072331 4.0670145221475174e-05 0.0005313184712539716 1.4384121440584445e-06 0.015022675854072333 4.0670145221475174e-05 0.019329811460841263 7.922328712855776e-05']
['59866.43414676117 0.03431021695606529 6.798098822527648e-05 0.015014727009071808 4.064784822606156e-05 0.0005310373383709262 1.4376235491615169e-06 0.01501472700907181 4.064784822606156e-05 0.019295489946993476 7.920645381213652e-05']
['59866.43417829913 0.03430698571391629 6.794556136653457e-05 0.014976405613251448 4.0635335152872374e-05 0.0005296819962440391 1.4371809897278882e-06 0.014976405613251448 4.0635335152872374e-05 0.019330580100664845 7.916962657736729e-05']
['59866.4342098371 0.03420230589696964 6.78831517404168e-05 0.015053500095699082 4.068707594452888e-05 0.0005324086557921841 1.4390109458949152e-06 0.015053500095699082 4.068707594452888e-05 0.019148805801270558 7.914265878227944e-05']
['59866.43424137506 0.034274598181918615 6.795670193174602e-05 0.015032757373855237 4.06608923704255e-05 0.0005316750320778223 1.4380848913957225e-06 0.015032757373855237 4.06608923704255e-05 0.019241840808063376 7.919230711249357e-05']
['59866.43427291302 0.034238710568127446 6.793983774355357e-05 0.015008766518265904 4.065133780044417e-05 0.0005308265291320343 1.4377469676086902e-06 0.015008766518265904 4.065133780044417e-05 0.019229944049861544 7.917292982823237e-05']
['59866.43430445098 0.03414107279574759 6.788114327332281e-05 0.014966956247221521 4.063238579657651e-05 0.0005293477932856508 1.4370766775871268e-06 0.014966956247221521 4.063238579657651e-05 0.019174116548526066 7.9112833267525e-05']
['59866.434335988946 0.034298975558920704 6.794749227142746e-05 0.014999771740346134 4.0643121135128394e-05 0.0005305084039391575 1.4374563625196374e-06 0.014999771740346132 4.0643121135128394e-05 0.01929920381857457 7.917528024314416e-05']
['59866.43436752691 0.034325702451208036 6.797287935678538e-05 0.015084034881672101 4.0673373489739714e-05 0.0005334886029308195 1.4385263206922064e-06 0.015084034881672101 4.0673373489739714e-05 0.019241667569535936 7.921259772970434e-05']
['59866.43439906487 0.03432130592215103 6.796377709972646e-05 0.01508133635138462 4.0685990176528045e-05 0.0005333931619454115 1.4389725447072742e-06 0.015081336351384618 4.0685990176528045e-05 0.019239969570766416 7.921126683942025e-05']
['59866.434430602836 0.03431072576738659 6.796459528700369e-05 0.014983897066534574 4.064158050825987e-05 0.0005299469522042506 1.4374018739903961e-06 0.014983897066534572 4.064158050825987e-05 0.01932682870085202 7.91891676855842e-05']
['59866.4344621408 0.03428802277468634 6.794728056698819e-05 0.015044591039530153 4.0665455057747836e-05 0.0005320935623860578 1.4382462634493076e-06 0.015044591039530155 4.0665455057747836e-05 0.019243431735156184 7.918656559987128e-05']
['59866.43449367876 0.03427093069648369 6.792128813244366e-05 0.015022121516040106 4.066055878778661e-05 0.0005312988655566444 1.4380730933232985e-06 0.015022121516040108 4.066055878778661e-05 0.019248809180443582 7.916174848059815e-05']
['59866.434525216726 0.034273229018674405 6.792682125687098e-05 0.015010666970240215 4.064695331185745e-05 0.0005308937438711055 1.4375918980461333e-06 0.015010666970240217 4.064695331185745e-05 0.019262562048434188 7.915950896512193e-05']
['59866.434556754684 0.034287396897260146 6.795169098584408e-05 0.015049755629669275 4.067691572042111e-05 0.0005322762223970989 1.4386516014749877e-06 0.015049755629669277 4.067691572042111e-05 0.01923764126759087 7.919623589768574e-05']
['59866.43458829265 0.03420175612562339 6.789738236299475e-05 0.015062747949985775 4.066643703779786e-05 0.0005327357317305665 1.4382809938890808e-06 0.015062747949985777 4.066643703779786e-05 0.019139008175637615 7.91442583710018e-05']
['59866.434619830616 0.03423452080404379 6.790806998398442e-05 0.01503570862742598 4.0667593215986996e-05 0.0005317794113209559 1.4383218853277244e-06 0.015035708627425981 4.0667593215986996e-05 0.019198812176617806 7.91540214198288e-05']
['59866.434651368574 0.03421535502064252 6.789269922643908e-05 0.014994496349611123 4.0640653230751016e-05 0.0005303218251586646 1.4373690782572512e-06 0.014994496349611124 4.0640653230751016e-05 0.019220858671031394 7.91269947822731e-05']
['59866.43468290654 0.034240421330612246 6.791260816144675e-05 0.015095833002870979 4.068360405388924e-05 0.0005339058761103747 1.43888815288221e-06 0.015095833002870977 4.068360405388924e-05 0.01914458832774127 7.916614166487992e-05']
['59866.434714444506 0.03430584409319421 6.798430165886125e-05 0.015064163998392235 4.0664215993815026e-05 0.0005327858141980211 1.438202440527149e-06 0.015064163998392235 4.0664215993815026e-05 0.019241680094801976 7.921769836617753e-05']
['59866.434745982464 0.03418899562176449 6.788519436734464e-05 0.014947406240429695 4.0616703052817724e-05 0.0005286563532371177 1.4365220139892481e-06 0.014947406240429697 4.0616703052817724e-05 0.01924158938133479 7.910825608729428e-05']
['59866.43477752043 0.03428715830779621 6.795919793014868e-05 0.014970756882523252 4.063233314919341e-05 0.000529482213262353 1.4370748155668467e-06 0.014970756882523252 4.063233314919341e-05 0.01931640142527296 7.917978959593266e-05']
['59866.43480905839 0.034200273014754666 6.78873314143639e-05 0.015037133954933236 4.0675328239674955e-05 0.0005318298219694681 1.438595455828807e-06 0.015037133954933238 4.0675328239674955e-05 0.019163139059821428 7.91402052939527e-05']
['59866.434840596354 0.03415201719411871 6.784992209468703e-05 0.014983334281729275 4.064419658493337e-05 0.0005299270477634372 1.4374943987757505e-06 0.014983334281729276 4.064419658493337e-05 0.01916868291238943 7.909211493119784e-05']
['59866.43487213432 0.034286958949266935 6.792617883173332e-05 0.015096157868102264 4.0698656093070324e-05 0.0005339173658675743 1.439420509868717e-06 0.015096157868102266 4.0698656093070324e-05 0.01919080108116467 7.918551874214518e-05']
['59866.43490367228 0.03415591088092958 6.786036470848945e-05 0.014988900608202632 4.0642986401562164e-05 0.0005301239162907923 1.4374515972945117e-06 0.014988900608202634 4.0642986401562164e-05 0.019167010272726943 7.910045159167403e-05']
['59866.43493521024 0.034243808113332073 6.791480690107356e-05 0.01503834254439685 4.0672539618608884e-05 0.0005318725670777577 1.4384968285339012e-06 0.015038342544396852 4.0672539618608884e-05 0.019205465568935223 7.916234253379202e-05']
['59866.43496674821 0.03429840354765318 6.792925956757912e-05 0.015057129824359949 4.0667604629879627e-05 0.0005325370311829528 1.4383222890115981e-06 0.015057129824359949 4.0667604629879627e-05 0.019241273723293227 7.917220706619051e-05']
['59866.43499828617 0.03434105264469273 6.799239814314666e-05 0.015048521701051655 4.066054662460607e-05 0.0005322325810995618 1.4380726631387858e-06 0.015048521701051655 4.066054662460607e-05 0.01929253094364107 7.922276350309889e-05']
['59866.43502982413 0.03426700660761388 6.793934719758992e-05 0.0150275486801109 4.065548027224265e-05 0.0005314908122208305 1.437893477578323e-06 0.015027548680110902 4.065548027224265e-05 0.01923945792750298 7.917463592465317e-05']
['59866.43506136209 0.03438141531080856 6.799877770537316e-05 0.01506708444209619 4.067577236585754e-05 0.0005328891037650223 1.4386111635793214e-06 0.015067084442096187 4.067577236585754e-05 0.01931433086871237 7.923605383273333e-05']
['59866.43509290006 0.034299471360314984 6.79757302637403e-05 0.015036872889123544 4.0662493835726026e-05 0.000531820588655227 1.438141531644338e-06 0.015036872889123544 4.0662493835726026e-05 0.01926259847119144 7.920945846191121e-05']
['59866.43512443802 0.03425846008954809 6.789897131264217e-05 0.015042760860252136 4.065733930535857e-05 0.0005320288330352043 1.4379592274249385e-06 0.015042760860252137 4.065733930535857e-05 0.019215699229295953 7.914094733262964e-05']
['59866.43515597598 0.03437271175083418 6.799930069814145e-05 0.015079818602615789 4.069497631527803e-05 0.0005333394825634268 1.4392903643520232e-06 0.015079818602615789 4.069497631527803e-05 0.01929289314821839 7.924636264673162e-05']
['59866.43518751395 0.034253098415665935 6.789548709745577e-05 0.01504497789148171 4.067951763049524e-05 0.0005321072444750212 1.4387436252193829e-06 0.01504497789148171 4.067951763049524e-05 0.019208120524184226 7.914935453211578e-05']
['59866.43521905191 0.034298126758659814 6.79848917993215e-05 0.015025537943564475 4.064810553071057e-05 0.0005314196969629151 1.4376326494519105e-06 0.015025537943564473 4.064810553071057e-05 0.01927258881509534 7.920993622141881e-05']
['59866.43525058987 0.03418850887387054 6.787964763485596e-05 0.015004306949230885 4.0643986017693286e-05 0.0005306688041418158 1.4374869514830589e-06 0.015004306949230885 4.0643986017693286e-05 0.019184201924639654 7.911750857072443e-05']
['59866.43528212784 0.03430740024022486 6.798107026955536e-05 0.01501977268523433 4.0652100114373426e-05 0.0005312157926603719 1.4377739289486967e-06 0.015019772685234328 4.0652100114373426e-05 0.019287627554990534 7.920870633145869e-05']
['59866.435313665796 0.03422265485236049 6.793028577562567e-05 0.015021443377718918 4.0671561586555854e-05 0.0005312748813197739 1.4384622377259585e-06 0.015021443377718918 4.0671561586555854e-05 0.019201211474641575 7.917512012903534e-05']
['59866.43534520376 0.034201790112978456 6.78519482606999e-05 0.01499416619807134 4.0649946972412944e-05 0.0005303101484365478 1.4376977771295434e-06 0.01499416619807134 4.0649946972412944e-05 0.019207623914907115 7.909680822658194e-05']
['59866.43537674173 0.03427472414037555 6.794817380265995e-05 0.015055711062991714 4.0682928036225844e-05 0.0005324868527641035 1.4388642436482662e-06 0.015055711062991715 4.0682928036225844e-05 0.019219013077383836 7.919630645880662e-05']
['59866.435408279685 0.0342536818277608 6.79129555247737e-05 0.014936533313432719 4.060538188651151e-05 0.0005282718021087963 1.436121609638315e-06 0.01493653331343272 4.060538188651151e-05 0.01931714851432808 7.912626976080274e-05']
['59866.43543981765 0.03423622191175308 6.794209359218268e-05 0.014994661877535951 4.064059453348144e-05 0.0005303276795114326 1.4373670022660068e-06 0.014994661877535951 4.064059453348144e-05 0.019241560034217127 7.916935016610754e-05']
['59866.43547135562 0.034170841144642985 6.784502713306222e-05 0.014949483986404331 4.0616134516715304e-05 0.0005287298384687516 1.4365019061379089e-06 0.014949483986404333 4.0616134516715304e-05 0.019221357158238653 7.907349802409062e-05']
['59866.435502893575 0.03435957700407146 6.800025419583825e-05 0.015010106279612257 4.0643975076406374e-05 0.0005308739134966643 1.4374865645141932e-06 0.015010106279612256 4.0643975076406374e-05 0.019349470724459205 7.922100277521209e-05']
['59866.43553443154 0.034191930727387757 6.785443819013417e-05 0.014954137325629382 4.061966658413746e-05 0.0005288944166775405 1.4366268274689246e-06 0.01495413732562938 4.061966658413746e-05 0.019237793401758376 7.90833869754276e-05']
['59866.4355659695 0.034133634751570066 6.783946661011658e-05 0.015015335481991559 4.065419929515056e-05 0.0005310588586982408 1.437848172281391e-06 0.01501533548199156 4.065419929515056e-05 0.019118299269578504 7.908828706120106e-05']
['59866.435597507465 0.034319767169199246 6.796386810103329e-05 0.015046103574377107 4.066737958589898e-05 0.0005321470573632781 1.4383143297089463e-06 0.015046103574377108 4.066737958589898e-05 0.01927366359482214 7.920178741441536e-05']
['59866.43562904543 0.034197624635416486 6.788403079396716e-05 0.015055228978994332 4.067659166022458e-05 0.0005324698025305103 1.4386401401900683e-06 0.01505522897899433 4.067659166022458e-05 0.019142395656422156 7.913802338906965e-05']
['59866.43566058339 0.034311680571681644 6.797631797204865e-05 0.01497673588509062 4.061991437080731e-05 0.0005296936772208765 1.4366355911296665e-06 0.014976735885090619 4.061991437080731e-05 0.019334944686591027 7.918811305068951e-05']
['59866.435692121355 0.03421749021794719 6.789169269306934e-05 0.015118925261434882 4.070294353414403e-05 0.0005347225976876195 1.4395721470776272e-06 0.015118925261434884 4.070294353414403e-05 0.019098564956512305 7.915814265806066e-05']
['59866.43572365932 0.03431592607824048 6.799969728052675e-05 0.015091791335772561 4.069510889663445e-05 0.0005337629313776981 1.4392950534582976e-06 0.015091791335772563 4.069510889663445e-05 0.019224134742467917 7.9246771027924e-05']
['59866.43575519728 0.03434594569187603 6.801351903842078e-05 0.014982465451917164 4.062878476281125e-05 0.0005298963191947032 1.4369493170706864e-06 0.014982465451917164 4.062878476281125e-05 0.019363480239958868 7.922459796863895e-05']
['59866.435786735245 0.03429122576732296 6.798912416689759e-05 0.015025042508851736 4.0665420263932695e-05 0.000531402174544357 1.4382450328698257e-06 0.015025042508851736 4.0665420263932695e-05 0.019266183258471223 7.922245521456707e-05']
['59866.4358182732 0.0342938916129118 6.79357122400107e-05 0.015020753931896405 4.064279682986603e-05 0.0005312504971618523 1.4374448925672872e-06 0.015020753931896403 4.064279682986603e-05 0.019273137681015393 7.916500446353367e-05']
['59866.43584981117 0.03424738996894561 6.797265516547292e-05 0.015008103468266979 4.065334533721267e-05 0.0005308030785354019 1.4378179696976113e-06 0.01500810346826698 4.065334533721267e-05 0.019239286500678625 7.920212331339964e-05']
['59866.435881349134 0.03415873961266138 6.785897982859943e-05 0.015110973351808128 4.070621986676554e-05 0.0005344413564155932 1.4396880236402775e-06 0.015110973351808126 4.070621986676554e-05 0.019047766260853256 7.913177288055488e-05']
['59866.43591288709 0.03428877328624164 6.797034480992045e-05 0.015013294259627703 4.064969119344264e-05 0.0005309866652250947 1.4376887307989962e-06 0.015013294259627705 4.064969119344264e-05 0.01927547902661394 7.91982649286064e-05']
['59866.43594442506 0.034280344078419636 6.796521608900345e-05 0.015077673149392389 4.068312171640115e-05 0.000533263602677721 1.438871093683217e-06 0.01507767314939239 4.068312171640115e-05 0.019202670929027246 7.9211028213352e-05']
['59866.435975963024 0.03433483544321582 6.798351692688189e-05 0.01503533539698544 4.0653539636114045e-05 0.000531766210994395 1.4378248416155207e-06 0.01503533539698544 4.0653539636114045e-05 0.019299500046230378 7.921154498362428e-05']
['59866.43600750098 0.034237879589062103 6.790471199707072e-05 0.014995808762519222 4.065380140838277e-05 0.0005303682422701538 1.4378340999156387e-06 0.014995808762519222 4.065380140838277e-05 0.019242070826542883 7.914405524331784e-05']
['59866.43603903895 0.03427326393385766 6.792069286383902e-05 0.015041051892811146 4.0679559407454876e-05 0.0005319683906761339 1.4387451027770793e-06 0.015041051892811144 4.0679559407454876e-05 0.01923221204104652 7.917099893703883e-05']
['59866.43607057691 0.034344679357624606 6.798535727060613e-05 0.01501966442871885 4.0647537826936116e-05 0.0005312119638693585 1.4376125710381512e-06 0.01501966442871885 4.0647537826936116e-05 0.019325014928905756 7.92100444047607e-05']
['59866.43610211487 0.03438585026020095 6.802421703226561e-05 0.015059823334945502 4.0677698454413626e-05 0.000532632294632722 1.4386792850269956e-06 0.015059823334945502 4.0677698454413626e-05 0.019326026925255445 7.925887492515257e-05']
['59866.43613365284 0.03420208588739324 6.790787735272641e-05 0.01508205480654829 4.0686363571511225e-05 0.0005334185720988977 1.4389857508533407e-06 0.01508205480654829 4.0686363571511225e-05 0.01912003108084495 7.916350161043995e-05']
['59866.4361651908 0.03415286807050658 6.785246137236996e-05 0.014956112688323357 4.061176940750485e-05 0.0005289642808413506 1.4363475219805802e-06 0.014956112688323359 4.061176940750485e-05 0.019196755382183225 7.907763481982312e-05']
['59866.43619672876 0.03426248242630736 6.792457427650685e-05 0.01505209707334628 4.066426004099783e-05 0.000532359034027136 1.4382039983775653e-06 0.01505209707334628 4.066426004099783e-05 0.01921038535296108 7.916646913514957e-05']
['59866.43622826673 0.03426716885870392 6.793753900296057e-05 0.015044643710037634 4.067721535929981e-05 0.0005320954252241958 1.4386621990324738e-06 0.015044643710037636 4.067721535929981e-05 0.019222525148666285 7.918424751909716e-05']
['59866.43625980469 0.034340937302706626 6.799527633788424e-05 0.015099372895103252 4.07012001083369e-05 0.0005340310741874367 1.4395104860031563e-06 0.015099372895103253 4.07012001083369e-05 0.01924156440760337 7.924610586346893e-05']
['59866.43629134265 0.03425277678510636 6.795435364026005e-05 0.01501653547549499 4.0663562362781336e-05 0.0005311012997866295 1.4381793230582669e-06 0.015016535475494992 4.0663562362781336e-05 0.01923624130961137 7.919166296206522e-05']
['59866.43632288061 0.03429811952193717 6.794473008113807e-05 0.014981005236895514 4.0651233328619e-05 0.0005298446746527759 1.4377432726737146e-06 0.014981005236895514 4.0651233328619e-05 0.019317114285041653 7.917707444037404e-05']
['59866.436354418576 0.03425327055315043 6.791438233410021e-05 0.0148968120917812 4.058632431186135e-05 0.0005268669512706878 1.4354475858141115e-06 0.0148968120917812 4.058632431186135e-05 0.01935645846136923 7.911771640391253e-05']
['59866.43638595654 0.03423624904306688 6.791977937930308e-05 0.014982639082699185 4.063378634054331e-05 0.0005299024601274213 1.437126211697201e-06 0.014982639082699183 4.063378634054331e-05 0.019253609960367696 7.914670570088264e-05']
['59866.4364174945 0.03407604707130961 6.781012077247917e-05 0.014930872862586214 4.0610599064185485e-05 0.0005280716046127185 1.4363061295529376e-06 0.014930872862586212 4.0610599064185485e-05 0.019145174208723397 7.904070619326622e-05']
['59866.436449032466 0.034257331636468664 6.794695747745544e-05 0.015037468575860892 4.067122210125328e-05 0.0005318416567638455 1.4384502308895116e-06 0.015037468575860892 4.067122210125328e-05 0.019219863060607772 7.91892501394767e-05']
['59866.43648057043 0.034225289693028585 6.789726694644951e-05 0.015003756371201668 4.0653284836799226e-05 0.0005306493314273919 1.4378158299331984e-06 0.015003756371201668 4.0653284836799226e-05 0.019221533321826918 7.913740219908255e-05']
['59866.43651210839 0.03419121387248975 6.78732537429534e-05 0.015056951607121286 4.068512170958724e-05 0.0005325307280375134 1.4389418289724874e-06 0.015056951607121286 4.068512170958724e-05 0.019134262265368466 7.913316436349089e-05']
['59866.436543646356 0.03436769472358054 6.802030828731578e-05 0.014986617154556374 4.062391110705887e-05 0.0005300431556385428 1.4367769467587043e-06 0.014986617154556375 4.062391110705887e-05 0.019381077569024165 7.922792748226916e-05']
['59866.436575184314 0.03433463961669802 6.798727777753518e-05 0.015003597419432965 4.0637166725383754e-05 0.0005306437096585691 1.437245768354292e-06 0.015003597419432963 4.0637166725383754e-05 0.019331042197265058 7.920637132874076e-05']
['59866.43660672228 0.03431492676198037 6.797415266131702e-05 0.014978802007051234 4.063002629978115e-05 0.0005297667513371126 1.43699322745864e-06 0.014978802007051234 4.063002629978115e-05 0.019336124754929136 7.919144188070413e-05']
['59866.436638260246 0.034223957246113816 6.792031530231857e-05 0.01500902410823124 4.066159131788629e-05 0.0005308356395134284 1.438109611605355e-06 0.01500902410823124 4.066159131788629e-05 0.019214933137882577 7.916144414592987e-05']
['59866.436669798204 0.03430041824021651 6.794983377108799e-05 0.015090911126838944 4.06785126959451e-05 0.0005337318003548672 1.438708082930241e-06 0.015090911126838944 4.06785126959451e-05 0.01920950711337757 7.919546265205259e-05']
['59866.43670133617 0.03428918152465678 6.792762526248185e-05 0.015073739888710778 4.0686884594213536e-05 0.0005331244920377326 1.439004178261904e-06 0.015073739888710776 4.0686884594213536e-05 0.019215441635946004 7.918071009900715e-05']
['59866.436732874135 0.03422615308844682 6.790340380388476e-05 0.014930443092633552 4.0598759733049495e-05 0.0005280564046099722 1.4358873988700054e-06 0.014930443092633552 4.0598759733049495e-05 0.01929570999581327 7.911467335466482e-05']
['59866.436764412094 0.03416482619805224 6.784563691721398e-05 0.015080587260435464 4.068724823061316e-05 0.0005333666682726596 1.4390170392686793e-06 0.015080587260435464 4.068724823061316e-05 0.019084238937616772 7.911057209552944e-05']
['59866.43679595006 0.03441588754758489 6.805667088804721e-05 0.014981911584758964 4.0625703790448254e-05 0.0005298767301511379 1.4368403499637754e-06 0.014981911584758964 4.0625703790448254e-05 0.01943397596282593 7.926006725226276e-05']
['59866.43682748802 0.03433084449300668 6.796915486649238e-05 0.015080697040035194 4.068129771985556e-05 0.0005333705509317591 1.438806583001792e-06 0.015080697040035194 4.068129771985556e-05 0.01925014745297149 7.921347106039951e-05']
['59866.436859025984 0.034283560218380915 6.793919461150992e-05 0.015115109397545156 4.070142777199333e-05 0.0005345876391097937 1.4395185379578862e-06 0.015115109397545156 4.070142777199333e-05 0.019168450820835757 7.919810848208061e-05']
['59866.43689056395 0.03417841556519866 6.787526043957106e-05 0.015040362716453903 4.0672440329229255e-05 0.0005319440160485967 1.4384933168904425e-06 0.015040362716453901 4.0672440329229255e-05 0.01913805284874476 7.91283664817764e-05']
['59866.43692210191 0.034287037148938125 6.79649398637238e-05 0.01501027034223798 4.066407626174014e-05 0.0005308797160250778 1.438197498515943e-06 0.01501027034223798 4.066407626174014e-05 0.019276766806700145 7.920101103458345e-05']
['59866.43695363987 0.034337639243899064 6.798985927589748e-05 0.015012307535512776 4.064963248112349e-05 0.0005309517669983483 1.437686654275482e-06 0.015012307535512776 4.064963248112349e-05 0.01932533170838629 7.921498333779256e-05']
['59866.43698517784 0.03428290193811213 6.794858844529676e-05 0.01506010733283066 4.067853485098982e-05 0.0005326423390032221 1.4387088665046591e-06 0.015060107332830662 4.067853485098982e-05 0.019222794605281465 7.919440554314117e-05']
['59866.4370167158 0.03439334878787974 6.80519371248126e-05 0.015034256035014801 4.0685814442487404e-05 0.0005317280363737255 1.4389663293869992e-06 0.015034256035014801 4.0685814442487404e-05 0.01935909275286494 7.928683146202755e-05']
['59866.43704825376 0.0342703850798535 6.794506701110551e-05 0.014962838996127792 4.0620824271408765e-05 0.0005292021753159803 1.4366677722804318e-06 0.014962838996127792 4.0620824271408765e-05 0.01930754608372571 7.916175525866194e-05']
['59866.43707979172 0.03421414756779329 6.792181329523243e-05 0.014986441399994437 4.064326769630797e-05 0.0005300369395924753 1.437461546061014e-06 0.014986441399994437 4.064326769630797e-05 0.019227706167798855 7.915331913663611e-05']
['59866.43711132969 0.03428586107381062 6.793793854208884e-05 0.015046063446972138 4.066418401706007e-05 0.0005321456381466439 1.4382013095807902e-06 0.015046063446972138 4.066418401706007e-05 0.01923979762683848 7.917789688493857e-05']
['59866.43714286765 0.034341785160907336 6.796845995656038e-05 0.015019058412368865 4.066657838769006e-05 0.0005311905304254264 1.4382859931188694e-06 0.015019058412368867 4.066657838769006e-05 0.01932272674853847 7.920531640381656e-05']
['59866.43717440561 0.03421829800125389 6.791457360798819e-05 0.014986224284494355 4.0630048693600844e-05 0.000530029260702462 1.4369940194779953e-06 0.014986224284494355 4.0630048693600844e-05 0.019232073716759533 7.914031946611803e-05']
['59866.43720594358 0.03429625409540641 6.798326257502032e-05 0.014959911417070754 4.0627976765397144e-05 0.000529098633387487 1.4369207400079174e-06 0.014959911417070754 4.0627976765397144e-05 0.019336342678335658 7.91982101211499e-05']
['59866.43723748154 0.03417472100249509 6.78672946646583e-05 0.015044006277841077 4.0652922788899536e-05 0.0005320728806719806 1.4378030251081158e-06 0.015044006277841077 4.0652922788899536e-05 0.019130714724654017 7.911150242777458e-05']
['59866.4372690195 0.03423026717440812 6.792126716392999e-05 0.01503066277608985 4.067283579576904e-05 0.0005316009508360111 1.4385073036581389e-06 0.01503066277608985 4.067283579576904e-05 0.01919960439831827 7.91680371414092e-05']
['59866.43730055747 0.03424138679431165 6.790792134219866e-05 0.015008701887098895 4.0653895898669926e-05 0.0005308242432720993 1.4378374418259221e-06 0.015008701887098897 4.0653895898669926e-05 0.019232684907212753 7.914685737765038e-05']
['59866.437332095426 0.034319676677472925 6.797947761819885e-05 0.015016612195510558 4.065935776681037e-05 0.0005311040132021209 1.4380306158954928e-06 0.015016612195510558 4.065935776681037e-05 0.019303064481962368 7.921106457593334e-05']
['59866.43736363339 0.0343233845491116 6.798152823433312e-05 0.015027959034771094 4.065390359845627e-05 0.0005315053255480729 1.4378377141501572e-06 0.015027959034771094 4.065390359845627e-05 0.019295425514340506 7.921002498969438e-05']
['59866.43739517136 0.03427934347167169 6.794116120542132e-05 0.015127158246143139 4.071122633954476e-05 0.0005350137799571125 1.4398650913936705e-06 0.015127158246143139 4.071122633954476e-05 0.019152185225528553 7.920483151936307e-05']
['59866.437426709315 0.03430035068779856 6.798045093573422e-05 0.015018336043693159 4.0650422481452795e-05 0.0005311649818597656 1.4377145948215828e-06 0.015018336043693157 4.0650422481452795e-05 0.019282014644105405 7.92073137869627e-05']
['59866.43745824728 0.03431228928980693 6.7994257566469e-05 0.015045371027576427 4.0665973646458106e-05 0.0005321211488200838 1.4382646047730124e-06 0.015045371027576427 4.0665973646458106e-05 0.019266918262230502 7.92271448092745e-05']
['59866.43748978524 0.034288747378865995 6.796735929971069e-05 0.015096998377484062 4.069847592618141e-05 0.0005339470928059805 1.4394141377685054e-06 0.015096998377484062 4.069847592618141e-05 0.019191749001381934 7.922075405403521e-05']
['59866.437521323205 0.03424300399407585 6.790015215410725e-05 0.014999853085743631 4.0657880877534313e-05 0.0005305112809440707 1.437978381622452e-06 0.014999853085743631 4.0657880877534313e-05 0.01924315090833222 7.91422386592816e-05']
['59866.43755286117 0.03436579503032206 6.801701708315856e-05 0.01509677686145362 4.0686326509481124e-05 0.0005339392582790429 1.4389844400521647e-06 0.015096776861453618 4.0686326509481124e-05 0.019269018168868446 7.925712446037132e-05']
['59866.43758439913 0.0341920870633294 6.78622177260505e-05 0.01504136829546337 4.0677788678494545e-05 0.0005319795811308248 1.4386824760510986e-06 0.01504136829546337 4.0677788678494545e-05 0.019150718767866032 7.911992850394989e-05']
['59866.437615937095 0.034273028502156175 6.793567793097856e-05 0.015022393931410753 4.066146710079433e-05 0.0005313085002794916 1.4381052183244214e-06 0.015022393931410753 4.066146710079433e-05 0.019250634570745422 7.91745618411029e-05']
['59866.43764747506 0.034280483558788606 6.794712506839376e-05 0.014976250239352984 4.063857733954208e-05 0.0005296765010164906 1.4372956586245349e-06 0.014976250239352982 4.063857733954208e-05 0.019304233319435624 7.917263272900483e-05']
['59866.43767901302 0.03422803481450433 6.790102896203512e-05 0.015029520546217442 4.067313594929553e-05 0.0005315605527181575 1.4385179194175673e-06 0.015029520546217442 4.067313594929553e-05 0.019198514268286886 7.915082894103516e-05']
['59866.437710550985 0.03421567324069729 6.789153963567114e-05 0.01504818852062103 4.066956741970935e-05 0.000532220797252345 1.4383917085012983e-06 0.015048188520621028 4.066956741970935e-05 0.01916748472007626 7.914085460878086e-05']
['59866.43774208894 0.03425144515066358 6.792981045619908e-05 0.014968377299144716 4.063881668911194e-05 0.0005293980527163101 1.4373041238839062e-06 0.014968377299144716 4.063881668911194e-05 0.019283067851518863 7.91578964507419e-05']
['59866.43777362691 0.034192896287350394 6.789072869859733e-05 0.015059533307820155 4.0684956854690295e-05 0.0005326220370214709 1.4389359984232114e-06 0.015059533307820155 4.0684956854690295e-05 0.01913336297953024 7.914806856452378e-05']
['59866.437805164875 0.0341878774252783 6.789451292439173e-05 0.015000898861394166 4.063574154154098e-05 0.0005305482676916591 1.4371953627868717e-06 0.015000898861394166 4.063574154154098e-05 0.01918697856388413 7.912602843484132e-05']
['59866.43783670283 0.0342316566562812 6.791555632974035e-05 0.015029154933119359 4.0661007196819356e-05 0.0005315476217999755 1.4380889525486514e-06 0.015029154933119359 4.0661007196819356e-05 0.019202501723161843 7.915706094744757e-05']
['59866.4378682408 0.034229523190253894 6.789909849718499e-05 0.014985739657626056 4.063743626404095e-05 0.0005300121205332076 1.4372553013342135e-06 0.014985739657626057 4.063743626404095e-05 0.019243783532627838 7.91308334522291e-05']
['59866.437899778764 0.03430622295372382 6.797173651437895e-05 0.015029710127771932 4.066133870399133e-05 0.0005315672577940499 1.4381006772164492e-06 0.01502971012777193 4.066133870399133e-05 0.01927651282595189 7.92054381338861e-05']
['59866.43793131672 0.0342519569651487 6.789888390442762e-05 0.015082210977155255 4.069094865957008e-05 0.0005334240955042453 1.4391479151709136e-06 0.015082210977155253 4.069094865957008e-05 0.019169745987993446 7.915814385319244e-05']
['59866.43796285469 0.03437140700498942 6.800869783275075e-05 0.015031512338879756 4.0637523286039694e-05 0.000531630997973229 1.4372583791078265e-06 0.015031512338879756 4.0637523286039694e-05 0.019339894666109664 7.922494102067741e-05']
['59866.43799439265 0.0342614625825268 6.792070679263848e-05 0.015113944722167854 4.070671399895446e-05 0.0005345464471445948 1.4397054999914793e-06 0.015113944722167852 4.070671399895446e-05 0.019147517860358947 7.918496685485347e-05']
['59866.43802593061 0.03436159651982149 6.799710921790963e-05 0.015047322623032261 4.066318864034868e-05 0.0005321901723897975 1.4381661053310444e-06 0.015047322623032261 4.066318864034868e-05 0.019314273896789233 7.922816274780649e-05']
['59866.43805746858 0.0342367630653626 6.791704651935954e-05 0.01502226510470406 4.066376752990532e-05 0.0005313039439667866 1.4381865793609207e-06 0.015022265104704058 4.066376752990532e-05 0.019214497960658543 7.915975743797495e-05']
['59866.43808900654 0.03424538320704142 6.791340215362763e-05 0.014983333181821948 4.0637293121598036e-05 0.0005299270088621732 1.4372502387059123e-06 0.014983333181821948 4.0637293121598036e-05 0.019262050025219475 7.9143033706897e-05']
['59866.4381205445 0.03421146553516612 6.790882402231744e-05 0.015010290344410834 4.065418644019453e-05 0.0005308804234572294 1.4378477176303253e-06 0.015010290344410834 4.065418644019453e-05 0.019201175190755287 7.914778111361161e-05']
['59866.43815208247 0.03428644201867554 6.793253700542796e-05 0.01506629570418369 4.068597673690298e-05 0.0005328612078677827 1.4389720693777715e-06 0.015066295704183687 4.068597673690298e-05 0.019220146314491853 7.918445735767626e-05']
['59866.43818362043 0.034175688636109536 6.786482025638331e-05 0.015016926325800603 4.068030368016434e-05 0.00053111512328844 1.4387714260394614e-06 0.015016926325800602 4.068030368016434e-05 0.019158762310308934 7.912345376651355e-05']
['59866.43821515839 0.034316962398202124 6.795483817036975e-05 0.015079376911226617 4.069158186600113e-05 0.000533323860926114 1.4391703102672467e-06 0.015079376911226617 4.069158186600113e-05 0.019237585486975507 7.920646984633649e-05']
['59866.43824669635 0.0342806454263522 6.79487703931024e-05 0.015077512719791254 4.067923400379872e-05 0.0005332579286412678 1.4387335939769954e-06 0.015077512719791254 4.067923400379872e-05 0.019203132706560946 7.91949207782315e-05']
['59866.43827823432 0.03424505910125969 6.793195099105839e-05 0.01503696180196798 4.06774645221431e-05 0.0005318237333038261 1.4386710113653948e-06 0.015036961801967978 4.06774645221431e-05 0.01920809729929171 7.917958124037894e-05']
['59866.43830977228 0.03444614361112806 6.807309263706841e-05 0.01507498033484882 4.0687383729987535e-05 0.0005331683638454012 1.4390218315787276e-06 0.015074980334848819 4.0687383729987535e-05 0.019371163276279246 7.930579509699245e-05']
['59866.43834131024 0.034213607754486966 6.791142300219566e-05 0.014995684493620674 4.0647179923991524e-05 0.0005303638471569369 1.437599912810867e-06 0.014995684493620676 4.0647179923991524e-05 0.01921792326086629 7.914641248948994e-05']
['59866.438372848206 0.03420682126666188 6.788827908359055e-05 0.014951609412684577 4.06040960913104e-05 0.0005288050100462357 1.4360761339356347e-06 0.014951609412684577 4.06040960913104e-05 0.0192552118539773 7.910443133177715e-05']
['59866.43840438617 0.03413547466560685 6.785874995575308e-05 0.014993710037115637 4.0648395526433655e-05 0.0005302940150430042 1.4376429059525338e-06 0.014993710037115636 4.0648395526433655e-05 0.019141764628491216 7.910184577132705e-05']
['59866.43843592413 0.03429822209345372 6.797294678452877e-05 0.015086030159535788 4.0689822173304017e-05 0.0005335591714496745 1.4391080738692316e-06 0.01508603015953579 4.0689822173304017e-05 0.019212191933917933 7.922110276351549e-05']
['59866.438467462096 0.034264790540334 6.79215512721154e-05 0.015005899529172662 4.065609344798896e-05 0.0005307251301351498 1.4379151642341027e-06 0.015005899529172664 4.065609344798896e-05 0.01925889101116134 7.915968078297317e-05']
['59866.438499000054 0.034192753898167054 6.786774963837205e-05 0.015020656353642378 4.0675574285037953e-05 0.000531247046037082 1.4386041579034172e-06 0.01502065635364238 4.0675574285037953e-05 0.019172097544524674 7.91235349589134e-05']
['59866.43853053802 0.03426436711725067 6.792285922587848e-05 0.014992356329376812 4.065190634968859e-05 0.0005302461374256408 1.4377670759248326e-06 0.014992356329376812 4.065190634968859e-05 0.01927201078787386 7.915865268738697e-05']
['59866.438562075986 0.03432516559821949 6.799909403963034e-05 0.015025087240790505 4.065806828521111e-05 0.0005314037566130612 1.4379850098131489e-06 0.015025087240790503 4.065806828521111e-05 0.019300078357428987 7.922723841517753e-05']
['59866.438593613944 0.03426446156623031 6.792418403994787e-05 0.015060222397498805 4.06782329014014e-05 0.0005326464085833799 1.4386981872225342e-06 0.015060222397498803 4.06782329014014e-05 0.019204239168731506 7.91733124826375e-05']
['59866.43862515191 0.03420070660495134 6.789662325596885e-05 0.014997138037319831 4.0653418508884664e-05 0.000530415255749097 1.4378205576161207e-06 0.014997138037319831 4.0653418508884664e-05 0.019203568567631512 7.913691860327577e-05']
['59866.438656689876 0.034204548435852494 6.789292433473217e-05 0.015057113860441562 4.069035989685964e-05 0.0005325364665748367 1.4391270919496525e-06 0.01505711386044156 4.069035989685964e-05 0.019147434575410932 7.915272934812565e-05']
['59866.438688227834 0.03431008863690778 6.794415968775134e-05 0.015023916161666906 4.063933756298662e-05 0.0005313623381616674 1.4373225460287689e-06 0.015023916161666906 4.063933756298662e-05 0.01928617247524087 7.917047804095306e-05']
['59866.4387197658 0.03418923403194959 6.785624118959722e-05 0.015023719417577765 4.0674000935457634e-05 0.0005313553797629317 1.4385485120449907e-06 0.015023719417577767 4.0674000935457634e-05 0.01916551461437182 7.911285496351651e-05']
['59866.43875130376 0.03430138484108971 6.793832287235952e-05 0.015037397432254452 4.067926358468993e-05 0.0005318391405734823 1.4387346401870081e-06 0.015037397432254452 4.067926358468993e-05 0.019263987408835257 7.91859722457308e-05']
['59866.438782841724 0.034171764737325416 6.786999196345128e-05 0.014961297583665453 4.062029370826443e-05 0.0005291476590020414 1.4366490074477555e-06 0.014961297583665453 4.062029370826443e-05 0.01921046715365996 7.909705474962141e-05']
['59866.43881437969 0.034140948600088546 6.786148606719872e-05 0.01505080335212448 4.0686069839679514e-05 0.0005323132779988176 1.438975362214905e-06 0.01505080335212448 4.0686069839679514e-05 0.019090145247964065 7.912355888259757e-05']
['59866.43884591765 0.03425930202534889 6.795162312542061e-05 0.015060864944972127 4.066766626944619e-05 0.0005326691340515023 1.4383244690653113e-06 0.015060864944972125 4.066766626944619e-05 0.019198437080376763 7.919142734653952e-05']
['59866.438877455614 0.034300908914874195 6.797133522920909e-05 0.014968328136702671 4.0628290558593425e-05 0.0005293963139506065 1.4369318381719835e-06 0.01496832813670267 4.0628290558593425e-05 0.019332580778171526 7.918813299071404e-05']
['59866.43890899358 0.034114134762730106 6.781442883380305e-05 0.014948075982285309 4.062972103659751e-05 0.0005286800405097657 1.4369824309820576e-06 0.014948075982285307 4.062972103659751e-05 0.0191660587804448 7.905422815742795e-05']
['59866.43894053154 0.0342705749674304 6.792869111958939e-05 0.015066325758876117 4.0674334412410704e-05 0.0005328622708350856 1.4385603063795435e-06 0.015066325758876117 4.0674334412410704e-05 0.01920424920855428 7.917517639458215e-05']
['59866.4389720695 0.03428360425801991 6.79436536957753e-05 0.015006386306332054 4.064484225641443e-05 0.0005307423463553945 1.437517234733045e-06 0.015006386306332052 4.064484225641443e-05 0.01927721795168786 7.917286959293728e-05']
['59866.43900360746 0.0343336037143976 6.797137412903163e-05 0.015089511810089924 4.0677534077470966e-05 0.0005336823096487432 1.4386734713818944e-06 0.015089511810089924 4.0677534077470966e-05 0.019244091904307675 7.921344254362767e-05']
['59866.43903514543 0.03418442670375523 6.785873002371471e-05 0.01497214530102431 4.0624334643681976e-05 0.0005295313185218028 1.436791926302515e-06 0.01497214530102431 4.0624334643681976e-05 0.019212281402730923 7.908946709691032e-05']
['59866.43906668339 0.03429371120761734 6.796855206299833e-05 0.015031230987932366 4.0677780936743214e-05 0.0005316210472190021 1.4386822022426558e-06 0.015031230987932364 4.0677780936743214e-05 0.019262480219684974 7.921114777276103e-05']
['59866.43909822135 0.034236607519487046 6.794018791424472e-05 0.01503327607271631 4.067556357506437e-05 0.0005316933772973148 1.4386037791155869e-06 0.015033276072716312 4.067556357506437e-05 0.019203331446770736 7.918567172141679e-05']
['59866.43912975932 0.03427582274790004 6.792839362667309e-05 0.014972141989968192 4.0626780712014175e-05 0.0005295312014171476 1.4368784382727839e-06 0.01497214198996819 4.0626780712014175e-05 0.019303680757931846 7.915050203076623e-05']
['59866.43916129728 0.03422329529733083 6.790917206528202e-05 0.014957417069414166 4.062223368006592e-05 0.0005290104138854124 1.4367176199147922e-06 0.014957417069414168 4.062223368006592e-05 0.019265878227916658 7.913167203939242e-05']
['59866.43919283524 0.03424421764637984 6.793523059752273e-05 0.015017354653721218 4.065830432503931e-05 0.0005311302722897356 1.4379933580143543e-06 0.015017354653721218 4.065830432503931e-05 0.01922686299265862 7.917255374765992e-05']
['59866.43922437321 0.03420100329937977 6.788642336124396e-05 0.015050185803328788 4.066508448808955e-05 0.0005322914366780543 1.4382331572286686e-06 0.015050185803328788 4.066508448808955e-05 0.019150817496050986 7.91341618594998e-05']
['59866.439255911166 0.03434737298832083 6.799292444030905e-05 0.015059599481040997 4.067799432816585e-05 0.0005326243774204036 1.4386897494203728e-06 0.015059599481040995 4.067799432816585e-05 0.019287773507279834 7.923217147414217e-05']
['59866.43928744913 0.03428664257103821 6.795791096371921e-05 0.015032349327944786 4.0659367408998216e-05 0.0005316606004058986 1.438030956918128e-06 0.015032349327944786 4.0659367408998216e-05 0.019254293243093423 7.919256164977046e-05']
['59866.4393189871 0.0342689256974165 6.792281999537148e-05 0.01509814839268442 4.0701852700895084e-05 0.0005339877662734844 1.4395335667434808e-06 0.01509814839268442 4.0701852700895084e-05 0.01917077730473208 7.918428057012955e-05']
['59866.439350525055 0.0342045044650549 6.78715795393491e-05 0.015042451751400085 4.067194438240274e-05 0.0005320179005459249 1.4384757763595645e-06 0.015042451751400086 4.067194438240274e-05 0.019162052713654815 7.91249541485583e-05']
['59866.43938206302 0.03423674462610824 6.791398879948595e-05 0.01502649328166924 4.066471871354278e-05 0.0005314534851366257 1.4382202206004072e-06 0.015026493281669242 4.066471871354278e-05 0.019210251344439 7.915762264436861e-05']
['59866.43941360099 0.03420857709120886 6.79163797157159e-05 0.014982498578522243 4.062993212582414e-05 0.0005298974908086912 1.436989896736247e-06 0.014982498578522243 4.062993212582414e-05 0.019226078512686616 7.914180954614561e-05']
['59866.439445138945 0.03425408224279152 6.791105639301386e-05 0.015083793398764174 4.0687609072982715e-05 0.0005334800622200486 1.4390298014568552e-06 0.015083793398764173 4.0687609072982715e-05 0.01917028884402735 7.916686878038675e-05']
['59866.43947667691 0.03430237305479229 6.793668060296779e-05 0.01506539172547507 4.067488910485468e-05 0.0005328292361611324 1.4385799246116223e-06 0.01506539172547507 4.067488910485468e-05 0.019236981329317223 7.918231604999873e-05']
['59866.43950821487 0.034285413973210575 6.791410539023486e-05 0.015125557171887277 4.072244260902304e-05 0.0005349571535388731 1.4402617857782303e-06 0.015125557171887277 4.072244260902304e-05 0.0191598568013233 7.918739194468462e-05']
['59866.439539752835 0.0342776199948835 6.795497668021884e-05 0.0149968451341768 4.0645999691141576e-05 0.0005304048964195281 1.4375581706126296e-06 0.014996845134176802 4.0645999691141576e-05 0.019280774860706694 7.918318095720433e-05']
['59866.4395712908 0.034219176575719844 6.791348757115765e-05 0.015002284268827049 4.0653367887323786e-05 0.0005305972664563568 1.4378187672446452e-06 0.015002284268827049 4.0653367887323786e-05 0.019216892306892795 7.915136205183e-05']
['59866.43960282876 0.034340780285603986 6.797036820971024e-05 0.015009715555196123 4.064082053552816e-05 0.0005308600944472834 1.4373749954533145e-06 0.015009715555196123 4.064082053552816e-05 0.01933106473040786 7.919373238056529e-05']
['59866.439634366725 0.03433116003027636 6.798502691264618e-05 0.015050124789282042 4.067514212923403e-05 0.0005322892787475793 1.4385888735184435e-06 0.015050124789282042 4.067514212923403e-05 0.019281035240994317 7.922392991733378e-05']
['59866.43966590469 0.034429430349391034 6.805240993293946e-05 0.01508219068367729 4.068904437572815e-05 0.000533423377769283 1.4390805649072484e-06 0.01508219068367729 4.068904437572815e-05 0.019347239665713743 7.928889474504492e-05']
['59866.43969744265 0.034225054363532334 6.789795850296223e-05 0.015005362648978945 4.065641063478513e-05 0.0005307061418825547 1.4379263824222125e-06 0.015005362648978946 4.065641063478513e-05 0.019219691714553386 7.91396013041148e-05']
['59866.439728980615 0.03419135352501185 6.788534643692588e-05 0.01502722667438914 4.065466112982882e-05 0.0005314794235980922 1.4378645063418212e-06 0.015027226674389138 4.065466112982882e-05 0.019164126850622708 7.912788214303893e-05']
['59866.43976051857 0.03422925284120326 6.788803413605356e-05 0.015057414903936238 4.06705391846987e-05 0.0005325471138104508 1.4384260776572047e-06 0.015057414903936238 4.06705391846987e-05 0.019171837937267025 7.913834681386822e-05']
['59866.43979205654 0.03422642910334281 6.790383582854647e-05 0.01505967415335675 4.0677189306745915e-05 0.0005326270184133291 1.4386612776118667e-06 0.01505967415335675 4.0677189306745915e-05 0.01916675494998606 7.915531978412465e-05']
['59866.439823594505 0.03435434917063931 6.797896897209164e-05 0.015019927163136772 4.06545862549253e-05 0.0005312212561985435 1.4378618581838194e-06 0.01501992716313677 4.06545862549253e-05 0.019334422007502537 7.920817890892177e-05']
['59866.43985513246 0.03434468314472545 6.800653512154832e-05 0.01507350850140592 4.068792798218954e-05 0.0005331163083858799 1.4390410805627804e-06 0.015073508501405918 4.068792798218954e-05 0.01927117464331953 7.92489514297964e-05']
['59866.43988667043 0.03428952606104505 6.796132604526606e-05 0.015038243369977255 4.067777739893198e-05 0.0005318690595001784 1.438682077118179e-06 0.015038243369977255 4.067777739893198e-05 0.019251282691067795 7.920494562808575e-05']
['59866.439918208394 0.034231476748969966 6.791809492891976e-05 0.014976477449332897 4.063948845675554e-05 0.0005296845369256958 1.437327882804148e-06 0.014976477449332897 4.063948845675554e-05 0.019254999299637067 7.914818785544318e-05']
['59866.43994974635 0.03436489354572881 6.801244231245249e-05 0.01498536917039676 4.0638409132405105e-05 0.0005299990172278976 1.437289709514021e-06 0.01498536917039676 4.0638409132405105e-05 0.019379524375332052 7.92286097701924e-05']
['59866.43998128432 0.034332484463979 6.797505639154729e-05 0.015021948270681472 4.065797754486851e-05 0.0005312927382554901 1.4379818005300238e-06 0.015021948270681472 4.065797754486851e-05 0.019310536193297527 7.920656178292975e-05']
['59866.44001282228 0.03431984945000697 6.800708149196915e-05 0.015041655501253347 4.066968936396473e-05 0.0005319897389577491 1.4383960213970818e-06 0.015041655501253347 4.066968936396473e-05 0.019278193948753623 7.924005783703542e-05']
['59866.44004436024 0.03435498563873334 6.796751088183115e-05 0.015124367147868086 4.070969389249137e-05 0.0005349150650488614 1.4398108921662098e-06 0.015124367147868084 4.070969389249137e-05 0.019230618490865256 7.922664774109899e-05']
['59866.44007589821 0.034249396726178 6.793538710380941e-05 0.015042088755340324 4.0673705335987176e-05 0.0005320050621865396 1.4385380573523464e-06 0.015042088755340324 4.0673705335987176e-05 0.019207307970837677 7.918059817091018e-05']
['59866.44010743617 0.03430433931070823 6.795587371086006e-05 0.01500720671760306 4.0665339958728036e-05 0.0005307713624685388 1.4382421926542084e-06 0.01500720671760306 4.0665339958728036e-05 0.01929713259310517 7.919388010298071e-05']
['59866.44013897413 0.034283864714990356 6.794623222396867e-05 0.014976792938516998 4.063926373259412e-05 0.0005296956950730606 1.4373199348127875e-06 0.014976792938516996 4.063926373259412e-05 0.01930707177647336 7.917221880281504e-05']
['59866.4401705121 0.03439294907696768 6.80330606835394e-05 0.015087128007909284 4.06945196969915e-05 0.0005335979998930984 1.4392742147837104e-06 0.015087128007909284 4.06945196969915e-05 0.0193058210690584 7.927509873433766e-05']
['59866.44020205006 0.03427977566411882 6.794050452153363e-05 0.015056536210050422 4.068539540327763e-05 0.0005325160363714748 1.438951508906647e-06 0.015056536210050422 4.068539540327763e-05 0.019223239454068397 7.919099414555659e-05']
['59866.44023358802 0.034282898936915565 6.79360696990958e-05 0.014989095639452442 4.0644687284141564e-05 0.0005301308141102289 1.4375117537100963e-06 0.014989095639452442 4.0644687284141564e-05 0.019293803297463122 7.916628177820443e-05']
['59866.44026512598 0.03417388396866005 6.790344496942612e-05 0.015003654042739095 4.064686600239211e-05 0.0005306457122983614 1.4375888101054692e-06 0.015003654042739097 4.064686600239211e-05 0.019170229925920955 7.913940582625258e-05']
['59866.440296663946 0.03429126890164441 6.796637788944491e-05 0.01504839125272147 4.067534439920678e-05 0.0005322279674336581 1.438596027355333e-06 0.01504839125272147 4.067534439920678e-05 0.01924287764892294 7.92080309400815e-05']
['59866.44032820191 0.0341903845964172 6.78701384620596e-05 0.014988841438721355 4.064589713340727e-05 0.0005301218235984756 1.4375545433747703e-06 0.014988841438721357 4.064589713340727e-05 0.01920154315769584 7.911033212317256e-05']
['59866.44035973987 0.03425163834319282 6.793865194114862e-05 0.015103955188450572 4.071269984599164e-05 0.0005341931396623085 1.4399172060236033e-06 0.015103955188450572 4.071269984599164e-05 0.019147683154742252 7.920343651843867e-05']
['59866.440391277836 0.034302648239652504 6.800544530731997e-05 0.015044195264202432 4.067005956222876e-05 0.0005320795646972221 1.438409114482336e-06 0.015044195264202432 4.067005956222876e-05 0.01925845297545007 7.923884360742604e-05']
['59866.4404228158 0.034329502691911394 6.79981980418243e-05 0.015088681299403944 4.067352819689455e-05 0.0005336529363418622 1.4385317923385229e-06 0.015088681299403944 4.067352819689455e-05 0.01924082139250745 7.923440435138471e-05']
['59866.44045435376 0.03431239466209953 6.79758296220035e-05 0.015052289732176509 4.0675385596501295e-05 0.000532365847939394 1.4385974844115696e-06 0.015052289732176509 4.0675385596501295e-05 0.01926010492992302 7.921616253154222e-05']
['59866.440485891726 0.03430699243114143 6.798312179734635e-05 0.01500765087171078 4.064436305024828e-05 0.0005307870712067029 1.4375002862819108e-06 0.01500765087171078 4.064436305024828e-05 0.01929934155943065 7.920649655850975e-05']
['59866.440517429684 0.03427382524175877 6.79346491876593e-05 0.015128177002377433 4.071551012930626e-05 0.0005350498110883333 1.440016599463828e-06 0.015128177002377431 4.071551012930626e-05 0.019145648239381335 7.920144774775256e-05']
['59866.44054896765 0.03427276203597867 6.79437057781322e-05 0.014997682747553417 4.0647818245248114e-05 0.0005304345209327032 1.4376224888071486e-06 0.014997682747553415 4.0647818245248114e-05 0.019275079288425256 7.917444210705952e-05']
['59866.440580505616 0.03439166568510572 6.804047804135005e-05 0.01504865112856756 4.067809437428052e-05 0.000532237158661546 1.4386932878278586e-06 0.015048651128567563 4.067809437428052e-05 0.019343014556538154 7.92730345957458e-05']
['59866.440612043574 0.03425191188152183 6.79165991196788e-05 0.01508068180344023 4.0708146023618595e-05 0.0005333700120474469 1.4397561475034629e-06 0.01508068180344023 4.0708146023618595e-05 0.0191712300780816 7.918217974180434e-05']
['59866.44064358154 0.03422648062213546 6.789388351312801e-05 0.015063427459204876 4.066046183828465e-05 0.0005327597644530324 1.4380696644360836e-06 0.015063427459204876 4.066046183828465e-05 0.01916305316293058 7.913818658142728e-05']
['59866.440675119506 0.03425179697771628 6.793760998532782e-05 0.014980539833700292 4.063865242173049e-05 0.0005298282143818758 1.4372983141137402e-06 0.014980539833700292 4.063865242173049e-05 0.019271257144015987 7.916450543755538e-05']
['59866.440706657464 0.034343680417294825 6.799628186229033e-05 0.01507027911873912 4.067243496023208e-05 0.0005330020923382008 1.4384931270010114e-06 0.01507027911873912 4.067243496023208e-05 0.019273401298555703 7.923219871170017e-05']
['59866.44073819543 0.03418728536531699 6.783885112635475e-05 0.01505620860382378 4.067786038402861e-05 0.0005325044496713953 1.438685012115586e-06 0.015056208603823782 4.067786038402861e-05 0.019131076761493206 7.909992444728533e-05']
['59866.44076973339 0.03429668133574404 6.796767354768823e-05 0.014965466482996626 4.061490069202515e-05 0.0005292951036544434 1.4364582685160541e-06 0.014965466482996626 4.061490069202515e-05 0.019331214852747414 7.917812075130466e-05']
['59866.440801271354 0.034203553232551774 6.789569345528057e-05 0.014946167792143942 4.0629281910697775e-05 0.0005286125520890196 1.4369669000803728e-06 0.014946167792143942 4.0629281910697775e-05 0.01925738544040783 7.912372424470667e-05']
['59866.44083280932 0.034251648005745414 6.793534848860991e-05 0.015041694146488526 4.066864964721438e-05 0.0005319911057533503 1.438359248939252e-06 0.015041694146488524 4.066864964721438e-05 0.01920995385925689 7.9177968137587e-05']
['59866.44086434728 0.03423734102586167 6.79232631211598e-05 0.014954417203423522 4.0612024366597787e-05 0.0005289043153296292 1.4363565393138972e-06 0.014954417203423524 4.0612024366597787e-05 0.019282923822438146 7.913852536015211e-05']
['59866.440895885244 0.034265818964326934 6.792884833220006e-05 0.014959650730984918 4.062924360871196e-05 0.0005290894135032301 1.4369655454247343e-06 0.01495965073098492 4.062924360871196e-05 0.019306168233342014 7.915215645802141e-05']
['59866.44092742321 0.03425535212889219 6.79239036749249e-05 0.015016731952902386 4.0643361485491785e-05 0.0005311082487534279 1.4374648631748392e-06 0.015016731952902384 4.0643361485491785e-05 0.019238620175989807 7.915516106534578e-05']
['59866.44095896117 0.0342786222105854 6.793695816697287e-05 0.014953008724990308 4.061649235092443e-05 0.0005288545005952104 1.4365145619341735e-06 0.014953008724990308 4.061649235092443e-05 0.01932561348559509 7.915257251582998e-05']
['59866.44099049913 0.034250441695205386 6.792502339890297e-05 0.014951817803908515 4.060650185678588e-05 0.0005288123803780994 1.4361612204839333e-06 0.014951817803908515 4.060650185678588e-05 0.01929862389129687 7.913720235632968e-05']
['59866.44102203709 0.03433074445503146 6.798979785915756e-05 0.018525529771867257 5.324547941004795e-05 0.0006552065859086102 1.8831736100904149e-06 0.018525529771867257 5.324547941004795e-05 0.015805214683164204 8.635793936017085e-05']
['59866.44105357506 0.034256949907661795 6.792919799259131e-05 0.015031403426153852 4.066356753421789e-05 0.0005316271459735193 1.4381795059604203e-06 0.01503140342615385 4.066356753421789e-05 0.019225546481507944 7.917008061462721e-05']
['59866.44108511302 0.034347880976016716 6.796164361015379e-05 0.01511054170575165 4.070306942993343e-05 0.0005344260900592478 1.4395765997303377e-06 0.01511054170575165 4.070306942993343e-05 0.019237339270265066 7.921821042671652e-05']
['59866.44111665098 0.03428289976472014 6.79204337145516e-05 0.015024039637000804 4.065438934430662e-05 0.0005313667052082762 1.4378548938953058e-06 0.015024039637000806 4.065438934430662e-05 0.019258860127719334 7.9157846666842e-05']
['59866.44114818895 0.034269815125870066 6.792575641795274e-05 0.014981888873675365 4.063041073649821e-05 0.0005298759269108673 1.4370068241261568e-06 0.014981888873675365 4.063041073649821e-05 0.0192879262521947 7.915010209448625e-05']
['59866.44117972691 0.03434422266109293 6.79909863070578e-05 0.014997429978662397 4.063598740390122e-05 0.0005304255810619331 1.4372040583890834e-06 0.014997429978662397 4.063598740390122e-05 0.019346792682430534 7.920894956566802e-05']
['59866.44121126487 0.034294932668940986 6.79543197931094e-05 0.015095423748401919 4.067826608420279e-05 0.000533891401694434 1.4386993608240605e-06 0.01509542374840192 4.067826608420279e-05 0.019199508920539066 7.919918503470464e-05']
['59866.44124280284 0.03425208984158915 6.79258866260069e-05 0.015049391260534038 4.066176593691826e-05 0.0005322633354751026 1.4381157874902655e-06 0.015049391260534038 4.066176593691826e-05 0.019202698581055114 7.916631406752414e-05']
['59866.441274340796 0.03432666023325988 6.79666246559995e-05 0.01501709735893008 4.063728024588623e-05 0.000531121172347993 1.4372497833207613e-06 0.01501709735893008 4.063728024588623e-05 0.0193095628743298 7.918870255858606e-05']
['59866.44130587876 0.034261796799132244 6.792731668511486e-05 0.015114080724096339 4.069934382567617e-05 0.000534551257228859 1.439444833433994e-06 0.01511408072409634 4.069934382567617e-05 0.019147716075035903 7.918684827596366e-05']
['59866.44133741673 0.03428256536989259 6.795265063258041e-05 0.015020678261164048 4.065479678974472e-05 0.000531247820857163 1.4378693043298646e-06 0.01502067826116405 4.065479678974472e-05 0.01926188710872854 7.918570091884625e-05']
['59866.441368954685 0.034271806672624326 6.794489796822601e-05 0.014923006569155498 4.059583458320983e-05 0.0005277933913942053 1.4357839428575017e-06 0.014923006569155498 4.059583458320983e-05 0.01934880010346883 7.914878991759746e-05']
['59866.44140049265 0.03424942831527434 6.794493885649076e-05 0.015019483226716644 4.066898301434447e-05 0.0005312055551595031 1.4383710393896116e-06 0.015019483226716642 4.066898301434447e-05 0.019229945088557698 7.918636811745634e-05']
['59866.44143203062 0.0343341697249141 6.800655041311881e-05 0.015104096413443045 4.070332258584159e-05 0.000534198134474673 1.4395855532890394e-06 0.015104096413443045 4.070332258584159e-05 0.019230073311471054 7.925686953582732e-05']
['59866.441463568575 0.03440909959380471 6.802845631561594e-05 0.015031977705796066 4.066724860831148e-05 0.000531647456961025 1.4383096973243941e-06 0.015031977705796068 4.066724860831148e-05 0.019377121888008643 7.925715095848373e-05']
['59866.44149510654 0.03434051325472085 6.80173542219447e-05 0.015092645608888912 4.070524899728569e-05 0.0005337931451086352 1.4396536861565409e-06 0.01509264560888891 4.070524899728569e-05 0.019247867645831942 7.926712919795019e-05']
['59866.4415266445 0.03422737631829486 6.790254349526831e-05 0.015118630492751254 4.071613576208614e-05 0.0005347121723780488 1.4400387266970453e-06 0.015118630492751256 4.071613576208614e-05 0.019108745825543602 7.917423270561853e-05']
['59866.441558182465 0.03429074720522466 6.796246161082447e-05 0.015040912820800464 4.066507907171914e-05 0.0005319634720099238 1.438232965663752e-06 0.015040912820800464 4.066507907171914e-05 0.019249834384424194 7.91993992661053e-05']
['59866.44158972043 0.03407631642247126 6.779277691116498e-05 0.014983666156626396 4.064552545189885e-05 0.0005299387854368516 1.4375413978304768e-06 0.014983666156626396 4.064552545189885e-05 0.019092650265844866 7.904378116327647e-05']
['59866.44162125839 0.03439020997411133 6.803304665174944e-05 0.015023509038847959 4.065054013541421e-05 0.0005313479391374272 1.4377187559792569e-06 0.015023509038847959 4.065054013541421e-05 0.019366700935263374 7.925251951843574e-05']
['59866.441652796355 0.0343069789947778 6.796715043435231e-05 0.014973008319725242 4.062038510095726e-05 0.0005295618415645214 1.4366522398030504e-06 0.014973008319725242 4.062038510095726e-05 0.019333970675052554 7.91804851204888e-05']
['59866.44168433432 0.03425050950759092 6.792894847998451e-05 0.014986492703697224 4.0646849618536105e-05 0.0005300387540897859 1.4375882306450983e-06 0.014986492703697224 4.0646849618536105e-05 0.019264016803893697 7.916128110072676e-05']
['59866.44171587228 0.03426630311852151 6.793521651602274e-05 0.014986200760460243 4.0638643539614914e-05 0.0005300284287099486 1.4372979999731628e-06 0.014986200760460243 4.0638643539614914e-05 0.01928010235806127 7.916244685340881e-05']
['59866.441747410245 0.034266256616131065 6.792541747201392e-05 0.015113689453232947 4.06996290638231e-05 0.0005345374188528597 1.4394549216697811e-06 0.015113689453232947 4.06996290638231e-05 0.019152567162898117 7.918536572296783e-05']
['59866.4417789482 0.034299512779247074 6.796131691224453e-05 0.014979052612331427 4.064560935957739e-05 0.0005297756146858032 1.4375443654575442e-06 0.014979052612331428 4.064560935957739e-05 0.019320460166915646 7.918842185987734e-05']
['59866.44181048617 0.03427116680642628 6.793440515147756e-05 0.015030400075824544 4.066577132448039e-05 0.0005315916597147277 1.4382574490968237e-06 0.015030400075824544 4.066577132448039e-05 0.019240766730601735 7.917568036145968e-05']
['59866.441842024135 0.034298708411568846 6.796041407635734e-05 0.01507531222219801 4.068399421895437e-05 0.0005331801019592175 1.4389019521485958e-06 0.01507531222219801 4.068399421895437e-05 0.019223396189370835 7.92073561422035e-05']
['59866.44187356209 0.03424669548001245 6.789919282921315e-05 0.015023352372524175 4.066173325844054e-05 0.0005313423981996836 1.4381146317255405e-06 0.015023352372524177 4.066173325844054e-05 0.019223343107488272 7.914339478717879e-05']
['59866.44190510006 0.034406626404912606 6.804687481575879e-05 0.015069005448477188 4.068042450907784e-05 0.0005329570454675217 1.4387756994880953e-06 0.015069005448477188 4.068042450907784e-05 0.019337620956435417 7.927972067578398e-05']
['59866.441936638024 0.0343671708683071 6.798535316804343e-05 0.015049598032647438 4.067845429800992e-05 0.0005322706485426451 1.4387060175257855e-06 0.015049598032647438 4.067845429800992e-05 0.019317572835659665 7.922591046784425e-05']
['59866.44196817598 0.03419018339731147 6.786457974798604e-05 0.015091807179034798 4.0686525114117184e-05 0.0005337634917184758 1.438991464254287e-06 0.015091807179034798 4.0686525114117184e-05 0.019098376218276668 7.912644633896081e-05']
['59866.44199971395 0.03429037676052947 6.796124012150082e-05 0.014995312029567635 4.0627765544779996e-05 0.000530350673935789 1.4369132696067391e-06 0.014995312029567633 4.0627765544779996e-05 0.019295064730961837 7.917919860679259e-05']
['59866.44203125191 0.03423276867738376 6.789186327488992e-05 0.015040676892412662 4.0653645178954395e-05 0.0005319551277501161 1.4378285744299094e-06 0.015040676892412662 4.0653645178954395e-05 0.019192091784971096 7.91329511977954e-05']
['59866.44206278987 0.034365789016361836 6.802552880819377e-05 0.014986783080982492 4.0643920005262386e-05 0.0005300490240854107 1.437484616770907e-06 0.014986783080982492 4.0643920005262386e-05 0.019379005935379345 7.924267034261635e-05']
['59866.44209432784 0.03414706207087917 6.785547274259543e-05 0.015040963217499686 4.066481633815389e-05 0.0005319652544285452 1.438223673364724e-06 0.015040963217499684 4.066481633815389e-05 0.019106098853379487 7.910747416607927e-05']
['59866.4421258658 0.034186837270932316 6.787042240017018e-05 0.015016555894989694 4.064483849880097e-05 0.0005311020219785223 1.4375171018346545e-06 0.015016555894989694 4.064483849880097e-05 0.01917028137594262 7.911003181247708e-05']
['59866.44215740376 0.03427694824743828 6.797453805614884e-05 0.0149702445393853 4.063262178561799e-05 0.0005294640928305832 1.4370850239921195e-06 0.0149702445393853 4.063262178561799e-05 0.01930670370805298 7.919310435334572e-05']
['59866.44218894173 0.03440349823394048 6.805303944186033e-05 0.015056081143322771 4.068381174997037e-05 0.0005324999416783321 1.4388954986284261e-06 0.015056081143322773 4.068381174997037e-05 0.01934741709061771 7.928674993832467e-05']
['59866.44222047969 0.03436459744139704 6.799886284447332e-05 0.015042946752774785 4.0676579809834674e-05 0.000532035407638285 1.4386397210682614e-06 0.015042946752774785 4.0676579809834674e-05 0.019321650688622256 7.923654140084196e-05']
['59866.44225201765 0.03433347511106101 6.800726387284643e-05 0.015006072628348908 4.066464545225674e-05 0.0005307312522661598 1.4382176295124494e-06 0.01500607262834891 4.066464545225674e-05 0.0193274024827121 7.923762571675597e-05']
['59866.44228355561 0.03433038591005693 6.798113146023275e-05 0.01507361071606834 4.066683995835596e-05 0.0005331199234900534 1.4382952442887463e-06 0.01507361071606834 4.066683995835596e-05 0.019256775193988593 7.921632474946047e-05']
['59866.442315093576 0.03426032578106772 6.790997056734866e-05 0.01504862277590912 4.068022651917308e-05 0.0005322361558913814 1.4387686970276452e-06 0.01504862277590912 4.068022651917308e-05 0.0192117030051586 7.916214330164004e-05']
['59866.44234663154 0.03431426824207466 6.798570147546317e-05 0.0151008431700474 4.0690079943754767e-05 0.0005340830745263402 1.4391171906339915e-06 0.015100843170047402 4.0690079943754767e-05 0.01921342507202726 7.923217913789793e-05']
['59866.4423781695 0.03417178475000517 6.785103864506508e-05 0.015066173366827461 4.0670779499909805e-05 0.0005328568810689008 1.4384345770691486e-06 0.015066173366827461 4.0670779499909805e-05 0.019105611383177713 7.910673644099091e-05']
['59866.442409707466 0.034183418226018294 6.785458247297792e-05 0.015020233517105427 4.06611107929724e-05 0.0005312320912537541 1.438092616513061e-06 0.015020233517105429 4.06611107929724e-05 0.019163184708912866 7.910480575477408e-05']
['59866.44244124543 0.034240914121047995 6.791165083506144e-05 0.015009655936854167 4.065097968336912e-05 0.0005308579858797676 1.4377343018080902e-06 0.015009655936854169 4.065097968336912e-05 0.019231258184193828 7.91485594838023e-05']
['59866.44247278339 0.03429403582656297 6.79718962863708e-05 0.014999109500940484 4.0655151108786314e-05 0.0005304849820113977 1.4378818358025092e-06 0.014999109500940484 4.0655151108786314e-05 0.019294926325622488 7.920239893111444e-05']
['59866.442504321356 0.03422554413803149 6.790528510022311e-05 0.01501186925578488 4.0650778076318685e-05 0.0005309362660238702 1.4377271714172817e-06 0.015011869255784882 4.0650778076318685e-05 0.01921367488224661 7.914299402191388e-05']
['59866.442535859314 0.03444294216078779 6.806872481112774e-05 0.015036539741276443 4.066863390378327e-05 0.0005318088059604166 1.4383586921292781e-06 0.015036539741276441 4.066863390378327e-05 0.01940640241951135 7.929242763980043e-05']
['59866.44256739728 0.034262281860400395 6.794611690571971e-05 0.015042214372053902 4.0667784559827656e-05 0.000532009504968962 1.4383286527317401e-06 0.015042214372053902 4.0667784559827656e-05 0.019220067488346496 7.918676343663938e-05']
['59866.442598935246 0.034309372993795044 6.797686220091517e-05 0.015083672664992902 4.070549723094408e-05 0.0005334757921363828 1.4396624656262685e-06 0.015083672664992902 4.070549723094408e-05 0.019225700328802144 7.923251415612537e-05']
['59866.442630473204 0.03427195907202196 6.793254603183799e-05 0.01501521647980097 4.0659877924504224e-05 0.0005310546498567139 1.4380490127106403e-06 0.01501521647980097 4.0659877924504224e-05 0.019256742592220995 7.917105836859435e-05']
['59866.44266201117 0.034205686446623196 6.791144724390815e-05 0.015104186756304445 4.0708171654382064e-05 0.0005342013296997763 1.4397570540062854e-06 0.015104186756304445 4.0708171654382064e-05 0.01910149969031875 7.91777740669991e-05']
['59866.44269354913 0.03435005450603104 6.799908091004828e-05 0.015066681851993093 4.0674837104287374e-05 0.0005328748650528117 1.438578085467771e-06 0.01506668185199309 4.0674837104287374e-05 0.01928337265403795 7.923583392677587e-05']
['59866.442725087094 0.03436787674217618 6.803099955877354e-05 0.015008528839560576 4.0652529760296946e-05 0.0005308181229674075 1.4377891245648094e-06 0.015008528839560577 4.0652529760296946e-05 0.019359347902615603 7.925178279936468e-05']
['59866.44275662506 0.034265048269457685 6.792666398318584e-05 0.01499508150559723 4.064313536022281e-05 0.0005303425208181465 1.4374568656294356e-06 0.014995081505597228 4.064313536022281e-05 0.019269966763860457 7.915741362496649e-05']
['59866.44278816302 0.03428648865376439 6.794593539883454e-05 0.015090653145130117 4.069720720339499e-05 0.0005337226761183812 1.4393692658789785e-06 0.015090653145130117 4.069720720339499e-05 0.019195835508634268 7.920172227533099e-05']
['59866.442819700984 0.03420558789823353 6.790684544422492e-05 0.014953953434137869 4.062065447566149e-05 0.000528887912846459 1.436661766984322e-06 0.01495395343413787 4.062065447566149e-05 0.01925163446409566 7.912886469687865e-05']
['59866.44285123895 0.034145985467541 6.783417047236969e-05 0.014972396083885854 4.063755694140533e-05 0.0005295401881511489 1.4372595694228939e-06 0.014972396083885854 4.063755694140533e-05 0.019173589383655147 7.907519028014079e-05']
['59866.44288277691 0.034266308355670676 6.7925706128958e-05 0.014978850918517682 4.0627890487279695e-05 0.0005297684812263702 1.4369176885437235e-06 0.01497885091851768 4.0627890487279695e-05 0.019287457437152995 7.914876523714033e-05']
['59866.44291431487 0.034207088462846064 6.78790159987017e-05 0.015024770019972244 4.068103065581128e-05 0.0005313925372216661 1.4387971375433987e-06 0.015024770019972242 4.068103065581128e-05 0.01918231844287382 7.913600361511225e-05']
['59866.44294585283 0.03423770146452024 6.790079791913956e-05 0.015063842795709444 4.0686204093401863e-05 0.0005327744539769765 1.4389801104690252e-06 0.015063842795709445 4.0686204093401863e-05 0.019173858668810793 7.915734685792455e-05']
['59866.4429773908 0.03434393880879715 6.797817223851697e-05 0.015066775095237482 4.0685744258755355e-05 0.0005328781628579795 1.438963847145248e-06 0.015066775095237482 4.0685744258755355e-05 0.01927716371355967 7.922349201328052e-05']
['59866.44300892876 0.03428079957537649 6.794639175396065e-05 0.015090357732857721 4.06865731416893e-05 0.0005337122280465141 1.4389931628821773e-06 0.01509035773285772 4.06865731416893e-05 0.019190441842518773 7.919665009580093e-05']
['59866.44304046672 0.03421488390443724 6.787793712843749e-05 0.015096911936382303 4.0693224103546536e-05 0.0005339440355773958 1.4392283925390429e-06 0.015096911936382304 4.0693224103546536e-05 0.01911797196805494 7.914134720077473e-05']
['59866.44307200469 0.03430503996080196 6.799470398931139e-05 0.014997460810138752 4.065668884564878e-05 0.0005304266715023475 1.437936222118695e-06 0.014997460810138752 4.065668884564878e-05 0.01930757915066321 7.922276262846417e-05']
['59866.44310354265 0.034278208589895255 6.794482364081585e-05 0.014989438989639774 4.062689134152616e-05 0.0005301429576390123 1.4368823509913804e-06 0.014989438989639774 4.062689134152616e-05 0.01928876960025548 7.916465978994505e-05']
['59866.44313508061 0.03426473357321727 6.793679091640314e-05 0.015089575810043701 4.068784525806921e-05 0.0005336845731840769 1.439038154795522e-06 0.015089575810043703 4.068784525806921e-05 0.019175157763173568 7.918906687014098e-05']
['59866.44316661858 0.03429885749230868 6.793122511029847e-05 0.015109413430955667 4.070043928828311e-05 0.0005343861855012596 1.4394835774981866e-06 0.015109413430955667 4.070043928828311e-05 0.019189444061353013 7.919076400215662e-05']
['59866.443198156536 0.0343045302836996 6.796429302563434e-05 0.01496221195159363 4.0627418159188823e-05 0.000529179998152169 1.4369009833547406e-06 0.014962211951593628 4.0627418159188823e-05 0.019342318332105972 7.918164075564407e-05']
['59866.4432296945 0.03427879461525858 6.792599665310964e-05 0.015067490950442602 4.0672353666333415e-05 0.0005329034810567423 1.4384902518174969e-06 0.015067490950442602 4.0672353666333415e-05 0.01921130366481598 7.917184710537936e-05']
['59866.44326123247 0.03423636675142586 6.791235562770557e-05 0.014991278029684791 4.0637449883780746e-05 0.000530208000375392 1.437255783033972e-06 0.014991278029684791 4.0637449883780746e-05 0.01924508872174107 7.914221616786293e-05']
['59866.443292770426 0.03438079989004141 6.80274150754907e-05 0.015129558291620514 4.071093833958386e-05 0.0005350986642018614 1.4398549054786953e-06 0.015129558291620514 4.071093833958386e-05 0.0192512415984209 7.927868378285867e-05']
['59866.44332430839 0.03431313118887789 6.794810515766389e-05 0.015084429654720264 4.06991137528062e-05 0.0005335025651712671 1.4394366962707656e-06 0.015084429654720264 4.06991137528062e-05 0.019228701534157625 7.920456334568614e-05']
['59866.44335584636 0.03421182139947367 6.787722143199867e-05 0.015020695742616923 4.066061706084801e-05 0.0005312484391370825 1.4380751543112475e-06 0.015020695742616925 4.066061706084801e-05 0.019191125656856746 7.912397215191806e-05']
['59866.443387384315 0.03416562895038753 6.787070166121151e-05 0.014979940978213722 4.064839790041742e-05 0.0005298070342016791 1.437642989915034e-06 0.014979940978213722 4.064839790041742e-05 0.019185687972173807 7.911210018610199e-05']
['59866.44341892228 0.03422595274354368 6.789614384987715e-05 0.01501157001590684 4.0650664107797284e-05 0.0005309256825781457 1.4377231406053843e-06 0.01501157001590684 4.0650664107797284e-05 0.019214382727636842 7.913509235533985e-05']
['59866.44345046024 0.03413291385501951 6.785666829693115e-05 0.014977191289517605 4.0623852705001695e-05 0.00052970978385769 1.436774881208463e-06 0.014977191289517603 4.0623852705001695e-05 0.019155722565501902 7.908745059083276e-05']
['59866.443481998205 0.03419595614470313 6.787467160658302e-05 0.014947693198875052 4.061750491048967e-05 0.0005286665023160155 1.4365503739030583e-06 0.014947693198875052 4.061750491048967e-05 0.019248262945828078 7.909963812088611e-05']
['59866.44351353617 0.03424100077506431 6.792799806865283e-05 0.015063323025979784 4.068569387518886e-05 0.0005327560708832554 1.4389620651911017e-06 0.015063323025979786 4.068569387518886e-05 0.019177677749084528 7.918041808250625e-05']
['59866.44354507413 0.034323086778165916 6.795758972952732e-05 0.015043642935638646 4.067321235935656e-05 0.0005320600300703027 1.4385206218706595e-06 0.015043642935638646 4.067321235935656e-05 0.01927944384252727 7.91993952342824e-05']
['59866.443576612095 0.034362601513248665 6.798469227697607e-05 0.015073625642712748 4.068129773376256e-05 0.000533120451412107 1.4388065834936514e-06 0.015073625642712746 4.068129773376256e-05 0.01928897587053592 7.922680335150576e-05']
['59866.44360815006 0.034291669527917054 6.792276758642302e-05 0.015106392005096787 4.070785975644009e-05 0.0005342793244211204 1.4397460228731286e-06 0.015106392005096787 4.070785975644009e-05 0.019185277522820267 7.918732349656245e-05']
['59866.44363968802 0.03430730211894004 6.797514017169506e-05 0.014968843698101423 4.064073872981741e-05 0.0005294145482050684 1.4373721021681502e-06 0.014968843698101421 4.064073872981741e-05 0.019338458420838624 7.919778611720704e-05']
['59866.443671225985 0.03418925172163881 6.789577185515645e-05 0.015010279398851049 4.065477806714533e-05 0.0005308800363372418 1.4378686421533665e-06 0.01501027939885105 4.065477806714533e-05 0.019178972322787757 7.913688656686144e-05']
['59866.44370276394 0.03428932481916545 6.794710691437689e-05 0.015027660489926042 4.0654463264440014e-05 0.0005314947666841119 1.4378575082852223e-06 0.015027660489926044 4.0654463264440014e-05 0.019261664329239404 7.918077242205627e-05']
['59866.44373430191 0.034242796253013956 6.793028915145284e-05 0.015114949042937755 4.071401127513258e-05 0.0005345819677257014 1.4399635883414468e-06 0.015114949042937757 4.071401127513258e-05 0.0191278472100762 7.919693743012804e-05']
['59866.443765839875 0.03421049928075042 6.786734936376152e-05 0.015054657989678795 4.067529470907687e-05 0.0005324496079145058 1.4385942699264892e-06 0.015054657989678795 4.067529470907687e-05 0.019155841291071625 7.912304790219547e-05']
['59866.44379737783 0.03423810799053548 6.793366624809517e-05 0.014979367266348109 4.0642059933779776e-05 0.0005297867432951629 1.4374188301995823e-06 0.014979367266348109 4.0642059933779776e-05 0.019258740724187366 7.916287037221764e-05']
['59866.4438289158 0.03434538824888089 6.79847993118846e-05 0.015076738241766191 4.0687277104496865e-05 0.0005332305370843778 1.4390180604734166e-06 0.01507673824176619 4.0687277104496865e-05 0.019268650007114703 7.922996564214414e-05']
['59866.443860453765 0.03425211214870746 6.793605101582212e-05 0.015042041886815695 4.065819435416021e-05 0.0005320034045515684 1.4379894685901308e-06 0.015042041886815695 4.065819435416021e-05 0.01921007026189176 7.917320124742368e-05']
['59866.44389199172 0.03413438993446167 6.784305592502937e-05 0.014984765443521845 4.0632356281817444e-05 0.000529977664757582 1.4370756337160603e-06 0.014984765443521845 4.0632356281817444e-05 0.019149624490939824 7.908014045422031e-05']
['59866.44392352969 0.034245062404075655 6.792478272582591e-05 0.015022515455147212 4.065905071650055e-05 0.0005313127983024606 1.4380197562122516e-06 0.015022515455147212 4.065905071650055e-05 0.019222546948928443 7.916397232022672e-05']
['59866.44395506765 0.03421311553062254 6.786781953790753e-05 0.01507991009417545 4.068466600225805e-05 0.0005333427184154205 1.4389257116226998e-06 0.015079910094175452 4.068466600225805e-05 0.019133205436447087 7.912826913654357e-05']
['59866.44398660561 0.03434872312188112 6.799595554119576e-05 0.015056310891021676 4.067601357740556e-05 0.0005325080673409864 1.4386196946926986e-06 0.015056310891021676 4.067601357740556e-05 0.019292412230859445 7.923375575163372e-05']
['59866.44401814358 0.03439797109724312 6.804863336039573e-05 0.015105494969520458 4.0719998189800715e-05 0.0005342475982775422 1.440175332133292e-06 0.015105494969520458 4.0719998189800715e-05 0.019292476127722665 7.930154320563337e-05']
['59866.44404968154 0.03422326001066531 6.784975623875691e-05 0.015066856347000229 4.0688630099852585e-05 0.0005328810365512408 1.4390659128953817e-06 0.015066856347000229 4.0688630099852585e-05 0.019156403663665077 7.91148155598012e-05']
['59866.4440812195 0.03418777015003302 6.789613404527506e-05 0.015008567934972563 4.06551311283217e-05 0.0005308195056847563 1.4378811291381296e-06 0.015008567934972562 4.06551311283217e-05 0.01917920221506046 7.913737868640198e-05']
['59866.44411275747 0.03424672958886092 6.79478213572642e-05 0.015041212752353681 4.069558459249845e-05 0.0005319740799186535 1.4393118777578896e-06 0.015041212752353681 4.069558459249845e-05 0.01920551683650724 7.920250647879703e-05']
['59866.44414429543 0.034274602336261444 6.793792232178948e-05 0.01501559707743573 4.066400917176995e-05 0.0005310681107444697 1.4381951256936347e-06 0.01501559707743573 4.066400917176995e-05 0.019259005258825714 7.917779317032833e-05']
['59866.44417583339 0.03433834856628292 6.798263110452044e-05 0.015074411521912232 4.068744217251942e-05 0.0005331482462030561 1.4390238985604692e-06 0.01507441152191223 4.068744217251942e-05 0.01926393704437069 7.922818994799403e-05']
['59866.44420737135 0.03425585654735849 6.792532589334142e-05 0.015077363936437124 4.06920407642799e-05 0.0005332526665065434 1.4391865404737896e-06 0.015077363936437122 4.06920407642799e-05 0.01917849261092137 7.918138720228673e-05']
['59866.44423890932 0.03420808556853433 6.791647376841858e-05 0.015024188774406134 4.065763155662889e-05 0.0005313719798650002 1.4379695636992264e-06 0.015024188774406134 4.065763155662889e-05 0.019183896794128196 7.915611418539237e-05']
['59866.44427044728 0.03427142786693381 6.792494310169964e-05 0.015089163536822088 4.068415733932092e-05 0.0005336699920016048 1.4389077213514082e-06 0.01508916353682209 4.068415733932092e-05 0.01918226433011172 7.917700773444114e-05']
['59866.44430198524 0.03427947187666194 6.793129068732803e-05 0.01509299679715437 4.0682881550964864e-05 0.000533805565852725 1.4388625995684737e-06 0.01509299679715437 4.0682881550964864e-05 0.019186475079507576 7.918179781828712e-05']
['59866.444333523206 0.034376496369137345 6.796640784858563e-05 0.015057977117871754 4.067688109219341e-05 0.0005325669980608759 1.4386503767519635e-06 0.015057977117871754 4.067688109219341e-05 0.01931851925126559 7.920884578901983e-05']
['59866.44436506117 0.03425598719256212 6.791116665927717e-05 0.014985395937778052 4.062881671073536e-05 0.0005299999639303523 1.4369504469973629e-06 0.01498539593777805 4.062881671073536e-05 0.019270591254784072 7.913676329202912e-05']
['59866.44439659913 0.03434194702174604 6.798942763021183e-05 0.01496488118181017 4.062584640052383e-05 0.0005292744028595496 1.4368453937634337e-06 0.01496488118181017 4.062584640052383e-05 0.01937706583993587 7.92024094661442e-05']
['59866.444428137096 0.03431218199764293 6.798756392405357e-05 0.015009551774165067 4.064906807059502e-05 0.000530854301878244 1.4376666923364736e-06 0.015009551774165067 4.064906807059502e-05 0.019302630223477862 7.921272362023123e-05']
['59866.444459675055 0.034367081479654185 6.798813280269279e-05 0.015043409161057727 4.06597358281865e-05 0.0005320517619858311 1.438043987081449e-06 0.015043409161057729 4.06597358281865e-05 0.019323672318596455 7.921868668195973e-05']
['59866.44449121302 0.03419811701744484 6.785740667057254e-05 0.015009715742384995 4.064004757836463e-05 0.0005308601010677354 1.4373476576858982e-06 0.015009715742384994 4.064004757836463e-05 0.019188401275059844 7.909640388302874e-05']
['59866.444522750986 0.03426171546806125 6.794117060163542e-05 0.01498577437670416 4.063992524237669e-05 0.0005300133484694075 1.4373433309354094e-06 0.014985774376704158 4.063992524237669e-05 0.01927594109135709 7.916821449563261e-05']
['59866.444554288944 0.034258296743042725 6.793336776677283e-05 0.015038854029034508 4.06634172228212e-05 0.0005318906571462906 1.4381741897822456e-06 0.015038854029034507 4.06634172228212e-05 0.019219442714008217 7.917358117688527e-05']
['59866.44458582691 0.034270594454314615 6.795979848011992e-05 0.015043025648835947 4.0674179737349065e-05 0.0005320381980156461 1.4385548358682918e-06 0.015043025648835948 4.0674179737349065e-05 0.019227568805478667 7.920178727001485e-05']
['59866.444617364876 0.03428943125331694 6.794598837339714e-05 0.015082560755146376 4.066926018395935e-05 0.0005334364663700835 1.4383808422594524e-06 0.015082560755146378 4.066926018395935e-05 0.01920687049817056 7.918741099409931e-05']
['59866.444648902834 0.03432455003553713 6.800365307093305e-05 0.015073149417146343 4.068088993392958e-05 0.0005331036083781248 1.4387921605249377e-06 0.015073149417146344 4.068088993392958e-05 0.019251400618390785 7.924286489525928e-05']
['59866.4446804408 0.034297075551047496 6.79688432917797e-05 0.01500393014961774 4.064992077421353e-05 0.0005306554775815966 1.4376968505577797e-06 0.015003930149617742 4.064992077421353e-05 0.019293145401429755 7.919709412202157e-05']
['59866.44471197876 0.03437068824642268 6.799671834991027e-05 0.014939244290270383 4.060876689172012e-05 0.0005283676833008678 1.436241329707502e-06 0.014939244290270381 4.060876689172012e-05 0.019431443956152296 7.919990943696267e-05']
['59866.444743516724 0.03435905416979046 6.798682151063699e-05 0.015029767219302161 4.065619115244486e-05 0.0005315692769938821 1.4379186198223512e-06 0.015029767219302161 4.065619115244486e-05 0.0193292869504883 7.921574198442723e-05']
['59866.44477505469 0.034305406040200326 6.796564987022898e-05 0.015082336063784622 4.069505375606651e-05 0.0005334285195387738 1.4392931032596416e-06 0.015082336063784622 4.069505375606651e-05 0.019223069976415704 7.921752938896605e-05']
['59866.44480659265 0.034099393091038994 6.781487970497888e-05 0.015008527562868796 4.066643657793665e-05 0.0005308180778136725 1.4382809776248174e-06 0.015008527562868797 4.066643657793665e-05 0.019090865528170197 7.907349096472281e-05']
['59866.444838130614 0.0342700171703928 6.79344204453698e-05 0.015084290818947283 4.0686527514760216e-05 0.0005334976548602565 1.4389915491596658e-06 0.015084290818947283 4.0686527514760216e-05 0.019185726351445512 7.918635616353121e-05']
['59866.44486966858 0.03420298359801924 6.78980324781714e-05 0.015044852418263652 4.066596502426962e-05 0.0005321028067677146 1.438264299825475e-06 0.015044852418263654 4.066596502426962e-05 0.019158131179755584 7.914457357116746e-05']
['59866.44490120654 0.03412896420807483 6.782023556659422e-05 0.014997507867272108 4.06514215058982e-05 0.0005304283358079878 1.4377499280835285e-06 0.014997507867272107 4.06514215058982e-05 0.019131456340802724 7.907036374494893e-05']
['59866.4449327445 0.03421186366685684 6.787944029123062e-05 0.015067803076813777 4.0690301975810085e-05 0.0005329145202689294 1.4391250434115757e-06 0.015067803076813777 4.0690301975810085e-05 0.019144060590043067 7.914113398943281e-05']
['59866.44496428246 0.03426492168284086 6.790951240993286e-05 0.015036350026796697 4.0664789378254625e-05 0.000531802096183255 1.4382227198533389e-06 0.015036350026796697 4.0664789378254625e-05 0.01922857165604416 7.915381842294555e-05']
['59866.44499582043 0.034404561368649535 6.8001244260381e-05 0.015041651019479633 4.066185632219689e-05 0.000531989580447429 1.4381189842155712e-06 0.015041651019479633 4.066185632219689e-05 0.019362910349169902 7.923102789013268e-05']
['59866.44502735839 0.034269918859784955 6.794711280944717e-05 0.01497323275183346 4.063007290224822e-05 0.0005295697792266128 1.4369948756837499e-06 0.01497323275183346 4.063007290224822e-05 0.019296686107951495 7.916825729534372e-05']
['59866.44505889635 0.03425101881878629 6.794989079124015e-05 0.015003589485737578 4.064458082360157e-05 0.0005306434290614941 1.437507988438722e-06 0.015003589485737578 4.064458082360157e-05 0.01924742933304871 7.917808793389585e-05']
['59866.44509043432 0.03430362695310745 6.794483178377296e-05 0.015020249119587123 4.065094787636899e-05 0.0005312326430786621 1.43773317686558e-06 0.015020249119587123 4.065094787636899e-05 0.019283377833520327 7.917701515826718e-05']
['59866.44512197228 0.03416717862496938 6.784297195704854e-05 0.014995252796747866 4.063241751909532e-05 0.0005303485790033313 1.4370777995417216e-06 0.014995252796747864 4.063241751909532e-05 0.01917192582822152 7.908009988240378e-05']
['59866.44515351024 0.03430453028419339 6.795827564349566e-05 0.015113703886514935 4.071363327633549e-05 0.0005345379293257871 1.4399502193687716e-06 0.015113703886514935 4.071363327633549e-05 0.019190826397678454 7.922074957356354e-05']
['59866.44518504821 0.034229456778036904 6.791193688787794e-05 0.015054074925180022 4.067264877404375e-05 0.0005324289862262566 1.4385006891176844e-06 0.01505407492518002 4.067264877404375e-05 0.019175381852856884 7.91599363956278e-05']
['59866.445216586166 0.03439343114631866 6.803230153467783e-05 0.015057216688234051 4.0675486971253265e-05 0.0005325401033640505 1.4386010698099876e-06 0.01505721668823405 4.0675486971253265e-05 0.01933621445808461 7.926467871917429e-05']
['59866.44524812413 0.03427971111408209 6.79239526651423e-05 0.014987611921730652 4.063619796820237e-05 0.0005300783383303231 1.4372115055778316e-06 0.01498761192173065 4.063619796820237e-05 0.01929209919235144 7.91515251335527e-05']
['59866.4452796621 0.03427652274548093 6.79314031423916e-05 0.015088689199131661 4.06871004103048e-05 0.0005336532157375768 1.4390118111947315e-06 0.015088689199131663 4.06871004103048e-05 0.019187833546349266 7.918406198656618e-05']
['59866.445311200056 0.03432770529485984 6.797993375329022e-05 0.015055050827789603 4.0685772959172404e-05 0.0005324635017205435 1.4389648622148574e-06 0.015055050827789601 4.0685772959172404e-05 0.019272654467070237 7.922501823532167e-05']
['59866.44534273802 0.034293883430414326 6.796335345639547e-05 0.015026997893031453 4.067168817429919e-05 0.0005314713321127671 1.4384667148515333e-06 0.015026997893031453 4.067168817429919e-05 0.019266885537382872 7.92035582028129e-05']
['59866.44537427599 0.03429826966801067 6.795677740815827e-05 0.01510506571801184 4.069341539891362e-05 0.000534232416611003 1.4392351582286567e-06 0.01510506571801184 4.069341539891362e-05 0.01919320394999883 7.920907556922067e-05']
['59866.445405813945 0.034290036991387836 6.796516250383212e-05 0.014981420408895739 4.064850883277344e-05 0.0005298593583585691 1.4376469133445472e-06 0.01498142040889574 4.064850883277344e-05 0.019308616582492097 7.919321046971368e-05']
['59866.44543735191 0.034180237733150716 6.788365792519726e-05 0.014970760123588217 4.061723923425355e-05 0.0005294823278915776 1.4365409775283383e-06 0.01497076012358822 4.061723923425355e-05 0.019209477609562497 7.910721292219681e-05']
['59866.44546888987 0.03434854772489574 6.800229462060737e-05 0.015082472776556678 4.067800102305077e-05 0.0005334333547639863 1.4386899862034901e-06 0.015082472776556676 4.067800102305077e-05 0.019266074948339065 7.924021605787812e-05']
['59866.445500427835 0.034242852079035824 6.793986149018237e-05 0.014917218152954825 4.06043497039077e-05 0.0005275886680495363 1.4360851036464104e-06 0.014917218152954825 4.06043497039077e-05 0.019325633926081 7.914883444613949e-05']
['59866.4455319658 0.034371712101350566 6.800902807313486e-05 0.015034709717333505 4.066274708358681e-05 0.0005317440821034177 1.4381504884551983e-06 0.015034709717333504 4.066274708358681e-05 0.01933700238401706 7.923816567687691e-05']
['59866.44556350376 0.0342365780042081 6.792612610737591e-05 0.01508532963792976 4.068522524535282e-05 0.0005335343955660429 1.438945490801127e-06 0.01508532963792976 4.068522524535282e-05 0.019151248366278344 7.917857135121996e-05']
['59866.445595041725 0.034201218382866196 6.788452416178731e-05 0.015008067804835781 4.064853068300271e-05 0.0005308018171995434 1.437647686138324e-06 0.015008067804835781 4.064853068300271e-05 0.019193150578030414 7.912402711793238e-05']
['59866.44562657969 0.03423772382331569 6.79271264599888e-05 0.014957534672711931 4.0632062677824614e-05 0.0005290145732512264 1.4370652495990003e-06 0.014957534672711931 4.0632062677824614e-05 0.019280189150603762 7.915212584994783e-05']
['59866.44565811765 0.03417596923126865 6.788533172176047e-05 0.015001839940032591 4.0634564030290346e-05 0.0005305815515399133 1.4371537168455195e-06 0.015001839940032591 4.0634564030290346e-05 0.01917412929123606 7.911754582205659e-05']
['59866.445689655615 0.034326143089472246 6.79879616434775e-05 0.01499812963595307 4.0656109284096826e-05 0.0005304503263766622 1.4379157243218462e-06 0.014998129635953069 4.0656109284096826e-05 0.01932801345351918 7.921667848726929e-05']
['59866.44572119357 0.03426926807237008 6.795008675515872e-05 0.015022797627279325 4.067214896708094e-05 0.0005313227781001559 1.4384830120624126e-06 0.015022797627279327 4.067214896708094e-05 0.019246470445090754 7.919241119977356e-05']
['59866.44575273154 0.03435647795105787 6.79841136352498e-05 0.015082735169442092 4.068434566097121e-05 0.00053344263501393 1.438914381867305e-06 0.015082735169442094 4.068434566097121e-05 0.019273742781615776 7.922787191785441e-05']
['59866.445784269505 0.034183278772251136 6.786836058951262e-05 0.015014669883663342 4.0652275024354164e-05 0.0005310353179728964 1.4377801151238146e-06 0.01501466988366334 4.0652275024354164e-05 0.019168608888587797 7.91120839933056e-05']
['59866.44581580746 0.03431967959129851 6.794842471578157e-05 0.015046171804805487 4.06550854176758e-05 0.0005321494705210439 1.4378795124547413e-06 0.015046171804805487 4.06550854176758e-05 0.019273507786493022 7.918222269976229e-05']
['59866.44584734543 0.034312680109266365 6.79861773058739e-05 0.015080230952543763 4.0689298659284305e-05 0.0005333540664588314 1.4390895583483393e-06 0.015080230952543763 4.0689298659284305e-05 0.019232449156722602 7.923218620011794e-05']
['59866.445878883394 0.034286383980414566 6.794977660669815e-05 0.015007903149045593 4.065686005369891e-05 0.0005307959936922285 1.4379422773648008e-06 0.015007903149045591 4.065686005369891e-05 0.019278480831368974 7.918429396241556e-05']
['59866.44591042135 0.034270184788788044 6.792369777575428e-05 0.015074201537269861 4.067990704809741e-05 0.0005331408195155435 1.4387573980496746e-06 0.01507420153726986 4.067990704809741e-05 0.019195983251518185 7.917375548105479e-05']
['59866.44594195932 0.03430716288856264 6.796626016715303e-05 0.015013373483327135 4.0652176629453966e-05 0.0005309894671902891 1.4377766351160942e-06 0.015013373483327137 4.0652176629453966e-05 0.019293789405235504 7.919603516478244e-05']
['59866.44597349728 0.034177844013322405 6.788496915241548e-05 0.014998489993914236 4.06546616430358e-05 0.000530463071432396 1.4378645244928051e-06 0.014998489993914238 4.06546616430358e-05 0.019179354019408165 7.91275587272483e-05']
['59866.44600503524 0.03415263206060065 6.784582219214287e-05 0.015006206243360633 4.0662856862177916e-05 0.0005307359779305125 1.438154371078625e-06 0.015006206243360633 4.0662856862177916e-05 0.01914642581724002 7.909818908876382e-05']
['59866.44603657321 0.03433387435691308 6.797395632805549e-05 0.015130382513647357 4.0714629774084326e-05 0.000535127815092923 1.4399854632671064e-06 0.015130382513647357 4.0714629774084326e-05 0.019203491843265724 7.923471345647152e-05']
['59866.44606811117 0.03423362080800168 6.791155422958387e-05 0.015065556780200148 4.0682055793487514e-05 0.0005328350737778828 1.4388333943719592e-06 0.01506555678020015 4.0682055793487514e-05 0.01916806402780153 7.916444190078107e-05']
['59866.44609964913 0.03429940341313543 6.797030093268966e-05 0.015019716332132255 4.0654215940999125e-05 0.0005312137995770933 1.4378487610078535e-06 0.015019716332132255 4.0654215940999125e-05 0.019279687081003173 7.920054976234559e-05']
['59866.4461311871 0.03422965515380747 6.791543292082236e-05 0.015006414589448075 4.065962809814796e-05 0.0005307433466659992 1.4380401769107483e-06 0.015006414589448075 4.065962809814796e-05 0.019223240564359395 7.915624666381313e-05']
['59866.44616272506 0.03421943666993619 6.789221921510537e-05 0.015018551990923236 4.066333993157899e-05 0.0005311726194306798 1.4381714561637444e-06 0.015018551990923237 4.066333993157899e-05 0.01920088467901295 7.91382375615168e-05']
['59866.44619426302 0.03413557193201785 6.7840443672036e-05 0.015079693573430702 4.0684470757261215e-05 0.000533335060560574 1.4389188062435086e-06 0.015079693573430702 4.0684470757261215e-05 0.019055878358587144 7.910468986360501e-05']
['59866.44622580098 0.03420017182988255 6.789928690060934e-05 0.014997803516516894 4.065065901955705e-05 0.0005304387922610387 1.4377229606456988e-06 0.014997803516516894 4.065065901955705e-05 0.019202368313365657 7.91377864255474e-05']
['59866.44625733895 0.0342712249811822 6.79382886792204e-05 0.015021258965588818 4.067065012499793e-05 0.0005312683590748691 1.4384300013676516e-06 0.015021258965588818 4.067065012499793e-05 0.01924996601559338 7.918151836287987e-05']
['59866.44628887691 0.03433037402393265 6.800157126026734e-05 0.015045276823073857 4.065863176949779e-05 0.0005321178170173626 1.4380049389930552e-06 0.015045276823073859 4.065863176949779e-05 0.019285097200858792 7.922965373667129e-05']
['59866.44632041487 0.034275264689063625 6.79289807140824e-05 0.015105599829400298 4.069730446391277e-05 0.0005342513069371441 1.4393727057661277e-06 0.0151055998294003 4.069730446391277e-05 0.019169664859663326 7.918722757795346e-05']
['59866.446351952836 0.034206854363225084 6.787804303961396e-05 0.014922563563412154 4.059532409991272e-05 0.0005277777232711227 1.435765888204146e-06 0.014922563563412152 4.059532409991272e-05 0.019284290799812934 7.909114404068662e-05']
['59866.4463834908 0.03442139353322865 6.801746795709691e-05 0.015089746640815594 4.0684293223742256e-05 0.0005336906150866944 1.4389125272797071e-06 0.015089746640815594 4.0684293223742256e-05 0.019331646892413054 7.925646763772749e-05']
['59866.44641502876 0.03427655368887955 6.794296061905942e-05 0.01498455613356312 4.064469192625469e-05 0.0005299702619321222 1.4375119178912628e-06 0.014984556133563122 4.064469192625469e-05 0.01929199755531643 7.917219764199558e-05']
['59866.446446566726 0.03428883766600434 6.7954564673179e-05 0.014994074050864567 4.0645681745087996e-05 0.0005303068893957811 1.437546925571282e-06 0.014994074050864569 4.0645681745087996e-05 0.01929476361513977 7.918266416611813e-05']
['59866.446478104685 0.03415618439267958 6.783309312125193e-05 0.015080022285358891 4.0697592757255254e-05 0.0005333466863668461 1.4393829020573538e-06 0.01508002228535889 4.0697592757255254e-05 0.019076162107320695 7.91051362342031e-05']
['59866.44650964265 0.03428493757558761 6.794757251865495e-05 0.015065136423762875 4.066485707137379e-05 0.0005328202067101378 1.4382251140076785e-06 0.015065136423762874 4.066485707137379e-05 0.019219801151824735 7.918650902655788e-05']
['59866.446541180616 0.03426502872468274 6.794142355181861e-05 0.014984591040232398 4.0640899474466843e-05 0.0005299714965030027 1.4373777873471577e-06 0.0149845910402324 4.0640899474466843e-05 0.01928043768445034 7.916893168624502e-05']
['59866.446572718574 0.034321670968915995 6.797431617378753e-05 0.015078344235193003 4.068180621394695e-05 0.0005332873374827001 1.4388245673013868e-06 0.015078344235193003 4.068180621394695e-05 0.01924332673372299 7.921816089838974e-05']
['59866.44660425654 0.03428409488668871 6.796207008652028e-05 0.015048407043239965 4.068880852249395e-05 0.0005322285259090075 1.4390722233054558e-06 0.015048407043239965 4.068880852249395e-05 0.019235687843448743 7.921124989182579e-05']
['59866.446635794506 0.03430358897062209 6.799098215232891e-05 0.015073767242975945 4.0699999318168706e-05 0.0005331254594969583 1.4394680167385155e-06 0.015073767242975945 4.0699999318168706e-05 0.019229821727646146 7.924180461434004e-05']
['59866.446667332464 0.0341428880500392 6.784134585338207e-05 0.015056604460923021 4.069463577487505e-05 0.0005325184502523068 1.4392783201990325e-06 0.01505660446092302 4.069463577487505e-05 0.01908628358911618 7.91106919957596e-05']
['59866.44669887043 0.03427154559638091 6.792724013699602e-05 0.015056487190632684 4.067690653684177e-05 0.0005325143026642214 1.4386512766723105e-06 0.015056487190632685 4.067690653684177e-05 0.019215058405748227 7.91752529395144e-05']
['59866.44673040839 0.03434912210529942 6.797241501292559e-05 0.015066533317189533 4.067904497307382e-05 0.0005328696117087656 1.4387269083827146e-06 0.015066533317189533 4.067904497307382e-05 0.019282588788109886 7.921511157986685e-05']
['59866.446761946354 0.03430443139150111 6.795302385666461e-05 0.014992151755907363 4.064758929179805e-05 0.0005302389021192212 1.4376143912353007e-06 0.014992151755907363 4.064758929179805e-05 0.01931227963559375 7.918232104768795e-05']
['59866.44679348432 0.03420769498051838 6.790122834720574e-05 0.014964437072678272 4.0622029646552145e-05 0.0005292586957120799 1.4367104037053983e-06 0.014964437072678272 4.0622029646552145e-05 0.01924325790784011 7.91247502597306e-05']
['59866.44682502228 0.034253014150974655 6.7900001935293e-05 0.015046585353617132 4.0676345961664734e-05 0.0005321640968182845 1.4386314503811106e-06 0.01504658535361713 4.0676345961664734e-05 0.019206428797357525 7.91515974798098e-05']
['59866.446856560244 0.03435352723338113 6.801237295024107e-05 0.015022174130819544 4.065059230336436e-05 0.0005313007264238059 1.4377206010430652e-06 0.015022174130819544 4.065059230336436e-05 0.019331353102561587 7.92347999867295e-05']
['59866.44688809821 0.0342398145914388 6.792298559037183e-05 0.015004081345836119 4.063902003747153e-05 0.0005306608250539369 1.437311315860928e-06 0.015004081345836119 4.063902003747153e-05 0.019235733245602682 7.915214413467188e-05']
['59866.44691963617 0.03430822399025955 6.796152892604587e-05 0.01503596889488495 4.066383513716097e-05 0.0005317886163993162 1.4381889704784598e-06 0.015035968894884951 4.066383513716097e-05 0.019272255095374596 7.919796021380839e-05']
['59866.44695117413 0.03428647659013277 6.79221109490978e-05 0.015019776294779663 4.065268614446894e-05 0.0005312159203219235 1.4377946555234748e-06 0.015019776294779663 4.065268614446894e-05 0.019266700295353108 7.915841109157162e-05']
['59866.44698271209 0.03429877352254169 6.792998774763984e-05 0.015085606411816901 4.0697912573194e-05 0.0005335441844398779 1.4393942132323606e-06 0.015085606411816903 4.0697912573194e-05 0.019213167110724787 7.918840396933027e-05']
['59866.44701425006 0.03430868703561904 6.796695421889916e-05 0.015004810075757909 4.0664919272261214e-05 0.0005306865986026551 1.4382273139140558e-06 0.01500481007575791 4.0664919272261214e-05 0.01930387695986113 7.920317244412282e-05']
['59866.44704578802 0.034275315192945896 6.794206037966082e-05 0.015072970581042833 4.068692633000609e-05 0.0005330972833448188 1.439005654363613e-06 0.015072970581042832 4.068692633000609e-05 0.019202344611903066 7.919311550139203e-05']
['59866.44707732598 0.03431970588522384 6.796124720416066e-05 0.014980913155487965 4.064400680737335e-05 0.0005298414179391807 1.4374876867675804e-06 0.014980913155487965 4.064400680737335e-05 0.019338792729735873 7.918753949266795e-05']
['59866.44710886395 0.03420832685475558 6.788383508573125e-05 0.014985472396743511 4.063185137547411e-05 0.0005300026681130848 1.437057776307096e-06 0.01498547239674351 4.063185137547411e-05 0.019222854458012074 7.91148684644383e-05']
['59866.44714040191 0.034280614151135716 6.79642707158824e-05 0.014996093203544593 4.063459497371173e-05 0.0005303783023135329 1.4371548112451793e-06 0.014996093203544591 4.063459497371173e-05 0.019284520947591123 7.918530420866834e-05']
['59866.44717193987 0.03425781969844315 6.795073232618026e-05 0.014989316103222941 4.0645890286914124e-05 0.0005301386114210839 1.4375543012296088e-06 0.01498931610322294 4.0645890286914124e-05 0.019268503595220213 7.917948232263242e-05']
['59866.44720347784 0.034167682672120586 6.785972980518161e-05 0.015040929347202433 4.067035086103269e-05 0.0005319640565118271 1.4384194170700165e-06 0.015040929347202435 4.067035086103269e-05 0.01912675332491815 7.911397075353856e-05']
['59866.447235015796 0.034269806217121106 6.794545673595276e-05 0.015016761505736623 4.065477098607378e-05 0.0005311092939711281 1.437868391711691e-06 0.015016761505736621 4.065477098607378e-05 0.019253044711384483 7.917951436443225e-05']
['59866.44726655376 0.034283353527047464 6.793164922813074e-05 0.014954498113520677 4.06411215282531e-05 0.0005289071769389421 1.4373856408933165e-06 0.014954498113520677 4.06411215282531e-05 0.019328855413526788 7.91606576900927e-05']
['59866.44729809173 0.03425031103173886 6.793471513485231e-05 0.015052741331861566 4.0689811732706106e-05 0.0005323818200109885 1.4391077046086168e-06 0.015052741331861566 4.0689811732706106e-05 0.019197569699877293 7.918829647931946e-05']
['59866.447329629686 0.03423516559753903 6.789967115776346e-05 0.015085158720426286 4.068427444526637e-05 0.0005335283505959232 1.4389118631269826e-06 0.015085158720426286 4.068427444526637e-05 0.019150006877112744 7.915538851190214e-05']
['59866.44736116765 0.03431782575645928 6.795637605592983e-05 0.01496388328507588 4.062854078848151e-05 0.0005292391094822257 1.4369406882438942e-06 0.01496388328507588 4.062854078848151e-05 0.0193539424713834 7.917542152244129e-05']
['59866.44739270562 0.03427336839559463 6.795565283196085e-05 0.014972728536919484 4.062945718333083e-05 0.0005295519462719595 1.4369730990816926e-06 0.014972728536919484 4.062945718333083e-05 0.019300639858675146 7.917527103098607e-05']
['59866.447424243575 0.034312235371122324 6.794495171626125e-05 0.015013916901801464 4.06494868963583e-05 0.0005310086866872572 1.4376815052677e-06 0.015013916901801462 4.06494868963583e-05 0.019298318469320862 7.917636799362722e-05']
['59866.44745578154 0.03425552786207768 6.793451736344265e-05 0.015020723277389757 4.065902061773143e-05 0.0005312494129804609 1.4380186916860545e-06 0.015020723277389755 4.065902061773143e-05 0.019234804584687924 7.917230959746596e-05']
['59866.4474873195 0.034209896780194704 6.790285025823203e-05 0.015040272090276167 4.067758359942291e-05 0.0005319408108032278 1.4386752228626596e-06 0.015040272090276165 4.067758359942291e-05 0.01916962468991854 7.915467693497283e-05']
['59866.447518857465 0.034250563026885 6.790723069031612e-05 0.014967545644814919 4.062534600005855e-05 0.0005293686389613033 1.436827695717306e-06 0.01496754564481492 4.062534600005855e-05 0.019283017382070076 7.91316037854174e-05']
['59866.44755039543 0.03427801593874283 6.796130415969328e-05 0.015011217260516924 4.065305445951681e-05 0.0005309132064083662 1.4378076820035823e-06 0.015011217260516924 4.065305445951681e-05 0.019266798678225904 7.919223257349665e-05']
['59866.44758193339 0.034279254027480596 6.793356513208364e-05 0.01505392711126885 4.066385731310262e-05 0.0005324237583785631 1.4381897547919556e-06 0.01505392711126885 4.066385731310262e-05 0.019225326916211746 7.917397655249747e-05']
['59866.447613471355 0.03439693262098388 6.803537805156356e-05 0.015101097109322566 4.06898215989621e-05 0.0005340920557909819 1.4391080535560416e-06 0.015101097109322567 4.06898215989621e-05 0.019295835511661315 7.927467595881133e-05']
['59866.44764500932 0.034161064081125715 6.784382515684427e-05 0.014987836864717373 4.064130089324604e-05 0.0005300862940610455 1.4373919846322598e-06 0.014987836864717375 4.064130089324604e-05 0.01917322721640834 7.908539656730449e-05']
['59866.44767654728 0.03432760611657465 6.798111494057505e-05 0.015003661374519457 4.0641138963791916e-05 0.0005306459716070471 1.4373862575493585e-06 0.015003661374519455 4.0641138963791916e-05 0.019323944742055194 7.920311966607075e-05']
['59866.447708085245 0.03427130347085569 6.792051598752293e-05 0.015072430941953433 4.0685090653920366e-05 0.0005330781975162491 1.4389407306029554e-06 0.015072430941953431 4.0685090653920366e-05 0.01919887252890226 7.917368940202974e-05']
['59866.4477396232 0.03435339678252719 6.797673331322174e-05 0.015017910561063188 4.068711827976546e-05 0.0005311499334900413 1.4390124431976194e-06 0.01501791056106319 4.068711827976546e-05 0.019335486221464 7.922296299589213e-05']
['59866.44777116117 0.03427827678388829 6.79303321875332e-05 0.015015748072136773 4.066551556063079e-05 0.0005310734510895923 1.4382484033010617e-06 0.015015748072136773 4.066551556063079e-05 0.01926252871175152 7.917205433055601e-05']
['59866.447802699135 0.034253799358342024 6.793884984793478e-05 0.014998099717253797 4.0639425415481734e-05 0.0005304492682191332 1.4373256531751823e-06 0.014998099717253795 4.0639425415481734e-05 0.01925569964108823 7.916596627819767e-05']
['59866.44783423709 0.0342570616236837 6.792042972524593e-05 0.015003128278749615 4.0651349016083376e-05 0.0005306271172010668 1.4377473642807835e-06 0.015003128278749613 4.0651349016083376e-05 0.01925393334493409 7.91562818157188e-05']
['59866.44786577506 0.03428431943127103 6.795277875254012e-05 0.01505994051253117 4.068814795079027e-05 0.0005326364389420505 1.4390488603605875e-06 0.01505994051253117 4.068814795079027e-05 0.019224378918739862 7.920293885871323e-05']
['59866.447897313024 0.03417341954370523 6.787090810359506e-05 0.014983743650570461 4.063139641505421e-05 0.0005299415262244644 1.4370416853738207e-06 0.014983743650570461 4.063139641505421e-05 0.01918967589313477 7.91035431661814e-05']
['59866.44792885098 0.03412670563475508 6.782749831023192e-05 0.015006990557109119 4.066232372686791e-05 0.0005307637173549584 1.4381355152741973e-06 0.015006990557109119 4.066232372686791e-05 0.01911971507764596 7.90821983627992e-05']
['59866.44796038895 0.03433552046316029 6.797199296329467e-05 0.015125126721917334 4.0695579685108396e-05 0.0005349419294854353 1.439311704194471e-06 0.015125126721917334 4.0695579685108396e-05 0.019210393741242955 7.922324174955975e-05']
['59866.44799192691 0.03432530127498743 6.798395394365061e-05 0.015068817984002747 4.067638472924778e-05 0.0005329504152680192 1.4386328215038826e-06 0.015068817984002747 4.067638472924778e-05 0.019256483290984686 7.922364715445882e-05']
['59866.44802346487 0.0341782994789029 6.784529519590212e-05 0.015037706083683844 4.065880201105216e-05 0.0005318500568847446 1.4380109600563658e-06 0.015037706083683844 4.065880201105216e-05 0.019140593395219056 7.909565260615174e-05']
['59866.44805500284 0.03420184714787682 6.787876947948911e-05 0.015050596391214349 4.067855559605582e-05 0.0005323059582539567 1.4387096002112811e-06 0.01505059639121435 4.067855559605582e-05 0.01915125075666247 7.913451984709977e-05']
['59866.4480865408 0.03420377368547212 6.787555658657586e-05 0.015097930464217209 4.068754573725406e-05 0.0005339800586306407 1.4390275614136797e-06 0.01509793046421721 4.068754573725406e-05 0.019105843221254915 7.913638581625143e-05']
['59866.44811807876 0.034340768531526004 6.798639721099933e-05 0.014997268435619063 4.0649703791281726e-05 0.0005304198676455178 1.43768917635641e-06 0.014997268435619061 4.0649703791281726e-05 0.01934350009590694 7.921204847780874e-05']
['59866.44814961672 0.03423017834566954 6.791585182496353e-05 0.015016805459053243 4.066775665819123e-05 0.0005311108485017072 1.4383276659132162e-06 0.015016805459053243 4.066775665819123e-05 0.0192133728866163 7.916078170862298e-05']
['59866.44818115469 0.03432398062626135 6.79866504783299e-05 0.015050031970783398 4.06803803389423e-05 0.0005322859959647194 1.4387741372891154e-06 0.015050031970783398 4.06803803389423e-05 0.019273948655477956 7.922801264567728e-05']
['59866.44821269265 0.0342313494758959 6.788896027251116e-05 0.014969279973553412 4.063205126686921e-05 0.000529429978292787 1.4370648460190095e-06 0.01496927997355341 4.063205126686921e-05 0.01926206950234249 7.911936878562724e-05']
['59866.44824423061 0.034212096004640966 6.788091194629887e-05 0.015060690309279007 4.068208165866094e-05 0.0005326629575773244 1.438834309165338e-06 0.015060690309279007 4.068208165866094e-05 0.01915140569536196 7.91381701503335e-05']
['59866.44827576858 0.03430698933453801 6.796716160143451e-05 0.015069248194034166 4.0674733746254894e-05 0.0005329656308353676 1.438574429925154e-06 0.015069248194034166 4.0674733746254894e-05 0.019237741140503847 7.920838984277008e-05']
['59866.44830730654 0.03423007644924552 6.793921533930848e-05 0.015001824986885287 4.064519530373227e-05 0.0005305810226805115 1.4375297212276625e-06 0.015001824986885287 4.064519530373227e-05 0.019228251462360235 7.916924202112502e-05']
['59866.4483388445 0.034306949874499226 6.7957392345029e-05 0.015079528766609939 4.068552721397397e-05 0.0005333292317116452 1.438956170756397e-06 0.015079528766609939 4.068552721397397e-05 0.01922742110788929 7.920555093562081e-05']
['59866.448370382466 0.03429460203469531 6.795780915392712e-05 0.015044044197280221 4.068705378239268e-05 0.0005320742217977982 1.4390101620696872e-06 0.015044044197280221 4.068705378239268e-05 0.01925055783741509 7.920669271275562e-05']
['59866.448401920425 0.0342838798751498 6.795878761035289e-05 0.015071481986351398 4.06841873397707e-05 0.0005330446350773961 1.43890878240027e-06 0.0150714819863514 4.06841873397707e-05 0.019212397888798402 7.92060598247799e-05']
['59866.44843345839 0.03433152651553738 6.800694638318682e-05 0.01501041935888552 4.0644225933782173e-05 0.0005308849864108687 1.4374954367789418e-06 0.01501041935888552 4.0644225933782173e-05 0.019321107156651855 7.922687585738806e-05']
['59866.448464996356 0.034308848680803805 6.801330841432195e-05 0.01503316931118168 4.065954822320138e-05 0.0005316896013804329 1.4380373519123977e-06 0.015033169311181682 4.065954822320138e-05 0.01927567936962212 7.924019802585375e-05']
['59866.448496534314 0.03423661980036181 6.791326103598303e-05 0.0150171780423767 4.066694097400617e-05 0.0005311240259411831 1.4382988169865376e-06 0.0150171780423767 4.066694097400617e-05 0.01921944175798511 7.915813990187537e-05']
['59866.44852807228 0.034231920852946345 6.790708045541251e-05 0.015030643243253934 4.0659676562117614e-05 0.000531600260003258 1.4380418909730443e-06 0.015030643243253932 4.0659676562117614e-05 0.01920127760969241 7.914910532731172e-05']
['59866.448559610246 0.03425021162090132 6.789899298760061e-05 0.015097432756548793 4.06927501444663e-05 0.00053396245582272 1.439211629665611e-06 0.015097432756548793 4.06927501444663e-05 0.019152778864352526 7.915916348124328e-05']
['59866.448591148204 0.03431270784948923 6.796608287026308e-05 0.015053789491545537 4.066139403858541e-05 0.0005324188910765115 1.4381026342773763e-06 0.015053789491545535 4.066139403858541e-05 0.019258918357943692 7.920061480751634e-05']
['59866.44862268617 0.03420636140924899 6.789105623687718e-05 0.015003230745341921 4.06510831360251e-05 0.0005306307412154374 1.437737960697329e-06 0.015003230745341923 4.06510831360251e-05 0.01920313066390707 7.913094260206209e-05']
['59866.44865422413 0.034187365532751444 6.785494461155841e-05 0.015039204285785864 4.067207784915008e-05 0.0005319030449448084 1.4384804967801373e-06 0.015039204285785866 4.067207784915008e-05 0.019148161246965577 7.911075416657955e-05']
['59866.448685762094 0.03415138167215368 6.783462906065884e-05 0.01504759664523592 4.066302406180411e-05 0.0005321998639427374 1.4381602845557343e-06 0.01504759664523592 4.066302406180411e-05 0.01910378502691776 7.90886744461433e-05']
['59866.44871730006 0.03423160008371385 6.790752317590192e-05 0.01496556546757699 4.0614030445709824e-05 0.0005292986045178333 1.436427489848767e-06 0.014965565467576991 4.0614030445709824e-05 0.019266034616136858 7.912604610955042e-05']
['59866.44874883802 0.03435087634298713 6.796049560428356e-05 0.015043059698892651 4.0661345818122486e-05 0.0005320394022900542 1.438100928827369e-06 0.01504305969889265 4.0661345818122486e-05 0.019307816644094478 7.919579538410351e-05']
['59866.448780375984 0.034348849645418796 6.797188891853488e-05 0.015032374740783627 4.0657177245770606e-05 0.000531661499201214 1.437953495739494e-06 0.015032374740783627 4.0657177245770606e-05 0.01931647490463517 7.920343265760425e-05']
['59866.44881191395 0.03430476278706594 6.796634226327064e-05 0.015043137269636122 4.066720866296564e-05 0.0005320421457938905 1.4383082845467844e-06 0.015043137269636122 4.066720866296564e-05 0.01926162551742982 7.92038227681293e-05']
['59866.44884345191 0.03426983722078524 6.793736803887756e-05 0.015005178096581896 4.064924406645722e-05 0.0005306996146767213 1.4376729169167919e-06 0.015005178096581896 4.064924406645722e-05 0.019264659124203345 7.916973550053271e-05']
['59866.448874989874 0.0342439810765748 6.79301233047761e-05 0.014990161611405707 4.064202218599513e-05 0.0005301685151559088 1.4374174951448005e-06 0.01499016161140571 4.064202218599513e-05 0.019253819465169093 7.915981063373638e-05']
['59866.44890652783 0.03422095240519654 6.792334993423717e-05 0.015067574572615886 4.067663786329197e-05 0.0005329064385861268 1.4386417742893043e-06 0.015067574572615887 4.067663786329197e-05 0.019153377832580656 7.917177738405419e-05']
['59866.4489380658 0.03442484302068342 6.809691696811139e-05 0.01498862040686407 4.064709535497859e-05 0.0005301140061956605 1.4375969217938803e-06 0.014988620406864068 4.064709535497859e-05 0.01943622261381935 7.930558909281602e-05']
['59866.44896960376 0.03437612949944549 6.800978353148835e-05 0.015070362934065199 4.0671415852226194e-05 0.0005330050566989679 1.4384570834284156e-06 0.015070362934065199 4.0671415852226194e-05 0.019305766565380293 7.924326295291368e-05']
['59866.44900114172 0.03431323957122448 6.796386702616014e-05 0.015042920236186978 4.066863612033843e-05 0.0005320344698058354 1.4383587705238804e-06 0.01504292023618698 4.066863612033843e-05 0.0192703193350375 7.920243168639504e-05']
['59866.44903267969 0.03423990273096183 6.787845356417153e-05 0.015044083742538432 4.0659496548483325e-05 0.0005320756204252027 1.4380355242931064e-06 0.015044083742538432 4.0659496548483325e-05 0.019195818988423395 7.912445334938826e-05']
['59866.44906421765 0.03433520762231038 6.798086157743914e-05 0.015052599767741398 4.065593686756612e-05 0.0005323768132044354 1.4379096263344836e-06 0.015052599767741398 4.065593686756612e-05 0.019282607854568985 7.921049642181561e-05']
['59866.44909575561 0.034189522777359795 6.788296110480835e-05 0.015038263706892978 4.066023145544136e-05 0.0005318697787714371 1.4380615163097917e-06 0.015038263706892978 4.066023145544136e-05 0.019151259070466817 7.91286978937919e-05']
['59866.44912729358 0.034287131678122154 6.797126836910754e-05 0.015021759844170118 4.065923178387395e-05 0.0005312860740308919 1.438026160160587e-06 0.015021759844170118 4.065923178387395e-05 0.019265371833952036 7.920395478105891e-05']
['59866.449158831536 0.034141508439030736 6.781394556534848e-05 0.015088949176755444 4.069497193485499e-05 0.0005336624105651142 1.4392902094262497e-06 0.015088949176755444 4.069497193485499e-05 0.019052559262275292 7.908736911744303e-05']
['59866.4491903695 0.03416530580717346 6.785037797926426e-05 0.014951047055928864 4.060909997059844e-05 0.0005287851207445795 1.4362531099630408e-06 0.014951047055928864 4.060909997059844e-05 0.019214258751244596 7.907447623823434e-05']
['59866.44922190747 0.03421560593398233 6.789811215395545e-05 0.01503554906410068 4.0667072888331176e-05 0.0005317737679227431 1.4383034825014018e-06 0.01503554906410068 4.0667072888331176e-05 0.019180056869881654 7.914521117146604e-05']
['59866.449253445426 0.03421106316877782 6.7888018639574e-05 0.014998688991500923 4.0656108589557226e-05 0.0005304701095323037 1.4379156997575328e-06 0.014998688991500924 4.0656108589557226e-05 0.019212374177276892 7.913091835972217e-05']
['59866.44928498339 0.03421370900144525 6.794023530653362e-05 0.014990847781998492 4.064965023004606e-05 0.0005301927834762746 1.4376872820152068e-06 0.014990847781998494 4.064965023004606e-05 0.019222861219446753 7.917240451907623e-05']
['59866.44931652136 0.03433167820653539 6.797318273857325e-05 0.01506955997713323 4.067524183981257e-05 0.0005329766579067873 1.4385924000587668e-06 0.01506955997713323 4.067524183981257e-05 0.01926211822940216 7.921381742056566e-05']
['59866.449348059316 0.03429551720875071 6.79365622101091e-05 0.01498913834660903 4.063619601206962e-05 0.0005301323245669125 1.4372114363937877e-06 0.014989138346609029 4.063619601206962e-05 0.01930637886214168 7.9162345286502e-05']
['59866.44937959728 0.034267511840646046 6.792648552938148e-05 0.014967134020027549 4.0630838456026724e-05 0.0005293540807125011 1.4370219516099837e-06 0.014967134020027547 4.0630838456026724e-05 0.019300377820618497 7.915094737280794e-05']
['59866.44941113524 0.03426416482016681 6.792545252676916e-05 0.015093596749556399 4.069141400201203e-05 0.00053382678482837 1.4391643732931062e-06 0.015093596749556397 4.069141400201203e-05 0.019170568070610412 7.918117373750854e-05']
['59866.449442673205 0.03427458399651907 6.794296650518798e-05 0.015001779047573778 4.065070867642776e-05 0.0005305793979097316 1.4377247168982392e-06 0.015001779047573776 4.065070867642776e-05 0.019272804948945295 7.917529168510145e-05']
['59866.44947421117 0.0342895526036647 6.797020227267464e-05 0.015002232319081543 4.064027759986027e-05 0.0005305954291099592 1.4373557930321312e-06 0.015002232319081545 4.064027759986027e-05 0.01928732028458316 7.919331133613501e-05']
['59866.44950574913 0.034262729721048935 6.792327012726227e-05 0.015045174436995401 4.065721907373605e-05 0.000532114195850587 1.4379549751011517e-06 0.015045174436995401 4.065721907373605e-05 0.019217555284053535 7.916173373285103e-05']
['59866.449537287095 0.03428376652725536 6.793567336053608e-05 0.015023686489710869 4.063441694097006e-05 0.000531354215177869 1.4371485146249862e-06 0.015023686489710869 4.063441694097006e-05 0.019260080037544487 7.916066924352046e-05']
['59866.44956882506 0.03435673726365997 6.80037680407573e-05 0.01504225096005825 4.0660121672867576e-05 0.0005320107990049064 1.4380576335455066e-06 0.015042250960058248 4.0660121672867576e-05 0.01931448630360172 7.923230377941512e-05']
['59866.44960036302 0.0343839143225035 6.801759026805414e-05 0.015032969053338917 4.06761677703488e-05 0.0005316825187080842 1.4386251481525003e-06 0.015032969053338915 4.06761677703488e-05 0.01935094526916458 7.925240192167337e-05']
['59866.449631900985 0.03435942182453201 6.799763295695046e-05 0.015062382182376929 4.0668565639125224e-05 0.0005327227953476841 1.4383562777608856e-06 0.015062382182376929 4.0668565639125224e-05 0.019297039642155085 7.923137206240968e-05']
['59866.44966343894 0.034184183554703866 6.78439835712944e-05 0.015032579528757308 4.066005655642265e-05 0.0005316687420941689 1.4380553305223762e-06 0.015032579528757306 4.066005655642265e-05 0.01915160402594656 7.9095172456943e-05']
['59866.44969497691 0.03437417670403834 6.798915484490219e-05 0.015111575512663207 4.069767802759815e-05 0.0005344626534992871 1.439385917878814e-06 0.015111575512663207 4.069767802759815e-05 0.019262601191375135 7.923904450056256e-05']
['59866.449726514875 0.034281094949607904 6.79483109470173e-05 0.015041587726673026 4.0659527319770265e-05 0.0005319873419223104 1.4380366126047558e-06 0.015041587726673026 4.0659527319770265e-05 0.01923950722293488 7.91844058032874e-05']
['59866.44975805283 0.03428531068084385 6.796128022770884e-05 0.014990897603850285 4.063055831774597e-05 0.0005301945455638272 1.4370120437450653e-06 0.014990897603850285 4.063055831774597e-05 0.019294413076993568 7.918066607070773e-05']
['59866.4497895908 0.03426379736585842 6.791794708456284e-05 0.015018892090933161 4.064699079322732e-05 0.0005311846480079521 1.4375932236784195e-06 0.015018892090933161 4.064699079322732e-05 0.019244905274925256 7.915191341165534e-05']
['59866.449821128765 0.034156640954474904 6.78688118849969e-05 0.015038321274153978 4.067327976401582e-05 0.0005318718147968034 1.4385230058228171e-06 0.015038321274153978 4.067327976401582e-05 0.019118319680320926 7.912326657464918e-05']
['59866.44985266672 0.03433310138724235 6.799797265549627e-05 0.015058503850963351 4.067133696520865e-05 0.0005325856274331465 1.438454293370907e-06 0.015058503850963353 4.067133696520865e-05 0.019274597536278994 7.923308611808053e-05']
['59866.44988420469 0.034233694194570674 6.792227293414556e-05 0.015042088098355189 4.06675021433006e-05 0.0005320050389504437 1.4383186642903421e-06 0.01504208809835519 4.06675021433006e-05 0.019191606096215483 7.916616001244422e-05']
['59866.44991574265 0.034205968403976446 6.790250169457487e-05 0.014956389685546826 4.0623340235193006e-05 0.0005289740776140923 1.4367567562966322e-06 0.014956389685546825 4.0623340235193006e-05 0.01924957871842962 7.912651583537591e-05']
['59866.44994728061 0.03438055256885655 6.800928216334311e-05 0.01506599902311868 4.067060391286383e-05 0.0005328507149215565 1.4384283669477465e-06 0.015065999023118679 4.067060391286383e-05 0.01931455354573787 7.924241593370482e-05']
['59866.44997881858 0.03422280555184115 6.791335272632948e-05 0.015022735476558625 4.06702878558978e-05 0.0005313205799680633 1.4384171887192036e-06 0.015022735476558623 4.06702878558978e-05 0.01920007007528253 7.91599380546273e-05']
['59866.45001035654 0.034244597471345055 6.786638575938548e-05 0.015046661189857785 4.066785656695473e-05 0.0005321667789766325 1.4383311994628983e-06 0.015046661189857785 4.066785656695473e-05 0.01919793628148727 7.911839782119027e-05']
['59866.4500418945 0.034375476104489495 6.800032978539012e-05 0.015047884638379364 4.069346384574725e-05 0.0005322100496165942 1.4392368716848898e-06 0.015047884638379366 4.069346384574725e-05 0.019327591466110128 7.924646901084586e-05']
['59866.45007343247 0.034285471321475844 6.794731715656256e-05 0.015040871149781037 4.068893650238895e-05 0.0005319619981990959 1.4390767496683238e-06 0.015040871149781039 4.068893650238895e-05 0.019244600171694805 7.919865821129762e-05']
['59866.45010497043 0.0341284843906499 6.783121678403833e-05 0.015032614071365226 4.0660344859812324e-05 0.0005316699637890128 1.4380655271689488e-06 0.015032614071365226 4.0660344859812324e-05 0.019095870319284676 7.908437022902863e-05']
['59866.45013650839 0.03428878289973845 6.797335128569817e-05 0.015023093200317148 4.064965151719819e-05 0.0005313332318579368 1.4376873275389013e-06 0.015023093200317148 4.064965151719819e-05 0.0192656896994213 7.92008248282717e-05']
['59866.45016804635 0.0341838809475385 6.786032821971763e-05 0.015082886022148608 4.0686372933611174e-05 0.0005334479703370234 1.4389860819698927e-06 0.01508288602214861 4.0686372933611174e-05 0.01910099492538989 7.912272169598751e-05']
['59866.45019958432 0.03432703571642048 6.799680572533719e-05 0.015022358117519913 4.066446961714014e-05 0.0005313072336222119 1.4382114106173436e-06 0.015022358117519912 4.066446961714014e-05 0.019304677598900567 7.922855973758807e-05']
['59866.45023112228 0.03426940372615383 6.792541077879654e-05 0.015053749847828635 4.0679894457551525e-05 0.0005324174889668432 1.4387569527502048e-06 0.015053749847828635 4.0679894457551525e-05 0.019215653878325193 7.917521861381742e-05']
['59866.45026266024 0.03423300357701501 6.792631007139315e-05 0.015049479124473911 4.0680098874806864e-05 0.0005322664430262916 1.4387641825316804e-06 0.015049479124473911 4.0680098874806864e-05 0.0191835244525411 7.917609515743441e-05']
['59866.45029419821 0.034234063362980356 6.792527782230139e-05 0.014998127552997592 4.064509053218676e-05 0.000530450252707182 1.4375260156922485e-06 0.01499812755299759 4.064509053218676e-05 0.019235935809982764 7.915722804397894e-05']
['59866.45032573617 0.034257451490952766 6.794220233277499e-05 0.015106545224735717 4.069209738271417e-05 0.0005342847434573236 1.439188542941275e-06 0.015106545224735715 4.069209738271417e-05 0.01915090626621705 7.919589413114817e-05']
['59866.45035727413 0.03423487490055315 6.793280082032569e-05 0.014994528032194875 4.065623612487151e-05 0.0005303229457008455 1.4379202103965745e-06 0.014994528032194875 4.065623612487151e-05 0.019240346868358276 7.916940673729562e-05']
['59866.450388812096 0.03430875516854638 6.796362227287412e-05 0.015075271237467523 4.0681835170700005e-05 0.0005331786524208956 1.438825591437028e-06 0.01507527123746752 4.0681835170700005e-05 0.019233483931078862 7.920899990093244e-05']
['59866.450420350055 0.034196784901238314 6.790144607726314e-05 0.015029999261375326 4.067581971216562e-05 0.0005315774838034264 1.4386128381124253e-06 0.015029999261375326 4.067581971216562e-05 0.019166785639862988 7.915256590054472e-05']
['59866.45045188802 0.034162830872882785 6.786910065926425e-05 0.01497835327080086 4.0639655552033354e-05 0.0005297508805388034 1.4373337925906883e-06 0.014978353270800859 4.0639655552033354e-05 0.019184477602081924 7.910623507464666e-05']
['59866.450483425986 0.03424511778543206 6.788618884507355e-05 0.014961589157878733 4.0627550008479254e-05 0.0005291579713303351 1.4369056465694773e-06 0.014961589157878732 4.0627550008479254e-05 0.019283528627553326 7.911467914110802e-05']
['59866.450514963944 0.034301113154250246 6.796030981460883e-05 0.015086044775274022 4.068463806258117e-05 0.0005335596883756715 1.43892472345877e-06 0.015086044775274022 4.068463806258117e-05 0.019215068378976224 7.920759739053347e-05']
['59866.45054650191 0.03413829949598959 6.785976873364287e-05 0.015046443155047058 4.0675071647054364e-05 0.0005321590675726562 1.4385863807212674e-06 0.015046443155047058 4.0675071647054364e-05 0.01909185634094253 7.911643107519765e-05']
['59866.450578039876 0.03431729544374614 6.796395077746476e-05 0.01507058960886204 4.06727792862256e-05 0.0005330130736799438 1.438505305041879e-06 0.01507058960886204 4.06727792862256e-05 0.019246705834884102 7.920463105240549e-05']
['59866.450609577834 0.034246960404779196 6.793375529227595e-05 0.015028559772039714 4.06522044935197e-05 0.0005315265722826951 1.4377776206058267e-06 0.015028559772039712 4.06522044935197e-05 0.019218400632739482 7.916815545592668e-05']
['59866.4506411158 0.03423543037585877 6.790895556963373e-05 0.015043440142172593 4.066271626050566e-05 0.0005320528577186252 1.4381493983117033e-06 0.015043440142172595 4.066271626050566e-05 0.019191990233686177 7.915227564789834e-05']
['59866.45067265376 0.03419786484741114 6.787025927541895e-05 0.01499969409818217 4.064295410352829e-05 0.0005305056579093381 1.4374504549852353e-06 0.01499969409818217 4.064295410352829e-05 0.01919817074922897 7.910892372149997e-05']
['59866.450704191724 0.034291558317233815 6.795938079669554e-05 0.014953576396466236 4.061710155499061e-05 0.0005288745778666429 1.4365361081205032e-06 0.014953576396466236 4.061710155499061e-05 0.019337981920767577 7.917213131524685e-05']
['59866.45073572969 0.03426647641858405 6.795176305399655e-05 0.014941141063716357 4.06103835315029e-05 0.0005284347679386127 1.4362985066436417e-06 0.014941141063716355 4.06103835315029e-05 0.019325335354867697 7.916214595829406e-05']
['59866.45076726765 0.03428303474494219 6.794446374735333e-05 0.014945220117693548 4.059795322825579e-05 0.0005285790349616369 1.4358588745978841e-06 0.01494522011769355 4.059795322825579e-05 0.019337814627248637 7.914950385339794e-05']
['59866.450798805614 0.03419364925432345 6.788482598809592e-05 0.015029508777853617 4.0674879758526246e-05 0.0005315601364974297 1.4385795940528735e-06 0.015029508777853615 4.0674879758526246e-05 0.019164140476469835 7.913782561332242e-05']
['59866.45083034358 0.03418758276283068 6.789090825596436e-05 0.014993861399646797 4.063038538957483e-05 0.000530299368397456 1.437005927662124e-06 0.014993861399646796 4.063038538957483e-05 0.019193721363183886 7.912018478697548e-05']
['59866.45086188154 0.03427946164058667 6.794217227125867e-05 0.015008818264333241 4.0660320163441305e-05 0.0005308283592747903 1.438064653713499e-06 0.01500881826433324 4.0660320163441305e-05 0.01927064337625343 7.917954539356071e-05']
['59866.450893419504 0.034234217363966125 6.790149423994544e-05 0.015082219806849284 4.068353903893368e-05 0.00053342440779079 1.4388858534485316e-06 0.015082219806849286 4.068353903893368e-05 0.01915199755711684 7.915657438741133e-05']
['59866.45092495746 0.03419961660543816 6.786799609721124e-05 0.014969011862102333 4.063670465102339e-05 0.0005294204957899562 1.4372294258168414e-06 0.014969011862102333 4.063670465102339e-05 0.01923060474333583 7.910377145968191e-05']
['59866.45095649543 0.03422094728910106 6.789371429289429e-05 0.015070267103087424 4.068295528952768e-05 0.0005330016673714536 1.4388652075366445e-06 0.015070267103087424 4.068295528952768e-05 0.01915068018601363 7.914960070382457e-05']
['59866.45098803339 0.03434436414658574 6.798640524274733e-05 0.015037667130068754 4.065582115237908e-05 0.000531848679182435 1.437905533746926e-06 0.015037667130068754 4.065582115237908e-05 0.019306697016516987 7.92151948265312e-05']
['59866.45101957135 0.03435261708802536 6.799889238456247e-05 0.01502401231455523 4.065728564227263e-05 0.0005313657388744383 1.4379573294815187e-06 0.015024012314555229 4.065728564227263e-05 0.01932860477347013 7.922666370184129e-05']
['59866.45105110932 0.034217592157004456 6.790928572821828e-05 0.01499078860955759 4.0646764008317e-05 0.0005301906906792825 1.4375852028029761e-06 0.01499078860955759 4.0646764008317e-05 0.019226803547446866 7.914436500765298e-05']
['59866.45108264728 0.0342122760433693 6.789547854289188e-05 0.015109142819771628 4.069519039836762e-05 0.0005343766145884606 1.4392979359924543e-06 0.015109142819771628 4.069519039836762e-05 0.019103133223597673 7.915740349536286e-05']
['59866.45111418524 0.034183106219526076 6.787808286246205e-05 0.014987018650385884 4.063890300031038e-05 0.0005300573556487421 1.4373071765181008e-06 0.014987018650385885 4.063890300031038e-05 0.01919608756914019 7.911355490781527e-05']
['59866.45114572321 0.03431494259470406 6.795798223603268e-05 0.015097062704481879 4.070332326831143e-05 0.0005339493679081309 1.4395855774264722e-06 0.015097062704481879 4.070332326831143e-05 0.01921787989022218 7.921519977048342e-05']
['59866.451177261166 0.03419651189710459 6.786400710455745e-05 0.01504474569388104 4.067277472150034e-05 0.0005320990321648166 1.438505143597748e-06 0.015044745693881041 4.067277472150034e-05 0.01915176620322355 7.911888563316183e-05']
['59866.45120879913 0.0343625175335245 6.802307543201705e-05 0.015080150808815187 4.0693709931281e-05 0.0005333512319542624 1.4392455751802496e-06 0.015080150808815187 4.0693709931281e-05 0.01928236672470931 7.926611394032837e-05']
['59866.4512403371 0.03440821293051724 6.806847817009975e-05 0.01504238614714293 4.0639993004525004e-05 0.0005320155802699661 1.4373457275311559e-06 0.015042386147142928 4.0639993004525004e-05 0.019365826783374313 7.927752992999459e-05']
['59866.451271875056 0.03424034909460497 6.791319412166475e-05 0.01504170949346225 4.0668090885148316e-05 0.0005319916485415125 1.438339486773735e-06 0.015041709493462249 4.0668090885148316e-05 0.019198639601142722 7.915867325852299e-05']
['59866.45130341302 0.03425795024174064 6.7909286431772e-05 0.014986448784620932 4.064034302232633e-05 0.0005300372007702108 1.437358106878545e-06 0.014986448784620932 4.064034302232633e-05 0.019271501457119707 7.914106812928923e-05']
['59866.45133495099 0.0342137977733312 6.786621848286092e-05 0.01499032295258837 4.065449194651452e-05 0.0005301742214329632 1.4378585227060967e-06 0.01499032295258837 4.065449194651452e-05 0.019223474820742832 7.911138556865647e-05']
['59866.451366488945 0.03424469153786114 6.790578317214109e-05 0.014969297891494206 4.0621413657702394e-05 0.0005294306120103088 1.4366886175564365e-06 0.014969297891494206 4.0621413657702394e-05 0.019275393646366934 7.912834280946374e-05']
['59866.45139802691 0.03423423530179924 6.792584648207535e-05 0.015063579078859121 4.067511780535144e-05 0.0005327651269013531 1.4385880132370772e-06 0.015063579078859123 4.067511780535144e-05 0.01917065622294012 7.917313830325085e-05']
['59866.45142956487 0.03440266892219198 6.805055231292662e-05 0.015033102298124277 4.0657601734470195e-05 0.0005316872312783579 1.437968508956122e-06 0.015033102298124278 4.0657601734470195e-05 0.0193695666240677 7.927116908998603e-05']
['59866.451461102835 0.034173248325384285 6.787688615565099e-05 0.015031257372497824 4.065930140125108e-05 0.0005316219803821163 1.4380286223716303e-06 0.015031257372497824 4.065930140125108e-05 0.019141990952886462 7.912300844018118e-05']
['59866.4514926408 0.03420532626187038 6.790760445500468e-05 0.014995442142329578 4.063894572733379e-05 0.0005303552757333941 1.4373086876774297e-06 0.014995442142329578 4.063894572733379e-05 0.019209884119540804 7.91389073253261e-05']
['59866.45152417876 0.03441377664809161 6.804491194873673e-05 0.015096080082959564 4.071380326283322e-05 0.0005339146147809165 1.4399562314112986e-06 0.015096080082959566 4.071380326283322e-05 0.01931769656513204 7.929516894638678e-05']
['59866.451555716725 0.03417693725250123 6.785440530043828e-05 0.015029066991404424 4.065292521823573e-05 0.0005315445114980565 1.4378031110283076e-06 0.015029066991404426 4.065292521823573e-05 0.019147870261096808 7.910044656938172e-05']
['59866.45158725469 0.03423990161798831 6.789288981251912e-05 0.014967756520427143 4.061593269603998e-05 0.0005293760971604283 1.4364947681916653e-06 0.014967756520427143 4.061593269603998e-05 0.019272145097561165 7.911446439093241e-05']
['59866.45161879265 0.034398844436066445 6.804441346464654e-05 0.015033569354281918 4.066659217797189e-05 0.0005317037500108446 1.4382864808503183e-06 0.015033569354281918 4.066659217797189e-05 0.019365275081784525 7.927051105623866e-05']
['59866.451650330615 0.034232848480319836 6.789531828824e-05 0.015050145017698762 4.068665738972508e-05 0.0005322899941814708 1.4389961425469195e-06 0.015050145017698762 4.068665738972508e-05 0.019182703462621076 7.915287951180479e-05']
['59866.45168186857 0.034268070277259685 6.793745779269092e-05 0.01500177337744286 4.064203161577968e-05 0.000530579197369873 1.4374178286552057e-06 0.015001773377442858 4.064203161577968e-05 0.019266296899816827 7.916610957468919e-05']
['59866.45171340654 0.0343247197323483 6.793773849127476e-05 0.015103773745201702 4.0696147146345155e-05 0.0005341867224200978 1.4393317740302139e-06 0.015103773745201703 4.0696147146345155e-05 0.019220945987146593 7.919414564136552e-05']
['59866.451744944505 0.034275882753012736 6.793143260209439e-05 0.014979334814498691 4.065164719160615e-05 0.0005297855955457747 1.4377579100826408e-06 0.014979334814498691 4.065164719160615e-05 0.019296547938514045 7.916587620157888e-05']
['59866.45177648246 0.03441226521526085 6.80366598264887e-05 0.015051703374579978 4.067877658037054e-05 0.0005323451097816367 1.4387174159326219e-06 0.015051703374579976 4.067877658037054e-05 0.01936056184068087 7.927010750857503e-05']
['59866.45180802043 0.034351897040305925 6.798166396528192e-05 0.014988583736009212 4.064205295775425e-05 0.0005301127092294786 1.43741858347315e-06 0.01498858373600921 4.064205295775425e-05 0.019363313304296713 7.92040598966329e-05']
['59866.451839558395 0.03430664848356539 6.794550934852301e-05 0.015025550008188192 4.0654176258464815e-05 0.0005314201236616932 1.4378473575253002e-06 0.015025550008188192 4.0654176258464815e-05 0.0192810984753772 7.917925415084782e-05']
['59866.45187109635 0.034337503431127354 6.803645167737124e-05 0.015031713522408193 4.065267243316516e-05 0.0005316381133850111 1.4377941705853032e-06 0.015031713522408195 4.065267243316516e-05 0.01930578990871916 7.925653621503718e-05']
['59866.45190263432 0.034272377835789056 6.793332504916743e-05 0.014964256363403502 4.062185361818423e-05 0.0005292523044288927 1.4367041779754253e-06 0.014964256363403502 4.062185361818423e-05 0.019308121472385552 7.915220555115963e-05']
['59866.45193417228 0.034399516342756675 6.807426540807833e-05 0.01503050387592858 4.065091668342184e-05 0.0005315953308924279 1.4377320736407516e-06 0.01503050387592858 4.065091668342184e-05 0.019369012466828095 7.928809896858415e-05']
['59866.45196571024 0.03439483493095766 6.8019560872316e-05 0.015086996278079183 4.0686512669025846e-05 0.0005335933409034065 1.4389910240992195e-06 0.015086996278079183 4.0686512669025846e-05 0.019307838652878474 7.92594030663208e-05']
['59866.45199724821 0.03426544725294539 6.792192309677238e-05 0.015107552087794462 4.070613233470542e-05 0.000534320353953505 1.439684927826934e-06 0.015107552087794462 4.070613233470542e-05 0.01915789516515093 7.918571112779383e-05']
['59866.45202878617 0.03426392250355142 6.794697298996035e-05 0.015009332562700968 4.065198191093581e-05 0.0005308465488586676 1.4377697483572772e-06 0.015009332562700968 4.065198191093581e-05 0.01925458994085045 7.9179383502181e-05']
['59866.45206032413 0.0342330523334892 6.79160677288085e-05 0.014997619115097933 4.065064335271484e-05 0.000530432270394963 1.437722406544503e-06 0.014997619115097933 4.065064335271484e-05 0.019235433218391267 7.915217660136532e-05']
['59866.4520918621 0.034356359618925844 6.799512453722614e-05 0.0150747779878775 4.0705245323724826e-05 0.0005331612072852444 1.4396535562309031e-06 0.015074777987877498 4.0705245323724826e-05 0.019281581631048345 7.92480533369591e-05']
['59866.45212340006 0.03434783705151605 6.798815127429394e-05 0.015125804386083973 4.071541425790425e-05 0.0005349658969525191 1.440013208706599e-06 0.015125804386083973 4.071541425790425e-05 0.019222032665432074 7.924729441368349e-05']
['59866.45215493802 0.0342744676626569 6.795335784393157e-05 0.01500005914260383 4.0635797731103756e-05 0.000530518568714706 1.4371973500861307e-06 0.01500005914260383 4.0635797731103756e-05 0.01927440852005307 7.917655523896322e-05']
['59866.45218647598 0.03422057411288478 6.788860577208824e-05 0.014990369260122297 4.06476861061135e-05 0.000530175859226947 1.4376178153412708e-06 0.014990369260122297 4.06476861061135e-05 0.019230204852762486 7.9127095103126e-05']
['59866.45221801395 0.034222002948798944 6.790667342909677e-05 0.014970256706912002 4.0637681681944214e-05 0.0005294645231688098 1.4372639812169754e-06 0.014970256706912 4.0637681681944214e-05 0.01925174624188694 7.91374593267248e-05']
['59866.45224955191 0.03427165403308073 6.79459233838491e-05 0.014944130623459156 4.0616610788532516e-05 0.0005285405019854428 1.436518750807679e-06 0.014944130623459156 4.0616610788532516e-05 0.019327523409621575 7.916032829916149e-05']
['59866.45228108987 0.03430283870948195 6.795839457741052e-05 0.015011729771657172 4.066847036143879e-05 0.0005309313327820018 1.4383529080020495e-06 0.015011729771657172 4.066847036143879e-05 0.019291108937824777 7.919765069166031e-05']
['59866.45231262784 0.03422419733830943 6.790365850012372e-05 0.015082655375599241 4.070386477956226e-05 0.000533439812884037 1.4396047294692078e-06 0.015082655375599241 4.070386477956226e-05 0.019141541962710187 7.916887927521972e-05']
['59866.4523441658 0.034348818785121 6.797081993254603e-05 0.015094124722463444 4.069598197788392e-05 0.0005338454580501422 1.4393259323908697e-06 0.015094124722463444 4.069598197788392e-05 0.019254694062657556 7.922244196846528e-05']
['59866.45237570376 0.03439323977012988 6.803020576581774e-05 0.015104110682229333 4.0701637913285125e-05 0.0005341986391297551 1.4395259701857386e-06 0.015104110682229334 4.0701637913285125e-05 0.01928912908790055 7.927630305055647e-05']
['59866.452407241726 0.03430227147464036 6.795472711731533e-05 0.015041427730762384 4.0681770408514814e-05 0.0005319816832245209 1.4388233009432727e-06 0.015041427730762384 4.0681770408514814e-05 0.019260843743877973 7.920133446577717e-05']
['59866.452438779685 0.03430742773608478 6.797172200965294e-05 0.014985613968465511 4.0622606561081735e-05 0.0005300076751884979 1.4367308078829819e-06 0.014985613968465511 4.0622606561081735e-05 0.019321813767619267 7.918554891376317e-05']
['59866.45247031765 0.03432901702558413 6.79754761996799e-05 0.01509635904631373 4.0702387472024976e-05 0.000533924481091307 1.439552480403202e-06 0.01509635904631373 4.0702387472024976e-05 0.019232657979270398 7.922972744176332e-05']
['59866.452501855616 0.03429296260594758 6.795870468852871e-05 0.015049196081408875 4.068641056275722e-05 0.0005322564324256454 1.4389874128286923e-06 0.015049196081408877 4.068641056275722e-05 0.019243766524538703 7.920713066021201e-05']
['59866.452533393574 0.034226272974011075 6.790481078009854e-05 0.015008754172197004 4.066328486695749e-05 0.0005308260924791692 1.438169508651144e-06 0.015008754172197006 4.066328486695749e-05 0.01921751880181407 7.914901176421801e-05']
['59866.45256493154 0.034253567395510824 6.795108808237065e-05 0.015017459374893653 4.066545376353215e-05 0.0005311339760435665 1.4382462176757914e-06 0.015017459374893653 4.066545376353215e-05 0.01923610802061717 7.918983205798625e-05']
['59866.452596469506 0.03425137140129502 6.79184604678631e-05 0.014955795039673828 4.060903078630246e-05 0.0005289530463185197 1.4362506630691098e-06 0.01495579503967383 4.060903078630246e-05 0.019295576361621193 7.913286708901393e-05']
['59866.452628007464 0.0342622741094254 6.792085247970944e-05 0.014969721501692105 4.0624664869551385e-05 0.0005294455941562954 1.4368036056535046e-06 0.014969721501692106 4.0624664869551385e-05 0.019292552607733295 7.914294407800239e-05']
['59866.45265954543 0.03414531853998627 6.786201640705312e-05 0.014944102357769575 4.062060209951238e-05 0.0005285395022911724 1.4366599145569816e-06 0.014944102357769575 4.062060209951238e-05 0.019201216182216697 7.909036974093657e-05']
['59866.45269108339 0.034374083350165965 6.801860905051588e-05 0.015025212308638247 4.065280857903633e-05 0.0005314081799833257 1.4377989857604982e-06 0.015025212308638247 4.065280857903633e-05 0.01934887104152772 7.924128988431909e-05']
['59866.452722621354 0.03432086926294692 6.797771306362887e-05 0.015014005178416251 4.0665356867900964e-05 0.0005310118088338356 1.438242790693865e-06 0.01501400517841625 4.0665356867900964e-05 0.019306864084530667 7.92126298171876e-05']
['59866.45275415932 0.034266849401256724 6.792724546569598e-05 0.01495147020227519 4.061350202877326e-05 0.0005288000864851726 1.4364088009226631e-06 0.01495147020227519 4.061350202877326e-05 0.019315379198981533 7.914270164454891e-05']
['59866.45278569728 0.034140933127470775 6.785149114290263e-05 0.015011898435997867 4.064996986738056e-05 0.0005309372980627896 1.437698586873381e-06 0.015011898435997867 4.064996986738056e-05 0.01912903469147291 7.909642786203648e-05']
['59866.452817235244 0.03422712078424395 6.790588197898519e-05 0.015009694281588935 4.065837622860226e-05 0.0005308593420473408 1.4379959010826807e-06 0.015009694281588933 4.065837622860226e-05 0.019217426502655014 7.914740908513958e-05']
['59866.45284877321 0.034304647582677435 6.794646549070827e-05 0.015023735378787859 4.064241725342988e-05 0.0005313559442752615 1.4374314677970441e-06 0.01502373537878786 4.064241725342988e-05 0.019280912203889576 7.917403774522242e-05']
['59866.45288031117 0.03429337605508156 6.796808532337766e-05 0.015065207053046146 4.069607668019828e-05 0.00053282270471004 1.4393292818000814e-06 0.015065207053046146 4.069607668019828e-05 0.01922816900203541 7.922014440586765e-05']
['59866.452911849134 0.034301719197519044 6.794215585084026e-05 0.015086677811350816 4.0679488944773966e-05 0.0005335820774469554 1.4387426106695303e-06 0.015086677811350816 4.0679488944773966e-05 0.019215041386168228 7.918937657582521e-05']
['59866.45294338709 0.03426276824503198 6.790878131742828e-05 0.015066039984250547 4.0667794941301955e-05 0.0005328521636252479 1.438329019901285e-06 0.015066039984250547 4.0667794941301955e-05 0.019196728260781434 7.915473533153959e-05']
['59866.45297492506 0.03429677161117938 6.793682143696991e-05 0.015044990975479067 4.06686910126036e-05 0.0005321077072267666 1.4383607119406226e-06 0.015044990975479067 4.06686910126036e-05 0.019251780635700315 7.917925318943946e-05']
['59866.45300646302 0.03428147215282111 6.795260305820747e-05 0.014995683004968946 4.065111804400293e-05 0.0005303637945066522 1.4377391953144904e-06 0.014995683004968946 4.065111804400293e-05 0.019285789147852166 7.918377144727175e-05']
['59866.45303800098 0.034270186972675025 6.793480291979167e-05 0.015016462732117661 4.065951658476646e-05 0.0005310987270159452 1.4380362329316623e-06 0.01501646273211766 4.065951658476646e-05 0.019253724240557366 7.917280932654741e-05']
['59866.45306953895 0.034283832890374996 6.794405049479273e-05 0.015073194224339205 4.06938494838014e-05 0.0005331051931083982 1.4392505108410147e-06 0.015073194224339205 4.06938494838014e-05 0.01921063866603579 7.919837992944822e-05']
['59866.45310107691 0.03977461300666508 7.623624517936179e-05 0.01581642754606465 4.1810926732499376e-05 0.0005593916946691123 1.478759036606743e-06 0.01581642754606465 4.1810926732499376e-05 0.02395818546060043 8.694894291064265e-05']
['59866.45313261487 0.03428440382080013 6.795725223458282e-05 0.015043730511221362 4.066684527865771e-05 0.0005320631274229434 1.438295432455929e-06 0.015043730511221362 4.066684527865771e-05 0.019240673309578765 7.919583597761309e-05']
['59866.45316415284 0.03428042492137905 6.795115446671084e-05 0.01502326505431683 4.066412959655159e-05 0.0005313393099498345 1.4381993848490279e-06 0.015023265054316831 4.066412959655159e-05 0.019257159867062223 7.918920904519719e-05']
['59866.453195690796 0.03424387457812419 6.790634091436427e-05 0.01497028564750886 4.062942246384019e-05 0.0005294655467330423 1.436971871130902e-06 0.01497028564750886 4.062942246384019e-05 0.01927358893061533 7.913293313231264e-05']
['59866.45322722876 0.0343498413520081 6.801366842569071e-05 0.015047326674279082 4.0654992691821133e-05 0.0005321903156733436 1.4378762329484918e-06 0.015047326674279082 4.0654992691821133e-05 0.01930251467772902 7.923816961220033e-05']
['59866.45325876673 0.034284785376327294 6.797541580402148e-05 0.014988346299365669 4.063515015087857e-05 0.0005301043116260363 1.4371744466208225e-06 0.014988346299365669 4.063515015087857e-05 0.019296439076961623 7.919515503813386e-05']
['59866.453290304686 0.03417744013565101 6.788706628464713e-05 0.014984884392189929 4.063689624289295e-05 0.0005299818717061375 1.4372362019930853e-06 0.014984884392189929 4.063689624289295e-05 0.019192555743461077 7.91202319573933e-05']
['59866.45332184265 0.03419553080836661 6.78769200159582e-05 0.014970096287159406 4.062743110949268e-05 0.0005294588494806775 1.4369014413780456e-06 0.014970096287159406 4.062743110949268e-05 0.019225434521207205 7.910666488614825e-05']
['59866.45335338062 0.034163263856093605 6.78859937718884e-05 0.015011498623997312 4.06602286548306e-05 0.0005309231576058572 1.438061417258448e-06 0.01501149862399731 4.06602286548306e-05 0.019151765232096295 7.913129813581966e-05']
['59866.453384918575 0.03421706015883655 6.790440954552299e-05 0.014929938628644763 4.0588641287988165e-05 0.0005280385628460994 1.43552953208158e-06 0.014929938628644761 4.0588641287988165e-05 0.019287121530191787 7.911034469227833e-05']
['59866.45341645654 0.0343422622575694 6.798402303962334e-05 0.014961711045421036 4.062300440131713e-05 0.0005291622822203038 1.436744878602987e-06 0.014961711045421036 4.062300440131713e-05 0.019380551212148364 7.919631225784108e-05']
['59866.4534479945 0.034155734340243896 6.786886409591486e-05 0.014970111694454542 4.063096570976006e-05 0.0005294593944022732 1.4370264522901363e-06 0.014970111694454542 4.063096570976006e-05 0.019185622645789352 7.91015681777388e-05']
['59866.453479532465 0.0342290591411441 6.792762083159952e-05 0.015097926785680156 4.069815742489685e-05 0.0005339799285290061 1.4394028730898792e-06 0.015097926785680156 4.069815742489685e-05 0.019131132355463945 7.918649941513541e-05']
['59866.45351107043 0.03435719219683938 6.79869092154562e-05 0.01510189526200971 4.0704728290567646e-05 0.0005341202846677599 1.4396352699236347e-06 0.015101895262009711 4.0704728290567646e-05 0.01925529693482967 7.924073907958975e-05']
['59866.45354260839 0.03439455021445264 6.80050269171762e-05 0.015072534548462519 4.0672176745915564e-05 0.0005330818618469286 1.4384839945377114e-06 0.015072534548462519 4.0672176745915564e-05 0.019322015665990122 7.92395712208039e-05']
['59866.453574146355 0.03438663000181139 6.803006617211752e-05 0.014998494323976888 4.0649261918364835e-05 0.0005304632245770348 1.4376735482988675e-06 0.014998494323976886 4.0649261918364835e-05 0.019388135677834505 7.924930534642253e-05']
['59866.45360568431 0.03413742106476245 6.78554180922031e-05 0.015027512104375057 4.065804872690839e-05 0.0005314895186187957 1.4379843180796917e-06 0.015027512104375057 4.065804872690839e-05 0.01910990896038739 7.910394864194418e-05']
['59866.45363722228 0.03424663501024621 6.792941127314966e-05 0.015033039815157342 4.0683978611923766e-05 0.0005316850213954586 1.4389014001628032e-06 0.015033039815157342 4.0683978611923766e-05 0.01921359519508887 7.918074912257513e-05']
['59866.453668760245 0.03421730122900345 6.78618749438782e-05 0.015013828242803003 4.064768778818924e-05 0.0005310055510166229 1.4376178748325307e-06 0.015013828242803005 4.064768778818924e-05 0.01920347298620044 7.910416293359455e-05']
['59866.4537002982 0.034240868860861265 6.790865758005187e-05 0.015087767654643989 4.069077650784756e-05 0.0005336206227685785 1.4391418265492246e-06 0.015087767654643989 4.069077650784756e-05 0.019153101206217278 7.916643902018289e-05']
['59866.45373183617 0.03423467514190417 6.787581118488937e-05 0.015011912787038399 4.066352359569292e-05 0.0005309378056270205 1.438177951952989e-06 0.015011912787038399 4.066352359569292e-05 0.01922276235486577 7.912425604847243e-05']
['59866.453763374135 0.0341986382604701 6.787249488779278e-05 0.014998678294282258 4.0643405933298474e-05 0.0005304697311955864 1.4374664351944268e-06 0.014998678294282258 4.0643405933298474e-05 0.01919995996618784 7.911107386549836e-05']
['59866.45379491209 0.03425450991194343 6.791532935856794e-05 0.014983915260274193 4.062610827167555e-05 0.0005299475956761603 1.4368546555608223e-06 0.014983915260274193 4.062610827167555e-05 0.01927059465166924 7.913894512302185e-05']
['59866.45382645006 0.034306464925519545 6.795500484914518e-05 0.01499494997034562 4.064335520045862e-05 0.0005303378687102611 1.4374646408872624e-06 0.014994949970345622 4.064335520045862e-05 0.01931151495517392 7.918184770512742e-05']
['59866.45385798802 0.034184096309960305 6.784216053393674e-05 0.014985251889074068 4.0645324488177804e-05 0.0005299948692496224 1.4375342901927907e-06 0.01498525188907407 4.0645324488177804e-05 0.019198844420886235 7.908603636965068e-05']
['59866.45388952598 0.03433858109649951 6.799167435607723e-05 0.015080728940452773 4.0690327373963975e-05 0.0005333716791782356 1.4391259416875173e-06 0.015080728940452773 4.0690327373963975e-05 0.019257852156046737 7.923743132852812e-05']
['59866.45392106395 0.03440222265218612 6.805383128308221e-05 0.015017355251634407 4.0651590095255016e-05 0.0005311302934365888 1.437755890712304e-06 0.015017355251634407 4.0651590095255016e-05 0.019384867400551713 7.927090090051239e-05']
['59866.45395260191 0.034315151205189395 6.797219022353742e-05 0.015031063728618791 4.068037836629518e-05 0.0005316151316308835 1.4387740675209955e-06 0.015031063728618791 4.068037836629518e-05 0.019284087476570604 7.921560343650544e-05']
['59866.45398413987 0.03428673985398389 6.793945140587454e-05 0.015072107355187058 4.0690572867540675e-05 0.0005330667529754963 1.4391346242466792e-06 0.015072107355187058 4.0690572867540675e-05 0.01921463249879683 7.91927507895756e-05']
['59866.45401567784 0.03435814532950755 6.799760648245222e-05 0.015002692363792591 4.06464839756225e-05 0.0005306116998632494 1.4375752986724078e-06 0.01500269236379259 4.06464839756225e-05 0.01935545296571496 7.922001733730538e-05']
['59866.4540472158 0.03421599404884675 6.790523020481995e-05 0.01503602715604709 4.066391695434316e-05 0.0005317906769664151 1.438191864169343e-06 0.015036027156047092 4.066391695434316e-05 0.01917996689279966 7.914969634331713e-05']
['59866.45407875376 0.03430453855695996 6.79785043285847e-05 0.015022945849047328 4.065595556858335e-05 0.000531328020372834 1.4379102877476685e-06 0.01502294584904733 4.065595556858335e-05 0.01928159270791263 7.920848296707893e-05']
['59866.45411029172 0.03425651541246055 6.792729233343844e-05 0.015052117181082151 4.066281030850969e-05 0.0005323597451928155 1.438152724579421e-06 0.01505211718108215 4.066281030850969e-05 0.019204398231378404 7.916805660074172e-05']
['59866.45414182969 0.034212565215473514 6.79089965204176e-05 0.014983242988504217 4.06345136991798e-05 0.0005299238189260952 1.437151936746623e-06 0.014983242988504215 4.06345136991798e-05 0.019229322226969298 7.91378260503719e-05']
['59866.45417336765 0.03431691855399806 6.796701997141753e-05 0.014988707618734384 4.06643422008163e-05 0.0005301170906846064 1.4382069041867279e-06 0.014988707618734382 4.06643422008163e-05 0.019328210935263677 7.920293258724805e-05']
['59866.45420490561 0.03424756097506421 6.792401374946582e-05 0.015095343024896318 4.069771171107797e-05 0.0005338885466844473 1.4393871091882171e-06 0.01509534302489632 4.069771171107797e-05 0.019152217950167895 7.918317613202715e-05']
['59866.45423644358 0.03414806241451124 6.785343176951515e-05 0.015004231688847456 4.0646272255944464e-05 0.000530666142350251 1.4375678106205612e-06 0.015004231688847456 4.0646272255944464e-05 0.01914383072566378 7.909619239384794e-05']
['59866.45426798154 0.03435455158421717 6.800311497922374e-05 0.015086177243290063 4.0679528929548036e-05 0.0005335643734733504 1.4387440248416284e-06 0.015086177243290064 4.0679528929548036e-05 0.019268374340927107 7.924170442896505e-05']
['59866.4542995195 0.03424717709583339 6.790709079939849e-05 0.014975342684240823 4.064678344983839e-05 0.0005296444028204399 1.4375858904061382e-06 0.014975342684240823 4.064678344983839e-05 0.019271834411592564 7.91424916568578e-05']
['59866.454331057466 0.03423366504781394 6.792001174862827e-05 0.015051084083547352 4.06836518341976e-05 0.0005323232068418468 1.4388898427649337e-06 0.015051084083547354 4.06836518341976e-05 0.01918258096426658 7.917251746976354e-05']
['59866.454362595425 0.03419106678870354 6.786643366082131e-05 0.014979856839797566 4.063481217093282e-05 0.000529804058413938 1.4371624930254821e-06 0.014979856839797568 4.063481217093282e-05 0.01921120994890597 7.910145876028868e-05']
['59866.45439413339 0.034207280890155074 6.788007314597701e-05 0.015089939741929037 4.0702209244930306e-05 0.0005336974446415213 1.4395461769091776e-06 0.015089939741929037 4.0702209244930306e-05 0.01911734114822604 7.914779951281829e-05']
['59866.454425671356 0.0343496021018077 6.79988708813213e-05 0.015010036351680049 4.06654292614019e-05 0.0005308714403019819 1.4382453510902034e-06 0.015010036351680047 4.06654292614019e-05 0.019339565750127654 7.923082467164335e-05']
['59866.454457209315 0.03426425098143646 6.79447905232921e-05 0.01513857590559132 4.071934499944767e-05 0.0005354175970548277 1.4401522302502994e-06 0.015138575905591322 4.071934499944767e-05 0.01912567507584514 7.921211786360776e-05']
['59866.45448874728 0.0342709361851594 6.793521347822864e-05 0.015020608238293334 4.065432975781092e-05 0.0005312453443047177 1.4378527864541211e-06 0.015020608238293333 4.065432975781092e-05 0.019250327946866062 7.9170498030449e-05']
['59866.454520285246 0.03426471598234665 6.794145030449906e-05 0.015100606421536803 4.0707391409136366e-05 0.000534074701260622 1.4397294584756906e-06 0.015100606421536801 4.0707391409136366e-05 0.01916410956080985 7.92031084289963e-05']
['59866.454551823204 0.034334983586060575 6.796925119753001e-05 0.015099955231782765 4.0699237622059695e-05 0.0005340516701343452 1.4394410772494304e-06 0.015099955231782765 4.0699237622059695e-05 0.01923502835427781 7.922276851618992e-05']
['59866.45458336117 0.03432872614656423 6.799737459761717e-05 0.015127910646284498 4.071453987147049e-05 0.0005350403906685971 1.4399822836125755e-06 0.015127910646284496 4.071453987147049e-05 0.019200815500279734 7.925475827427797e-05']
['59866.45461489913 0.034291650167158384 6.79532024071015e-05 0.01503690929056029 4.0665866103005244e-05 0.0005318218760926923 1.43826080120143e-06 0.015036909290560292 4.0665866103005244e-05 0.019254740876598092 7.919185806184911e-05']
['59866.454646437094 0.03423284001824598 6.792251940567054e-05 0.014980746143365073 4.0633282115609725e-05 0.0005298355110936442 1.4371083783881766e-06 0.014980746143365073 4.0633282115609725e-05 0.01925209387488091 7.914879820881944e-05']
['59866.45467797506 0.0341980269465633 6.7893173659498e-05 0.015030614872980144 4.065608017741703e-05 0.0005315992566100779 1.4379146948836315e-06 0.015030614872980144 4.065608017741703e-05 0.019167412073583155 7.913532640326515e-05']
['59866.45470951302 0.03425799378419112 6.792370622946764e-05 0.01501523847732193 4.065294720515837e-05 0.0005310554278598687 1.4378038886566237e-06 0.015015238477321932 4.065294720515837e-05 0.01924275530686919 7.915991399952639e-05']
['59866.454741050984 0.03428581878191751 6.795433407867535e-05 0.015079321500962091 4.068789507277125e-05 0.0005333219011888923 1.4390399166302038e-06 0.015079321500962091 4.068789507277125e-05 0.01920649728095542 7.920414336086883e-05']
['59866.45477258895 0.034340739611785555 6.79954473750267e-05 0.015040091553763043 4.067143978284424e-05 0.0005319344256302339 1.438457929800894e-06 0.01504009155376304 4.067143978284424e-05 0.019300648058022514 7.923097170765705e-05']
['59866.45480412691 0.03435065658024605 6.799568101151065e-05 0.015080422021795511 4.0681555663026665e-05 0.0005333608241512511 1.4388157058752847e-06 0.015080422021795513 4.0681555663026665e-05 0.01927023455845054 7.923636543521571e-05']
['59866.454835664874 0.03421922899450063 6.789804696368623e-05 0.014965382872492801 4.0644622790591815e-05 0.0005292921465377816 1.4375094727173762e-06 0.014965382872492801 4.0644622790591815e-05 0.019253846122007832 7.913362207856049e-05']
['59866.45486720283 0.03433979326736938 6.80164682366454e-05 0.015005542675734874 4.0638195980103205e-05 0.0005307125090265758 1.43728217079347e-06 0.015005542675734876 4.0638195980103205e-05 0.019334250591634503 7.923195645636847e-05']
['59866.4548987408 0.03415330948657031 6.785656868356581e-05 0.014976232965427601 4.0620134363101944e-05 0.0005296758900763549 1.4366433717654739e-06 0.014976232965427603 4.0620134363101944e-05 0.019177076521142707 7.908545523156542e-05']
['59866.454930278764 0.03428432145306941 6.796074378253717e-05 0.014949571603778983 4.0632123977261827e-05 0.0005287329372994797 1.4370674176230982e-06 0.014949571603778985 4.0632123977261827e-05 0.01933474984929042 7.918100905128224e-05']
['59866.45496181672 0.034115106675137515 6.783675110876774e-05 0.014976736891261678 4.0623921145929675e-05 0.0005296937128068982 1.4367773018111292e-06 0.014976736891261676 4.0623921145929675e-05 0.019138369783875838 7.907039755979234e-05']
['59866.45499335469 0.03419409662785962 6.787226098542133e-05 0.01500918195919249 4.064069851417182e-05 0.0005308412223491518 1.4373706798306427e-06 0.015009181959192491 4.064069851417182e-05 0.019184914668667126 7.910948228242272e-05']
['59866.45502489265 0.03408092824974742 6.778831569808101e-05 0.014973600041707853 4.063100402717315e-05 0.0005295827694486256 1.437027807491403e-06 0.014973600041707854 4.063100402717315e-05 0.019107328208039565 7.903248846796396e-05']
['59866.45505643061 0.03427509518175124 6.792654478417418e-05 0.015058241588653237 4.068752652974543e-05 0.0005325763518013595 1.4390268820870257e-06 0.015058241588653239 4.068752652974543e-05 0.019216853593098 7.918011304251313e-05']
['59866.45508796858 0.03428024410542523 6.789343678475276e-05 0.015080728524299765 4.0686676614471106e-05 0.0005333716644598338 1.4389968224832217e-06 0.015080728524299765 4.0686676614471106e-05 0.019199515581125468 7.915127549430753e-05']
['59866.455119506536 0.03445742861678764 6.808127549901827e-05 0.015043169603226677 4.0677844830978575e-05 0.0005320432893607271 1.4386844620389655e-06 0.015043169603226677 4.0677844830978575e-05 0.01941425901356096 7.930792604567588e-05']
['59866.4551510445 0.03417586626021207 6.789513164277823e-05 0.014984951850222831 4.0642909151454066e-05 0.0005299842575460014 1.437448865130832e-06 0.01498495185022283 4.0642909151454066e-05 0.019190914409989244 7.913024052208823e-05']
['59866.45518258247 0.03425803267671726 6.792199289059846e-05 0.014984132470873426 4.064659880817303e-05 0.000529955277929618 1.4375793600430844e-06 0.014984132470873426 4.064659880817303e-05 0.01927390020584383 7.915518373993634e-05']
['59866.455214120426 0.03413104178672455 6.784763508590151e-05 0.015098811235011278 4.070706771262892e-05 0.00053401120952522 1.4397180100536414e-06 0.015098811235011278 4.070706771262892e-05 0.01903223055171327 7.912248067717676e-05']
['59866.45524565839 0.03440281388287932 6.804385759502238e-05 0.015066772562071258 4.0685012067896474e-05 0.0005328780732655514 1.4389379511909198e-06 0.015066772562071257 4.0685012067896474e-05 0.019336041320808066 7.927948513566776e-05']
['59866.45527719636 0.03431631921461637 6.793985528112075e-05 0.015050488970925736 4.067655934253507e-05 0.0005323021590384187 1.4386389971856162e-06 0.015050488970925738 4.067655934253507e-05 0.019265830243690635 7.918589783267226e-05']
['59866.455308734316 0.03420039550396491 6.788134813820584e-05 0.014958883027730234 4.0623864314715916e-05 0.0005290622615548277 1.4367752918181087e-06 0.014958883027730234 4.0623864314715916e-05 0.01924151247623468 7.910863275850968e-05']
['59866.45534027228 0.03428836101725276 6.796028227231759e-05 0.014970565957394159 4.062373419225568e-05 0.0005294754606672296 1.4367706896774968e-06 0.014970565957394159 4.062373419225568e-05 0.0193177950598586 7.917630798576129e-05']
['59866.45537181024 0.03440863476073721 6.802912017135172e-05 0.015065722483380138 4.067197262403589e-05 0.0005328409343290342 1.4384767752030126e-06 0.015065722483380136 4.067197262403589e-05 0.01934291227735707 7.92601447665757e-05']
['59866.455403348205 0.03420469882678694 6.790228015225303e-05 0.01494854668308324 4.063244411357546e-05 0.0005286966881450342 1.4370787401290488e-06 0.01494854668308324 4.063244411357546e-05 0.019256152143703704 7.913100002222826e-05']
['59866.45543488617 0.034322289806958 6.797423280940672e-05 0.015149867586972699 4.07223076010101e-05 0.0005358169585898643 1.4402570108465378e-06 0.015149867586972697 4.07223076010101e-05 0.019172422219985302 7.923889614563487e-05']
['59866.45546642413 0.03429204879930263 6.79285710152449e-05 0.015069650934605118 4.067935109797388e-05 0.00053297987486929 1.4387377353362808e-06 0.015069650934605118 4.067935109797388e-05 0.01922239786469751 7.917765067192508e-05']
['59866.455497962095 0.03433671062213881 6.7956803139506e-05 0.015067164122836877 4.068028258927839e-05 0.0005328919218947445 1.4387706801019608e-06 0.015067164122836877 4.068028258927839e-05 0.019269546499301935 7.920235150855762e-05']
['59866.45552950006 0.034257260406904584 6.793324201033922e-05 0.015077541640354202 4.06831338770857e-05 0.0005332589514969457 1.4388715237794518e-06 0.015077541640354204 4.06831338770857e-05 0.01917971876655038 7.918360153526862e-05']
['59866.45556103802 0.03429815417701114 6.795259697715275e-05 0.014996646558680316 4.064372050503405e-05 0.0005303978732480075 1.4374775608936876e-06 0.014996646558680314 4.064372050503405e-05 0.019301507618330827 7.917996875744946e-05']
['59866.455592575985 0.03436794308178212 6.802581305921403e-05 0.015085231877904792 4.069751173454615e-05 0.0005335309380124406 1.4393800364652078e-06 0.015085231877904792 4.069751173454615e-05 0.01928271120387733 7.927041505978543e-05']
['59866.45562411394 0.034165335087630685 6.786522090617504e-05 0.01494581005740825 4.0608034536336113e-05 0.0005285998998109082 1.4362154279342878e-06 0.01494581005740825 4.0608034536336113e-05 0.019219525030222437 7.908666561151889e-05']
['59866.45565565191 0.0342559751901582 6.792291580815315e-05 0.015058589441771351 4.069182765135146e-05 0.0005325886545887412 1.43917900314579e-06 0.015058589441771353 4.069182765135146e-05 0.01919738574838685 7.917921021005926e-05']
['59866.455687189875 0.03411085290291128 6.781239255581624e-05 0.01501573476515174 4.065937101530261e-05 0.000531072980451271 1.4380310844650547e-06 0.01501573476515174 4.065937101530261e-05 0.019095118137759538 7.906772436022269e-05']
['59866.45571872783 0.03417580210131023 6.785662775663203e-05 0.014994070599071574 4.0644859030643174e-05 0.0005303067673135772 1.4375178280000274e-06 0.014994070599071574 4.0644859030643174e-05 0.019181731502238654 7.909820791979411e-05']
['59866.4557502658 0.03422319984144991 6.789242655494441e-05 0.01500541439446812 4.065724612946222e-05 0.0005307079720048624 1.4379559320017202e-06 0.01500541439446812 4.065724612946222e-05 0.019217785446981793 7.913528445864203e-05']
['59866.455781803765 0.03430894061148666 6.797149302223464e-05 0.015053656519765413 4.0676462577253006e-05 0.0005324141881618231 1.4386355748138472e-06 0.015053656519765415 4.0676462577253006e-05 0.019255284091721246 7.921299433470721e-05']
['59866.45581334172 0.03431110191056655 6.795749120144132e-05 0.015093593886214443 4.070817105995479e-05 0.0005338266835583643 1.4397570329827212e-06 0.015093593886214443 4.070817105995479e-05 0.019217508024352105 7.921726959092011e-05']
['59866.45584487969 0.034286637567691514 6.79568735901484e-05 0.015049621280699858 4.0675365455660755e-05 0.0005322714707743029 1.4385967720750518e-06 0.015049621280699857 4.0675365455660755e-05 0.019237016286991655 7.919988650938188e-05']
['59866.45587641765 0.03436342899995939 6.803277271235207e-05 0.015043206516665126 4.0676130138859536e-05 0.0005320445949065482 1.4386238172108263e-06 0.015043206516665126 4.0676130138859536e-05 0.019320222483294264 7.926541317626492e-05']
['59866.45590795561 0.03425747621772572 6.793726676941072e-05 0.014984052078771867 4.0649648910686785e-05 0.0005299524346406517 1.437687235352418e-06 0.014984052078771867 4.0649648910686785e-05 0.019273424138953853 7.916985646481984e-05']
['59866.45593949358 0.03427031024497875 6.792865946596094e-05 0.015040975016870389 4.068264438162648e-05 0.0005319656717459169 1.4388542114190174e-06 0.015040975016870389 4.068264438162648e-05 0.019229335228108362 7.917941860562232e-05']
['59866.45597103154 0.034213547950540976 6.788671136127183e-05 0.015080548719888079 4.067616143043631e-05 0.0005333653051796316 1.4386249239239643e-06 0.015080548719888079 4.067616143043631e-05 0.019132999230652897 7.914010164362658e-05']
['59866.4560025695 0.034163524802748084 6.786388418289567e-05 0.014994874660640221 4.064737601276219e-05 0.0005303352051742884 1.437606848032453e-06 0.014994874660640221 4.064737601276219e-05 0.019168650142107863 7.910572642427571e-05']
['59866.45603410747 0.03423423475477862 6.7922807885309e-05 0.014988839620539306 4.063663490397672e-05 0.0005301217592934399 1.4372269590196762e-06 0.014988839620539308 4.063663490397672e-05 0.01924539513423931 7.91507670673108e-05']
['59866.45606564543 0.03432707342479172 6.796055074929055e-05 0.015044982585667376 4.066661169112377e-05 0.0005321074104978772 1.4382871709868911e-06 0.015044982585667374 4.066661169112377e-05 0.019282090839124348 7.919854648024509e-05']
['59866.45609718339 0.03414784194015414 6.78400095644784e-05 0.015026150681972696 4.0660465021613644e-05 0.0005314413681510242 1.4380697770233156e-06 0.015026150681972697 4.0660465021613644e-05 0.019121691258181445 7.909197376145311e-05']
['59866.45612872135 0.03431403314106006 6.795864540698892e-05 0.015089981904389118 4.069215725882754e-05 0.0005336989358335068 1.4391906606255894e-06 0.015089981904389118 4.069215725882754e-05 0.019224051236670942 7.921003186421532e-05']
['59866.45616025932 0.03428769679145217 6.796681172934396e-05 0.015095098326815246 4.0686531468331736e-05 0.0005338798922601878 1.4389916889886548e-06 0.015095098326815248 4.0686531468331736e-05 0.019192598464636917 7.921414860727619e-05']
['59866.45619179728 0.03416193878170885 6.787179761264898e-05 0.01500121074543355 4.064777347976616e-05 0.0005305592983331123 1.437620905552097e-06 0.01500121074543355 4.064777347976616e-05 0.019160728036275304 7.911271958436751e-05']
['59866.45622333524 0.03430419597899671 6.796505764586102e-05 0.014986397400987193 4.065656405688197e-05 0.0005300353834459212 1.4379318086188995e-06 0.014986397400987195 4.065656405688197e-05 0.01931779857800952 7.91972553925738e-05']
['59866.45625487321 0.03424017544980065 6.790947196302006e-05 0.014984100269662544 4.064362950963159e-05 0.0005299541390447547 1.4374743425896653e-06 0.014984100269662546 4.064362950963159e-05 0.019256075180138107 7.9142915046215e-05']
['59866.45628641117 0.03423584323934354 6.790041447448506e-05 0.015039166387359658 4.065441598669296e-05 0.0005319017045621715 1.4378558361769686e-06 0.01503916638735966 4.065441598669296e-05 0.019196676851983882 7.914068375384393e-05']
['59866.45631794913 0.03435395986761237 6.802301230457154e-05 0.015099276373464999 4.070411191375007e-05 0.0005340276604328049 1.4396134700531182e-06 0.015099276373465 4.070411191375007e-05 0.019254683494147367 7.92714004523383e-05']
['59866.456349487096 0.03431294965019529 6.79836463404121e-05 0.015035082265570049 4.0679745229588795e-05 0.000531757258301948 1.438751674890668e-06 0.015035082265570049 4.0679745229588795e-05 0.01927786738462524 7.922510865680452e-05']
['59866.456381025055 0.0343943334298303 6.801616286219777e-05 0.015071392873439105 4.0681217974829076e-05 0.0005330414833528439 1.4388037625984247e-06 0.015071392873439103 4.0681217974829076e-05 0.0193229405563912 7.92537690360059e-05']
['59866.45641256302 0.03433952994361649 6.797193361097091e-05 0.014998038092540886 4.0654319509681585e-05 0.0005304470886907608 1.4378524240006895e-06 0.014998038092540886 4.0654319509681585e-05 0.019341491851075605 7.920200410096649e-05']
['59866.456444100986 0.0342678060852458 6.791885326258463e-05 0.015100506596918629 4.0710771682641136e-05 0.0005340711706869722 1.4398490111950875e-06 0.01510050659691863 4.0710771682641136e-05 0.01916729948832717 7.918546305667877e-05']
['59866.456475638945 0.034276115054494266 6.7918369440792e-05 0.015038785340315289 4.0674313475046557e-05 0.0005318882277798022 1.438559565871766e-06 0.015038785340315289 4.0674313475046557e-05 0.019237329714178977 7.916631028513494e-05']
['59866.45650717691 0.03423982791532402 6.789820864457007e-05 0.01506411854788644 4.0697240431912776e-05 0.000532784206715207 1.4393704410973912e-06 0.01506411854788644 4.0697240431912776e-05 0.01917570936743758 7.91607991111414e-05']
['59866.456538714876 0.034284551061179176 6.792920241395789e-05 0.015014567315488054 4.0651650738728495e-05 0.0005310316903657629 1.4377580355364308e-06 0.015014567315488054 4.0651650738728495e-05 0.019269983745691124 7.916396432961166e-05']
['59866.456570252834 0.034282169225333524 6.793283461480888e-05 0.015092306148219558 4.06944605038435e-05 0.0005337811391434102 1.4392721212543544e-06 0.015092306148219558 4.06944605038435e-05 0.019189863077113966 7.918907206491217e-05']
['59866.4566017908 0.03439779245289854 6.803542091448085e-05 0.015037575103782761 4.06722792942266e-05 0.0005318454244183661 1.4384876214422907e-06 0.015037575103782761 4.06722792942266e-05 0.01936021734911578 7.926571012738201e-05']
['59866.45663332876 0.03422148420709916 6.790067578386528e-05 0.014976515791402085 4.0650908624766815e-05 0.0005296858929989936 1.4377317886241334e-06 0.014976515791402087 4.0650908624766815e-05 0.019244968415697075 7.913910628712412e-05']
['59866.456664866724 0.03428573289161862 6.794856898777459e-05 0.015082041973772293 4.06984386259399e-05 0.0005334181182322903 1.4394128185423245e-06 0.015082041973772295 4.06984386259399e-05 0.019203690917846322 7.920461434838099e-05']
['59866.45669640469 0.03437720596504426 6.801650930209782e-05 0.015090602284090962 4.068907779437048e-05 0.000533720877277094 1.4390817468499414e-06 0.01509060228409096 4.068907779437048e-05 0.0192866036809533 7.925810109634656e-05']
['59866.45672794265 0.03420832313129953 6.790020847168624e-05 0.015002715432019946 4.065586111924086e-05 0.0005306125157348966 1.4379069472855066e-06 0.015002715432019947 4.065586111924086e-05 0.019205607699279585 7.91412493826415e-05']
['59866.456759480614 0.03425922509009212 6.796249538565554e-05 0.015058907538580886 4.0685381653024845e-05 0.0005325999049619899 1.438951022590936e-06 0.015058907538580886 4.0685381653024845e-05 0.019200317551511234 7.920985455925002e-05']
['59866.45679101858 0.03420730857051512 6.787237190938852e-05 0.01498748972927355 4.06443914989672e-05 0.0005300740166561995 1.43750129244952e-06 0.01498748972927355 4.06443914989672e-05 0.01921981884124157 7.911147469822357e-05']
['59866.45682255654 0.03426845873799567 6.795090980161131e-05 0.01499892521804329 4.065993321770711e-05 0.0005304784643371719 1.4380509683076532e-06 0.01499892521804329 4.065993321770711e-05 0.019269533519952385 7.91868443122664e-05']
['59866.456854094504 0.034279969564902375 6.79494205924525e-05 0.01510021184639081 4.071456749779208e-05 0.0005340607460195319 1.439983260693829e-06 0.015100211846390812 4.071456749779208e-05 0.01917975771851156 7.921363370899151e-05']
['59866.45688563246 0.03426447132535072 6.791931841692095e-05 0.015030300318252405 4.0663821771349984e-05 0.0005315881315123462 1.4381884977595958e-06 0.015030300318252405 4.0663821771349984e-05 0.019234171007098316 7.916173453930386e-05']
['59866.45691717043 0.03440713254616452 6.806689134974528e-05 0.015107297968351691 4.069769411644448e-05 0.0005343113663167377 1.439386486905352e-06 0.015107297968351691 4.069769411644448e-05 0.019299834577812834 7.93057627440384e-05']
['59866.45694870839 0.0342371831056681 6.790714007596637e-05 0.01507442162131813 4.067008346615379e-05 0.0005331486033964719 1.4384099599107422e-06 0.015074421621318128 4.067008346615379e-05 0.01916276148434997 7.915450310905144e-05']
['59866.45698024635 0.03434347006912867 6.799555380907579e-05 0.01503263576713986 4.065413632956524e-05 0.0005316707311200744 1.4378459453293579e-06 0.015032635767139858 4.065413632956524e-05 0.01931083430198881 7.922218211148818e-05']
['59866.45701178432 0.03434420400132804 6.797316083061431e-05 0.01502168227442408 4.0659155169498234e-05 0.0005312833305623327 1.4380234504813408e-06 0.015021682274424079 4.0659155169498234e-05 0.01932252172690396 7.920553953103214e-05']
['59866.45704332228 0.03433264897550665 6.801106071760966e-05 0.015080567977917009 4.069468091301991e-05 0.0005333659862930757 1.4392799166343387e-06 0.015080567977917007 4.069468091301991e-05 0.01925208099758964 7.925630217558031e-05']
['59866.45707486024 0.034271408953651786 6.794159458686717e-05 0.01499656461600943 4.0655170077061887e-05 0.0005303949751188693 1.4378825066680247e-06 0.01499656461600943 4.0655170077061887e-05 0.019274844337642358 7.917640512804965e-05']
['59866.45710639821 0.03426687873426592 6.791796992479876e-05 0.015078659309325724 4.068559528130277e-05 0.0005332984809506252 1.438958578145695e-06 0.015078659309325724 4.068559528130277e-05 0.019188219424940194 7.917176455087909e-05']
['59866.457137936166 0.03431458450166903 6.797246615092701e-05 0.015120541047376342 4.070493939447711e-05 0.0005347797444252998 1.439642736197123e-06 0.015120541047376342 4.070493939447711e-05 0.019194043454292688 7.922845603536001e-05']
['59866.45716947413 0.03424042461853546 6.791966777102057e-05 0.015020482326232295 4.0664029105704137e-05 0.0005312408910765157 1.4381958307123373e-06 0.015020482326232296 4.0664029105704137e-05 0.01921994229230316 7.916214078229165e-05']
['59866.4572010121 0.034265571424862 6.79337469368589e-05 0.015040351369896413 4.068520074547306e-05 0.0005319436147462164 1.438944624295134e-06 0.015040351369896413 4.068520074547306e-05 0.01922522005496559 7.918509665701386e-05']
['59866.457232550056 0.03419382788059237 6.789406905141721e-05 0.015049245311772395 4.067979874270704e-05 0.0005322581735935796 1.4387535675300655e-06 0.015049245311772394 4.067979874270704e-05 0.019144582568819977 7.914828259732334e-05']
['59866.45726408802 0.03436147050430664 6.797964008078659e-05 0.015119779476857928 4.0704774258620456e-05 0.0005347528093780735 1.43963689571093e-06 0.015119779476857928 4.0704774258620456e-05 0.019241691027448715 7.923452601586342e-05']
['59866.45729562599 0.034168724636200735 6.788835221457573e-05 0.015045220318744211 4.068168871396378e-05 0.0005321158185855028 1.4388204115895793e-06 0.015045220318744211 4.068168871396378e-05 0.019123504317456526 7.914435016493684e-05']
['59866.457327163946 0.03421031148444143 6.788572862218356e-05 0.015048005197504401 4.067860879827924e-05 0.000532214313523413 1.4387114818550233e-06 0.015048005197504403 4.067860879827924e-05 0.019162306286937027 7.914051657860336e-05']
['59866.45735870191 0.03420501473029798 6.787745142511822e-05 0.014996595935641321 4.065281657660704e-05 0.0005303960828242541 1.4377992686167007e-06 0.014996595935641321 4.065281657660704e-05 0.019208418794656658 7.912016119536499e-05']
['59866.45739023987 0.034307847700239334 6.794177487471147e-05 0.015076220770207982 4.069688715974752e-05 0.0005332122352718449 1.4393579466504227e-06 0.015076220770207982 4.069688715974752e-05 0.019231626930031352 7.919798859579199e-05']
['59866.457421777835 0.03422638266042721 6.79314008043145e-05 0.0149774357060511 4.064281703091407e-05 0.000529718428324241 1.4374456070332098e-06 0.014977435706051102 4.064281703091407e-05 0.01924894695437611 7.91613149931504e-05']
['59866.4574533158 0.0342559301902049 6.790643901386414e-05 0.014990234449444409 4.0654423023523234e-05 0.0005301710912745542 1.437856085053929e-06 0.014990234449444407 4.0654423023523234e-05 0.01926569574076049 7.914585630921702e-05']
['59866.45748485376 0.034203785124250784 6.786002269174295e-05 0.015009777463072053 4.065905280287848e-05 0.0005308622839904991 1.4380198300027761e-06 0.015009777463072053 4.065905280287848e-05 0.01919400766117873 7.910841456223938e-05']
['59866.457516391725 0.03422638875927561 6.790234561758505e-05 0.015049393189569943 4.067958781804878e-05 0.0005322634037007915 1.4387461075962917e-06 0.015049393189569944 4.067958781804878e-05 0.019176995569705667 7.91552740214846e-05']
['59866.45754792969 0.03421848649372072 6.790349363691322e-05 0.015065307360463529 4.0671485798289404e-05 0.0005328262523592188 1.438459557264351e-06 0.015065307360463527 4.0671485798289404e-05 0.019153179133257196 7.915209539322867e-05']
['59866.45757946765 0.03429085943218219 6.792463728031003e-05 0.015067299101117157 4.068331085087693e-05 0.0005328966957748593 1.4388777829469347e-06 0.015067299101117157 4.068331085087693e-05 0.019223560331065037 7.917631041827324e-05']
['59866.457611005615 0.03427417990527537 6.795218842115322e-05 0.015092789216179044 4.069637954509016e-05 0.0005337982241775439 1.439339993454444e-06 0.015092789216179044 4.069637954509016e-05 0.019181390689096328 7.920666145787198e-05']
['59866.45764254357 0.03424982205774356 6.791624914914914e-05 0.015063405605930424 4.0680237579170574e-05 0.0005327589915515542 1.4387690881950389e-06 0.015063405605930424 4.0680237579170574e-05 0.019186416451813133 7.916753518954006e-05']
['59866.45767408154 0.03429658184380988 6.79530076288545e-05 0.01496333028742009 4.061582829206438e-05 0.0005292195511910175 1.4364910756563777e-06 0.014963330287420092 4.061582829206438e-05 0.01933325155638979 7.91660075642167e-05']
['59866.457705619505 0.034164297448331 6.787160861883715e-05 0.014977687350618855 4.064351575704029e-05 0.0005297273284302099 1.4374703194147332e-06 0.014977687350618855 4.064351575704029e-05 0.019186610097712144 7.91103699245642e-05']
['59866.45773715746 0.034187742188060304 6.785570955945379e-05 0.015039473317748459 4.066630195802006e-05 0.0005319125600040743 1.4382762164192254e-06 0.015039473317748459 4.066630195802006e-05 0.019148268870311846 7.910844098298116e-05']
['59866.45776869543 0.03426370297873429 6.792483973669421e-05 0.01500592731153131 4.065651898998144e-05 0.0005307261127350853 1.4379302147033465e-06 0.01500592731153131 4.065651898998144e-05 0.019257775667202978 7.916272095903675e-05']
['59866.457800233395 0.034298538371217865 6.794123725270077e-05 0.015089280588771256 4.069015341830584e-05 0.0005336741318674511 1.4391197892646572e-06 0.015089280588771254 4.069015341830584e-05 0.01920925778244661 7.919406735755553e-05']
['59866.45783177135 0.03420053400108106 6.787235258120764e-05 0.015038338764886052 4.068287148982096e-05 0.0005318724334049074 1.4388622437282993e-06 0.015038338764886052 4.068287148982096e-05 0.019162195236195004 7.913123452572348e-05']
['59866.45786330932 0.03419587654948481 6.785164661331145e-05 0.015041138131728249 4.0648646281768046e-05 0.0005319714407538992 1.4376517746083058e-06 0.015041138131728249 4.0648646281768046e-05 0.019154738417756563 7.909588100955696e-05']
['59866.45789484728 0.03415605664893547 6.78467383467981e-05 0.015064421398038656 4.068196608680752e-05 0.0005327949178482606 1.4388302216471706e-06 0.015064421398038654 4.068196608680752e-05 0.01909163525089682 7.910880019939022e-05']
['59866.45792638524 0.034224590850637934 6.788626799606084e-05 0.015007517158413787 4.0655297367933815e-05 0.0005307823420662198 1.4378870086616864e-06 0.015007517158413787 4.0655297367933815e-05 0.019217073692224147 7.912899965567694e-05']
['59866.45795792321 0.03427714853296858 6.791544961287612e-05 0.015097671238287563 4.070005272581773e-05 0.0005339708903888449 1.4394699056477023e-06 0.015097671238287563 4.070005272581773e-05 0.019179477294681016 7.917703321041688e-05']
['59866.45798946117 0.03428144751004207 6.794208104204858e-05 0.015023158089979219 4.065952984094053e-05 0.0005313355268602644 1.4380367017729134e-06 0.015023158089979219 4.065952984094053e-05 0.01925828942006285 7.917906126755122e-05']
['59866.45802099913 0.034265424127060205 6.794463782471748e-05 0.015001943137227029 4.0645285651421063e-05 0.0005305852013940483 1.4375329166234999e-06 0.015001943137227029 4.0645285651421063e-05 0.019263480989833177 7.91739417663264e-05']
['59866.4580525371 0.03427166716472555 6.793959079486491e-05 0.014977551199129252 4.0632340335151533e-05 0.0005297225130563033 1.4370750697181258e-06 0.014977551199129252 4.0632340335151533e-05 0.019294115965596298 7.916296532145114e-05']
['59866.45808407506 0.03429463435863611 6.794742727225938e-05 0.015082723836601133 4.069564624917565e-05 0.0005334422341966727 1.4393140584167676e-06 0.015082723836601135 4.069564624917565e-05 0.019211910522034976 7.920220007396905e-05']
['59866.45811561302 0.03430167252058478 6.798367910280317e-05 0.015000111923634369 4.064598432925526e-05 0.0005305204354617975 1.4375576272970423e-06 0.015000111923634369 4.064598432925526e-05 0.019301560596950415 7.920780685290422e-05']
['59866.45814715098 0.03424711042974039 6.791639355044387e-05 0.015030814808881231 4.06634927599687e-05 0.0005316063278960689 1.438176861362337e-06 0.015030814808881231 4.06634927599687e-05 0.019216295620859164 7.915905606018051e-05']
['59866.45817868895 0.03431314818215773 6.794849466474328e-05 0.015048535402093171 4.066173699904626e-05 0.0005322330656747802 1.4381147640224051e-06 0.01504853540209317 4.066173699904626e-05 0.01926461278006456 7.918569809621088e-05']
['59866.45821022691 0.034314644092211605 6.795765321792791e-05 0.015077411323888644 4.068660742271783e-05 0.0005332543424947991 1.4389943753255426e-06 0.015077411323888646 4.068660742271783e-05 0.01923723276832296 7.920632963632708e-05']
['59866.45824176487 0.03421087614531127 6.787037529065279e-05 0.015013420048153548 4.06573479790181e-05 0.0005309911140841331 1.4379595341928914e-06 0.01501342004815355 4.06573479790181e-05 0.01919745609715772 7.911641919842568e-05']
['59866.45827330284 0.03421356472796441 6.788666887471575e-05 0.015045813912794142 4.0678442142007034e-05 0.0005321368126804442 1.4387055875951304e-06 0.015045813912794142 4.0678442142007034e-05 0.01916775081517027 7.914123745561422e-05']
['59866.4583048408 0.03414805810293916 6.786847163869413e-05 0.01498783562077717 4.065406242792793e-05 0.0005300862500656606 1.4378433315936068e-06 0.014987835620777172 4.065406242792793e-05 0.01916022248216199 7.911309774282695e-05']
['59866.45833637876 0.03435490961274657 6.798737336379318e-05 0.015021701482829903 4.0672756386275004e-05 0.0005312840099207185 1.4385044951218048e-06 0.015021701482829903 4.0672756386275004e-05 0.01933320812991667 7.922471867394095e-05']
['59866.458367916726 0.03420035971939473 6.788578328966877e-05 0.014987525834775408 4.063938411013963e-05 0.0005300752936271091 1.4373241922975441e-06 0.014987525834775407 4.063938411013963e-05 0.019212833884619324 7.912040895814013e-05']
['59866.458399454685 0.03425713963251184 6.791482554215513e-05 0.015088440860179993 4.068552544189268e-05 0.0005336444325438612 1.4389561080818422e-06 0.015088440860179995 4.068552544189268e-05 0.019168698772331846 7.916903124899448e-05']
['59866.45843099265 0.03430128121729114 6.794217201663075e-05 0.015097075916761907 4.0691760082199126e-05 0.0005339498351969478 1.43917661337588e-06 0.015097075916761907 4.0691760082199126e-05 0.019204205300529232 7.919569481306857e-05']
['59866.458462530616 0.0341864626815759 6.786443553138185e-05 0.015017419918995962 4.066710933676635e-05 0.000531132580576644 1.4383047716010964e-06 0.015017419918995962 4.066710933676635e-05 0.01916904276257994 7.911634086458746e-05']
['59866.458494068575 0.034283208494630533 6.793010106611118e-05 0.01496491121443514 4.062899930828475e-05 0.0005292754650463758 1.4369569050646032e-06 0.01496491121443514 4.062899930828475e-05 0.019318297280195393 7.91531061654859e-05']
['59866.45852560654 0.03423947881256688 6.791312127165746e-05 0.0149630184573 4.063115473286484e-05 0.0005292085224565691 1.4370331376149106e-06 0.014963018457299998 4.063115473286484e-05 0.01927646035526688 7.913964098847591e-05']
['59866.458557144506 0.034281588261997446 6.7907818281045e-05 0.015094566294493439 4.0702719272852336e-05 0.0005338610754659877 1.4395642154569345e-06 0.015094566294493437 4.0702719272852336e-05 0.01918702196750401 7.917185825718665e-05']
['59866.458588682464 0.03424568267501468 6.791277912118633e-05 0.015134488166177766 4.072670322001386e-05 0.0005352730228473302 1.4404124740670703e-06 0.015134488166177767 4.072670322001386e-05 0.019111194508836915 7.918844564160942e-05']
['59866.45862022043 0.03421756411689925 6.78636052764448e-05 0.015058415016400829 4.066831364918472e-05 0.0005325824855532036 1.4383473654398543e-06 0.01505841501640083 4.066831364918472e-05 0.019159149100498422 7.911624773828427e-05']
['59866.45865175839 0.0343681035290644 6.800025600468684e-05 0.015046397194848904 4.066465720583605e-05 0.0005321574420631625 1.438218045210282e-06 0.015046397194848904 4.066465720583605e-05 0.019321706334215497 7.92316171889171e-05']
['59866.458683296354 0.03414925109265477 6.78267901370344e-05 0.015039187231615793 4.067281580031546e-05 0.0005319024417769268 1.4385065964636329e-06 0.015039187231615793 4.067281580031546e-05 0.01911006386103898 7.908698632151625e-05']
['59866.45871483432 0.034272495356771925 6.792522063743375e-05 0.015044767952703354 4.067028653213381e-05 0.0005320998194096163 1.43841714190063e-06 0.015044767952703356 4.067028653213381e-05 0.01922772740406857 7.917011939646119e-05']
['59866.45874637228 0.034220468646944426 6.791017861989002e-05 0.015014217610189418 4.065580632451669e-05 0.0005310193220708955 1.4379050093185715e-06 0.01501421761018942 4.065580632451669e-05 0.019206251036755006 7.914977541397055e-05']
['59866.458777910244 0.03416376076357611 6.786883286763325e-05 0.01497483755161475 4.064635707674571e-05 0.0005296265374083606 1.437570810542738e-06 0.014974837551614748 4.064635707674571e-05 0.019188923211961365 7.910944835116127e-05']
['59866.45880944821 0.03423054016213164 6.7921161683856e-05 0.015024493520425989 4.0666814388522066e-05 0.0005313827580506552 1.4382943399408668e-06 0.015024493520425987 4.0666814388522066e-05 0.01920604664170565 7.916485329358613e-05']
['59866.45884098617 0.034227513654909156 6.790113763024707e-05 0.015097699548025617 4.069079050550384e-05 0.0005339718916410114 1.4391423216150442e-06 0.015097699548025619 4.069079050550384e-05 0.01912981410688354 7.915999572665828e-05']
['59866.458872524134 0.03417877465672713 6.785742902070371e-05 0.015118808857829569 4.0697573139265675e-05 0.0005347184807522463 1.439382208212906e-06 0.015118808857829569 4.0697573139265675e-05 0.019059965798897564 7.912599530322334e-05']
['59866.45890406209 0.03430631136318012 6.794805011852705e-05 0.015109063015841175 4.069410637968286e-05 0.0005343737921017917 1.4392595966742136e-06 0.015109063015841175 4.069410637968286e-05 0.019197248347338942 7.920194321448692e-05']
['59866.45893560006 0.034171272728789476 6.785212353392331e-05 0.015023899642109583 4.0678753302399353e-05 0.0005313617539018439 1.4387165926428041e-06 0.015023899642109583 4.0678753302399353e-05 0.019147373086679895 7.911176674996114e-05']
['59866.45896713802 0.034302750201310225 6.795397423642079e-05 0.015061217419550094 4.066229443646469e-05 0.0005326816002895907 1.4381344793380956e-06 0.015061217419550096 4.066229443646469e-05 0.019241532781760128 7.919068634228325e-05']
['59866.45899867598 0.03419783511708394 6.787590353488464e-05 0.015075129378027973 4.069482719439391e-05 0.0005331736351695559 1.4392850902796173e-06 0.015075129378027973 4.069482719439391e-05 0.01912270573905597 7.914042734948142e-05']
['59866.45903021395 0.03430080908559734 6.793684131321638e-05 0.015023480441186824 4.0660190176540735e-05 0.0005313469277020648 1.4380600563673294e-06 0.015023480441186824 4.0660190176540735e-05 0.01927732864441052 7.917490431196999e-05']
['59866.459061751906 0.03439452781044425 6.804565197927339e-05 0.015073428449229173 4.0695914573321754e-05 0.0005331134771192945 1.4393235484421463e-06 0.015073428449229173 4.0695914573321754e-05 0.019321099361215073 7.928662066353626e-05']
['59866.45909328987 0.03421871056663487 6.788110894830057e-05 0.014984824431527289 4.063727243596636e-05 0.0005299797510315041 1.4372495071013497e-06 0.014984824431527289 4.063727243596636e-05 0.019233886135107583 7.911531370781515e-05']
['59866.45912482784 0.03416465443028989 6.787937669510247e-05 0.015014732015654321 4.0672345990417475e-05 0.0005310375154425605 1.4384899803375047e-06 0.015014732015654321 4.0672345990417475e-05 0.01914992241463557 7.913184889082176e-05']
['59866.459156365796 0.03427301351076915 6.793822769172569e-05 0.014993144205629885 4.065456198000393e-05 0.0005302740028479122 1.4378609996341017e-06 0.014993144205629886 4.065456198000393e-05 0.01927986930513926 7.91732037477248e-05']
['59866.45918790376 0.03424321310169933 6.789636529569956e-05 0.015051447282618398 4.0681172000359795e-05 0.0005323360523812876 1.4388021365841931e-06 0.015051447282618398 4.0681172000359795e-05 0.019191765819080935 7.9150958147643e-05']
['59866.45921944173 0.03426598956339142 6.791788133677664e-05 0.0151358889369364 4.07316146332483e-05 0.0005353225649785247 1.44058617977681e-06 0.0151358889369364 4.07316146332483e-05 0.01913010062645502 7.91953473122501e-05']
['59866.459250979686 0.03414939868190132 6.784565655963682e-05 0.015013602478236908 4.065810417881085e-05 0.0005309975662284742 1.4379862792895541e-06 0.015013602478236908 4.065810417881085e-05 0.01913579620366441 7.909560385649272e-05']
['59866.45928251765 0.034295639240149556 6.793786588966186e-05 0.015029391464796359 4.067773010025007e-05 0.0005315559873967738 1.4386804042695063e-06 0.015029391464796359 4.067773010025007e-05 0.0192662477753532 7.918479240201664e-05']
['59866.45931405561 0.03425185189634095 6.79099462835533e-05 0.015003175321191657 4.065154865214013e-05 0.0005306287809871082 1.4377544249619506e-06 0.015003175321191659 4.065154865214013e-05 0.019248676575149296 7.914738916763085e-05']
['59866.459345593576 0.0342812798065587 6.796634136521929e-05 0.01503048051147464 4.066205731518857e-05 0.0005315945045439085 1.4381260928884942e-06 0.015030480511474641 4.066205731518857e-05 0.01925079929508406 7.920117716093114e-05']
['59866.45937713154 0.034221620928480564 6.788999700816723e-05 0.015036326504032742 4.067964541646417e-05 0.0005318012642356641 1.4387481447235193e-06 0.01503632650403274 4.067964541646417e-05 0.019185294424447823 7.914471078333795e-05']
['59866.4594086695 0.03435622694441898 6.80258147910189e-05 0.014955637676303571 4.062595342634884e-05 0.0005289474807278002 1.4368491790276757e-06 0.014955637676303573 4.062595342634884e-05 0.019400589268115404 7.923370223447767e-05']
['59866.459440207465 0.034202130895659724 6.786844540086618e-05 0.015049793936317214 4.0681187484102115e-05 0.0005322775772176262 1.438802684209555e-06 0.015049793936317214 4.0681187484102115e-05 0.01915233695934251 7.912701748610914e-05']
['59866.45947174543 0.034321512022163624 6.79769503812343e-05 0.014950564151227088 4.062182728455463e-05 0.0005287680414845061 1.4367032466137987e-06 0.014950564151227088 4.062182728455463e-05 0.019370947870936538 7.918963716970155e-05']
['59866.45950328339 0.034281407466191835 6.794689827421283e-05 0.01503422992096704 4.0686349658311274e-05 0.0005317271127782177 1.4389852587745526e-06 0.015034229920967042 4.0686349658311274e-05 0.019247177545224793 7.919696985115398e-05']
['59866.459534821355 0.0341625343054811 6.784653872490697e-05 0.01501404598054993 4.067241993019912e-05 0.0005310132519141164 1.4384925954223357e-06 0.015014045980549928 4.067241993019912e-05 0.01914848832493117 7.910372026604539e-05']
['59866.45956635931 0.03436456877515217 6.798606882773981e-05 0.014976090727571317 4.063673762772701e-05 0.000529670859441261 1.4372305921291499e-06 0.014976090727571317 4.063673762772701e-05 0.019388478047580853 7.92051134692382e-05']
['59866.45959789728 0.034309573168818136 6.794683996736247e-05 0.015089732435290019 4.069531278405363e-05 0.0005336901126690022 1.4393022645006527e-06 0.015089732435290017 4.069531278405363e-05 0.01921984073352812 7.920152488520865e-05']
['59866.459629435245 0.03424959958533889 6.791207164484917e-05 0.015059423962655697 4.067443876183229e-05 0.0005326181697273761 1.438563996985378e-06 0.015059423962655697 4.067443876183229e-05 0.01919017562268319 7.916097172019284e-05']
['59866.4596609732 0.034134245966248075 6.781153505290947e-05 0.0150332491445982 4.068326699226282e-05 0.000531692424909958 1.438876231765772e-06 0.0150332491445982 4.068326699226282e-05 0.019100996821649875 7.907927983609683e-05']
['59866.45969251117 0.03426773899184231 6.793060858856172e-05 0.015010511114811047 4.0655932174680466e-05 0.0005308882316128921 1.437909460357606e-06 0.015010511114811047 4.0655932174680466e-05 0.019257227877031262 7.916736956729454e-05']
['59866.459724049135 0.034211623609569766 6.790997719206345e-05 0.014909074915850947 4.060099051884311e-05 0.000527300659952236 1.435966296778013e-06 0.014909074915850947 4.060099051884311e-05 0.01930254869371882 7.912146000509448e-05']
['59866.45975558709 0.0343052006491792 6.796291823768336e-05 0.014987135426009959 4.0633481873745105e-05 0.0005300614857415874 1.4371154433869918e-06 0.014987135426009957 4.0633481873745105e-05 0.019318065223169242 7.918357218871857e-05']
['59866.45978712506 0.034200510688195386 6.78773372760601e-05 0.015043158683864997 4.068553999054638e-05 0.0005320429031673077 1.4389566226352092e-06 0.015043158683864995 4.068553999054638e-05 0.019157352004330393 7.913688191993898e-05']
['59866.45981866302 0.03419000639911997 6.787782063620687e-05 0.015029698089078605 4.0666235846424604e-05 0.0005315668320123719 1.4382738781998449e-06 0.015029698089078605 4.0666235846424604e-05 0.01916030831004136 7.912737372261322e-05']
['59866.45985020098 0.034251992013574276 6.792163412769998e-05 0.014965661008475184 4.064083524099472e-05 0.0005293019835858811 1.437375515552802e-06 0.014965661008475182 4.064083524099472e-05 0.01928633100509909 7.915191641181417e-05']
['59866.45988173895 0.034253257485483454 6.791398723784488e-05 0.014993558964871395 4.065264750722333e-05 0.000530288671955352 1.4377932890104468e-06 0.014993558964871395 4.065264750722333e-05 0.01925969852061206 7.915142078250213e-05']
['59866.45991327691 0.034177616547201216 6.78538765520962e-05 0.015066282672107556 4.0671621640834895e-05 0.0005328607469523749 1.4384643617115948e-06 0.015066282672107556 4.0671621640834895e-05 0.01911133387509366 7.910960352600903e-05']
['59866.45994481487 0.03423925921293028 6.789774702986058e-05 0.01516163845859499 4.0734217942231455e-05 0.000536233268012795 1.440678252997491e-06 0.01516163845859499 4.0734217942231455e-05 0.01907762075433529 7.91794200729972e-05']
['59866.45997635284 0.03431099405455945 6.796183469368252e-05 0.015044378925535904 4.067381360507076e-05 0.0005320860603881281 1.4385418865878656e-06 0.015044378925535904 4.067381360507076e-05 0.01926661512902355 7.92033464451564e-05']
['59866.4600078908 0.03427586361162389 6.792725416241934e-05 0.014952846803180141 4.0616829672983546e-05 0.0005288487737826588 1.4365264922615338e-06 0.014952846803180141 4.0616829672983546e-05 0.019323016808443748 7.914441680074516e-05']
['59866.46003942876 0.03433125300143568 6.79807722057974e-05 0.015062243367347248 4.0685832751448224e-05 0.0005327178857703176 1.4389669769340253e-06 0.015062243367347248 4.0685832751448224e-05 0.01926900963408843 7.922576838614653e-05']
['59866.46007096672 0.03427709461706375 6.792952482050061e-05 0.014980180806031777 4.064609259186699e-05 0.0005298155163756201 1.4375614563036666e-06 0.014980180806031777 4.064609259186699e-05 0.01929691381103197 7.916138695933537e-05']
['59866.46010250469 0.03433593794862838 6.797790576254296e-05 0.014980712277805182 4.0635848735490485e-05 0.0005298343133444759 1.4371991539973012e-06 0.014980712277805182 4.0635848735490485e-05 0.0193552256708232 7.919765068684068e-05']
['59866.46013404265 0.034253329020153295 6.79238070098506e-05 0.015024840528944679 4.066887678969995e-05 0.0005313950309664429 1.438367282461333e-06 0.015024840528944679 4.066887678969995e-05 0.019228488491208617 7.916818235912217e-05']
['59866.46016558061 0.03418768647872716 6.788729857309162e-05 0.015043527118302058 4.069508645985377e-05 0.0005320559338699441 1.4392942599195084e-06 0.015043527118302058 4.069508645985377e-05 0.0191441593604251 7.915033398241009e-05']
['59866.46019711858 0.034298191617033784 6.794771554698548e-05 0.015052950836609093 4.067889136517901e-05 0.0005323892297256931 1.4387214756147684e-06 0.015052950836609095 4.067889136517901e-05 0.019245240780424687 7.919383972730509e-05']
['59866.46022865654 0.034294350199909805 6.795958391389898e-05 0.014937064733925377 4.0610258277269315e-05 0.0005282905972639667 1.4362940766813266e-06 0.014937064733925379 4.0610258277269315e-05 0.019357285465984427 7.916879513480546e-05']
['59866.4602601945 0.034284797438828445 6.795737818081345e-05 0.015025127121208041 4.0664152082804475e-05 0.000531405167094302 1.4382001801375385e-06 0.015025127121208041 4.0664152082804475e-05 0.019259670317620402 7.919456113789349e-05']
['59866.46029173247 0.03419157426260169 6.789250174087151e-05 0.014946566979099579 4.062822249085241e-05 0.0005286266704395101 1.436929430768106e-06 0.014946566979099579 4.062822249085241e-05 0.019245007283502112 7.912044145099575e-05']
['59866.460323270425 0.03413591909648008 6.783506334541541e-05 0.014972718151806319 4.062799748838702e-05 0.0005295515789737163 1.4369214729337561e-06 0.014972718151806319 4.062799748838702e-05 0.01916320094467376 7.907104399837466e-05']
['59866.46035480839 0.03428362076497377 6.793241032807039e-05 0.01499456807228016 4.0665199886180136e-05 0.0005303243618291777 1.438237238601233e-06 0.01499456807228016 4.0665199886180136e-05 0.019289052692693612 7.917367526371571e-05']
['59866.460386346356 0.03427540288685289 6.793277720558137e-05 0.015113366891919066 4.071581022409098e-05 0.0005345260105800698 1.440027213145691e-06 0.015113366891919066 4.071581022409098e-05 0.019162035994933827 7.919999634512206e-05']
['59866.460417884315 0.034249702543072566 6.794789656895983e-05 0.01500600947024332 4.06533409277276e-05 0.0005307290185051152 1.4378178137439793e-06 0.01500600947024332 4.06533409277276e-05 0.019243693072829245 7.918087380631837e-05']
['59866.46044942228 0.03440488901233379 6.801808099123856e-05 0.015061743665074163 4.068035427400759e-05 0.0005327002124176875 1.4387732154306265e-06 0.015061743665074163 4.068035427400759e-05 0.019343145347259623 7.925497186668768e-05']
['59866.460480960246 0.03434754343510387 6.796777394628107e-05 0.01506631095073176 4.067138790757706e-05 0.000532861747104114 1.4384560950886284e-06 0.01506631095073176 4.067138790757706e-05 0.01928123248437211 7.920719720796444e-05']
['59866.460512498204 0.03426073497804149 6.791447653765202e-05 0.015014379305143101 4.066002950198065e-05 0.0005310250408600404 1.4380543736672259e-06 0.015014379305143103 4.066002950198065e-05 0.019246355672898386 7.915563228529745e-05']
['59866.46054403617 0.034276786903123586 6.794471399075805e-05 0.015038726258445113 4.067680528918783e-05 0.0005318861381860943 1.438647695769066e-06 0.015038726258445113 4.067680528918783e-05 0.01923806064467847 7.919019287651983e-05']
['59866.46057557413 0.03421415298474887 6.788154230483069e-05 0.015088563511848816 4.0712173694991325e-05 0.0005336487704592771 1.4398985972386006e-06 0.015088563511848816 4.0712173694991325e-05 0.019125589472900054 7.915418417654029e-05']
['59866.460607112094 0.034223227667666715 6.790913763607627e-05 0.014997365342420313 4.064064147531352e-05 0.0005304232950225041 1.4373686624936987e-06 0.014997365342420313 4.064064147531352e-05 0.019225862325246403 7.914109371243567e-05']
['59866.46063865006 0.03431009061764016 6.796353225167089e-05 0.015118904254954426 4.07131062480291e-05 0.0005347218547353524 1.4399315795554133e-06 0.015118904254954425 4.07131062480291e-05 0.019191186362685738 7.922498808133213e-05']
['59866.46067018802 0.034189168911382586 6.785743354896711e-05 0.015007825820008983 4.0656682246387435e-05 0.0005307932587370239 1.4379359887175698e-06 0.015007825820008985 4.0656682246387435e-05 0.0191813430913736 7.910497518573786e-05']
['59866.460701725984 0.03425423278948783 6.791758996279283e-05 0.015059701403858861 4.0687144466735075e-05 0.0005326279822026874 1.43901336937221e-06 0.01505970140385886 4.0687144466735075e-05 0.019194531385628974 7.917223472411922e-05']
['59866.46073326395 0.034244294893961094 6.78959454611313e-05 0.014995644657219073 4.0655024663564766e-05 0.0005303624382324414 1.4378773637176116e-06 0.014995644657219075 4.0655024663564766e-05 0.01924865023674202 7.913716219612613e-05']
['59866.46076480191 0.03417068681892864 6.784837087811311e-05 0.01502491041201432 4.065283749912826e-05 0.0005313975025744366 1.437800008599517e-06 0.015024910412014317 4.065283749912826e-05 0.01914577640691432 7.909522506159595e-05']
['59866.460796339874 0.03434439306940776 6.798162569492091e-05 0.014995021026928564 4.0656815045621914e-05 0.0005303403818227977 1.4379406855297045e-06 0.014995021026928564 4.0656815045621914e-05 0.019349372042479194 7.921160294917809e-05']
['59866.46082787783 0.03421131842852736 6.787342049641214e-05 0.015007721516368701 4.064245801276501e-05 0.0005307895697503719 1.4374329093636357e-06 0.0150077215163687 4.064245801276501e-05 0.019203596912158657 7.91113809966818e-05']
['59866.4608594158 0.03425431733393546 6.790011223182867e-05 0.014960931752129591 4.062084415016053e-05 0.0005291347203582033 1.4366684753474555e-06 0.01496093175212959 4.062084415016053e-05 0.01929338558180587 7.912318383739724e-05']
['59866.460890953764 0.03422228747133133 6.789531087341754e-05 0.014986050491667464 4.0640085837856134e-05 0.000530023114038579 1.4373490108386078e-06 0.014986050491667466 4.0640085837856134e-05 0.019236236979663868 7.91289442334872e-05']
['59866.46092249172 0.03428771777907545 6.792964713976726e-05 0.015082238713082764 4.0686308263671896e-05 0.0005334250764620151 1.4389837947386693e-06 0.015082238713082764 4.0686308263671896e-05 0.019205479065992688 7.918214849737172e-05']
['59866.46095402969 0.0342623135246972 6.791087202057415e-05 0.014988831271034281 4.064814144322227e-05 0.0005301214639901072 1.4376339195971895e-06 0.014988831271034283 4.064814144322227e-05 0.019273482253662915 7.914643353546011e-05']
['59866.46098556765 0.03422623668014586 6.790062200445857e-05 0.015024020475422784 4.065251222725982e-05 0.0005313660275060852 1.4377885044604702e-06 0.015024020475422784 4.065251222725982e-05 0.01920221620472308 7.913988387014396e-05']
['59866.46101710561 0.03423612371600592 6.791944829169856e-05 0.015018284639242322 4.064713255185718e-05 0.0005311631637992218 1.4375982373643458e-06 0.015018284639242324 4.064713255185718e-05 0.019217839076763596 7.915327435385704e-05']
['59866.46104864358 0.03409456631476066 6.778789957409232e-05 0.015069825901409673 4.068969022564665e-05 0.0005329860630541393 1.439103407175476e-06 0.015069825901409673 4.068969022564665e-05 0.01902474041335099 7.90623185805116e-05']
['59866.461080181536 0.034289255306979835 6.795830176572565e-05 0.015002831303316155 4.0639119611964324e-05 0.0005306166138436863 1.4373148375882023e-06 0.015002831303316153 4.0639119611964324e-05 0.019286424003663684 7.918250325492984e-05']
['59866.4611117195 0.03416143638815755 6.786307126070339e-05 0.015010371854801105 4.0650460217297924e-05 0.0005308833062975683 1.4377159294540904e-06 0.015010371854801103 4.0650460217297924e-05 0.019151064533356448 7.910661386264379e-05']
['59866.46114325747 0.034414694320129384 6.802601400745081e-05 0.015042690985672052 4.067648690226478e-05 0.0005320263617274672 1.4386364351351505e-06 0.015042690985672052 4.067648690226478e-05 0.019372003334457332 7.925979541010696e-05']
['59866.461174795426 0.03420654690186052 6.790374192677645e-05 0.015028076015602188 4.0663995549495876e-05 0.0005315094628986319 1.4381946439042447e-06 0.015028076015602188 4.0663995549495876e-05 0.019178470886258334 7.914845988209548e-05']
['59866.46120633339 0.03429071264883457 6.791250732222507e-05 0.015096944066702377 4.0690318930369925e-05 0.0005339451719550098 1.439125643056466e-06 0.015096944066702377 4.0690318930369925e-05 0.019193768582132193 7.916950615891509e-05']
['59866.46123787136 0.034233157155662566 6.788816212436108e-05 0.015065516751878555 4.068730251140772e-05 0.000532833658065606 1.4390189590590725e-06 0.015065516751878553 4.068730251140772e-05 0.019167640403784013 7.914707285982433e-05']
['59866.461269409316 0.0342573972369405 6.79441277845034e-05 0.014992220037129961 4.065651384926994e-05 0.0005302413170734649 1.4379300328878694e-06 0.014992220037129961 4.065651384926994e-05 0.019265177199810538 7.917926886990562e-05']
['59866.46130094728 0.03421068436329291 6.79006639966605e-05 0.014988787480588 4.063918699693203e-05 0.0005301199152198881 1.4373172208439135e-06 0.014988787480587998 4.063918699693203e-05 0.01922189688270491 7.913307583405941e-05']
['59866.46133248524 0.03425000600614848 6.792327060394829e-05 0.015052751066972129 4.067869459254863e-05 0.0005323821643200924 1.4387145162065928e-06 0.015052751066972129 4.067869459254863e-05 0.019197254939176348 7.917276604547192e-05']
['59866.461364023206 0.03413499793961265 6.78270844690411e-05 0.014980174352320222 4.063670428068591e-05 0.0005298152881222656 1.4372294127188323e-06 0.014980174352320224 4.063670428068591e-05 0.019154823587292428 7.906867345773769e-05']
['59866.46139556117 0.03424984912937041 6.791984607182526e-05 0.015018689065183064 4.066321586307315e-05 0.0005311774674409069 1.4381670681379696e-06 0.015018689065183062 4.066321586307315e-05 0.019231160064187347 7.916187601836707e-05']
['59866.46142709913 0.03421583161578044 6.786852207607934e-05 0.015023588187826288 4.067381203074902e-05 0.0005313507384599031 1.4385418309076242e-06 0.015023588187826288 4.067381203074902e-05 0.019192243427954156 7.912329160180315e-05']
['59866.461458637095 0.034183938960491635 6.786217368079384e-05 0.014951576558296265 4.0615525795804584e-05 0.0005288038480599463 1.436480377039708e-06 0.014951576558296263 4.0615525795804584e-05 0.01923236240219537 7.908789763517485e-05']
['59866.46149017506 0.03430803489394707 6.795065970354727e-05 0.014996749906056988 4.06537229989135e-05 0.0005304015284137526 1.4378313267479455e-06 0.014996749906056988 4.06537229989135e-05 0.01931128498789008 7.918344112135864e-05']
['59866.46152171302 0.03427029928697183 6.793488907909546e-05 0.015075944880645679 4.069997031439974e-05 0.0005332024776746031 1.4394669909400268e-06 0.015075944880645679 4.069997031439974e-05 0.019194354406326154 7.919366602059805e-05']
['59866.461553250985 0.034333307690188594 6.798456565122893e-05 0.014951121012879908 4.061771968771823e-05 0.0005287877364366539 1.4365579700936337e-06 0.01495112101287991 4.061771968771823e-05 0.019382186677308684 7.919406745089123e-05']
['59866.46158478894 0.034253130091265335 6.792584575077959e-05 0.01502753994393017 4.0673347095620124e-05 0.0005314905032416423 1.438525387191184e-06 0.01502753994393017 4.0673347095620124e-05 0.019225590147335166 7.917222799011968e-05']
['59866.46161632691 0.03424648435332917 6.792921295149958e-05 0.015040128507171166 4.066663541520002e-05 0.0005319357325896933 1.4382880100544479e-06 0.015040128507171168 4.066663541520002e-05 0.019206355846158006 7.917166922708513e-05']
['59866.461647864875 0.03419505673534668 6.787840531108536e-05 0.01496653477623261 4.063522176769663e-05 0.0005293328867987052 1.437176979547623e-06 0.014966534776232608 4.063522176769663e-05 0.01922852195911407 7.911194066438938e-05']
['59866.46167940283 0.034211188987962604 6.78853682944016e-05 0.0150483208872169 4.066419971026573e-05 0.000532225478763019 1.438201864614402e-06 0.0150483208872169 4.066419971026573e-05 0.019162868100745703 7.913280208954389e-05']
['59866.4617109408 0.03415684959222131 6.787060128383484e-05 0.015009557607996962 4.064820642406401e-05 0.0005308545082078403 1.4376362178243382e-06 0.015009557607996962 4.064820642406401e-05 0.019147291984224348 7.911191568987951e-05']
['59866.461742478765 0.034313851614595096 6.798976460984715e-05 0.015050253844841025 4.067095040644795e-05 0.0005322938431542783 1.4384406216514492e-06 0.015050253844841023 4.067095040644795e-05 0.019263597769754073 7.922584362861762e-05']
['59866.46177401672 0.034219454815638484 6.790901049084954e-05 0.015025778450292616 4.067890017272658e-05 0.0005314282031483885 1.4387217871180423e-06 0.015025778450292614 4.067890017272658e-05 0.01919367636534587 7.916063810448326e-05']
['59866.46180555469 0.03420000997211216 6.790587261128234e-05 0.01499812616599995 4.064730647504711e-05 0.0005304502036521752 1.437604388638878e-06 0.01499812616599995 4.064730647504711e-05 0.019201883806112208 7.914171503559998e-05']
['59866.46183709265 0.03421338599590521 6.789335648551111e-05 0.015013408596161912 4.064643432681027e-05 0.0005309907090527826 1.437573542704878e-06 0.015013408596161914 4.064643432681027e-05 0.019199977399743298 7.913052810611335e-05']
['59866.46186863061 0.03421048575233743 6.786645907988429e-05 0.01500911230951041 4.066694875924998e-05 0.0005308387589955545 1.4382990923332121e-06 0.01500911230951041 4.066694875924998e-05 0.01920137344282702 7.911799409381579e-05']
['59866.46190016858 0.03436472267057337 6.800544321849347e-05 0.015067294624388083 4.06699021020517e-05 0.0005328965374429569 1.4384035454677764e-06 0.015067294624388085 4.06699021020517e-05 0.019297428046185283 7.923876099696542e-05']
['59866.46193170654 0.034251873093357 6.790829361032029e-05 0.015019535811104224 4.066221026003267e-05 0.0005312074149517726 1.4381315022058184e-06 0.015019535811104223 4.066221026003267e-05 0.019232337282252775 7.915144777132363e-05']
['59866.4619632445 0.0342001355050181 6.788132346978013e-05 0.015049543410803223 4.0655074430082936e-05 0.0005322687166900879 1.4378791238481375e-06 0.015049543410803225 4.0655074430082936e-05 0.01915059209421488 7.912464314563767e-05']
['59866.46199478247 0.034388504165751496 6.804779065040862e-05 0.014999772023367504 4.065778971475545e-05 0.0005305084139489909 1.4379751573987003e-06 0.014999772023367506 4.065778971475545e-05 0.019388732142383992 7.92688947626439e-05']
['59866.46202632043 0.034219840790097225 6.788770786029427e-05 0.0149892679830061 4.065625167698553e-05 0.0005301369095165566 1.4379207604400903e-06 0.0149892679830061 4.065625167698553e-05 0.019230572807091124 7.913072525224984e-05']
['59866.46205785839 0.034204299227444106 6.787114398180678e-05 0.014978396785562528 4.062265447280545e-05 0.0005297524195586738 1.4367325024135733e-06 0.014978396785562528 4.062265447280545e-05 0.019225902441881576 7.909925563376742e-05']
['59866.46208939635 0.03427346744035218 6.793328031729279e-05 0.015039462417977592 4.0684858175820315e-05 0.0005319121745035383 1.4389325083721146e-06 0.015039462417977592 4.0684858175820315e-05 0.019234005022374587 7.918452032723626e-05']
['59866.46212093432 0.03427953346179862 6.792431877902121e-05 0.015023468702844791 4.066554888450187e-05 0.0005313465125431408 1.4382495818919075e-06 0.015023468702844791 4.066554888450187e-05 0.01925606475895383 7.916691194982855e-05']
['59866.46215247228 0.034198659399000166 6.78850843365283e-05 0.015028942737926968 4.066794400594867e-05 0.000531540116930249 1.4383342919846993e-06 0.015028942737926968 4.066794400594867e-05 0.0191697166610732 7.913448265483598e-05']
['59866.46218401024 0.034426641172438724 6.805181349158286e-05 0.015046685092848577 4.066781171629551e-05 0.0005321676243719968 1.4383296131953171e-06 0.015046685092848578 4.066781171629551e-05 0.019379956079590144 7.927748879275403e-05']
['59866.46221554821 0.03421260266690878 6.789428952418541e-05 0.015083310403736156 4.0695798159512295e-05 0.0005334629797653379 1.4393194311458752e-06 0.015083310403736155 4.0695798159512295e-05 0.019129292263172625 7.915669610231138e-05']
['59866.46224708617 0.03432053791730608 6.796322557000422e-05 0.01505456164667146 4.0670589225771706e-05 0.0005324462004776503 1.4384278474981216e-06 0.01505456164667146 4.0670589225771706e-05 0.019265976270634623 7.920288415108842e-05']
['59866.46227862413 0.034206334632567205 6.787661007090057e-05 0.01496660055628043 4.063250211699746e-05 0.0005293352132919869 1.4370807915804552e-06 0.01496660055628043 4.063250211699746e-05 0.019239734076286777 7.910900342568402e-05']
['59866.4623101621 0.034325124578054554 6.796536181455299e-05 0.015039190462693277 4.0680138771036475e-05 0.0005319025560529164 1.438765593572159e-06 0.015039190462693277 4.0680138771036475e-05 0.019285934115361277 7.920962124018699e-05']
['59866.462341700055 0.03437341378061571 6.798711273937163e-05 0.015044468822288876 4.065349061461592e-05 0.0005320892398353733 1.4378231078346886e-06 0.015044468822288876 4.065349061461592e-05 0.019328944958326835 7.921460596246562e-05']
['59866.46237323802 0.034171099389260544 6.78430308764329e-05 0.014988295521315781 4.064187892597316e-05 0.0005301025157198939 1.4374124283579908e-06 0.01498829552131578 4.064187892597316e-05 0.019182803867944763 7.908501224084176e-05']
['59866.462404775986 0.03432817895165386 6.796917413116465e-05 0.015035513386874665 4.067953200578593e-05 0.0005317725060989928 1.4387441336412878e-06 0.015035513386874663 4.067953200578593e-05 0.019292665564779196 7.921258079549197e-05']
['59866.462436313945 0.03434514644160804 6.798851992773524e-05 0.01507071420674291 4.068855938849635e-05 0.0005330174804285303 1.4390634119927422e-06 0.015070714206742908 4.068855938849635e-05 0.019274432234865135 7.923381668880558e-05']
['59866.46246785191 0.03430702819089439 6.793216255040033e-05 0.015081859020499255 4.068073207242432e-05 0.0005334116475838994 1.4387865773162965e-06 0.015081859020499255 4.068073207242432e-05 0.019225169170395132 7.918144145393153e-05']
['59866.462499389876 0.03418827276398917 6.78653113289223e-05 0.01498207422351975 4.065260837152018e-05 0.0005298824823206307 1.4377919048680892e-06 0.014982074223519751 4.065260837152018e-05 0.01920619854046942 7.91096394201095e-05']
['59866.462530927834 0.034243908441123336 6.792537724615924e-05 0.015031926839857011 4.0672711633197655e-05 0.0005316456579464393 1.4385029123054761e-06 0.015031926839857011 4.0672711633197655e-05 0.019211981601266324 7.917149957926968e-05']
['59866.4625624658 0.03422419762851954 6.789507004085303e-05 0.014989404160660809 4.064177828866551e-05 0.0005301417258158645 1.4374088690413304e-06 0.014989404160660807 4.064177828866551e-05 0.01923479346785873 7.912960683787947e-05']
['59866.46259400376 0.034136269927101635 6.783452817449183e-05 0.015016860763558551 4.0646049542370515e-05 0.0005311128044984616 1.4375599337391862e-06 0.015016860763558551 4.0646049542370515e-05 0.019119409163543086 7.907986188693532e-05']
['59866.462625541724 0.0341845237927907 6.781591659612791e-05 0.014959975557789199 4.0637619168113405e-05 0.0005291009019013522 1.4372617702424899e-06 0.014959975557789197 4.0637619168113405e-05 0.019224548235001505 7.905956384540453e-05']
['59866.46265707969 0.03438052151035219 6.802932168603277e-05 0.01502679943069442 4.067453708026628e-05 0.0005314643129434434 1.4385674742886591e-06 0.015026799430694418 4.067453708026628e-05 0.01935372207965777 7.926163369345654e-05']
['59866.46268861765 0.03437061845109478 6.801831051158995e-05 0.014941770707990113 4.060764836413566e-05 0.0005284570370494033 1.4362017698866017e-06 0.014941770707990111 4.060764836413566e-05 0.019428847743104667 7.921787469073099e-05']
['59866.462720155614 0.03424102664916223 6.791311994705474e-05 0.015052980983261516 4.06812148185876e-05 0.0005323902959454154 1.4388036509692174e-06 0.015052980983261516 4.06812148185876e-05 0.019188045665900717 7.916535290175315e-05']
['59866.46275169358 0.03433066635804435 6.796652516090766e-05 0.015145137367841002 4.071884367463156e-05 0.0005356496613105939 1.4401344995119485e-06 0.015145137367841004 4.071884367463156e-05 0.019185528990203343 7.92305040539777e-05']
['59866.46278323154 0.03420063797709434 6.788253100257423e-05 0.015106937588631046 4.0704236510303064e-05 0.0005342986204914197 1.4396178767547407e-06 0.015106937588631046 4.0704236510303064e-05 0.019093700388463294 7.91509499955758e-05']
['59866.462814769504 0.03429476469658446 6.794421680496854e-05 0.015093848975423383 4.07046699082176e-05 0.0005338357054935936 1.4396332050703904e-06 0.015093848975423383 4.07046699082176e-05 0.01920091572116108 7.920408290976875e-05']
['59866.46284630746 0.03429364517852815 6.7960251278756e-05 0.015112672515138457 4.070081626386992e-05 0.0005345014520251805 1.4394969102822013e-06 0.015112672515138459 4.070081626386992e-05 0.019180972663389688 7.921585825083861e-05']
['59866.46287784543 0.034282386246582544 6.793526582846182e-05 0.015096512782318926 4.0707723664870665e-05 0.000533929918390231 1.439741209618465e-06 0.015096512782318928 4.0707723664870665e-05 0.019185873464263616 7.919797414807554e-05']
['59866.462909383394 0.03426893035213346 6.791267968772095e-05 0.015110162335489568 4.071571245773048e-05 0.0005344126725809206 1.4400237553680153e-06 0.015110162335489568 4.071571245773048e-05 0.019158768016643887 7.91827083605226e-05']
['59866.46294092135 0.03419600800357601 6.788016995021745e-05 0.014979442380592777 4.0637405741889736e-05 0.0005297893999181264 1.4372542218339383e-06 0.014979442380592779 4.0637405741889736e-05 0.01921656562298323 7.911457651976264e-05']
['59866.46297245932 0.034323815479806785 6.798382552572135e-05 0.015061819966725749 4.067279235246633e-05 0.0005327029110365799 1.4385057671656122e-06 0.015061819966725747 4.067279235246633e-05 0.01926199551308104 7.922169255234684e-05']
['59866.46300399728 0.03425544865287173 6.792286157560424e-05 0.015007110112637275 4.0661779102471254e-05 0.0005307679457667983 1.4381162531264515e-06 0.015007110112637275 4.0661779102471254e-05 0.019248338540234455 7.916372530646131e-05']
['59866.46303553524 0.03423117315678496 6.788920384514028e-05 0.015013180018884218 4.0658523212383916e-05 0.0005309826247853107 1.4380010995705484e-06 0.015013180018884218 4.0658523212383916e-05 0.01921799313790074 7.91331757769077e-05']
['59866.46306707321 0.034182446002590385 6.786368732763163e-05 0.015007288906590609 4.0656041577222275e-05 0.0005307742693093468 1.4379133296810094e-06 0.015007288906590607 4.0656041577222275e-05 0.019175157095999776 7.911001058293051e-05']
['59866.463098611166 0.0342727398495669 6.791768251798236e-05 0.015058007558707363 4.067668105354232e-05 0.0005325680746852001 1.4386433018319345e-06 0.015058007558707363 4.067668105354232e-05 0.019214732290859536 7.916693741799702e-05']
['59866.46313014913 0.03435507718191414 6.799325618043827e-05 0.01506377348209003 4.06804184161358e-05 0.0005327720025091647 1.438775483994352e-06 0.015063773482090032 4.06804184161358e-05 0.01929130369982411 7.923370071207446e-05']
['59866.4631616871 0.034252061988809264 6.79332948606435e-05 0.01508500064013434 4.069402346342294e-05 0.0005335227596492858 1.439256664111407e-06 0.015085000640134343 4.069402346342294e-05 0.01916706134867492 7.918924230136786e-05']
['59866.463193225056 0.034261579757800434 6.792595508727084e-05 0.015113532653152593 4.071160883997966e-05 0.0005345318731844451 1.4398786195792145e-06 0.015113532653152592 4.071160883997966e-05 0.01914804710464784 7.919198487762158e-05']
['59866.46322476302 0.03425583641713337 6.791698824608241e-05 0.01505310181352419 4.0675854593338864e-05 0.0005323945694417665 1.438614071781568e-06 0.01505310181352419 4.0675854593338864e-05 0.019202734603609176 7.916591715705025e-05']
['59866.46325630099 0.03412767604853663 6.781725402442158e-05 0.014973354880395041 4.062959408541849e-05 0.0005295740986408947 1.4369779410025749e-06 0.014973354880395041 4.062959408541849e-05 0.019154321168141586 7.90565864362913e-05']
['59866.463287838946 0.03423233214957106 6.79243509479543e-05 0.015073031906825005 4.0683831971300944e-05 0.0005330994523006792 1.4388962138116965e-06 0.015073031906825005 4.0683831971300944e-05 0.019159300242746057 7.917633254685335e-05']
['59866.46331937691 0.03425524094873592 6.791355639822438e-05 0.014998425071379044 4.066565865552694e-05 0.0005304607752674196 1.4382534642477404e-06 0.014998425071379044 4.066565865552694e-05 0.019256815877356878 7.915773453392055e-05']
['59866.46335091487 0.03432519841668339 6.79711296349576e-05 0.01512146777923597 4.071037493313907e-05 0.0005348125208600511 1.4398349790518826e-06 0.015121467779235972 4.071037493313907e-05 0.019203730637447416 7.923010217744875e-05']
['59866.463382452836 0.03414588433341538 6.784607974617719e-05 0.015121980287952988 4.071826367280543e-05 0.0005348306471479825 1.4401139861435862e-06 0.01512198028795299 4.071826367280543e-05 0.019023904045462392 7.912690777133111e-05']
['59866.4634139908 0.034247461752437154 6.790170928255538e-05 0.01498396373894092 4.0645219451528436e-05 0.000529949310258259 1.4375305752812457e-06 0.01498396373894092 4.0645219451528436e-05 0.019263498013496236 7.913707088182866e-05']
['59866.46344552876 0.03433203210482005 6.793731315151386e-05 0.015077394723759933 4.068297076090967e-05 0.0005332537553853457 1.438865754724849e-06 0.015077394723759935 4.068297076090967e-05 0.019254637381060112 7.918701047633943e-05']
['59866.463477066725 0.03423416951873223 6.789568833210499e-05 0.015059399511518717 4.066893123506204e-05 0.0005326173049453062 1.4383692080721121e-06 0.015059399511518717 4.066893123506204e-05 0.019174770007213515 7.914408671462791e-05']
['59866.46350860469 0.03421919100358227 6.785972361353358e-05 0.015028824407315837 4.0650920995924563e-05 0.0005315359318409866 1.437732226164335e-06 0.015028824407315837 4.0650920995924563e-05 0.019190366596266432 7.910397882990506e-05']
['59866.46354014265 0.03419243757165934 6.788209158085455e-05 0.0149883481871635 4.0644270804530214e-05 0.0005301043783932266 1.43749702375702e-06 0.0149883481871635 4.0644270804530214e-05 0.01920408938449584 7.911975168454153e-05']
['59866.463571680615 0.034246538740503596 6.79013413785704e-05 0.015020596410330347 4.0666665652441655e-05 0.0005312449259761009 1.4382890794781081e-06 0.015020596410330347 4.0666665652441655e-05 0.01922594233017325 7.914777227627215e-05']
['59866.46360321857 0.03416193191760131 6.784663113829642e-05 0.015039973640358303 4.067291877026102e-05 0.0005319302552966292 1.4385102382804833e-06 0.015039973640358301 4.067291877026102e-05 0.019121958277243008 7.910405601553125e-05']
['59866.46363475654 0.0342025597515148 6.789750097354008e-05 0.01499810630783019 4.0657043388550464e-05 0.0005304495013130912 1.4379487615087708e-06 0.014998106307830189 4.0657043388550464e-05 0.019204453443684613 7.913953383455295e-05']
['59866.463666294505 0.034265303234386306 6.790889448299348e-05 0.015027970628205482 4.0668702142662274e-05 0.0005315057355819374 1.4383611055859237e-06 0.015027970628205484 4.0668702142662274e-05 0.019237332606180824 7.91552985205092e-05']
['59866.46369783246 0.034349905417983585 6.795728917335243e-05 0.015030289239243709 4.065519615204296e-05 0.0005315877396725688 1.4378834288818312e-06 0.015030289239243709 4.065519615204296e-05 0.019319616178739875 7.918988651306259e-05']
['59866.46372937043 0.0343592068011057 6.803856198632137e-05 0.015076710171616348 4.068098919416491e-05 0.000533229544305911 1.438795671137628e-06 0.015076710171616346 4.068098919416491e-05 0.019282496629489353 7.927287555641121e-05']
['59866.463760908395 0.034222936182947236 6.790392764411338e-05 0.01496390381169291 4.06310516011329e-05 0.0005292398354627958 1.4370294900760377e-06 0.01496390381169291 4.06310516011329e-05 0.019259032371254328 7.913169872883376e-05']
['59866.46379244635 0.03418028358456385 6.785548851283064e-05 0.014970726000319946 4.0634920866948604e-05 0.0005294811210278397 1.437166337360639e-06 0.014970726000319944 4.0634920866948604e-05 0.019209557584243905 7.90921242297744e-05']
['59866.46382398432 0.03434418481530958 6.798206481933524e-05 0.015043560321721973 4.0677138295820735e-05 0.0005320571082007012 1.4386594734694457e-06 0.015043560321721973 4.0677138295820735e-05 0.019300624493587604 7.922241297156774e-05']
['59866.46385552228 0.03421600347504291 6.791991605551477e-05 0.015085551218970197 4.0709605698526524e-05 0.0005335422323922387 1.439807772942775e-06 0.015085551218970197 4.0709605698526524e-05 0.01913045225607271 7.918577519427132e-05']
['59866.46388706024 0.03431096457887332 6.79521983262494e-05 0.015055875664947415 4.067618374561015e-05 0.0005324926743674128 1.4386257131617916e-06 0.015055875664947413 4.067618374561015e-05 0.019255088913925904 7.919629525095585e-05']
['59866.46391859821 0.03428951564908552 6.795262906706641e-05 0.01493608388666928 4.0617906513866625e-05 0.0005282559068885832 1.4365645777169707e-06 0.014936083886669279 4.0617906513866625e-05 0.019353431762416242 7.916674887031504e-05']
['59866.46395013617 0.03433145691453017 6.800020703618701e-05 0.0150377074676605 4.066930185164713e-05 0.0005318501058329059 1.4383823159524474e-06 0.0150377074676605 4.066930185164713e-05 0.019293749446869672 7.923395907099864e-05']
['59866.46398167413 0.03433756434509216 6.797514683585184e-05 0.0151036705303394 4.070182497875385e-05 0.0005341830719410898 1.4395325862733009e-06 0.015103670530339402 4.070182497875385e-05 0.019233893814752753 7.922915589577318e-05']
['59866.4640132121 0.034279961756023776 6.795734482158341e-05 0.015006795639683015 4.066984061395339e-05 0.0005307568235612118 1.438401370771157e-06 0.015006795639683013 4.066984061395339e-05 0.019273166116340765 7.919745356237132e-05']
['59866.46404475006 0.03433210027671002 6.796984024268615e-05 0.015107764651034387 4.068674683786629e-05 0.0005343278718402502 1.4389993061277696e-06 0.015107764651034387 4.068674683786629e-05 0.01922433562567563 7.921685774420052e-05']
['59866.46407628802 0.03438962190290667 6.804919302714861e-05 0.015037868188084369 4.066734965113778e-05 0.0005318557901551091 1.438313270983343e-06 0.015037868188084369 4.066734965113778e-05 0.019351753714822298 7.927500236073177e-05']
['59866.46410782598 0.03428284066320453 6.793258676700475e-05 0.015046905573128244 4.068150664063782e-05 0.0005321754222667441 1.43881397206295e-06 0.015046905573128244 4.068150664063782e-05 0.019235935090076282 7.918220335030396e-05']
['59866.46413936395 0.034248030015207445 6.79225356997896e-05 0.015014892992484657 4.066545755304568e-05 0.0005310432088332875 1.4382463517024158e-06 0.015014892992484657 4.066545755304568e-05 0.019233137022722786 7.916533517826949e-05']
['59866.46417090191 0.03425756903550215 6.793312896582987e-05 0.015029502201656055 4.068063230503314e-05 0.0005315599039120189 1.4387830487666375e-06 0.015029502201656055 4.068063230503314e-05 0.0192280668338461 7.918221931611527e-05']
['59866.46420243987 0.03433775961017259 6.800077287483871e-05 0.015007220292289637 4.064266829180892e-05 0.0005307718425748653 1.4374403464634727e-06 0.015007220292289635 4.064266829180892e-05 0.019330539317882953 7.922077756152996e-05']
['59866.46423397784 0.0342153260315308 6.788631904857869e-05 0.015005819900588158 4.0655314602658475e-05 0.0005307223138500753 1.4378876182153804e-06 0.01500581990058816 4.0655314602658475e-05 0.019209506130942643 7.9129052309544e-05']
['59866.464265515795 0.03431048298051305 6.798180234184803e-05 0.015040840473526008 4.0671509177380256e-05 0.0005319609132485129 1.4384603841305453e-06 0.015040840473526008 4.0671509177380256e-05 0.01926964250698704 7.92192975758547e-05']
['59866.46429705376 0.03425936502721382 6.79136884887921e-05 0.015036958543146291 4.068114218234212e-05 0.0005318236180465861 1.4388010819875473e-06 0.015036958543146291 4.068114218234212e-05 0.01922240648406753 7.916580330807379e-05']
['59866.46432859173 0.034277278004871715 6.79355989568557e-05 0.015020417583703628 4.0660431477742255e-05 0.0005312386012779678 1.438068590651551e-06 0.015020417583703628 4.0660431477742255e-05 0.019256860421168087 7.917396221980372e-05']
['59866.464360129685 0.03435507825309102 6.799007122088503e-05 0.015017780951981535 4.065589985939059e-05 0.0005311453495064825 1.4379083174380234e-06 0.015017780951981535 4.065589985939059e-05 0.01933729730110948 7.921838156638782e-05']
['59866.46439166765 0.03413645443974954 6.786408545710992e-05 0.014965882413322456 4.061904659455865e-05 0.0005293098141805184 1.436604899823117e-06 0.014965882413322456 4.061904659455865e-05 0.019170572026427083 7.909134618389578e-05']
['59866.464423205616 0.03432953308089015 6.796019557602257e-05 0.014937806304385754 4.0614781468132346e-05 0.0005283168249538378 1.4364540518334154e-06 0.014937806304385754 4.0614781468132346e-05 0.019391726776504397 7.917164048089054e-05']
['59866.464454743575 0.03437715600515443 6.801416060549577e-05 0.015019947233224178 4.067948944275139e-05 0.0005312219660326811 1.438742628281879e-06 0.015019947233224177 4.067948944275139e-05 0.019357208771930257 7.925116342485513e-05']
['59866.46448628154 0.03422566296462448 6.791321042998688e-05 0.015025250343116647 4.0650478696593675e-05 0.0005314095251778247 1.4377165830254823e-06 0.015025250343116648 4.0650478696593675e-05 0.01920041262150783 7.914964036033199e-05']
['59866.4645178195 0.0343345722799909 6.797389436679159e-05 0.015050109239345954 4.068162026856371e-05 0.0005322887287810919 1.4388179908287452e-06 0.015050109239345954 4.068162026856371e-05 0.019284463040644947 7.921770347001581e-05']
['59866.464549357464 0.034314689450397916 6.79789384052574e-05 0.015035775500781803 4.067863354012838e-05 0.0005317817764820982 1.4387123569189327e-06 0.015035775500781801 4.067863354012838e-05 0.019278913949616117 7.92204979370733e-05']
['59866.46458089543 0.03418633209378936 6.784523812488634e-05 0.014965458001715467 4.064633884768819e-05 0.0005292948036904833 1.4375701658217131e-06 0.014965458001715467 4.064633884768819e-05 0.01922087409207389 7.908919773233016e-05']
['59866.46461243339 0.03423249001835742 6.788334638973188e-05 0.015007025493433445 4.065802877373441e-05 0.0005307649529746717 1.4379836123805208e-06 0.015007025493433445 4.065802877373441e-05 0.01922546452492397 7.912789660312057e-05']
['59866.464643971354 0.03424936749976377 6.789786464030903e-05 0.015025675791418327 4.066551355420239e-05 0.0005314245723334341 1.4382483323381733e-06 0.015025675791418327 4.066551355420239e-05 0.01922369170834544 7.914419761006328e-05']
['59866.46467550932 0.03428517426057221 6.795718623637375e-05 0.015078079253065634 4.0681561857520415e-05 0.0005332779656570553 1.438815924960685e-06 0.015078079253065634 4.0681561857520415e-05 0.01920709500750658 7.920333728027151e-05']
['59866.46470704728 0.03427031459560491 6.79530460281127e-05 0.0150237477644609 4.0645839386542804e-05 0.0005313563823288365 1.4375525009972308e-06 0.0150237477644609 4.0645839386542804e-05 0.019246566831144007 7.918144178995125e-05']
['59866.464738585244 0.034395432985841745 6.802621547689032e-05 0.015068649170007862 4.068045737173465e-05 0.0005329444446942972 1.4387768617668229e-06 0.015068649170007862 4.068045737173465e-05 0.019326783815833883 7.926200605638135e-05']
['59866.4647701232 0.03425314206528173 6.794973975741816e-05 0.01502215887002146 4.06660648576933e-05 0.0005313001866834836 1.438267830710556e-06 0.01502215887002146 4.06660648576933e-05 0.019230983195260273 7.91889889069874e-05']
['59866.46480166117 0.03418899536421494 6.79040647094006e-05 0.015024963373571005 4.066322035373191e-05 0.0005313993757063344 1.438167226962534e-06 0.015024963373571003 4.066322035373191e-05 0.01916403199064394 7.914833853969786e-05']
['59866.464833199134 0.034287860264853684 6.79529597275341e-05 0.01509279756492086 4.071283253184955e-05 0.0005337985194538836 1.4399218988258624e-06 0.01509279756492086 4.071283253184955e-05 0.019195062699932826 7.92157779012382e-05']
['59866.46486473709 0.03435521833184826 6.79996514412621e-05 0.015085216094873935 4.070049178197234e-05 0.0005335303798019122 1.4394854340826584e-06 0.015085216094873935 4.070049178197234e-05 0.019270002236974323 7.924949607049585e-05']
['59866.46489627506 0.03438639490395149 6.803031093899609e-05 0.015045144853935445 4.0665241716233615e-05 0.0005321131495638706 1.43823871803674e-06 0.015045144853935443 4.0665241716233615e-05 0.019341250050016048 7.925771312810002e-05']
['59866.464927813024 0.03435190980685632 6.799668321842956e-05 0.014952638270926669 4.063562971325078e-05 0.0005288413984628957 1.4371914076701687e-06 0.014952638270926669 4.063562971325078e-05 0.01939927153592965 7.921365621469501e-05']
['59866.46495935098 0.03413733082220391 6.781723265660084e-05 0.01504319522591414 4.0680841601222974e-05 0.0005320441955779193 1.4387904511051224e-06 0.01504319522591414 4.0680841601222974e-05 0.01909413559628977 7.908291799486993e-05']
['59866.46499088895 0.0342839479022463 6.79433201667453e-05 0.014993010047434719 4.065459152953124e-05 0.000530269257972375 1.4378620447348432e-06 0.014993010047434717 4.065459152953124e-05 0.019290937854811584 7.917758879704465e-05']
['59866.465022426906 0.03422665564239401 6.788021644279105e-05 0.015083621713150535 4.0685131088440546e-05 0.0005334739900835889 1.4389421606815682e-06 0.015083621713150534 4.0685131088440546e-05 0.019143033929243474 7.91391412387306e-05']
['59866.46505396487 0.034330629058866115 6.79690301168102e-05 0.015109393045608857 4.070200820617844e-05 0.0005343854645171015 1.4395390666178193e-06 0.015109393045608856 4.070200820617844e-05 0.01922123601325726 7.922400221546289e-05']
['59866.46508550284 0.03435725362354314 6.797255267358424e-05 0.015107707905957972 4.070673857582232e-05 0.0005343258648937152 1.4397063692203695e-06 0.015107707905957973 4.070673857582232e-05 0.019249545717585165 7.922945463931659e-05']
['59866.465117040796 0.03430325306726483 6.79689520721758e-05 0.015076153550203144 4.0697727629406245e-05 0.0005332098578505016 1.4393876721839128e-06 0.015076153550203142 4.0697727629406245e-05 0.01922709951706169 7.922173615862674e-05']
['59866.46514857876 0.034280198702738233 6.793652497385274e-05 0.014974843312202136 4.062385205525472e-05 0.0005296267411474624 1.4367748582283645e-06 0.014974843312202137 4.062385205525472e-05 0.019305355390536096 7.915597754642502e-05']
['59866.46518011673 0.034229499590121275 6.790128748845207e-05 0.014986919881695293 4.064862878307803e-05 0.0005300538624208909 1.4376511557187472e-06 0.014986919881695293 4.064862878307803e-05 0.01924257970842598 7.913846008442354e-05']
['59866.465211654686 0.034166816799635034 6.784638795654182e-05 0.015024365282683153 4.066541917931488e-05 0.0005313782225682856 1.4382449945093175e-06 0.015024365282683153 4.066541917931488e-05 0.019142451516951882 7.909999162944946e-05']
['59866.46524319265 0.03420574658537615 6.787650596521245e-05 0.014937012925766283 4.0615698552167056e-05 0.0005282887649251639 1.436486487046161e-06 0.01493701292576628 4.0615698552167056e-05 0.01926873365960987 7.910028464503795e-05']
['59866.46527473061 0.03420791228900635 6.788294440484607e-05 0.014974320704777833 4.0645731371619084e-05 0.0005296082576908235 1.437548680750778e-06 0.014974320704777831 4.0645731371619084e-05 0.019233591584228514 7.912123368480324e-05']
['59866.465306268576 0.034152838881600825 6.784935531883415e-05 0.014962959144149746 4.062338186429102e-05 0.0005292064246830017 1.4367582286247936e-06 0.014962959144149746 4.062338186429102e-05 0.01918987973745108 7.9080934309563e-05']
['59866.46533780654 0.03420014121501934 6.78852952423562e-05 0.015038578552081027 4.067082849255689e-05 0.0005318809141421009 1.4384363098295838e-06 0.015038578552081029 4.067082849255689e-05 0.01916156266293831 7.913614597902053e-05']
['59866.4653693445 0.03420277856617339 6.790203748753761e-05 0.01505017782782144 4.0679702813943614e-05 0.0005322911546021837 1.4387501747440913e-06 0.015050177827821441 4.0679702813943614e-05 0.019152600738351948 7.915506879530669e-05']
['59866.465400882465 0.03419872285631162 6.787809430869864e-05 0.014999092151103633 4.06531787285543e-05 0.0005304843683864429 1.4378120771217132e-06 0.014999092151103635 4.06531787285543e-05 0.019199630705207985 7.91208988050336e-05']
['59866.46543242043 0.03421485633697246 6.789256777529078e-05 0.015038118217164137 4.065852961857536e-05 0.0005318646331248784 1.4380013261432227e-06 0.015038118217164137 4.065852961857536e-05 0.01917673811980832 7.913606503906434e-05']
['59866.46546395839 0.03429507687170954 6.793776466797163e-05 0.014985868348446736 4.0650035525765196e-05 0.000530016672039928 1.4377009090637075e-06 0.014985868348446736 4.0650035525765196e-05 0.019309208523262802 7.917048222871113e-05']
['59866.465495496355 0.034200451711540035 6.789049880700697e-05 0.015004916187385446 4.066198596409467e-05 0.0005306903515337755 1.4381235693597634e-06 0.015004916187385446 4.066198596409467e-05 0.019195535524154587 7.913606592956493e-05']
['59866.465527034314 0.03434896031661231 6.80012904072014e-05 0.01507648583888475 4.0683061315871844e-05 0.0005332216101585485 1.4388689574514828e-06 0.01507648583888475 4.0683061315871844e-05 0.01927247447772756 7.92419521155021e-05']
['59866.46555857228 0.03422815444804801 6.7924956350702e-05 0.015097830423677098 4.07124181395175e-05 0.0005339765204203144 1.4399072426951902e-06 0.015097830423677098 4.07124181395175e-05 0.019130324024370912 7.919154428353878e-05']
['59866.465590110245 0.034330144986016393 6.797400297444912e-05 0.015005974142610972 4.064491663129458e-05 0.0005307277690457116 1.4375198652063378e-06 0.015005974142610972 4.064491663129458e-05 0.019324170843405424 7.919895408611976e-05']
['59866.4656216482 0.03420775674305041 6.789209572832757e-05 0.014999723343498354 4.0650306093192106e-05 0.0005305066922508122 1.4377104784289147e-06 0.014999723343498354 4.0650306093192106e-05 0.019208033399552057 7.91314352697751e-05']
['59866.46565318617 0.03425712026589964 6.792179452265641e-05 0.015011477121283463 4.066326033930348e-05 0.0005309223971029241 1.4381686411628378e-06 0.015011477121283463 4.066326033930348e-05 0.019245643144616173 7.916357061552952e-05']
['59866.465684724135 0.034208324690703236 6.78853684078955e-05 0.015015885090040985 4.0669031776249756e-05 0.0005310782971066473 1.4383727639892253e-06 0.015015885090040985 4.0669031776249756e-05 0.01919243960066225 7.913528536306234e-05']
['59866.46571626209 0.03429356964597806 6.793746755355364e-05 0.015029701613445917 4.066878815750828e-05 0.0005315669566613672 1.438364147738795e-06 0.015029701613445917 4.066878815750828e-05 0.01926386803253214 7.917985746255445e-05']
['59866.46574780006 0.03420380030294834 6.787990240928057e-05 0.015003874301972558 4.067192233935171e-05 0.0005306535023751986 1.4384749967461128e-06 0.01500387430197256 4.067192233935171e-05 0.01919992600097578 7.913208210246784e-05']
['59866.46577933802 0.0343012057690902 6.793647449072508e-05 0.015016849114503232 4.067929372293227e-05 0.0005311123924974091 1.4387357061092846e-06 0.015016849114503232 4.067929372293227e-05 0.01928435665458697 7.918440189851494e-05']
['59866.46581087598 0.0342750319319244 6.797638405807423e-05 0.015054206887410848 4.06861508416007e-05 0.0005324336534354428 1.4389782270718288e-06 0.01505420688741085 4.06861508416007e-05 0.019220825044513553 7.922216646820696e-05']
['59866.46584241395 0.03427790559493794 6.795520401958784e-05 0.015002646763879003 4.063804664334562e-05 0.0005306100870962157 1.4372768890861023e-06 0.015002646763879003 4.063804664334562e-05 0.019275258831058933 7.917929393680232e-05']
['59866.46587395191 0.03415698244865884 6.785495614485005e-05 0.014985621152924216 4.063450088104407e-05 0.000530007929286746 1.4371514833978089e-06 0.014985621152924216 4.063450088104407e-05 0.019171361295734626 7.909145172059427e-05']
['59866.46590548987 0.03418199843588181 6.785698849108172e-05 0.015047048155816693 4.0670702612679994e-05 0.000532180465097781 1.438431857739663e-06 0.015047048155816692 4.0670702612679994e-05 0.019134950280065115 7.911180024552502e-05']
['59866.46593702784 0.03433866408584655 6.799939010506136e-05 0.015098520741095467 4.068908776157964e-05 0.0005340009354046335 1.439082099367854e-06 0.015098520741095469 4.068908776157964e-05 0.019240143344751083 7.924341560994103e-05']
['59866.4659685658 0.034368001909718435 6.798595140941687e-05 0.015067942067975244 4.0675582274801664e-05 0.0005329194360756836 1.4386044404835034e-06 0.015067942067975246 4.0675582274801664e-05 0.01930005984174319 7.922494924225418e-05']
['59866.46600010376 0.034235623437695 6.79490288815577e-05 0.01494150928419816 4.061711370127963e-05 0.0005284477910741298 1.4365365377076003e-06 0.014941509284198162 4.061711370127963e-05 0.019294114153496834 7.916325189991529e-05']
['59866.46603164172 0.03434410408206413 6.798728030420899e-05 0.015056303524130725 4.067237886686982e-05 0.0005325078067905175 1.4384911431041497e-06 0.015056303524130725 4.067237886686982e-05 0.0192878005579334 7.922444500186341e-05']
['59866.46606317969 0.034372218880245754 6.798590853042057e-05 0.015056451099027073 4.068237860043207e-05 0.0005325130261847909 1.4388448113321571e-06 0.015056451099027073 4.068237860043207e-05 0.01931576778121868 7.922840202412015e-05']
['59866.46609471765 0.034225511201604365 6.790242199207269e-05 0.014957140751476451 4.061516620292484e-05 0.0005290006411374896 1.4364676590431943e-06 0.014957140751476451 4.061516620292484e-05 0.019268370450127914 7.912225121974681e-05']
['59866.46612625561 0.03440390578793034 6.803611890418942e-05 0.015077242654288744 4.071178882241717e-05 0.0005332483770280049 1.4398849851557925e-06 0.015077242654288744 4.071178882241717e-05 0.01932666313364159 7.92865891854738e-05']
['59866.46615779358 0.03430200008439594 6.797137897150282e-05 0.015006105213767381 4.0648333005311756e-05 0.000530732404739587 1.4376406947201786e-06 0.015006105213767381 4.0648333005311756e-05 0.01929589487062856 7.919845538518016e-05']
['59866.46618933154 0.03421515835580259 6.79095466661818e-05 0.015022364088270351 4.065470561976475e-05 0.0005313074447943112 1.4378660798514258e-06 0.015022364088270353 4.065470561976475e-05 0.01919279426753224 7.914866781845449e-05']
['59866.4662208695 0.03434389120922529 6.798486614897018e-05 0.01490468985913839 4.0588380094450724e-05 0.0005271455702963377 1.435520294249894e-06 0.014904689859138388 4.0588380094450724e-05 0.019439201350086904 7.917928153238696e-05']
['59866.46625240747 0.03424222137561608 6.794019263025001e-05 0.014963826432872881 4.0626355867552054e-05 0.0005292370987468628 1.4368634124736301e-06 0.014963826432872881 4.0626355867552054e-05 0.0192783949427432 7.916041034325466e-05']
['59866.466283945425 0.034424029603052846 6.802959193934248e-05 0.015011070474805719 4.0646281302648937e-05 0.0005309080149258076 1.4375681305822803e-06 0.015011070474805717 4.0646281302648937e-05 0.01941295912824713 7.924736944004843e-05']
['59866.46631548339 0.034317016687231694 6.797327644528896e-05 0.015004668540719104 4.063997813513105e-05 0.0005306815928246447 1.437345201633923e-06 0.015004668540719104 4.063997813513105e-05 0.01931234814651259 7.919579618598203e-05']
['59866.466347021356 0.03435462310719499 6.797541373295847e-05 0.015020269026149278 4.066029385459712e-05 0.000531233347129277 1.438063723228477e-06 0.015020269026149278 4.066029385459712e-05 0.01933435408104571 7.920805747213517e-05']
['59866.466378559315 0.03429576366193515 6.796484744735673e-05 0.015018166022122378 4.0665311640619626e-05 0.000531158968576783 1.4382411911060014e-06 0.01501816602212238 4.0665311640619626e-05 0.019277597639812773 7.920156601590139e-05']
['59866.46641009728 0.03437433538751795 6.802111651469314e-05 0.015087224899854021 4.069251032320432e-05 0.000533601426744643 1.4392031477235438e-06 0.015087224899854023 4.069251032320432e-05 0.019287110487663926 7.926381701829372e-05']
['59866.466441635246 0.03417465146074202 6.785306297811925e-05 0.015039531409197235 4.0669740962070386e-05 0.0005319146145687908 1.4383978463067639e-06 0.015039531409197235 4.0669740962070386e-05 0.019135120051544788 7.910793882686189e-05']
['59866.466473173205 0.034175970740187515 6.787201493541599e-05 0.01499594172954881 4.064755385328474e-05 0.0005303729450168266 1.4376131378542854e-06 0.01499594172954881 4.064755385328474e-05 0.019180029010638706 7.911279318573585e-05']
['59866.46650471117 0.03415374361039183 6.783328134682283e-05 0.015043100230003622 4.067981930076577e-05 0.0005320408357848676 1.438754294622658e-06 0.015043100230003624 4.067981930076577e-05 0.019110643380388204 7.909615513171406e-05']
['59866.46653624913 0.03426452458312711 6.792875933537322e-05 0.015034446759723326 4.067276573528537e-05 0.0005317347818804214 1.4385048257754077e-06 0.015034446759723326 4.067276573528537e-05 0.01923007782340378 7.917442906267438e-05']
['59866.466567787094 0.03430933481854535 6.793305677596639e-05 0.015020167645253369 4.0645581849650215e-05 0.0005312297615135617 1.437543392492901e-06 0.015020167645253367 4.0645581849650215e-05 0.019289167173291988 7.91641555681818e-05']
['59866.46659932506 0.03432950599809711 6.797384925253713e-05 0.0149553748516712 4.0635702542682476e-05 0.0005289381852079316 1.4371939834844036e-06 0.0149553748516712 4.0635702542682476e-05 0.01937413114642591 7.91940938665505e-05']
['59866.46663086302 0.034245302543472404 6.793541526286663e-05 0.015003532208590752 4.065996361872354e-05 0.0005306414032968178 1.438052043523662e-06 0.015003532208590752 4.065996361872354e-05 0.019241770334881652 7.917356432808904e-05']
['59866.466662400984 0.034207494432701546 6.793138950913522e-05 0.014932881933568532 4.061700865622428e-05 0.0005281426609633537 1.4365328224987546e-06 0.014932881933568532 4.061700865622428e-05 0.019274612499133016 7.914805792198342e-05']
['59866.46669393895 0.0343637437795045 6.801684925525807e-05 0.015030959288663895 4.0654527665785504e-05 0.0005316114378230884 1.4378597860168838e-06 0.015030959288663895 4.0654527665785504e-05 0.019332784490840603 7.924066129419049e-05']
['59866.46672547691 0.03415833005186723 6.786913839206061e-05 0.014958477642803258 4.063552842039399e-05 0.0005290479239959425 1.4371878251682002e-06 0.014958477642803258 4.063552842039399e-05 0.019199852409063974 7.910414727487633e-05']
['59866.466757014874 0.03426701189276401 6.792202215719653e-05 0.015011855874783882 4.066501977048032e-05 0.0005309357927677697 1.4382308683114655e-06 0.015011855874783882 4.066501977048032e-05 0.019255156017980127 7.916466968829121e-05']
['59866.46678855283 0.03425981000052004 6.791921657410564e-05 0.015013545541588751 4.0662902208202886e-05 0.0005309955525064749 1.4381559748661856e-06 0.015013545541588753 4.0662902208202886e-05 0.019246264458931284 7.916117480200845e-05']
['59866.4668200908 0.034307586686209784 6.792840919986069e-05 0.01495849170054956 4.064065485454639e-05 0.000529048421187012 1.4373691356872647e-06 0.01495849170054956 4.064065485454639e-05 0.019349094985660224 7.915763768222296e-05']
['59866.466851628764 0.03423254535055729 6.788026569752036e-05 0.015057839527528318 4.067067476028161e-05 0.0005325621317979248 1.4384308726625784e-06 0.015057839527528316 4.067067476028161e-05 0.01917470582302897 7.913175251833215e-05']
['59866.46688316672 0.034277578296900535 6.794028224435551e-05 0.014966296928622209 4.0636760525607675e-05 0.0005293244746602835 1.4372314019760152e-06 0.014966296928622209 4.0636760525607675e-05 0.019311281368278324 7.916582758651788e-05']
['59866.46691470469 0.03419287563220009 6.785963808966469e-05 0.015034311434120155 4.0662526045689496e-05 0.0005317299957162721 1.4381426708387609e-06 0.015034311434120155 4.0662526045689496e-05 0.019158564198079934 7.91098698398414e-05']
['59866.466946242654 0.034186090215169294 6.787889715432848e-05 0.015040263673220837 4.067766552896861e-05 0.0005319405131107918 1.4386781205275892e-06 0.015040263673220837 4.067766552896861e-05 0.019145826541948456 7.913417183350404e-05']
['59866.46697778061 0.0342943045019132 6.795887785339946e-05 0.014987472943150738 4.0653981166030454e-05 0.0005300734229685504 1.4378404575419026e-06 0.014987472943150738 4.0653981166030454e-05 0.019306831558762463 7.919062611029935e-05']
['59866.46700931858 0.03421190484152799 6.791236785806084e-05 0.01502176805038876 4.0663998102629836e-05 0.0005312863642665055 1.438194734202887e-06 0.015021768050388759 4.0663998102629836e-05 0.019190136791139227 7.915586175248968e-05']
['59866.467040856536 0.03434727708118157 6.797538216530469e-05 0.015054879493699679 4.067615099436607e-05 0.0005324574420166921 1.4386245548234829e-06 0.015054879493699679 4.067615099436607e-05 0.019292397587481892 7.921617158280051e-05']
['59866.4670723945 0.03435468752888512 6.799235904242819e-05 0.015004298546645204 4.065129451406426e-05 0.000530668506961139 1.4377454366661722e-06 0.015004298546645204 4.065129451406426e-05 0.019350388982239914 7.921798175808102e-05']
['59866.46710393247 0.03417741094450305 6.786794638092409e-05 0.015062204637179978 4.0683139658780454e-05 0.0005327165159708581 1.4388717282650741e-06 0.015062204637179976 4.0683139658780454e-05 0.019115206307323072 7.912759315472587e-05']
['59866.467135470426 0.034284982083414364 6.795723768911836e-05 0.015027456445757455 4.0672033718105395e-05 0.0005314875500978809 1.4384789359637139e-06 0.015027456445757457 4.0672033718105395e-05 0.019257525637656907 7.919848787130997e-05']
['59866.46716700839 0.03417165231792479 6.787464379698876e-05 0.014972439061990169 4.061711710404563e-05 0.0005295417081906481 1.4365366580558291e-06 0.014972439061990169 4.061711710404563e-05 0.01919921325593462 7.909941512054221e-05']
['59866.46719854636 0.03414150831487103 6.784485281311178e-05 0.015010669506242953 4.0655132103782716e-05 0.0005308938335638546 1.4378811636380057e-06 0.015010669506242951 4.0655132103782716e-05 0.019130838808628082 7.9093386699577e-05']
['59866.467230084316 0.03443823232641543 6.804962233694024e-05 0.015093903456444317 4.0706430134767186e-05 0.0005338376323655461 1.4396954603495745e-06 0.015093903456444315 4.0706430134767186e-05 0.019344328869971113 7.9295425810805e-05']
['59866.46726162228 0.034209885293747355 6.78713060993268e-05 0.015020280778781267 4.067725817362546e-05 0.0005312337627936049 1.4386637132794877e-06 0.015020280778781266 4.067725817362546e-05 0.01918960451496609 7.912745114151153e-05']
['59866.46729316024 0.03431124441838738 6.795337858096648e-05 0.015026159921147307 4.066994077025842e-05 0.0005314416949199818 1.4384049130758296e-06 0.015026159921147307 4.066994077025842e-05 0.01928508449724007 7.919410169213666e-05']
['59866.467324698206 0.03432583744667176 6.79460719902621e-05 0.015011847534767593 4.064755224101765e-05 0.0005309354978000324 1.4376130808320015e-06 0.015011847534767593 4.064755224101765e-05 0.019313989911904167 7.91763361244516e-05']
['59866.46735623617 0.03424297162320162 6.792486356924976e-05 0.015003921191268612 4.06510897817202e-05 0.0005306551607448085 1.4377381957407125e-06 0.01500392119126861 4.06510897817202e-05 0.01923905043193301 7.915995320452552e-05']
['59866.46738777413 0.034238791132574595 6.790943417960978e-05 0.015014714724654484 4.0657656512345986e-05 0.0005310369038985395 1.4379704463271675e-06 0.015014714724654486 4.0657656512345986e-05 0.019224076407920107 7.915008707304536e-05']
['59866.467419312095 0.0343043750232007 6.797090714492443e-05 0.015024553611318192 4.0674913567585314e-05 0.0005313848833312172 1.4385807898037339e-06 0.01502455361131819 4.0674913567585314e-05 0.019279821411882513 7.921169618076913e-05']
['59866.46745085006 0.034248596579944994 6.790800930872821e-05 0.015061893068832197 4.067208007051784e-05 0.0005327054964947114 1.4384805753449506e-06 0.015061893068832198 4.067208007051784e-05 0.019186703511112797 7.915627470729615e-05']
['59866.46748238802 0.03431293806500634 6.797698999772838e-05 0.015069395930141175 4.067011126026499e-05 0.0005329708559313018 1.4384109429263391e-06 0.015069395930141175 4.067011126026499e-05 0.019243542134865167 7.921445019107056e-05']
['59866.467513925985 0.03435541906647277 6.798844193035864e-05 0.015069090032718781 4.068690093638878e-05 0.0005329600370231122 1.4390047562481199e-06 0.015069090032718781 4.068690093638878e-05 0.01928632903375399 7.923289811640909e-05']
['59866.467545463944 0.0343581129561449 6.799246605850259e-05 0.015090340156357272 4.070517176380722e-05 0.0005337116064049744 1.4396509545810141e-06 0.015090340156357272 4.070517176380722e-05 0.01926777279978763 7.924573457945655e-05']
['59866.46757700191 0.034301602826165546 6.793637494224383e-05 0.014995906675051613 4.065386092708186e-05 0.0005303717052176029 1.437836204959009e-06 0.014995906675051613 4.065386092708186e-05 0.01930569615111393 7.917125392825131e-05']
['59866.467608539875 0.03420153832982147 6.787923840813353e-05 0.014970610902848168 4.063546337411628e-05 0.0005294770502874907 1.4371855246267275e-06 0.01497061090284817 4.063546337411628e-05 0.019230927426973302 7.911277956498163e-05']
['59866.46764007783 0.03423056226721673 6.789200981327718e-05 0.015030140037173187 4.067729405975885e-05 0.0005315824627287815 1.4386649824918251e-06 0.015030140037173189 4.067729405975885e-05 0.019200422230043538 7.914522884236432e-05']
['59866.4676716158 0.03420558215893008 6.787268470088229e-05 0.015019774122483875 4.065790987647632e-05 0.0005312158434926763 1.437979407250222e-06 0.015019774122483875 4.065790987647632e-05 0.019185808036446206 7.91186890944804e-05']
['59866.467703153765 0.034315268299877036 6.798621053614509e-05 0.015014196150242323 4.0655144316285e-05 0.0005310185630805268 1.4378815955669182e-06 0.01501419615024232 4.0655144316285e-05 0.019301072149634717 7.921468034678298e-05']
['59866.46773469172 0.034230946323499135 6.790440917573779e-05 0.014967498764437771 4.063715158294609e-05 0.000529366980907135 1.4372452328001132e-06 0.014967498764437773 4.063715158294609e-05 0.019263447559061363 7.913524419802696e-05']
['59866.46776622969 0.034276268462876305 6.791485106816321e-05 0.015098486922121715 4.069403904484175e-05 0.0005339997393031128 1.4392572151913679e-06 0.015098486922121715 4.069403904484175e-05 0.019177781540754592 7.917342868282196e-05']
['59866.46779776765 0.034168466998549245 6.786943963572306e-05 0.014976643240390794 4.0642583976966246e-05 0.0005296904005848924 1.43743736443592e-06 0.014976643240390794 4.0642583976966246e-05 0.01919182375815845 7.91080303685524e-05']
['59866.46782930561 0.034201776542063474 6.787845475499462e-05 0.015104620624870616 4.068615698179922e-05 0.0005342166746613226 1.4389784442369279e-06 0.015104620624870616 4.068615698179922e-05 0.019097155917192857 7.913815760979947e-05']
['59866.46786084358 0.03429962321038704 6.792304943844401e-05 0.014982879381172874 4.064821599198604e-05 0.0005299109589474002 1.4376365562203574e-06 0.014982879381172874 4.064821599198604e-05 0.019316743829214167 7.915692078617295e-05']
['59866.46789238154 0.03429462520474595 6.792808321467882e-05 0.01498797188271769 4.064019285233551e-05 0.0005300910693459692 1.43735279570158e-06 0.01498797188271769 4.064019285233551e-05 0.01930665332202826 7.915712074283243e-05']
['59866.4679239195 0.03430762304352051 6.794859149041754e-05 0.015019824367381961 4.067163092951627e-05 0.0005312176205424309 1.4384646902314961e-06 0.015019824367381961 4.067163092951627e-05 0.01928779867613855 7.919086214960933e-05']
['59866.46795545747 0.03437448386744501 6.799963004544368e-05 0.015029085551353238 4.065046823829416e-05 0.0005315451679219669 1.4377162131388012e-06 0.015029085551353238 4.065046823829416e-05 0.01934539831609177 7.922379853497161e-05']
['59866.46798699543 0.03422347511890715 6.789454038248703e-05 0.015056060412710182 4.068400029037086e-05 0.000532499208482895 1.4389021668810285e-06 0.015056060412710183 4.068400029037086e-05 0.01916741470619697 7.915084644762846e-05']
['59866.46801853339 0.03422891923373913 6.787842759776643e-05 0.014990951964741615 4.065307603384323e-05 0.0005301964681870641 1.4378084450392918e-06 0.014990951964741615 4.065307603384323e-05 0.019237967268997513 7.912113196964928e-05']
['59866.46805007135 0.03433322721284948 6.799059362616174e-05 0.015017216182634208 4.066802675901216e-05 0.0005311253748768527 1.4383372187756126e-06 0.015017216182634206 4.066802675901216e-05 0.019316011030215276 7.922505425753645e-05']
['59866.46808160932 0.034352567702591805 6.797748817460887e-05 0.015092649024618555 4.069969169747764e-05 0.000533793265915359 1.4394571368821642e-06 0.015092649024618553 4.069969169747764e-05 0.01925991867797325 7.923006880470835e-05']
['59866.46811314728 0.03422511004327739 6.787735951340546e-05 0.015009606854715014 4.066237010190743e-05 0.0005308562499541979 1.4381371554557031e-06 0.015009606854715014 4.066237010190743e-05 0.019215503188562376 7.91249914806731e-05']
['59866.46814468524 0.034351865860476574 6.800478587564475e-05 0.015115642701305726 4.0714408589972406e-05 0.0005346065008719413 1.4399776404793853e-06 0.015115642701305726 4.0714408589972406e-05 0.019236223159170847 7.92610495061951e-05']
['59866.46817622321 0.03435212421653148 6.799313654681124e-05 0.0150103297977045 4.066291930934203e-05 0.0005308818188320535 1.4381565796952584e-06 0.015010329797704499 4.066291930934203e-05 0.01934179441882698 7.922461501472492e-05']
['59866.46820776117 0.034283774538359756 6.79503007187967e-05 0.015010958884888376 4.066056717103643e-05 0.0005309040682398201 1.4380733898201091e-06 0.015010958884888376 4.066056717103643e-05 0.01927281565347138 7.918664717264692e-05']
['59866.46823929913 0.03425628421457702 6.79340109567586e-05 0.015044458202364277 4.066732627253503e-05 0.0005320888642323744 1.438312444134412e-06 0.015044458202364277 4.066732627253503e-05 0.019211826012212746 7.917614079272756e-05']
['59866.4682708371 0.03417362682893544 6.785820760619962e-05 0.015013277020425897 4.066708892282307e-05 0.0005309860555130541 1.4383040496055452e-06 0.015013277020425896 4.066708892282307e-05 0.019160349808509544 7.911098824425648e-05']
['59866.468302375055 0.03430672742125738 6.79497378111785e-05 0.015006187752452823 4.066307446738601e-05 0.0005307353239484279 1.4381620672885161e-06 0.015006187752452821 4.066307446738601e-05 0.01930053966880456 7.918745161796836e-05']
['59866.46833391302 0.034177008029336986 6.78512561966705e-05 0.01497843461199463 4.063387955147264e-05 0.0005297537573950402 1.4371295083594571e-06 0.01497843461199463 4.063387955147264e-05 0.019198573417342355 7.908795821659453e-05']
['59866.468365450986 0.03418031901185932 6.786242663673613e-05 0.014966033511192812 4.062784441533923e-05 0.000529315158174509 1.436916059082154e-06 0.014966033511192812 4.062784441533923e-05 0.019214285500666506 7.9094441592715e-05']
['59866.468396988945 0.034171862471167665 6.786046144625125e-05 0.0150128157569977 4.0649907998215756e-05 0.0005309697416564619 1.437696398699291e-06 0.0150128157569977 4.0649907998215756e-05 0.019159046714169965 7.910409122138726e-05']
['59866.46842852691 0.034316787147243004 6.795033110936624e-05 0.015034118480460804 4.06634275609704e-05 0.0005317231713765669 1.4381745554194784e-06 0.015034118480460802 4.06634275609704e-05 0.0192826686667822 7.918814203451672e-05']
['59866.468460064876 0.03428895746862229 6.794158428023126e-05 0.015079740128538204 4.068710269258291e-05 0.0005333367071106819 1.4390118919138077e-06 0.015079740128538204 4.068710269258291e-05 0.019209217340084087 7.919279765246682e-05']
['59866.468491602835 0.03432443952772882 6.795964351205068e-05 0.015012453353123751 4.064472526184413e-05 0.0005309569242413654 1.4375130968965607e-06 0.015012453353123753 4.064472526184413e-05 0.019311986174605063 7.918653192239072e-05']
['59866.4685231408 0.034166191761599955 6.785103404514592e-05 0.0149622006609143 4.06211369382277e-05 0.0005291795988260743 1.4366788306070484e-06 0.014962200660914301 4.06211369382277e-05 0.019203991100685654 7.908122145711836e-05']
['59866.46855467876 0.034184719925843945 6.787053391687653e-05 0.015012992473139176 4.064565080099183e-05 0.0005309759917114486 1.4375458311477566e-06 0.015012992473139175 4.064565080099183e-05 0.01917172745270477 7.911054482935922e-05']
['59866.468586216724 0.03437818875206425 6.801410148964689e-05 0.015027756440100319 4.067411360733044e-05 0.00053149816022734 1.438552496997325e-06 0.015027756440100319 4.067411360733044e-05 0.019350432311963928 7.924835341624462e-05']
['59866.46861775469 0.03428442696790709 6.793355490391848e-05 0.015090239674464238 4.0700547677293104e-05 0.0005337080525849815 1.439487410975235e-06 0.015090239674464236 4.0700547677293104e-05 0.01919418729344285 7.919281825465815e-05']
['59866.46864929265 0.034312845322800205 6.79459441803578e-05 0.015020464105036095 4.065518649651365e-05 0.000531240246633528 1.4378830873873382e-06 0.015020464105036093 4.065518649651365e-05 0.01929238121776411 7.918014599397126e-05']
['59866.468680830614 0.034282305148241314 6.79026998660956e-05 0.014977074866775408 4.06540989028903e-05 0.000529705666245488 1.437844621631509e-06 0.014977074866775408 4.06540989028903e-05 0.019305230281465906 7.91424816815283e-05']
['59866.46871236858 0.034277912150702784 6.793270886390455e-05 0.015042111093526595 4.0677130674920385e-05 0.0005320058522382651 1.438659203935232e-06 0.015042111093526595 4.0677130674920385e-05 0.01923580105717619 7.918005994903366e-05']
['59866.46874390654 0.034192950871544246 6.789685968450403e-05 0.01503987418598391 4.067385289907327e-05 0.0005319267378176744 1.4385432763289174e-06 0.015039874185983909 4.067385289907327e-05 0.019153076685560336 7.914762071390826e-05']
['59866.468775444504 0.03411934609557979 6.782632649743804e-05 0.015020186852206584 4.067842663375791e-05 0.0005312304408205719 1.4387050391030177e-06 0.015020186852206584 4.067842663375791e-05 0.019099159243373205 7.908947439157179e-05']
['59866.46880698246 0.034336130343722904 6.796620115402493e-05 0.015036255137165918 4.0685885844507714e-05 0.0005317987401490801 1.4389688547168834e-06 0.015036255137165918 4.0685885844507714e-05 0.019299875206556988 7.921329311587603e-05']
['59866.46883852043 0.03427319543331086 6.793110278482652e-05 0.015068295289894198 4.067569087178144e-05 0.0005329319287455524 1.4386082813159782e-06 0.0150682952898942 4.067569087178144e-05 0.019204900143416657 7.917794234166097e-05']
['59866.468870058394 0.034154611747642956 6.78405794680577e-05 0.014960984715942321 4.062845516555513e-05 0.0005291365935698925 1.4369376599523442e-06 0.014960984715942321 4.062845516555513e-05 0.019193627031700633 7.907601148073527e-05']
['59866.46890159635 0.034341814746568354 6.79709993704893e-05 0.014987389241052609 4.064883984027945e-05 0.0005300704626124028 1.4376586203402765e-06 0.01498738924105261 4.064883984027945e-05 0.019354425505515742 7.919838972973976e-05']
['59866.46893313432 0.03426286907656628 6.79166886859928e-05 0.015095785751672742 4.070108977692182e-05 0.0005339042049410933 1.4395065838275813e-06 0.015095785751672742 4.070108977692182e-05 0.01916708332489354 7.917862913121894e-05']
['59866.46896467228 0.03416930516344429 6.785971448235195e-05 0.014999223688485204 4.0656635217491534e-05 0.0005304890205696602 1.4379343254106252e-06 0.014999223688485202 4.0656635217491534e-05 0.019170081474959088 7.910690764297704e-05']
['59866.46899621024 0.03424598403996014 6.794789830031982e-05 0.015048457737466023 4.068535142443168e-05 0.0005322303188504883 1.4389499534731525e-06 0.015048457737466025 4.068535142443168e-05 0.019197526302494113 7.91973150047406e-05']
['59866.46902774821 0.034230787567708004 6.789546696773392e-05 0.015095700203089544 4.071884367143755e-05 0.0005339011792788954 1.4401344993989835e-06 0.015095700203089544 4.071884367143755e-05 0.019135087364618462 7.916955642610117e-05']
['59866.469059286166 0.034174294545815435 6.787078960000921e-05 0.01503567713672519 4.0682664360239695e-05 0.0005317782975652465 1.4388549180179171e-06 0.01503567713672519 4.0682664360239695e-05 0.019138617409090244 7.912978744048689e-05']
['59866.46909082413 0.03421059459510761 6.788973006834822e-05 0.015063532009596804 4.0693723856732345e-05 0.0005327634621667385 1.4392460676923423e-06 0.015063532009596804 4.0693723856732345e-05 0.01914706258551081 7.915171893320556e-05']
['59866.4691223621 0.03431011837054168 6.793529730470952e-05 0.01509572644744588 4.069821500453327e-05 0.0005339021074831263 1.4394049095529364e-06 0.01509572644744588 4.069821500453327e-05 0.019214391923095802 7.919311412259584e-05']
['59866.469153900056 0.03427306233340616 6.790499750270223e-05 0.01500976297756812 4.0641663027530895e-05 0.0005308617716705982 1.4374047925125926e-06 0.01500976297756812 4.0641663027530895e-05 0.019263299355838037 7.913806580581413e-05']
['59866.46918543802 0.03419536432870736 6.789518355999091e-05 0.015040630832889253 4.066475387145796e-05 0.0005319534987277101 1.4382214640572937e-06 0.015040630832889253 4.066475387145796e-05 0.019154733495818105 7.914150717588788e-05']
['59866.46921697599 0.0342216454960215 6.787853642910693e-05 0.015016067435393285 4.0653460530623495e-05 0.0005310847462542403 1.4378220438311103e-06 0.015016067435393287 4.0653460530623495e-05 0.01920557806062821 7.91214228946406e-05']
['59866.469248513946 0.03422042399959604 6.790827664683885e-05 0.014996011124626863 4.065426119928106e-05 0.0005303753993656484 1.437850361692139e-06 0.014996011124626864 4.065426119928106e-05 0.019224412874969173 7.914734986594919e-05']
['59866.46928005191 0.034221364999964046 6.787833470522433e-05 0.014978182847714424 4.063862387286617e-05 0.0005297448530551094 1.4372973044042121e-06 0.014978182847714424 4.063862387286617e-05 0.01924318215224962 7.911362760381267e-05']
['59866.46931158987 0.03417971293570824 6.786820058217513e-05 0.01506484416655578 4.068363078101949e-05 0.0005328098702258793 1.4388890981610751e-06 0.01506484416655578 4.068363078101949e-05 0.01911486876915246 7.912806369290653e-05']
['59866.469343127836 0.034275965067210416 6.790973103885062e-05 0.015061462604438363 4.066610481109004e-05 0.0005326902719311328 1.438269243772908e-06 0.015061462604438365 4.066610481109004e-05 0.01921450246277205 7.915468179631317e-05']
['59866.4693746658 0.03427358057146781 6.791521041063466e-05 0.015086919485959069 4.068772401272139e-05 0.0005335906249377383 1.439033866618537e-06 0.015086919485959067 4.068772401272139e-05 0.01918666108550874 7.917049128593408e-05']
['59866.46940620376 0.03425502369249345 6.791500009159755e-05 0.015009889932785517 4.066499175094292e-05 0.0005308662617929092 1.4382298773230475e-06 0.015009889932785516 4.066499175094292e-05 0.019245133759707933 7.915863055628205e-05']
['59866.469437741725 0.03428561099756089 6.793264999171132e-05 0.015068180567787902 4.068080335914677e-05 0.0005329278712810416 1.4387890985683531e-06 0.015068180567787904 4.068080335914677e-05 0.019217430429772985 7.918189626955093e-05']
['59866.46946927969 0.03438598625044432 6.802278820361649e-05 0.01508209685336637 4.069524309587954e-05 0.0005334200592008842 1.439299799785679e-06 0.015082096853366372 4.069524309587954e-05 0.019303889397077945 7.926665456310616e-05']
['59866.46950081765 0.03426344792844348 6.793963062924575e-05 0.01509927332535976 4.071709229746959e-05 0.0005340275526281346 1.4400725572158272e-06 0.01509927332535976 4.071709229746959e-05 0.019164174603083717 7.920653391734172e-05']
['59866.469532355615 0.03439874601489117 6.804145939542943e-05 0.01506815780651378 4.068325169671759e-05 0.0005329270662656442 1.4388756907965206e-06 0.015068157806513778 4.068325169671759e-05 0.019330588208377394 7.927652341821219e-05']
['59866.469563893574 0.03430901117821892 6.795557858885835e-05 0.015140504780495343 4.072139408831643e-05 0.0005354858170494013 1.4402247019441433e-06 0.015140504780495343 4.072139408831643e-05 0.019168506397723578 7.922242484197563e-05']
['59866.46959543154 0.03433548883992459 6.799740654817519e-05 0.01502398304000893 4.0649129200954e-05 0.0005313647034991604 1.4376688543806523e-06 0.015023983040008928 4.0649129200954e-05 0.019311505799915665 7.922120298299988e-05']
['59866.469626969505 0.03429259901237749 6.795303901866881e-05 0.015071458725824348 4.0687376634208066e-05 0.0005330438124045386 1.439021580616866e-06 0.015071458725824348 4.0687376634208066e-05 0.01922114028655314 7.920276591916867e-05']
['59866.46965850746 0.03424522153405423 6.790389919352375e-05 0.014995463882301231 4.06515539108043e-05 0.0005303560446276054 1.4377546109491499e-06 0.01499546388230123 4.06515539108043e-05 0.019249757651753 7.914220341289003e-05']
['59866.46969004543 0.03429911972735488 6.794989605786291e-05 0.015123132809091642 4.072470656732875e-05 0.0005348714092449235 1.4403418569238542e-06 0.015123132809091642 4.072470656732875e-05 0.01917598691826324 7.921925333698496e-05']
['59866.46972158339 0.03427216728799838 6.791909825605534e-05 0.015011906217649494 4.065768246744327e-05 0.0005309375732824166 1.4379713643009522e-06 0.015011906217649492 4.065768246744327e-05 0.019260261070348887 7.915839217378751e-05']
['59866.46975312135 0.03437025928621575 6.800949442365765e-05 0.015057171093135244 4.067535061968042e-05 0.0005325384907673048 1.4385962473595838e-06 0.015057171093135245 4.067535061968042e-05 0.01931308819308051 7.924503441727726e-05']
['59866.46978465932 0.03431511739238649 6.797966925667744e-05 0.015119806494366617 4.069840917056674e-05 0.0005347537649269752 1.4394117767716047e-06 0.015119806494366615 4.069840917056674e-05 0.019195310898019874 7.923128133043241e-05']
['59866.46981619728 0.03420191870771358 6.788677037666961e-05 0.015019003552791572 4.065233531213373e-05 0.0005311885901647814 1.4377822473678424e-06 0.01501900355279157 4.065233531213373e-05 0.019182915154922008 7.91279088470359e-05']
['59866.46984773524 0.03425202787605036 6.793112232382914e-05 0.014980450115631252 4.063562309618086e-05 0.0005298250412542819 1.437191173639194e-06 0.01498045011563125 4.063562309618086e-05 0.01927157776041911 7.915738275479997e-05']
['59866.46987927321 0.03417729436276665 6.786763350458164e-05 0.014986905340725398 4.06477989794222e-05 0.0005300533481392829 1.4376218074179426e-06 0.014986905340725398 4.06477989794222e-05 0.01919038902204125 7.910916027479832e-05']
['59866.46991081117 0.03435856457214319 6.796487112671153e-05 0.01507315109854912 4.0689804112108946e-05 0.0005331036678455834 1.4391074350851263e-06 0.01507315109854912 4.0689804112108946e-05 0.019285413473594068 7.921416455377348e-05']
['59866.46994234913 0.034398328548183046 6.804569676833497e-05 0.015129258638552941 4.071851207679379e-05 0.0005350880661425465 1.4401227716375042e-06 0.015129258638552941 4.071851207679379e-05 0.019269069909630107 7.929826022326211e-05']
['59866.46997388709 0.034292744629522476 6.795151292807314e-05 0.015126756870793562 4.07177278503642e-05 0.0005349995842080192 1.4400950353013325e-06 0.015126756870793562 4.07177278503642e-05 0.019165987758728915 7.921705290220292e-05']
['59866.47000542506 0.034390211240382995 6.803247954715928e-05 0.015065663033051058 4.068938792711907e-05 0.0005328388317037584 1.439092715552153e-06 0.015065663033051058 4.068938792711907e-05 0.019324548207331937 7.927196580896824e-05']
['59866.47003696302 0.034251362724404696 6.792309151988713e-05 0.014999821164306006 4.064924291764963e-05 0.0005305101519541621 1.4376728762860349e-06 0.014999821164306005 4.064924291764963e-05 0.019251541560098694 7.915748424120775e-05']
['59866.47006850098 0.03429575974744001 6.792692395438925e-05 0.015074786204655511 4.068769648837675e-05 0.0005331614978943193 1.4390328931439805e-06 0.015074786204655511 4.068769648837675e-05 0.019220973542784497 7.918052565773762e-05']
['59866.47010003895 0.034242162838859176 6.794525418702977e-05 0.015051894610591254 4.066333111162224e-05 0.0005323518733719683 1.4381711442215855e-06 0.015051894610591254 4.066333111162224e-05 0.019190268228267922 7.918373610555081e-05']
['59866.47013157691 0.03414102444251837 6.785248779252057e-05 0.014994182458160168 4.064226842121958e-05 0.0005303107235195505 1.437426203934386e-06 0.01499418245816017 4.064226842121958e-05 0.019146841984358197 7.90933251422433e-05']
['59866.47016311487 0.03429903755306021 6.796091837581544e-05 0.014964801766970329 4.062715015149312e-05 0.0005292715941341462 1.4368915045215055e-06 0.01496480176697033 4.062715015149312e-05 0.019334235786089882 7.91786066808214e-05']
['59866.47019465284 0.03426967166755415 6.792516146740783e-05 0.01502188242603501 4.0662211886737625e-05 0.0005312904094774988 1.438131559738737e-06 0.01502188242603501 4.0662211886737625e-05 0.019247789241519143 7.916592092494959e-05']
['59866.470226190795 0.034320232729194954 6.79536750028477e-05 0.015012734791001093 4.0640188554050774e-05 0.0005309668780701102 1.437352643680855e-06 0.01501273479100109 4.0640188554050774e-05 0.019307497938193863 7.917908102587101e-05']
['59866.47025772876 0.03425590943102873 6.79138561876676e-05 0.015045528845888199 4.067096362308928e-05 0.000532126730501068 1.4384410890945155e-06 0.015045528845888199 4.067096362308928e-05 0.01921038058514053 7.916071717910246e-05']
['59866.47028926673 0.034316015458216234 6.795128722449464e-05 0.01500103857383117 4.0648401711417326e-05 0.0005305532090083171 1.4376431247015836e-06 0.015001038573831171 4.0648401711417326e-05 0.019314976884385063 7.918124776207132e-05']
['59866.470320804685 0.03419814223714548 6.78833193044692e-05 0.014996727903643075 4.065340948529221e-05 0.000530400750237545 1.4378202384718223e-06 0.014996727903643077 4.065340948529221e-05 0.0192014143335024 7.912549995147815e-05']
['59866.47035234265 0.03422912813356917 6.789060005064489e-05 0.015100319970905047 4.0703427394343515e-05 0.0005340645701419563 1.4395892601315192e-06 0.015100319970905047 4.0703427394343515e-05 0.019128808162664122 7.915745433554075e-05']
['59866.470383880616 0.03418497812600181 6.785973045783478e-05 0.014965833348417076 4.0639418012451234e-05 0.0005293080788644687 1.4373253913465384e-06 0.014965833348417076 4.0639418012451234e-05 0.019219144777584733 7.909807402333342e-05']
['59866.470415418575 0.03421719309825228 6.790062402115395e-05 0.014986578204098247 4.0627413555765746e-05 0.0005300417780478879 1.4369008205419543e-06 0.014986578204098247 4.0627413555765746e-05 0.019230614894154036 7.912699586546507e-05']
['59866.47044695654 0.03419778781165501 6.783863349137214e-05 0.015012486992288696 4.065964709728929e-05 0.0005309581139834503 1.4380408488679165e-06 0.015012486992288694 4.065964709728929e-05 0.019185300819366313 7.90903729669599e-05']
['59866.4704784945 0.034212183383140506 6.787043195962043e-05 0.014978370075467248 4.0635045974141174e-05 0.0005297514748822973 1.437170762122442e-06 0.014978370075467247 4.0635045974141174e-05 0.019233813307673257 7.910500929591016e-05']
['59866.470510032465 0.03419256667647035 6.786105826965445e-05 0.015012944073936111 4.066229851408865e-05 0.0005309742799398021 1.438134623554542e-06 0.015012944073936111 4.066229851408865e-05 0.01917962260253424 7.91109711097411e-05']
['59866.47054157043 0.03414020179419565 6.786343767094964e-05 0.014976330266620022 4.063156664341044e-05 0.0005296793314020754 1.4370477059703426e-06 0.01497633026662002 4.063156664341044e-05 0.019163871527575628 7.909722106633564e-05']
['59866.47057310839 0.034273281318111394 6.794119253182477e-05 0.01497049698151947 4.064572882039512e-05 0.0005294730211446938 1.437548590519688e-06 0.014970496981519468 4.064572882039512e-05 0.019302784336591924 7.917121265957457e-05']
['59866.470604646354 0.034289837987724885 6.793681585819641e-05 0.015054497678574003 4.066928549127211e-05 0.0005324439380690035 1.4383817373225461e-06 0.015054497678574003 4.066928549127211e-05 0.019235340309150882 7.91795537454025e-05']
['59866.47063618432 0.034273247921721005 6.795137784052731e-05 0.014964359987594376 4.0634953659992295e-05 0.0005292559693849375 1.4371674971773061e-06 0.014964359987594378 4.0634953659992295e-05 0.019308887934126627 7.917442269682696e-05']
['59866.47066772228 0.034239125244200135 6.792340834464142e-05 0.014986948073565662 4.0648979524694904e-05 0.0005300548595043408 1.4376635606658748e-06 0.014986948073565664 4.0648979524694904e-05 0.01925217717063447 7.915762084317574e-05']
['59866.470699260244 0.034230533487579394 6.788970939165361e-05 0.01500003012802645 4.064521000468206e-05 0.0005305175425339479 1.437530241167402e-06 0.015000030128026452 4.064521000468206e-05 0.019230503359552942 7.912677004407477e-05']
['59866.4707307982 0.03421374037713247 6.789858191970823e-05 0.014998569015770204 4.06573976104975e-05 0.0005304658662588381 1.4379612895473981e-06 0.014998569015770204 4.06573976104975e-05 0.019215171361362266 7.914064320666983e-05']
['59866.47076233617 0.03422683088100718 6.788282407245925e-05 0.014974498474617194 4.063816026883979e-05 0.0005296145450127495 1.4372809077658932e-06 0.014974498474617192 4.063816026883979e-05 0.019252332406389985 7.911724132000788e-05']
['59866.470793874134 0.03428906444333623 6.792270033529744e-05 0.015077381265648905 4.070246906151335e-05 0.0005332532794020356 1.439555366041064e-06 0.015077381265648903 4.070246906151335e-05 0.019211683177687327 7.918449474829063e-05']
['59866.47082541209 0.03435955826832091 6.799325090011627e-05 0.015059058151278122 4.0691507159992104e-05 0.0005326052317964916 1.4391676680826655e-06 0.015059058151278122 4.0691507159992104e-05 0.01930050011704279 7.923938997063172e-05']
['59866.47085695006 0.034274572883174745 6.791387602021419e-05 0.015081172612880054 4.0683293915798536e-05 0.0005333873708804391 1.4388771839910595e-06 0.015081172612880056 4.0683293915798536e-05 0.01919340027029469 7.916706992132697e-05']
['59866.470888488024 0.03431759353862964 6.795245902526354e-05 0.014992012050356125 4.064900954442154e-05 0.0005302339610460974 1.4376646223965156e-06 0.014992012050356125 4.064900954442154e-05 0.019325581488273517 7.918256540756048e-05']
['59866.47092002598 0.03425130920534843 6.790450422227548e-05 0.015029791911597404 4.0668794620077126e-05 0.0005315701503051808 1.4383643763054121e-06 0.015029791911597404 4.0668794620077126e-05 0.01922151729375103 7.915157957692976e-05']
['59866.47095156395 0.03428654028933503 6.793085487733798e-05 0.01505093624218533 4.066762703097054e-05 0.0005323179780232781 1.4383230812881202e-06 0.01505093624218533 4.066762703097054e-05 0.019235604047149704 7.917358734259854e-05']
['59866.470983101906 0.0342860846737306 6.795743853678299e-05 0.014959323477813825 4.063142512224627e-05 0.0005290778392899362 1.437042700683047e-06 0.014959323477813825 4.063142512224627e-05 0.019326761195916774 7.917781355875738e-05']
['59866.47101463987 0.03423842687306405 6.790649120086789e-05 0.014972098214718326 4.062595562580944e-05 0.0005295296531843918 1.4368492568176815e-06 0.014972098214718328 4.062595562580944e-05 0.019266328658345717 7.913128216908775e-05']
['59866.47104617784 0.034256401633475826 6.791552830130983e-05 0.014990562006245002 4.063872369910068e-05 0.0005301826762265448 1.4373008350350284e-06 0.014990562006245002 4.063872369910068e-05 0.019265839627230823 7.914559272845118e-05']
['59866.471077715796 0.03409164501682387 6.779006802047747e-05 0.014944765687303626 4.061275177997399e-05 0.0005285629627743375 1.4363822662993403e-06 0.014944765687303624 4.061275177997399e-05 0.01914687932952025 7.90246096438492e-05']
['59866.47110925376 0.034275350855662974 6.795695898508744e-05 0.014960161614343236 4.063823342981118e-05 0.0005291074823058566 1.437283495305946e-06 0.014960161614343236 4.063823342981118e-05 0.01931518924131974 7.918089599642504e-05']
['59866.47114079173 0.03414756059489094 6.78521556822526e-05 0.015043955883191785 4.068821870713249e-05 0.0005320710983258605 1.4390513628542807e-06 0.015043955883191783 4.068821870713249e-05 0.01910360471169916 7.911666178680752e-05']
['59866.471172329686 0.03428861492822263 6.795303373976888e-05 0.014986420845761789 4.065273307295243e-05 0.0005300362126352025 1.4377963152790568e-06 0.014986420845761787 4.065273307295243e-05 0.019302194082460845 7.91849701694639e-05']
['59866.47120386765 0.034215155565752234 6.791845976996491e-05 0.015008250243987317 4.0644900388517195e-05 0.0005308082696646058 1.437519290735602e-06 0.015008250243987317 4.0644900388517195e-05 0.019206905321764917 7.915127987036487e-05']
['59866.47123540561 0.03426437576926273 6.791435334420933e-05 0.015119627737244411 4.072368896488095e-05 0.0005347474426870615 1.4403058665994832e-06 0.015119627737244413 4.072368896488095e-05 0.019144748032018315 7.91882455486323e-05']
['59866.471266943576 0.03424415048407356 6.790204333615118e-05 0.01501064623495125 4.066918345513693e-05 0.0005308930105102754 1.4383781285324823e-06 0.015010646234951252 4.066918345513693e-05 0.019233504249122308 7.914966817449166e-05']
['59866.47129848154 0.03412937234750952 6.781896559302811e-05 0.015025158829594461 4.065668956030381e-05 0.0005314062885490656 1.4379362473944462e-06 0.015025158829594461 4.065668956030381e-05 0.01910421351791506 7.90719830288279e-05']
['59866.4713300195 0.034374235943666606 6.799916447152262e-05 0.015057995493175219 4.0689085901237894e-05 0.000532567647954293 1.439082033571724e-06 0.01505799549317522 4.0689085901237894e-05 0.019316240450491386 7.924322103690322e-05']
['59866.471361557466 0.034187409523795176 6.785348436495197e-05 0.014981211552843847 4.0646915179954494e-05 0.0005298519715867795 1.4375905494059453e-06 0.014981211552843848 4.0646915179954494e-05 0.019206197970951328 7.909656790348868e-05']
['59866.47139309543 0.03424412819183101 6.790513192935077e-05 0.01495068781293645 4.061673513032218e-05 0.0005287724151227986 1.4365231484988919e-06 0.014950687812936448 4.061673513032218e-05 0.01929344037889456 7.912538224229493e-05']
['59866.47142463339 0.03432094990196375 6.799568731413244e-05 0.01504718510568289 4.068837638998994e-05 0.0005321853087084835 1.4390569397445484e-06 0.01504718510568289 4.068837638998994e-05 0.01927376479628086 7.923987295910286e-05']
['59866.471456171355 0.034322866992186514 6.796122971250785e-05 0.014945790999859473 4.0613065898834104e-05 0.0005285992257879991 1.4363933759814083e-06 0.014945790999859473 4.0613065898834104e-05 0.01937707599232704 7.917164811811929e-05']
['59866.471487709314 0.03421133414426753 6.789054827840076e-05 0.014999289008804175 4.063751633365828e-05 0.00053049133080336 1.4372581332176335e-06 0.014999289008804175 4.063751633365828e-05 0.019212045135463356 7.912353808640137e-05']
['59866.47151924728 0.03426976114768139 6.793298506152284e-05 0.015066955989233455 4.0685973381645313e-05 0.0005328845606743427 1.4389719507098064e-06 0.015066955989233455 4.0685973381645313e-05 0.019202805158447935 7.918484002245023e-05']
['59866.471550785245 0.034170414155790294 6.785822315109691e-05 0.014970960179218125 4.063247301009138e-05 0.0005294894034121093 1.4370797621342372e-06 0.014970960179218125 4.063247301009138e-05 0.01919945397657217 7.909321280704096e-05']
['59866.4715823232 0.03432887290650811 6.797219473588572e-05 0.014932271593171014 4.060795996688722e-05 0.0005281210745875241 1.436212790579533e-06 0.014932271593171016 4.060795996688722e-05 0.019396601313337092 7.917844195161638e-05']
['59866.47161386117 0.03420852458221595 6.789229604407769e-05 0.015108495713456562 4.070634581440038e-05 0.0005343537278842942 1.4396924781266456e-06 0.015108495713456562 4.070634581440038e-05 0.01910002886875939 7.916040962310793e-05']
['59866.471645399135 0.0341918335846383 6.788492655660503e-05 0.014982110685863722 4.064218818758441e-05 0.0005298837719122484 1.4374233662500217e-06 0.014982110685863722 4.064218818758441e-05 0.01920972289877458 7.912111421277309e-05']
['59866.47167693709 0.03423421670206875 6.789981208754316e-05 0.015081577927886596 4.069002747292285e-05 0.0005334017059663947 1.439115334857932e-06 0.015081577927886596 4.069002747292285e-05 0.019152638774182152 7.9158466491405e-05']
['59866.47170847506 0.0343248949210994 6.797337449855338e-05 0.015067365114345272 4.0682136069688883e-05 0.0005328990305152069 1.438836233561795e-06 0.015067365114345272 4.0682136069688883e-05 0.019257529806754128 7.921752227830196e-05']
['59866.47174001302 0.03427517443782645 6.793944878287515e-05 0.015019534289119531 4.0670643632679016e-05 0.0005312073611225755 1.438429771748841e-06 0.015019534289119533 4.0670643632679016e-05 0.019255640148706912 7.918251040739545e-05']
['59866.47177155098 0.034206249954637565 6.786991489738303e-05 0.014999404260329538 4.064397101337528e-05 0.00053049540699224 1.4374864208138636e-06 0.014999404260329537 4.064397101337528e-05 0.019206845694308028 7.91091507217345e-05']
['59866.47180308895 0.03412837593310613 6.782137163332675e-05 0.014966244720712871 4.062795439487114e-05 0.0005293226281832081 1.4369199488124078e-06 0.014966244720712873 4.062795439487114e-05 0.019162131212393255 7.905927604359623e-05']
['59866.47183462691 0.03416393743184945 6.785911886863016e-05 0.015019412390103567 4.067452917464677e-05 0.0005312030498268091 1.4385671946845653e-06 0.015019412390103567 4.067452917464677e-05 0.019144525041745884 7.911559477881759e-05']
['59866.47186616487 0.034292084573048214 6.795907175058334e-05 0.015006645836868168 4.0653053126071554e-05 0.0005307515253704403 1.4378076348426036e-06 0.015006645836868168 4.0653053126071554e-05 0.019285438736180046 7.919031608518891e-05']
['59866.47189770284 0.03431225874775229 6.795623008231211e-05 0.015015345921813866 4.064625159660639e-05 0.0005310592279314241 1.4375670799459445e-06 0.015015345921813866 4.064625159660639e-05 0.01929691282593842 7.918438593469529e-05']
['59866.4719292408 0.03412524444272064 6.780886975909154e-05 0.015013446584584434 4.064711912595756e-05 0.000530992052618388 1.4375977625202812e-06 0.015013446584584434 4.064711912595756e-05 0.0191117978581362 7.905840316655292e-05']
['59866.47196077876 0.034303927504417735 6.795440677476932e-05 0.01513339552793126 4.071310300046704e-05 0.0005352343786744541 1.439931464696401e-06 0.015133395527931262 4.071310300046704e-05 0.019170531976486473 7.921715821738023e-05']
['59866.47199231672 0.034353260022248956 6.799939948173443e-05 0.01506044727668067 4.0673942965934755e-05 0.0005326543620574672 1.4385464617925206e-06 0.015060447276680669 4.0673942965934755e-05 0.019292812745568287 7.923564832998224e-05']
['59866.47202385469 0.03422065112198977 6.78843130223707e-05 0.015041501259050469 4.067458178883203e-05 0.0005319842837557444 1.4385690555307123e-06 0.015041501259050469 4.067458178883203e-05 0.019179149862939303 7.913723243970308e-05']
['59866.47205539265 0.034197440432716275 6.790873776781331e-05 0.015038252139938688 4.0655949569725764e-05 0.0005318693696741145 1.4379100755814825e-06 0.015038252139938688 4.0655949569725764e-05 0.019159188292777588 7.914861275242743e-05']
['59866.47208693061 0.03425273397338049 6.794512115907938e-05 0.014990588019829833 4.064574690367964e-05 0.0005301835962689033 1.4375492300850477e-06 0.014990588019829831 4.064574690367964e-05 0.019262145953550656 7.91745933407931e-05']
['59866.47211846858 0.03426075246620544 6.790565652028018e-05 0.01497847091596997 4.063658839520167e-05 0.0005297550413855134 1.4372253141082437e-06 0.014978470915969972 4.063658839520167e-05 0.019282281550235467 7.913602532255022e-05']
['59866.47215000654 0.03421435305296276 6.787444848836771e-05 0.01503754454369909 4.0673874412707384e-05 0.0005318443435765044 1.4385440372180759e-06 0.015037544543699091 4.0673874412707384e-05 0.01917680850926367 7.912840714522676e-05']
['59866.4721815445 0.034223511576666706 6.78944711642642e-05 0.015059805088959955 4.0680441456455074e-05 0.0005326316493129905 1.4387762988789528e-06 0.015059805088959955 4.0680441456455074e-05 0.019163706487706753 7.914895786911646e-05']
['59866.47221308247 0.03422222660059756 6.788779229666436e-05 0.015062658452795582 4.0685768102511446e-05 0.0005327325664149638 1.4389646904456134e-06 0.015062658452795582 4.0685768102511446e-05 0.019159568147801977 7.914596685243273e-05']
['59866.472244620425 0.03434009434953924 6.799136199450046e-05 0.015094079993051604 4.069318486784031e-05 0.0005338438760708099 1.4392270048598003e-06 0.015094079993051606 4.069318486784031e-05 0.019246014356487633 7.923863073372374e-05']
['59866.47227615839 0.03416478103598274 6.788275061705932e-05 0.014945875670180492 4.059552504794676e-05 0.0005286022203880265 1.4357729952870174e-06 0.014945875670180492 4.059552504794676e-05 0.01921890536580225 7.909528737703872e-05']
['59866.47230769636 0.03429698270944135 6.796184877604235e-05 0.014989635363724533 4.0650058222112135e-05 0.00053014990295152 1.4377017117827753e-06 0.014989635363724534 4.0650058222112135e-05 0.019307347345716815 7.919116189650683e-05']
['59866.472339234315 0.034362544899346356 6.802704485660991e-05 0.015057321920981893 4.068751364459165e-05 0.0005325438252111604 1.4390264263679332e-06 0.015057321920981895 4.068751364459165e-05 0.019305222978364463 7.926633963103159e-05']
['59866.47237077228 0.03418009490950055 6.785653622308888e-05 0.015026006416617863 4.0676276845823306e-05 0.0005314362658078378 1.438629005908264e-06 0.015026006416617861 4.0676276845823306e-05 0.019154088492882693 7.911427814391934e-05']
['59866.472402310246 0.03439469780180354 6.803638303424562e-05 0.01500787116197467 4.064998519744497e-05 0.0005307948623810169 1.4376991290634982e-06 0.01500787116197467 4.064998519744497e-05 0.019386826639828873 7.925509897120235e-05']
['59866.472433848205 0.0343241230513317 6.798859159545401e-05 0.015011224222421059 4.0652019808777194e-05 0.0005309134526353565 1.4377710887192303e-06 0.015011224222421059 4.0652019808777194e-05 0.019312898828910643 7.921512041060502e-05']
['59866.47246538617 0.0343626727796227 6.800105793152153e-05 0.015148981064393873 4.0723916598008895e-05 0.0005357856042675126 1.4403139174744884e-06 0.015148981064393873 4.0723916598008895e-05 0.019213691715228826 7.926273565104683e-05']
['59866.47249692413 0.03422604519688515 6.788798443795903e-05 0.01504461668767292 4.068795415769601e-05 0.0005320944695035473 1.4390420063319455e-06 0.01504461668767292 4.068795415769601e-05 0.01918142850921223 7.914725544570285e-05']
['59866.472528462094 0.03423314436623342 6.79226033514217e-05 0.015094434173374008 4.068921296237318e-05 0.0005338564026372668 1.4390865274401144e-06 0.015094434173374008 4.068921296237318e-05 0.019138710192859412 7.917759845771984e-05']
['59866.47256000006 0.034190287129486074 6.787920910079472e-05 0.014974092583910904 4.06260004271169e-05 0.0005296001895655804 1.4368508413398013e-06 0.014974092583910904 4.06260004271169e-05 0.01921619454557517 7.910789428908796e-05']
['59866.47259153802 0.034175384399832975 6.787705744890846e-05 0.015042698284762865 4.0683169533591345e-05 0.0005320266198799967 1.438872784870369e-06 0.015042698284762865 4.0683169533591345e-05 0.01913268611507011 7.913542323903597e-05']
['59866.472623075984 0.03421636457057638 6.788132571642437e-05 0.015000758275575718 4.064958041499716e-05 0.0005305432954854514 1.4376848128129549e-06 0.015000758275575716 4.064958041499716e-05 0.01921560629500066 7.912182233072376e-05']
['59866.47265461395 0.03423829172988531 6.789845111465023e-05 0.015013690126306184 4.0651708232738624e-05 0.0005310006661448026 1.4377600689710775e-06 0.015013690126306184 4.0651708232738624e-05 0.019224601603579125 7.913760829092737e-05']
['59866.47268615191 0.03424451173950386 6.794370952575211e-05 0.015034823452804325 4.066614757153779e-05 0.0005317481046728368 1.438270756114381e-06 0.015034823452804323 4.066614757153779e-05 0.019209688286699535 7.918385708229845e-05']
['59866.472717689874 0.03418871630174308 6.787276376390793e-05 0.014985150548485536 4.0638701433770286e-05 0.0005299912850594889 1.4373000475600523e-06 0.014985150548485537 4.0638701433770286e-05 0.019203565753257545 7.910888771291362e-05']
['59866.47274922783 0.0342809770818749 6.793393600894071e-05 0.01508479539702949 4.069871001348446e-05 0.0005335155006593585 1.43942241691326e-06 0.01508479539702949 4.069871001348446e-05 0.01919618168484541 7.919220074242508e-05']
['59866.4727807658 0.03422292913354009 6.79115148291308e-05 0.015047471552524925 4.068421564512565e-05 0.0005321954396931152 1.4389097834974158e-06 0.015047471552524925 4.068421564512565e-05 0.019175457581015163 7.916551805581986e-05']
['59866.472812303764 0.0342340355951212 6.790502198328518e-05 0.014988563092097682 4.0651740874812326e-05 0.0005301119791004643 1.4377612234482736e-06 0.014988563092097682 4.0651740874812326e-05 0.019245472503023518 7.914326280046414e-05']
['59866.47284384172 0.034312009146491955 6.794578237740708e-05 0.015092114692907312 4.069456086642338e-05 0.0005337743677968935 1.4392756708545076e-06 0.015092114692907312 4.069456086642338e-05 0.019219894453584643 7.920023123065362e-05']
['59866.47287537969 0.03435055098635817 6.797709550502219e-05 0.015068571368629519 4.0684878829102155e-05 0.000532941693033421 1.4389332388325357e-06 0.015068571368629519 4.0684878829102155e-05 0.01928197961772865 7.922212366907134e-05']
['59866.472906917654 0.03433444815405452 6.798975830149591e-05 0.015009312752755289 4.064827082428438e-05 0.0005308458482251616 1.4376384955162066e-06 0.01500931275275529 4.064827082428438e-05 0.01932513540129923 7.921419793761849e-05']
['59866.47293845561 0.034289766017962 6.79464303618836e-05 0.015036571898691314 4.066269361398393e-05 0.0005318099432963131 1.4381485973548418e-06 0.015036571898691314 4.066269361398393e-05 0.019253194119270685 7.91844179802253e-05']
['59866.47296999358 0.034253952363408564 6.791527105657366e-05 0.015026813326017106 4.067472448734889e-05 0.0005314648043899527 1.438574102458341e-06 0.015026813326017106 4.067472448734889e-05 0.01922713903739146 7.91638633140754e-05']
['59866.473001531536 0.03430688022506602 6.793189597228303e-05 0.014975439474730404 4.063785470553825e-05 0.0005296478260837424 1.4372701006748114e-06 0.014975439474730404 4.063785470553825e-05 0.019331440750335615 7.915919229917344e-05']
['59866.4730330695 0.03433626268343565 6.80028253443244e-05 0.015101051145796268 4.070667549971585e-05 0.0005340904301637791 1.4397041383594502e-06 0.015101051145796268 4.070667549971585e-05 0.01923521153763938 7.92553953056185e-05']
['59866.47306460747 0.03419425737569852 6.787083491810534e-05 0.015018332841999623 4.066342279670935e-05 0.0005311648686230206 1.4381743869182126e-06 0.015018332841999622 4.066342279670935e-05 0.019175924533698898 7.911993545260669e-05']
['59866.473096145426 0.03426931093773781 6.79524037079898e-05 0.0151087480515601 4.069325893168985e-05 0.0005343626525190739 1.4392296243326356e-06 0.0151087480515601 4.069325893168985e-05 0.019160562886177707 7.920524283262555e-05']
['59866.47312768339 0.03428354107008795 6.794237309404735e-05 0.01502776748762963 4.0667757253465034e-05 0.0005314985509537619 1.4383276869667203e-06 0.015027767487629629 4.0667757253465034e-05 0.01925577358245832 7.918353706217908e-05']
['59866.47315922136 0.03421456489712538 6.789019827301063e-05 0.01501883359309792 4.0670371145993776e-05 0.0005311825790702546 1.438420134503756e-06 0.01501883359309792 4.0670371145993776e-05 0.019195731304027457 7.914011694900115e-05']
['59866.473190759316 0.034357347231404996 6.798590075149198e-05 0.015015444571240873 4.066424040103687e-05 0.0005310627169411889 1.4382033037560388e-06 0.015015444571240873 4.066424040103687e-05 0.019341902660164122 7.9219083233682e-05']
['59866.47322229728 0.03410573924892238 6.779039256487629e-05 0.014993353371396734 4.0656349976174355e-05 0.0005302814005736276 1.4379242370627132e-06 0.014993353371396734 4.0656349976174355e-05 0.019112385877525645 7.904730303739152e-05']
['59866.47325383524 0.03425352751881775 6.791894158840544e-05 0.015063593901941112 4.068376888954004e-05 0.0005327656511606354 1.4388939827507927e-06 0.015063593901941112 4.068376888954004e-05 0.01918993361687664 7.91716595603928e-05']
['59866.473285373206 0.034412192880411974 6.800667801788493e-05 0.015037146799202879 4.063913332911613e-05 0.0005318302762425801 1.4373153227332056e-06 0.015037146799202879 4.063913332911613e-05 0.019375046081209095 7.92240330503942e-05']
['59866.47331691117 0.03427372561572136 6.79406970506467e-05 0.015043576634171892 4.067656729138764e-05 0.0005320576851355986 1.438639278318767e-06 0.01504357663417189 4.067656729138764e-05 0.01923014898154947 7.918662413778315e-05']
['59866.47334844913 0.03423808797494975 6.787651264876698e-05 0.014975518938024414 4.0632914269050014e-05 0.0005296506365228614 1.4370953684774482e-06 0.014975518938024414 4.0632914269050014e-05 0.019262569036925338 7.910913152951555e-05']
['59866.473379987096 0.034321410231275405 6.797372268676745e-05 0.01508101182513355 4.0687995880566494e-05 0.0005333816841771846 1.4390434819766294e-06 0.01508101182513355 4.0687995880566494e-05 0.019240398406141855 7.922083049725344e-05']
['59866.47341152506 0.03429452263229171 6.79478793683956e-05 0.015033631768068099 4.065399068777019e-05 0.0005317059574469752 1.4378407943045572e-06 0.015033631768068099 4.065399068777019e-05 0.019260890864223612 7.918119265017005e-05']
['59866.47344306302 0.034273427900089824 6.797172629424917e-05 0.015418173691873698 4.081951898153774e-05 0.0005453063458913591 1.4436951601211514e-06 0.015418173691873698 4.081951898153774e-05 0.018855254208216127 7.928674987224816e-05']
['59866.473474600985 0.034346002104844925 6.80010641517901e-05 0.01509537829783937 4.069085837557008e-05 0.0005338897942096126 1.4391447220276064e-06 0.015095378297839369 4.069085837557008e-05 0.019250623807005554 7.924576128170246e-05']
['59866.473506138944 0.034309912803911775 6.796483570140795e-05 0.015019839531234262 4.066898024261168e-05 0.0005312181568539975 1.4383709413596174e-06 0.015019839531234262 4.066898024261168e-05 0.019290073272677514 7.920343960897984e-05']
['59866.47353767691 0.03429812535913707 6.793955311572754e-05 0.015009990127991235 4.0665695128094955e-05 0.0005308698054734124 1.4382547542009597e-06 0.015009990127991233 4.0665695128094955e-05 0.01928813523114584 7.91800583342544e-05']
['59866.473569214875 0.03407100924047883 6.775037786741072e-05 0.015021404665565367 4.066873807513724e-05 0.0005312735121574194 1.438362376437259e-06 0.015021404665565369 4.066873807513724e-05 0.019049604574913462 7.901936444822278e-05']
['59866.47360075283 0.034256702485624624 6.791788925779565e-05 0.01507814337764469 4.06733355978099e-05 0.0005332802336001065 1.4385249805393324e-06 0.01507814337764469 4.06733355978099e-05 0.019178559107979935 7.916539591188983e-05']
['59866.4736322908 0.03427883540129937 6.795082187225722e-05 0.015007735383842907 4.0666344626456394e-05 0.0005307900602119427 1.4382777255064603e-06 0.015007735383842908 4.0666344626456394e-05 0.01927110001745646 7.919006110865774e-05']
['59866.473663828765 0.034296601578595015 6.79569688108527e-05 0.015005552312973049 4.065536022842892e-05 0.000530712849874152 1.4378892318969133e-06 0.015005552312973047 4.065536022842892e-05 0.019291049265621966 7.918969582756666e-05']
['59866.47369536672 0.03430870289722599 6.796780777827566e-05 0.015047385635333527 4.065368922037576e-05 0.0005321924009940691 1.4378301320765562e-06 0.015047385635333529 4.065368922037576e-05 0.019261317261892463 7.919813975979187e-05']
['59866.47372690469 0.03423719076305351 6.791390597595795e-05 0.014946621578659922 4.0612939894173216e-05 0.0005286286015039367 1.4363889194781565e-06 0.014946621578659924 4.0612939894173216e-05 0.019290569184393584 7.913096430449324e-05']
['59866.47375844265 0.03421634704607537 6.789320765647444e-05 0.01498171578781481 4.063914972929799e-05 0.0005298698052508035 1.4373159027709858e-06 0.014981715787814808 4.063914972929799e-05 0.01923463125826056 7.912665882372046e-05']
['59866.47378998061 0.034247662221157466 6.791465464461125e-05 0.015043152667132954 4.066083558666139e-05 0.000532042690368942 1.4380828830808903e-06 0.015043152667132954 4.066083558666139e-05 0.019204509554024512 7.915619916407259e-05']
['59866.47382151858 0.03435966936118689 6.800458866604647e-05 0.014965133694153037 4.063327252970373e-05 0.0005292833336567849 1.4371080393561047e-06 0.014965133694153036 4.063327252970373e-05 0.019394535667033853 7.921923324617167e-05']
['59866.47385305654 0.03424867554306143 6.791095800931392e-05 0.014964116730099264 4.062391834821861e-05 0.0005292473659109839 1.4367772028623414e-06 0.014964116730099264 4.062391834821861e-05 0.019284558812962163 7.913406952574554e-05']
['59866.4738845945 0.03424961755862377 6.793376949715613e-05 0.014991552986390686 4.0649315945200805e-05 0.0005302177249795874 1.437675459107313e-06 0.014991552986390684 4.0649315945200805e-05 0.019258064572233086 7.916668443799763e-05']
['59866.47391613247 0.03431360310765317 6.796973535258554e-05 0.014981336891279097 4.065209564984164e-05 0.0005298564045271194 1.437773771048185e-06 0.014981336891279099 4.065209564984164e-05 0.019332266216374072 7.919897603267602e-05']
['59866.47394767043 0.03420618755469554 6.785613269086166e-05 0.014930596731985823 4.060059739162024e-05 0.0005280618384904983 1.4359523927467275e-06 0.014930596731985823 4.060059739162024e-05 0.019275590822709715 7.907504822835245e-05']
['59866.47397920839 0.034210976774588196 6.787197911358277e-05 0.014998116146296557 4.0654855902620765e-05 0.0005304498492776589 1.4378713950201807e-06 0.014998116146296557 4.0654855902620765e-05 0.01921286062829164 7.911651444077572e-05']
['59866.47401074635 0.03423335569307763 6.78951506373743e-05 0.014992176716204916 4.064937202664752e-05 0.0005302397849091626 1.4376774425827486e-06 0.014992176716204914 4.064937202664752e-05 0.019241178976872716 7.913357647820894e-05']
['59866.47404228432 0.03420291738044875 6.78856697566978e-05 0.015050019420789026 4.0683994548645645e-05 0.000532285552099466 1.4389019638090396e-06 0.015050019420789026 4.0683994548645645e-05 0.019152897959659722 7.91432345229184e-05']
['59866.47407382228 0.0343484876702038 6.800659116273424e-05 0.014995475367623932 4.065554712764126e-05 0.0005303564508378012 1.4378958421043585e-06 0.014995475367623932 4.065554712764126e-05 0.019353012302579867 7.92323794532459e-05']
['59866.47410536024 0.03433180179533353 6.796700278203649e-05 0.015005837119128864 4.0660599622969746e-05 0.0005307229228313789 1.4380745375724648e-06 0.015005837119128862 4.0660599622969746e-05 0.01932596467620467 7.92009963881314e-05']
['59866.47413689821 0.03435397443714532 6.79926072989336e-05 0.014938031419602255 4.062246497072801e-05 0.0005283247867759425 1.4367258001486064e-06 0.014938031419602253 4.062246497072801e-05 0.01941594301754307 7.920340464654927e-05']
['59866.47416843617 0.034294487590218595 6.798458697106914e-05 0.015156889757255 4.0723415008765664e-05 0.0005360653170591224 1.4402961773839414e-06 0.015156889757255 4.0723415008765664e-05 0.019137597832963593 7.924834758910134e-05']
['59866.47419997413 0.03428414566330059 6.792340627505356e-05 0.015087749763148757 4.067532628258459e-05 0.0005336199899863773 1.4385953866108944e-06 0.015087749763148757 4.067532628258459e-05 0.019196395900151833 7.91711518685986e-05']
['59866.4742315121 0.034372401384573585 6.799625335949563e-05 0.015071145141705117 4.0688325215335734e-05 0.0005330327216350606 1.4390551298113975e-06 0.015071145141705117 4.0688325215335734e-05 0.019301256242868468 7.924033240564837e-05']
['59866.474263050055 0.034354468645007505 6.798122154375654e-05 0.015024951652774574 4.0663912665046606e-05 0.0005313989611679591 1.43819171246651e-06 0.015024951652774572 4.0663912665046606e-05 0.019329516992232933 7.921489932968321e-05']
['59866.47429458802 0.0341778054792936 6.784845894512388e-05 0.015031583101972059 4.0670567944330896e-05 0.0005316335007056575 1.4384270948211215e-06 0.015031583101972059 4.0670567944330896e-05 0.019146222377321546 7.910441503571464e-05']
['59866.47432612599 0.03430735221730047 6.793840154414398e-05 0.015060574294570995 4.06817784495884e-05 0.0005326588543963797 1.4388235853380746e-06 0.015060574294570996 4.06817784495884e-05 0.019246777922729472 7.918733170270823e-05']
['59866.474357663945 0.034289797361923405 6.794692664115654e-05 0.01500045444107755 4.066852436907668e-05 0.0005305325495382813 1.4383548181315017e-06 0.015000454441077548 4.066852436907668e-05 0.01928934292084586 7.918783817188654e-05']
['59866.47438920191 0.03425480178444804 6.79017263041852e-05 0.014964636572637986 4.0624727938958605e-05 0.0005292657515797987 1.436805836277486e-06 0.014964636572637986 4.0624727938958605e-05 0.019290165211810057 7.912656289263978e-05']
['59866.474420739876 0.03418206391282573 6.785051986039354e-05 0.015022095834445129 4.0663911975267615e-05 0.000531297957256025 1.4381916880705686e-06 0.015022095834445129 4.0663911975267615e-05 0.0191599680783806 7.910276090287855e-05']
['59866.474452277835 0.034306161028228234 6.796420324270861e-05 0.01509255437861141 4.071321202072838e-05 0.0005337899184976077 1.439935320499399e-06 0.01509255437861141 4.071321202072838e-05 0.019213606649616823 7.922561805035658e-05']
['59866.4744838158 0.034212166436341736 6.785000611795867e-05 0.015000733095301054 4.0651447156575176e-05 0.0005305424049154112 1.4377508352906474e-06 0.015000733095301054 4.0651447156575176e-05 0.019211433341040682 7.909591320751568e-05']
['59866.47451535376 0.03434963249400111 6.79964539517189e-05 0.015112542559175029 4.071793295321618e-05 0.0005344968557731885 1.440102289330829e-06 0.01511254255917503 4.071793295321618e-05 0.019237089934826077 7.925571155437845e-05']
['59866.474546891724 0.03422838543731404 6.788989726766277e-05 0.01495296440376299 4.062009981053264e-05 0.0005288529330524523 1.436642149718318e-06 0.01495296440376299 4.062009981053264e-05 0.019275421033551052 7.911403579410823e-05']
['59866.47457842969 0.03425817161592548 6.791547492942926e-05 0.015089972956776722 4.068741163800805e-05 0.0005336986193764531 1.4390228186230424e-06 0.015089972956776722 4.068741163800805e-05 0.01916819865914876 7.917055766312781e-05']
['59866.47460996765 0.03433513636718703 6.799115291847131e-05 0.015013184781784159 4.0673551275010025e-05 0.0005309827932384371 1.4385326085598907e-06 0.015013184781784159 4.0673551275010025e-05 0.019321951585402876 7.92283702249631e-05']
['59866.474641505614 0.034342050750974816 6.796860153667239e-05 0.015030752592227505 4.065060947624885e-05 0.0005316041274320727 1.4377212084096106e-06 0.015030752592227506 4.065060947624885e-05 0.01931129815874731 7.919724013904422e-05']
['59866.47467304358 0.03424583649468251 6.79033641380238e-05 0.015100986809253166 4.070323917162219e-05 0.0005340881547240333 1.439582603114519e-06 0.015100986809253166 4.070323917162219e-05 0.019144849685429344 7.916830514999885e-05']
['59866.47470458154 0.034317684186336704 6.798256725916431e-05 0.015068938046222726 4.067659663917129e-05 0.0005329546616004166 1.4386403162842863e-06 0.015068938046222726 4.067659663917129e-05 0.01924874614011398 7.92225660105291e-05']
['59866.474736119504 0.034239139747331095 6.791814843482007e-05 0.01498832852401484 4.064242892168601e-05 0.000530103682951603 1.4374318804771864e-06 0.01498832852401484 4.064242892168601e-05 0.019250811223316254 7.914974362225409e-05']
['59866.47476765746 0.034289499862603136 6.795154898576341e-05 0.015012027347455202 4.0655615443985545e-05 0.0005309418573729354 1.4378982583007779e-06 0.015012027347455202 4.0655615443985545e-05 0.019277472515147935 7.918517586451293e-05']
['59866.47479919543 0.03430483591999276 6.793828671093699e-05 0.015040289078362983 4.067416078730143e-05 0.0005319414116338923 1.438554165647458e-06 0.015040289078362981 4.067416078730143e-05 0.01926454684162978 7.918331994156803e-05']
['59866.474830733394 0.03424107590085651 6.793839879439827e-05 0.015046404732212512 4.067189209620083e-05 0.0005321577086428682 1.4384739271134557e-06 0.015046404732212512 4.067189209620083e-05 0.019194671168643998 7.9182250772706e-05']
['59866.47486227135 0.03438758191954919 6.799467414720383e-05 0.015063009965612004 4.067998082979066e-05 0.0005327449986376958 1.4387600075432723e-06 0.015063009965612006 4.067998082979066e-05 0.01932457195393718 7.923469286049239e-05']
['59866.47489380932 0.034214292470632644 6.789812468287933e-05 0.015001650656258178 4.066251411718643e-05 0.0005305748569958366 1.438142248954266e-06 0.015001650656258178 4.066251411718643e-05 0.019212641814374466 7.914287958990507e-05']
['59866.474925347284 0.03431258605728135 6.796261824702811e-05 0.015047867560975654 4.0683324548660214e-05 0.0005322094456269907 1.4388782674069167e-06 0.015047867560975653 4.0683324548660214e-05 0.019264718496305698 7.920890338417075e-05']
['59866.47495688524 0.034160383642293735 6.787316018869233e-05 0.014931688943140167 4.0602770252744204e-05 0.0005281004675580792 1.4360292419886234e-06 0.014931688943140167 4.0602770252744204e-05 0.019228694699153566 7.909077586038095e-05']
['59866.47498842321 0.03426354636646826 6.793651585554773e-05 0.014994497726640516 4.065280627664376e-05 0.0005303218738611168 1.4377989043300185e-06 0.014994497726640516 4.065280627664376e-05 0.019269048639827743 7.917083329583827e-05']
['59866.475019961166 0.03421060982861005 6.788307696616692e-05 0.015028083927669996 4.065539403516702e-05 0.0005315097427307878 1.4378904275656862e-06 0.015028083927669994 4.065539403516702e-05 0.019182525900940058 7.912631169559994e-05']
['59866.47505149913 0.03420915145941574 6.792652973792781e-05 0.015031873634337032 4.0681888274765855e-05 0.0005316437761861049 1.4388274696091563e-06 0.01503187363433703 4.0681888274765855e-05 0.019177277825078713 7.917720300590393e-05']
['59866.4750830371 0.03429319810082873 6.790914705369884e-05 0.015102190112403532 4.070828763076651e-05 0.0005341307128672375 1.4397611558318113e-06 0.015102190112403534 4.070828763076651e-05 0.0191910079884252 7.91758608124352e-05']
['59866.475114575056 0.034386232514370514 6.800240953440372e-05 0.015099787892165841 4.070680115724608e-05 0.0005340457517060766 1.4397085825854666e-06 0.015099787892165841 4.070680115724608e-05 0.019286444622204673 7.925510307191792e-05']
['59866.47514611302 0.034240528771907475 6.791673709969338e-05 0.015011335212881428 4.065816760920282e-05 0.0005309173781198908 1.4379885226807594e-06 0.015011335212881428 4.065816760920282e-05 0.019229193559026046 7.915661546331359e-05']
['59866.47517765098 0.03425434904479791 6.79279560471312e-05 0.015116190119124141 4.071300754918496e-05 0.0005346258618167719 1.439928088797875e-06 0.015116190119124141 4.071300754918496e-05 0.01913815892567377 7.919442023552531e-05']
['59866.475209188946 0.03422257175159557 6.792351609847604e-05 0.014949562965789935 4.0627587751282684e-05 0.0005287326317931118 1.4369069814480844e-06 0.014949562965789935 4.0627587751282684e-05 0.019273008785805637 7.914673035361669e-05']
['59866.47524072691 0.03427716877379733 6.795295644672561e-05 0.014996642650786691 4.0633078519590646e-05 0.0005303977350345436 1.437101177651992e-06 0.01499664265078669 4.0633078519590646e-05 0.01928052612301064 7.917481518658447e-05']
['59866.47527226487 0.03430572182562062 6.79606716323427e-05 0.014930550075897097 4.061245697513535e-05 0.0005280601883689102 1.4363718397110477e-06 0.014930550075897097 4.061245697513535e-05 0.019375171749723523 7.91708566978805e-05']
['59866.475303802836 0.034316502866090726 6.797277692477559e-05 0.015138373743323568 4.072129975745929e-05 0.0005354104470272233 1.4402213656725434e-06 0.015138373743323568 4.072129975745929e-05 0.01917812912276716 7.923712928168308e-05']
['59866.4753353408 0.03420439607936716 6.787442561104568e-05 0.015022381829836968 4.067450804041612e-05 0.0005313080722738723 1.4385664472140594e-06 0.015022381829836968 4.067450804041612e-05 0.01918201424953019 7.912871322319888e-05']
['59866.47536687876 0.03421031721022521 6.788243544240416e-05 0.015009409808113126 4.065969883570744e-05 0.0005308492808562623 1.438042678740138e-06 0.015009409808113126 4.065969883570744e-05 0.019200907402112083 7.912797325221087e-05']
['59866.475398416726 0.034259175774976613 6.791100987053296e-05 0.015027940976360572 4.0673873222371834e-05 0.0005315046868624508 1.4385439951185678e-06 0.01502794097636057 4.0673873222371834e-05 0.01923123479861604 7.915977024060392e-05']
['59866.475429954684 0.03438300019485526 6.800253710254338e-05 0.015007905402578927 4.065241068163991e-05 0.0005307960733946661 1.437784913018835e-06 0.015007905402578927 4.065241068163991e-05 0.019375094792276334 7.922729041568631e-05']
['59866.47546149265 0.03437568768389475 6.800287842443522e-05 0.014953893453241246 4.06310700123148e-05 0.0005288857914561948 1.4370301412383948e-06 0.014953893453241246 4.06310700123148e-05 0.019421794230653502 7.921663540162599e-05']
['59866.475493030615 0.034214766489649294 6.789731521352319e-05 0.015036279506555167 4.067063450563412e-05 0.0005317996020399155 1.4384294489456608e-06 0.015036279506555167 4.067063450563412e-05 0.01917848698309413 7.914635761862578e-05']
['59866.475524568574 0.03433359394247001 6.79772620509846e-05 0.015091630160942626 4.0692313714573554e-05 0.0005337572309841677 1.4391961941156682e-06 0.015091630160942624 4.0692313714573554e-05 0.019241963781527385 7.922608504396454e-05']
['59866.47555610654 0.0342569895166201 6.792540226076534e-05 0.015006187894804672 4.066034557161754e-05 0.0005307353289830947 1.4380655523439085e-06 0.015006187894804672 4.066034557161754e-05 0.01925080162181543 7.916516894626162e-05']
['59866.475587644505 0.03419466778680247 6.786841943977663e-05 0.01507069929753854 4.06884484284916e-05 0.0005330169531232919 1.4390594875853553e-06 0.015070699297538539 4.06884484284916e-05 0.01912396848926393 7.913072849893062e-05']
['59866.47561918246 0.034296166020580374 6.79566233589731e-05 0.01501748470821537 4.065346902017447e-05 0.000531134872026539 1.437822344087555e-06 0.01501748470821537 4.065346902017447e-05 0.019278681312365004 7.918842845850404e-05']
['59866.47565072043 0.03430531762826597 6.796675915105627e-05 0.015086870305981388 4.069480227717552e-05 0.0005335888855518386 1.4392842090132894e-06 0.015086870305981388 4.069480227717552e-05 0.01921844732228458 7.921835192602849e-05']
['59866.47568225839 0.03435105497155628 6.799431033866056e-05 0.01503399286254547 4.068027178557102e-05 0.0005317187285516411 1.4387702979989759e-06 0.01503399286254547 4.068027178557102e-05 0.01931706210901081 7.923453004200888e-05']
['59866.47571379635 0.03422480096824487 6.791395600830232e-05 0.015016566182847444 4.06543651710602e-05 0.0005311023858370589 1.4378540389416041e-06 0.015016566182847444 4.06543651710602e-05 0.01920823478539743 7.915227620327502e-05']
['59866.47574533432 0.03432330245441892 6.797048216411543e-05 0.015012636123854289 4.0657508446571196e-05 0.0005309633884336359 1.4379652095716205e-06 0.015012636123854289 4.0657508446571196e-05 0.01931066633056463 7.920239541014742e-05']
['59866.47577687228 0.0342435584678401 6.793291921500229e-05 0.015097701661187124 4.067683847893154e-05 0.0005339719663788112 1.438648869616126e-06 0.015097701661187124 4.067683847893154e-05 0.019145856806652976 7.918009031134729e-05']
['59866.47580841024 0.034297958376794474 6.794694619464205e-05 0.015135219963749929 4.070850926030021e-05 0.0005352989048919862 1.4397689943731052e-06 0.015135219963749927 4.070850926030021e-05 0.01916273841304455 7.920839742965091e-05']
['59866.47583994821 0.034210510935222 6.788125277687526e-05 0.014960011839186157 4.0625925565992086e-05 0.0005291021850932785 1.4368481936691215e-06 0.014960011839186157 4.0625925565992086e-05 0.01925049909603584 7.910960944570239e-05']
['59866.47587148617 0.03425613005362919 6.790446845730622e-05 0.015098219110564179 4.068403808587677e-05 0.0005339902674068464 1.4389035036236045e-06 0.015098219110564179 4.068403808587677e-05 0.019157910943065008 7.915938220730608e-05']
['59866.47590302413 0.03420514659314996 6.786393380310618e-05 0.01502325764741918 4.064640131001649e-05 0.000531339047984418 1.43757237497467e-06 0.015023257647419179 4.064640131001649e-05 0.01918188894573078 7.910526816013766e-05']
['59866.47593456209 0.03436196282310801 6.797690980240868e-05 0.015061935146275891 4.067708051352527e-05 0.0005327069846798573 1.4386574298387908e-06 0.015061935146275891 4.067708051352527e-05 0.019300027676832116 7.921795974012851e-05']
['59866.47596610006 0.03430866720478636 6.794147404445806e-05 0.015022899471661367 4.0652046671392265e-05 0.0005313263801083399 1.437772038789891e-06 0.015022899471661367 4.0652046671392265e-05 0.019285767733124994 7.917469794010473e-05']
['59866.47599763802 0.034265269530783904 6.792538446499159e-05 0.01505120462892418 4.066624651537184e-05 0.0005323274702624222 1.438274255536665e-06 0.015051204628924182 4.066624651537184e-05 0.019214064901859722 7.91681846474069e-05']
['59866.47602917598 0.03416162927313791 6.783632299119503e-05 0.015019625687102748 4.065967307973462e-05 0.0005312105936649794 1.4380417678089404e-06 0.015019625687102748 4.065967307973462e-05 0.01914200358603516 7.908840453515693e-05']
['59866.47606071395 0.03426104227671408 6.794541032183962e-05 0.015129251798374035 4.0712631440561255e-05 0.0005350878242207055 1.439914786676408e-06 0.015129251798374035 4.0712631440561255e-05 0.019131790478340044 7.920919859850955e-05']
['59866.47609225191 0.03432184500445038 6.794596315606894e-05 0.015012339545014637 4.0649431971801025e-05 0.0005309528991028921 1.4376795627088586e-06 0.015012339545014635 4.0649431971801025e-05 0.019309505459435744 7.917720776104672e-05']
['59866.47612378987 0.03425198962995366 6.791946276572212e-05 0.014999952467632159 4.065146065320682e-05 0.0005305147958593625 1.4377513126363452e-06 0.014999952467632159 4.065146065320682e-05 0.019252037162321503 7.915550944579623e-05']
['59866.47615532784 0.034216446556578364 6.78659061667001e-05 0.015035783572572998 4.066537683130698e-05 0.0005317820619633135 1.4382434967549203e-06 0.015035783572573 4.066537683130698e-05 0.019180662984005364 7.91167118418071e-05']
['59866.476186865795 0.03418477012761455 6.787814575289718e-05 0.014971078313083988 4.0639700138425495e-05 0.0005294935815429312 1.4373353695117335e-06 0.014971078313083988 4.0639700138425495e-05 0.01921369181453056 7.91140183418381e-05']
['59866.47621840376 0.03425319436647512 6.791338345044398e-05 0.015039833034286043 4.067201840626602e-05 0.0005319252823740895 1.4384783944181751e-06 0.015039833034286043 4.067201840626602e-05 0.01921336133218908 7.916085353839156e-05']
['59866.47624994173 0.034282068036804524 6.792378409693802e-05 0.015136887117364762 4.072110900758344e-05 0.0005353578683894739 1.4402146192757355e-06 0.015136887117364764 4.072110900758344e-05 0.019145180919439758 7.919500719650793e-05']
['59866.476281479685 0.03445708192197998 6.808501298174195e-05 0.015090451637092418 4.069147569641753e-05 0.0005337155492294317 1.43916655528635e-06 0.015090451637092418 4.069147569641753e-05 0.01936663028488756 7.931812647230209e-05']
['59866.47631301765 0.03420415318836495 6.790011920775433e-05 0.014996812896998776 4.063765061876241e-05 0.0005304037562625872 1.4372628825816571e-06 0.014996812896998777 4.063765061876241e-05 0.01920734029136617 7.91318193664208e-05']
['59866.47634455562 0.03428671432316668 6.793781903395104e-05 0.015091627250153958 4.070360159497522e-05 0.0005337571280360778 1.439595421218547e-06 0.015091627250153956 4.070360159497522e-05 0.01919508707301272 7.919804566965241e-05']
['59866.476376093575 0.03421799078464647 6.787759337052222e-05 0.014996141105260732 4.06431750650207e-05 0.0005303799964901788 1.437458269899402e-06 0.014996141105260733 4.06431750650207e-05 0.019221849679385734 7.911532949523678e-05']
['59866.47640763154 0.03428345568817549 6.794072216340215e-05 0.014900910682725413 4.058196312134207e-05 0.000527011909272573 1.4352933402521317e-06 0.014900910682725413 4.058196312134207e-05 0.01938254500545008 7.913809107418861e-05']
['59866.4764391695 0.03431472018773992 6.79375162140075e-05 0.015008921852560333 4.064532553990016e-05 0.0005308320229588765 1.43753432738986e-06 0.015008921852560335 4.064532553990016e-05 0.019305798335179584 7.916785078283352e-05']
['59866.476470707465 0.034233188429349005 6.789841982628675e-05 0.015002398928630525 4.0662458743772784e-05 0.0005306013217173562 1.4381402905203777e-06 0.015002398928630525 4.0662458743772784e-05 0.01923078950071848 7.914310434899374e-05']
['59866.47650224543 0.03430331956752683 6.794303639721807e-05 0.015086299324774498 4.069220971875923e-05 0.0005335686912226187 1.4391925160161323e-06 0.015086299324774498 4.069220971875923e-05 0.019217020242752333 7.919666739623065e-05']
['59866.47653378339 0.03424918984182835 6.791875745264956e-05 0.014970139362270605 4.064099686128752e-05 0.0005294603729510934 1.4373812317013583e-06 0.014970139362270605 4.064099686128752e-05 0.019279050479557747 7.914953088800352e-05']
['59866.476565321354 0.034272331474783056 6.794310997480819e-05 0.015066202195607906 4.069484873018182e-05 0.0005328579006784366 1.439285851952306e-06 0.015066202195607906 4.069484873018182e-05 0.01920612927917515 7.919808650605935e-05']
['59866.47659685932 0.03416858705781063 6.785491022754608e-05 0.015092046023439103 4.0713457127593904e-05 0.0005337719391112701 1.4399439893814509e-06 0.015092046023439101 4.0713457127593904e-05 0.01907654103437153 7.913200637712128e-05']
['59866.47662839728 0.03417207660708725 6.786668839993931e-05 0.01505504363992657 4.067283222423399e-05 0.0005324632475018921 1.4385071773409263e-06 0.01505504363992657 4.067283222423399e-05 0.01911703296716068 7.912121507860673e-05']
['59866.476659935244 0.03435352086204945 6.800842888809854e-05 0.015075133642608998 4.06941665370177e-05 0.000533173785998256 1.439261724304703e-06 0.015075133642608998 4.06941665370177e-05 0.019278387219440453 7.925377965731406e-05']
['59866.4766914732 0.034386421602702735 6.80182744369155e-05 0.015042826842856022 4.0674133724677806e-05 0.0005320311666924413 1.4385532085029417e-06 0.015042826842856022 4.0674133724677806e-05 0.019343594759846712 7.92519451599046e-05']
['59866.47672301117 0.034286739398509604 6.79373504892293e-05 0.015098111654772636 4.0702262016890604e-05 0.0005339864669356491 1.439548043335475e-06 0.015098111654772636 4.0702262016890604e-05 0.019188627743736968 7.919695527473263e-05']
['59866.476754549134 0.0342237308276942 6.790761520823323e-05 0.015055750379371277 4.068567911606722e-05 0.0005324882432965816 1.438961543193954e-06 0.015055750379371275 4.068567911606722e-05 0.01916798044832292 7.916292496115248e-05']
['59866.47678608709 0.03423772445741363 6.789741402670385e-05 0.015107990726553692 4.07103456631827e-05 0.000534335867626119 1.4398339438389403e-06 0.015107990726553692 4.07103456631827e-05 0.019129733730859938 7.916685591539846e-05']
['59866.47681762506 0.03425532265769648 6.793715390051131e-05 0.015021223565348159 4.066384349570446e-05 0.0005312671070474719 1.4381892661014628e-06 0.015021223565348159 4.066384349570446e-05 0.01923409909234832 7.917704874485348e-05']
['59866.476849163024 0.034216815745408996 6.788491745166807e-05 0.01501265167571396 4.065604323313747e-05 0.0005309639384681561 1.4379133882470292e-06 0.01501265167571396 4.065604323313747e-05 0.019204164069695037 7.912822422368982e-05']
['59866.47688070098 0.034183030576908684 6.789562422987467e-05 0.015081830841476053 4.068270132108043e-05 0.0005334106509548252 1.4388562252402514e-06 0.015081830841476055 4.068270132108043e-05 0.01910119973543263 7.915110849725721e-05']
['59866.47691223895 0.03426358508316343 6.790881412701407e-05 0.015050633556009654 4.066804418468615e-05 0.0005323072726897083 1.4383378350827576e-06 0.015050633556009656 4.066804418468615e-05 0.01921295152715377 7.915489153517255e-05']
['59866.47694377691 0.03423089981958962 6.789904309826654e-05 0.015018442386872024 4.066833379594589e-05 0.0005311687429803391 1.4383480779857717e-06 0.015018442386872024 4.066833379594589e-05 0.019212457432717597 7.914665771464221e-05']
['59866.47697531487 0.03423127967471098 6.790945795307217e-05 0.015003947197797815 4.065116369217099e-05 0.0005306560805376253 1.437740809788177e-06 0.015003947197797815 4.065116369217099e-05 0.01922733247691316 7.914677244845653e-05']
['59866.47700685284 0.03427143773466737 6.790365703529255e-05 0.015059725409428659 4.067812879673838e-05 0.0005326288312260419 1.4386945052732636e-06 0.01505972540942866 4.067812879673838e-05 0.01921171232523871 7.915564920566738e-05']
['59866.477038390796 0.03422463141593349 6.788233956618765e-05 0.015029587234311383 4.0658242409123423e-05 0.0005315629113270011 1.4379911681867832e-06 0.015029587234311385 4.0658242409123423e-05 0.0191950441816221 7.912714262993608e-05']
['59866.47706992876 0.034211773528384434 6.788041905928901e-05 0.015009240783674684 4.065406568523758e-05 0.000530843302839622 1.4378434467973694e-06 0.015009240783674684 4.065406568523758e-05 0.01920253274470975 7.912334894583456e-05']
['59866.47710146673 0.034267136178179294 6.79386744322544e-05 0.014982897700499697 4.06446660303819e-05 0.0005299116068610486 1.4375110020121163e-06 0.014982897700499697 4.06446660303819e-05 0.0192842384776796 7.916850611406747e-05']
['59866.477133004686 0.03413249269466027 6.788268040692083e-05 0.015029766925467052 4.067010249582844e-05 0.000531569266601591 1.4384106329478058e-06 0.015029766925467054 4.067010249582844e-05 0.019102725769193214 7.913352978510022e-05']
['59866.47716454265 0.034260565062342534 6.793126699398613e-05 0.015013642644065208 4.065031632122814e-05 0.0005309989868040559 1.437710840171691e-06 0.015013642644065208 4.065031632122814e-05 0.019246922418277326 7.916505070057201e-05']
['59866.47719608061 0.03432022177002667 6.798498078855613e-05 0.015102584507007442 4.069316726535673e-05 0.0005341446617229577 1.4392263822992952e-06 0.015102584507007443 4.069316726535673e-05 0.019217637263019227 7.923314631457372e-05']
['59866.477227618576 0.03414807829346481 6.782206911074966e-05 0.01497846202438914 4.063188796302659e-05 0.0005297547269101708 1.4370590703270588e-06 0.014978462024389138 4.063188796302659e-05 0.019169616269075675 7.906189586585468e-05']
['59866.47725915654 0.034292737897759176 6.793853462512855e-05 0.015060559806886148 4.068131377868399e-05 0.0005326583419993447 1.438807150966664e-06 0.01506055980688615 4.068131377868399e-05 0.019232178090873027 7.918720715980287e-05']
['59866.4772906945 0.03427622573783893 6.796465905650744e-05 0.014959805720972998 4.06224265662754e-05 0.0005290948951527262 1.4367244418689463e-06 0.014959805720972998 4.06224265662754e-05 0.019316420016865933 7.917939391533466e-05']
['59866.477322232466 0.03419469726883646 6.7865120605423e-05 0.014975901132205788 4.0646282875993676e-05 0.000529664153876903 1.4375681862279675e-06 0.01497590113220579 4.0646282875993676e-05 0.019218796136630675 7.910622545933983e-05']
['59866.47735377043 0.034161568420029216 6.783037857152763e-05 0.014976107025571813 4.06540713787127e-05 0.0005296714358651146 1.4378436481628603e-06 0.014976107025571813 4.06540713787127e-05 0.019185461394457405 7.90804260030396e-05']
['59866.47738530839 0.03414805547484609 6.788556553778287e-05 0.014965357994988781 4.06352704491107e-05 0.0005292912666760623 1.437178701300442e-06 0.014965357994988781 4.06352704491107e-05 0.01918269747985731 7.911810925987161e-05']
['59866.477416846355 0.03431322425961884 6.796747416620854e-05 0.01505685906827537 4.066478042505378e-05 0.0005325274551453455 1.4382224031986342e-06 0.01505685906827537 4.066478042505378e-05 0.019256365191343466 7.92035473419724e-05']
['59866.477448384314 0.03428726319844095 6.79524430065357e-05 0.014929361805858101 4.0615021086803456e-05 0.0005280181619132582 1.4364625266102963e-06 0.014929361805858101 4.0615021086803456e-05 0.01935790139258285 7.916510878182366e-05']
['59866.47747992228 0.03427548580065708 6.793874037015268e-05 0.01506610440299511 4.068893339319865e-05 0.0005328544419722756 1.4390766397032114e-06 0.01506610440299511 4.068893339319865e-05 0.019209381397661967 7.919129840935283e-05']
['59866.477511460245 0.03416330268168739 6.78336993199443e-05 0.014986771821744653 4.063895545456466e-05 0.0005300486258713313 1.4373090317078464e-06 0.014986771821744653 4.063895545456466e-05 0.019176530859942732 7.907550482840248e-05']
['59866.477542998204 0.03424890882977225 6.792796566113083e-05 0.015026927564665431 4.06753095314907e-05 0.0005314688447556356 1.4385947941621402e-06 0.01502692756466543 4.06753095314907e-05 0.019221981265106824 7.917505493741288e-05']
['59866.47757453617 0.03434457513230584 6.798639381845949e-05 0.014998324924189692 4.064726417061767e-05 0.000530457233285148 1.4376028924257538e-06 0.01499832492418969 4.064726417061767e-05 0.01934625020811615 7.921079363946965e-05']
['59866.477606074135 0.03429388056719246 6.796070378641079e-05 0.015012729262188374 4.0673994610842297e-05 0.0005309666825283606 1.4385482883574808e-06 0.015012729262188374 4.0673994610842297e-05 0.019281151305004084 7.920246900663577e-05']
['59866.47763761209 0.034333396781972426 6.795345857422988e-05 0.015084509717405175 4.0693287011765094e-05 0.0005335053968095029 1.4392306174621417e-06 0.015084509717405175 4.0693287011765094e-05 0.019248887064567254 7.920616226040411e-05']
['59866.47766915006 0.03429315701501963 6.794857695967834e-05 0.0149954609353129 4.064128589622565e-05 0.0005303559403992143 1.4373914542211649e-06 0.014995460935312899 4.064128589622565e-05 0.01929769607970673 7.917526905634158e-05']
['59866.47770068802 0.03412942231804808 6.783503464877035e-05 0.014981955551883886 4.0635859195589025e-05 0.0005298782851700856 1.4371995239476097e-06 0.014981955551883884 4.0635859195589025e-05 0.019147466766164196 7.907505914233395e-05']
['59866.47773222598 0.03410873797087419 6.780423580998213e-05 0.015007421048092889 4.0653313919198164e-05 0.0005307789428589636 1.4378168585126535e-06 0.01500742104809289 4.0653313919198164e-05 0.019101316922781296 7.905761396847576e-05']
['59866.47776376395 0.03426298810529921 6.790580596962614e-05 0.015056241401953802 4.067617143838622e-05 0.0005325056096679546 1.4386252778827862e-06 0.015056241401953802 4.067617143838622e-05 0.019206746703345406 7.915648683000971e-05']
['59866.47779530191 0.03434522646740017 6.79790024463875e-05 0.01505798444161183 4.067398424798841e-05 0.0005325672570851948 1.4385479218464984e-06 0.015057984441611832 4.067398424798841e-05 0.019287242025788333 7.921816564533394e-05']
['59866.47782683987 0.034269641405983466 6.79517511087514e-05 0.015030178465178734 4.067893377414228e-05 0.0005315838218414561 1.4387229755250208e-06 0.015030178465178734 4.067893377414228e-05 0.01923946294080473 7.919732401885021e-05']
['59866.47785837784 0.0342643116101961 6.794486780779981e-05 0.015012553100660355 4.0649895345221286e-05 0.0005309604520888124 1.4376959511911544e-06 0.015012553100660355 4.0649895345221286e-05 0.019251758509535748 7.917650568822063e-05']
['59866.4778899158 0.034195892891656976 6.78934647531656e-05 0.0150910549418003 4.071075004345818e-05 0.0005337368867686428 1.4398482458655471e-06 0.0150910549418003 4.071075004345818e-05 0.019104837949856675 7.916367680502384e-05']
['59866.47792145376 0.034294561364729255 6.794812406262627e-05 0.014997797705641386 4.0655959310973584e-05 0.0005304385867433585 1.4379104201076474e-06 0.014997797705641386 4.0655959310973584e-05 0.01929676365908787 7.918241339543517e-05']
['59866.47795299172 0.03429105152922532 6.794463283954234e-05 0.01501098638665001 4.0662472407721595e-05 0.0005309050409156662 1.43814077378371e-06 0.015010986386650008 4.0662472407721595e-05 0.01928006514257531 7.918276197512268e-05']
['59866.47798452969 0.03433902144992714 6.798670983183908e-05 0.015013399536714463 4.063034462298906e-05 0.000530990388640373 1.4370044858390933e-06 0.015013399536714465 4.063034462298906e-05 0.019325621913212677 7.920238391577327e-05']
['59866.47801606765 0.03425417721108204 6.792024134797443e-05 0.014974919413265113 4.063679963680925e-05 0.000529629432671984 1.4372327852518066e-06 0.014974919413265113 4.063679963680925e-05 0.019279257797816925 7.91486491956071e-05']
['59866.47804760561 0.034290660337067395 6.793545447662565e-05 0.015024174259637766 4.065381411931293e-05 0.0005313714665100816 1.4378345494728313e-06 0.015024174259637766 4.065381411931293e-05 0.01926648607742963 7.917044004799597e-05']
['59866.47807914358 0.03426321386241073 6.795142130411077e-05 0.015057009850610417 4.068248446771757e-05 0.0005325327879795574 1.4388485556214458e-06 0.015057009850610417 4.068248446771757e-05 0.01920620401180031 7.919886488905532e-05']
['59866.47811068154 0.03430624658613023 6.796607835574695e-05 0.014994426628517528 4.066053982256819e-05 0.0005303193592794016 1.4380724225659078e-06 0.014994426628517528 4.066053982256819e-05 0.019311819957612705 7.920017238442217e-05']
['59866.4781422195 0.03429131496154578 6.792741458633734e-05 0.014971448367998597 4.062944991076313e-05 0.0005295066695582369 1.4369728418672264e-06 0.014971448367998597 4.062944991076313e-05 0.01931986659354718 7.915103191011072e-05']
['59866.47817375747 0.0342182329125077 6.792647138262742e-05 0.015034858579559116 4.0659488144699885e-05 0.0005317493470276501 1.4380352270700674e-06 0.015034858579559116 4.0659488144699885e-05 0.01918337433294859 7.916564589949286e-05']
['59866.478205295425 0.034215550237798494 6.787109272457875e-05 0.01495427187641831 4.062477894359198e-05 0.0005288991754382415 1.4368076401973798e-06 0.014954271876418308 4.062477894359198e-05 0.019261278361380186 7.910030272915572e-05']
['59866.47823683339 0.034226713822813795 6.79271013756177e-05 0.014923606552013025 4.0605068081686666e-05 0.0005278146114469932 1.4361105110629727e-06 0.014923606552013026 4.0605068081686666e-05 0.01930310727080077 7.913825026630203e-05']
['59866.47826837136 0.03421714616261461 6.789016218416069e-05 0.014971710551322147 4.064877317953613e-05 0.0005295159423964456 1.4376562626987632e-06 0.014971710551322147 4.064877317953613e-05 0.019245435611292466 7.912898888772064e-05']
['59866.478299909315 0.034307991550428484 6.795993011586487e-05 0.01503201221816281 4.066820184586026e-05 0.0005316486775863061 1.438343411206134e-06 0.01503201221816281 4.066820184586026e-05 0.019275979332265672 7.919883043788505e-05']
['59866.47833144728 0.034204114646702144 6.787896826454516e-05 0.0150831437761346 4.0694622807233216e-05 0.0005334570865194617 1.439277861562522e-06 0.0150831437761346 4.0694622807233216e-05 0.019120970870567543 7.914295077947319e-05']
['59866.478362985246 0.03441486179715525 6.801774888420177e-05 0.015014887376705357 4.0654632488785054e-05 0.0005310430102157242 1.4378634933721122e-06 0.015014887376705359 4.0654632488785054e-05 0.01939997442044989 7.924148727827178e-05']
['59866.478394523205 0.034223229769083915 6.790000735674114e-05 0.0150513197889992 4.0670858257938435e-05 0.000532331543216908 1.4384373625646075e-06 0.015051319788999202 4.0670858257938435e-05 0.019171909980084716 7.914878211623233e-05']
['59866.47842606117 0.03424981964721026 6.791914973768597e-05 0.014925937297780124 4.0603172225729586e-05 0.0005278970447158653 1.4360434588747595e-06 0.014925937297780124 4.0603172225729586e-05 0.019323882349430135 7.913045239275753e-05']
['59866.47845759913 0.034164668452071036 6.789029568050515e-05 0.01500681221098106 4.0641438896978635e-05 0.0005307574096509891 1.4373968655158614e-06 0.015006812210981062 4.0641438896978635e-05 0.019157856241089975 7.912533603848557e-05']
['59866.478489137095 0.03421586184483156 6.789856541895485e-05 0.015061484886549334 4.067327919822198e-05 0.0005326910599996002 1.4385229858119532e-06 0.015061484886549332 4.067327919822198e-05 0.019154376958282225 7.914878916754576e-05']
['59866.47852067506 0.034205902881570494 6.787942588935596e-05 0.01500271184967934 4.065369639416442e-05 0.0005306123890355154 1.4378303857974286e-06 0.01500271184967934 4.065369639416442e-05 0.019203191031891154 7.912230715529891e-05']
['59866.47855221302 0.034245934013201626 6.791095874660209e-05 0.01511302304489709 4.07113872548813e-05 0.0005345138494793554 1.4398707826094994e-06 0.01511302304489709 4.07113872548813e-05 0.019132910968304537 7.91790083930053e-05']
['59866.478583750984 0.03429484439885549 6.795936559683188e-05 0.015118628719807584 4.06995888646939e-05 0.0005347121096729935 1.4394534999164212e-06 0.015118628719807584 4.06995888646939e-05 0.019176215679047905 7.921446778258989e-05']
['59866.47861528895 0.03423629538160458 6.79001890634778e-05 0.01506327131504619 4.068478740431726e-05 0.0005327542419831013 1.4389300053422163e-06 0.01506327131504619 4.068478740431726e-05 0.01917302406655839 7.915609642339952e-05']
['59866.47864682691 0.03430640764670333 6.795557188116567e-05 0.015000427668588095 4.0641498453238455e-05 0.0005305316026551623 1.4373989718876708e-06 0.015000427668588093 4.0641498453238455e-05 0.019305979978115236 7.918138131038671e-05']
['59866.478678364874 0.03419196597982085 6.786124605879432e-05 0.014978596948967006 4.064373380508426e-05 0.0005297594988909513 1.4374780312867395e-06 0.014978596948967006 4.064373380508426e-05 0.01921336903085384 7.910159173032346e-05']
['59866.47870990283 0.03419481955981243 6.790144900726591e-05 0.015040224104013945 4.0674473571384646e-05 0.000531939113636376 1.4385652281214499e-06 0.015040224104013943 4.0674473571384646e-05 0.019154595455798486 7.915187665239278e-05']
['59866.4787414408 0.03411563645718857 6.783832436997653e-05 0.015015020820753709 4.066461199397827e-05 0.0005310477298334844 1.4382164461679147e-06 0.015015020820753707 4.066461199397827e-05 0.019100615636434864 7.909266035446623e-05']
['59866.478772978764 0.03437971246916637 6.800373060060111e-05 0.01510835641229367 4.0707277359225446e-05 0.0005343488011134824 1.439725424785228e-06 0.01510835641229367 4.0707277359225446e-05 0.019271356056872704 7.925648115832572e-05']
['59866.47880451672 0.034379947726653676 6.80117640144269e-05 0.01513354817282842 4.071692260790661e-05 0.0005352397773833253 1.4400665556752186e-06 0.01513354817282842 4.071692260790661e-05 0.019246399553825254 7.92683280447642e-05']
['59866.47883605469 0.03416301586395146 6.784203587069735e-05 0.015028180016112683 4.0667052919256246e-05 0.0005315131411642607 1.4383027762398498e-06 0.015028180016112684 4.0667052919256246e-05 0.019134835847838774 7.90970987092357e-05']
['59866.478867592654 0.034271357735237276 6.791872436402752e-05 0.0151011394142625 4.070834818696564e-05 0.0005340935520221613 1.4397632975692393e-06 0.015101139414262499 4.070834818696564e-05 0.019170218320974777 7.918410655774285e-05']
['59866.47889913061 0.0342245369131335 6.785498951648645e-05 0.015131310211759667 4.071735593251707e-05 0.0005351606257018722 1.440081881398267e-06 0.015131310211759667 4.071735593251707e-05 0.019093226701373832 7.913408037260413e-05']
['59866.47893066858 0.034321363898685446 6.797605290359873e-05 0.014958182325262916 4.062878398640332e-05 0.0005290374792745365 1.436949289610873e-06 0.014958182325262916 4.062878398640332e-05 0.019363181573422532 7.919243560193534e-05']
['59866.47896220654 0.034218523837880085 6.78769315526544e-05 0.015074297702003315 4.068790210364169e-05 0.0005331442206472503 1.4390401652963783e-06 0.015074297702003315 4.068790210364169e-05 0.01914422613587677 7.91377483543679e-05']
['59866.4789937445 0.03431374896781027 6.79603944959263e-05 0.01500168473575518 4.0666907486409335e-05 0.0005305760623114824 1.438297632605078e-06 0.015001684735755182 4.0666907486409335e-05 0.019312064232055087 7.919856428338904e-05']
['59866.47902528247 0.034229991645466265 6.791644043327011e-05 0.015075922474365407 4.0679045556724274e-05 0.000533201685214545 1.4387269290251266e-06 0.015075922474365408 4.0679045556724274e-05 0.01915406917110086 7.91670867755785e-05']
['59866.479056820426 0.034352605583637875 6.798427194235562e-05 0.015062010236600254 4.0669849200121524e-05 0.000532709640456813 1.4384016744447349e-06 0.015062010236600256 4.0669849200121524e-05 0.01929059534703762 7.922056466279943e-05']
['59866.47908835839 0.034206949041834786 6.787351400521474e-05 0.015018934520359335 4.066559947663166e-05 0.0005311861486419317 1.4382513712224715e-06 0.015018934520359335 4.066559947663166e-05 0.01918801452147545 7.912335233172256e-05']
['59866.47911989636 0.034297539525341536 6.797381906155501e-05 0.015049784452073202 4.0649035240755575e-05 0.0005322772417811115 1.4376655312184227e-06 0.0150497844520732 4.0649035240755575e-05 0.019247755073268334 7.920090999361818e-05']
['59866.479151434316 0.03427768520694181 6.79286643551409e-05 0.014985362898695963 4.0639050671849605e-05 0.0005299987954118569 1.4373123993304167e-06 0.014985362898695963 4.0639050671849605e-05 0.01929232230824585 7.915703304560214e-05']
['59866.47918297228 0.03429380477053356 6.796544616347375e-05 0.015025856412271053 4.066204252533974e-05 0.0005314309604893311 1.4381255698045944e-06 0.015025856412271053 4.066204252533974e-05 0.019267948358262503 7.920040135335544e-05']
['59866.47921451024 0.03425103622402107 6.794710257970792e-05 0.014983763925431826 4.0630377518245616e-05 0.0005299422433009992 1.4370056492708011e-06 0.014983763925431824 4.0630377518245616e-05 0.019267272298589246 7.916840484847797e-05']
['59866.479246048206 0.03451941151333386 6.825310435806934e-05 0.014950942550604904 4.062602758813311e-05 0.0005287814246248267 1.4368518019642436e-06 0.014950942550604904 4.062602758813311e-05 0.019568468962728958 7.942896431469605e-05']
['59866.47927758617 0.03435559492752731 6.79948571680473e-05 0.015005184938783021 4.063280104893923e-05 0.0005306998566700838 1.4370913641351619e-06 0.015005184938783021 4.063280104893923e-05 0.019350409988744287 7.921063768450441e-05']
['59866.47930912413 0.03428987173731533 6.795016935299319e-05 0.01498564201503267 4.063570407387403e-05 0.0005300086671328979 1.437194037639227e-06 0.01498564201503267 4.063570407387403e-05 0.019304229722282663 7.917377066099555e-05']
['59866.479340662096 0.034288989173347065 6.7929566721892e-05 0.014994518061176854 4.0650219194850786e-05 0.000530322593048222 1.4377074050287886e-06 0.014994518061176854 4.0650219194850786e-05 0.01929447111217021 7.916354183343107e-05']
['59866.47937220006 0.03422427344510569 6.793144031550312e-05 0.0150770564656835 4.070104445325698e-05 0.0005332417919531445 1.4395049808308483e-06 0.0150770564656835 4.070104445325698e-05 0.019147216979422187 7.919125963718952e-05']
['59866.47940373802 0.034194070344256686 6.789053878743897e-05 0.014995181790554403 4.063977833278482e-05 0.0005303460676729581 1.4373381350714688e-06 0.014995181790554403 4.063977833278482e-05 0.019198888553702283 7.912469172001014e-05']
['59866.479435275985 0.03424042086482389 6.792378603034766e-05 0.01500852028046843 4.0671562724108566e-05 0.0005308178202514467 1.4384622779586557e-06 0.015008520280468429 4.0671562724108566e-05 0.019231900584355456 7.916954416388633e-05']
['59866.479466813944 0.03429709610453229 6.796276993450452e-05 0.015116125261209451 4.0696424339125305e-05 0.0005346235679372782 1.4393415777193583e-06 0.015116125261209451 4.0696424339125305e-05 0.01918097084332284 7.921576264330568e-05']
['59866.47949835191 0.03426114384647658 6.793793081925864e-05 0.015018886858834919 4.065492374335212e-05 0.0005311844629603303 1.4378737943952337e-06 0.01501888685883492 4.065492374335212e-05 0.019242256987641655 7.917313476539974e-05']
['59866.479529889875 0.034121969415383584 6.780136180228785e-05 0.015014431164436839 4.0648424054805296e-05 0.0005310268750073611 1.4376439149372814e-06 0.015014431164436839 4.0648424054805296e-05 0.019107538250946743 7.905263462013148e-05']
['59866.479561427834 0.03430355025766717 6.795661691608688e-05 0.01500348276330253 4.065039436351293e-05 0.0005306396545274771 1.4377136003528896e-06 0.01500348276330253 4.065039436351293e-05 0.019300067494364637 7.918684451718548e-05']
['59866.4795929658 0.03420677185521484 6.789843426134957e-05 0.015029758510437965 4.066965455016097e-05 0.0005315689689808187 1.438394790110647e-06 0.015029758510437967 4.066965455016097e-05 0.019177013344776873 7.914681406331046e-05']
['59866.479624503765 0.03422695626835882 6.790438849354462e-05 0.014962699683512302 4.063132275377633e-05 0.0005291972481401158 1.4370390801390454e-06 0.014962699683512303 4.063132275377633e-05 0.019264256584846512 7.913223341599666e-05']
['59866.47965604172 0.03417743429919923 6.786056628276843e-05 0.015031311930697582 4.067377103023556e-05 0.0005316239099837114 1.4385403808110936e-06 0.015031311930697582 4.067377103023556e-05 0.019146122368501647 7.91164464952644e-05']
['59866.47968757969 0.034181486618585576 6.785531888121181e-05 0.015068191318715944 4.068396843955804e-05 0.0005329282515173394 1.4389010403889614e-06 0.015068191318715942 4.068396843955804e-05 0.01911329529986963 7.911718895702687e-05']
['59866.47971911765 0.034256169164262835 6.793678697284129e-05 0.014985221228880278 4.0640700486548e-05 0.0005299937848670895 1.4373707495891801e-06 0.014985221228880278 4.0640700486548e-05 0.01927094793538256 7.91648505350103e-05']
['59866.47975065561 0.03434314418605181 6.79880472117975e-05 0.01504278060442638 4.065199734245762e-05 0.0005320295313425217 1.4377702941357161e-06 0.01504278060442638 4.065199734245762e-05 0.01930036358162543 7.92146416491597e-05']
['59866.47978219358 0.034237502994817794 6.790209635266483e-05 0.015017910589091823 4.0671414071997634e-05 0.0005311499344813514 1.43845702046571e-06 0.015017910589091823 4.0671414071997634e-05 0.01921959240572597 7.915085982920505e-05']
['59866.47981373154 0.034202830051863434 6.788863790709291e-05 0.014985239157513467 4.063162927792273e-05 0.0005299944189627772 1.4370499212130623e-06 0.014985239157513467 4.063162927792273e-05 0.01921759089434997 7.91188754638166e-05']
['59866.4798452695 0.03418409578692593 6.789927008337271e-05 0.01502703617761892 4.066431370621906e-05 0.0005314726861530649 1.4382058963965053e-06 0.015027036177618922 4.066431370621906e-05 0.01915705960930701 7.914478685960678e-05']
['59866.47987680747 0.03425745202371618 6.79340685720525e-05 0.015089945231348026 4.0707424343210433e-05 0.0005336976387900029 1.439730623280287e-06 0.015089945231348028 4.0707424343210433e-05 0.019167506792368155 7.919679330257338e-05']
['59866.47990834543 0.034193804815722845 6.790009901819253e-05 0.014962584546778892 4.0626671465764494e-05 0.0005291931760111706 1.4368745744770837e-06 0.014962584546778894 4.0626671465764494e-05 0.01923122026894395 7.912616432677318e-05']
['59866.47993988339 0.03421183755792026 6.788685333462573e-05 0.015044546824924654 4.067376376181646e-05 0.0005320919986142751 1.4385401237433542e-06 0.015044546824924654 4.067376376181646e-05 0.019167290732995605 7.913899111202416e-05']
['59866.47997142135 0.03424046795853734 6.791349452930212e-05 0.01504133239639744 4.067190974839998e-05 0.0005319783114610925 1.4384745514322894e-06 0.015041332396397438 4.067190974839998e-05 0.019199135562139903 7.916089300761799e-05']
['59866.48000295932 0.03436880263803606 6.802011214458468e-05 0.014986621106002825 4.0645805468115106e-05 0.0005300432953923727 1.4375513013782462e-06 0.014986621106002823 4.0645805468115106e-05 0.019382181532033235 7.923898761540137e-05']
['59866.48003449728 0.03415884727353358 6.785433985847881e-05 0.014998633569690159 4.0660683104438345e-05 0.0005304681493867174 1.438077490125439e-06 0.014998633569690159 4.0660683104438345e-05 0.019160213703843416 7.91043778064748e-05']
['59866.48006603524 0.034247173119539606 6.79240514753766e-05 0.015013933843416137 4.0649209759182324e-05 0.0005310092858743059 1.437671703545151e-06 0.015013933843416136 4.0649209759182324e-05 0.01923323927612347 7.915829092947631e-05']
['59866.48009757321 0.03424804988345334 6.793672977682096e-05 0.015072376299964012 4.06790693628125e-05 0.000533076264951201 1.4387277709932637e-06 0.015072376299964012 4.06790693628125e-05 0.01917567358348933 7.918450566236618e-05']
['59866.48012911117 0.03425549629002472 6.794208985253068e-05 0.014946269720965891 4.060243109985027e-05 0.0005286161570836544 1.436017246908727e-06 0.014946269720965891 4.060243109985027e-05 0.019309226569058834 7.914976301131571e-05']
['59866.48016064913 0.03416508437355444 6.785156382165867e-05 0.014955263827461188 4.0611218104292115e-05 0.0005289342585297481 1.436328023618036e-06 0.014955263827461188 4.0611218104292115e-05 0.019209820546093256 7.907658154573327e-05']
['59866.4801921871 0.03427209187759626 6.795894540126734e-05 0.015002331257440273 4.064757069289905e-05 0.0005305989283385931 1.4376137334338092e-06 0.015002331257440271 4.064757069289905e-05 0.019269760620155986 7.91873933355977e-05']
['59866.480223725055 0.03426188386474234 6.790611650295198e-05 0.014994165870331432 4.064608703634836e-05 0.0005303101368451196 1.4375612598173885e-06 0.014994165870331432 4.064608703634836e-05 0.019267717994410908 7.91412980047642e-05']
['59866.48025526302 0.03432008677431056 6.800100618735269e-05 0.01512494751996884 4.07046646480144e-05 0.0005349355915130099 1.4396330190287593e-06 0.01512494751996884 4.07046646480144e-05 0.01919513925434172 7.925280163249557e-05']
['59866.48028680099 0.03429427770235796 6.795575090724576e-05 0.015072817388432901 4.067354767722357e-05 0.0005330918652645709 1.4385324813142243e-06 0.015072817388432901 4.067354767722357e-05 0.019221460313925062 7.919798963369595e-05']
['59866.480318338945 0.03434895946125335 6.798663404079127e-05 0.015077648217837594 4.0675474764757875e-05 0.0005332627209043466 1.4386006380935254e-06 0.015077648217837594 4.0675474764757875e-05 0.01927131124341576 7.922547983783331e-05']
['59866.48034987691 0.03421021175964789 6.79085143691807e-05 0.015009384506917571 4.06574822276957e-05 0.0005308483860095204 1.4379642822685902e-06 0.015009384506917571 4.06574822276957e-05 0.01920082725273032 7.914920836574813e-05']
['59866.480381414876 0.03412522717264023 6.782862630690665e-05 0.014926707592726329 4.060274665172942e-05 0.0005279242883266047 1.4360284072734755e-06 0.01492670759272633 4.060274665172942e-05 0.0191985195799139 7.905254949934577e-05']
['59866.480412952835 0.03424070265256535 6.791447309587443e-05 0.015059841552985589 4.069510423877993e-05 0.0005326329389640849 1.439294888720393e-06 0.015059841552985587 4.069510423877993e-05 0.01918086109957976 7.917365196134012e-05']
['59866.4804444908 0.03419195211820997 6.788030425946965e-05 0.015064959286547925 4.067540392259786e-05 0.0005328139417627234 1.4385981325646488e-06 0.015064959286547925 4.067540392259786e-05 0.01912699283166204 7.913421630764193e-05']
['59866.48047602876 0.034197373535608686 6.787669791608746e-05 0.01501675094415953 4.065321766551455e-05 0.0005311089204317502 1.4378134542349785e-06 0.015016750944159532 4.065321766551455e-05 0.019180622591449155 7.911972084475207e-05']
['59866.480507566725 0.03420666745366165 6.78814710257632e-05 0.015028132668693604 4.067286749076601e-05 0.000531511466591863 1.4385084246393476e-06 0.015028132668693604 4.067286749076601e-05 0.01917853478496805 7.913391345398596e-05']
['59866.48053910469 0.034247176224582086 6.790027526259519e-05 0.015008999171065017 4.0651151024983915e-05 0.0005308347575415904 1.4377403617780796e-06 0.015008999171065015 4.0651151024983915e-05 0.01923817705351707 7.913888715664535e-05']
['59866.48057064265 0.034289962442025645 6.794052027483713e-05 0.015024819192278393 4.065609584618873e-05 0.000531394276336241 1.437915249053069e-06 0.015024819192278393 4.065609584618873e-05 0.019265143249747253 7.917595862804594e-05']
['59866.480602180614 0.03423709884142268 6.791133744061143e-05 0.015035409121763923 4.066534039454657e-05 0.0005317688184750447 1.4382422080681362e-06 0.015035409121763923 4.066534039454657e-05 0.019201689719658757 7.915566727895693e-05']
['59866.48063371857 0.03430749607401281 6.79442330609507e-05 0.0150602406938193 4.068605972431273e-05 0.000532647055683346 1.4389750044569883e-06 0.015060240693819298 4.068605972431273e-05 0.019247255380193513 7.919453429455299e-05']
['59866.48066525654 0.034268634736913405 6.796533715088458e-05 0.014979010168369432 4.065309881274197e-05 0.0005297741135377241 1.4378092506780326e-06 0.014979010168369432 4.065309881274197e-05 0.019289624568543974 7.91957164063308e-05']
['59866.480696794504 0.034327143671666394 6.798700702245769e-05 0.014987849959469019 4.0644170800022786e-05 0.0005300867571931461 1.437493486821089e-06 0.014987849959469017 4.0644170800022786e-05 0.019339293712197378 7.920973263364253e-05']
['59866.48072833246 0.03427051049180737 6.793484627061677e-05 0.014984559472088668 4.06430096054687e-05 0.0005299703800083096 1.4374524179648282e-06 0.014984559472088668 4.06430096054687e-05 0.0192859510197187 7.916437056910485e-05']
['59866.48075987043 0.034198684848196645 6.789514076014315e-05 0.014958277645837358 4.0629298127204815e-05 0.0005290408505502256 1.436967473621985e-06 0.014958277645837358 4.0629298127204815e-05 0.019240407202359287 7.912325830720662e-05']
['59866.480791408394 0.034318366391436816 6.800791953488e-05 0.015072132590293715 4.0690370247374336e-05 0.0005330676454848217 1.4391274580242253e-06 0.015072132590293715 4.0690370247374336e-05 0.0192462338011431 7.92513933652344e-05']
['59866.48082294635 0.03425028944263423 6.789815865249336e-05 0.014953352218403316 4.062000527115579e-05 0.0005288666491895659 1.436638806071842e-06 0.014953352218403316 4.062000527115579e-05 0.019296937224230915 7.912107669027187e-05']
['59866.48085448432 0.03417667626059026 6.78729209145368e-05 0.014982573403262964 4.064782990600423e-05 0.0005299001371925471 1.437622901222032e-06 0.014982573403262964 4.064782990600423e-05 0.019194102857327297 7.91137122725158e-05']
['59866.48088602228 0.03421634232345707 6.788473872819942e-05 0.01502896854758949 4.065531793910862e-05 0.0005315410297603312 1.4378877362181652e-06 0.015028968547589491 4.065531793910862e-05 0.01918737377586758 7.912769824104519e-05']
['59866.48091756024 0.03425077784548701 6.791693616085667e-05 0.015062417480983914 4.067564335077406e-05 0.0005327240437805255 1.4386066006041504e-06 0.015062417480983916 4.067564335077406e-05 0.019188360364503096 7.916576393541119e-05']
['59866.48094909821 0.03420247197397421 6.788438064582424e-05 0.015035480318363931 4.067547174552947e-05 0.000531771336539672 1.4386005313101642e-06 0.015035480318363931 4.067547174552947e-05 0.019166991655610283 7.913774786654294e-05']
['59866.480980636166 0.034187364383505385 6.785888033738198e-05 0.014999318655390378 4.064387845653222e-05 0.0005304923793368577 1.437483147285177e-06 0.014999318655390378 4.064387845653222e-05 0.019188045728115007 7.909963651390878e-05']
['59866.48101217413 0.03420503697659793 6.786409266863503e-05 0.015095511598902678 4.070502565158848e-05 0.0005338945087703115 1.439645786918379e-06 0.015095511598902678 4.070502565158848e-05 0.019109525377695252 7.913554313349697e-05']
['59866.4810437121 0.03427228345098513 6.794312247347863e-05 0.015067441395091708 4.0670114098055936e-05 0.0005329017283947309 1.4384110432926628e-06 0.01506744139509171 4.0670114098055936e-05 0.01920484205589342 7.918539052246321e-05']
['59866.481075250056 0.034241104119793246 6.791206990644387e-05 0.015033098379773421 4.065473509101343e-05 0.0005316870926950451 1.4378671221836274e-06 0.015033098379773421 4.065473509101343e-05 0.019208005740019823 7.915084790637558e-05']
['59866.48110678802 0.034216190284344875 6.7891322215299e-05 0.015044775103771271 4.0669309892771613e-05 0.0005321000723269068 1.4383826003490494e-06 0.015044775103771273 4.0669309892771613e-05 0.019171415180573602 7.914053575315146e-05']
['59866.48113832598 0.03434394298822957 6.797560780436712e-05 0.01505945283476746 4.0669760785907105e-05 0.0005326191908694437 1.438398547431565e-06 0.01505945283476746 4.0669760785907105e-05 0.019284490153462112 7.921308413864495e-05']
['59866.481169863946 0.034219784458445916 6.790238723277712e-05 0.01504343224395529 4.0690086565887927e-05 0.0005320525783763306 1.4391174248440419e-06 0.015043432243955292 4.0690086565887927e-05 0.019176352214490624 7.916070576144117e-05']
['59866.48120140191 0.03428984042282598 6.795383982135465e-05 0.015024946630852933 4.0679951285998346e-05 0.000531398783553814 1.4387589626453649e-06 0.015024946630852933 4.0679951285998346e-05 0.019264893791973044 7.919963878135761e-05']
['59866.48123293987 0.03427385264683528 6.793092076543348e-05 0.014980956605371213 4.063341614408688e-05 0.0005298429546644464 1.4371131186758774e-06 0.014980956605371213 4.063341614408688e-05 0.019292896041464065 7.915607685818027e-05']
['59866.481264477836 0.03430488215193907 6.797431118776074e-05 0.015057360663110303 4.0671481226294366e-05 0.0005325451954336587 1.4384593955631044e-06 0.015057360663110305 4.0671481226294366e-05 0.019247521488828762 7.921285480647285e-05']
['59866.4812960158 0.03419400198460607 6.786339358321643e-05 0.014965403360136152 4.064139204808394e-05 0.0005292928711399397 1.4373952085751572e-06 0.014965403360136152 4.064139204808394e-05 0.01922859862446992 7.910223091820231e-05']
['59866.48132755376 0.03432547355991432 6.798189618620843e-05 0.015025028998634858 4.065257030109899e-05 0.0005314016967181796 1.4377905584023744e-06 0.015025028998634858 4.065257030109899e-05 0.01930044456127946 7.920965648933351e-05']
['59866.481359091726 0.03427599926333916 6.791615501866338e-05 0.015011150593954229 4.066337152971792e-05 0.0005309108485610347 1.4381725737193006e-06 0.015011150593954229 4.066337152971792e-05 0.01926484866938493 7.915878913098021e-05']
['59866.481390629684 0.03429571192587101 6.795707032357697e-05 0.014979087011136174 4.063199574988785e-05 0.0005297768312946503 1.437062882507452e-06 0.014979087011136174 4.063199574988785e-05 0.019316624914734837 7.917779035551883e-05']
['59866.48142216765 0.03439190562124088 6.802311870986419e-05 0.01511076563485442 4.0691725068571854e-05 0.0005344340099311607 1.4391753750221343e-06 0.01511076563485442 4.0691725068571854e-05 0.019281139986386458 7.926513210783487e-05']
['59866.481453705615 0.03428919704363887 6.794908306854873e-05 0.015060130367051798 4.0674606979935623e-05 0.0005326431536721453 1.4385699464837474e-06 0.015060130367051798 4.0674606979935623e-05 0.019229066676587074 7.919281244424119e-05']
['59866.481485243574 0.034354919379019425 6.800950481896727e-05 0.015039888410760956 4.065441450654721e-05 0.0005319272409162481 1.4378557838275212e-06 0.015039888410760956 4.065441450654721e-05 0.01931503096825847 7.923429916766657e-05']
['59866.48151678154 0.03418671586638099 6.786572726006464e-05 0.01498217776746941 4.063546431575741e-05 0.0005298861444387231 1.43718555793047e-06 0.014982177767469412 4.063546431575741e-05 0.019204538098911574 7.910118770723153e-05']
['59866.481548319505 0.034325595411211225 6.796983600495003e-05 0.014988413285161586 4.064525946175148e-05 0.0005301066807639334 1.4375319903534173e-06 0.014988413285161586 4.064525946175148e-05 0.019337182126049637 7.919555368360587e-05']
['59866.481579857464 0.03427518193232771 6.79459420592741e-05 0.014989344043106033 4.0640980669079305e-05 0.0005301395995923069 1.4373806590191413e-06 0.014989344043106033 4.0640980669079305e-05 0.019285837889221676 7.91728511048245e-05']
['59866.48161139543 0.03435343460358736 6.796779443388544e-05 0.015110970642708341 4.069513236132185e-05 0.0005344412606007883 1.4392958833518506e-06 0.015110970642708343 4.069513236132185e-05 0.01924246396087902 7.921940973090125e-05']
['59866.48164293339 0.0342504210389603 6.791429336309853e-05 0.014992747875199861 4.064207052271781e-05 0.0005302599855263486 1.4374192047066554e-06 0.014992747875199861 4.064207052271781e-05 0.019257673163760442 7.914625158137672e-05']
['59866.48167447135 0.03430067599489939 6.797146823061379e-05 0.015062631414535418 4.068240993008134e-05 0.0005327316101321288 1.4388459193918342e-06 0.015062631414535418 4.068240993008134e-05 0.019238044580363968 7.921602723656697e-05']
['59866.48170600932 0.03427652344437517 6.795455270005561e-05 0.014963599769160386 4.0626903289753034e-05 0.0005292290821579154 1.436882773573462e-06 0.014963599769160386 4.0626903289753034e-05 0.019312923675214786 7.917301625920021e-05']
['59866.48173754728 0.034367907226811725 6.80022983158833e-05 0.015015547342890925 4.065485302224704e-05 0.0005310663517447701 1.4378712931477994e-06 0.015015547342890925 4.065485302224704e-05 0.0193523598839208 7.922833868321924e-05']
['59866.48176908524 0.03421882368640598 6.790258514557991e-05 0.014982611312280594 4.0622788034729016e-05 0.000529901477949779 1.4367372262003164e-06 0.014982611312280594 4.0622788034729016e-05 0.01923621237412539 7.912630395239787e-05']
['59866.48180062321 0.03429473369498234 6.795557133653826e-05 0.015075215392414397 4.0661945601326376e-05 0.000533176677306173 1.438122141818854e-06 0.015075215392414399 4.0661945601326376e-05 0.019219518302567944 7.919187771331454e-05']
['59866.48183216117 0.034308486027640424 6.796587473703302e-05 0.015047319924905437 4.0669641980414175e-05 0.0005321900769630817 1.4383943455467947e-06 0.015047319924905437 4.0669641980414175e-05 0.019261166102734987 7.920467099600332e-05']
['59866.48186369913 0.034229830488352514 6.78971944296429e-05 0.014969145426893158 4.063446570135133e-05 0.000529425219678108 1.4371502391706985e-06 0.014969145426893158 4.063446570135133e-05 0.019260685061459358 7.912767413649302e-05']
['59866.48189523709 0.03419020147667718 6.787275348334979e-05 0.014996881347974143 4.06424708528277e-05 0.000530406177220607 1.4374333634879573e-06 0.014996881347974143 4.06424708528277e-05 0.019193320128703038 7.911081533162529e-05']
['59866.48192677506 0.03426075270895871 6.794038989019161e-05 0.01501851520989224 4.064957334059816e-05 0.0005311713185678143 1.4376845626072724e-06 0.01501851520989224 4.064957334059816e-05 0.01924223749906647 7.917249769461564e-05']
['59866.48195831302 0.034280645651525124 6.795575126355002e-05 0.015050774460186801 4.067348243042363e-05 0.0005323122561555516 1.4385301736807283e-06 0.015050774460186801 4.067348243042363e-05 0.019229871191338323 7.91979564307783e-05']
['59866.48198985098 0.03438748410023663 6.80043297198984e-05 0.015048167607584876 4.066746080301991e-05 0.0005322200576049941 1.438317202177004e-06 0.015048167607584876 4.066746080301991e-05 0.01933931649265175 7.923655235317737e-05']
['59866.48202138895 0.03427367378586941 6.795996480435763e-05 0.015057393124314202 4.067525016360346e-05 0.000532546343513894 1.4385926944526479e-06 0.015057393124314204 4.067525016360346e-05 0.019216280661555205 7.920247970916853e-05']
['59866.48205292691 0.0342906549003112 6.794295718763828e-05 0.015108570847120412 4.070392027499785e-05 0.0005343563851940707 1.4396066922187396e-06 0.015108570847120412 4.070392027499785e-05 0.019182084053190787 7.920261711051366e-05']
['59866.48208446487 0.03425159224808784 6.790077580401834e-05 0.015053372116830992 4.065039167712351e-05 0.0005324041294656357 1.4377135053412998e-06 0.015053372116830992 4.065039167712351e-05 0.019198220131256848 7.913892656772086e-05']
['59866.48211600284 0.03429306399781816 6.798447327336e-05 0.014961277886086708 4.063316102827992e-05 0.0005291469623427027 1.4371040957999355e-06 0.014961277886086708 4.063316102827992e-05 0.019331786111731454 7.920190895051916e-05']
['59866.482147540795 0.034127028364026916 6.782937701815955e-05 0.015058316667173532 4.068789256743538e-05 0.0005325790071608316 1.4390398280220732e-06 0.01505831666717353 4.068789256743538e-05 0.019068711696853386 7.909695941217207e-05']
['59866.48217907876 0.034252500584656106 6.79122643391504e-05 0.015019447677465887 4.0666290053334405e-05 0.0005312042978619518 1.4382757953770993e-06 0.015019447677465887 4.0666290053334405e-05 0.01923305290719022 7.915695038575302e-05']
['59866.48221061673 0.03434579909855316 6.797847347888395e-05 0.015051706424659167 4.06778143557909e-05 0.0005323452176561211 1.4386833841996854e-06 0.015051706424659167 4.06778143557909e-05 0.019294092673893995 7.921967834625131e-05']
['59866.482242154685 0.03437820419241042 6.799873281701453e-05 0.015051731623797835 4.066743467579577e-05 0.0005323461088933391 1.4383162781154773e-06 0.015051731623797835 4.066743467579577e-05 0.01932647256861259 7.923173548414704e-05']
['59866.48227369265 0.03424930536609457 6.79174185047532e-05 0.015005543823499862 4.064357146727058e-05 0.0005307125496204582 1.4374722897610735e-06 0.01500554382349986 4.064357146727058e-05 0.01924376154259471 7.914970396637579e-05']
['59866.48230523062 0.03428265306365149 6.795556523956399e-05 0.01503032484731321 4.066856519387678e-05 0.0005315889990504077 1.4383562620134433e-06 0.01503032484731321 4.066856519387678e-05 0.01925232821633828 7.919527158837984e-05']
['59866.482336768575 0.034188135810726 6.786310734343763e-05 0.01508154692902952 4.0675285928472094e-05 0.0005334006096060983 1.4385939593761217e-06 0.015081546929029521 4.0675285928472094e-05 0.01910658888169648 7.911940484906277e-05']
['59866.48236830654 0.03432902582710725 6.797744905640991e-05 0.015078940703378634 4.068197799218166e-05 0.0005333084332293979 1.438830642713647e-06 0.015078940703378632 4.068197799218166e-05 0.019250085123728618 7.922093734343944e-05']
['59866.4823998445 0.03426421068934786 6.79170831091059e-05 0.015024553400242693 4.0663929323623535e-05 0.0005313848758659485 1.4381923016431462e-06 0.015024553400242693 4.0663929323623535e-05 0.019239657289105167 7.915987194333911e-05']
['59866.482431382465 0.03428372947077522 6.79224518958779e-05 0.015005589086085892 4.064798332678775e-05 0.0005307141504569702 1.43762832737227e-06 0.015005589086085892 4.064798332678775e-05 0.01927814038468933 7.91562885694034e-05']
['59866.48246292043 0.03419654637107497 6.785304118927401e-05 0.01500539481359345 4.065436853940081e-05 0.000530707279473086 1.4378541580722834e-06 0.01500539481359345 4.065436853940081e-05 0.019191151557481523 7.910001820461698e-05']
['59866.48249445839 0.03423597821942123 6.789098510159732e-05 0.015023885025711763 4.066733738950927e-05 0.0005313612369525187 1.4383128373169457e-06 0.015023885025711763 4.066733738950927e-05 0.019212093193709468 7.91392329279068e-05']
['59866.482525996355 0.03436839936982268 6.80327176048385e-05 0.015053980292086398 4.06781609139383e-05 0.0005324256392652277 1.438695641186847e-06 0.015053980292086397 4.06781609139383e-05 0.019314419077736282 7.926640801777232e-05']
['59866.48255753432 0.03426647007995933 6.792832481831061e-05 0.014978260303929024 4.0635166153572874e-05 0.0005297475925083153 1.4371750126003562e-06 0.014978260303929024 4.0635166153572874e-05 0.019288209776030307 7.915474743153684e-05']
['59866.48258907228 0.0342722615260206 6.793645703074595e-05 0.015005017348072719 4.065539488418885e-05 0.0005306939293612035 1.437890457593691e-06 0.015005017348072717 4.065539488418885e-05 0.01926724417794788 7.917211205392792e-05']
['59866.482620610244 0.03439556554486143 6.802893210651507e-05 0.014991848563643578 4.06464681196232e-05 0.0005302281788864459 1.4375747378811486e-06 0.014991848563643578 4.06464681196232e-05 0.01940371698121785 7.92468988298746e-05']
['59866.4826521482 0.034267995372749244 6.795089921092806e-05 0.015001989593682706 4.0652808176054924e-05 0.0005305868444550616 1.4377989715079464e-06 0.015001989593682707 4.0652808176054924e-05 0.019266005779066536 7.918317697701211e-05']
['59866.48268368617 0.03433582370644885 6.799141792573384e-05 0.01497957446181259 4.062774169628443e-05 0.000529794071335687 1.4369124261387492e-06 0.01497957446181259 4.062774169628443e-05 0.01935624924463626 7.92050901577153e-05']
['59866.482715224134 0.03424863942949485 6.791557699452792e-05 0.01500449697847209 4.065804326722109e-05 0.0005306755250513869 1.4379841249827535e-06 0.015004496978472089 4.065804326722109e-05 0.01924414245102276 7.91555562220295e-05']
['59866.48274676209 0.034302977234294395 6.79405876901839e-05 0.015052780742079535 4.0668292570989677e-05 0.0005323832138623214 1.4383466199512026e-06 0.015052780742079533 4.0668292570989677e-05 0.019250196492214863 7.918228006522156e-05']
['59866.48277830006 0.03436204696280203 6.799447070269832e-05 0.015091239760402084 4.068982894707489e-05 0.0005337434233895427 1.439108313442369e-06 0.015091239760402084 4.068982894707489e-05 0.01927080720239995 7.92395748719181e-05']
['59866.482809838024 0.034221409162425394 6.791223352098554e-05 0.014969215692052475 4.0631335823204515e-05 0.0005294277047997596 1.4370395423755118e-06 0.014969215692052475 4.0631335823204515e-05 0.01925219347037292 7.913897214765235e-05']
['59866.48284137598 0.034234141809776346 6.79195355935092e-05 0.015010369413047616 4.066149221616924e-05 0.0005308832199382044 1.4381061065991023e-06 0.015010369413047616 4.066149221616924e-05 0.01922377239672873 7.916072425441517e-05']
['59866.48287291395 0.03418839707618623 6.787162179021083e-05 0.01499985673202598 4.0654630110139434e-05 0.0005305114099049285 1.4378634092447326e-06 0.01499985673202598 4.0654630110139434e-05 0.019188540344160253 7.91160918765941e-05']
['59866.48290445191 0.034342056596909656 6.800388446717473e-05 0.01500913565145617 4.065371222068527e-05 0.0005308395845480098 1.4378309455461011e-06 0.015009135651456168 4.065371222068527e-05 0.01933292094545349 7.922911472398984e-05']
['59866.48293598987 0.03427969398720127 6.794828837343222e-05 0.015075297994766295 4.0681156450118206e-05 0.0005331795987667541 1.438801586606901e-06 0.015075297994766295 4.0681156450118206e-05 0.019204395992434977 7.919549471401829e-05']
['59866.48296752784 0.03429889920000633 6.793740717304548e-05 0.015110738806576299 4.070041086982753e-05 0.0005344330610749212 1.4394825724009242e-06 0.015110738806576299 4.070041086982753e-05 0.019188160393430034 7.919605254284425e-05']
['59866.482999065796 0.03422358918444423 6.790539017442527e-05 0.01498860804087128 4.064717813763169e-05 0.0005301135688381319 1.437599849631312e-06 0.01498860804087128 4.064717813763169e-05 0.01923498114357295 7.914123517669722e-05']
['59866.48303060376 0.03432986172495268 6.795869628658304e-05 0.015068360023444383 4.067778612113007e-05 0.0005329342182265514 1.4386823856028325e-06 0.015068360023444381 4.067778612113007e-05 0.019261501701508296 7.92026936706602e-05']
['59866.48306214173 0.034280901527413886 6.79374534685311e-05 0.015067559399661177 4.0661238528232094e-05 0.0005329059019526283 1.4380971342237247e-06 0.015067559399661177 4.0661238528232094e-05 0.01921334212775271 7.917596796022524e-05']
['59866.483093679686 0.03427916405850824 6.796249577148276e-05 0.014982059188035928 4.0645413458161176e-05 0.0005298819505491701 1.4375374368622665e-06 0.014982059188035926 4.0645413458161176e-05 0.019297104870472315 7.918933303591893e-05']
['59866.48312521765 0.034263191615299234 6.791710862094642e-05 0.015121984860205776 4.072526409195878e-05 0.0005348308088583451 1.440361575324024e-06 0.015121984860205774 4.072526409195878e-05 0.01914120675509346 7.919141859311034e-05']
['59866.48315675561 0.03417685455313399 6.78438229234893e-05 0.015011987400866178 4.065392427948279e-05 0.000530940444551357 1.4378384455918457e-06 0.01501198740086618 4.065392427948279e-05 0.01916486715226781 7.909188244185172e-05']
['59866.483188293576 0.03423822582472361 6.790604699455549e-05 0.015018943672870422 4.066010449230384e-05 0.0005311864723457941 1.4380570259073636e-06 0.01501894367287042 4.066010449230384e-05 0.019219282151853194 7.914843849218913e-05']
['59866.48321983154 0.034220048770110444 6.789379668537787e-05 0.015045391140044169 4.066537170325945e-05 0.0005321218601531192 1.4382433153873399e-06 0.01504539114004417 4.066537170325945e-05 0.019174657630066275 7.914063484784338e-05']
['59866.4832513695 0.03429879642547788 6.794668277519583e-05 0.015061171902272555 4.0674920925887385e-05 0.0005326799904452092 1.4385810500504334e-06 0.015061171902272555 4.0674920925887385e-05 0.019237624523205328 7.919091420409468e-05']
['59866.483282907466 0.034344917958478466 6.796429027316701e-05 0.014919432221007896 4.0602480845718754e-05 0.0005276669746884225 1.4360190063089197e-06 0.014919432221007896 4.0602480845718754e-05 0.01942548573747057 7.916884616540943e-05']
['59866.48331444543 0.03432876296907947 6.797975178596048e-05 0.015010535902112156 4.0654200830214486e-05 0.000530889108284336 1.4378482265731714e-06 0.015010535902112156 4.0654200830214486e-05 0.019318227066967314 7.920865292393381e-05']
['59866.48334598339 0.03418169678437286 6.787538376670092e-05 0.015017891643998615 4.066118159071301e-05 0.0005311492644357445 1.4380951204709225e-06 0.015017891643998617 4.066118159071301e-05 0.019163805140374246 7.912268581026472e-05']
['59866.483377521356 0.03425891560619499 6.794112517610275e-05 0.015047797207180724 4.067194598855718e-05 0.0005322069573704955 1.4384758331656576e-06 0.015047797207180724 4.067194598855718e-05 0.019211118399014265 7.918461770249937e-05']
['59866.483409059314 0.034278678294408185 6.793729042153934e-05 0.014972352081326523 4.064314557460848e-05 0.0005295386318789652 1.4374572268894291e-06 0.014972352081326523 4.064314557460848e-05 0.019306326213081662 7.916653783019312e-05']
['59866.48344059728 0.034322952126494354 6.797715674030535e-05 0.015055324831857793 4.066610938018192e-05 0.0005324731926320724 1.4382694053714766e-06 0.015055324831857793 4.066610938018192e-05 0.01926762729463656 7.921253872094342e-05']
['59866.483472135245 0.03419880203993801 6.78585984914169e-05 0.015015238196990318 4.06498767658172e-05 0.0005310554179451661 1.4376952940791545e-06 0.01501523819699032 4.06498767658172e-05 0.01918356384294769 7.910247701744524e-05']
['59866.483503673204 0.03426867308304012 6.794395167276643e-05 0.01497167822419571 4.063489339383201e-05 0.0005295147990582304 1.437165365697904e-06 0.01497167822419571 4.063489339383201e-05 0.019296994858844414 7.916801835362126e-05']
['59866.48353521117 0.034329630623556595 6.798538264981812e-05 0.014949286903345467 4.0631032391906646e-05 0.0005287228680814143 1.4370288106886353e-06 0.014949286903345467 4.0631032391906646e-05 0.019380343720211128 7.920159750456021e-05']
['59866.483566749135 0.03417098456665162 6.788501071132989e-05 0.01498144041338804 4.062963678961222e-05 0.0005298600658727544 1.436979451354469e-06 0.014981440413388041 4.062963678961222e-05 0.01918954415326358 7.911473987148782e-05']
['59866.48359828709 0.03423838112629549 6.792208396472446e-05 0.015028089536303548 4.064511576050521e-05 0.000531509941095622 1.4375269079614898e-06 0.015028089536303548 4.064511576050521e-05 0.019210291589991945 7.915450034771206e-05']
['59866.48362982506 0.03426385192866754 6.795514072512277e-05 0.014989757065659696 4.063151515863467e-05 0.0005301542072769789 1.4370458850688852e-06 0.014989757065659696 4.063151515863467e-05 0.01927409486300784 7.917588758616854e-05']
['59866.48366136302 0.0342089841607618 6.788902336861007e-05 0.015010303969417663 4.066943692558287e-05 0.0005308809053432709 1.438387093215682e-06 0.015010303969417663 4.066943692558287e-05 0.019198680191344134 7.913862896075246e-05']
['59866.48369290098 0.03427197486564246 6.797007799476668e-05 0.014998159314690422 4.0639817457421864e-05 0.0005304513760472743 1.4373395188224425e-06 0.014998159314690424 4.0639817457421864e-05 0.019273815550952034 7.91929685362737e-05']
['59866.48372443895 0.03440269540036764 6.80126250704179e-05 0.01501025857415367 4.064290023540839e-05 0.0005308792998142359 1.4374485497902227e-06 0.01501025857415367 4.064290023540839e-05 0.01939243682621397 7.923107034815696e-05']
['59866.48375597691 0.034257538027663625 6.796040794031902e-05 0.015029486943267856 4.066630672949974e-05 0.0005315593642569288 1.4382763851757981e-06 0.015029486943267854 4.066630672949974e-05 0.01922805108439577 7.919826734488787e-05']
['59866.48378751487 0.03418106834720361 6.7870870768906e-05 0.014997924864124015 4.064854746359849e-05 0.0005304430840547066 1.4376482796304944e-06 0.014997924864124013 4.064854746359849e-05 0.019183143483079597 7.911232211122334e-05']
['59866.48381905284 0.03428568385823371 6.795130659252e-05 0.01501095579019919 4.064605454938514e-05 0.0005309039587875798 1.4375601108261035e-06 0.015010955790199192 4.064605454938514e-05 0.01927472806803452 7.918005947245963e-05']
['59866.4838505908 0.03414803283845043 6.786005256922124e-05 0.01501477751099457 4.066333749541798e-05 0.0005310391245110691 1.4381713700021739e-06 0.01501477751099457 4.066333749541798e-05 0.01913325532745586 7.911064246334836e-05']
['59866.48388212876 0.03434305851191944 6.800119393610741e-05 0.015013207171656148 4.064530668423826e-05 0.000530983585118171 1.4375336605072386e-06 0.01501320717165615 4.064530668423826e-05 0.019329851340263292 7.922249259012161e-05']
['59866.48391366672 0.0342840944499444 6.7938525661863e-05 0.015001278180905 4.0645268962955336e-05 0.0005305616833750281 1.4375323263897636e-06 0.015001278180905001 4.0645268962955336e-05 0.019282816269039403 7.916868799076184e-05']
['59866.48394520469 0.034260256628271334 6.7973412663859e-05 0.014941538224865906 4.061662841210749e-05 0.0005284488146408693 1.4365193741141395e-06 0.014941538224865904 4.061662841210749e-05 0.01931871840340543 7.918393355181646e-05']
['59866.48397674265 0.034241285104445476 6.791913217539377e-05 0.014986438615356583 4.064350822606876e-05 0.0005300368411060577 1.4374700530611006e-06 0.014986438615356583 4.064350822606876e-05 0.019254846489088893 7.915114197774488e-05']
['59866.48400828061 0.03419495882127372 6.788123640122822e-05 0.015093481658729344 4.068799916566958e-05 0.00053382271432303 1.4390435981633838e-06 0.015093481658729344 4.068799916566958e-05 0.019101477162544376 7.914149058152089e-05']
['59866.48403981858 0.03428525697687744 6.792675505751216e-05 0.01498235192933131 4.064523786395e-05 0.0005298923041545495 1.4375312264874471e-06 0.01498235192933131 4.064523786395e-05 0.01930290504754613 7.915857132149574e-05']
['59866.48407135654 0.03428352288283547 6.792956053767036e-05 0.015006278617800848 4.065527725308922e-05 0.0005307385376527155 1.437886297244587e-06 0.015006278617800848 4.065527725308922e-05 0.019277244265034618 7.916613394227721e-05']
['59866.4841028945 0.034131939534875685 6.782036220330114e-05 0.01508074168782208 4.069599826848551e-05 0.0005333721300241994 1.4393265085530407e-06 0.015080741687822082 4.069599826848551e-05 0.019051197847053603 7.909339924706443e-05']
['59866.48413443247 0.03414480148899758 6.787372110937583e-05 0.014959819767953794 4.061525277670268e-05 0.0005290953919630438 1.4364707209642354e-06 0.014959819767953794 4.061525277670268e-05 0.019184981721043787 7.909766605500307e-05']
['59866.484165970425 0.03427435327346964 6.793476671031197e-05 0.01510531413980971 4.070130309708314e-05 0.0005342412027348036 1.4395141284849445e-06 0.015105314139809709 4.070130309708314e-05 0.019169039133659936 7.919424601437368e-05']
['59866.48419750839 0.03414594733501265 6.783646930302182e-05 0.015036937087214026 4.0674079561273386e-05 0.0005318228591982131 1.4385512928643753e-06 0.015036937087214026 4.0674079561273386e-05 0.019109010247798625 7.909593741562597e-05']
['59866.48422904636 0.03429007265118437 6.794891538190943e-05 0.014971510560811122 4.0632778862535596e-05 0.0005295088691790232 1.437090579451649e-06 0.014971510560811122 4.0632778862535596e-05 0.019318562090373248 7.917119311763342e-05']
['59866.484260584315 0.03427943255802283 6.793799167183579e-05 0.015034077602169418 4.066878360762465e-05 0.0005317217256027583 1.4383639868195792e-06 0.01503407760216942 4.066878360762465e-05 0.01924535495585341 7.918030482718685e-05']
['59866.48429212228 0.034192651553900104 6.789413869583063e-05 0.014999993620873456 4.065784048816597e-05 0.0005305162513575351 1.4379769531407584e-06 0.014999993620873456 4.065784048816597e-05 0.019192657933026647 7.913705871720173e-05']
['59866.48432366025 0.03433296128342324 6.796003746679667e-05 0.014996033716625331 4.0653117887823e-05 0.000530376198394144 1.4378099253210184e-06 0.01499603371662533 4.0653117887823e-05 0.01933692756679791 7.919117808499657e-05']
['59866.484355198205 0.03422056243697255 6.790566771637254e-05 0.01496903386972863 4.064298704581918e-05 0.0005294212741505142 1.4374516200804423e-06 0.014969033869728629 4.064298704581918e-05 0.019251528567243922 7.913932084629628e-05']
['59866.48438673617 0.034210394076643606 6.788133840522245e-05 0.015030088076133298 4.066245864063902e-05 0.0005315806249829267 1.438140286872767e-06 0.0150300880761333 4.066245864063902e-05 0.019180306000510308 7.912845029688125e-05']
['59866.48441827413 0.034289738861119745 6.795913153869146e-05 0.015046387661751209 4.066622078183124e-05 0.0005321571048988022 1.438273345398845e-06 0.015046387661751209 4.066622078183124e-05 0.019243351199368534 7.91971279287943e-05']
['59866.484449812095 0.034309498517523976 6.795466198538672e-05 0.01505783243264291 4.067663652884183e-05 0.0005325618808676841 1.438641727092785e-06 0.015057832432642911 4.067663652884183e-05 0.019251666084881065 7.919864168562282e-05']
['59866.48448135006 0.034250166706168976 6.791697142703058e-05 0.015006124575453018 4.0643008344691444e-05 0.0005307330895191371 1.4374523733739544e-06 0.015006124575453018 4.0643008344691444e-05 0.01924404213071596 7.914903116985543e-05']
['59866.48451288802 0.034234495631481746 6.79262012417064e-05 0.014916195512923907 4.0589482847859345e-05 0.0005275524995571087 1.435559296173448e-06 0.014916195512923908 4.0589482847859345e-05 0.019318300118557837 7.912948207201576e-05']
['59866.484544425984 0.03423668627211674 6.791339782623922e-05 0.014959830180576481 4.06144286154236e-05 0.0005290957602342374 1.4364415722216863e-06 0.014959830180576481 4.06144286154236e-05 0.01927685609154026 7.913129226837114e-05']
['59866.48457596395 0.03416041326083482 6.784645004402206e-05 0.015080975892323491 4.0698181854245816e-05 0.0005333804133139979 1.4394037371013556e-06 0.01508097589232349 4.0698181854245816e-05 0.01907943736851133 7.911689320124523e-05']
['59866.48460750191 0.03416602815078049 6.786163551380646e-05 0.014977371195695904 4.063764455748158e-05 0.0005297161467371498 1.4372626682077002e-06 0.014977371195695905 4.063764455748158e-05 0.019188656955084586 7.909879727144359e-05']
['59866.484639039874 0.03429330416549619 6.794130967525295e-05 0.015068279618219894 4.069722805934745e-05 0.0005329313744734564 1.4393700035074065e-06 0.015068279618219896 4.069722805934745e-05 0.019225024547276294 7.919776469132924e-05']
['59866.48467057783 0.03427214228884444 6.793107274650215e-05 0.014963458310379166 4.063092260364974e-05 0.0005292240790769655 1.4370249277233507e-06 0.014963458310379166 4.063092260364974e-05 0.019308683978465274 7.915492730155428e-05']
['59866.4847021158 0.03414537985239322 6.78495236954428e-05 0.01496931736195653 4.063597520731678e-05 0.0005294313006370472 1.4372036270231495e-06 0.014969317361956528 4.063597520731678e-05 0.019176062490436692 7.90875486201723e-05']
['59866.484733653764 0.03430900067982769 6.796829966928003e-05 0.015071918541400948 4.0692602917017665e-05 0.0005330600750538556 1.4392064225597868e-06 0.015071918541400948 4.0692602917017665e-05 0.019237082138426745 7.92185438650265e-05']
['59866.48476519172 0.034240296540694284 6.791290500753054e-05 0.015061188666662258 4.067803709956731e-05 0.0005326805833642069 1.438691262149254e-06 0.01506118866666226 4.067803709956731e-05 0.019179107874032025 7.916353560090429e-05']
['59866.48479672969 0.03426647782149084 6.792205415277844e-05 0.015007902893869123 4.064925328520178e-05 0.0005307959846672071 1.4376732429631844e-06 0.015007902893869123 4.064925328520178e-05 0.019258574927621716 7.915659942782697e-05']
['59866.484828267654 0.034381715755288804 6.79992110750343e-05 0.015110092652659144 4.0708516245925054e-05 0.0005344102080549405 1.4397692414390442e-06 0.015110092652659146 4.0708516245925054e-05 0.019271623102629656 7.925323969259435e-05']
['59866.48485980561 0.034226514909522006 6.790765946750866e-05 0.015035172720893606 4.066805176920329e-05 0.0005317604575045865 1.4383381033301784e-06 0.015035172720893606 4.066805176920329e-05 0.019191342188628398 7.915390482507933e-05']
['59866.48489134358 0.03423651511812174 6.789026108001334e-05 0.015116955221857692 4.069988029288319e-05 0.0005346529217905535 1.4394638070801726e-06 0.015116955221857692 4.069988029288319e-05 0.019119559896264043 7.915533971481263e-05']
['59866.48492288154 0.03412611403246627 6.781573755528462e-05 0.01495129937815617 4.061276960891719e-05 0.0005287940448178523 1.4363828968692158e-06 0.014951299378156169 4.061276960891719e-05 0.019174814654310104 7.904664012767544e-05']
['59866.4849544195 0.034312300996617286 6.797672714296047e-05 0.015096830475638218 4.070194208388523e-05 0.0005339411544929316 1.4395367280200831e-06 0.01509683047563822 4.070194208388523e-05 0.019215470520979064 7.923057189285235e-05']
['59866.48498595747 0.03430083383178646 6.795511133608042e-05 0.015075808774921066 4.069169598909088e-05 0.0005331976639193019 1.439174346545881e-06 0.015075808774921066 4.069169598909088e-05 0.019225025056865394 7.920676283732141e-05']
['59866.485017495426 0.034309182622139486 6.798027759008291e-05 0.015028313230371949 4.0683167761314724e-05 0.0005315178526548945 1.4388727221889058e-06 0.015028313230371949 4.0683167761314724e-05 0.019280869391767538 7.922397541350729e-05']
['59866.48504903339 0.03437100385709123 6.802038837685333e-05 0.015101547009245639 4.069713165860254e-05 0.0005341079677457938 1.4393665940285021e-06 0.015101547009245639 4.069713165860254e-05 0.01926945684784559 7.92655647817865e-05']
['59866.48508057136 0.03425063408259764 6.791702033046797e-05 0.01501382658500948 4.064547866193307e-05 0.000531005492384171 1.4375397429739563e-06 0.015013826585009481 4.064547866193307e-05 0.01923680749758816 7.915034166841516e-05']
['59866.485112109316 0.034427894895196445 6.808104333522626e-05 0.015020790896262948 4.06591850901885e-05 0.0005312518045088865 1.4380245087092868e-06 0.01502079089626295 4.06591850901885e-05 0.019407103998933493 7.92981575688311e-05']
['59866.48514364728 0.034284300500868774 6.794827412704521e-05 0.01497876311833606 4.063155731817227e-05 0.0005297653759301681 1.437047376157509e-06 0.01497876311833606 4.063155731817227e-05 0.01930553738253271 7.91700158326623e-05']
['59866.48517518524 0.034359283441127784 6.799486430473576e-05 0.015081837568767686 4.0669278017498386e-05 0.0005334108888840957 1.4383814729918724e-06 0.015081837568767688 4.0669278017498386e-05 0.019277445872360098 7.92293616425376e-05']
['59866.485206723206 0.034262626090501264 6.792778903716483e-05 0.014997943895687642 4.065344413702009e-05 0.000530443757158579 1.4378214640259952e-06 0.01499794389568764 4.065344413702009e-05 0.019264682194813622 7.916367249995027e-05']
['59866.48523826117 0.034264871620006083 6.791400875746733e-05 0.015055686557449632 4.0673492483695116e-05 0.0005324859860578467 1.438530529242473e-06 0.015055686557449634 4.0673492483695116e-05 0.01920918506255645 7.916214737063764e-05']
['59866.48526979913 0.034111602470721356 6.782338564417292e-05 0.015004027624176259 4.0654046732609563e-05 0.0005306589250388885 1.437842776485273e-06 0.01500402762417626 4.0654046732609563e-05 0.019107574846545093 7.907441530593447e-05']
['59866.485301337096 0.03432870097775664 6.798660912283027e-05 0.015125849455799055 4.071776784598297e-05 0.0005349674909676166 1.4400964498569834e-06 0.015125849455799055 4.071776784598297e-05 0.019202851521957588 7.924718063363436e-05']
['59866.48533287506 0.03436024763483471 6.799477815996698e-05 0.015076603821654733 4.0673516061599726e-05 0.0005332257829454469 1.4385313631402657e-06 0.015076603821654733 4.0673516061599726e-05 0.019283643813179978 7.923146323170067e-05']
['59866.48536441302 0.03424206014424974 6.791618750704282e-05 0.014968121759453027 4.062279507128196e-05 0.0005293890148485126 1.4367374750674683e-06 0.014968121759453026 4.062279507128196e-05 0.019273938384796716 7.913798079869848e-05']
['59866.485395950986 0.034214599252517776 6.788632274451415e-05 0.01504347588237057 4.067779423848502e-05 0.0005320541217695529 1.438682672695536e-06 0.01504347588237057 4.067779423848502e-05 0.019171123370147206 7.914060752787323e-05']
['59866.485427488944 0.03425424577879304 6.794951086122577e-05 0.015023167311153517 4.0645167166779776e-05 0.0005313358529925911 1.4375287260865352e-06 0.015023167311153515 4.0645167166779776e-05 0.019231078467639523 7.917806287283941e-05']
['59866.48545902691 0.03437335280014355 6.801995876842015e-05 0.01507027494958443 4.068553940720596e-05 0.0005330019448845168 1.4389566020037623e-06 0.015070274949584428 4.068553940720596e-05 0.019303077850559125 7.925924493529375e-05']
['59866.485490564875 0.03424028132236154 6.790314694986523e-05 0.015031281446571327 4.066453231044136e-05 0.0005316228318282938 1.4382136279392965e-06 0.015031281446571329 4.066453231044136e-05 0.01920899987579021 7.914822520892002e-05']
['59866.485522102834 0.03408411672040182 6.779122282669908e-05 0.01502122690639659 4.0680045439751595e-05 0.0005312672252128881 1.438762292653196e-06 0.015021226906396592 4.0680045439751595e-05 0.019062889814005227 7.90602048398524e-05']
['59866.4855536408 0.0341606935119704 6.783499951839194e-05 0.014961954948764924 4.062843981941038e-05 0.0005291709085364852 1.4369371171935009e-06 0.014961954948764926 4.062843981941038e-05 0.019198738563205475 7.907121651915875e-05']
['59866.485585178765 0.034213093511995404 6.787971368531806e-05 0.014949715472875156 4.0624402228667056e-05 0.0005287380256278828 1.4367943166323936e-06 0.014949715472875155 4.0624402228667056e-05 0.01926337803912025 7.910750651131209e-05']
['59866.48561671672 0.0343392304334318 6.799909198164337e-05 0.014971188244113592 4.061904597574076e-05 0.000529497469557767 1.4366048779369113e-06 0.014971188244113594 4.061904597574076e-05 0.01936804218931821 7.920721814523811e-05']
['59866.48564825469 0.03416944360216482 6.785992511879203e-05 0.015107444503175752 4.0701697504916084e-05 0.0005343165489259786 1.4395280778085461e-06 0.015107444503175752 4.0701697504916084e-05 0.019061999098989067 7.913025727817238e-05']
['59866.48567979265 0.034323556980877704 6.798087352602964e-05 0.015040764702207254 4.0673000467157436e-05 0.0005319582333863075 1.4385131277171277e-06 0.015040764702207254 4.0673000467157436e-05 0.019282792278670448 7.921926616905402e-05']
['59866.48571133061 0.03431852882851624 6.796961202618987e-05 0.014939109817497607 4.0613872220467956e-05 0.0005283629272994237 1.4364218937755747e-06 0.014939109817497605 4.0613872220467956e-05 0.01937941901101864 7.917925723149513e-05']
['59866.48574286858 0.03421184543566833 6.789598403011969e-05 0.015001886824023036 4.0654999031329594e-05 0.0005305832097218758 1.4378764571627382e-06 0.015001886824023036 4.0654999031329594e-05 0.019209958611645296 7.913718211849395e-05']
['59866.48577440654 0.03430979634108165 6.79753175922005e-05 0.015025966779495135 4.066305096430769e-05 0.0005314348639313907 1.4381612360371623e-06 0.015025966779495137 4.066305096430769e-05 0.019283829561586516 7.920939032391556e-05']
['59866.4858059445 0.03426675637115833 6.793066761089152e-05 0.015027346934738676 4.0664762700974794e-05 0.0005314836769378893 1.4382217763375715e-06 0.015027346934738678 4.0664762700974794e-05 0.01923940943641965 7.917195543617712e-05']
['59866.48583748246 0.034228992604312 6.791298955422771e-05 0.015005926334641682 4.0649874169106856e-05 0.0005307260781846824 1.4376952022393128e-06 0.015005926334641683 4.0649874169106856e-05 0.019223066269670318 7.914914036271566e-05']
['59866.48586902043 0.03430832114868148 6.795828603264131e-05 0.01507442836258428 4.068211600743441e-05 0.0005331488418199898 1.4388355240046909e-06 0.01507442836258428 4.068211600743441e-05 0.0192338927860972 7.920456554603808e-05']
['59866.48590055839 0.034319840788398275 6.796489286687332e-05 0.015080906332462172 4.0692779677056325e-05 0.0005333779531371603 1.4392126741673188e-06 0.015080906332462172 4.0692779677056325e-05 0.0192389344559361 7.921571170071639e-05']
['59866.48593209635 0.0342242114749754 6.788483992417987e-05 0.0150596580373741 4.067174562292411e-05 0.0005326264484270399 1.4384687466810069e-06 0.015059658037374102 4.067174562292411e-05 0.019164553437601296 7.913622674570333e-05']
['59866.48596363432 0.03422627802448216 6.79042857197163e-05 0.014989118783479057 4.063317109733369e-05 0.0005301316326627264 1.4371044519198646e-06 0.014989118783479059 4.063317109733369e-05 0.0192371592410031 7.913309429391765e-05']
['59866.48599517228 0.03420064176518511 6.788246444155317e-05 0.014920882833149867 4.058511427844298e-05 0.0005277182795979567 1.4354047896363692e-06 0.014920882833149867 4.058511427844298e-05 0.01927975893203524 7.908969894779602e-05']
['59866.48602671024 0.034363467119684125 6.803459857414674e-05 0.014983391876760338 4.065610381541275e-05 0.0005299290847709686 1.4379155309067122e-06 0.01498339187676034 4.065610381541275e-05 0.019380075242923785 7.9256705587571e-05']
['59866.48605824821 0.03430738812811679 6.797931948043117e-05 0.015031521483769702 4.0647194729724925e-05 0.0005316313214075488 1.4376004364565687e-06 0.015031521483769704 4.0647194729724925e-05 0.019275866644347085 7.920468620238771e-05']
['59866.486089786165 0.03425338951966911 6.790958698146216e-05 0.015068695877924003 4.067866698390567e-05 0.000532946096648905 1.4387135397505931e-06 0.015068695877924003 4.067866698390567e-05 0.019184693641745104 7.916101282563451e-05']
['59866.48612132413 0.03422804627959677 6.790761075548674e-05 0.014998142527698648 4.064526014146341e-05 0.0005304507823288919 1.4375320143933092e-06 0.014998142527698648 4.064526014146341e-05 0.01922990375189812 7.914215545766955e-05']
['59866.4861528621 0.034291278018457744 6.791863157634046e-05 0.014956926715836915 4.0623324709443585e-05 0.0005289930711752607 1.4367562071855733e-06 0.014956926715836915 4.0623324709443585e-05 0.01933435130262083 7.914035017392557e-05']
['59866.486184400055 0.03428775452189169 6.794920883076817e-05 0.01505912821470699 4.068210201791474e-05 0.0005326077097833881 1.4388350292266446e-06 0.015059128214706992 4.068210201791474e-05 0.0192286263071847 7.919677016976996e-05']
['59866.48621593802 0.03423478265671695 6.789799260239565e-05 0.014990542400805844 4.065024024535742e-05 0.0005301819828259774 1.437708149538163e-06 0.014990542400805844 4.065024024535742e-05 0.019244240255911108 7.913646082205251e-05']
['59866.48624747599 0.034239447468115025 6.787718554322458e-05 0.015048529977819988 4.066617288406753e-05 0.0005322328738303603 1.4382716513619878e-06 0.015048529977819988 4.066617288406753e-05 0.019190917490295036 7.912679656289774e-05']
['59866.486279013945 0.034357560604243255 6.799617725918096e-05 0.01499816164086344 4.0646976365401374e-05 0.0005304514583188152 1.4375927133984601e-06 0.01499816164086344 4.0646976365401374e-05 0.019359398963379813 7.921904322517065e-05']
['59866.48631055191 0.03439221858477022 6.801803745850194e-05 0.01497937900229045 4.064360136013265e-05 0.0005297871583692153 1.4374733470047982e-06 0.014979379002290452 4.064360136013265e-05 0.019412839582479767 7.923607607161999e-05']
['59866.48634208987 0.034206812417696575 6.78927835527975e-05 0.014992977039275414 4.06427728718892e-05 0.0005302680905475494 1.4374440452271895e-06 0.014992977039275414 4.06427728718892e-05 0.01921383537842116 7.912815583130307e-05']
['59866.486373627835 0.034416266707531076 6.805577494644843e-05 0.01509781875392311 4.070144217761421e-05 0.0005339761076871962 1.4395190474525018e-06 0.01509781875392311 4.070144217761421e-05 0.019318447953607966 7.929814562081076e-05']
['59866.4864051658 0.03422339556005655 6.789476507133731e-05 0.015071543691720762 4.0681743084822176e-05 0.0005330468174584071 1.4388223345653289e-06 0.01507154369172076 4.0681743084822176e-05 0.019151851868335793 7.91498789924e-05']
['59866.48643670376 0.03431417646757434 6.798627947069672e-05 0.015036127422889569 4.0671956168332165e-05 0.0005317942231805503 1.4384761932015483e-06 0.015036127422889567 4.0671956168332165e-05 0.019278049044684775 7.92233691206478e-05']
['59866.486468241725 0.03415913244857568 6.786787767798181e-05 0.014949005149530532 4.0616811443474376e-05 0.0005287129030786627 1.436525847524535e-06 0.014949005149530532 4.0616811443474376e-05 0.019210127299045147 7.909345227228517e-05']
['59866.48649977969 0.03435947002942682 6.79814476698193e-05 0.015010093213223021 4.063585727303639e-05 0.0005308734513676788 1.4371994559512197e-06 0.015010093213223021 4.063585727303639e-05 0.019349376816203797 7.92006952216896e-05']
['59866.48653131765 0.034215532928765405 6.789607300683613e-05 0.014984109520239678 4.063886250481032e-05 0.0005299544662169941 1.437305744282766e-06 0.014984109520239678 4.063886250481032e-05 0.019231423408525725 7.912896988735857e-05']
['59866.486562855614 0.034318025295796376 6.796537610227253e-05 0.015135240463523693 4.0712645184793495e-05 0.00053529962992317 1.4399152727791857e-06 0.015135240463523693 4.0712645184793495e-05 0.019182784832272683 7.922633291189392e-05']
['59866.48659439357 0.03414104364772031 6.785710440159048e-05 0.015017334102013783 4.063727915613426e-05 0.000531129545421774 1.4372497447786696e-06 0.015017334102013785 4.063727915613426e-05 0.019123709545706524 7.909472216894079e-05']
['59866.48662593154 0.034363606610180536 6.798270706365417e-05 0.015085761898915936 4.06911544051923e-05 0.0005335496836710776 1.4391551919337572e-06 0.015085761898915938 4.06911544051923e-05 0.019277844711264598 7.923016159600972e-05']
['59866.486657469504 0.03427684299014379 6.794590625515388e-05 0.015038617653008209 4.067126448832716e-05 0.0005318822970545098 1.4384517300255852e-06 0.015038617653008209 4.067126448832716e-05 0.01923822533713558 7.918836992837786e-05']
['59866.48668900746 0.03424549115342275 6.790489451311297e-05 0.015040576179355402 4.0672046777986046e-05 0.0005319515657543612 1.4384793978625055e-06 0.015040576179355402 4.0672046777986046e-05 0.019204914974067348 7.915358543962292e-05']
['59866.48672054543 0.03440263115120974 6.802646593374873e-05 0.015103881521139794 4.070717789762694e-05 0.0005341905342141631 1.4397219070507723e-06 0.015103881521139796 4.070717789762694e-05 0.019298749630069945 7.927593834086434e-05']
['59866.486752083394 0.034130313171698956 6.784939336807903e-05 0.015005269554846257 4.064218542781361e-05 0.0005307028493511346 1.4374232686430961e-06 0.015005269554846257 4.064218542781361e-05 0.0191250436168527 7.909062786933173e-05']
['59866.48678362135 0.03438175974990144 6.800064623982847e-05 0.014986645344215106 4.064092150405453e-05 0.0005300441526437719 1.437378566484441e-06 0.014986645344215106 4.064092150405453e-05 0.01939511440568633 7.921977271952388e-05']
['59866.48681515932 0.03429260615486484 6.796006158515738e-05 0.01509231574496369 4.069061817123119e-05 0.0005337814785588027 1.439136226536965e-06 0.01509231574496369 4.069061817123119e-05 0.01920029040990115 7.921045624041887e-05']
['59866.48684669728 0.034196897682549424 6.785864841100848e-05 0.014996752512341184 4.064294665887005e-05 0.0005304016205921999 1.4374501916843112e-06 0.014996752512341184 4.064294665887005e-05 0.019200145170208238 7.909895876232898e-05']
['59866.48687823524 0.03428533095309467 6.798177077132689e-05 0.015033153710255653 4.066227028294346e-05 0.0005316890496105453 1.4381336250820296e-06 0.015033153710255653 4.066227028294346e-05 0.019252177242839015 7.921452759291303e-05']
['59866.48690977321 0.03420720523307203 6.788800961488347e-05 0.015040757059609874 4.0660812504739054e-05 0.0005319579630847184 1.4380820667248823e-06 0.015040757059609876 4.0660812504739054e-05 0.019166448173462157 7.913332751133403e-05']
['59866.48694131117 0.034296098298468365 6.798568402336216e-05 0.015117747929744938 4.0711171203113525e-05 0.0005346809580969276 1.4398631413413204e-06 0.015117747929744938 4.0711171203113525e-05 0.019178350368723427 7.924299775282141e-05']
['59866.48697284913 0.034191716129338516 6.79079359398846e-05 0.015035068154398073 4.067241716038902e-05 0.0005317567592213318 1.4384924974603428e-06 0.015035068154398073 4.067241716038902e-05 0.019156647974940443 7.915638496851772e-05']
['59866.4870043871 0.03423671179240464 6.789135025712519e-05 0.015025151425985038 4.067556852277683e-05 0.0005314060266999464 1.4386039541051191e-06 0.015025151425985038 4.067556852277683e-05 0.0192115603664196 7.914377622016e-05']
['59866.487035925056 0.03425380372406252 6.793481295071307e-05 0.015072807821014245 4.06723839155349e-05 0.0005330915268863549 1.4384913216641503e-06 0.015072807821014245 4.06723839155349e-05 0.019180995903048274 7.917942677249586e-05']
['59866.48706746302 0.03425240336639434 6.793960773066744e-05 0.014998400260034668 4.065159237441035e-05 0.0005304598977456191 1.4377559713209345e-06 0.01499840026003467 4.065159237441035e-05 0.01925400310635967 7.917286316138999e-05']
['59866.48709900098 0.03433284402176812 6.79820169528027e-05 0.015052544363536039 4.0679033709476184e-05 0.0005323748536815129 1.4387265100144386e-06 0.015052544363536037 4.0679033709476184e-05 0.019280299658232088 7.922334512318862e-05']
['59866.487130538946 0.03419221868671886 6.790619628803942e-05 0.015010872163806938 4.065655792619473e-05 0.0005309010011089798 1.4379315917901932e-06 0.01501087216380694 4.065655792619473e-05 0.019181346522911917 7.914674470068726e-05']
['59866.48716207691 0.034231646310689076 6.789066107330587e-05 0.014998732337877095 4.06371609242318e-05 0.0005304716425967555 1.4372455631805124e-06 0.014998732337877095 4.06371609242318e-05 0.01923291397281198 7.912345233211454e-05']
['59866.48719361487 0.034284978080412365 6.796875082265929e-05 0.015114523426153973 4.0708626089378764e-05 0.0005345669146112565 1.4397731263565163e-06 0.015114523426153971 4.0708626089378764e-05 0.019170454654258394 7.922716280719383e-05']
['59866.487225152836 0.034143574006418834 6.7849070443868e-05 0.014977844828932706 4.06378696229895e-05 0.0005297328980862276 1.4372706282717237e-06 0.014977844828932708 4.06378696229895e-05 0.019165729177486126 7.908813316542537e-05']
['59866.4872566908 0.03423062904275683 6.790724856390726e-05 0.015000623265148394 4.0641999369499e-05 0.0005305385204683675 1.4374166881763243e-06 0.015000623265148392 4.0641999369499e-05 0.019230005777608437 7.914017007986931e-05']
['59866.48728822876 0.034153783001512825 6.786244732017378e-05 0.015013311072676606 4.064392822422576e-05 0.0005309872598650594 1.4374849074572733e-06 0.015013311072676606 4.064392822422576e-05 0.01914047192883622 7.91027221894378e-05']
['59866.487319766726 0.03420774507170128 6.787034364454393e-05 0.015015121015348895 4.065823100914052e-05 0.0005310512734923945 1.4379907649948652e-06 0.015015121015348895 4.065823100914052e-05 0.019192624056352386 7.911684583716113e-05']
['59866.487351304684 0.03435530126835103 6.795909070164433e-05 0.015080257463015796 4.0680366412539806e-05 0.0005333550040749797 1.438773644743383e-06 0.015080257463015794 4.0680366412539806e-05 0.019275043805335235 7.920435733249035e-05']
['59866.48738284265 0.0342626353277903 6.793173497060423e-05 0.015046933227892563 4.066542500029733e-05 0.0005321764003539533 1.4382452003844578e-06 0.015046933227892563 4.066542500029733e-05 0.019215702099897737 7.917321142009601e-05']
['59866.487414380616 0.034348400794504776 6.800788527010486e-05 0.015194325083601062 4.0748157362088295e-05 0.0005373893208889522 1.4411712591250575e-06 0.015194325083601062 4.0748157362088295e-05 0.019154075710903714 7.928104935807331e-05']
['59866.487445918574 0.03433749231132131 6.798754892093381e-05 0.01509919927901036 4.0690851580766486e-05 0.0005340249337742402 1.4391444817105889e-06 0.01509919927901036 4.0690851580766486e-05 0.019238293032310953 7.923416062939227e-05']
['59866.48747745654 0.034212584044881804 6.788212117128695e-05 0.015025676669041477 4.06699375548925e-05 0.0005314246033730035 1.4384047993555228e-06 0.015025676669041477 4.06699375548925e-05 0.019186907375840327 7.913296528901302e-05']
['59866.487508994505 0.034057977394648435 6.777037942076078e-05 0.015019252974916358 4.06528664851784e-05 0.0005311974116679095 1.4378010337713305e-06 0.015019252974916356 4.06528664851784e-05 0.01903872441973208 7.902834858641307e-05']
['59866.487540532464 0.03422245050557239 6.79072618157144e-05 0.015022112095853508 4.065050526873358e-05 0.0005312985323856973 1.4377175228226857e-06 0.015022112095853508 4.065050526873358e-05 0.01920033840971888 7.914454994446124e-05']
['59866.48757207043 0.034253504977711166 6.790438667925725e-05 0.01504678217036662 4.0678211431502256e-05 0.0005321710577868544 1.438697427880184e-06 0.01504678217036662 4.0678211431502256e-05 0.019206722807344548 7.915631759722082e-05']
['59866.48760360839 0.034287517063168224 6.794618039800623e-05 0.015037397895144187 4.0675918268763484e-05 0.0005318391569448577 1.4386163238390307e-06 0.015037397895144185 4.0675918268763484e-05 0.01925011916802404 7.919099543310169e-05']
['59866.48763514635 0.03425698563707833 6.793410797231619e-05 0.015113586784819444 4.0709903797493896e-05 0.0005345337877005245 1.439818316037039e-06 0.015113586784819446 4.0709903797493896e-05 0.019143398852258887 7.919810157570397e-05']
['59866.48766668432 0.03433868323875643 6.798285344761498e-05 0.015033661637503758 4.066292384826853e-05 0.0005317070138621602 1.4381567402269447e-06 0.015033661637503758 4.066292384826853e-05 0.019305021601252675 7.921579223090545e-05']
['59866.48769822228 0.03428967044076237 6.796039120202185e-05 0.014983571587744413 4.0627807741223445e-05 0.0005299354407468449 1.4369147620006405e-06 0.014983571587744413 4.0627807741223445e-05 0.01930609885301796 7.917849161350363e-05']
['59866.48772976024 0.034252164350082916 6.792160326652915e-05 0.01502744499012039 4.06729823059336e-05 0.0005314871449375997 1.4385124853952285e-06 0.01502744499012039 4.06729823059336e-05 0.019224719359962526 7.916840076668577e-05']
['59866.48776129821 0.034329965810327503 6.796909993719597e-05 0.01496935525898919 4.063248420788474e-05 0.0005294326409703975 1.4370801581751626e-06 0.014969355258989188 4.063248420788474e-05 0.019360610551338316 7.918836605951998e-05']
['59866.48779283617 0.03434712408408723 6.798280725892461e-05 0.015047315174109281 4.068292597242991e-05 0.0005321899089380391 1.4388641706564164e-06 0.015047315174109281 4.068292597242991e-05 0.01929980890997795 7.922602191503941e-05']
['59866.48782437413 0.03430214184994469 6.792516562971087e-05 0.015073747296596758 4.069009053314314e-05 0.000533124754038104 1.4391175651569925e-06 0.015073747296596758 4.069009053314314e-05 0.019228394553347933 7.918024749531313e-05']
['59866.48785591209 0.034262246746407474 6.793234305522785e-05 0.015077453069999575 4.068026328937894e-05 0.0005332558189614456 1.43876999750765e-06 0.015077453069999575 4.068026328937894e-05 0.0191847936764079 7.918135547126202e-05']
['59866.48788745006 0.034250798113394126 6.790170824939746e-05 0.014945624978087128 4.061220192507776e-05 0.0005285933539689481 1.4363628191605143e-06 0.014945624978087128 4.061220192507776e-05 0.019305173135306997 7.912011709034297e-05']
['59866.48791898802 0.03426790493474732 6.792526347187875e-05 0.014976142416667542 4.0629942463403774e-05 0.0005296726875690761 1.4369902623533356e-06 0.014976142416667542 4.0629942463403774e-05 0.01929176251807978 7.914943867333266e-05']
['59866.48795052598 0.03424137664046199 6.792950021608834e-05 0.014992183947854709 4.064895793921902e-05 0.000530240040676454 1.4376627972358333e-06 0.014992183947854709 4.064895793921902e-05 0.019249192692607282 7.916283712166929e-05']
['59866.48798206395 0.03424893275247991 6.791384970827576e-05 0.014953437709573886 4.0608918273793716e-05 0.0005288696728212074 1.4362466837531262e-06 0.014953437709573886 4.0608918273793716e-05 0.019295495042906022 7.912885204251306e-05']
['59866.48801360191 0.03430385011185908 6.794952989303602e-05 0.01507816786224532 4.0681977606571805e-05 0.000533281099565711 1.4388306290754881e-06 0.01507816786224532 4.0681977606571805e-05 0.01922568224961376 7.919698172699643e-05']
['59866.48804513987 0.034328493232347386 6.800645231285155e-05 0.01507100695827438 4.066929061538532e-05 0.0005330278343959373 1.4383819185509785e-06 0.01507100695827438 4.066929061538532e-05 0.019257486274073005 7.92393131932554e-05']
['59866.48807667784 0.03422733447855957 6.791658694817884e-05 0.01498388717652183 4.062595721489118e-05 0.0005299466024166027 1.4368493130199512e-06 0.01498388717652183 4.062595721489118e-05 0.019243447302037742 7.913994681774625e-05']
['59866.488108215795 0.03419998598061642 6.789314003577461e-05 0.014999283157513239 4.062947883275506e-05 0.0005304911238562764 1.436973864773444e-06 0.014999283157513239 4.062947883275506e-05 0.019200702823103176 7.912163429896145e-05']
['59866.48813975376 0.0343413471047349 6.802332365249408e-05 0.015091233332246339 4.0695557032054084e-05 0.00053374319604004 1.4393109030065664e-06 0.015091233332246339 4.0695557032054084e-05 0.019250113772488565 7.926727523310693e-05']
['59866.48817129173 0.03431810412732204 6.795860490378516e-05 0.015018056934850607 4.066404779728771e-05 0.0005311551104037761 1.438196491791875e-06 0.015018056934850607 4.066404779728771e-05 0.01930004719247143 7.919556025263583e-05']
['59866.488202829685 0.03416650569133999 6.785316216627382e-05 0.014920074712589921 4.058940095212708e-05 0.0005276896981797946 1.435556399704424e-06 0.014920074712589921 4.058940095212708e-05 0.01924643097875007 7.906675082242338e-05']
['59866.48823436765 0.034253916534664086 6.795366375936302e-05 0.014933975853043428 4.060725225543983e-05 0.0005281813504504146 1.4361877604072812e-06 0.014933975853043428 4.060725225543983e-05 0.019319940681620656 7.916217123132418e-05']
['59866.48826590562 0.0342897023641268 6.79631439363147e-05 0.01508488656168127 4.068816524206458e-05 0.000533518724949351 1.439049471914316e-06 0.01508488656168127 4.068816524206458e-05 0.019204815802445534 7.921184080977909e-05']
['59866.488297443575 0.034369624794154924 6.801739181829746e-05 0.015131404403903141 4.072101315890636e-05 0.0005351639570674798 1.4402112293222363e-06 0.015131404403903141 4.072101315890636e-05 0.019238220390251783 7.927525782015233e-05']
['59866.48832898154 0.034199432867174626 6.788687079325554e-05 0.015045676030770734 4.0667022806383615e-05 0.0005321319361014245 1.4383017112148432e-06 0.015045676030770736 4.0667022806383615e-05 0.01915375683640389 7.913554176244134e-05']
['59866.4883605195 0.034158989547224246 6.783304570407759e-05 0.014974971874570189 4.062551774638119e-05 0.0005296312881111004 1.4368337700009072e-06 0.01497497187457019 4.062551774638119e-05 0.019184017672654055 7.906803893896075e-05']
['59866.488392057465 0.034466786340137494 6.808931208204657e-05 0.01501499645256232 4.066603180832371e-05 0.0005310468679850148 1.4382666618282146e-06 0.01501499645256232 4.066603180832371e-05 0.019451789887575174 7.930876725080229e-05']
['59866.48842359543 0.03431055557772099 6.797238778206665e-05 0.01513642051544577 4.07184141817211e-05 0.0005353413657223931 1.4401193093075658e-06 0.01513642051544577 4.07184141817211e-05 0.019174135062275218 7.923531254604748e-05']
['59866.48845513339 0.03428077436520515 6.793023286416875e-05 0.015043162002760718 4.0662046000995207e-05 0.0005320430205492321 1.4381256927307606e-06 0.015043162002760718 4.0662046000995207e-05 0.019237612362444433 7.91701870780109e-05']
['59866.488486671355 0.034303402557163416 6.793656434895733e-05 0.015067312868151607 4.066782434582376e-05 0.0005328971826841003 1.4383300598735058e-06 0.015067312868151607 4.066782434582376e-05 0.01923608968901181 7.917858746253811e-05']
['59866.48851820932 0.03426620306399915 6.797638623676444e-05 0.015012522260491032 4.0661069583141585e-05 0.0005309593613409472 1.4380911590134435e-06 0.015012522260491034 4.0661069583141585e-05 0.019253680803508116 7.920929027238446e-05']
['59866.48854974728 0.03425372732607404 6.792648177388775e-05 0.0149795605594278 4.0621919422697125e-05 0.000529793579639407 1.436706505333982e-06 0.0149795605594278 4.0621919422697125e-05 0.019274166766646242 7.91463660805877e-05']
['59866.488581285244 0.034336855847895094 6.797001617446356e-05 0.015007773253460208 4.063658301330243e-05 0.000530791399575673 1.4372251237624954e-06 0.015007773253460208 4.063658301330243e-05 0.019329082594434888 7.91912556899678e-05']
['59866.4886128232 0.034326354541609816 6.79659109738818e-05 0.015034534004369705 4.0659143485752405e-05 0.0005317378675285835 1.4380230372533624e-06 0.015034534004369705 4.0659143485752405e-05 0.01929182053724011 7.919931188782279e-05']
['59866.48864436117 0.034164046139756946 6.784825591223316e-05 0.015031137717821537 4.067322052927281e-05 0.0005316177484636285 1.4385209108223385e-06 0.015031137717821537 4.067322052927281e-05 0.019132908421935407 7.910560472276753e-05']
['59866.488675899134 0.03419867760855651 6.787889085691665e-05 0.015020662312949393 4.066747853056612e-05 0.0005312472568044528 1.4383178291606947e-06 0.015020662312949393 4.066747853056612e-05 0.019178015295607115 7.912893044897838e-05']
['59866.48870743709 0.03419476708922788 6.786531436772497e-05 0.01496477338575355 4.0630406034275716e-05 0.0005292705903539369 1.4370066578190562e-06 0.01496477338575355 4.0630406034275716e-05 0.019229993703474335 7.909823505452094e-05']
['59866.48873897506 0.03429904555799901 6.796171337815205e-05 0.015113407302619793 4.0718561530178786e-05 0.0005345274398162419 1.4401245206932096e-06 0.015113407302619794 4.0718561530178786e-05 0.019185638255379216 7.922623137813036e-05']
['59866.488770513024 0.03434677566992546 6.801140042099867e-05 0.01504519122571991 4.068206431367097e-05 0.0005321147896302523 1.4388336957118065e-06 0.015045191225719911 4.068206431367097e-05 0.019301584444205547 7.925011636614219e-05']
['59866.48880205098 0.03419094219027942 6.78469215506782e-05 0.014999038502516127 4.065176178161596e-05 0.0005304824709558003 1.4377619628751941e-06 0.014999038502516127 4.065176178161596e-05 0.019191903687763294 7.909342892967238e-05']
['59866.48883358895 0.03429826708845706 6.796075114884066e-05 0.015092597396929128 4.069816722419327e-05 0.0005337914399593651 1.4394032196690934e-06 0.015092597396929126 4.069816722419327e-05 0.019205669691527934 7.92149260690373e-05']
['59866.48886512691 0.034399478679428365 6.802428163792254e-05 0.015023625942631534 4.064620234898299e-05 0.0005313520737629876 1.4375653381675669e-06 0.015023625942631534 4.064620234898299e-05 0.01937585273679683 7.924277038159302e-05']
['59866.48889666487 0.0341551965901605 6.784427451776576e-05 0.014957717242232297 4.06348671620359e-05 0.0005290210303271429 1.4371644379379001e-06 0.014957717242232297 4.06348671620359e-05 0.019197479347928204 7.908247602420061e-05']
['59866.48892820284 0.03436046525302826 6.801749746271671e-05 0.015008137705181515 4.0638151533909044e-05 0.000530804289418554 1.437280598830914e-06 0.015008137705181515 4.0638151533909044e-05 0.019352327547846743 7.92328171983278e-05']
['59866.4889597408 0.03430769756338101 6.798141056082455e-05 0.01501046379178739 4.0649022565045843e-05 0.0005308865579033062 1.437665082906898e-06 0.01501046379178739 4.0649022565045843e-05 0.019297233771593616 7.920741895386437e-05']
['59866.48899127876 0.034197057905879416 6.788719348492406e-05 0.015053027587619597 4.0689132077743005e-05 0.0005323919442374062 1.4390836667315114e-06 0.015053027587619597 4.0689132077743005e-05 0.01914403031825982 7.914718256829823e-05']
['59866.48902281673 0.03435386301144592 6.802315604848927e-05 0.015117439431991673 4.07144861122736e-05 0.0005346700472208465 1.4399803822699263e-06 0.015117439431991671 4.07144861122736e-05 0.019236423579454247 7.927685121259321e-05']
['59866.489054354686 0.03417983797755963 6.788523764705667e-05 0.014968604106726471 4.062464603895603e-05 0.0005294060743935916 1.4368029396574309e-06 0.01496860410672647 4.062464603895603e-05 0.019211233870833157 7.911237170119365e-05']
['59866.48908589265 0.034320975993471586 6.800101739786782e-05 0.015004657454255643 4.064951109527674e-05 0.0005306812007212089 1.437682361129364e-06 0.015004657454255645 4.064951109527674e-05 0.01931631853921594 7.922449822769563e-05']
['59866.48911743061 0.03432276934341492 6.795343448020578e-05 0.015050806306072894 4.06661800190846e-05 0.0005323133824733713 1.4382719037115959e-06 0.015050806306072893 4.06661800190846e-05 0.019271963037342025 7.919221839928601e-05']
['59866.489148968576 0.03416350049226149 6.786696270603143e-05 0.015108640549235726 4.071702375571204e-05 0.0005343588504021143 1.4400701330470446e-06 0.015108640549235724 4.071702375571204e-05 0.019054859943025762 7.91441763521807e-05']
['59866.48918050654 0.034367436439639756 6.800522762607422e-05 0.015102546476404497 4.0704917237347194e-05 0.0005341433166655249 1.439641952548956e-06 0.015102546476404495 4.0704917237347194e-05 0.019264889963235263 7.92565534941651e-05']
['59866.4892120445 0.034360302079273014 6.800102831130597e-05 0.015010552308461968 4.066067909969788e-05 0.0005308896885402628 1.438077348486719e-06 0.015010552308461966 4.066067909969788e-05 0.019349749770811046 7.923023839572644e-05']
['59866.489243582466 0.03422250369990968 6.789363538620298e-05 0.015009555788044764 4.0654850491688666e-05 0.0005308544438401984 1.437871203647605e-06 0.015009555788044764 4.0654850491688666e-05 0.019212947911864918 7.913509079072464e-05']
['59866.48927512043 0.03422705125983944 6.789307389190248e-05 0.015016152937857699 4.0653385854422935e-05 0.0005310877702853198 1.437819402700788e-06 0.015016152937857697 4.0653385854422935e-05 0.019210898321981744 7.913385662230753e-05']
['59866.48930665839 0.03431200324732495 6.795641986407574e-05 0.014997664372129906 4.0655594855931775e-05 0.0005304338710350403 1.4378975301473278e-06 0.014997664372129904 4.0655594855931775e-05 0.01931433887519505 7.91893452039617e-05']
['59866.489338196356 0.03426308817503993 6.793940892487848e-05 0.015020567264976189 4.06463055807929e-05 0.0005312438951700603 1.4375689892459738e-06 0.015020567264976189 4.06463055807929e-05 0.019242520910063742 7.916997816362623e-05']
['59866.489369734314 0.03431085474415777 6.798453463368699e-05 0.015038126910950824 4.065707952811227e-05 0.000531864940604684 1.437950039684305e-06 0.015038126910950824 4.065707952811227e-05 0.019272727833206948 7.921423524287937e-05']
['59866.48940127228 0.0342993775386142 6.798680271435764e-05 0.015033558221516695 4.066343546224499e-05 0.0005317033562698189 1.4381748348699024e-06 0.015033558221516696 4.066343546224499e-05 0.019265819317097505 7.921944412146018e-05']
['59866.489432810245 0.03418412769642894 6.7868789057005e-05 0.015019814020340968 4.065728060162605e-05 0.0005312172545907152 1.4379571512051143e-06 0.015019814020340968 4.065728060162605e-05 0.01916431367608797 7.911502381964883e-05']
['59866.489464348204 0.034228512645855656 6.7914705968468e-05 0.015061189970331186 4.069272891004632e-05 0.0005326806294720633 1.4392108786516324e-06 0.015061189970331188 4.069272891004632e-05 0.01916732267552447 7.917263083244097e-05']
['59866.48949588617 0.034328629296824655 6.799642258565443e-05 0.015045996881454513 4.067601177432138e-05 0.0005321432838730506 1.438619630921641e-06 0.015045996881454513 4.067601177432138e-05 0.019282632415370142 7.923415562944826e-05']
['59866.489527424135 0.034270504066111276 6.793366672811593e-05 0.015002541233879013 4.064291935750203e-05 0.0005306063547359617 1.4374492260959392e-06 0.015002541233879015 4.064291935750203e-05 0.019267962832232262 7.916331201400772e-05']
['59866.489558962094 0.03429710179978269 6.795130983665691e-05 0.015014280967209649 4.0658151288836286e-05 0.0005310215628671064 1.437987945465869e-06 0.015014280967209649 4.0658151288836286e-05 0.019282820832573037 7.918627264080086e-05']
['59866.48959050006 0.034250499335490604 6.791295392174963e-05 0.015001098730144737 4.065029844552583e-05 0.0005305553366026865 1.4377102079480502e-06 0.015001098730144739 4.065029844552583e-05 0.019249400605345864 7.914932769195205e-05']
['59866.48962203802 0.03429943284918643 6.798713208819529e-05 0.015042049969031558 4.065953146177062e-05 0.0005320036904014809 1.4380367590980513e-06 0.015042049969031558 4.065953146177062e-05 0.01925738288015487 7.921772294296542e-05']
['59866.48965357598 0.03428110911440496 6.79582449271114e-05 0.015004687806006889 4.064327327145175e-05 0.0005306822741948183 1.4374617432413898e-06 0.015004687806006889 4.064327327145175e-05 0.019276421308398073 7.918458635233986e-05']
['59866.48968511395 0.03436107133952124 6.799353952507313e-05 0.015068836992442236 4.067475861069572e-05 0.0005329510875540425 1.4385753093248572e-06 0.015068836992442235 4.067475861069572e-05 0.019292234347079003 7.923103814280139e-05']
['59866.48971665191 0.03434598471548547 6.798854888535566e-05 0.01505570390345743 4.065867977148324e-05 0.0005324865995473765 1.4380066367160024e-06 0.015055703903457432 4.065867977148324e-05 0.019290280812028042 7.92185017549336e-05']
['59866.48974818987 0.03423818547627689 6.790023248902735e-05 0.014968086496777059 4.0641994757450965e-05 0.0005293877676864711 1.4374165250584926e-06 0.014968086496777059 4.0641994757450965e-05 0.01927009897949983 7.913414755924674e-05']
['59866.48977972784 0.03427467955375985 6.795662445841958e-05 0.015019045984833019 4.0665256240321914e-05 0.0005311900908912574 1.4382392317212837e-06 0.015019045984833017 4.0665256240321914e-05 0.019255633568926837 7.91944813283963e-05']
['59866.4898112658 0.034297881958966984 6.794419791056665e-05 0.015080101493999775 4.0696094715169354e-05 0.0005333494877994534 1.4393299196567025e-06 0.015080101493999777 4.0696094715169354e-05 0.019217780464967207 7.919966006730259e-05']
['59866.48984280376 0.03419015622762146 6.787287920491021e-05 0.01506088104472009 4.0683426127003505e-05 0.000532669703463607 1.4388818600059046e-06 0.01506088104472009 4.0683426127003505e-05 0.019129275182901372 7.91319713705888e-05']
['59866.48987434172 0.03427126386177964 6.791623463619022e-05 0.01499493690237333 4.0647751744926534e-05 0.0005303374065252864 1.4376201368393938e-06 0.01499493690237333 4.0647751744926534e-05 0.019276326959406308 7.91508347970836e-05']
['59866.48990587969 0.034119602974513205 6.781924725394931e-05 0.014974001144457957 4.0633402664097055e-05 0.0005295969555564849 1.4371126419187635e-06 0.014974001144457957 4.0633402664097055e-05 0.01914560183005525 7.906025366867324e-05']
['59866.48993741765 0.03425465378900395 6.791134845534214e-05 0.014987284812602678 4.063954442269568e-05 0.0005300667692115126 1.4373298621943743e-06 0.014987284812602678 4.063954442269568e-05 0.019267368976401272 7.914242743249133e-05']
['59866.48996895561 0.034333753669081465 6.798110304972483e-05 0.014995294458720675 4.0630429081023434e-05 0.0005303500524942006 1.4370074729310164e-06 0.014995294458720675 4.0630429081023434e-05 0.01933845921036079 7.919761447900676e-05']
['59866.49000049358 0.03419621740334949 6.787179101789008e-05 0.015046197091137995 4.068478543745449e-05 0.0005321503648421131 1.4389299357786759e-06 0.015046197091137997 4.068478543745449e-05 0.01915002031221149 7.913173688266834e-05']
['59866.49003203154 0.03421439625664957 6.79383513592179e-05 0.015009659554705053 4.0644841511071227e-05 0.0005308581138350679 1.4375172083719215e-06 0.015009659554705053 4.0644841511071227e-05 0.019204736701944516 7.916831895947168e-05']
['59866.4900635695 0.03424104317505884 6.792204942612644e-05 0.015073344933811956 4.068085586525683e-05 0.0005331105233656335 1.4387909555921218e-06 0.015073344933811957 4.068085586525683e-05 0.019167698241246884 7.917282887566268e-05']
['59866.49009510747 0.034266521218442675 6.793076719520094e-05 0.015087210980859475 4.068901479462721e-05 0.0005336009344609129 1.439079518689818e-06 0.015087210980859474 4.068901479462721e-05 0.0191793102375832 7.918450010378281e-05']
['59866.490126645425 0.03417386871023187 6.787887541557162e-05 0.015042570421273098 4.0676841638597176e-05 0.0005320220976341218 1.4386489813664383e-06 0.015042570421273098 4.0676841638597176e-05 0.01913129828895877 7.913372968193907e-05']
['59866.49015818339 0.034179079331746666 6.786141770865864e-05 0.015039048899513744 4.0655074161844115e-05 0.0005318975492796314 1.43787911436113e-06 0.015039048899513744 4.0655074161844115e-05 0.019140030432232922 7.910756644300275e-05']
['59866.49018972136 0.03430685267148552 6.794094658117604e-05 0.015103186709461557 4.069889786925112e-05 0.0005341659602779165 1.4394290609518938e-06 0.015103186709461558 4.069889786925112e-05 0.019203665962023962 7.919831128324611e-05']
['59866.490221259315 0.03434934580223379 6.800389065401104e-05 0.015049559929314348 4.067463703648562e-05 0.0005322693009129096 1.4385710095167482e-06 0.015049559929314347 4.067463703648562e-05 0.019299785872919445 7.923985892297221e-05']
['59866.49025279728 0.03429028678537125 6.795290764181055e-05 0.014997653014150361 4.064128942374773e-05 0.0005304334693286874 1.4373915789817374e-06 0.014997653014150361 4.064128942374773e-05 0.01929263377122089 7.917898750932132e-05']
['59866.49028433525 0.03427227269705438 6.792518607804244e-05 0.01504976317989896 4.06706786933386e-05 0.000532276489431849 1.4384310117660145e-06 0.01504976317989896 4.06706786933386e-05 0.01922250951715542 7.91702912026568e-05']
['59866.490315873205 0.03430837874223456 6.79521774538218e-05 0.014950837086372687 4.0618082063741913e-05 0.0005287776945906319 1.4365707865237288e-06 0.014950837086372688 4.0618082063741913e-05 0.01935754165586187 7.916645129884603e-05']
['59866.49034741117 0.03432593594971479 6.796028160132008e-05 0.015048417446988373 4.067614697315607e-05 0.0005322288938663377 1.4386244126022723e-06 0.015048417446988373 4.067614697315607e-05 0.019277518502726416 7.920321210602837e-05']
['59866.49037894913 0.034169363885049535 6.785197279186072e-05 0.015038553731124109 4.067290012757458e-05 0.0005318800362803262 1.438509578930328e-06 0.015038553731124107 4.067290012757458e-05 0.019130810153925426 7.910862795255056e-05']
['59866.490410487095 0.03426165944314197 6.793073054871967e-05 0.015025880349179873 4.0656911478679674e-05 0.0005314318070843003 1.4379440961514422e-06 0.015025880349179874 4.0656911478679674e-05 0.019235779093962093 7.916797713638988e-05']
['59866.49044202506 0.034361637185800986 6.801212850550878e-05 0.01501648362486119 4.0654536029518306e-05 0.0005310994659455913 1.437860081823421e-06 0.01501648362486119 4.0654536029518306e-05 0.0193451535609398 7.923661352951198e-05']
['59866.49047356302 0.03431158425941825 6.79869215050995e-05 0.014999477857475447 4.066252154838509e-05 0.0005304980099588109 1.4381425117791549e-06 0.014999477857475447 4.066252154838509e-05 0.0193121064019428 7.921907696012018e-05']
['59866.490505100985 0.034274406004786005 6.79369881396262e-05 0.015077928688275068 4.0675568065592585e-05 0.0005332726405169055 1.438603937935534e-06 0.015077928688275068 4.0675568065592585e-05 0.01919647731651094 7.918292868379122e-05']
['59866.49053663895 0.034255828135977315 6.79271679469716e-05 0.014962863363303906 4.063201566103722e-05 0.000529203037128542 1.4370635867203065e-06 0.014962863363303906 4.063201566103722e-05 0.019292964772673407 7.915213731779363e-05']
['59866.49056817691 0.034247111900169 6.792879734819687e-05 0.015087618623969849 4.0699080977797314e-05 0.0005336153518866981 1.4394355370919492e-06 0.015087618623969849 4.0699080977797314e-05 0.01915949327619915 7.918798331571339e-05']
['59866.490599714874 0.03426893838541239 6.792611201512062e-05 0.014991646648494969 4.0645220066081075e-05 0.0005302210375988934 1.4375305970165992e-06 0.014991646648494969 4.0645220066081075e-05 0.019277291736917418 7.915801038246776e-05']
['59866.49063125283 0.034254367105894794 6.791295108698195e-05 0.015011350499025689 4.066360978824556e-05 0.0005309179187566507 1.4381810003909467e-06 0.015011350499025689 4.066360978824556e-05 0.019243016606869105 7.91561626555602e-05']
['59866.4906627908 0.0342181526128055 6.790805029342226e-05 0.015023868540459888 4.065141683098397e-05 0.0005313606539060023 1.43774976274226e-06 0.01502386854045989 4.065141683098397e-05 0.019194284072345615 7.9145694671412e-05']
['59866.490694328764 0.03420339793517454 6.789827380776206e-05 0.015024588036741794 4.066001068358809e-05 0.0005313861008815138 1.4380537081027375e-06 0.015024588036741796 4.066001068358809e-05 0.019178809898432743 7.91417213286603e-05']
['59866.49072586672 0.03421426196537179 6.79241567664442e-05 0.01501584036114354 4.065423950907336e-05 0.0005310767151455078 1.4378495945579676e-06 0.01501584036114354 4.065423950907336e-05 0.01919842160422825 7.916096425949844e-05']
['59866.49075740469 0.03438680743800961 6.802182281788545e-05 0.015099623300848974 4.070070488487387e-05 0.0005340399304790389 1.4394929710560284e-06 0.015099623300848972 4.070070488487387e-05 0.019287184137160643 7.926863035017948e-05']
['59866.490788942654 0.03428712600787074 6.79556018956734e-05 0.015064665152743711 4.0684184993508236e-05 0.0005328035389074187 1.4389086994182102e-06 0.01506466515274371 4.0684184993508236e-05 0.01922246085512703 7.920332529376055e-05']
['59866.49082048061 0.034317364279763105 6.797332384421334e-05 0.015080918605240795 4.0670008550827406e-05 0.0005333783871979121 1.438407310323074e-06 0.015080918605240795 4.0670008550827406e-05 0.01923644567452231 7.921125141010383e-05']
['59866.49085201858 0.03425166213245463 6.793309307263926e-05 0.015011570458236683 4.065801018640999e-05 0.0005309256982223637 1.4379829549883964e-06 0.015011570458236685 4.065801018640999e-05 0.019240091674217946 7.917056856391829e-05']
['59866.49088355654 0.034265806954296756 6.79332640173475e-05 0.015033516935897603 4.066733524070732e-05 0.0005317018960897395 1.438312761318623e-06 0.015033516935897603 4.066733524070732e-05 0.019232290018399153 7.917550451768979e-05']
['59866.4909150945 0.03426869347587909 6.793764071997584e-05 0.015043047572561936 4.067023687208554e-05 0.0005320389734088376 1.438415385535706e-06 0.015043047572561934 4.067023687208554e-05 0.019225645903317157 7.918075014691428e-05']
['59866.49094663247 0.034101524163317 6.78203971705232e-05 0.015053864363259018 4.066454807739016e-05 0.000532421539121689 1.4382141855810385e-06 0.015053864363259018 4.066454807739016e-05 0.01904765980005798 7.907725173971266e-05']
['59866.49097817043 0.034269167003612176 6.791877742314357e-05 0.014969386434012197 4.063280393364163e-05 0.0005294337435612892 1.4370914661606389e-06 0.014969386434012197 4.063280393364163e-05 0.01929978056959998 7.914534150639745e-05']
['59866.49100970839 0.034274440782983966 6.795736591614617e-05 0.014981097245359018 4.0652691735793445e-05 0.0005298479287865033 1.4377948532761267e-06 0.01498109724535902 4.0652691735793445e-05 0.019293343537624946 7.918866666150172e-05']
['59866.49104124636 0.03427550397168282 6.792078120852667e-05 0.015048101430091172 4.067520722734813e-05 0.0005322177170549399 1.4385911758932536e-06 0.015048101430091174 4.067520722734813e-05 0.01922740254159165 7.916883858541985e-05']
['59866.491072784316 0.034274616189564296 6.794770993730853e-05 0.01503716293593906 4.0659215338859454e-05 0.0005318308469628753 1.4380255785371765e-06 0.01503716293593906 4.0659215338859454e-05 0.019237453253625234 7.918372987992143e-05']
['59866.49110432228 0.034438388023089204 6.810029806500635e-05 0.015036996290518028 4.064697570668057e-05 0.000531824953086764 1.4375926901009773e-06 0.015036996290518027 4.064697570668057e-05 0.019401391732571178 7.9308431018664e-05']
['59866.49113586024 0.03437298135371676 6.802042348880307e-05 0.015037103106950098 4.066031610856068e-05 0.0005318287309452457 1.4380645103014335e-06 0.015037103106950098 4.066031610856068e-05 0.019335878246766663 7.924669909620331e-05']
['59866.491167398206 0.03426175464369564 6.79080413775584e-05 0.015014325225048109 4.065731786814049e-05 0.0005310231281679423 1.4379584692384443e-06 0.015014325225048109 4.065731786814049e-05 0.01924742941864753 7.914871811954505e-05']
['59866.49119893617 0.03424341574791272 6.792029722974995e-05 0.015075824768217177 4.068801311506726e-05 0.0005331982295664425 1.4390440915224047e-06 0.015075824768217177 4.068801311506726e-05 0.019167590979695538 7.917500354928608e-05']
['59866.49123047413 0.034257854071641475 6.79125556776687e-05 0.015010553381421777 4.065002384003134e-05 0.0005308897264884534 1.437700495765417e-06 0.015010553381421777 4.065002384003134e-05 0.019247300690219696 7.91488449496742e-05']
['59866.491262012096 0.03432154099735721 6.799994604143392e-05 0.015008723206538763 4.0642634144997996e-05 0.0005308249972930413 1.4374391387670841e-06 0.015008723206538763 4.0642634144997996e-05 0.019312817790818445 7.922005031481665e-05']
['59866.491293550054 0.03426362613520329 6.795407424926548e-05 0.01501549152938336 4.066311601391806e-05 0.0005310643777457434 1.4381635366965039e-06 0.015015491529383359 4.066311601391806e-05 0.019248134605819932 7.919119402456339e-05']
['59866.49132508802 0.03420021632366226 6.78795281632537e-05 0.01492110607341977 4.0587012683374936e-05 0.0005277261751073906 1.4354719319761271e-06 0.01492110607341977 4.0587012683374936e-05 0.019279110250242492 7.908815298277227e-05']
['59866.491356625986 0.0342975994905298 6.79601548407119e-05 0.015059719052549965 4.067806246321573e-05 0.0005326286063974492 1.4386921592048142e-06 0.015059719052549964 4.067806246321573e-05 0.01923788043797984 7.920408708983911e-05']
['59866.491388163944 0.034329586699338534 6.796818656168892e-05 0.014987771108817358 4.064738515809783e-05 0.0005300839684218178 1.437607171482536e-06 0.01498777110881736 4.064738515809783e-05 0.019341815590521172 7.919522905248335e-05']
['59866.49141970191 0.03424405760271882 6.790182768186963e-05 0.015019773920477698 4.065270101067079e-05 0.0005312158363481692 1.4377951813078103e-06 0.015019773920477696 4.065270101067079e-05 0.019224283682241126 7.914101529549208e-05']
['59866.491451239875 0.03433439285736219 6.800729981430949e-05 0.015019312076651189 4.065118054991188e-05 0.0005311995019641858 1.4377414060087974e-06 0.015019312076651187 4.065118054991188e-05 0.019315080780711008 7.923074723953393e-05']
['59866.491482777834 0.034345686822922245 6.799927399550056e-05 0.015080075940145734 4.0692497105045376e-05 0.0005333485840167454 1.439202680226803e-06 0.015080075940145734 4.0692497105045376e-05 0.01926561088277651 7.924506662600067e-05']
['59866.4915143158 0.034226936404712194 6.789754438363152e-05 0.014999239495990186 4.066327399234689e-05 0.0005304895796457837 1.4381691240404705e-06 0.014999239495990184 4.066327399234689e-05 0.01922769690872201 7.91427721595844e-05']
['59866.49154585376 0.0343301904656741 6.799019376624851e-05 0.015014598617660996 4.066597165053056e-05 0.0005310327974536636 1.4382645341815157e-06 0.015014598617660996 4.066597165053056e-05 0.019315591848013104 7.922365618080103e-05']
['59866.491577391724 0.034172499873059224 6.785498634666526e-05 0.01500870789525575 4.0655981288320406e-05 0.0005308244557671798 1.437911197397288e-06 0.01500870789525575 4.0655981288320406e-05 0.019163791977803477 7.910251567821587e-05']
['59866.49160892969 0.0342740329279391 6.793615502014408e-05 0.015082126158238262 4.068050204803274e-05 0.0005334210956487104 1.4387784418676406e-06 0.015082126158238262 4.068050204803274e-05 0.01919190676970084 7.918474856814944e-05']
['59866.49164046765 0.03427711974467617 6.794932405716883e-05 0.015017629110052022 4.0657440426659526e-05 0.0005311399791967824 1.4379628038593603e-06 0.015017629110052024 4.0657440426659526e-05 0.019259490634624146 7.918420361330606e-05']
['59866.49167200561 0.034224388125923974 6.788370959626056e-05 0.015033597330771463 4.0655506989304254e-05 0.000531704739476756 1.4378944225010826e-06 0.015033597330771463 4.0655506989304254e-05 0.019190790795152513 7.912691247045347e-05']
['59866.49170354358 0.0342264552138089 6.790402228550626e-05 0.015056679427568982 4.066309645246117e-05 0.0005325211016550339 1.4381628448514908e-06 0.01505667942756898 4.066309645246117e-05 0.019169775786239917 7.914823848736428e-05']
['59866.49173508154 0.034207024078877005 6.790278579791436e-05 0.01504269093787016 4.066666611762194e-05 0.0005320263600368211 1.4382890959304951e-06 0.01504269093787016 4.066666611762194e-05 0.019164333141006844 7.914901169464834e-05']
['59866.4917666195 0.0342539999187595 6.78911378010875e-05 0.015042534435667092 4.0682111811966066e-05 0.0005320208249036605 1.4388353756203517e-06 0.015042534435667092 4.0682111811966066e-05 0.019211465483092407 7.91469570697924e-05']
['59866.49179815746 0.034217320084751944 6.789255503952559e-05 0.014988552156779753 4.063080032919087e-05 0.0005301115923427082 1.4370206031490078e-06 0.014988552156779753 4.063080032919087e-05 0.019228767927972193 7.912181093216704e-05']
['59866.49182969543 0.03427540934056157 6.794521923462107e-05 0.014981082848483419 4.0646366350804866e-05 0.0005298474196011884 1.437571138545484e-06 0.014981082848483419 4.0646366350804866e-05 0.019294326492078153 7.917499551224845e-05']
['59866.49186123339 0.03437482857102382 6.800913690533064e-05 0.0149592462118686 4.062707986814378e-05 0.0005290751065661329 1.4368890187565132e-06 0.014959246211868601 4.062707986814378e-05 0.01941558235915522 7.921996163354625e-05']
['59866.49189277135 0.034354874293793525 6.802923464901556e-05 0.015013532318529366 4.0658213626289695e-05 0.0005309950848364161 1.43799015020228e-06 0.015013532318529366 4.0658213626289695e-05 0.01934134197526416 7.925318354622625e-05']
['59866.49192430932 0.034226590181902605 6.789851506038622e-05 0.014972862450568654 4.065249290974445e-05 0.0005295566824984512 1.4377878212431237e-06 0.014972862450568654 4.065249290974445e-05 0.01925372773133395 7.913806623352833e-05']
['59866.49195584728 0.034161556087553724 6.785353220679506e-05 0.014996379222666686 4.0652359875630045e-05 0.0005303884181706663 1.437783116123811e-06 0.014996379222666688 4.0652359875630045e-05 0.019165176864887036 7.909940705464429e-05']
['59866.49198738524 0.03418747742867962 6.789523953926844e-05 0.01506523145778989 4.06918851923407e-05 0.0005328235678512847 1.4391810382419829e-06 0.01506523145778989 4.06918851923407e-05 0.019122245970889733 7.91554993200174e-05']
['59866.49201892321 0.034298697252657134 6.794289621002368e-05 0.014998794980033368 4.065311648932779e-05 0.0005304738581098259 1.4378098758593682e-06 0.01499879498003337 4.065311648932779e-05 0.019299902272623765 7.91764676258098e-05']
['59866.492050461165 0.034198741588418326 6.787025501373822e-05 0.014968846893656964 4.0636436657377786e-05 0.0005294146612247263 1.4372199474805269e-06 0.014968846893656964 4.0636436657377786e-05 0.019229894694761364 7.910557186342145e-05']
['59866.49208199913 0.03423113264367751 6.791541998221173e-05 0.015005392760104852 4.065695588068576e-05 0.0005307072068457836 1.4379456665511649e-06 0.015005392760104853 4.065695588068576e-05 0.019225739883572658 7.915486297659944e-05']
['59866.4921135371 0.03430358159528074 6.795930714472403e-05 0.01499716614748025 4.0626779496488746e-05 0.0005304162499426485 1.4368783952823659e-06 0.01499716614748025 4.0626779496488746e-05 0.01930641544780049 7.917703353780853e-05']
['59866.492145075055 0.034169602781035535 6.785089136080432e-05 0.015026994269783042 4.065684483078351e-05 0.0005314712039665683 1.437941738964304e-06 0.015026994269783042 4.065684483078351e-05 0.019142608511252494 7.909944683782611e-05']
['59866.49217661302 0.03420308149536043 6.786722707198903e-05 0.015030036060164145 4.065685778677596e-05 0.0005315787852943465 1.4379421971888023e-06 0.015030036060164143 4.065685778677596e-05 0.01917304543519629 7.911346658777535e-05']
['59866.49220815099 0.03430894778700458 6.796359998249821e-05 0.015017060970458072 4.0660091819907757e-05 0.0005311198853690616 1.4380565777130353e-06 0.015017060970458074 4.0660091819907757e-05 0.019291886816546505 7.919781555942285e-05']
['59866.492239688945 0.03425863770342373 6.792570853293798e-05 0.015034072784135384 4.066688328408579e-05 0.0005317215551996622 1.4382967766229832e-06 0.015034072784135384 4.066688328408579e-05 0.019224564919288346 7.91687897832416e-05']
['59866.49227122691 0.034145627164016076 6.785732541205795e-05 0.015031897120171339 4.066966334993423e-05 0.0005316446068275766 1.4383951013389608e-06 0.015031897120171339 4.066966334993423e-05 0.019113730043844736 7.911155496559847e-05']
['59866.49230276487 0.034182027003754556 6.786007539119046e-05 0.014964797272782908 4.063131606896952e-05 0.000529271435184781 1.437038843712368e-06 0.01496479727278291 4.063131606896952e-05 0.019217229730971647 7.909420761088989e-05']
['59866.492334302835 0.034233579707665135 6.790651255009561e-05 0.015065480624147138 4.0695479998756436e-05 0.0005328323803084865 1.439308178510988e-06 0.015065480624147136 4.0695479998756436e-05 0.019168099083518 7.916701673705709e-05']
['59866.4923658408 0.034263922956106786 6.791179708167794e-05 0.015052398895827664 4.067304163184382e-05 0.000532369708813769 1.4385145836200873e-06 0.015052398895827665 4.067304163184382e-05 0.019211524060279123 7.916001830753137e-05']
['59866.49239737876 0.03431979782711861 6.79496920937552e-05 0.015063020680467963 4.067809625703068e-05 0.0005327453775982047 1.4386933544165241e-06 0.015063020680467963 4.067809625703068e-05 0.019256777146650646 7.919512719058157e-05']
['59866.492428916725 0.03427209811251797 6.797556866156125e-05 0.014988069615097056 4.063540676939952e-05 0.0005300945259218084 1.4371835226444e-06 0.014988069615097058 4.063540676939952e-05 0.01928402849742091 7.919541791150034e-05']
['59866.49246045469 0.03432394669222825 6.795459087697505e-05 0.01500400536364365 4.064456562416357e-05 0.0005306581377335995 1.4375074508685685e-06 0.015004005363643652 4.064456562416357e-05 0.019319941328584597 7.918211373810376e-05']
['59866.49249199265 0.03427577964301735 6.793441249899875e-05 0.014988819789753876 4.06363328176833e-05 0.0005301210579228783 1.437216274902601e-06 0.014988819789753874 4.06363328176833e-05 0.019286959853263473 7.916057065517935e-05']
['59866.492523530615 0.034354035152628914 6.797290297141496e-05 0.015003830755472984 4.063124249926029e-05 0.0005306519622328293 1.4370362417161713e-06 0.015003830755472982 4.063124249926029e-05 0.019350204397155932 7.919099320879293e-05']
['59866.49255506857 0.03429707186969563 6.79629079120415e-05 0.015105593739228249 4.071106930192805e-05 0.0005342510915413694 1.4398595373241259e-06 0.015105593739228249 4.071106930192805e-05 0.019191478130467385 7.92234057306742e-05']
['59866.49258660654 0.034248396978566575 6.789532412411196e-05 0.014963158335245334 4.062584486974116e-05 0.0005292134696268868 1.4368453396230717e-06 0.014963158335245334 4.062584486974116e-05 0.01928523864332124 7.912164248357396e-05']
['59866.492618144504 0.03422098061301374 6.792744604626195e-05 0.01506874345383746 4.0690797297125814e-05 0.0005329477793026381 1.4391425618195351e-06 0.015068743453837461 4.0690797297125814e-05 0.01915223715917628 7.918256696422268e-05']
['59866.49264968246 0.03437678431692973 6.797619944709197e-05 0.015084862478345546 4.0682214202461576e-05 0.0005335178731755895 1.4388389969433485e-06 0.015084862478345546 4.0682214202461576e-05 0.019291921838584185 7.921998639034087e-05']
['59866.49268122043 0.03428602316309697 6.792579111841414e-05 0.015002080578372339 4.066650566750384e-05 0.0005305900623801951 1.438283421168403e-06 0.01500208057837234 4.066650566750384e-05 0.01928394258472463 7.91686666697599e-05']
['59866.492712758394 0.03420270042554682 6.787748508036229e-05 0.014958195945227853 4.062344815463312e-05 0.0005290379609822574 1.4367605731660434e-06 0.014958195945227851 4.062344815463312e-05 0.01924450448031897 7.910510426519246e-05']
['59866.49274429635 0.034189565926039105 6.784061984605856e-05 0.015007595391061095 4.0658871399967086e-05 0.0005307851089801154 1.4380134141872116e-06 0.015007595391061094 4.0658871399967086e-05 0.019181970534978013 7.909167797320079e-05']
['59866.49277583432 0.034306550396031026 6.795929415590335e-05 0.014967455934116062 4.0629160875603434e-05 0.0005293654660943763 1.4369626193395833e-06 0.014967455934116063 4.0629160875603434e-05 0.019339094461914962 7.917824433279803e-05']
['59866.49280737228 0.034155251809304704 6.78533545628966e-05 0.01497239435170062 4.064136350190658e-05 0.0005295401268876283 1.4373941989606608e-06 0.01497239435170062 4.064136350190658e-05 0.019182857457604084 7.909360374096167e-05']
['59866.49283891024 0.034221737280781914 6.790228683637838e-05 0.014978954342379803 4.064189244438432e-05 0.0005297721390972347 1.4374129064739819e-06 0.014978954342379803 4.064189244438432e-05 0.019242782938402113 7.913585773257726e-05']
['59866.49287044821 0.03421668348716256 6.790677655406049e-05 0.015012892659578017 4.064668566810691e-05 0.0005309724615288606 1.4375824320848253e-06 0.015012892659578017 4.064668566810691e-05 0.01920379082758454 7.914217180343856e-05']
['59866.49290198617 0.03420943701614646 6.790880193461823e-05 0.014976995310509205 4.0646618834063335e-05 0.0005297028525181502 1.4375800683140691e-06 0.014976995310509205 4.0646618834063335e-05 0.019232441705637256 7.914387533370375e-05']
['59866.49293352413 0.03433142457812363 6.798744602217217e-05 0.015119333379164641 4.07006289239565e-05 0.0005347370318996316 1.4394902844881437e-06 0.015119333379164641 4.07006289239565e-05 0.01921209119895899 7.923909395887473e-05']
['59866.4929650621 0.03438476655614775 6.805105303958769e-05 0.015134774876534836 4.07141248696852e-05 0.0005352831631518999 1.4399676059269042e-06 0.015134774876534838 4.07141248696852e-05 0.019249991679612912 7.930060393024189e-05']
['59866.492996600056 0.03414781862953164 6.784777261533333e-05 0.014984257185746946 4.064134124802248e-05 0.0005299596888159731 1.4373934118905149e-06 0.014984257185746945 4.064134124802248e-05 0.019163561443784692 7.908880367852449e-05']
['59866.49302813802 0.034375935687750374 6.803868348091813e-05 0.01496491378758967 4.062930359811689e-05 0.0005292755560531009 1.4369676671159182e-06 0.01496491378758967 4.062930359811689e-05 0.019411021900160703 7.924646844298184e-05']
['59866.49305967598 0.034254362322654275 6.789041481473486e-05 0.015032001293897857 4.064361381306066e-05 0.000531648291219469 1.4374737874370312e-06 0.015032001293897857 4.064361381306066e-05 0.019222361028756418 7.912655538756875e-05']
['59866.493091213946 0.03421095642089242 6.78851181424965e-05 0.015023679812820118 4.0658579069669625e-05 0.0005313539790311651 1.4380030751179102e-06 0.015023679812820118 4.0658579069669625e-05 0.0191872766080723 7.912969933713437e-05']
['59866.49312275191 0.0342784027987225 6.792296118095058e-05 0.015090881823707408 4.068122456058987e-05 0.0005337307639685934 1.4388039955220657e-06 0.015090881823707408 4.068122456058987e-05 0.01918752097501509 7.917380051088909e-05']
['59866.49315428987 0.03431769082373025 6.798105952362889e-05 0.015072369223933338 4.069045884484357e-05 0.00053307601468781 1.4391305915187084e-06 0.01507236922393334 4.069045884484357e-05 0.01924532159979691 7.922839071291984e-05']
['59866.493185827836 0.03437973837632123 6.801630076673111e-05 0.014972374840716363 4.061388011463162e-05 0.0005295394368277196 1.4364221729745011e-06 0.014972374840716363 4.061388011463162e-05 0.01940736353560487 7.921934377382897e-05']
['59866.4932173658 0.0343112240922207 6.796175957122784e-05 0.015030549284202263 4.064970872637833e-05 0.0005315969368815866 1.4376893508997475e-06 0.015030549284202265 4.064970872637833e-05 0.019280674808018435 7.919090593974018e-05']
['59866.49324890376 0.034339006523350916 6.796397001606924e-05 0.015062027034578155 4.0674492925029506e-05 0.0005327102345637501 1.4385659126166157e-06 0.015062027034578155 4.0674492925029506e-05 0.01927697948877276 7.9205527553659e-05']
['59866.493280441726 0.03424025797448455 6.791588617812307e-05 0.015016451772476529 4.064723783425247e-05 0.0005310983393979318 1.4376019609673749e-06 0.015016451772476529 4.064723783425247e-05 0.019223806202008024 7.915027188149168e-05']
['59866.493311979684 0.03439021743107443 6.802881004002096e-05 0.015055956283840745 4.065692626087816e-05 0.0005324955256774973 1.4379446189647664e-06 0.015055956283840745 4.065692626087816e-05 0.019334261147233682 7.92521586358614e-05']
['59866.49334351765 0.03420164674736053 6.792453802164889e-05 0.015009473465665748 4.06606002339124e-05 0.0005308515322816322 1.438074559180141e-06 0.015009473465665746 4.06606002339124e-05 0.019192173281694785 7.916455821159152e-05']
['59866.493375055616 0.03433951861923666 6.798248331088808e-05 0.015061142594172704 4.067532114528048e-05 0.0005326789538832173 1.4385952049159294e-06 0.015061142594172705 4.067532114528048e-05 0.019278376025063958 7.922183908106955e-05']
['59866.493406593574 0.0342594300735969 6.795071373943677e-05 0.014972708846438625 4.064446991973689e-05 0.0005295512498636572 1.4375040660168838e-06 0.014972708846438625 4.064446991973689e-05 0.019286721227158275 7.917873725158338e-05']
['59866.49343813154 0.0342482810943964 6.793730939143411e-05 0.01499931391973228 4.064943056556936e-05 0.0005304922118472144 1.4376795129735873e-06 0.01499931391973228 4.064943056556936e-05 0.01924896717466412 7.916978093093656e-05']
['59866.493469669505 0.0341228392436299 6.782458319919539e-05 0.015010326098615603 4.065578639282583e-05 0.0005308816880035461 1.4379043043792105e-06 0.015010326098615603 4.065578639282583e-05 0.0191125131450143 7.907633687370489e-05']
['59866.493501207464 0.03422662943713825 6.790850638976518e-05 0.014992909351981786 4.064676418624022e-05 0.0005302656965992459 1.4375852090957226e-06 0.014992909351981784 4.064676418624022e-05 0.019233720085156468 7.91436963939681e-05']
['59866.49353274543 0.034223509106587495 6.79233186808612e-05 0.015011009440062412 4.06519519660471e-05 0.0005309058562633415 1.4377686892734867e-06 0.01501100944006241 4.06519519660471e-05 0.019212499666525086 7.915907035376065e-05']
['59866.49356428339 0.03426298222430084 6.79131846816113e-05 0.015023900756888831 4.065877007280389e-05 0.0005313617933290945 1.4380098304719023e-06 0.015023900756888831 4.065877007280389e-05 0.01923908146741201 7.915387695768146e-05']
['59866.493595821354 0.034325900065679135 6.797917024689482e-05 0.015106505010195063 4.06927453315707e-05 0.0005342833211588949 1.43921145944425e-06 0.015106505010195063 4.06927453315707e-05 0.019219395055484072 7.922794399753397e-05']
['59866.49362735932 0.03422326474514446 6.786220497916099e-05 0.01503936013591589 4.065982717670952e-05 0.0005319085570156028 1.4380472178745561e-06 0.015039360135915888 4.065982717670952e-05 0.019183904609228575 7.911068455444908e-05']
['59866.49365889728 0.034301543149984834 6.79441451645926e-05 0.015113583866777006 4.069705601845057e-05 0.0005345336844958849 1.4393639188053728e-06 0.015113583866777006 4.069705601845057e-05 0.01918795928320783 7.920010877969889e-05']
['59866.49369043524 0.03409586085610046 6.779903865594611e-05 0.014976920189952 4.062894775102073e-05 0.0005297001956719264 1.4369550815993984e-06 0.014976920189951998 4.062894775102073e-05 0.019118940666148464 7.904062903359035e-05']
['59866.49372197321 0.034265888676774964 6.790433004798526e-05 0.015061921910499074 4.0685520226368596e-05 0.0005327065165600115 1.4389559236204114e-06 0.015061921910499076 4.0685520226368596e-05 0.019203966766275886 7.916002523594824e-05']
['59866.49375351117 0.03426249882156576 6.795135873672628e-05 0.015056871474959804 4.0655825361628966e-05 0.0005325278939420467 1.4379056826186874e-06 0.015056871474959805 4.0655825361628966e-05 0.019205627346605955 7.918512038257276e-05']
['59866.49378504913 0.03428481299338905 6.794464810609871e-05 0.014990978289576507 4.0633171764736564e-05 0.0005301973992376417 1.4371044755244125e-06 0.014990978289576507 4.0633171764736564e-05 0.019293834703812542 7.916773240357569e-05']
['59866.49381658709 0.034360767292353295 6.797408942726722e-05 0.015073716504560518 4.0677372471018205e-05 0.0005331236649925984 1.4386677557228294e-06 0.015073716504560516 4.0677372471018205e-05 0.01928705078779278 7.92156895104251e-05']
['59866.49384812506 0.03428614897182988 6.795448061839299e-05 0.015073741141647796 4.068991053031701e-05 0.0005331245363513148 1.4391111988593148e-06 0.015073741141647796 4.068991053031701e-05 0.019212407830182087 7.920530446302666e-05']
['59866.49387966302 0.03426056295109854 6.791773673821947e-05 0.015080866001999992 4.0675203290383516e-05 0.0005333765267388462 1.438591036651614e-06 0.015080866001999992 4.0675203290383516e-05 0.01917969694909855 7.91662246564538e-05']
['59866.49391120098 0.03425476320784228 6.79239278633141e-05 0.01509683987993301 4.069202627191205e-05 0.0005339414871018209 1.4391860279111272e-06 0.01509683987993301 4.069202627191205e-05 0.01915792332790927 7.918018046515604e-05']
['59866.49394273895 0.03421844348851028 6.789070632116805e-05 0.015079080268318343 4.07035446394406e-05 0.0005333133693294061 1.4395934068285758e-06 0.015079080268318341 4.07035446394406e-05 0.01913936322019194 7.915760576850478e-05']
['59866.49397427691 0.03424761909188466 6.788245824289605e-05 0.015068447491430596 4.068046382468354e-05 0.0005329373117737443 1.4387770899932034e-06 0.015068447491430595 4.068046382468354e-05 0.019179171600454063 7.913866484904779e-05']
['59866.49400581487 0.0342947952087445 6.795442313986731e-05 0.015101079411015553 4.0703018843105834e-05 0.0005340914298414161 1.4395748105873005e-06 0.015101079411015553 4.0703018843105834e-05 0.019193715797728945 7.921199004705261e-05']
['59866.49403735284 0.034235077903152576 6.790094837751028e-05 0.014954800717193633 4.0638327565615894e-05 0.0005289178793545752 1.4372868246789776e-06 0.014954800717193633 4.0638327565615894e-05 0.01928027718595894 7.913287848862578e-05']
['59866.494068890795 0.03430271137069298 6.79655296926901e-05 0.015041697200090628 4.0680280777177885e-05 0.0005319912137524323 1.4387706160120156e-06 0.015041697200090628 4.0680280777177885e-05 0.019261014170602355 7.920983821797624e-05']
['59866.49410042876 0.034094371868222034 6.777813064439375e-05 0.015039545589862596 4.0691631769114454e-05 0.0005319151161072327 1.4391720752288382e-06 0.015039545589862596 4.0691631769114454e-05 0.019054826278359437 7.905494222173407e-05']
['59866.49413196673 0.03421579541431898 6.791163662484744e-05 0.014982229435035452 4.061647511244998e-05 0.0005298879718050637 1.4365139522478576e-06 0.01498222943503545 4.061647511244998e-05 0.01923356597928353 7.913083115717658e-05']
['59866.494163504685 0.03427478801882836 6.797611587247743e-05 0.014916328341152578 4.059836708862741e-05 0.0005275571973947031 1.435873511914305e-06 0.014916328341152578 4.059836708862741e-05 0.019358459677675785 7.917688892202966e-05']
['59866.49419504265 0.0342009325717102 6.787911690431638e-05 0.01494706367008887 4.060872862932384e-05 0.0005286442372897623 1.4362399764520571e-06 0.014947063670088868 4.060872862932384e-05 0.019253868901621334 7.909894659601931e-05']
['59866.49422658062 0.03422722422960952 6.790933393404773e-05 0.015064023264854757 4.068435561930212e-05 0.0005327808367673214 1.4389147340712136e-06 0.015064023264854757 4.068435561930212e-05 0.01916320096475476 7.916371913650752e-05']
['59866.494258118575 0.034348674200052574 6.799494690507555e-05 0.015156495047075974 4.074693900804244e-05 0.0005360513570422156 1.4411281686653166e-06 0.015156495047075974 4.074693900804244e-05 0.0191921791529766 7.926932472999359e-05']
['59866.49428965654 0.03414468832478217 6.785749726880846e-05 0.014962602413709508 4.0620144095635035e-05 0.0005291938079245762 1.4366437159834184e-06 0.014962602413709508 4.0620144095635035e-05 0.019182085911072663 7.90862569726024e-05']
['59866.4943211945 0.03423806852683731 6.788704663906019e-05 0.015048774014760983 4.066823504875079e-05 0.0005322415048715729 1.438344585518168e-06 0.015048774014760985 4.066823504875079e-05 0.01918929451207633 7.91363155785912e-05']
['59866.494352732465 0.03426312037335238 6.79155104512681e-05 0.015037663148850683 4.066108011430177e-05 0.0005318485383756494 1.4380915314770436e-06 0.015037663148850685 4.066108011430177e-05 0.019225457224501693 7.915705904035328e-05']
['59866.49438427043 0.03424553501195987 6.79493027898863e-05 0.015061099477064521 4.068177663707528e-05 0.0005326774289274619 1.4388235212335365e-06 0.01506109947706452 4.068177663707528e-05 0.01918443553489535 7.919668364256508e-05']
['59866.49441580839 0.03430722185174616 6.797712041803789e-05 0.01509983093601951 4.070035993365815e-05 0.0005340472740709835 1.4394807709024489e-06 0.01509983093601951 4.070035993365815e-05 0.01920739091572665 7.923009654833035e-05']
['59866.494447346355 0.03435683909347705 6.798080845415094e-05 0.015113638360266714 4.0715872828783796e-05 0.0005345356118088301 1.4400294273337628e-06 0.015113638360266714 4.0715872828783796e-05 0.019243200733210338 7.924123054502405e-05']
['59866.49447888432 0.03427227216076346 6.792416071965161e-05 0.01500072758934578 4.064316996826884e-05 0.0005305422101820783 1.4374580896386793e-06 0.015000727589345782 4.064316996826884e-05 0.019271544571417675 7.915528330148692e-05']
['59866.49451042228 0.03428732109156017 6.79631324033994e-05 0.01512156332894962 4.070109001660489e-05 0.0005348159002398819 1.4395065923046357e-06 0.015121563328949622 4.070109001660489e-05 0.01916575776261055 7.921847066575934e-05']
['59866.494541960245 0.03417194394597874 6.783734533037005e-05 0.014956739515310824 4.0624925749846006e-05 0.0005289864503110214 1.436812832406492e-06 0.014956739515310822 4.0624925749846006e-05 0.01921520443066792 7.907142349580144e-05']
['59866.4945734982 0.034305118663722385 6.795106533040764e-05 0.015090424268541078 4.068170081002229e-05 0.0005337145812649359 1.4388208394001356e-06 0.015090424268541078 4.068170081002229e-05 0.01921469439518131 7.919815692510461e-05']
['59866.49460503617 0.034147635283405815 6.787035440543379e-05 0.015009741265882063 4.06397017100967e-05 0.0005308610037767851 1.4373354250982315e-06 0.015009741265882063 4.06397017100967e-05 0.019137894017523752 7.910733444001778e-05']
['59866.494636574134 0.034318276575516275 6.800399874410369e-05 0.01508965226239487 4.069272344557971e-05 0.0005336872771328768 1.439210685385661e-06 0.015089652262394872 4.069272344557971e-05 0.019228624313121404 7.924923713580143e-05']
['59866.49466811209 0.03429584818145713 6.795764095266947e-05 0.015071831495952648 4.067523436168739e-05 0.0005330569964508843 1.4385921355741918e-06 0.015071831495952648 4.067523436168739e-05 0.019224016685504483 7.92004776136491e-05']
['59866.49469965006 0.034258872068535534 6.792829333416199e-05 0.014994898302134534 4.064166223611889e-05 0.0005303360413211067 1.4374047645221186e-06 0.014994898302134534 4.064166223611889e-05 0.019263973766401002 7.915805546251581e-05']
['59866.494731188024 0.03433759548142589 6.797842806595865e-05 0.015123744676905549 4.071845781653868e-05 0.0005348930496420572 1.4401208525735455e-06 0.015123744676905547 4.071845781653868e-05 0.019213850804520344 7.924051671509944e-05']
['59866.49476272598 0.03420616278040736 6.788026834023e-05 0.015013660097907437 4.065971424720876e-05 0.0005309996041074484 1.438043223810497e-06 0.015013660097907435 4.065971424720876e-05 0.019192502682499925 7.912612206222608e-05']
['59866.49479426395 0.03431040457037675 6.797362505153423e-05 0.014965584063681838 4.064690822124416e-05 0.0005292992622205019 1.4375903032919126e-06 0.014965584063681838 4.064690822124416e-05 0.01934482050669491 7.919965183378528e-05']
['59866.49482580191 0.03424483352931407 6.78962459530825e-05 0.015080803861403834 4.070940836621136e-05 0.0005333743289648361 1.4398007937397994e-06 0.015080803861403834 4.070940836621136e-05 0.019164029667910233 7.916537212726554e-05']
['59866.49485733987 0.03434948552526431 6.800420347138267e-05 0.014965915118004332 4.0624532146069874e-05 0.0005293109708720256 1.436798911520583e-06 0.01496591511800433 4.0624532146069874e-05 0.01938357040725998 7.921441978493739e-05']
['59866.49488887784 0.03431112337583685 6.794994482043249e-05 0.015102478001661302 4.069268518243243e-05 0.0005341408948668902 1.4392093321036547e-06 0.015102478001661304 4.069268518243243e-05 0.01920864537417554 7.920283851262135e-05']
['59866.4949204158 0.03435734163628021 6.79982611318635e-05 0.015053162351936138 4.0675498204189315e-05 0.0005323967105501017 1.4386014670938316e-06 0.015053162351936138 4.0675498204189315e-05 0.01930417928434407 7.923546977910907e-05']
['59866.49495195376 0.034238376802888236 6.789049747085207e-05 0.015015134111061392 4.0646248875641385e-05 0.0005310517366584783 1.4375669837114933e-06 0.015015134111061392 4.0646248875641385e-05 0.019223242691826844 7.912797984594546e-05']
['59866.49498349173 0.034223912867803824 6.787728940870376e-05 0.015014273692480363 4.065601993224657e-05 0.0005310213055761897 1.4379125641465925e-06 0.015014273692480363 4.065601993224657e-05 0.01920963917532346 7.912166817126746e-05']
['59866.495015029686 0.034235896569763634 6.792508496220455e-05 0.015042233270218253 4.066059972733425e-05 0.0005320101733548002 1.438074541263604e-06 0.015042233270218254 4.066059972733425e-05 0.01919366329954538 7.916502723620575e-05']
['59866.49504656765 0.03426549331028021 6.794777721442157e-05 0.014956232443479028 4.062674010307148e-05 0.0005289685163135697 1.4368770020252365e-06 0.01495623244347903 4.062674010307148e-05 0.01930926086680118 7.916711716226114e-05']
['59866.49507810561 0.034313261233795946 6.795836035097999e-05 0.015014446411314573 4.066661360591519e-05 0.0005310274142553518 1.4382872387087842e-06 0.015014446411314573 4.066661360591519e-05 0.019298814822481372 7.919666788297633e-05']
['59866.495109643576 0.034257302119849925 6.792039227258921e-05 0.015057793332309612 4.0659144080145836e-05 0.0005325604979762794 1.4380230582757298e-06 0.015057793332309612 4.0659144080145836e-05 0.019199508787540315 7.916025318171016e-05']
['59866.49514118154 0.034278560526348645 6.79336557102783e-05 0.01504718734860874 4.0665658851968735e-05 0.000532185388035758 1.4382534711954475e-06 0.015047187348608737 4.0665658851968735e-05 0.01923137317773991 7.917497955811122e-05']
['59866.4951727195 0.03416969258945523 6.786618780483594e-05 0.014953578398656117 4.061174728082797e-05 0.0005288746486796244 1.4363467394094692e-06 0.014953578398656117 4.061174728082797e-05 0.019216114190799112 7.908940171959262e-05']
['59866.495204257466 0.034293915618010706 6.79300651463831e-05 0.01505011682860099 4.0680316613930884e-05 0.0005322889971960816 1.4387718834778787e-06 0.01505011682860099 4.0680316613930884e-05 0.019243798789409718 7.917942858218612e-05']
['59866.49523579543 0.034303151496207 6.793717909863043e-05 0.014968499424069647 4.0637692554916536e-05 0.0005294023720019718 1.4372643657697067e-06 0.014968499424069647 4.0637692554916536e-05 0.019334652072137356 7.916364291811808e-05']
['59866.49526733339 0.034251409672584665 6.790713854110036e-05 0.015043835205144357 4.066737543674582e-05 0.0005320668302130227 1.4383141829626718e-06 0.015043835205144358 4.066737543674582e-05 0.019207574467440307 7.915311042374416e-05']
['59866.495298871356 0.03424408509067398 6.791277952289907e-05 0.015012875099376398 4.0657543667014945e-05 0.0005309718404637741 1.437966455240003e-06 0.015012875099376398 4.0657543667014945e-05 0.019231209991297585 7.915289937558273e-05']
['59866.495330409314 0.034263105912956185 6.792002004797641e-05 0.015003224129230797 4.064853554458096e-05 0.000530630507218373 1.4376478580814818e-06 0.015003224129230797 4.064853554458096e-05 0.01925988178372539 7.915448543978148e-05']
['59866.49536194728 0.03429349153738524 6.795933656703232e-05 0.015104428821537381 4.069841414086073e-05 0.0005342098910060813 1.439411952559795e-06 0.015104428821537383 4.069841414086073e-05 0.01918906271584786 7.921383932250847e-05']
['59866.495393485246 0.03429245155172843 6.792495282305502e-05 0.014997299473144862 4.0632623423211756e-05 0.0005304209653734406 1.4370850819101513e-06 0.014997299473144862 4.0632623423211756e-05 0.019295152078583566 7.915054833838353e-05']
['59866.495425023204 0.03432936694382223 6.797087858457471e-05 0.015066523121878905 4.068198344652638e-05 0.0005328692511234139 1.43883083562163e-06 0.015066523121878905 4.068198344652638e-05 0.019262843821943324 7.921530226353014e-05']
['59866.49545656117 0.034267553043447585 6.791368637792337e-05 0.014943001243101038 4.061721615294541e-05 0.0005285005583261927 1.4365401611940532e-06 0.014943001243101038 4.061721615294541e-05 0.01932455180034655 7.913297065985848e-05']
['59866.495488099135 0.03423403323210229 6.791517656451419e-05 0.015057464296987446 4.067686832320232e-05 0.0005325488607322851 1.4386499251412855e-06 0.015057464296987448 4.067686832320232e-05 0.019176568935114845 7.916488378297714e-05']
['59866.495519637094 0.034240559328945215 6.792690674743832e-05 0.014977458578980802 4.064215190471195e-05 0.0005297192372886465 1.4374220830059103e-06 0.014977458578980803 4.064215190471195e-05 0.019263100749964412 7.915711699980529e-05']
['59866.49555117506 0.03428058305720719 6.794497049676941e-05 0.015005105591526366 4.065045776287549e-05 0.0005306970503349465 1.4377158426466543e-06 0.015005105591526366 4.065045776287549e-05 0.01927547746568082 7.917688256137766e-05']
['59866.49558271302 0.034238638188282856 6.789667149981441e-05 0.015004435951148058 4.064673238092738e-05 0.000530673366651324 1.437584084212888e-06 0.015004435951148058 4.064673238092738e-05 0.019234202237134797 7.913352547435532e-05']
['59866.49561425098 0.03420865154132304 6.788634768056506e-05 0.01500055647959677 4.064445961614088e-05 0.0005305361584126635 1.4375037016017201e-06 0.015000556479596769 4.064445961614088e-05 0.01920809506172627 7.912350029475863e-05']
['59866.49564578895 0.03421323705324165 6.788180304673785e-05 0.015084455444566495 4.0683625437211546e-05 0.0005335034773004914 1.438888909162531e-06 0.015084455444566495 4.0683625437211546e-05 0.019128781608675153 7.913972809904918e-05']
['59866.49567732691 0.034219802515696576 6.79095638429003e-05 0.01500893127419434 4.0655123792518164e-05 0.0005308323561810152 1.4378808696871531e-06 0.01500893127419434 4.0655123792518164e-05 0.019210871241502236 7.914889735124506e-05']
['59866.49570886487 0.034258350947263476 6.79134954516924e-05 0.015082281975460564 4.06812598142579e-05 0.0005334266065556323 1.4388052423655168e-06 0.015082281975460566 4.06812598142579e-05 0.01917606897180291 7.916569815609662e-05']
['59866.49574040284 0.034281813163638576 6.797095984811419e-05 0.015082008835664249 4.068948697491524e-05 0.000533416946211468 1.439096218651345e-06 0.015082008835664247 4.068948697491524e-05 0.01919980432797433 7.92192257785681e-05']
['59866.4957719408 0.03427512742937046 6.793677070769814e-05 0.015043246360399748 4.066995391585283e-05 0.0005320460040903963 1.4384053780061252e-06 0.015043246360399746 4.066995391585283e-05 0.01923188106897071 7.917985833346726e-05']
['59866.49580347876 0.034402206169758795 6.800792257656006e-05 0.015071742191244566 4.068483596572064e-05 0.0005330538379429438 1.4389317228505257e-06 0.015071742191244566 4.068483596572064e-05 0.019330463978514227 7.924855462869328e-05']
['59866.49583501672 0.03424757404697872 6.793606578199335e-05 0.015027029311772024 4.065399560084591e-05 0.0005314724433234044 1.4378409680690656e-06 0.015027029311772026 4.065399560084591e-05 0.019220544735206697 7.917105779417707e-05']
['59866.49586655469 0.034250284002263626 6.791800829044015e-05 0.015049640353446563 4.067567020150574e-05 0.0005322721453347288 1.4386075502545221e-06 0.015049640353446565 4.067567020150574e-05 0.01920064364881706 7.916669752163443e-05']
['59866.49589809265 0.03418638635122127 6.787621475091324e-05 0.01501184338768281 4.063509690571033e-05 0.0005309353511269118 1.4371725634582178e-06 0.01501184338768281 4.063509690571033e-05 0.019174542963538464 7.910999702596735e-05']
['59866.49592963061 0.03434695550976913 6.797108336510647e-05 0.015109765648703088 4.069506589836112e-05 0.0005343986426558256 1.4392935327054655e-06 0.01510976564870309 4.069506589836112e-05 0.01923718986106604 7.9222197408922e-05']
['59866.49596116858 0.0343391553507495 6.795862472475374e-05 0.01507006625372676 4.067068234405368e-05 0.0005329945637784388 1.438431140883648e-06 0.015070066253726758 4.067068234405368e-05 0.019269089097022744 7.919898406425949e-05']
['59866.49599270654 0.03439322381140194 6.806133566655371e-05 0.015083507274740678 4.0685385347621936e-05 0.0005334699426527871 1.438951153260578e-06 0.015083507274740676 4.0685385347621936e-05 0.01930971653666126 7.929467821739228e-05']
['59866.4960242445 0.034301273539366926 6.793344704320356e-05 0.015073484548970827 4.067942122906697e-05 0.0005331154612417812 1.4387402157163095e-06 0.015073484548970825 4.067942122906697e-05 0.0192277889903961 7.918187001267151e-05']
['59866.49605578247 0.034278528635621516 6.795643022448677e-05 0.015088340525990113 4.068754432028661e-05 0.0005336408839477988 1.4390275112987077e-06 0.015088340525990113 4.068754432028661e-05 0.019190188109631405 7.92057616065323e-05']
['59866.496087320425 0.03421458699137078 6.790483186608722e-05 0.015047251547534168 4.068042815180439e-05 0.0005321876586082744 1.4387758283231923e-06 0.01504725154753417 4.068042815180439e-05 0.019167335443836614 7.91578386856014e-05']
['59866.49611885839 0.03423437590424195 6.792204557507334e-05 0.014979383956247004 4.0647950320081876e-05 0.0005297873335795871 1.437627159998849e-06 0.014979383956247004 4.0647950320081876e-05 0.019254991947994946 7.915592296427467e-05']
['59866.49615039636 0.03422615608015446 6.790863708894066e-05 0.015020118299180816 4.065268651764378e-05 0.0005312280162532574 1.4377946687218349e-06 0.015020118299180815 4.065268651764378e-05 0.019206037780973646 7.914685029980197e-05']
['59866.496181934315 0.034132573176169745 6.779624534289928e-05 0.014985024216745867 4.0643773692706456e-05 0.0005299868169881916 1.4374794420227932e-06 0.014985024216745867 4.0643773692706456e-05 0.019147548959423877 7.904585518911494e-05']
['59866.49621347228 0.03429726323034531 6.798057023363324e-05 0.015020575185769526 4.064497060298283e-05 0.0005312441753108188 1.4375217740643315e-06 0.015020575185769528 4.064497060298283e-05 0.01927668804457578 7.920461832877728e-05']
['59866.49624501025 0.03422561553945217 6.789139506078032e-05 0.015088346810449658 4.068741011907358e-05 0.000533641106215088 1.439022764901725e-06 0.015088346810449658 4.068741011907358e-05 0.019137268729002514 7.914990123491398e-05']
['59866.496276548205 0.03417616379079629 6.785305482430818e-05 0.015016476268572268 4.065755418905518e-05 0.0005310992057700925 1.4379668273810508e-06 0.01501647626857227 4.065755418905518e-05 0.019159687522224023 7.910166724934772e-05']
['59866.49630808617 0.034236766932030524 6.789549338943017e-05 0.015075358436761421 4.0686644094526524e-05 0.0005331817364650418 1.4389956723254596e-06 0.015075358436761421 4.0686644094526524e-05 0.0191614084952691 7.91530228751172e-05']
['59866.49633962413 0.03432056595520532 6.799114738416557e-05 0.014983872641891952 4.0644683958522345e-05 0.0005299460883592269 1.4375116360903768e-06 0.014983872641891953 4.0644683958522345e-05 0.01933669331331337 7.921354970397102e-05']
['59866.496371162095 0.034232819884189816 6.790548976850187e-05 0.014967372232705506 4.062383904978505e-05 0.0005293625057625466 1.4367743982539678e-06 0.014967372232705507 4.062383904978505e-05 0.01926544765148431 7.91293361519162e-05']
['59866.49640270006 0.034266557953153864 6.793895233663067e-05 0.014982373781947613 4.063962454399793e-05 0.0005298930770327504 1.4373326959057742e-06 0.014982373781947611 4.063962454399793e-05 0.019284184171206253 7.916615645385402e-05']
['59866.49643423802 0.03433408486091299 6.795390950265355e-05 0.015097979728409351 4.069337796106989e-05 0.0005339818009950177 1.4392338341357926e-06 0.015097979728409351 4.069337796106989e-05 0.019236105132503636 7.920659585272755e-05']
['59866.496465775985 0.03426172893431127 6.792688079144701e-05 0.015013212084685363 4.0664446544593514e-05 0.0005309837588810342 1.4382105945929336e-06 0.015013212084685361 4.0664446544593514e-05 0.01924851684962591 7.916854392265628e-05']
['59866.49649731395 0.034342158235277614 6.79685721481677e-05 0.015052262059429437 4.0673308925466203e-05 0.000532364869216175 1.438524037198145e-06 0.015052262059429436 4.0673308925466203e-05 0.019289896175848177 7.920886856158902e-05']
['59866.49652885191 0.03429170686965284 6.797268652670305e-05 0.015014132355636443 4.06598920643405e-05 0.0005310163068078895 1.4380495128050488e-06 0.015014132355636443 4.06598920643405e-05 0.019277574514016398 7.920551077002949e-05']
['59866.496560389875 0.03437884327181656 6.79869949895747e-05 0.015105134842773855 4.069019501728921e-05 0.0005342348613993508 1.4391212605277305e-06 0.015105134842773857 4.069019501728921e-05 0.019273708429042705 7.923334814494136e-05']
['59866.49659192783 0.03430149360114175 6.793140712944101e-05 0.015128422243636815 4.070623481121269e-05 0.0005350584847235957 1.4396885521919744e-06 0.015128422243636815 4.070623481121269e-05 0.019173071357504935 7.919389892593653e-05']
['59866.4966234658 0.034349871948775874 6.797250510335201e-05 0.015094164313628228 4.0672796994130536e-05 0.0005338468583011596 1.4385059313309016e-06 0.015094164313628228 4.0672796994130536e-05 0.019255707635147647 7.921198056702642e-05']
['59866.496655003764 0.0341030073825843 6.78297837278668e-05 0.015012195815693729 4.065990280448962e-05 0.0005309478157180277 1.4380498926601203e-06 0.015012195815693727 4.065990280448962e-05 0.019090811566890575 7.908291380974608e-05']
['59866.49668654172 0.034392444989132034 6.804170093316667e-05 0.015090229022398382 4.0683296725782844e-05 0.0005337076758452182 1.4388772833739246e-06 0.015090229022398382 4.0683296725782844e-05 0.019302215966733653 7.927675383336901e-05']
['59866.49671807969 0.03429034872167458 6.793546952682326e-05 0.015015654689923521 4.066631366640384e-05 0.0005310701483694065 1.438276630518593e-06 0.015015654689923521 4.066631366640384e-05 0.01927469403175106 7.917687217265074e-05']
['59866.49674961765 0.03413148669766966 6.782621775484066e-05 0.015007487211270073 4.064520430463083e-05 0.0005307812829026745 1.4375300395693288e-06 0.01500748721127007 4.064520430463083e-05 0.01912399948639959 7.907229886560933e-05']
['59866.49678115561 0.03410309421463454 6.780956822744492e-05 0.015012686703590152 4.065185015294844e-05 0.0005309651773258543 1.4377650883717257e-06 0.01501268670359015 4.065185015294844e-05 0.01909040751104439 7.906143474571077e-05']
['59866.49681269358 0.03421611465340283 6.791114497622926e-05 0.015000565178947312 4.0649610957954844e-05 0.0005305364660892503 1.4376858930491086e-06 0.015000565178947312 4.0649610957954844e-05 0.01921554947445552 7.914742246602545e-05']
['59866.49684423154 0.034269714069521034 6.793786619101911e-05 0.015087238210302889 4.067913127400537e-05 0.0005336018975054723 1.4387299606537923e-06 0.015087238210302889 4.067913127400537e-05 0.019182475859218145 7.91855124615392e-05']
['59866.4968757695 0.0343500755670125 6.798974351330372e-05 0.015066732424295534 4.0673434364253985e-05 0.0005328766536821267 1.4385284736877297e-06 0.015066732424295536 4.0673434364253985e-05 0.019283343142716965 7.922710070416626e-05']
['59866.49690730747 0.034247964085448564 6.791654582508354e-05 0.014996797526119866 4.065098823514315e-05 0.000530403212628952 1.4377346042652257e-06 0.014996797526119866 4.065098823514315e-05 0.019251166559328698 7.915276395240042e-05']
['59866.49693884543 0.03431106602124959 6.796129963585325e-05 0.015035471899559762 4.0675403856206634e-05 0.0005317710387853834 1.4385981302165394e-06 0.015035471899559762 4.0675403856206634e-05 0.019275594121689825 7.920370399835943e-05']
['59866.49697038339 0.03437827596022861 6.802258054457215e-05 0.015056248341300774 4.0662121856541084e-05 0.0005325058550971485 1.4381283755718912e-06 0.015056248341300775 4.0662121856541084e-05 0.019322027618927838 7.924947708230637e-05']
['59866.49700192135 0.034212123584077485 6.79147562042878e-05 0.015007042897185865 4.0658259869174136e-05 0.0005307655685064997 1.437991785709756e-06 0.015007042897185865 4.0658259869174136e-05 0.01920508068689162 7.915496324221965e-05']
['59866.497033459316 0.034234686011764534 6.791544037194868e-05 0.015018358857543096 4.067228592434237e-05 0.0005311657887346519 1.438487855934668e-06 0.015018358857543095 4.067228592434237e-05 0.01921632715422144 7.91627556571092e-05']
['59866.49706499728 0.03425751209974781 6.794229113589006e-05 0.015046283530435781 4.066466712230421e-05 0.0005321534220068953 1.4382183959335988e-06 0.015046283530435781 4.066466712230421e-05 0.019211228569312032 7.918187972612077e-05']
['59866.49709653524 0.03430633032217446 6.7984274588812e-05 0.015001357745765238 4.064987395389896e-05 0.0005305644974063177 1.4376951946278906e-06 0.015001357745765238 4.064987395389896e-05 0.01930497257640922 7.921031399909271e-05']
['59866.497128073206 0.03431161937725191 6.795434810062178e-05 0.015162563215005982 4.073057187199053e-05 0.0005362659745803428 1.4405492996415567e-06 0.015162563215005982 4.073057187199053e-05 0.01914905616224593 7.922608731219701e-05']
['59866.49715961117 0.03433498819207767 6.798288361809124e-05 0.015017278799730506 4.066730358439358e-05 0.0005311275895036078 1.4383116417055537e-06 0.015017278799730506 4.066730358439358e-05 0.019317709392347164 7.921806641073847e-05']
['59866.49719114913 0.034202903534915265 6.786533919692526e-05 0.015030640562744967 4.065296561608779e-05 0.0005316001651996464 1.4378045398100511e-06 0.015030640562744967 4.065296561608779e-05 0.019172262972170298 7.910984690730059e-05']
['59866.497222687096 0.03428917519936635 6.795462326904683e-05 0.015047998674076904 4.0661682682702065e-05 0.0005322140828043614 1.4381128429747008e-06 0.015047998674076904 4.0661682682702065e-05 0.019241176525289443 7.919092916633088e-05']
['59866.497254225054 0.03419147738168264 6.78610097978512e-05 0.015075726268018784 4.0698299160457477e-05 0.0005331947458345603 1.4394078859598982e-06 0.015075726268018784 4.0698299160457477e-05 0.019115751113663856 7.912943956163313e-05']
['59866.49728576302 0.034219234277571745 6.791492668474892e-05 0.015055696679127345 4.068482539513786e-05 0.0005324863440389667 1.4389313489926365e-06 0.015055696679127343 4.068482539513786e-05 0.0191635375984444 7.916875825745705e-05']
['59866.497317300986 0.03429614870823186 6.794926681567579e-05 0.015045592940390802 4.0661494839818e-05 0.0005321289973803823 1.4381061993916955e-06 0.0150455929403908 4.0661494839818e-05 0.01925055576784106 7.918623632549059e-05']
['59866.497348838944 0.034301438978865804 6.797679360583177e-05 0.015109160855980311 4.0700399846111855e-05 0.0005343772524888531 1.4394821825167374e-06 0.015109160855980311 4.0700399846111855e-05 0.019192278122885494 7.922983665616908e-05']
['59866.49738037691 0.034335152259304155 6.800648406891233e-05 0.015042420389705284 4.06672440157095e-05 0.000532016791352869 1.438309534894326e-06 0.015042420389705284 4.06672440157095e-05 0.019292731869598873 7.923829005757562e-05']
['59866.497411914876 0.03427496333262079 6.796031685562982e-05 0.014985488992416399 4.064655530194428e-05 0.0005300032550649458 1.4375778213250043e-06 0.014985488992416397 4.064655530194428e-05 0.019289474340204393 7.918804913010308e-05']
['59866.497443452834 0.03421325033030757 6.789871619501298e-05 0.014996811625240683 4.064207179362063e-05 0.0005304037112833456 1.437419249655648e-06 0.014996811625240683 4.064207179362063e-05 0.019216438705066882 7.913288608795166e-05']
['59866.4974749908 0.03433278879709079 6.799365059828331e-05 0.014965940080874606 4.06345520856648e-05 0.0005293118537529586 1.4371532943908085e-06 0.014965940080874608 4.06345520856648e-05 0.019366848716216183 7.921050021862024e-05']
['59866.49750652876 0.03435940035767995 6.798826417136362e-05 0.015043476842993697 4.064855279399524e-05 0.000532054155744646 1.4376484681547147e-06 0.015043476842993696 4.064855279399524e-05 0.019315923514686258 7.921306021914154e-05']
['59866.497538066724 0.03429768149165747 6.795493149472762e-05 0.015005108741159357 4.0650426500943034e-05 0.0005306971617304265 1.4377147369819696e-06 0.01500510874115936 4.0650426500943034e-05 0.01929257275049811 7.91854146239173e-05']
['59866.49756960469 0.03425631622982651 6.794199224874127e-05 0.015057593818962704 4.067696402651837e-05 0.0005325534416350853 1.43865330995369e-06 0.015057593818962703 4.067696402651837e-05 0.019198722410863803 7.918793918989614e-05']
['59866.49760114265 0.03418104784053775 6.786966477286335e-05 0.015043198711700739 4.067420017403962e-05 0.000532044318862401 1.4385555586683634e-06 0.015043198711700739 4.067420017403962e-05 0.01913784912883701 7.912447128530272e-05']
['59866.49763268061 0.034341632512434536 6.801458328257615e-05 0.015069987796629292 4.068244408088652e-05 0.0005329917889262427 1.4388471272294907e-06 0.015069987796629292 4.068244408088652e-05 0.019271644715805246 7.925304281538308e-05']
['59866.49766421858 0.03425352062594582 6.792789243348032e-05 0.015020136921585494 4.065657722465757e-05 0.0005312286748860923 1.4379322743336941e-06 0.015020136921585495 4.065657722465757e-05 0.019233383704360323 7.916537022005908e-05']
['59866.49769575654 0.034214442228890356 6.788542873905253e-05 0.015030249165319257 4.066684361187525e-05 0.0005315863223474209 1.4382953735055583e-06 0.015030249165319259 4.066684361187525e-05 0.019184193063571095 7.913421260389021e-05']
['59866.4977272945 0.034224175798188455 6.790252076499218e-05 0.014909903359114107 4.060935258330094e-05 0.0005273299601389922 1.4362620443097719e-06 0.014909903359114107 4.060935258330094e-05 0.019314272439074347 7.911935188988244e-05']
['59866.49775883246 0.03426159590833054 6.792470131046799e-05 0.015040512275215601 4.0675646629867455e-05 0.0005319493056077538 1.4386067165783555e-06 0.015040512275215601 4.0675646629867455e-05 0.019221083633114942 7.917242750398739e-05']
['59866.49779037043 0.034297957096584925 6.795003020343838e-05 0.015027240854477337 4.066465734294042e-05 0.0005314799251161211 1.438218050059357e-06 0.015027240854477337 4.066465734294042e-05 0.019270716242107588 7.918851533819122e-05']
['59866.49782190839 0.0343778824715422 6.801283872082632e-05 0.015088617185718821 4.069220966139352e-05 0.0005336506687841051 1.4391925139872355e-06 0.015088617185718821 4.069220966139352e-05 0.01928926528582338 7.92565590849864e-05']
['59866.49785344635 0.03419892435707051 6.789071973523144e-05 0.015065747045314227 4.0696126957552975e-05 0.0005328418030297503 1.4393310599977538e-06 0.015065747045314227 4.0696126957552975e-05 0.01913317731175628 7.915380329152235e-05']
['59866.49788498432 0.03418615550640895 6.786389085730254e-05 0.015018797951236484 4.0668950540661296e-05 0.0005311813184972705 1.4383698908680122e-06 0.015018797951236486 4.0668950540661296e-05 0.019167357555172466 7.911682008505288e-05']
['59866.49791652228 0.03430613242299231 6.795149177029419e-05 0.015004867509434645 4.066145456482405e-05 0.0005306886299034445 1.4381047749551688e-06 0.015004867509434644 4.066145456482405e-05 0.019301264913557666 7.918812487447604e-05']
['59866.49794806024 0.034304569998351665 6.79938316257437e-05 0.015048037782658258 4.069184050993894e-05 0.0005322154659874813 1.4391794579252918e-06 0.015048037782658256 4.069184050993894e-05 0.019256532215693407 7.924005946007545e-05']
['59866.49797959821 0.03423265396657907 6.792626314716737e-05 0.015006327681341287 4.0659350433307106e-05 0.0005307402729204903 1.4380303565258718e-06 0.015006327681341287 4.0659350433307106e-05 0.01922632628523778 7.9165396498702e-05']
['59866.498011136166 0.034309402044813225 6.795787667240066e-05 0.015100498547538758 4.0688894201438475e-05 0.0005340708859983954 1.4390752535782423e-06 0.015100498547538758 4.0688894201438475e-05 0.019208903497274468 7.920769604752478e-05']
['59866.49804267413 0.0343042565459705 6.797084724608692e-05 0.015069044686229133 4.069456114125405e-05 0.0005329584332191168 1.439275680574654e-06 0.015069044686229133 4.069456114125405e-05 0.01923521185974137 7.922173553911922e-05']
['59866.4980742121 0.0343801818492739 6.800057157997271e-05 0.015047512840849191 4.066886233784857e-05 0.0005321968999688706 1.4383667713316478e-06 0.015047512840849191 4.066886233784857e-05 0.019332669008424706 7.923404633778254e-05']
['59866.498105750055 0.03426671832749023 6.791864840505424e-05 0.01505620725122291 4.067716311193254e-05 0.0005325044018329254 1.4386603511598596e-06 0.015056207251222909 4.067716311193254e-05 0.019210511076267322 7.91680137429514e-05']
['59866.49813728802 0.03429679395131827 6.797168036666277e-05 0.015010750186836862 4.066191413820813e-05 0.0005308966870561507 1.4381210290386778e-06 0.015010750186836862 4.066191413820813e-05 0.01928604376448141 7.920568535939058e-05']
['59866.49816882599 0.03424308913075792 6.792666146821923e-05 0.014988832625944915 4.0641708879013025e-05 0.0005301215119102682 1.4374064141770434e-06 0.014988832625944915 4.0641708879013025e-05 0.019254256504813008 7.915667905378866e-05']
['59866.498200363945 0.03434927324323866 6.800843714647191e-05 0.015102415297924315 4.07038116043133e-05 0.0005341386771758475 1.4396028487794917e-06 0.015102415297924313 4.07038116043133e-05 0.019246857945314347 7.92587395952336e-05']
['59866.49823190191 0.03423154946198715 6.788562479250165e-05 0.015014033697979386 4.067708048156351e-05 0.0005310128175070462 1.438657428708375e-06 0.015014033697979384 4.067708048156351e-05 0.019217515764007764 7.913964196262142e-05']
['59866.49826343987 0.034216813266710965 6.790358030132535e-05 0.015036845038539866 4.066634597481859e-05 0.0005318196036423247 1.4382777731950177e-06 0.015036845038539866 4.066634597481859e-05 0.0191799682281711 7.914952882160566e-05']
['59866.498294977835 0.034255342964735945 6.794065751081662e-05 0.015048810798074125 4.0675153608633e-05 0.0005322428058151528 1.4385892795191305e-06 0.015048810798074127 4.0675153608633e-05 0.019206532166661818 7.918586404206229e-05']
['59866.4983265158 0.034378423912766236 6.802467831727207e-05 0.015051508516789871 4.0680423796796935e-05 0.0005323382180970822 1.4387756742963113e-06 0.015051508516789871 4.0680423796796935e-05 0.019326915395976363 7.926066956855302e-05']
['59866.49835805376 0.03438824068230928 6.801427896945954e-05 0.015104240810034822 4.0707932750951416e-05 0.0005342032414594167 1.4397486045258612e-06 0.015104240810034822 4.0707932750951416e-05 0.019283999872274457 7.926586864843815e-05']
['59866.498389591725 0.03423169302619163 6.791825811394357e-05 0.014953890745131366 4.061525588694448e-05 0.0005288856956764007 1.436470830966537e-06 0.014953890745131367 4.061525588694448e-05 0.019277802281060265 7.91358881670904e-05']
['59866.49842112969 0.034270334324227235 6.793536204664626e-05 0.015118269469837308 4.072465681325182e-05 0.0005346994038044212 1.440340097233347e-06 0.015118269469837308 4.072465681325182e-05 0.019152064854389927 7.920676163665602e-05']
['59866.49845266765 0.03429183768618336 6.796631952452848e-05 0.015001505104153302 4.065216123875018e-05 0.000530569709143177 1.4377760907812974e-06 0.015001505104153302 4.065216123875018e-05 0.019290332582030056 7.919607820524728e-05']
['59866.498484205615 0.034220743769786933 6.790520450907104e-05 0.015034833171182828 4.066667749905109e-05 0.0005317484483901651 1.4382894984662083e-06 0.015034833171182826 4.066667749905109e-05 0.019185910598604108 7.915109259025166e-05']
['59866.49851574357 0.03437843736149321 6.802263388255553e-05 0.014986105671192188 4.064521713535726e-05 0.0005300250656150495 1.4375304933634476e-06 0.014986105671192186 4.064521713535726e-05 0.019392331690301023 7.924085055260658e-05']
['59866.49854728154 0.03429180174210777 6.794268628964827e-05 0.015006084412057981 4.0621438767722346e-05 0.0005307316690296146 1.4366895056417247e-06 0.015006084412057981 4.0621438767722346e-05 0.019285717330049787 7.916002720952902e-05']
['59866.498578819504 0.03416042324981479 6.784630085181525e-05 0.014987505502856017 4.0639460435503304e-05 0.0005300745745325595 1.4373268917550801e-06 0.014987505502856017 4.0639460435503304e-05 0.01917291774695877 7.908657461139573e-05']
['59866.49861035746 0.034339459172032426 6.796656075463276e-05 0.015079651771820359 4.068946757233321e-05 0.0005333335821310374 1.4390955324253806e-06 0.01507965177182036 4.068946757233321e-05 0.019259807400212065 7.921544137435038e-05']
['59866.49864189543 0.03427959492980503 6.795336512783124e-05 0.014973522483011743 4.063130714328118e-05 0.0005295800263708777 1.4370385280307193e-06 0.014973522483011745 4.063130714328118e-05 0.019306072446793283 7.917425687916498e-05']
['59866.498673433394 0.03437096208457391 6.799754150782356e-05 0.015091717476102717 4.069215032387453e-05 0.0005337603191262423 1.4391904153518005e-06 0.015091717476102719 4.069215032387453e-05 0.01927924460847119 7.924340192778823e-05']
['59866.49870497135 0.034228885601512604 6.791910842317143e-05 0.015043035990927987 4.0682281200987904e-05 0.0005320385637923282 1.438841366531492e-06 0.015043035990927985 4.0682281200987904e-05 0.01918584961058462 7.917103821925521e-05']
['59866.49873650932 0.03431471694768432 6.798597377486503e-05 0.015019904357073864 4.065822811195649e-05 0.0005312204495990671 1.437990662527941e-06 0.015019904357073864 4.065822811195649e-05 0.019294812590610458 7.921605988258016e-05']
['59866.49876804728 0.034251027956236364 6.793865309173558e-05 0.01500558412460735 4.065072328776499e-05 0.0005307139749805624 1.4377252336685828e-06 0.015005584124607348 4.065072328776499e-05 0.019245443831629017 7.917159773389465e-05']
['59866.49879958524 0.03428142546518351 6.795474510488863e-05 0.015020151710499766 4.0663005511589435e-05 0.0005312291979369388 1.4381596284760985e-06 0.015020151710499766 4.0663005511589435e-05 0.01926127375468374 7.919171294716347e-05']
['59866.49883112321 0.034221935625325856 6.792455448166543e-05 0.014945181064890508 4.059895816137548e-05 0.0005285776537512712 1.4358944168364342e-06 0.014945181064890508 4.059895816137548e-05 0.019276754560435348 7.9132929336161e-05']
['59866.49886266117 0.034219726029277336 6.790218427101484e-05 0.01502051734050557 4.065356187546647e-05 0.0005312421294531092 1.4378256281717137e-06 0.01502051734050557 4.065356187546647e-05 0.019199208688771764 7.914176344975664e-05']
['59866.49889419913 0.03424757957206635 6.790611898503435e-05 0.015044773383614643 4.0681948439366404e-05 0.0005321000114888112 1.438829597496618e-06 0.015044773383614643 4.0681948439366404e-05 0.01920280618845171 7.915972413060134e-05']
['59866.4989257371 0.03439068287427541 6.80479375043642e-05 0.015008293345846729 4.06602569527835e-05 0.0005308097940810462 1.4380624180937999e-06 0.01500829334584673 4.06602569527835e-05 0.019382389528428676 7.927028632510567e-05']
['59866.49895727506 0.03435429950878449 6.800339148094989e-05 0.015012305964024444 4.064975458730294e-05 0.0005309517114183181 1.4376909728981578e-06 0.015012305964024445 4.064975458730294e-05 0.019341993544760044 7.922666092244002e-05']
['59866.49898881302 0.03413040475940063 6.781748146323345e-05 0.015085308808731613 4.0687727562927886e-05 0.000533533658883855 1.4390339921814065e-06 0.015085308808731615 4.0687727562927886e-05 0.019045095950669014 7.908667375892765e-05']
['59866.49902035098 0.03430524765436161 6.795221631689262e-05 0.015072045978353503 4.067239580586885e-05 0.0005330645822140626 1.4384917421986887e-06 0.015072045978353503 4.067239580586885e-05 0.01923320167600811 7.919436522232516e-05']
['59866.499051888946 0.034374973285727924 6.80148275990838e-05 0.015039218828645118 4.065540123057121e-05 0.0005319035592932388 1.4378906820510518e-06 0.015039218828645118 4.065540123057121e-05 0.019335754457082806 7.923937419333789e-05']
['59866.49908342691 0.034296368456139086 6.794728853406966e-05 0.01504406402502278 4.067486695163491e-05 0.0005320749230607401 1.4385791411017485e-06 0.01504406402502278 4.067486695163491e-05 0.019252304431116307 7.919140622987646e-05']
['59866.49911496487 0.03424204412141384 6.79251463989832e-05 0.015067648007036577 4.066928039553376e-05 0.0005329090357974704 1.4383815570976688e-06 0.015067648007036577 4.066928039553376e-05 0.01917439611437726 7.916953884679288e-05']
['59866.499146502836 0.034223368882648306 6.79028230342027e-05 0.015040744349242798 4.066742404185998e-05 0.0005319575135474409 1.4383159020169336e-06 0.015040744349242798 4.066742404185998e-05 0.01918262453340551 7.914943306312876e-05']
['59866.4991780408 0.03414709572756094 6.785347015063576e-05 0.014965156124251656 4.063380077641977e-05 0.0005292841269592447 1.4371267222618892e-06 0.014965156124251656 4.063380077641977e-05 0.01918193960330928 7.90898171512679e-05']
['59866.49920957876 0.034356876775362685 6.801610844541539e-05 0.014989543884777435 4.063379502778611e-05 0.0005301466675456045 1.437126518945564e-06 0.014989543884777435 4.063379502778611e-05 0.019367332890585252 7.92293904205923e-05']
['59866.499241116726 0.03425510839754469 6.791418972816685e-05 0.014994971658710025 4.064526322919344e-05 0.0005303386357792395 1.4375321235994198e-06 0.014994971658710025 4.064526322919344e-05 0.019260136738834664 7.914780217671156e-05']
['59866.499272654684 0.034234033642745014 6.788116183530512e-05 0.014985838786118562 4.065887402863646e-05 0.0005300156264864484 1.4380135071573728e-06 0.014985838786118564 4.065887402863646e-05 0.01924819485662645 7.912645682316006e-05']
['59866.49930419265 0.03416642913807334 6.783438049513218e-05 0.01503366519427514 4.0658150437644244e-05 0.000531707139657215 1.4379879153611087e-06 0.01503366519427514 4.0658150437644244e-05 0.019132763943798203 7.908595560634315e-05']
['59866.499335730616 0.03426720388719417 6.793598345898212e-05 0.014978848127589055 4.063176179115971e-05 0.0005297683825174621 1.4370546079101049e-06 0.014978848127589055 4.063176179115971e-05 0.019288355759605115 7.915957247732354e-05']
['59866.499367268574 0.03428166336787625 6.795451604015799e-05 0.014971566115893396 4.064331027226762e-05 0.0005295108340381249 1.4374630518775553e-06 0.014971566115893396 4.064331027226762e-05 0.01931009725198285 7.918140514123188e-05']
['59866.49939880654 0.03429806058519214 6.798260352452678e-05 0.015057710011684792 4.068474919540602e-05 0.0005325575511119902 1.4389286539784179e-06 0.01505771001168479 4.068474919540602e-05 0.019240350573507353 7.922678334418287e-05']
['59866.499430344506 0.03422816756808273 6.790866974779302e-05 0.015000462633016692 4.063812341793313e-05 0.0005305328392688609 1.4372796044316816e-06 0.015000462633016692 4.063812341793313e-05 0.019227704935066037 7.913939917541694e-05']
['59866.499461882464 0.03428673796623817 6.798086111114534e-05 0.015031607925702286 4.0672462697848446e-05 0.0005316343786655179 1.4384941080185124e-06 0.015031607925702288 4.0672462697848446e-05 0.019255130040535882 7.921897941352631e-05']
['59866.49949342043 0.034366754146179374 6.802253647468876e-05 0.015025684655355538 4.066480399781365e-05 0.0005314248858310835 1.4382232369144687e-06 0.015025684655355536 4.066480399781365e-05 0.019341069490823835 7.925081546981686e-05']
['59866.49952495839 0.03423866483368468 6.789780410683657e-05 0.015004472566496145 4.064873588258887e-05 0.0005306746616543553 1.4376549435890923e-06 0.015004472566496145 4.064873588258887e-05 0.019234192267188532 7.913552635436768e-05']
['59866.499556496354 0.03427902908742691 6.794931207823669e-05 0.01501246478117024 4.0670605803878574e-05 0.0005309573284258295 1.4384284338287118e-06 0.015012464781170241 4.0670605803878574e-05 0.019266564306256666 7.919095395536085e-05']
['59866.49958803432 0.03428696820562626 6.793857921135722e-05 0.01503236151230808 4.064589503225572e-05 0.0005316610313395979 1.4375544690617357e-06 0.015032361512308082 4.064589503225572e-05 0.019254606693318178 7.9169055370334e-05']
['59866.49961957228 0.034241693518142255 6.792390246063317e-05 0.015004730706352746 4.0648524623541245e-05 0.0005306837914841746 1.4376474718287141e-06 0.015004730706352746 4.0648524623541245e-05 0.019236962811789507 7.915781123522964e-05']
['59866.49965111024 0.034358657039614375 6.800441479826822e-05 0.015035209980558331 4.0670342777958275e-05 0.0005317617752956574 1.438419131189739e-06 0.015035209980558331 4.0670342777958275e-05 0.019323447059056045 7.923810455665598e-05']
['59866.49968264821 0.03430704611303784 6.79757710344425e-05 0.015018170325411738 4.066012262229602e-05 0.0005311591207745103 1.4380576671246688e-06 0.015018170325411737 4.066012262229602e-05 0.0192888757876261 7.920827620512328e-05']
['59866.49971418617 0.03428254981621363 6.794535835664542e-05 0.015064616494739662 4.0668748839553074e-05 0.0005328018179825597 1.43836275715059e-06 0.01506461649473966 4.0668748839553074e-05 0.019217933321473965 7.918660779694768e-05']
['59866.49974572413 0.034353336648935015 6.798781241733413e-05 0.015077061783474524 4.06807852384124e-05 0.0005332419800315284 1.438788457678476e-06 0.015077061783474524 4.06807852384124e-05 0.01927627486546049 7.92292176214586e-05']
['59866.49977726209 0.03431645704913321 6.799135492698249e-05 0.014984682770233718 4.0643186179698506e-05 0.0005299747407881449 1.4374586630007162e-06 0.014984682770233718 4.0643186179698506e-05 0.019331774278899497 7.921295934154047e-05']
['59866.49980880006 0.034155546337449195 6.783503244852606e-05 0.01496340454174394 4.0602614827438224e-05 0.0005292221774005033 1.436023744942906e-06 0.01496340454174394 4.0602614827438224e-05 0.019192141795705255 7.905797845959565e-05']
['59866.49984033802 0.03424134850945396 6.794531505069253e-05 0.015041969361531456 4.065679974186532e-05 0.0005320008394943494 1.4379401442700355e-06 0.015041969361531456 4.065679974186532e-05 0.019199379147922507 7.918043446829528e-05']
['59866.49987187598 0.03421380272313199 6.787285756314508e-05 0.014980747853025733 4.0644066966064644e-05 0.0005298355715605208 1.437489814446045e-06 0.01498074785302573 4.0644066966064644e-05 0.019233054870106264 7.911172462618249e-05']
['59866.49990341395 0.03435286051633143 6.801794617363573e-05 0.014981679593397355 4.065358295228672e-05 0.000529868525135148 1.437826373611742e-06 0.014981679593397357 4.065358295228672e-05 0.01937118092293407 7.924111816814592e-05']
['59866.49993495191 0.034217857179661165 6.789065433809939e-05 0.015015438610367431 4.066512517650442e-05 0.000531062506118417 1.4382345962869692e-06 0.015015438610367431 4.066512517650442e-05 0.019202418569293736 7.913781240390757e-05']
['59866.49996648987 0.03434094558166147 6.798436691046667e-05 0.015046823316698875 4.065372405440543e-05 0.0005321725130406697 1.437831364078336e-06 0.015046823316698875 4.065372405440543e-05 0.01929412226496259 7.921236913329065e-05']
['59866.49999802784 0.03435722382116685 6.796977092595083e-05 0.015033094342757132 4.065044366231713e-05 0.0005316869499148012 1.437715343941418e-06 0.015033094342757134 4.065044366231713e-05 0.019324129478409717 7.91981586254974e-05']
['59866.500029565796 0.03431129973802836 6.797874985847554e-05 0.01501194459622281 4.0654157988322424e-05 0.0005309389306467838 1.437846711351195e-06 0.01501194459622281 4.0654157988322424e-05 0.019299355141805547 7.920777104590603e-05']
['59866.50006110376 0.034270275304124305 6.79170893796974e-05 0.015077895024633312 4.0690544723629164e-05 0.0005332714499091303 1.439133628859427e-06 0.01507789502463331 4.0690544723629164e-05 0.019192380279490995 7.917355277941916e-05']
['59866.50009264173 0.03427564761466228 6.792572471085694e-05 0.015014160661267673 4.066944437051215e-05 0.0005310173079148067 1.438387356526192e-06 0.015014160661267671 4.066944437051215e-05 0.019261486953394608 7.917011925531819e-05']
['59866.500124179685 0.0342384135821975 6.791547505012183e-05 0.01508900313464628 4.070389761155702e-05 0.0005336643189351243 1.4396058906634872e-06 0.01508900313464628 4.070389761155702e-05 0.01914941044755122 7.917903151754154e-05']
['59866.50015571765 0.034251455434258754 6.794301020625236e-05 0.015049795839706873 4.067997313095434e-05 0.0005322776445362646 1.4387597352526376e-06 0.015049795839706873 4.067997313095434e-05 0.019201659594551883 7.919035831350985e-05']
['59866.50018725562 0.03422525628627809 6.791320091179516e-05 0.01504525891940938 4.066060826163035e-05 0.0005321171838047625 1.438074843102584e-06 0.015045258919409383 4.066060826163035e-05 0.019179997366868706 7.915483511631881e-05']
['59866.500218793575 0.03423235908830752 6.788772543505728e-05 0.0150254369942089 4.065579781949506e-05 0.000531416126609817 1.4379047085149642e-06 0.015025436994208899 4.065579781949506e-05 0.01920692209409862 7.913050714538219e-05']
['59866.50025033154 0.03435201912303012 6.800426149366038e-05 0.01511839726492959 4.0707422894712746e-05 0.0005347039236312301 1.439730572050161e-06 0.01511839726492959 4.0707422894712746e-05 0.019233621858100527 7.925701142502865e-05']
['59866.5002818695 0.03430604172145164 6.795399872915948e-05 0.015022946975067675 4.066405389155963e-05 0.0005313280601976572 1.4381967073326528e-06 0.015022946975067676 4.066405389155963e-05 0.019283094746383962 7.919161080681636e-05']
['59866.500313407465 0.034231799438759265 6.791680406015554e-05 0.015025032230160149 4.066670360629153e-05 0.0005314018110100071 1.4382904218209563e-06 0.01502503223016015 4.066670360629153e-05 0.019206767208599117 7.916105769851438e-05']
['59866.50034494543 0.03445709335543251 6.808315330007622e-05 0.015076204093711871 4.0680591506984964e-05 0.0005332116454614472 1.4387816058308518e-06 0.015076204093711871 4.0680591506984964e-05 0.01938088926172064 7.931094683989e-05']
['59866.50037648339 0.03423043990064632 6.789796114967037e-05 0.015040086984883483 4.068061670120357e-05 0.0005319342640391748 1.438782496894058e-06 0.015040086984883483 4.068061670120357e-05 0.01919035291576284 7.915204168859064e-05']
['59866.500408021355 0.03422485231744407 6.794380269017516e-05 0.014991134682980965 4.064104251568093e-05 0.0005302029305228387 1.4373828463952216e-06 0.014991134682980967 4.064104251568093e-05 0.019233717634463104 7.917104685908125e-05']
['59866.50043955932 0.03420522062070825 6.785732403696649e-05 0.015022597176293073 4.064606011928167e-05 0.0005313156885967537 1.4375603078208958e-06 0.015022597176293073 4.064606011928167e-05 0.019182623444415178 7.909942242948509e-05']
['59866.50047109728 0.03422025028270089 6.789790663351284e-05 0.015012592089907639 4.0657809236724506e-05 0.000530961831051353 1.4379758478471168e-06 0.015012592089907639 4.0657809236724506e-05 0.019207658192793253 7.914027531632114e-05']
['59866.500502635245 0.034301399543522994 6.798696249283796e-05 0.0150269207184481 4.0675388052667906e-05 0.000531468602620229 1.4385975712806934e-06 0.0150269207184481 4.0675388052667906e-05 0.019274478825074895 7.92257171771747e-05']
['59866.5005341732 0.03419291093048354 6.788967823437632e-05 0.01494071275226352 4.061248199283781e-05 0.0005284196195197457 1.4363727245312725e-06 0.014940712752263522 4.061248199283781e-05 0.019252198178220013 7.910993682455905e-05']
['59866.50056571117 0.034265795682474225 6.794179615515829e-05 0.014992802451246992 4.063245597970203e-05 0.0005302619157591653 1.4370791598074264e-06 0.01499280245124699 4.063245597970203e-05 0.019272993231227234 7.916491737967964e-05']
['59866.500597249134 0.03432935065498015 6.796674708919539e-05 0.015000664745725653 4.064679261766947e-05 0.0005305399875436816 1.4375862146518348e-06 0.015000664745725655 4.064679261766947e-05 0.019328685909254493 7.919368952126475e-05']
['59866.50062878709 0.03428433285709944 6.793246186787406e-05 0.014998303536965057 4.0655509296286835e-05 0.0005304564768668103 1.4378945040939008e-06 0.014998303536965057 4.0655509296286835e-05 0.019286029320134384 7.916874264234989e-05']
['59866.50066032506 0.03426867992731429 6.791132863592375e-05 0.015064023097980203 4.0677559117963235e-05 0.0005327808308653414 1.4386743570081437e-06 0.015064023097980205 4.0677559117963235e-05 0.019204656829334088 7.916193765245916e-05']
['59866.500691863024 0.034140454759140085 6.78283237032663e-05 0.014976942786378502 4.063907434237963e-05 0.0005297009948570317 1.4373132365041633e-06 0.0149769427863785 4.063907434237963e-05 0.019163511972761584 7.907095459016879e-05']
['59866.50072340098 0.034351959110463355 6.80164937685121e-05 0.015075412608283816 4.067220760831474e-05 0.0005331836523907227 1.4384850860717968e-06 0.015075412608283816 4.067220760831474e-05 0.01927654650217954 7.924942836573587e-05']
['59866.50075493895 0.0342169899746478 6.789166987026237e-05 0.015021837053208056 4.06554641232649e-05 0.0005312888047420117 1.4378929064250707e-06 0.015021837053208054 4.06554641232649e-05 0.01919515292143975 7.913371974607772e-05']
['59866.50078647691 0.03429448068003066 6.79423421758656e-05 0.014985707233481695 4.064908716645723e-05 0.0005300109737636853 1.437667367714443e-06 0.014985707233481697 4.064908716645723e-05 0.019308773446548962 7.917392340795448e-05']
['59866.50081801487 0.03416415068576137 6.786723926647238e-05 0.014977155344000482 4.064285503892048e-05 0.0005297085125450828 1.4374469512914536e-06 0.01497715534400048 4.064285503892048e-05 0.01918699534176089 7.910628187045144e-05']
['59866.50084955284 0.03431367713560941 6.795620175910302e-05 0.015085013098221951 4.067916118917638e-05 0.0005335232002640024 1.4387310186865343e-06 0.015085013098221953 4.067916118917638e-05 0.01922866403738746 7.920125953909389e-05']
['59866.5008810908 0.03434261888602695 6.801739713023261e-05 0.01510399168869655 4.0692096845488595e-05 0.0005341944305944355 1.439188523940807e-06 0.015103991688696552 4.0692096845488595e-05 0.0192386271973304 7.926041293138964e-05']
['59866.50091262876 0.03421104353810319 6.789667576015469e-05 0.01495701005088851 4.061277306931718e-05 0.0005289960185497928 1.4363830192558303e-06 0.01495701005088851 4.061277306931718e-05 0.019254033487214682 7.911609138259696e-05']
['59866.50094416673 0.03429596017286587 6.796068467483615e-05 0.015006785918765442 4.0641037823421776e-05 0.0005307564797540823 1.4373826804405019e-06 0.015006785918765444 4.0641037823421776e-05 0.019289174254100424 7.918553287588149e-05']
['59866.50097570469 0.03419370997528191 6.788413018544367e-05 0.014971973378758757 4.064368127834616e-05 0.0005295252380154938 1.4374761735334034e-06 0.014971973378758758 4.064368127834616e-05 0.019221736596523147 7.91211979111164e-05']
['59866.50100724265 0.03429915275979019 6.794194898072432e-05 0.015092711736950077 4.069362379704246e-05 0.0005337954839103712 1.4392425288047313e-06 0.015092711736950077 4.069362379704246e-05 0.01920644102284011 7.919646108908256e-05']
['59866.50103878061 0.034232677982657875 6.789592989283674e-05 0.015038147562037885 4.066163913052767e-05 0.0005318656709874809 1.4381113026316259e-06 0.015038147562037885 4.066163913052767e-05 0.01919453042061999 7.914054708424918e-05']
['59866.501070318576 0.03442366191735788 6.804441840408619e-05 0.015031549524977143 4.064830049139161e-05 0.0005316323131623875 1.4376395447754873e-06 0.015031549524977143 4.064830049139161e-05 0.019392112392380735 7.926113302741016e-05']
['59866.50110185654 0.03429478543515794 6.797002152052295e-05 0.01507257863452286 4.0669176537820407e-05 0.0005330834210723563 1.438377883882456e-06 0.01507257863452286 4.0669176537820407e-05 0.019222206800635078 7.920799041614903e-05']
['59866.5011333945 0.03438936210359629 6.80449203469185e-05 0.015101446184389003 4.069534765772014e-05 0.0005341044017959449 1.439303497904299e-06 0.015101446184389005 4.069534765772014e-05 0.019287915919207286 7.92857017752961e-05']
['59866.501164932466 0.034217986623353 6.792222028695017e-05 0.01503510261508452 4.066600262820549e-05 0.0005317579780187964 1.4382656297926469e-06 0.01503510261508452 4.066600262820549e-05 0.01918288400826848 7.916534455471158e-05']
['59866.50119647043 0.034230503175817904 6.791156047988854e-05 0.015036936733546639 4.0665429470424675e-05 0.000531822846689788 1.4382453584828717e-06 0.015036936733546639 4.0665429470424675e-05 0.019193566442271263 7.91559043964987e-05']
['59866.50122800839 0.034274529117953166 6.793020998694681e-05 0.015037803753819029 4.066852563050744e-05 0.0005318535112591461 1.4383548627454885e-06 0.015037803753819029 4.066852563050744e-05 0.019236725364134136 7.917349560193695e-05']
['59866.501259546356 0.03431960262018072 6.79747243972388e-05 0.015103427142926264 4.0700710312302954e-05 0.000534174463872226 1.4394931630120654e-06 0.015103427142926264 4.0700710312302954e-05 0.019216175477254453 7.922822083580179e-05']
['59866.501291084314 0.03409708561621268 6.779374107906779e-05 0.015020558676966785 4.065977569138091e-05 0.0005312435914313607 1.4380453969535462e-06 0.015020558676966785 4.065977569138091e-05 0.019076526939245893 7.905193665413323e-05']
['59866.50132262228 0.03424025917911477 6.790427225136141e-05 0.015134937419477964 4.0708017829015476e-05 0.0005352889119325362 1.4397516135468486e-06 0.015134937419477966 4.0708017829015476e-05 0.0191053217596368 7.917154100782966e-05']
['59866.501354160246 0.03430091996783615 6.792454636552663e-05 0.015104338493424433 4.0717793664568666e-05 0.0005342066963025978 1.4400973630026585e-06 0.015104338493424433 4.0717793664568666e-05 0.019196581474411716 7.919395633426181e-05']
['59866.501385698204 0.03430031060639919 6.794957809380504e-05 0.015117111808980963 4.073174882144471e-05 0.0005346584599271521 1.4405909257134241e-06 0.015117111808980963 4.073174882144471e-05 0.019183198797418227 7.922260110081827e-05']
['59866.50141723617 0.034325137885634564 6.79192659857327e-05 0.015148039538687699 4.0750356776455684e-05 0.0005357523046074714 1.4412490474958302e-06 0.015148039538687699 4.0750356776455684e-05 0.019177098346946864 7.920617570271358e-05']
['59866.501448774135 0.03428770035714699 6.795995166095912e-05 0.01504556763579846 4.068183967551684e-05 0.0005321281024135037 1.4388257507623317e-06 0.015045567635798462 4.068183967551684e-05 0.019242132721348528 7.920585274551595e-05']
['59866.501480312094 0.03421097399453243 6.790200262142421e-05 0.015006294734442184 4.06521604233213e-05 0.000530739107662301 1.4377760619414004e-06 0.015006294734442182 4.06521604233213e-05 0.019204679260090243 7.914088770719817e-05']
['59866.50151185006 0.034297771698815344 6.797030587138063e-05 0.015125969590533415 4.072609492253602e-05 0.0005349717398646855 1.440390959944744e-06 0.015125969590533413 4.072609492253602e-05 0.01917180210828193 7.923747401254318e-05']
['59866.50154338802 0.03425411077331118 6.791183770828858e-05 0.015046892969024372 4.067135755031437e-05 0.0005321749764877587 1.4384550214200916e-06 0.015046892969024372 4.067135755031437e-05 0.01920721780428681 7.915918788051353e-05']
['59866.501574925984 0.03430403800001532 6.797058024368473e-05 0.015096315860016004 4.0693065607039785e-05 0.000533922953688472 1.439222786871818e-06 0.015096315860016002 4.0693065607039785e-05 0.01920772213999932 7.922073823918853e-05']
['59866.50160646395 0.03431858611684263 6.79525259347194e-05 0.015047996160086627 4.068225473943763e-05 0.0005322139938901437 1.4388404306455967e-06 0.015047996160086627 4.068225473943763e-05 0.019270589956756005 7.919969464330787e-05']
['59866.50163800191 0.034242983953602965 6.794146294031121e-05 0.014983310823017066 4.064918543852243e-05 0.0005299262180812135 1.437670843377764e-06 0.014983310823017066 4.064918543852243e-05 0.0192596731305859 7.917321935657957e-05']
['59866.50166953987 0.0342801291305537 6.793526063576696e-05 0.015033571097259255 4.068323728964334e-05 0.0005317038116560576 1.4388751812505023e-06 0.015033571097259254 4.068323728964334e-05 0.019246558033294447 7.918538649280569e-05']
['59866.50170107784 0.0342820094034295 6.794514247632126e-05 0.015068057743704693 4.0691090771749255e-05 0.0005329235272677141 1.439152941361089e-06 0.015068057743704694 4.0691090771749255e-05 0.019213951659724806 7.919789930498367e-05']
['59866.5017326158 0.03426711595251702 6.791010233231477e-05 0.014963371883409939 4.065015395833037e-05 0.0005292210223482168 1.4377050977588566e-06 0.014963371883409939 4.065015395833037e-05 0.01930374406910708 7.914680673041349e-05']
['59866.50176415376 0.034227413890008246 6.790229224896329e-05 0.015080037789483008 4.0713274271677453e-05 0.0005333472347130666 1.4399375221763448e-06 0.01508003778948301 4.0713274271677453e-05 0.019147376100525235 7.917254571241506e-05']
['59866.50179569172 0.034230009545288424 6.788977438820975e-05 0.01501161009077948 4.066122866364833e-05 0.0005309270999368288 1.438096785335443e-06 0.015011610090779478 4.066122866364833e-05 0.01921839945450895 7.913505533529068e-05']
['59866.50182722969 0.03429689092492368 6.794747217788457e-05 0.014966920462651426 4.063445046957262e-05 0.0005293465276653803 1.4371497004567266e-06 0.014966920462651426 4.063445046957262e-05 0.019329970462272257 7.917081242685683e-05']
['59866.50185876765 0.034326932491998696 6.797727649719376e-05 0.015013909981470126 4.0671482968277714e-05 0.0005310084419306039 1.4384594571731622e-06 0.015013909981470126 4.0671482968277714e-05 0.01931302251052857 7.921540031341655e-05']
['59866.50189030561 0.034267612836284246 6.792845327277189e-05 0.01498365395939242 4.066343269682659e-05 0.000529938354047945 1.438174737063234e-06 0.014983653959392417 4.066343269682659e-05 0.019283958876891827 7.916937237796255e-05']
['59866.50192184358 0.03421570373933434 6.791565793441789e-05 0.015040217171510207 4.0689058164504805e-05 0.000531938868449212 1.4390810525854626e-06 0.015040217171510205 4.0689058164504805e-05 0.019175486567824133 7.917156084718372e-05']
['59866.50195338154 0.03429195483511688 6.796093785710474e-05 0.015064307038014283 4.069152873555014e-05 0.0005327908731897782 1.4391684311619348e-06 0.015064307038014283 4.069152873555014e-05 0.019227647797102593 7.921167581394398e-05']
['59866.5019849195 0.034205255838852845 6.787319735571899e-05 0.015126482630709589 4.071382534169502e-05 0.0005349898849491395 1.4399570122912973e-06 0.015126482630709587 4.071382534169502e-05 0.01907877320814326 7.914787737673339e-05']
['59866.50201645747 0.034210079863414 6.789317470412852e-05 0.01503659483072352 4.068297395852283e-05 0.0005318107543510421 1.4388658678172801e-06 0.01503659483072352 4.068297395852283e-05 0.01917348503269048 7.914914744654653e-05']
['59866.502047995426 0.034232227268151505 6.791342209547267e-05 0.015065244577266513 4.0701713004196986e-05 0.0005328240318578526 1.439528625983473e-06 0.015065244577266513 4.0701713004196986e-05 0.019166982690884994 7.91761475584273e-05']
['59866.50207953339 0.03433789380488746 6.798084056106996e-05 0.015093110673624423 4.070649661971474e-05 0.0005338095934089718 1.4396978117735843e-06 0.015093110673624422 4.070649661971474e-05 0.019244783131263037 7.923644079866576e-05']
['59866.50211107136 0.034230366145320816 6.789988538079237e-05 0.015039233268294013 4.06846094887476e-05 0.0005319040699913496 1.4389237128661354e-06 0.015039233268294015 4.06846094887476e-05 0.0191911328770268 7.915574447869614e-05']
['59866.502142609315 0.034398440652205466 6.803446586669046e-05 0.015037921387301556 4.065564742297487e-05 0.0005318576716925278 1.4378993893261617e-06 0.015037921387301558 4.065564742297487e-05 0.019360519264903907 7.925635755664723e-05']
['59866.50217414728 0.03434048103547116 6.800037324158572e-05 0.015026726030517657 4.0665160711577656e-05 0.0005314617169432311 1.4382358530830933e-06 0.015026726030517657 4.0665160711577656e-05 0.019313755004953505 7.923197622610083e-05']
['59866.50220568524 0.03432689543622096 6.795864565532173e-05 0.015051482121344932 4.068400120436885e-05 0.0005323372845491851 1.4389021992070946e-06 0.015051482121344934 4.068400120436885e-05 0.019275413314876026 7.920584241899499e-05']
['59866.502237223205 0.03428003017039177 6.794763130472958e-05 0.015071799655945559 4.070711566718362e-05 0.0005330558703409918 1.4397197060990688e-06 0.015071799655945559 4.070711566718362e-05 0.019208230514446215 7.920826892354696e-05']
['59866.50226876117 0.03420054533527641 6.790174486245466e-05 0.014992968626620648 4.065530548794293e-05 0.0005302677930107514 1.4378872958482616e-06 0.014992968626620647 4.065530548794293e-05 0.019207576708655763 7.914228212329899e-05']
['59866.50230029913 0.03428786940839649 6.79599880023323e-05 0.015023987426598887 4.0684409100229765e-05 0.0005313648586430438 1.4389166255721017e-06 0.015023987426598887 4.0684409100229765e-05 0.0192638819817976 7.920720366931286e-05']
['59866.502331837095 0.03434482466837935 6.798878829632717e-05 0.015087105912819154 4.071028960797995e-05 0.0005335972184391401 1.439831961291695e-06 0.015087105912819155 4.071028960797995e-05 0.01925771875556019 7.924520814515155e-05']
['59866.50236337506 0.034317657055877464 6.797277111190807e-05 0.015084647134710267 4.070759940099522e-05 0.0005335102569524743 1.4397368146829039e-06 0.015084647134710265 4.070759940099522e-05 0.0192330099211672 7.923008432170036e-05']
['59866.50239491302 0.0343147475951013 6.796826677562072e-05 0.015073540190101254 4.06986420565977e-05 0.0005331174291442138 1.4394200134300503e-06 0.015073540190101252 4.06986420565977e-05 0.01924120740500005 7.922161796967423e-05']
['59866.502426450985 0.03422836522302183 6.793012405577207e-05 0.014977769805067551 4.064899614579008e-05 0.0005297302446597854 1.4376641485168652e-06 0.014977769805067551 4.064899614579008e-05 0.019250595417954278 7.916339205651208e-05']
['59866.50245798894 0.03435399530417589 6.799043767038064e-05 0.015032829311725532 4.065539310614879e-05 0.000531677576359523 1.4378903947083878e-06 0.015032829311725532 4.065539310614879e-05 0.01932116599245036 7.92184360059286e-05']
['59866.50248952691 0.03420174038879636 6.787768494934105e-05 0.015002676215323533 4.066320509443041e-05 0.0005306111287279886 1.4381666872751424e-06 0.015002676215323533 4.066320509443041e-05 0.019199064173472825 7.912569976078386e-05']
['59866.502521064875 0.034312890972805675 6.795887946446104e-05 0.015074116350583403 4.0696344619419405e-05 0.0005331378066528245 1.4393387582115237e-06 0.015074116350583403 4.0696344619419405e-05 0.019238774622222274 7.921238390206227e-05']
['59866.50255260283 0.03440296304262639 6.804465311015174e-05 0.015045534495062475 4.066693788300558e-05 0.000532126930299737 1.4382987076647546e-06 0.015045534495062476 4.066693788300558e-05 0.019357428547563914 7.927089411417736e-05']
['59866.5025841408 0.03418165818363303 6.786603430633488e-05 0.015011458508756214 4.066215095181994e-05 0.0005309217388194319 1.43812940460688e-06 0.015011458508756216 4.066215095181994e-05 0.019170199674876813 7.91151637329862e-05']
['59866.502615678764 0.03428678667096624 6.794898983945703e-05 0.014978861409957873 4.064870554436006e-05 0.0005297688522851628 1.4376538705937413e-06 0.014978861409957875 4.064870554436006e-05 0.019307925261008364 7.917943219444505e-05']
In [10]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_nrca1_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Pipeline Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Error Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6)) #ppm

axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Pipeline Calculated Net Aperture Sum MAD (ppm): 3559.246003797116
Pipeline Calculated Net Aperture Sum std (ppm): 3669.1742182405533
Median Relative Error Net Aperture Sum (ppm): 4121.894390818671
Pipeline Calculated Aperture Background std (ppm): 2375.067850016911
Median Relative Errors Aperture Background (ppm): 2708.9566503550573
Pipeline Calculated Annulus Mean std (ppm): 2375.067850016917
Median Relative Errors Annulus Mean (ppm): 2708.956650355057
Pipeline Calculated Annulus Sum std (ppm): 2375.067850016905
Median Relative Errors Annulus Sum (ppm): 2708.956650355057
Out[10]:
<matplotlib.legend.Legend at 0x7fc7c9d0f490>

$\textbf{External method: tshirt}$¶

From: https://tshirt.readthedocs.io/en/latest/phot_pipeline/phot_pipeline.html

The Time Series Helper & Integration Reduction Tool (tshirt) is a general-purpose tool for time series science. Its main application is transiting exoplanet science. tshirt can:

Reduce raw data: flat field, bias subtract, gain correct, etc. Extract Spectroscopy and in our interest extract photometry. This photometric pipeline will take image data that have been reduced (using the external HAWAII-xRG method) and calculate lightcurves on the stars/sources in the field. Therefore, we can use this external method and bypass stage2 & 3 of the JWST Science Calibration Pipeline.

NOTE: yaml file values used in tshirt are pulled from jwst pipeline header information as well as the jwst pipeline stage 3 results. [e.g. refStarPos in yaml is pulled from the stage3 results: xcenter,ycenter values]. Currently, tshirt is using the adjusted centered positions. tshirt is also utlizing the colrow background subtraction method for comparison with the pipelines mean method.

In [11]:
#read in yaml parameter file, a file required to run tshirt

with open("/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_NRCA1_phot_pipeline.yaml", "r") as stream:
    paramfile = yaml.safe_load(stream)

paramfile
Out[11]:
{'procFiles': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/splintegrate/jw01185001001_01101_00001-seg*.fits',
 'excludeList': None,
 'srcName': 'HD189733b_WLP4_NRCA1',
 'srcNameShort': 'NRCA1_HD189733b',
 'nightName': 'NRCA1_HD189733b_2022_10_14',
 'refStarPos': [[1982.2, 30.2]],
 'refPhotCentering': None,
 'copyCentroidFile': None,
 'srcGeometry': 'Circular',
 'bkgSub': True,
 'bkgGeometry': 'CircularAnnulus',
 'bkgMethod': 'colrow',
 'apRadius': 3,
 'apHeight': None,
 'apWidth': None,
 'backStart': 4,
 'backEnd': 5,
 'backHeight': None,
 'backWidth': None,
 'backOffset': [0.0, 0.0],
 'boxFindSize': 5,
 'jdRef': 2457551,
 'timingMethod': 'JWSTint',
 'scaleAperture': False,
 'apScale': 2.5,
 'apRange': [2, 17],
 'isCube': False,
 'cubePlane': 0,
 'doCentering': True,
 'FITSextension': 0,
 'HEADextension': 0,
 'isSlope': True,
 'subpixelMethod': 'exact',
 'readNoise': 16.2,
 'detectorGain': 2.05,
 'dateFormat': 'Two Part',
 'diagnosticMode': False,
 'bkgOrderX': 0,
 'bkgOrderY': 0,
 'backsub_directions': ['X'],
 'saturationVal': None,
 'satNPix': 5,
 'nanReplaceValue': '22e3'}
In [12]:
#Assignimg a object phot
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_NRCA1_phot_pipeline.yaml") #create a photometric object
phot.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20), xLim = [1900,2048]) #Plot the source and background subtraction area
In [13]:
phot.get_allimg_cen(recenter=True, useMultiprocessing=True) #recenter the centroids each time. 
phot.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|                                                  | 0/7350 [00:00<?, ?it/s]2022-02-22 21:41:19,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                        | 1/7350 [00:00<1:18:13,  1.57it/s]2022-02-22 21:41:19,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                          | 4/7350 [00:00<18:42,  6.54it/s]2022-02-22 21:41:19,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:19,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 11/7350 [00:01<08:57, 13.66it/s]2022-02-22 21:41:20,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 13/7350 [00:01<09:22, 13.04it/s]2022-02-22 21:41:20,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 21/7350 [00:01<06:18, 19.35it/s]2022-02-22 21:41:20,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 24/7350 [00:01<06:24, 19.07it/s]2022-02-22 21:41:20,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:20,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 31/7350 [00:02<06:56, 17.59it/s]2022-02-22 21:41:21,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 35/7350 [00:02<05:59, 20.34it/s]2022-02-22 21:41:21,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▏                                        | 38/7350 [00:02<05:35, 21.81it/s]2022-02-22 21:41:21,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▏                                        | 41/7350 [00:02<05:46, 21.10it/s]2022-02-22 21:41:21,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▏                                        | 44/7350 [00:02<05:34, 21.87it/s]2022-02-22 21:41:21,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 50/7350 [00:02<05:09, 23.61it/s]2022-02-22 21:41:21,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:21,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 53/7350 [00:02<05:19, 22.85it/s]2022-02-22 21:41:22,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 56/7350 [00:03<07:06, 17.12it/s]2022-02-22 21:41:22,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 63/7350 [00:03<04:48, 25.24it/s]2022-02-22 21:41:22,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 67/7350 [00:03<05:07, 23.72it/s]2022-02-22 21:41:22,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 70/7350 [00:03<05:10, 23.45it/s]2022-02-22 21:41:22,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:22,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 74/7350 [00:03<05:33, 21.85it/s]2022-02-22 21:41:23,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 77/7350 [00:04<05:23, 22.46it/s]2022-02-22 21:41:23,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 80/7350 [00:04<06:27, 18.75it/s]2022-02-22 21:41:23,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 84/7350 [00:04<05:37, 21.52it/s]2022-02-22 21:41:23,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 88/7350 [00:04<05:13, 23.20it/s]2022-02-22 21:41:23,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 92/7350 [00:04<04:38, 26.04it/s]2022-02-22 21:41:23,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 95/7350 [00:04<05:14, 23.03it/s]2022-02-22 21:41:23,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:23,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 98/7350 [00:04<05:09, 23.42it/s]2022-02-22 21:41:24,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                       | 102/7350 [00:05<04:45, 25.39it/s]2022-02-22 21:41:24,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                       | 105/7350 [00:05<06:15, 19.31it/s]2022-02-22 21:41:24,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▌                                       | 111/7350 [00:05<04:31, 26.63it/s]2022-02-22 21:41:24,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:24,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 118/7350 [00:06<06:13, 19.37it/s]2022-02-22 21:41:25,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 123/7350 [00:06<05:04, 23.70it/s]2022-02-22 21:41:25,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 127/7350 [00:06<06:11, 19.42it/s]2022-02-22 21:41:25,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 130/7350 [00:06<06:11, 19.43it/s]2022-02-22 21:41:25,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 135/7350 [00:06<05:22, 22.34it/s]2022-02-22 21:41:25,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:25,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 138/7350 [00:06<05:48, 20.68it/s]2022-02-22 21:41:26,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 141/7350 [00:07<05:38, 21.32it/s]2022-02-22 21:41:26,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 145/7350 [00:07<05:07, 23.43it/s]2022-02-22 21:41:26,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 148/7350 [00:07<05:08, 23.32it/s]2022-02-22 21:41:26,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 151/7350 [00:07<05:41, 21.09it/s]2022-02-22 21:41:26,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 154/7350 [00:07<05:20, 22.46it/s]2022-02-22 21:41:26,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 158/7350 [00:07<05:34, 21.51it/s]2022-02-22 21:41:26,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:26,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 161/7350 [00:07<06:00, 19.91it/s]2022-02-22 21:41:27,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 166/7350 [00:08<04:40, 25.60it/s]2022-02-22 21:41:27,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 169/7350 [00:08<05:31, 21.64it/s]2022-02-22 21:41:27,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 172/7350 [00:08<05:26, 22.00it/s]2022-02-22 21:41:27,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 177/7350 [00:08<04:47, 24.94it/s]2022-02-22 21:41:27,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 180/7350 [00:08<05:48, 20.56it/s]2022-02-22 21:41:27,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:27,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 183/7350 [00:08<05:30, 21.67it/s]2022-02-22 21:41:28,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 187/7350 [00:09<04:41, 25.48it/s]2022-02-22 21:41:28,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 190/7350 [00:09<05:09, 23.11it/s]2022-02-22 21:41:28,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 193/7350 [00:09<05:06, 23.37it/s]2022-02-22 21:41:28,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 196/7350 [00:09<05:17, 22.53it/s]2022-02-22 21:41:28,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 199/7350 [00:09<05:41, 20.92it/s]2022-02-22 21:41:28,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 202/7350 [00:09<06:00, 19.80it/s]2022-02-22 21:41:28,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:28,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 208/7350 [00:09<04:22, 27.17it/s]2022-02-22 21:41:28,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 211/7350 [00:10<05:21, 22.22it/s]2022-02-22 21:41:29,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 214/7350 [00:10<05:07, 23.24it/s]2022-02-22 21:41:29,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 218/7350 [00:10<04:59, 23.80it/s]2022-02-22 21:41:29,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 221/7350 [00:10<04:45, 24.97it/s]2022-02-22 21:41:29,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 224/7350 [00:10<05:13, 22.75it/s]2022-02-22 21:41:29,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 227/7350 [00:10<05:26, 21.85it/s]2022-02-22 21:41:29,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:29,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 231/7350 [00:11<05:43, 20.75it/s]2022-02-22 21:41:30,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 234/7350 [00:11<06:28, 18.31it/s]2022-02-22 21:41:30,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 241/7350 [00:11<04:35, 25.78it/s]2022-02-22 21:41:30,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 244/7350 [00:11<04:54, 24.11it/s]2022-02-22 21:41:30,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 247/7350 [00:11<05:42, 20.73it/s]2022-02-22 21:41:30,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:30,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 252/7350 [00:11<04:31, 26.12it/s]2022-02-22 21:41:30,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▍                                      | 255/7350 [00:12<04:55, 24.02it/s]2022-02-22 21:41:31,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 258/7350 [00:12<06:03, 19.50it/s]2022-02-22 21:41:31,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 263/7350 [00:12<05:32, 21.29it/s]2022-02-22 21:41:31,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 267/7350 [00:12<05:26, 21.71it/s]2022-02-22 21:41:31,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 271/7350 [00:12<05:21, 22.00it/s]2022-02-22 21:41:31,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:31,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 274/7350 [00:13<06:05, 19.38it/s]2022-02-22 21:41:32,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 280/7350 [00:13<04:42, 25.01it/s]2022-02-22 21:41:32,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 284/7350 [00:13<05:10, 22.73it/s]2022-02-22 21:41:32,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 287/7350 [00:13<05:07, 22.96it/s]2022-02-22 21:41:32,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 290/7350 [00:13<05:06, 23.01it/s]2022-02-22 21:41:32,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 294/7350 [00:13<04:58, 23.64it/s]2022-02-22 21:41:32,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:32,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 297/7350 [00:13<05:09, 22.80it/s]2022-02-22 21:41:33,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 301/7350 [00:14<04:31, 25.92it/s]2022-02-22 21:41:33,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 304/7350 [00:14<05:29, 21.40it/s]2022-02-22 21:41:33,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 309/7350 [00:14<04:34, 25.64it/s]2022-02-22 21:41:33,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 313/7350 [00:14<04:06, 28.52it/s]2022-02-22 21:41:33,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 317/7350 [00:14<04:57, 23.64it/s]2022-02-22 21:41:33,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 320/7350 [00:14<04:56, 23.71it/s]2022-02-22 21:41:33,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:33,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                      | 324/7350 [00:15<05:48, 20.17it/s]2022-02-22 21:41:34,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                      | 328/7350 [00:15<05:11, 22.56it/s]2022-02-22 21:41:34,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 332/7350 [00:15<04:29, 26.03it/s]2022-02-22 21:41:34,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 335/7350 [00:15<05:07, 22.84it/s]2022-02-22 21:41:34,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 338/7350 [00:15<05:16, 22.19it/s]2022-02-22 21:41:34,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 341/7350 [00:15<05:05, 22.95it/s]2022-02-22 21:41:34,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:34,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 345/7350 [00:15<04:51, 24.04it/s]2022-02-22 21:41:35,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 348/7350 [00:16<05:51, 19.95it/s]2022-02-22 21:41:35,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 353/7350 [00:16<04:51, 23.98it/s]2022-02-22 21:41:35,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 356/7350 [00:16<05:13, 22.31it/s]2022-02-22 21:41:35,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 360/7350 [00:16<04:40, 24.89it/s]2022-02-22 21:41:35,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 364/7350 [00:16<04:38, 25.07it/s]2022-02-22 21:41:35,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:35,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 367/7350 [00:16<05:47, 20.07it/s]2022-02-22 21:41:36,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 373/7350 [00:17<04:30, 25.82it/s]2022-02-22 21:41:36,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 376/7350 [00:17<05:13, 22.23it/s]2022-02-22 21:41:36,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 380/7350 [00:17<04:40, 24.81it/s]2022-02-22 21:41:36,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 383/7350 [00:17<04:35, 25.28it/s]2022-02-22 21:41:36,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 386/7350 [00:17<04:37, 25.10it/s]2022-02-22 21:41:36,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 389/7350 [00:17<05:03, 22.97it/s]2022-02-22 21:41:36,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:36,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 392/7350 [00:17<04:55, 23.53it/s]2022-02-22 21:41:37,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 396/7350 [00:18<04:27, 25.95it/s]2022-02-22 21:41:37,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 399/7350 [00:18<05:34, 20.77it/s]2022-02-22 21:41:37,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 403/7350 [00:18<04:48, 24.05it/s]2022-02-22 21:41:37,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▏                                     | 406/7350 [00:18<05:03, 22.89it/s]2022-02-22 21:41:37,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▏                                     | 409/7350 [00:18<05:22, 21.53it/s]2022-02-22 21:41:37,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:37,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▏                                     | 412/7350 [00:18<06:32, 17.69it/s]2022-02-22 21:41:38,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 419/7350 [00:19<04:45, 24.32it/s]2022-02-22 21:41:38,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 422/7350 [00:19<04:52, 23.70it/s]2022-02-22 21:41:38,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 426/7350 [00:19<04:39, 24.76it/s]2022-02-22 21:41:38,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 429/7350 [00:19<05:02, 22.88it/s]2022-02-22 21:41:38,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 432/7350 [00:19<05:30, 20.91it/s]2022-02-22 21:41:38,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 436/7350 [00:19<04:50, 23.81it/s]2022-02-22 21:41:38,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:38,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 440/7350 [00:20<05:05, 22.60it/s]2022-02-22 21:41:39,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 443/7350 [00:20<05:32, 20.79it/s]2022-02-22 21:41:39,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 447/7350 [00:20<04:47, 24.05it/s]2022-02-22 21:41:39,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 450/7350 [00:20<04:50, 23.78it/s]2022-02-22 21:41:39,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 453/7350 [00:20<05:45, 19.95it/s]2022-02-22 21:41:39,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 458/7350 [00:20<04:45, 24.16it/s]2022-02-22 21:41:39,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:39,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 461/7350 [00:20<04:47, 23.98it/s]2022-02-22 21:41:40,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 464/7350 [00:21<06:09, 18.66it/s]2022-02-22 21:41:40,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 468/7350 [00:21<05:08, 22.33it/s]2022-02-22 21:41:40,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 472/7350 [00:21<04:24, 26.00it/s]2022-02-22 21:41:40,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 475/7350 [00:21<05:46, 19.82it/s]2022-02-22 21:41:40,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:40,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▌                                     | 482/7350 [00:21<04:36, 24.84it/s]2022-02-22 21:41:40,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 485/7350 [00:22<05:03, 22.60it/s]2022-02-22 21:41:41,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 488/7350 [00:22<05:16, 21.68it/s]2022-02-22 21:41:41,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 492/7350 [00:22<04:47, 23.86it/s]2022-02-22 21:41:41,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 495/7350 [00:22<04:54, 23.31it/s]2022-02-22 21:41:41,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 498/7350 [00:22<06:02, 18.89it/s]2022-02-22 21:41:41,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:41,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 504/7350 [00:23<05:23, 21.18it/s]2022-02-22 21:41:42,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 507/7350 [00:23<05:24, 21.07it/s]2022-02-22 21:41:42,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 512/7350 [00:23<04:53, 23.32it/s]2022-02-22 21:41:42,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 516/7350 [00:23<04:51, 23.44it/s]2022-02-22 21:41:42,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 519/7350 [00:23<04:56, 23.04it/s]2022-02-22 21:41:42,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 523/7350 [00:23<04:31, 25.18it/s]2022-02-22 21:41:42,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 526/7350 [00:23<04:45, 23.94it/s]2022-02-22 21:41:42,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:42,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 529/7350 [00:24<05:02, 22.53it/s]2022-02-22 21:41:43,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 532/7350 [00:24<05:12, 21.84it/s]2022-02-22 21:41:43,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 536/7350 [00:24<05:20, 21.23it/s]2022-02-22 21:41:43,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 539/7350 [00:24<05:00, 22.64it/s]2022-02-22 21:41:43,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 542/7350 [00:24<06:09, 18.43it/s]2022-02-22 21:41:43,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:43,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 548/7350 [00:24<05:06, 22.20it/s]2022-02-22 21:41:43,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 551/7350 [00:25<04:56, 22.94it/s]2022-02-22 21:41:44,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 554/7350 [00:25<05:18, 21.33it/s]2022-02-22 21:41:44,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 558/7350 [00:25<04:31, 25.00it/s]2022-02-22 21:41:44,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 561/7350 [00:25<04:30, 25.06it/s]2022-02-22 21:41:44,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 564/7350 [00:25<05:30, 20.52it/s]2022-02-22 21:41:44,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 567/7350 [00:25<05:08, 22.01it/s]2022-02-22 21:41:44,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:44,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 573/7350 [00:25<04:31, 24.94it/s]2022-02-22 21:41:45,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 576/7350 [00:26<04:38, 24.35it/s]2022-02-22 21:41:45,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 579/7350 [00:26<05:50, 19.30it/s]2022-02-22 21:41:45,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 584/7350 [00:26<04:38, 24.29it/s]2022-02-22 21:41:45,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 588/7350 [00:26<05:21, 21.03it/s]2022-02-22 21:41:45,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:45,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 591/7350 [00:26<05:04, 22.22it/s]2022-02-22 21:41:45,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 595/7350 [00:27<05:28, 20.58it/s]2022-02-22 21:41:46,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 599/7350 [00:27<04:55, 22.83it/s]2022-02-22 21:41:46,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 602/7350 [00:27<04:54, 22.94it/s]2022-02-22 21:41:46,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 606/7350 [00:27<04:20, 25.87it/s]2022-02-22 21:41:46,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 609/7350 [00:27<05:55, 18.94it/s]2022-02-22 21:41:46,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 614/7350 [00:27<04:39, 24.13it/s]2022-02-22 21:41:46,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:46,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 617/7350 [00:27<04:41, 23.91it/s]2022-02-22 21:41:47,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 620/7350 [00:28<05:08, 21.84it/s]2022-02-22 21:41:47,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▍                                    | 623/7350 [00:28<05:30, 20.38it/s]2022-02-22 21:41:47,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 626/7350 [00:28<05:26, 20.57it/s]2022-02-22 21:41:47,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 631/7350 [00:28<04:16, 26.21it/s]2022-02-22 21:41:47,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 634/7350 [00:28<04:35, 24.41it/s]2022-02-22 21:41:47,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 637/7350 [00:28<04:38, 24.14it/s]2022-02-22 21:41:47,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:47,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 640/7350 [00:28<04:39, 24.02it/s]2022-02-22 21:41:48,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 643/7350 [00:29<04:40, 23.94it/s]2022-02-22 21:41:48,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 646/7350 [00:29<06:23, 17.47it/s]2022-02-22 21:41:48,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 651/7350 [00:29<04:48, 23.19it/s]2022-02-22 21:41:48,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 655/7350 [00:29<04:45, 23.45it/s]2022-02-22 21:41:48,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:48,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 658/7350 [00:29<05:47, 19.26it/s]2022-02-22 21:41:49,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 664/7350 [00:30<04:49, 23.10it/s]2022-02-22 21:41:49,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 667/7350 [00:30<05:12, 21.42it/s]2022-02-22 21:41:49,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 670/7350 [00:30<05:22, 20.74it/s]2022-02-22 21:41:49,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 676/7350 [00:30<04:21, 25.49it/s]2022-02-22 21:41:49,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 679/7350 [00:30<04:24, 25.22it/s]2022-02-22 21:41:49,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 682/7350 [00:30<04:58, 22.32it/s]2022-02-22 21:41:49,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:49,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 686/7350 [00:31<04:36, 24.14it/s]2022-02-22 21:41:50,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 689/7350 [00:31<04:29, 24.76it/s]2022-02-22 21:41:50,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▊                                    | 692/7350 [00:31<05:14, 21.14it/s]2022-02-22 21:41:50,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▊                                    | 696/7350 [00:31<05:34, 19.91it/s]2022-02-22 21:41:50,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 699/7350 [00:31<05:47, 19.16it/s]2022-02-22 21:41:50,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:50,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 704/7350 [00:31<05:00, 22.10it/s]2022-02-22 21:41:51,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 709/7350 [00:32<04:31, 24.48it/s]2022-02-22 21:41:51,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 712/7350 [00:32<04:42, 23.50it/s]2022-02-22 21:41:51,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 715/7350 [00:32<05:41, 19.44it/s]2022-02-22 21:41:51,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 721/7350 [00:32<04:47, 23.04it/s]2022-02-22 21:41:51,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 725/7350 [00:32<05:00, 22.06it/s]2022-02-22 21:41:51,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:51,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 730/7350 [00:33<04:30, 24.47it/s]2022-02-22 21:41:52,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 734/7350 [00:33<05:15, 20.96it/s]2022-02-22 21:41:52,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 740/7350 [00:33<04:16, 25.78it/s]2022-02-22 21:41:52,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 744/7350 [00:33<04:57, 22.17it/s]2022-02-22 21:41:52,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 747/7350 [00:33<05:07, 21.44it/s]2022-02-22 21:41:52,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:52,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 752/7350 [00:33<04:26, 24.78it/s]2022-02-22 21:41:53,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 755/7350 [00:34<04:43, 23.25it/s]2022-02-22 21:41:53,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 758/7350 [00:34<04:53, 22.47it/s]2022-02-22 21:41:53,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 762/7350 [00:34<04:18, 25.52it/s]2022-02-22 21:41:53,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 765/7350 [00:34<04:34, 23.99it/s]2022-02-22 21:41:53,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 769/7350 [00:34<05:31, 19.86it/s]2022-02-22 21:41:53,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 772/7350 [00:34<05:06, 21.46it/s]2022-02-22 21:41:53,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:53,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 775/7350 [00:35<05:10, 21.20it/s]2022-02-22 21:41:54,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 779/7350 [00:35<05:08, 21.30it/s]2022-02-22 21:41:54,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 785/7350 [00:35<03:56, 27.71it/s]2022-02-22 21:41:54,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 788/7350 [00:35<04:06, 26.60it/s]2022-02-22 21:41:54,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 791/7350 [00:35<05:05, 21.46it/s]2022-02-22 21:41:54,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 794/7350 [00:35<04:43, 23.16it/s]2022-02-22 21:41:54,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 798/7350 [00:35<04:06, 26.62it/s]2022-02-22 21:41:54,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:54,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 801/7350 [00:36<05:45, 18.96it/s]2022-02-22 21:41:55,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 807/7350 [00:36<04:07, 26.49it/s]2022-02-22 21:41:55,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 811/7350 [00:36<05:12, 20.93it/s]2022-02-22 21:41:55,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 817/7350 [00:36<03:57, 27.56it/s]2022-02-22 21:41:55,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:55,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 821/7350 [00:37<05:31, 19.70it/s]2022-02-22 21:41:56,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 824/7350 [00:37<05:21, 20.28it/s]2022-02-22 21:41:56,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 829/7350 [00:37<05:33, 19.56it/s]2022-02-22 21:41:56,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 836/7350 [00:37<04:20, 25.03it/s]2022-02-22 21:41:56,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 839/7350 [00:37<05:20, 20.32it/s]2022-02-22 21:41:56,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:56,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▌                                   | 846/7350 [00:38<03:54, 27.78it/s]2022-02-22 21:41:57,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 850/7350 [00:38<04:51, 22.27it/s]2022-02-22 21:41:57,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 854/7350 [00:38<04:21, 24.84it/s]2022-02-22 21:41:57,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 858/7350 [00:38<05:41, 19.00it/s]2022-02-22 21:41:57,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:57,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 866/7350 [00:38<04:03, 26.63it/s]2022-02-22 21:41:58,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 870/7350 [00:39<05:14, 20.62it/s]2022-02-22 21:41:58,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 877/7350 [00:39<04:25, 24.39it/s]2022-02-22 21:41:58,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 880/7350 [00:39<05:16, 20.42it/s]2022-02-22 21:41:58,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:58,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 887/7350 [00:39<04:54, 21.92it/s]2022-02-22 21:41:58,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 890/7350 [00:40<05:03, 21.27it/s]2022-02-22 21:41:59,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 897/7350 [00:40<04:31, 23.80it/s]2022-02-22 21:41:59,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 900/7350 [00:40<04:25, 24.29it/s]2022-02-22 21:41:59,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 907/7350 [00:40<05:04, 21.16it/s]2022-02-22 21:41:59,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:41:59,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 916/7350 [00:40<03:29, 30.72it/s]2022-02-22 21:42:00,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 921/7350 [00:41<04:50, 22.11it/s]2022-02-22 21:42:00,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 927/7350 [00:41<04:31, 23.63it/s]2022-02-22 21:42:00,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 931/7350 [00:41<04:33, 23.49it/s]2022-02-22 21:42:00,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:00,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 936/7350 [00:41<03:58, 26.88it/s]2022-02-22 21:42:01,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 940/7350 [00:42<04:37, 23.13it/s]2022-02-22 21:42:01,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 945/7350 [00:42<04:12, 25.35it/s]2022-02-22 21:42:01,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 948/7350 [00:42<05:08, 20.77it/s]2022-02-22 21:42:01,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 952/7350 [00:42<04:45, 22.40it/s]2022-02-22 21:42:01,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 956/7350 [00:42<04:23, 24.28it/s]2022-02-22 21:42:01,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:01,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 959/7350 [00:43<05:34, 19.12it/s]2022-02-22 21:42:02,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 966/7350 [00:43<04:32, 23.45it/s]2022-02-22 21:42:02,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 969/7350 [00:43<04:30, 23.59it/s]2022-02-22 21:42:02,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 972/7350 [00:43<05:00, 21.22it/s]2022-02-22 21:42:02,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 977/7350 [00:43<04:25, 24.03it/s]2022-02-22 21:42:02,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 980/7350 [00:43<04:41, 22.66it/s]2022-02-22 21:42:02,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:02,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 983/7350 [00:44<05:18, 20.00it/s]2022-02-22 21:42:03,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▍                                  | 989/7350 [00:44<04:42, 22.48it/s]2022-02-22 21:42:03,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 993/7350 [00:44<04:18, 24.57it/s]2022-02-22 21:42:03,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 997/7350 [00:44<04:02, 26.22it/s]2022-02-22 21:42:03,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1000/7350 [00:44<04:17, 24.70it/s]2022-02-22 21:42:03,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:03,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1003/7350 [00:44<04:55, 21.51it/s]2022-02-22 21:42:03,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1009/7350 [00:45<04:18, 24.49it/s]2022-02-22 21:42:04,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1012/7350 [00:45<04:59, 21.14it/s]2022-02-22 21:42:04,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1017/7350 [00:45<04:07, 25.55it/s]2022-02-22 21:42:04,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1020/7350 [00:45<04:07, 25.58it/s]2022-02-22 21:42:04,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1023/7350 [00:45<04:40, 22.58it/s]2022-02-22 21:42:04,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:04,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1028/7350 [00:45<04:19, 24.38it/s]2022-02-22 21:42:05,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1031/7350 [00:46<04:48, 21.89it/s]2022-02-22 21:42:05,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1035/7350 [00:46<04:25, 23.82it/s]2022-02-22 21:42:05,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1039/7350 [00:46<04:17, 24.54it/s]2022-02-22 21:42:05,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1042/7350 [00:46<06:13, 16.89it/s]2022-02-22 21:42:05,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1050/7350 [00:46<03:49, 27.43it/s]2022-02-22 21:42:05,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:05,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1054/7350 [00:47<04:50, 21.67it/s]2022-02-22 21:42:06,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1060/7350 [00:47<04:02, 25.94it/s]2022-02-22 21:42:06,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▋                                 | 1064/7350 [00:47<04:49, 21.69it/s]2022-02-22 21:42:06,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1069/7350 [00:47<03:59, 26.28it/s]2022-02-22 21:42:06,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:06,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1073/7350 [00:47<04:55, 21.23it/s]2022-02-22 21:42:07,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1077/7350 [00:48<04:31, 23.10it/s]2022-02-22 21:42:07,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1081/7350 [00:48<04:31, 23.13it/s]2022-02-22 21:42:07,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1084/7350 [00:48<04:52, 21.40it/s]2022-02-22 21:42:07,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1087/7350 [00:48<05:00, 20.82it/s]2022-02-22 21:42:07,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1091/7350 [00:48<04:21, 23.97it/s]2022-02-22 21:42:07,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1094/7350 [00:48<05:01, 20.72it/s]2022-02-22 21:42:07,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:07,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1098/7350 [00:49<04:35, 22.70it/s]2022-02-22 21:42:08,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1102/7350 [00:49<04:15, 24.45it/s]2022-02-22 21:42:08,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1105/7350 [00:49<04:54, 21.21it/s]2022-02-22 21:42:08,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1111/7350 [00:49<04:42, 22.10it/s]2022-02-22 21:42:08,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1114/7350 [00:49<04:26, 23.37it/s]2022-02-22 21:42:08,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:08,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1117/7350 [00:49<05:09, 20.13it/s]2022-02-22 21:42:09,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1122/7350 [00:50<04:20, 23.91it/s]2022-02-22 21:42:09,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1125/7350 [00:50<04:54, 21.10it/s]2022-02-22 21:42:09,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1129/7350 [00:50<04:12, 24.66it/s]2022-02-22 21:42:09,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                 | 1132/7350 [00:50<04:17, 24.17it/s]2022-02-22 21:42:09,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                 | 1135/7350 [00:50<04:04, 25.44it/s]2022-02-22 21:42:09,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                 | 1138/7350 [00:50<05:08, 20.16it/s]2022-02-22 21:42:09,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:09,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1141/7350 [00:50<04:54, 21.07it/s]2022-02-22 21:42:10,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1146/7350 [00:51<04:07, 25.11it/s]2022-02-22 21:42:10,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1149/7350 [00:51<05:27, 18.93it/s]2022-02-22 21:42:10,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1153/7350 [00:51<04:49, 21.39it/s]2022-02-22 21:42:10,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1157/7350 [00:51<05:27, 18.92it/s]2022-02-22 21:42:10,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:10,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1162/7350 [00:51<04:50, 21.27it/s]2022-02-22 21:42:11,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1168/7350 [00:52<04:04, 25.31it/s]2022-02-22 21:42:11,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1171/7350 [00:52<04:47, 21.48it/s]2022-02-22 21:42:11,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1175/7350 [00:52<04:29, 22.94it/s]2022-02-22 21:42:11,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1180/7350 [00:52<04:17, 23.97it/s]2022-02-22 21:42:11,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1183/7350 [00:52<04:12, 24.39it/s]2022-02-22 21:42:11,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:11,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1187/7350 [00:52<04:20, 23.62it/s]2022-02-22 21:42:12,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1190/7350 [00:53<04:26, 23.08it/s]2022-02-22 21:42:12,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1193/7350 [00:53<05:11, 19.75it/s]2022-02-22 21:42:12,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1198/7350 [00:53<04:04, 25.21it/s]2022-02-22 21:42:12,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1201/7350 [00:53<04:48, 21.28it/s]2022-02-22 21:42:12,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                | 1207/7350 [00:53<04:37, 22.13it/s]2022-02-22 21:42:12,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:12,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                | 1210/7350 [00:54<04:20, 23.54it/s]2022-02-22 21:42:13,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1213/7350 [00:54<04:12, 24.26it/s]2022-02-22 21:42:13,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1216/7350 [00:54<04:02, 25.28it/s]2022-02-22 21:42:13,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1219/7350 [00:54<05:15, 19.41it/s]2022-02-22 21:42:13,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1222/7350 [00:54<04:49, 21.18it/s]2022-02-22 21:42:13,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1225/7350 [00:54<04:51, 21.01it/s]2022-02-22 21:42:13,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1229/7350 [00:54<04:15, 23.95it/s]2022-02-22 21:42:13,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:13,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1233/7350 [00:55<05:12, 19.56it/s]2022-02-22 21:42:14,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1238/7350 [00:55<04:25, 22.98it/s]2022-02-22 21:42:14,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1241/7350 [00:55<04:14, 24.03it/s]2022-02-22 21:42:14,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1245/7350 [00:55<04:36, 22.08it/s]2022-02-22 21:42:14,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1249/7350 [00:55<04:14, 23.99it/s]2022-02-22 21:42:14,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1252/7350 [00:55<04:10, 24.36it/s]2022-02-22 21:42:14,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:14,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1255/7350 [00:56<05:25, 18.73it/s]2022-02-22 21:42:15,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1259/7350 [00:56<04:29, 22.61it/s]2022-02-22 21:42:15,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1262/7350 [00:56<04:41, 21.66it/s]2022-02-22 21:42:15,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1265/7350 [00:56<04:53, 20.73it/s]2022-02-22 21:42:15,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1270/7350 [00:56<04:05, 24.76it/s]2022-02-22 21:42:15,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1274/7350 [00:56<03:41, 27.47it/s]2022-02-22 21:42:15,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:15,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1277/7350 [00:56<04:21, 23.22it/s]2022-02-22 21:42:16,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1280/7350 [00:57<04:27, 22.69it/s]2022-02-22 21:42:16,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1285/7350 [00:57<04:41, 21.57it/s]2022-02-22 21:42:16,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▊                                | 1288/7350 [00:57<04:32, 22.23it/s]2022-02-22 21:42:16,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▊                                | 1291/7350 [00:57<04:28, 22.56it/s]2022-02-22 21:42:16,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▊                                | 1294/7350 [00:57<04:15, 23.69it/s]2022-02-22 21:42:16,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1297/7350 [00:57<04:49, 20.89it/s]2022-02-22 21:42:16,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:16,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1301/7350 [00:58<05:07, 19.66it/s]2022-02-22 21:42:17,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1306/7350 [00:58<04:55, 20.46it/s]2022-02-22 21:42:17,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1312/7350 [00:58<04:04, 24.72it/s]2022-02-22 21:42:17,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1315/7350 [00:58<04:02, 24.84it/s]2022-02-22 21:42:17,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1318/7350 [00:58<04:49, 20.85it/s]2022-02-22 21:42:17,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:17,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1322/7350 [00:59<04:36, 21.83it/s]2022-02-22 21:42:18,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1325/7350 [00:59<04:21, 23.03it/s]2022-02-22 21:42:18,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1328/7350 [00:59<04:11, 23.93it/s]2022-02-22 21:42:18,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1331/7350 [00:59<04:02, 24.84it/s]2022-02-22 21:42:18,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1334/7350 [00:59<04:47, 20.89it/s]2022-02-22 21:42:18,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1337/7350 [00:59<05:23, 18.59it/s]2022-02-22 21:42:18,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:18,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1343/7350 [01:00<04:35, 21.83it/s]2022-02-22 21:42:19,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1347/7350 [01:00<04:06, 24.36it/s]2022-02-22 21:42:19,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1350/7350 [01:00<04:58, 20.13it/s]2022-02-22 21:42:19,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1353/7350 [01:00<04:41, 21.31it/s]2022-02-22 21:42:19,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1357/7350 [01:00<03:59, 25.00it/s]2022-02-22 21:42:19,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▏                               | 1360/7350 [01:00<03:54, 25.49it/s]2022-02-22 21:42:19,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▏                               | 1363/7350 [01:00<04:07, 24.18it/s]2022-02-22 21:42:19,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:19,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▏                               | 1366/7350 [01:01<04:53, 20.39it/s]2022-02-22 21:42:20,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1369/7350 [01:01<05:06, 19.51it/s]2022-02-22 21:42:20,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1374/7350 [01:01<04:16, 23.33it/s]2022-02-22 21:42:20,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1377/7350 [01:01<04:28, 22.27it/s]2022-02-22 21:42:20,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1381/7350 [01:01<04:08, 24.04it/s]2022-02-22 21:42:20,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1385/7350 [01:01<03:55, 25.28it/s]2022-02-22 21:42:20,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:20,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1388/7350 [01:01<04:36, 21.58it/s]2022-02-22 21:42:21,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1391/7350 [01:02<04:19, 23.00it/s]2022-02-22 21:42:21,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1396/7350 [01:02<03:53, 25.50it/s]2022-02-22 21:42:21,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1399/7350 [01:02<04:29, 22.12it/s]2022-02-22 21:42:21,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1402/7350 [01:02<04:45, 20.84it/s]2022-02-22 21:42:21,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1406/7350 [01:02<04:33, 21.76it/s]2022-02-22 21:42:21,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:21,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1409/7350 [01:02<04:32, 21.80it/s]2022-02-22 21:42:21,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1414/7350 [01:03<03:46, 26.15it/s]2022-02-22 21:42:22,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1417/7350 [01:03<04:35, 21.51it/s]2022-02-22 21:42:22,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1420/7350 [01:03<04:26, 22.29it/s]2022-02-22 21:42:22,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1425/7350 [01:03<03:42, 26.64it/s]2022-02-22 21:42:22,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1428/7350 [01:03<05:19, 18.54it/s]2022-02-22 21:42:22,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:22,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1433/7350 [01:03<04:24, 22.35it/s]2022-02-22 21:42:23,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▌                               | 1436/7350 [01:04<04:10, 23.61it/s]2022-02-22 21:42:23,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1439/7350 [01:04<04:55, 19.97it/s]2022-02-22 21:42:23,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1443/7350 [01:04<04:31, 21.72it/s]2022-02-22 21:42:23,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1446/7350 [01:04<04:18, 22.85it/s]2022-02-22 21:42:23,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1450/7350 [01:04<04:16, 23.04it/s]2022-02-22 21:42:23,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1453/7350 [01:04<04:24, 22.27it/s]2022-02-22 21:42:23,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:23,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1459/7350 [01:05<03:42, 26.53it/s]2022-02-22 21:42:24,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1462/7350 [01:05<04:06, 23.88it/s]2022-02-22 21:42:24,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1465/7350 [01:05<04:56, 19.82it/s]2022-02-22 21:42:24,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1470/7350 [01:05<04:17, 22.87it/s]2022-02-22 21:42:24,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1474/7350 [01:05<04:19, 22.62it/s]2022-02-22 21:42:24,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:24,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1479/7350 [01:05<03:53, 25.10it/s]2022-02-22 21:42:25,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1482/7350 [01:06<04:09, 23.50it/s]2022-02-22 21:42:25,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1486/7350 [01:06<04:46, 20.50it/s]2022-02-22 21:42:25,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1492/7350 [01:06<04:17, 22.72it/s]2022-02-22 21:42:25,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1495/7350 [01:06<04:21, 22.39it/s]2022-02-22 21:42:25,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1499/7350 [01:06<03:55, 24.85it/s]2022-02-22 21:42:25,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:25,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1502/7350 [01:06<03:53, 25.02it/s]2022-02-22 21:42:26,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1505/7350 [01:07<05:02, 19.31it/s]2022-02-22 21:42:26,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1509/7350 [01:07<04:49, 20.20it/s]2022-02-22 21:42:26,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1515/7350 [01:07<03:47, 25.69it/s]2022-02-22 21:42:26,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1518/7350 [01:07<04:32, 21.43it/s]2022-02-22 21:42:26,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1523/7350 [01:07<03:41, 26.31it/s]2022-02-22 21:42:26,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:26,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1527/7350 [01:08<04:45, 20.41it/s]2022-02-22 21:42:27,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1533/7350 [01:08<03:40, 26.39it/s]2022-02-22 21:42:27,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1537/7350 [01:08<05:16, 18.34it/s]2022-02-22 21:42:27,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1544/7350 [01:08<04:02, 23.92it/s]2022-02-22 21:42:27,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:27,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1548/7350 [01:09<04:30, 21.43it/s]2022-02-22 21:42:28,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1554/7350 [01:09<04:05, 23.61it/s]2022-02-22 21:42:28,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1557/7350 [01:09<04:12, 22.90it/s]2022-02-22 21:42:28,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1560/7350 [01:09<04:37, 20.86it/s]2022-02-22 21:42:28,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1565/7350 [01:09<03:55, 24.58it/s]2022-02-22 21:42:28,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:28,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1568/7350 [01:10<05:07, 18.80it/s]2022-02-22 21:42:29,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1577/7350 [01:10<03:31, 27.31it/s]2022-02-22 21:42:29,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1581/7350 [01:10<04:46, 20.12it/s]2022-02-22 21:42:29,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1588/7350 [01:10<04:27, 21.58it/s]2022-02-22 21:42:29,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:29,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1591/7350 [01:11<04:29, 21.39it/s]2022-02-22 21:42:30,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1598/7350 [01:11<03:46, 25.40it/s]2022-02-22 21:42:30,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1601/7350 [01:11<04:04, 23.48it/s]2022-02-22 21:42:30,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1604/7350 [01:11<04:03, 23.56it/s]2022-02-22 21:42:30,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1607/7350 [01:11<04:03, 23.58it/s]2022-02-22 21:42:30,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1611/7350 [01:11<04:20, 22.00it/s]2022-02-22 21:42:30,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:30,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1617/7350 [01:12<04:47, 19.95it/s]2022-02-22 21:42:31,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1622/7350 [01:12<04:10, 22.87it/s]2022-02-22 21:42:31,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1627/7350 [01:12<04:02, 23.56it/s]2022-02-22 21:42:31,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1630/7350 [01:12<04:00, 23.75it/s]2022-02-22 21:42:31,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1633/7350 [01:12<04:28, 21.30it/s]2022-02-22 21:42:31,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:31,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1639/7350 [01:13<03:43, 25.57it/s]2022-02-22 21:42:32,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1642/7350 [01:13<04:24, 21.57it/s]2022-02-22 21:42:32,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1648/7350 [01:13<03:24, 27.83it/s]2022-02-22 21:42:32,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▊                              | 1652/7350 [01:13<04:41, 20.24it/s]2022-02-22 21:42:32,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1658/7350 [01:13<03:35, 26.39it/s]2022-02-22 21:42:32,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:32,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1662/7350 [01:14<04:18, 21.97it/s]2022-02-22 21:42:33,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1667/7350 [01:14<03:52, 24.49it/s]2022-02-22 21:42:33,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1670/7350 [01:14<05:42, 16.59it/s]2022-02-22 21:42:33,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1680/7350 [01:14<04:02, 23.39it/s]2022-02-22 21:42:33,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:33,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1684/7350 [01:15<03:55, 24.09it/s]2022-02-22 21:42:34,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1687/7350 [01:15<04:16, 22.04it/s]2022-02-22 21:42:34,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1691/7350 [01:15<04:11, 22.49it/s]2022-02-22 21:42:34,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1694/7350 [01:15<04:00, 23.54it/s]2022-02-22 21:42:34,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1699/7350 [01:15<03:39, 25.79it/s]2022-02-22 21:42:34,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1702/7350 [01:15<03:58, 23.67it/s]2022-02-22 21:42:34,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:34,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1705/7350 [01:16<04:40, 20.10it/s]2022-02-22 21:42:35,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1711/7350 [01:16<03:25, 27.51it/s]2022-02-22 21:42:35,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1715/7350 [01:16<04:14, 22.15it/s]2022-02-22 21:42:35,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1719/7350 [01:16<03:56, 23.76it/s]2022-02-22 21:42:35,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                             | 1723/7350 [01:16<04:51, 19.32it/s]2022-02-22 21:42:35,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:35,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                             | 1726/7350 [01:17<04:56, 18.95it/s]2022-02-22 21:42:36,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1732/7350 [01:17<03:44, 25.00it/s]2022-02-22 21:42:36,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1735/7350 [01:17<03:58, 23.55it/s]2022-02-22 21:42:36,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1738/7350 [01:17<04:15, 21.99it/s]2022-02-22 21:42:36,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1742/7350 [01:17<03:44, 25.00it/s]2022-02-22 21:42:36,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1745/7350 [01:17<04:05, 22.83it/s]2022-02-22 21:42:36,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:36,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1748/7350 [01:17<04:41, 19.87it/s]2022-02-22 21:42:36,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1754/7350 [01:18<03:49, 24.40it/s]2022-02-22 21:42:37,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1757/7350 [01:18<04:34, 20.39it/s]2022-02-22 21:42:37,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1760/7350 [01:18<04:22, 21.29it/s]2022-02-22 21:42:37,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1764/7350 [01:18<04:30, 20.66it/s]2022-02-22 21:42:37,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1768/7350 [01:18<03:50, 24.24it/s]2022-02-22 21:42:37,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1771/7350 [01:18<03:56, 23.56it/s]2022-02-22 21:42:37,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:37,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1774/7350 [01:19<04:01, 23.10it/s]2022-02-22 21:42:38,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1777/7350 [01:19<03:52, 23.98it/s]2022-02-22 21:42:38,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1780/7350 [01:19<03:54, 23.79it/s]2022-02-22 21:42:38,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1783/7350 [01:19<04:21, 21.26it/s]2022-02-22 21:42:38,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1786/7350 [01:19<04:59, 18.58it/s]2022-02-22 21:42:38,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:38,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                             | 1793/7350 [01:20<04:46, 19.42it/s]2022-02-22 21:42:39,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                             | 1799/7350 [01:20<03:49, 24.15it/s]2022-02-22 21:42:39,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▌                             | 1803/7350 [01:20<04:45, 19.41it/s]2022-02-22 21:42:39,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▌                             | 1810/7350 [01:20<03:36, 25.64it/s]2022-02-22 21:42:39,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:39,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1814/7350 [01:20<04:32, 20.33it/s]2022-02-22 21:42:40,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1821/7350 [01:21<03:31, 26.16it/s]2022-02-22 21:42:40,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1825/7350 [01:21<04:44, 19.45it/s]2022-02-22 21:42:40,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1833/7350 [01:21<03:34, 25.67it/s]2022-02-22 21:42:40,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:40,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1837/7350 [01:21<04:06, 22.41it/s]2022-02-22 21:42:40,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1843/7350 [01:22<03:41, 24.83it/s]2022-02-22 21:42:41,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1846/7350 [01:22<04:10, 22.00it/s]2022-02-22 21:42:41,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1849/7350 [01:22<04:03, 22.61it/s]2022-02-22 21:42:41,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1852/7350 [01:22<04:07, 22.24it/s]2022-02-22 21:42:41,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1855/7350 [01:22<03:58, 23.01it/s]2022-02-22 21:42:41,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:41,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1859/7350 [01:22<04:48, 19.04it/s]2022-02-22 21:42:41,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1865/7350 [01:23<04:06, 22.28it/s]2022-02-22 21:42:42,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1869/7350 [01:23<03:44, 24.42it/s]2022-02-22 21:42:42,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1872/7350 [01:23<04:05, 22.31it/s]2022-02-22 21:42:42,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|█████████▉                             | 1875/7350 [01:23<04:44, 19.24it/s]2022-02-22 21:42:42,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|█████████▉                             | 1881/7350 [01:23<03:26, 26.54it/s]2022-02-22 21:42:42,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:42,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1885/7350 [01:24<04:26, 20.52it/s]2022-02-22 21:42:43,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1891/7350 [01:24<03:49, 23.77it/s]2022-02-22 21:42:43,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1894/7350 [01:24<03:48, 23.91it/s]2022-02-22 21:42:43,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1897/7350 [01:24<03:44, 24.34it/s]2022-02-22 21:42:43,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1901/7350 [01:24<04:03, 22.42it/s]2022-02-22 21:42:43,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1904/7350 [01:24<03:58, 22.84it/s]2022-02-22 21:42:43,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1908/7350 [01:24<03:27, 26.22it/s]2022-02-22 21:42:43,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:43,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1911/7350 [01:25<04:29, 20.19it/s]2022-02-22 21:42:44,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1914/7350 [01:25<04:26, 20.42it/s]2022-02-22 21:42:44,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1921/7350 [01:25<03:31, 25.63it/s]2022-02-22 21:42:44,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1924/7350 [01:25<04:21, 20.75it/s]2022-02-22 21:42:44,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1927/7350 [01:25<04:12, 21.46it/s]2022-02-22 21:42:44,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:44,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1932/7350 [01:26<03:47, 23.84it/s]2022-02-22 21:42:45,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1935/7350 [01:26<03:49, 23.62it/s]2022-02-22 21:42:45,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1940/7350 [01:26<03:25, 26.36it/s]2022-02-22 21:42:45,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1943/7350 [01:26<03:58, 22.67it/s]2022-02-22 21:42:45,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1946/7350 [01:26<04:13, 21.30it/s]2022-02-22 21:42:45,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:45,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▎                            | 1952/7350 [01:26<04:04, 22.08it/s]2022-02-22 21:42:46,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▎                            | 1955/7350 [01:27<04:33, 19.70it/s]2022-02-22 21:42:46,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1962/7350 [01:27<03:49, 23.52it/s]2022-02-22 21:42:46,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1965/7350 [01:27<03:58, 22.60it/s]2022-02-22 21:42:46,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1969/7350 [01:27<03:31, 25.47it/s]2022-02-22 21:42:46,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1972/7350 [01:27<04:05, 21.93it/s]2022-02-22 21:42:46,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:46,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1975/7350 [01:28<04:46, 18.75it/s]2022-02-22 21:42:47,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1982/7350 [01:28<03:34, 25.00it/s]2022-02-22 21:42:47,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1985/7350 [01:28<03:58, 22.51it/s]2022-02-22 21:42:47,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1988/7350 [01:28<03:54, 22.87it/s]2022-02-22 21:42:47,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1992/7350 [01:28<03:33, 25.15it/s]2022-02-22 21:42:47,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:47,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1995/7350 [01:28<04:37, 19.30it/s]2022-02-22 21:42:47,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 2002/7350 [01:29<03:21, 26.56it/s]2022-02-22 21:42:48,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2005/7350 [01:29<04:20, 20.50it/s]2022-02-22 21:42:48,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2011/7350 [01:29<03:25, 26.02it/s]2022-02-22 21:42:48,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2015/7350 [01:29<04:00, 22.14it/s]2022-02-22 21:42:48,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2018/7350 [01:29<03:57, 22.47it/s]2022-02-22 21:42:48,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:48,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2021/7350 [01:29<03:56, 22.53it/s]2022-02-22 21:42:49,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▋                            | 2025/7350 [01:30<04:04, 21.79it/s]2022-02-22 21:42:49,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2031/7350 [01:30<03:57, 22.42it/s]2022-02-22 21:42:49,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2035/7350 [01:30<03:29, 25.39it/s]2022-02-22 21:42:49,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2038/7350 [01:30<03:32, 24.97it/s]2022-02-22 21:42:49,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2041/7350 [01:30<03:48, 23.22it/s]2022-02-22 21:42:49,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:49,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2045/7350 [01:30<03:21, 26.31it/s]2022-02-22 21:42:50,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2048/7350 [01:31<04:11, 21.09it/s]2022-02-22 21:42:50,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2053/7350 [01:31<04:11, 21.06it/s]2022-02-22 21:42:50,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2056/7350 [01:31<03:54, 22.62it/s]2022-02-22 21:42:50,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2059/7350 [01:31<03:44, 23.55it/s]2022-02-22 21:42:50,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2064/7350 [01:31<03:22, 26.10it/s]2022-02-22 21:42:50,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:50,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2067/7350 [01:31<03:54, 22.52it/s]2022-02-22 21:42:51,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2070/7350 [01:32<03:51, 22.86it/s]2022-02-22 21:42:51,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2074/7350 [01:32<03:51, 22.78it/s]2022-02-22 21:42:51,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2077/7350 [01:32<04:08, 21.18it/s]2022-02-22 21:42:51,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2084/7350 [01:32<03:48, 23.03it/s]2022-02-22 21:42:51,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2087/7350 [01:32<03:55, 22.36it/s]2022-02-22 21:42:51,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:51,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2090/7350 [01:33<04:16, 20.54it/s]2022-02-22 21:42:52,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2094/7350 [01:33<03:51, 22.69it/s]2022-02-22 21:42:52,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2098/7350 [01:33<03:31, 24.85it/s]2022-02-22 21:42:52,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2101/7350 [01:33<03:39, 23.93it/s]2022-02-22 21:42:52,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2105/7350 [01:33<03:41, 23.71it/s]2022-02-22 21:42:52,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2108/7350 [01:33<03:54, 22.31it/s]2022-02-22 21:42:52,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:52,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2111/7350 [01:33<04:35, 18.99it/s]2022-02-22 21:42:53,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2117/7350 [01:34<03:14, 26.90it/s]2022-02-22 21:42:53,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2121/7350 [01:34<03:45, 23.20it/s]2022-02-22 21:42:53,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2124/7350 [01:34<03:36, 24.14it/s]2022-02-22 21:42:53,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2127/7350 [01:34<03:45, 23.20it/s]2022-02-22 21:42:53,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2130/7350 [01:34<04:23, 19.79it/s]2022-02-22 21:42:53,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:53,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2135/7350 [01:34<03:39, 23.74it/s]2022-02-22 21:42:53,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2138/7350 [01:35<03:53, 22.32it/s]2022-02-22 21:42:54,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2141/7350 [01:35<04:21, 19.95it/s]2022-02-22 21:42:54,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2146/7350 [01:35<04:01, 21.52it/s]2022-02-22 21:42:54,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2151/7350 [01:35<03:41, 23.43it/s]2022-02-22 21:42:54,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2154/7350 [01:35<03:44, 23.17it/s]2022-02-22 21:42:54,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:54,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2157/7350 [01:35<04:07, 20.95it/s]2022-02-22 21:42:55,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2161/7350 [01:36<04:12, 20.58it/s]2022-02-22 21:42:55,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2165/7350 [01:36<04:10, 20.70it/s]2022-02-22 21:42:55,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2171/7350 [01:36<04:12, 20.53it/s]2022-02-22 21:42:55,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2176/7350 [01:36<03:49, 22.58it/s]2022-02-22 21:42:55,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:55,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2181/7350 [01:37<04:05, 21.03it/s]2022-02-22 21:42:56,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2184/7350 [01:37<03:56, 21.84it/s]2022-02-22 21:42:56,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2190/7350 [01:37<03:04, 27.98it/s]2022-02-22 21:42:56,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2194/7350 [01:37<04:06, 20.92it/s]2022-02-22 21:42:56,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2197/7350 [01:37<03:51, 22.26it/s]2022-02-22 21:42:56,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:56,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2201/7350 [01:38<04:18, 19.92it/s]2022-02-22 21:42:57,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2206/7350 [01:38<03:27, 24.84it/s]2022-02-22 21:42:57,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2210/7350 [01:38<03:13, 26.56it/s]2022-02-22 21:42:57,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2214/7350 [01:38<03:59, 21.45it/s]2022-02-22 21:42:57,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2219/7350 [01:38<03:19, 25.75it/s]2022-02-22 21:42:57,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2223/7350 [01:38<03:38, 23.51it/s]2022-02-22 21:42:57,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:57,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2226/7350 [01:38<03:30, 24.32it/s]2022-02-22 21:42:58,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2229/7350 [01:39<03:43, 22.95it/s]2022-02-22 21:42:58,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2232/7350 [01:39<04:05, 20.87it/s]2022-02-22 21:42:58,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2236/7350 [01:39<03:29, 24.43it/s]2022-02-22 21:42:58,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▉                           | 2239/7350 [01:39<04:39, 18.25it/s]2022-02-22 21:42:58,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2244/7350 [01:39<03:44, 22.74it/s]2022-02-22 21:42:58,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:58,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2248/7350 [01:39<03:23, 25.09it/s]2022-02-22 21:42:59,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2251/7350 [01:40<04:06, 20.73it/s]2022-02-22 21:42:59,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2255/7350 [01:40<03:59, 21.24it/s]2022-02-22 21:42:59,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2259/7350 [01:40<03:48, 22.27it/s]2022-02-22 21:42:59,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2262/7350 [01:40<03:42, 22.90it/s]2022-02-22 21:42:59,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2268/7350 [01:40<03:18, 25.58it/s]2022-02-22 21:42:59,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:42:59,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2271/7350 [01:41<03:54, 21.63it/s]2022-02-22 21:43:00,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2276/7350 [01:41<03:32, 23.92it/s]2022-02-22 21:43:00,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2279/7350 [01:41<03:56, 21.45it/s]2022-02-22 21:43:00,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2282/7350 [01:41<04:16, 19.73it/s]2022-02-22 21:43:00,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2288/7350 [01:41<03:27, 24.38it/s]2022-02-22 21:43:00,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:00,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2291/7350 [01:42<04:27, 18.90it/s]2022-02-22 21:43:01,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2298/7350 [01:42<03:46, 22.29it/s]2022-02-22 21:43:01,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2302/7350 [01:42<03:30, 23.96it/s]2022-02-22 21:43:01,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2305/7350 [01:42<03:40, 22.84it/s]2022-02-22 21:43:01,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2308/7350 [01:42<03:29, 24.12it/s]2022-02-22 21:43:01,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                          | 2311/7350 [01:42<03:22, 24.93it/s]2022-02-22 21:43:01,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                          | 2314/7350 [01:42<03:36, 23.31it/s]2022-02-22 21:43:01,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:01,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2317/7350 [01:43<04:07, 20.37it/s]2022-02-22 21:43:02,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2324/7350 [01:43<03:19, 25.14it/s]2022-02-22 21:43:02,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2327/7350 [01:43<03:53, 21.53it/s]2022-02-22 21:43:02,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2334/7350 [01:43<03:18, 25.28it/s]2022-02-22 21:43:02,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:02,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2337/7350 [01:43<03:44, 22.29it/s]2022-02-22 21:43:03,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2340/7350 [01:44<03:32, 23.57it/s]2022-02-22 21:43:03,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2344/7350 [01:44<03:41, 22.60it/s]2022-02-22 21:43:03,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2348/7350 [01:44<03:50, 21.73it/s]2022-02-22 21:43:03,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2354/7350 [01:44<03:18, 25.22it/s]2022-02-22 21:43:03,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2357/7350 [01:44<03:53, 21.38it/s]2022-02-22 21:43:03,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:03,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2364/7350 [01:45<03:23, 24.53it/s]2022-02-22 21:43:04,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2367/7350 [01:45<03:54, 21.22it/s]2022-02-22 21:43:04,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2370/7350 [01:45<03:43, 22.26it/s]2022-02-22 21:43:04,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2375/7350 [01:45<03:27, 23.95it/s]2022-02-22 21:43:04,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2378/7350 [01:45<03:40, 22.60it/s]2022-02-22 21:43:04,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                          | 2382/7350 [01:45<03:13, 25.68it/s]2022-02-22 21:43:04,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:04,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                          | 2385/7350 [01:46<03:39, 22.60it/s]2022-02-22 21:43:05,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                          | 2388/7350 [01:46<04:09, 19.90it/s]2022-02-22 21:43:05,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2394/7350 [01:46<03:00, 27.43it/s]2022-02-22 21:43:05,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2398/7350 [01:46<03:46, 21.85it/s]2022-02-22 21:43:05,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2401/7350 [01:46<03:48, 21.62it/s]2022-02-22 21:43:05,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2405/7350 [01:46<03:35, 22.99it/s]2022-02-22 21:43:05,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:05,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2408/7350 [01:47<03:43, 22.12it/s]2022-02-22 21:43:06,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2412/7350 [01:47<03:11, 25.79it/s]2022-02-22 21:43:06,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2415/7350 [01:47<03:16, 25.10it/s]2022-02-22 21:43:06,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2418/7350 [01:47<04:11, 19.59it/s]2022-02-22 21:43:06,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2425/7350 [01:47<03:19, 24.72it/s]2022-02-22 21:43:06,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:06,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2428/7350 [01:48<04:34, 17.95it/s]2022-02-22 21:43:07,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2435/7350 [01:48<03:12, 25.51it/s]2022-02-22 21:43:07,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2439/7350 [01:48<03:42, 22.06it/s]2022-02-22 21:43:07,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2442/7350 [01:48<03:53, 21.05it/s]2022-02-22 21:43:07,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2447/7350 [01:48<04:03, 20.17it/s]2022-02-22 21:43:07,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:07,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2453/7350 [01:48<03:10, 25.77it/s]2022-02-22 21:43:08,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2457/7350 [01:49<03:45, 21.72it/s]2022-02-22 21:43:08,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2460/7350 [01:49<03:31, 23.08it/s]2022-02-22 21:43:08,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████                          | 2465/7350 [01:49<03:41, 22.07it/s]2022-02-22 21:43:08,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████                          | 2471/7350 [01:49<03:23, 24.02it/s]2022-02-22 21:43:08,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:08,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2475/7350 [01:50<04:16, 18.99it/s]2022-02-22 21:43:09,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2482/7350 [01:50<03:06, 26.16it/s]2022-02-22 21:43:09,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2486/7350 [01:50<03:33, 22.83it/s]2022-02-22 21:43:09,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2489/7350 [01:50<03:28, 23.29it/s]2022-02-22 21:43:09,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2493/7350 [01:50<03:21, 24.05it/s]2022-02-22 21:43:09,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:09,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2496/7350 [01:50<03:41, 21.92it/s]2022-02-22 21:43:09,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2499/7350 [01:51<03:34, 22.61it/s]2022-02-22 21:43:10,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2503/7350 [01:51<03:04, 26.22it/s]2022-02-22 21:43:10,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2506/7350 [01:51<03:39, 22.11it/s]2022-02-22 21:43:10,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2509/7350 [01:51<03:39, 22.02it/s]2022-02-22 21:43:10,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2514/7350 [01:51<02:56, 27.34it/s]2022-02-22 21:43:10,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2517/7350 [01:51<03:56, 20.47it/s]2022-02-22 21:43:10,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:10,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2522/7350 [01:52<03:35, 22.40it/s]2022-02-22 21:43:11,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2525/7350 [01:52<03:46, 21.30it/s]2022-02-22 21:43:11,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2529/7350 [01:52<04:03, 19.76it/s]2022-02-22 21:43:11,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2535/7350 [01:52<03:38, 22.00it/s]2022-02-22 21:43:11,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▍                         | 2538/7350 [01:52<03:53, 20.61it/s]2022-02-22 21:43:11,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:11,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2546/7350 [01:53<03:32, 22.61it/s]2022-02-22 21:43:12,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2549/7350 [01:53<03:27, 23.11it/s]2022-02-22 21:43:12,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2556/7350 [01:53<03:49, 20.92it/s]2022-02-22 21:43:12,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2559/7350 [01:53<03:36, 22.16it/s]2022-02-22 21:43:12,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:12,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2566/7350 [01:54<03:15, 24.44it/s]2022-02-22 21:43:13,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2569/7350 [01:54<03:22, 23.64it/s]2022-02-22 21:43:13,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2572/7350 [01:54<03:15, 24.45it/s]2022-02-22 21:43:13,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2576/7350 [01:54<03:14, 24.60it/s]2022-02-22 21:43:13,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2579/7350 [01:54<04:24, 18.03it/s]2022-02-22 21:43:13,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2586/7350 [01:54<03:00, 26.40it/s]2022-02-22 21:43:13,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:13,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2590/7350 [01:55<03:38, 21.74it/s]2022-02-22 21:43:14,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2593/7350 [01:55<03:57, 19.99it/s]2022-02-22 21:43:14,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2599/7350 [01:55<03:24, 23.23it/s]2022-02-22 21:43:14,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2602/7350 [01:55<03:31, 22.46it/s]2022-02-22 21:43:14,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2605/7350 [01:55<04:00, 19.77it/s]2022-02-22 21:43:14,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:14,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2609/7350 [01:55<03:27, 22.81it/s]2022-02-22 21:43:15,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▊                         | 2612/7350 [01:56<03:50, 20.52it/s]2022-02-22 21:43:15,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2618/7350 [01:56<03:25, 23.07it/s]2022-02-22 21:43:15,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2621/7350 [01:56<03:27, 22.84it/s]2022-02-22 21:43:15,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2624/7350 [01:56<03:18, 23.80it/s]2022-02-22 21:43:15,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:15,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2628/7350 [01:56<04:13, 18.64it/s]2022-02-22 21:43:15,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2635/7350 [01:57<02:53, 27.13it/s]2022-02-22 21:43:16,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2639/7350 [01:57<03:48, 20.66it/s]2022-02-22 21:43:16,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2642/7350 [01:57<03:46, 20.81it/s]2022-02-22 21:43:16,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2648/7350 [01:57<03:15, 24.04it/s]2022-02-22 21:43:16,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2651/7350 [01:57<03:27, 22.69it/s]2022-02-22 21:43:16,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:16,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2657/7350 [01:58<03:02, 25.69it/s]2022-02-22 21:43:17,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2660/7350 [01:58<03:20, 23.37it/s]2022-02-22 21:43:17,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2664/7350 [01:58<03:29, 22.36it/s]2022-02-22 21:43:17,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2668/7350 [01:58<03:26, 22.70it/s]2022-02-22 21:43:17,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2671/7350 [01:58<03:37, 21.46it/s]2022-02-22 21:43:17,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:17,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2677/7350 [01:58<02:47, 27.93it/s]2022-02-22 21:43:17,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2681/7350 [01:59<03:24, 22.88it/s]2022-02-22 21:43:18,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2687/7350 [01:59<02:53, 26.83it/s]2022-02-22 21:43:18,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2690/7350 [01:59<03:44, 20.77it/s]2022-02-22 21:43:18,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2693/7350 [01:59<03:30, 22.14it/s]2022-02-22 21:43:18,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2696/7350 [01:59<03:25, 22.69it/s]2022-02-22 21:43:18,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:18,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2699/7350 [01:59<03:34, 21.67it/s]2022-02-22 21:43:18,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2703/7350 [02:00<03:33, 21.76it/s]2022-02-22 21:43:19,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2706/7350 [02:00<03:46, 20.50it/s]2022-02-22 21:43:19,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2710/7350 [02:00<03:25, 22.55it/s]2022-02-22 21:43:19,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2714/7350 [02:00<03:13, 23.92it/s]2022-02-22 21:43:19,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2717/7350 [02:00<03:07, 24.73it/s]2022-02-22 21:43:19,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2720/7350 [02:00<03:15, 23.68it/s]2022-02-22 21:43:19,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:19,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2724/7350 [02:00<03:07, 24.64it/s]2022-02-22 21:43:20,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2727/7350 [02:01<03:11, 24.13it/s]2022-02-22 21:43:20,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2730/7350 [02:01<03:18, 23.22it/s]2022-02-22 21:43:20,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2734/7350 [02:01<03:05, 24.83it/s]2022-02-22 21:43:20,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2737/7350 [02:01<03:29, 22.01it/s]2022-02-22 21:43:20,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2740/7350 [02:01<03:18, 23.18it/s]2022-02-22 21:43:20,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2745/7350 [02:01<02:54, 26.36it/s]2022-02-22 21:43:20,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:20,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2748/7350 [02:02<03:58, 19.33it/s]2022-02-22 21:43:21,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2755/7350 [02:02<03:09, 24.28it/s]2022-02-22 21:43:21,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2758/7350 [02:02<03:21, 22.78it/s]2022-02-22 21:43:21,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2761/7350 [02:02<03:12, 23.86it/s]2022-02-22 21:43:21,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2764/7350 [02:02<03:22, 22.65it/s]2022-02-22 21:43:21,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2767/7350 [02:02<03:48, 20.05it/s]2022-02-22 21:43:21,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:21,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2770/7350 [02:03<03:31, 21.68it/s]2022-02-22 21:43:22,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2774/7350 [02:03<03:07, 24.46it/s]2022-02-22 21:43:22,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2777/7350 [02:03<03:31, 21.63it/s]2022-02-22 21:43:22,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2780/7350 [02:03<04:08, 18.41it/s]2022-02-22 21:43:22,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2786/7350 [02:03<03:16, 23.25it/s]2022-02-22 21:43:22,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2789/7350 [02:03<03:21, 22.66it/s]2022-02-22 21:43:22,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:22,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2792/7350 [02:03<03:11, 23.86it/s]2022-02-22 21:43:23,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2795/7350 [02:04<03:33, 21.30it/s]2022-02-22 21:43:23,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2799/7350 [02:04<03:11, 23.77it/s]2022-02-22 21:43:23,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2803/7350 [02:04<03:04, 24.67it/s]2022-02-22 21:43:23,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2806/7350 [02:04<03:43, 20.29it/s]2022-02-22 21:43:23,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2811/7350 [02:04<02:59, 25.30it/s]2022-02-22 21:43:23,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:23,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2814/7350 [02:04<03:19, 22.78it/s]2022-02-22 21:43:23,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2817/7350 [02:05<03:17, 22.95it/s]2022-02-22 21:43:24,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2820/7350 [02:05<03:09, 23.96it/s]2022-02-22 21:43:24,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2823/7350 [02:05<03:17, 22.95it/s]2022-02-22 21:43:24,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2826/7350 [02:05<03:35, 20.96it/s]2022-02-22 21:43:24,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████                        | 2829/7350 [02:05<03:37, 20.82it/s]2022-02-22 21:43:24,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2832/7350 [02:05<03:19, 22.70it/s]2022-02-22 21:43:24,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2835/7350 [02:05<03:07, 24.11it/s]2022-02-22 21:43:24,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:24,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2838/7350 [02:06<03:24, 22.02it/s]2022-02-22 21:43:25,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2841/7350 [02:06<03:12, 23.46it/s]2022-02-22 21:43:25,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2844/7350 [02:06<03:51, 19.44it/s]2022-02-22 21:43:25,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2848/7350 [02:06<03:44, 20.09it/s]2022-02-22 21:43:25,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2853/7350 [02:06<02:59, 25.06it/s]2022-02-22 21:43:25,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2856/7350 [02:06<03:26, 21.74it/s]2022-02-22 21:43:25,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:25,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2860/7350 [02:07<03:33, 21.02it/s]2022-02-22 21:43:26,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2864/7350 [02:07<03:25, 21.83it/s]2022-02-22 21:43:26,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2871/7350 [02:07<02:58, 25.16it/s]2022-02-22 21:43:26,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2874/7350 [02:07<03:21, 22.24it/s]2022-02-22 21:43:26,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2879/7350 [02:07<02:47, 26.71it/s]2022-02-22 21:43:26,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2882/7350 [02:07<03:01, 24.66it/s]2022-02-22 21:43:26,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:26,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2885/7350 [02:08<03:16, 22.71it/s]2022-02-22 21:43:27,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2890/7350 [02:08<03:02, 24.42it/s]2022-02-22 21:43:27,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2893/7350 [02:08<03:10, 23.35it/s]2022-02-22 21:43:27,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2896/7350 [02:08<03:32, 20.99it/s]2022-02-22 21:43:27,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▍                       | 2901/7350 [02:08<03:11, 23.20it/s]2022-02-22 21:43:27,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2904/7350 [02:08<03:06, 23.87it/s]2022-02-22 21:43:27,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:27,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2907/7350 [02:09<03:22, 21.93it/s]2022-02-22 21:43:28,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2910/7350 [02:09<03:40, 20.16it/s]2022-02-22 21:43:28,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2915/7350 [02:09<02:59, 24.72it/s]2022-02-22 21:43:28,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2918/7350 [02:09<03:30, 21.06it/s]2022-02-22 21:43:28,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2924/7350 [02:09<03:40, 20.07it/s]2022-02-22 21:43:28,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:28,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2928/7350 [02:10<03:18, 22.30it/s]2022-02-22 21:43:29,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2933/7350 [02:10<02:42, 27.24it/s]2022-02-22 21:43:29,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2937/7350 [02:10<03:20, 22.06it/s]2022-02-22 21:43:29,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2940/7350 [02:10<03:09, 23.26it/s]2022-02-22 21:43:29,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2945/7350 [02:10<03:40, 20.00it/s]2022-02-22 21:43:29,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:29,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2950/7350 [02:10<03:16, 22.34it/s]2022-02-22 21:43:30,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2955/7350 [02:11<02:56, 24.90it/s]2022-02-22 21:43:30,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2958/7350 [02:11<03:32, 20.68it/s]2022-02-22 21:43:30,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2964/7350 [02:11<02:47, 26.18it/s]2022-02-22 21:43:30,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2967/7350 [02:11<02:49, 25.83it/s]2022-02-22 21:43:30,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                       | 2970/7350 [02:11<02:58, 24.52it/s]2022-02-22 21:43:30,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                       | 2973/7350 [02:11<03:11, 22.83it/s]2022-02-22 21:43:30,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:30,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                       | 2976/7350 [02:12<03:36, 20.16it/s]2022-02-22 21:43:31,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2982/7350 [02:12<03:31, 20.67it/s]2022-02-22 21:43:31,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2987/7350 [02:12<03:40, 19.77it/s]2022-02-22 21:43:31,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 2992/7350 [02:12<03:01, 24.01it/s]2022-02-22 21:43:31,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:31,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 2996/7350 [02:12<02:55, 24.87it/s]2022-02-22 21:43:32,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 2999/7350 [02:13<03:22, 21.51it/s]2022-02-22 21:43:32,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3004/7350 [02:13<02:58, 24.34it/s]2022-02-22 21:43:32,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3007/7350 [02:13<02:56, 24.66it/s]2022-02-22 21:43:32,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3010/7350 [02:13<02:49, 25.66it/s]2022-02-22 21:43:32,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3013/7350 [02:13<03:15, 22.23it/s]2022-02-22 21:43:32,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3016/7350 [02:13<03:22, 21.36it/s]2022-02-22 21:43:32,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:32,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3021/7350 [02:14<03:36, 19.97it/s]2022-02-22 21:43:33,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3025/7350 [02:14<03:18, 21.82it/s]2022-02-22 21:43:33,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3028/7350 [02:14<03:10, 22.68it/s]2022-02-22 21:43:33,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3031/7350 [02:14<03:06, 23.18it/s]2022-02-22 21:43:33,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3035/7350 [02:14<03:20, 21.51it/s]2022-02-22 21:43:33,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3040/7350 [02:14<02:41, 26.73it/s]2022-02-22 21:43:33,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:33,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3043/7350 [02:14<02:58, 24.19it/s]2022-02-22 21:43:34,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3046/7350 [02:15<03:16, 21.91it/s]2022-02-22 21:43:34,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3049/7350 [02:15<03:32, 20.24it/s]2022-02-22 21:43:34,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▏                      | 3054/7350 [02:15<03:59, 17.94it/s]2022-02-22 21:43:34,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▏                      | 3059/7350 [02:15<03:32, 20.17it/s]2022-02-22 21:43:34,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:34,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3064/7350 [02:15<02:54, 24.50it/s]2022-02-22 21:43:35,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3067/7350 [02:16<02:51, 24.97it/s]2022-02-22 21:43:35,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3071/7350 [02:16<03:28, 20.48it/s]2022-02-22 21:43:35,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3076/7350 [02:16<02:50, 25.02it/s]2022-02-22 21:43:35,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3081/7350 [02:16<02:47, 25.51it/s]2022-02-22 21:43:35,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3084/7350 [02:16<03:14, 21.92it/s]2022-02-22 21:43:35,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:35,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3088/7350 [02:17<02:55, 24.22it/s]2022-02-22 21:43:36,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3092/7350 [02:17<03:18, 21.42it/s]2022-02-22 21:43:36,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3096/7350 [02:17<03:17, 21.55it/s]2022-02-22 21:43:36,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3100/7350 [02:17<03:02, 23.26it/s]2022-02-22 21:43:36,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3103/7350 [02:17<03:11, 22.17it/s]2022-02-22 21:43:36,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3106/7350 [02:17<03:22, 20.96it/s]2022-02-22 21:43:36,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:36,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3111/7350 [02:18<02:59, 23.67it/s]2022-02-22 21:43:37,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3114/7350 [02:18<02:59, 23.55it/s]2022-02-22 21:43:37,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3119/7350 [02:18<02:40, 26.29it/s]2022-02-22 21:43:37,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3122/7350 [02:18<03:08, 22.42it/s]2022-02-22 21:43:37,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▌                      | 3125/7350 [02:18<03:07, 22.49it/s]2022-02-22 21:43:37,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▌                      | 3128/7350 [02:18<03:02, 23.16it/s]2022-02-22 21:43:37,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:37,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▌                      | 3131/7350 [02:18<03:18, 21.26it/s]2022-02-22 21:43:38,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3134/7350 [02:19<03:18, 21.26it/s]2022-02-22 21:43:38,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3138/7350 [02:19<02:58, 23.58it/s]2022-02-22 21:43:38,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3141/7350 [02:19<03:13, 21.75it/s]2022-02-22 21:43:38,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3145/7350 [02:19<03:28, 20.12it/s]2022-02-22 21:43:38,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3150/7350 [02:19<02:54, 24.05it/s]2022-02-22 21:43:38,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:38,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3153/7350 [02:19<03:11, 21.97it/s]2022-02-22 21:43:38,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3158/7350 [02:20<03:05, 22.54it/s]2022-02-22 21:43:39,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3162/7350 [02:20<02:46, 25.14it/s]2022-02-22 21:43:39,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3165/7350 [02:20<03:27, 20.15it/s]2022-02-22 21:43:39,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3170/7350 [02:20<02:59, 23.30it/s]2022-02-22 21:43:39,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3175/7350 [02:20<02:48, 24.81it/s]2022-02-22 21:43:39,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:39,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3178/7350 [02:21<03:15, 21.33it/s]2022-02-22 21:43:40,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3185/7350 [02:21<02:56, 23.59it/s]2022-02-22 21:43:40,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3188/7350 [02:21<03:07, 22.25it/s]2022-02-22 21:43:40,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3193/7350 [02:21<02:46, 24.96it/s]2022-02-22 21:43:40,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:40,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3196/7350 [02:21<03:07, 22.17it/s]2022-02-22 21:43:40,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|████████████████▉                      | 3199/7350 [02:22<03:28, 19.90it/s]2022-02-22 21:43:41,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3205/7350 [02:22<02:35, 26.69it/s]2022-02-22 21:43:41,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3209/7350 [02:22<03:23, 20.34it/s]2022-02-22 21:43:41,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3212/7350 [02:22<03:10, 21.72it/s]2022-02-22 21:43:41,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3216/7350 [02:22<03:03, 22.49it/s]2022-02-22 21:43:41,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:41,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3219/7350 [02:22<03:27, 19.92it/s]2022-02-22 21:43:41,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3224/7350 [02:23<02:56, 23.31it/s]2022-02-22 21:43:42,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3227/7350 [02:23<02:52, 23.95it/s]2022-02-22 21:43:42,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3230/7350 [02:23<03:34, 19.24it/s]2022-02-22 21:43:42,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3235/7350 [02:23<02:53, 23.69it/s]2022-02-22 21:43:42,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3238/7350 [02:23<02:56, 23.27it/s]2022-02-22 21:43:42,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3242/7350 [02:23<02:42, 25.29it/s]2022-02-22 21:43:42,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:42,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3246/7350 [02:23<02:45, 24.84it/s]2022-02-22 21:43:43,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3249/7350 [02:24<03:19, 20.57it/s]2022-02-22 21:43:43,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3254/7350 [02:24<02:54, 23.53it/s]2022-02-22 21:43:43,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3257/7350 [02:24<03:26, 19.85it/s]2022-02-22 21:43:43,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3260/7350 [02:24<03:22, 20.19it/s]2022-02-22 21:43:43,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3263/7350 [02:24<03:07, 21.83it/s]2022-02-22 21:43:43,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:43,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3267/7350 [02:25<03:21, 20.24it/s]2022-02-22 21:43:44,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▎                     | 3273/7350 [02:25<02:44, 24.85it/s]2022-02-22 21:43:44,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3277/7350 [02:25<02:45, 24.56it/s]2022-02-22 21:43:44,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3280/7350 [02:25<03:15, 20.82it/s]2022-02-22 21:43:44,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3285/7350 [02:25<02:36, 25.95it/s]2022-02-22 21:43:44,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3288/7350 [02:25<03:06, 21.83it/s]2022-02-22 21:43:44,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:44,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3292/7350 [02:26<02:50, 23.78it/s]2022-02-22 21:43:45,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3296/7350 [02:26<02:36, 25.89it/s]2022-02-22 21:43:45,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3299/7350 [02:26<03:01, 22.36it/s]2022-02-22 21:43:45,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3302/7350 [02:26<03:06, 21.65it/s]2022-02-22 21:43:45,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3305/7350 [02:26<03:06, 21.67it/s]2022-02-22 21:43:45,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3308/7350 [02:26<03:08, 21.43it/s]2022-02-22 21:43:45,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:45,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3312/7350 [02:26<03:02, 22.16it/s]2022-02-22 21:43:46,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3316/7350 [02:27<02:42, 24.89it/s]2022-02-22 21:43:46,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3319/7350 [02:27<02:42, 24.87it/s]2022-02-22 21:43:46,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3322/7350 [02:27<03:12, 20.93it/s]2022-02-22 21:43:46,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3326/7350 [02:27<03:03, 21.95it/s]2022-02-22 21:43:46,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3330/7350 [02:27<03:12, 20.86it/s]2022-02-22 21:43:46,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3335/7350 [02:27<02:32, 26.41it/s]2022-02-22 21:43:46,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:46,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3338/7350 [02:28<03:05, 21.66it/s]2022-02-22 21:43:47,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3343/7350 [02:28<02:36, 25.56it/s]2022-02-22 21:43:47,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3346/7350 [02:28<02:34, 25.91it/s]2022-02-22 21:43:47,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3349/7350 [02:28<03:23, 19.70it/s]2022-02-22 21:43:47,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3352/7350 [02:28<03:14, 20.54it/s]2022-02-22 21:43:47,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:47,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3358/7350 [02:28<02:52, 23.11it/s]2022-02-22 21:43:48,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3361/7350 [02:29<02:43, 24.38it/s]2022-02-22 21:43:48,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3364/7350 [02:29<03:05, 21.48it/s]2022-02-22 21:43:48,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3368/7350 [02:29<02:55, 22.63it/s]2022-02-22 21:43:48,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3371/7350 [02:29<02:49, 23.46it/s]2022-02-22 21:43:48,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3374/7350 [02:29<03:34, 18.53it/s]2022-02-22 21:43:48,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3379/7350 [02:29<02:55, 22.68it/s]2022-02-22 21:43:48,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:48,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3382/7350 [02:30<02:44, 24.11it/s]2022-02-22 21:43:49,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3385/7350 [02:30<02:46, 23.86it/s]2022-02-22 21:43:49,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3389/7350 [02:30<03:11, 20.64it/s]2022-02-22 21:43:49,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3395/7350 [02:30<03:17, 20.01it/s]2022-02-22 21:43:49,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:49,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3399/7350 [02:30<02:57, 22.20it/s]2022-02-22 21:43:49,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3403/7350 [02:30<02:35, 25.37it/s]2022-02-22 21:43:50,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3406/7350 [02:31<03:17, 19.95it/s]2022-02-22 21:43:50,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3413/7350 [02:31<02:28, 26.47it/s]2022-02-22 21:43:50,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▏                    | 3417/7350 [02:31<03:05, 21.21it/s]2022-02-22 21:43:50,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3423/7350 [02:31<02:49, 23.15it/s]2022-02-22 21:43:50,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:50,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3426/7350 [02:32<02:51, 22.83it/s]2022-02-22 21:43:51,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3429/7350 [02:32<02:42, 24.13it/s]2022-02-22 21:43:51,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3433/7350 [02:32<02:51, 22.81it/s]2022-02-22 21:43:51,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3436/7350 [02:32<03:03, 21.31it/s]2022-02-22 21:43:51,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3440/7350 [02:32<02:38, 24.59it/s]2022-02-22 21:43:51,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3443/7350 [02:32<02:48, 23.15it/s]2022-02-22 21:43:51,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3446/7350 [02:32<02:42, 23.96it/s]2022-02-22 21:43:51,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:51,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3449/7350 [02:32<02:47, 23.36it/s]2022-02-22 21:43:52,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3453/7350 [02:33<02:59, 21.71it/s]2022-02-22 21:43:52,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3457/7350 [02:33<02:32, 25.49it/s]2022-02-22 21:43:52,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3460/7350 [02:33<02:46, 23.39it/s]2022-02-22 21:43:52,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3463/7350 [02:33<03:03, 21.24it/s]2022-02-22 21:43:52,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3468/7350 [02:33<03:01, 21.40it/s]2022-02-22 21:43:52,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:52,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3473/7350 [02:34<02:40, 24.19it/s]2022-02-22 21:43:53,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3476/7350 [02:34<03:11, 20.25it/s]2022-02-22 21:43:53,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3483/7350 [02:34<02:39, 24.17it/s]2022-02-22 21:43:53,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3486/7350 [02:34<02:40, 24.12it/s]2022-02-22 21:43:53,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▌                    | 3489/7350 [02:34<02:51, 22.57it/s]2022-02-22 21:43:53,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3492/7350 [02:34<02:40, 24.04it/s]2022-02-22 21:43:53,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:53,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3495/7350 [02:34<02:42, 23.67it/s]2022-02-22 21:43:54,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3498/7350 [02:35<03:23, 18.89it/s]2022-02-22 21:43:54,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3504/7350 [02:35<02:41, 23.87it/s]2022-02-22 21:43:54,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3507/7350 [02:35<02:44, 23.31it/s]2022-02-22 21:43:54,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3510/7350 [02:35<02:54, 21.98it/s]2022-02-22 21:43:54,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3515/7350 [02:35<02:26, 26.20it/s]2022-02-22 21:43:54,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:54,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3518/7350 [02:36<02:59, 21.33it/s]2022-02-22 21:43:55,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3524/7350 [02:36<02:51, 22.27it/s]2022-02-22 21:43:55,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3528/7350 [02:36<02:51, 22.24it/s]2022-02-22 21:43:55,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3534/7350 [02:36<02:24, 26.32it/s]2022-02-22 21:43:55,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3537/7350 [02:36<02:43, 23.39it/s]2022-02-22 21:43:55,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:55,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3540/7350 [02:36<02:37, 24.16it/s]2022-02-22 21:43:56,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3544/7350 [02:37<02:29, 25.49it/s]2022-02-22 21:43:56,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3547/7350 [02:37<02:50, 22.25it/s]2022-02-22 21:43:56,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3550/7350 [02:37<03:02, 20.88it/s]2022-02-22 21:43:56,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3555/7350 [02:37<02:31, 25.00it/s]2022-02-22 21:43:56,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▉                    | 3558/7350 [02:37<03:11, 19.78it/s]2022-02-22 21:43:56,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:56,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▉                    | 3563/7350 [02:37<02:36, 24.27it/s]2022-02-22 21:43:57,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3567/7350 [02:38<02:32, 24.75it/s]2022-02-22 21:43:57,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3570/7350 [02:38<03:20, 18.87it/s]2022-02-22 21:43:57,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3577/7350 [02:38<02:26, 25.76it/s]2022-02-22 21:43:57,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3580/7350 [02:38<02:39, 23.64it/s]2022-02-22 21:43:57,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3583/7350 [02:38<02:50, 22.14it/s]2022-02-22 21:43:57,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:57,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3588/7350 [02:39<02:58, 21.04it/s]2022-02-22 21:43:58,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3591/7350 [02:39<02:48, 22.37it/s]2022-02-22 21:43:58,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3594/7350 [02:39<03:00, 20.77it/s]2022-02-22 21:43:58,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3598/7350 [02:39<02:35, 24.10it/s]2022-02-22 21:43:58,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3601/7350 [02:39<02:52, 21.71it/s]2022-02-22 21:43:58,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3604/7350 [02:39<02:53, 21.64it/s]2022-02-22 21:43:58,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:58,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3611/7350 [02:40<02:50, 21.94it/s]2022-02-22 21:43:59,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3614/7350 [02:40<02:48, 22.16it/s]2022-02-22 21:43:59,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3621/7350 [02:40<02:19, 26.73it/s]2022-02-22 21:43:59,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3624/7350 [02:40<02:32, 24.35it/s]2022-02-22 21:43:59,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3627/7350 [02:40<02:30, 24.66it/s]2022-02-22 21:43:59,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3631/7350 [02:40<02:22, 26.02it/s]2022-02-22 21:43:59,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:43:59,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3634/7350 [02:41<02:42, 22.85it/s]2022-02-22 21:44:00,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3637/7350 [02:41<02:39, 23.24it/s]2022-02-22 21:44:00,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▎                   | 3640/7350 [02:41<02:48, 21.99it/s]2022-02-22 21:44:00,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▎                   | 3643/7350 [02:41<02:44, 22.55it/s]2022-02-22 21:44:00,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▎                   | 3646/7350 [02:41<03:12, 19.29it/s]2022-02-22 21:44:00,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3652/7350 [02:41<02:45, 22.39it/s]2022-02-22 21:44:00,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:00,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3655/7350 [02:41<02:36, 23.59it/s]2022-02-22 21:44:01,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3658/7350 [02:42<02:48, 21.87it/s]2022-02-22 21:44:01,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3662/7350 [02:42<02:42, 22.72it/s]2022-02-22 21:44:01,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3665/7350 [02:42<02:43, 22.58it/s]2022-02-22 21:44:01,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3668/7350 [02:42<02:42, 22.71it/s]2022-02-22 21:44:01,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3671/7350 [02:42<02:33, 23.98it/s]2022-02-22 21:44:01,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3674/7350 [02:42<02:29, 24.66it/s]2022-02-22 21:44:01,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:01,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3677/7350 [02:42<02:43, 22.40it/s]2022-02-22 21:44:02,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3681/7350 [02:43<02:25, 25.15it/s]2022-02-22 21:44:02,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3684/7350 [02:43<02:34, 23.66it/s]2022-02-22 21:44:02,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3687/7350 [02:43<02:54, 20.94it/s]2022-02-22 21:44:02,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3692/7350 [02:43<02:50, 21.40it/s]2022-02-22 21:44:02,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3695/7350 [02:43<02:46, 21.92it/s]2022-02-22 21:44:02,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:02,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3698/7350 [02:43<02:59, 20.35it/s]2022-02-22 21:44:03,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▋                   | 3702/7350 [02:44<02:34, 23.58it/s]2022-02-22 21:44:03,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▋                   | 3705/7350 [02:44<02:50, 21.34it/s]2022-02-22 21:44:03,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▋                   | 3711/7350 [02:44<02:08, 28.40it/s]2022-02-22 21:44:03,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3715/7350 [02:44<02:47, 21.68it/s]2022-02-22 21:44:03,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3718/7350 [02:44<02:46, 21.82it/s]2022-02-22 21:44:03,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:03,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3722/7350 [02:44<02:35, 23.31it/s]2022-02-22 21:44:04,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3725/7350 [02:45<02:53, 20.87it/s]2022-02-22 21:44:04,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3729/7350 [02:45<02:39, 22.73it/s]2022-02-22 21:44:04,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3733/7350 [02:45<02:33, 23.61it/s]2022-02-22 21:44:04,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3736/7350 [02:45<02:32, 23.62it/s]2022-02-22 21:44:04,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3739/7350 [02:45<02:45, 21.87it/s]2022-02-22 21:44:04,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3743/7350 [02:45<02:41, 22.34it/s]2022-02-22 21:44:04,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:04,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3747/7350 [02:46<02:30, 23.98it/s]2022-02-22 21:44:05,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3750/7350 [02:46<02:24, 24.98it/s]2022-02-22 21:44:05,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3753/7350 [02:46<02:52, 20.90it/s]2022-02-22 21:44:05,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3757/7350 [02:46<02:34, 23.24it/s]2022-02-22 21:44:05,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3760/7350 [02:46<02:38, 22.63it/s]2022-02-22 21:44:05,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3763/7350 [02:46<02:49, 21.14it/s]2022-02-22 21:44:05,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:05,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3766/7350 [02:46<02:54, 20.57it/s]2022-02-22 21:44:06,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3772/7350 [02:47<02:29, 23.92it/s]2022-02-22 21:44:06,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3777/7350 [02:47<02:12, 26.89it/s]2022-02-22 21:44:06,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3780/7350 [02:47<02:26, 24.31it/s]2022-02-22 21:44:06,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3784/7350 [02:47<02:43, 21.80it/s]2022-02-22 21:44:06,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████                   | 3789/7350 [02:47<02:16, 26.15it/s]2022-02-22 21:44:06,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:06,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████                   | 3792/7350 [02:47<02:28, 23.97it/s]2022-02-22 21:44:07,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3795/7350 [02:48<02:30, 23.67it/s]2022-02-22 21:44:07,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3798/7350 [02:48<02:36, 22.75it/s]2022-02-22 21:44:07,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3801/7350 [02:48<02:33, 23.11it/s]2022-02-22 21:44:07,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3804/7350 [02:48<02:52, 20.53it/s]2022-02-22 21:44:07,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3809/7350 [02:48<02:51, 20.67it/s]2022-02-22 21:44:07,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:07,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3813/7350 [02:48<02:27, 23.95it/s]2022-02-22 21:44:07,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3816/7350 [02:49<02:41, 21.90it/s]2022-02-22 21:44:08,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3819/7350 [02:49<03:04, 19.15it/s]2022-02-22 21:44:08,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3825/7350 [02:49<02:38, 22.25it/s]2022-02-22 21:44:08,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3829/7350 [02:49<02:48, 20.85it/s]2022-02-22 21:44:08,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3835/7350 [02:49<02:31, 23.18it/s]2022-02-22 21:44:08,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:08,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3840/7350 [02:50<02:20, 25.00it/s]2022-02-22 21:44:09,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3844/7350 [02:50<02:07, 27.49it/s]2022-02-22 21:44:09,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3847/7350 [02:50<02:21, 24.81it/s]2022-02-22 21:44:09,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3850/7350 [02:50<02:18, 25.24it/s]2022-02-22 21:44:09,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3853/7350 [02:50<02:20, 24.81it/s]2022-02-22 21:44:09,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3856/7350 [02:50<02:30, 23.24it/s]2022-02-22 21:44:09,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:09,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▍                  | 3860/7350 [02:50<02:18, 25.23it/s]2022-02-22 21:44:09,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▍                  | 3863/7350 [02:51<02:25, 23.95it/s]2022-02-22 21:44:10,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3866/7350 [02:51<02:32, 22.87it/s]2022-02-22 21:44:10,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3869/7350 [02:51<02:31, 22.92it/s]2022-02-22 21:44:10,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3872/7350 [02:51<02:32, 22.87it/s]2022-02-22 21:44:10,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3875/7350 [02:51<03:23, 17.05it/s]2022-02-22 21:44:10,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3881/7350 [02:51<02:20, 24.67it/s]2022-02-22 21:44:10,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:10,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3884/7350 [02:52<02:40, 21.63it/s]2022-02-22 21:44:11,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3887/7350 [02:52<02:48, 20.60it/s]2022-02-22 21:44:11,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3893/7350 [02:52<02:11, 26.31it/s]2022-02-22 21:44:11,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3897/7350 [02:52<02:32, 22.68it/s]2022-02-22 21:44:11,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3900/7350 [02:52<02:24, 23.95it/s]2022-02-22 21:44:11,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3903/7350 [02:52<02:38, 21.81it/s]2022-02-22 21:44:11,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:11,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3907/7350 [02:52<02:26, 23.45it/s]2022-02-22 21:44:12,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3910/7350 [02:53<02:20, 24.44it/s]2022-02-22 21:44:12,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3913/7350 [02:53<02:46, 20.60it/s]2022-02-22 21:44:12,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3918/7350 [02:53<02:36, 21.97it/s]2022-02-22 21:44:12,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3923/7350 [02:53<02:15, 25.22it/s]2022-02-22 21:44:12,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3926/7350 [02:53<02:16, 25.14it/s]2022-02-22 21:44:12,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3929/7350 [02:53<02:29, 22.87it/s]2022-02-22 21:44:12,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:12,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▊                  | 3933/7350 [02:54<02:13, 25.52it/s]2022-02-22 21:44:13,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3936/7350 [02:54<02:30, 22.68it/s]2022-02-22 21:44:13,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3939/7350 [02:54<02:22, 24.00it/s]2022-02-22 21:44:13,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3942/7350 [02:54<02:24, 23.58it/s]2022-02-22 21:44:13,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3945/7350 [02:54<02:55, 19.39it/s]2022-02-22 21:44:13,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3950/7350 [02:54<02:28, 22.90it/s]2022-02-22 21:44:13,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:13,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3954/7350 [02:55<02:30, 22.51it/s]2022-02-22 21:44:14,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3957/7350 [02:55<02:52, 19.72it/s]2022-02-22 21:44:14,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3964/7350 [02:55<02:28, 22.73it/s]2022-02-22 21:44:14,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3967/7350 [02:55<02:36, 21.64it/s]2022-02-22 21:44:14,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3971/7350 [02:55<02:23, 23.54it/s]2022-02-22 21:44:14,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:14,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3974/7350 [02:55<02:39, 21.18it/s]2022-02-22 21:44:15,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3980/7350 [02:56<02:26, 23.05it/s]2022-02-22 21:44:15,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3984/7350 [02:56<02:35, 21.63it/s]2022-02-22 21:44:15,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3987/7350 [02:56<02:47, 20.02it/s]2022-02-22 21:44:15,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3994/7350 [02:56<02:23, 23.32it/s]2022-02-22 21:44:15,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:15,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3998/7350 [02:56<02:09, 25.97it/s]2022-02-22 21:44:16,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 4002/7350 [02:57<02:08, 26.00it/s]2022-02-22 21:44:16,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▎                 | 4005/7350 [02:57<02:44, 20.31it/s]2022-02-22 21:44:16,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4009/7350 [02:57<02:20, 23.76it/s]2022-02-22 21:44:16,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4014/7350 [02:57<02:13, 25.06it/s]2022-02-22 21:44:16,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4017/7350 [02:57<02:17, 24.24it/s]2022-02-22 21:44:16,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:16,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4020/7350 [02:57<02:27, 22.60it/s]2022-02-22 21:44:17,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4024/7350 [02:58<02:44, 20.24it/s]2022-02-22 21:44:17,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4030/7350 [02:58<02:50, 19.45it/s]2022-02-22 21:44:17,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4036/7350 [02:58<02:15, 24.53it/s]2022-02-22 21:44:17,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4039/7350 [02:58<02:15, 24.52it/s]2022-02-22 21:44:17,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4042/7350 [02:58<02:11, 25.15it/s]2022-02-22 21:44:17,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:17,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4045/7350 [02:59<02:29, 22.17it/s]2022-02-22 21:44:18,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4051/7350 [02:59<02:06, 26.14it/s]2022-02-22 21:44:18,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4054/7350 [02:59<02:20, 23.49it/s]2022-02-22 21:44:18,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4058/7350 [02:59<02:21, 23.20it/s]2022-02-22 21:44:18,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4062/7350 [02:59<02:17, 23.96it/s]2022-02-22 21:44:18,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4065/7350 [02:59<02:11, 25.04it/s]2022-02-22 21:44:18,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:18,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4068/7350 [02:59<02:19, 23.55it/s]2022-02-22 21:44:19,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4073/7350 [03:00<02:08, 25.58it/s]2022-02-22 21:44:19,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▋                 | 4076/7350 [03:00<02:23, 22.76it/s]2022-02-22 21:44:19,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▋                 | 4079/7350 [03:00<02:49, 19.31it/s]2022-02-22 21:44:19,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4085/7350 [03:00<02:21, 23.12it/s]2022-02-22 21:44:19,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:19,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4088/7350 [03:00<02:38, 20.55it/s]2022-02-22 21:44:20,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4093/7350 [03:01<02:12, 24.54it/s]2022-02-22 21:44:20,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4096/7350 [03:01<02:18, 23.49it/s]2022-02-22 21:44:20,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4101/7350 [03:01<02:04, 26.06it/s]2022-02-22 21:44:20,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4104/7350 [03:01<02:28, 21.79it/s]2022-02-22 21:44:20,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4107/7350 [03:01<02:20, 23.06it/s]2022-02-22 21:44:20,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4111/7350 [03:01<02:05, 25.86it/s]2022-02-22 21:44:20,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:20,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4114/7350 [03:02<02:32, 21.28it/s]2022-02-22 21:44:21,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4117/7350 [03:02<02:25, 22.17it/s]2022-02-22 21:44:21,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4121/7350 [03:02<02:29, 21.64it/s]2022-02-22 21:44:21,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4124/7350 [03:02<02:26, 22.00it/s]2022-02-22 21:44:21,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4128/7350 [03:02<02:08, 25.00it/s]2022-02-22 21:44:21,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4131/7350 [03:02<02:12, 24.35it/s]2022-02-22 21:44:21,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4134/7350 [03:02<02:20, 22.84it/s]2022-02-22 21:44:21,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:21,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4137/7350 [03:02<02:20, 22.79it/s]2022-02-22 21:44:22,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4140/7350 [03:03<02:24, 22.18it/s]2022-02-22 21:44:22,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4143/7350 [03:03<03:12, 16.68it/s]2022-02-22 21:44:22,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████                 | 4151/7350 [03:03<02:04, 25.70it/s]2022-02-22 21:44:22,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4154/7350 [03:03<02:24, 22.09it/s]2022-02-22 21:44:22,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:22,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4161/7350 [03:04<02:06, 25.20it/s]2022-02-22 21:44:23,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4164/7350 [03:04<02:45, 19.26it/s]2022-02-22 21:44:23,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4171/7350 [03:04<02:07, 24.89it/s]2022-02-22 21:44:23,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4174/7350 [03:04<02:15, 23.50it/s]2022-02-22 21:44:23,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4177/7350 [03:04<02:10, 24.35it/s]2022-02-22 21:44:23,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4181/7350 [03:04<02:10, 24.30it/s]2022-02-22 21:44:23,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:23,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4184/7350 [03:05<02:21, 22.33it/s]2022-02-22 21:44:24,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4189/7350 [03:05<01:58, 26.64it/s]2022-02-22 21:44:24,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4192/7350 [03:05<02:30, 20.97it/s]2022-02-22 21:44:24,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4196/7350 [03:05<02:14, 23.38it/s]2022-02-22 21:44:24,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4201/7350 [03:05<02:23, 22.01it/s]2022-02-22 21:44:24,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:24,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4206/7350 [03:05<02:07, 24.60it/s]2022-02-22 21:44:25,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4210/7350 [03:06<02:04, 25.32it/s]2022-02-22 21:44:25,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4213/7350 [03:06<02:21, 22.11it/s]2022-02-22 21:44:25,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▍                | 4219/7350 [03:06<01:47, 29.09it/s]2022-02-22 21:44:25,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▍                | 4223/7350 [03:06<02:35, 20.16it/s]2022-02-22 21:44:25,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4227/7350 [03:06<02:24, 21.63it/s]2022-02-22 21:44:25,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:25,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4231/7350 [03:07<02:29, 20.86it/s]2022-02-22 21:44:26,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4239/7350 [03:07<02:03, 25.09it/s]2022-02-22 21:44:26,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4242/7350 [03:07<02:24, 21.55it/s]2022-02-22 21:44:26,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4249/7350 [03:07<01:52, 27.51it/s]2022-02-22 21:44:26,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:26,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4253/7350 [03:07<02:01, 25.48it/s]2022-02-22 21:44:27,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4259/7350 [03:08<01:47, 28.64it/s]2022-02-22 21:44:27,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4263/7350 [03:08<02:04, 24.78it/s]2022-02-22 21:44:27,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4269/7350 [03:08<01:51, 27.56it/s]2022-02-22 21:44:27,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4272/7350 [03:08<02:06, 24.39it/s]2022-02-22 21:44:27,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4276/7350 [03:08<02:02, 25.09it/s]2022-02-22 21:44:27,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:27,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4280/7350 [03:08<01:51, 27.44it/s]2022-02-22 21:44:27,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4283/7350 [03:09<02:20, 21.90it/s]2022-02-22 21:44:28,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4290/7350 [03:09<01:45, 28.87it/s]2022-02-22 21:44:28,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4294/7350 [03:09<02:10, 23.50it/s]2022-02-22 21:44:28,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4300/7350 [03:09<01:48, 28.21it/s]2022-02-22 21:44:28,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:28,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4304/7350 [03:10<02:19, 21.76it/s]2022-02-22 21:44:29,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4311/7350 [03:10<02:09, 23.43it/s]2022-02-22 21:44:29,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4316/7350 [03:10<01:54, 26.59it/s]2022-02-22 21:44:29,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4321/7350 [03:10<01:56, 25.95it/s]2022-02-22 21:44:29,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4326/7350 [03:10<01:55, 26.21it/s]2022-02-22 21:44:29,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:29,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4331/7350 [03:10<01:51, 27.10it/s]2022-02-22 21:44:30,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4335/7350 [03:11<01:45, 28.71it/s]2022-02-22 21:44:30,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4339/7350 [03:11<01:44, 28.70it/s]2022-02-22 21:44:30,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4342/7350 [03:11<02:20, 21.43it/s]2022-02-22 21:44:30,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4348/7350 [03:11<01:49, 27.51it/s]2022-02-22 21:44:30,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4352/7350 [03:11<01:59, 25.04it/s]2022-02-22 21:44:30,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:30,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4357/7350 [03:11<01:46, 28.06it/s]2022-02-22 21:44:30,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4361/7350 [03:12<01:54, 26.12it/s]2022-02-22 21:44:31,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4364/7350 [03:12<02:03, 24.21it/s]2022-02-22 21:44:31,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4369/7350 [03:12<01:55, 25.89it/s]2022-02-22 21:44:31,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4372/7350 [03:12<01:53, 26.25it/s]2022-02-22 21:44:31,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▏               | 4376/7350 [03:12<01:53, 26.10it/s]2022-02-22 21:44:31,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▏               | 4381/7350 [03:12<01:39, 29.75it/s]2022-02-22 21:44:31,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:31,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4385/7350 [03:12<01:49, 27.18it/s]2022-02-22 21:44:32,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4388/7350 [03:13<01:47, 27.45it/s]2022-02-22 21:44:32,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4391/7350 [03:13<01:46, 27.72it/s]2022-02-22 21:44:32,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4394/7350 [03:13<01:58, 25.01it/s]2022-02-22 21:44:32,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4397/7350 [03:13<01:57, 25.07it/s]2022-02-22 21:44:32,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4402/7350 [03:13<01:51, 26.44it/s]2022-02-22 21:44:32,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4405/7350 [03:13<01:55, 25.49it/s]2022-02-22 21:44:32,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4408/7350 [03:13<01:52, 26.14it/s]2022-02-22 21:44:32,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:32,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4412/7350 [03:14<01:49, 26.89it/s]2022-02-22 21:44:33,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4415/7350 [03:14<01:54, 25.55it/s]2022-02-22 21:44:33,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4418/7350 [03:14<01:55, 25.42it/s]2022-02-22 21:44:33,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4422/7350 [03:14<01:53, 25.83it/s]2022-02-22 21:44:33,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4426/7350 [03:14<01:43, 28.31it/s]2022-02-22 21:44:33,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4429/7350 [03:14<01:51, 26.22it/s]2022-02-22 21:44:33,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4432/7350 [03:14<01:50, 26.37it/s]2022-02-22 21:44:33,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4436/7350 [03:14<01:40, 28.98it/s]2022-02-22 21:44:33,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:33,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4439/7350 [03:15<01:58, 24.50it/s]2022-02-22 21:44:34,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4443/7350 [03:15<01:46, 27.19it/s]2022-02-22 21:44:34,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▌               | 4447/7350 [03:15<01:46, 27.27it/s]2022-02-22 21:44:34,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▌               | 4450/7350 [03:15<01:46, 27.33it/s]2022-02-22 21:44:34,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4454/7350 [03:15<01:47, 26.82it/s]2022-02-22 21:44:34,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4457/7350 [03:15<01:49, 26.49it/s]2022-02-22 21:44:34,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4460/7350 [03:15<01:51, 25.98it/s]2022-02-22 21:44:34,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:34,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4463/7350 [03:15<01:51, 25.91it/s]2022-02-22 21:44:35,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4467/7350 [03:16<01:49, 26.40it/s]2022-02-22 21:44:35,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4470/7350 [03:16<02:16, 21.10it/s]2022-02-22 21:44:35,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4477/7350 [03:16<01:41, 28.31it/s]2022-02-22 21:44:35,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4480/7350 [03:16<01:45, 27.26it/s]2022-02-22 21:44:35,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4483/7350 [03:16<01:46, 26.89it/s]2022-02-22 21:44:35,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4487/7350 [03:16<01:37, 29.30it/s]2022-02-22 21:44:35,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:35,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4490/7350 [03:16<01:41, 28.17it/s]2022-02-22 21:44:35,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4493/7350 [03:17<02:02, 23.29it/s]2022-02-22 21:44:36,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4498/7350 [03:17<01:47, 26.65it/s]2022-02-22 21:44:36,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4501/7350 [03:17<01:54, 24.83it/s]2022-02-22 21:44:36,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4504/7350 [03:17<01:50, 25.84it/s]2022-02-22 21:44:36,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4508/7350 [03:17<01:38, 28.77it/s]2022-02-22 21:44:36,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4511/7350 [03:17<01:55, 24.65it/s]2022-02-22 21:44:36,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:36,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4515/7350 [03:17<01:56, 24.31it/s]2022-02-22 21:44:37,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4520/7350 [03:18<01:40, 28.29it/s]2022-02-22 21:44:37,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|███████████████████████▉               | 4523/7350 [03:18<01:55, 24.51it/s]2022-02-22 21:44:37,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4526/7350 [03:18<01:51, 25.28it/s]2022-02-22 21:44:37,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4531/7350 [03:18<01:44, 26.93it/s]2022-02-22 21:44:37,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4534/7350 [03:18<01:43, 27.20it/s]2022-02-22 21:44:37,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4537/7350 [03:18<01:42, 27.42it/s]2022-02-22 21:44:37,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4541/7350 [03:18<01:39, 28.26it/s]2022-02-22 21:44:37,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:37,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4544/7350 [03:19<02:06, 22.18it/s]2022-02-22 21:44:38,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4547/7350 [03:19<02:02, 22.92it/s]2022-02-22 21:44:38,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4554/7350 [03:19<01:55, 24.27it/s]2022-02-22 21:44:38,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4560/7350 [03:19<01:35, 29.28it/s]2022-02-22 21:44:38,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:38,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4564/7350 [03:19<02:04, 22.39it/s]2022-02-22 21:44:39,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4571/7350 [03:20<01:38, 28.23it/s]2022-02-22 21:44:39,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4575/7350 [03:20<01:40, 27.71it/s]2022-02-22 21:44:39,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4579/7350 [03:20<01:45, 26.17it/s]2022-02-22 21:44:39,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4584/7350 [03:20<01:33, 29.54it/s]2022-02-22 21:44:39,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4588/7350 [03:20<01:53, 24.38it/s]2022-02-22 21:44:39,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:39,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4592/7350 [03:20<01:42, 26.80it/s]2022-02-22 21:44:40,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4595/7350 [03:21<01:42, 26.75it/s]2022-02-22 21:44:40,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4598/7350 [03:21<01:55, 23.74it/s]2022-02-22 21:44:40,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4605/7350 [03:21<01:33, 29.27it/s]2022-02-22 21:44:40,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4609/7350 [03:21<01:52, 24.40it/s]2022-02-22 21:44:40,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4615/7350 [03:21<01:32, 29.66it/s]2022-02-22 21:44:40,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:40,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4619/7350 [03:22<02:04, 21.90it/s]2022-02-22 21:44:41,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4626/7350 [03:22<01:47, 25.32it/s]2022-02-22 21:44:41,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4629/7350 [03:22<01:53, 23.89it/s]2022-02-22 21:44:41,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4635/7350 [03:22<01:32, 29.45it/s]2022-02-22 21:44:41,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4639/7350 [03:22<01:51, 24.25it/s]2022-02-22 21:44:41,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:41,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4645/7350 [03:22<01:28, 30.44it/s]2022-02-22 21:44:41,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4649/7350 [03:23<02:00, 22.39it/s]2022-02-22 21:44:42,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4656/7350 [03:23<01:31, 29.48it/s]2022-02-22 21:44:42,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4660/7350 [03:23<01:52, 23.90it/s]2022-02-22 21:44:42,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▊              | 4667/7350 [03:23<01:52, 23.80it/s]2022-02-22 21:44:42,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:42,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4671/7350 [03:24<01:46, 25.10it/s]2022-02-22 21:44:43,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4677/7350 [03:24<01:46, 25.07it/s]2022-02-22 21:44:43,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4680/7350 [03:24<01:43, 25.82it/s]2022-02-22 21:44:43,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4687/7350 [03:24<01:44, 25.39it/s]2022-02-22 21:44:43,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4690/7350 [03:24<01:42, 26.07it/s]2022-02-22 21:44:43,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:43,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4697/7350 [03:25<01:45, 25.23it/s]2022-02-22 21:44:44,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4703/7350 [03:25<01:29, 29.57it/s]2022-02-22 21:44:44,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4707/7350 [03:25<01:43, 25.43it/s]2022-02-22 21:44:44,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4713/7350 [03:25<01:38, 26.66it/s]2022-02-22 21:44:44,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4717/7350 [03:25<01:38, 26.79it/s]2022-02-22 21:44:44,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4720/7350 [03:25<01:41, 25.90it/s]2022-02-22 21:44:44,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:44,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4725/7350 [03:25<01:27, 29.93it/s]2022-02-22 21:44:45,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4729/7350 [03:26<01:47, 24.39it/s]2022-02-22 21:44:45,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▏             | 4736/7350 [03:26<01:22, 31.71it/s]2022-02-22 21:44:45,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▏             | 4740/7350 [03:26<01:52, 23.19it/s]2022-02-22 21:44:45,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:45,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4747/7350 [03:26<01:49, 23.75it/s]2022-02-22 21:44:46,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4751/7350 [03:27<01:41, 25.56it/s]2022-02-22 21:44:46,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4757/7350 [03:27<01:44, 24.89it/s]2022-02-22 21:44:46,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4760/7350 [03:27<01:44, 24.90it/s]2022-02-22 21:44:46,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4765/7350 [03:27<01:27, 29.52it/s]2022-02-22 21:44:46,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4769/7350 [03:27<01:39, 25.81it/s]2022-02-22 21:44:46,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4772/7350 [03:27<01:38, 26.16it/s]2022-02-22 21:44:46,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:46,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4777/7350 [03:28<01:39, 25.87it/s]2022-02-22 21:44:47,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4780/7350 [03:28<01:53, 22.73it/s]2022-02-22 21:44:47,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4786/7350 [03:28<01:25, 29.98it/s]2022-02-22 21:44:47,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4790/7350 [03:28<01:40, 25.52it/s]2022-02-22 21:44:47,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4793/7350 [03:28<01:42, 24.97it/s]2022-02-22 21:44:47,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4797/7350 [03:28<01:32, 27.59it/s]2022-02-22 21:44:47,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:47,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4801/7350 [03:29<01:44, 24.30it/s]2022-02-22 21:44:48,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▌             | 4807/7350 [03:29<01:24, 29.94it/s]2022-02-22 21:44:48,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▌             | 4811/7350 [03:29<01:43, 24.42it/s]2022-02-22 21:44:48,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4817/7350 [03:29<01:25, 29.48it/s]2022-02-22 21:44:48,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4821/7350 [03:29<01:41, 24.98it/s]2022-02-22 21:44:48,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:48,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4825/7350 [03:29<01:34, 26.81it/s]2022-02-22 21:44:48,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4828/7350 [03:30<01:46, 23.67it/s]2022-02-22 21:44:49,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4831/7350 [03:30<01:45, 23.95it/s]2022-02-22 21:44:49,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4837/7350 [03:30<01:38, 25.39it/s]2022-02-22 21:44:49,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4840/7350 [03:30<01:46, 23.48it/s]2022-02-22 21:44:49,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4847/7350 [03:30<01:36, 25.81it/s]2022-02-22 21:44:49,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:49,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4850/7350 [03:30<01:46, 23.54it/s]2022-02-22 21:44:49,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4857/7350 [03:31<01:26, 28.90it/s]2022-02-22 21:44:50,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4860/7350 [03:31<01:47, 23.25it/s]2022-02-22 21:44:50,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4867/7350 [03:31<01:21, 30.34it/s]2022-02-22 21:44:50,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4871/7350 [03:31<01:35, 25.89it/s]2022-02-22 21:44:50,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▉             | 4877/7350 [03:31<01:30, 27.46it/s]2022-02-22 21:44:50,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:50,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▉             | 4880/7350 [03:32<01:41, 24.34it/s]2022-02-22 21:44:51,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▉             | 4887/7350 [03:32<01:34, 26.16it/s]2022-02-22 21:44:51,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|█████████████████████████▉             | 4890/7350 [03:32<01:34, 26.02it/s]2022-02-22 21:44:51,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|█████████████████████████▉             | 4894/7350 [03:32<01:26, 28.33it/s]2022-02-22 21:44:51,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|█████████████████████████▉             | 4897/7350 [03:32<01:29, 27.31it/s]2022-02-22 21:44:51,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4900/7350 [03:32<01:40, 24.36it/s]2022-02-22 21:44:51,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:51,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4904/7350 [03:32<01:28, 27.64it/s]2022-02-22 21:44:51,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4907/7350 [03:33<01:28, 27.63it/s]2022-02-22 21:44:52,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4910/7350 [03:33<01:34, 25.89it/s]2022-02-22 21:44:52,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4913/7350 [03:33<01:34, 25.83it/s]2022-02-22 21:44:52,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4917/7350 [03:33<01:25, 28.41it/s]2022-02-22 21:44:52,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4920/7350 [03:33<01:29, 27.03it/s]2022-02-22 21:44:52,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4923/7350 [03:33<01:49, 22.27it/s]2022-02-22 21:44:52,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4929/7350 [03:33<01:30, 26.75it/s]2022-02-22 21:44:52,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:52,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4932/7350 [03:34<01:34, 25.63it/s]2022-02-22 21:44:53,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4938/7350 [03:34<01:29, 27.05it/s]2022-02-22 21:44:53,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4941/7350 [03:34<01:37, 24.70it/s]2022-02-22 21:44:53,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4944/7350 [03:34<01:34, 25.33it/s]2022-02-22 21:44:53,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4948/7350 [03:34<01:30, 26.49it/s]2022-02-22 21:44:53,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4952/7350 [03:34<01:22, 28.96it/s]2022-02-22 21:44:53,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4955/7350 [03:34<01:28, 27.17it/s]2022-02-22 21:44:53,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:53,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4959/7350 [03:35<01:30, 26.56it/s]2022-02-22 21:44:54,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4962/7350 [03:35<01:30, 26.44it/s]2022-02-22 21:44:54,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4965/7350 [03:35<01:34, 25.31it/s]2022-02-22 21:44:54,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4969/7350 [03:35<01:29, 26.48it/s]2022-02-22 21:44:54,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4972/7350 [03:35<01:28, 26.87it/s]2022-02-22 21:44:54,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4975/7350 [03:35<01:27, 27.18it/s]2022-02-22 21:44:54,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4978/7350 [03:35<01:35, 24.94it/s]2022-02-22 21:44:54,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4982/7350 [03:35<01:26, 27.46it/s]2022-02-22 21:44:54,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:54,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4985/7350 [03:36<01:37, 24.17it/s]2022-02-22 21:44:55,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4989/7350 [03:36<01:26, 27.33it/s]2022-02-22 21:44:55,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4992/7350 [03:36<01:26, 27.26it/s]2022-02-22 21:44:55,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 4995/7350 [03:36<01:38, 23.99it/s]2022-02-22 21:44:55,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5000/7350 [03:36<01:25, 27.38it/s]2022-02-22 21:44:55,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5003/7350 [03:36<01:41, 23.10it/s]2022-02-22 21:44:55,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:55,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5008/7350 [03:36<01:31, 25.52it/s]2022-02-22 21:44:55,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5012/7350 [03:37<01:32, 25.29it/s]2022-02-22 21:44:56,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5017/7350 [03:37<01:22, 28.27it/s]2022-02-22 21:44:56,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5020/7350 [03:37<01:30, 25.80it/s]2022-02-22 21:44:56,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5024/7350 [03:37<01:28, 26.14it/s]2022-02-22 21:44:56,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5028/7350 [03:37<01:26, 26.85it/s]2022-02-22 21:44:56,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5031/7350 [03:37<01:30, 25.64it/s]2022-02-22 21:44:56,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:56,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▋            | 5035/7350 [03:37<01:21, 28.27it/s]2022-02-22 21:44:57,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▋            | 5038/7350 [03:38<01:31, 25.27it/s]2022-02-22 21:44:57,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▋            | 5041/7350 [03:38<01:32, 25.08it/s]2022-02-22 21:44:57,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5046/7350 [03:38<01:26, 26.50it/s]2022-02-22 21:44:57,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5050/7350 [03:38<01:32, 24.77it/s]2022-02-22 21:44:57,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5055/7350 [03:38<01:17, 29.51it/s]2022-02-22 21:44:57,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5059/7350 [03:38<01:21, 28.08it/s]2022-02-22 21:44:57,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:57,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5062/7350 [03:38<01:28, 25.89it/s]2022-02-22 21:44:58,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5065/7350 [03:39<01:29, 25.60it/s]2022-02-22 21:44:58,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5068/7350 [03:39<01:26, 26.41it/s]2022-02-22 21:44:58,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5071/7350 [03:39<01:27, 26.02it/s]2022-02-22 21:44:58,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5074/7350 [03:39<01:30, 25.29it/s]2022-02-22 21:44:58,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5077/7350 [03:39<01:32, 24.63it/s]2022-02-22 21:44:58,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5082/7350 [03:39<01:21, 27.81it/s]2022-02-22 21:44:58,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5085/7350 [03:39<01:30, 24.95it/s]2022-02-22 21:44:58,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:58,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5091/7350 [03:40<01:15, 29.82it/s]2022-02-22 21:44:59,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5094/7350 [03:40<01:38, 22.81it/s]2022-02-22 21:44:59,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5098/7350 [03:40<01:28, 25.54it/s]2022-02-22 21:44:59,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5103/7350 [03:40<01:22, 27.31it/s]2022-02-22 21:44:59,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5106/7350 [03:40<01:25, 26.34it/s]2022-02-22 21:44:59,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████            | 5111/7350 [03:40<01:15, 29.64it/s]2022-02-22 21:44:59,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:44:59,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5115/7350 [03:40<01:30, 24.72it/s]2022-02-22 21:45:00,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5118/7350 [03:41<01:27, 25.54it/s]2022-02-22 21:45:00,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5123/7350 [03:41<01:30, 24.49it/s]2022-02-22 21:45:00,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5127/7350 [03:41<01:25, 25.93it/s]2022-02-22 21:45:00,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5132/7350 [03:41<01:15, 29.25it/s]2022-02-22 21:45:00,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5136/7350 [03:41<01:21, 27.13it/s]2022-02-22 21:45:00,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5139/7350 [03:41<01:27, 25.19it/s]2022-02-22 21:45:00,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:00,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5143/7350 [03:42<01:33, 23.69it/s]2022-02-22 21:45:01,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5148/7350 [03:42<01:23, 26.25it/s]2022-02-22 21:45:01,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5153/7350 [03:42<01:19, 27.51it/s]2022-02-22 21:45:01,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5156/7350 [03:42<01:23, 26.38it/s]2022-02-22 21:45:01,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5159/7350 [03:42<01:25, 25.70it/s]2022-02-22 21:45:01,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5163/7350 [03:42<01:17, 28.29it/s]2022-02-22 21:45:01,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:01,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5166/7350 [03:42<01:30, 24.05it/s]2022-02-22 21:45:02,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5169/7350 [03:43<01:26, 25.31it/s]2022-02-22 21:45:02,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5174/7350 [03:43<01:24, 25.72it/s]2022-02-22 21:45:02,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5177/7350 [03:43<01:36, 22.55it/s]2022-02-22 21:45:02,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5181/7350 [03:43<01:23, 26.07it/s]2022-02-22 21:45:02,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5184/7350 [03:43<01:29, 24.23it/s]2022-02-22 21:45:02,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5188/7350 [03:43<01:31, 23.61it/s]2022-02-22 21:45:02,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:02,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5194/7350 [03:44<01:19, 27.20it/s]2022-02-22 21:45:03,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5197/7350 [03:44<01:18, 27.29it/s]2022-02-22 21:45:03,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5200/7350 [03:44<01:26, 24.73it/s]2022-02-22 21:45:03,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5203/7350 [03:44<01:33, 22.89it/s]2022-02-22 21:45:03,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5208/7350 [03:44<01:19, 26.86it/s]2022-02-22 21:45:03,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5211/7350 [03:44<01:21, 26.34it/s]2022-02-22 21:45:03,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5214/7350 [03:44<01:21, 26.35it/s]2022-02-22 21:45:03,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:03,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5218/7350 [03:44<01:18, 27.03it/s]2022-02-22 21:45:04,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5222/7350 [03:45<01:17, 27.36it/s]2022-02-22 21:45:04,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5225/7350 [03:45<01:22, 25.76it/s]2022-02-22 21:45:04,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5228/7350 [03:45<01:19, 26.55it/s]2022-02-22 21:45:04,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5232/7350 [03:45<01:13, 28.63it/s]2022-02-22 21:45:04,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5235/7350 [03:45<01:23, 25.29it/s]2022-02-22 21:45:04,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5238/7350 [03:45<01:28, 23.93it/s]2022-02-22 21:45:04,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:04,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5244/7350 [03:45<01:14, 28.40it/s]2022-02-22 21:45:04,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5247/7350 [03:46<01:26, 24.39it/s]2022-02-22 21:45:05,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5251/7350 [03:46<01:20, 26.16it/s]2022-02-22 21:45:05,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▉           | 5255/7350 [03:46<01:25, 24.55it/s]2022-02-22 21:45:05,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5259/7350 [03:46<01:16, 27.44it/s]2022-02-22 21:45:05,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5262/7350 [03:46<01:20, 25.96it/s]2022-02-22 21:45:05,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5266/7350 [03:46<01:15, 27.65it/s]2022-02-22 21:45:05,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5269/7350 [03:46<01:19, 26.16it/s]2022-02-22 21:45:05,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:05,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5272/7350 [03:47<01:19, 26.14it/s]2022-02-22 21:45:06,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5277/7350 [03:47<01:21, 25.46it/s]2022-02-22 21:45:06,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5280/7350 [03:47<01:22, 25.01it/s]2022-02-22 21:45:06,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5286/7350 [03:47<01:08, 29.95it/s]2022-02-22 21:45:06,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5290/7350 [03:47<01:20, 25.71it/s]2022-02-22 21:45:06,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5294/7350 [03:47<01:17, 26.42it/s]2022-02-22 21:45:06,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:06,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5297/7350 [03:48<01:29, 22.85it/s]2022-02-22 21:45:07,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5301/7350 [03:48<01:24, 24.26it/s]2022-02-22 21:45:07,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5307/7350 [03:48<01:17, 26.27it/s]2022-02-22 21:45:07,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5311/7350 [03:48<01:14, 27.41it/s]2022-02-22 21:45:07,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5314/7350 [03:48<01:26, 23.65it/s]2022-02-22 21:45:07,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5319/7350 [03:48<01:12, 27.96it/s]2022-02-22 21:45:07,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:07,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5322/7350 [03:49<01:29, 22.69it/s]2022-02-22 21:45:08,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▎          | 5328/7350 [03:49<01:08, 29.66it/s]2022-02-22 21:45:08,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5332/7350 [03:49<01:12, 27.79it/s]2022-02-22 21:45:08,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5336/7350 [03:49<01:11, 28.35it/s]2022-02-22 21:45:08,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5340/7350 [03:49<01:22, 24.22it/s]2022-02-22 21:45:08,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5344/7350 [03:49<01:19, 25.14it/s]2022-02-22 21:45:08,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:08,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5349/7350 [03:49<01:11, 27.96it/s]2022-02-22 21:45:09,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5352/7350 [03:50<01:16, 26.16it/s]2022-02-22 21:45:09,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5355/7350 [03:50<01:17, 25.81it/s]2022-02-22 21:45:09,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5360/7350 [03:50<01:14, 26.86it/s]2022-02-22 21:45:09,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5363/7350 [03:50<01:22, 24.18it/s]2022-02-22 21:45:09,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5369/7350 [03:50<01:09, 28.49it/s]2022-02-22 21:45:09,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5372/7350 [03:50<01:14, 26.52it/s]2022-02-22 21:45:09,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:09,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5375/7350 [03:50<01:17, 25.63it/s]2022-02-22 21:45:10,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5378/7350 [03:51<01:15, 26.06it/s]2022-02-22 21:45:10,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5382/7350 [03:51<01:11, 27.60it/s]2022-02-22 21:45:10,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5386/7350 [03:51<01:11, 27.37it/s]2022-02-22 21:45:10,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5389/7350 [03:51<01:15, 25.96it/s]2022-02-22 21:45:10,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5393/7350 [03:51<01:17, 25.30it/s]2022-02-22 21:45:10,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▋          | 5397/7350 [03:51<01:24, 23.23it/s]2022-02-22 21:45:10,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:10,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5403/7350 [03:52<01:09, 28.06it/s]2022-02-22 21:45:11,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5406/7350 [03:52<01:14, 26.22it/s]2022-02-22 21:45:11,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5410/7350 [03:52<01:10, 27.47it/s]2022-02-22 21:45:11,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5414/7350 [03:52<01:08, 28.13it/s]2022-02-22 21:45:11,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5417/7350 [03:52<01:18, 24.55it/s]2022-02-22 21:45:11,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5422/7350 [03:52<01:06, 29.16it/s]2022-02-22 21:45:11,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:11,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5426/7350 [03:52<01:16, 25.28it/s]2022-02-22 21:45:11,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5430/7350 [03:53<01:07, 28.38it/s]2022-02-22 21:45:12,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5434/7350 [03:53<01:16, 25.01it/s]2022-02-22 21:45:12,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5437/7350 [03:53<01:19, 24.00it/s]2022-02-22 21:45:12,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5442/7350 [03:53<01:06, 28.70it/s]2022-02-22 21:45:12,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5446/7350 [03:53<01:20, 23.76it/s]2022-02-22 21:45:12,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5452/7350 [03:53<01:02, 30.51it/s]2022-02-22 21:45:12,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:12,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5456/7350 [03:54<01:22, 23.05it/s]2022-02-22 21:45:13,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5461/7350 [03:54<01:10, 26.81it/s]2022-02-22 21:45:13,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5465/7350 [03:54<01:19, 23.79it/s]2022-02-22 21:45:13,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████          | 5471/7350 [03:54<01:07, 27.66it/s]2022-02-22 21:45:13,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████          | 5475/7350 [03:54<01:15, 24.70it/s]2022-02-22 21:45:13,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:13,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████          | 5481/7350 [03:54<01:04, 28.90it/s]2022-02-22 21:45:14,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████          | 5485/7350 [03:55<01:16, 24.24it/s]2022-02-22 21:45:14,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5491/7350 [03:55<01:05, 28.20it/s]2022-02-22 21:45:14,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5495/7350 [03:55<01:11, 25.98it/s]2022-02-22 21:45:14,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5500/7350 [03:55<01:02, 29.82it/s]2022-02-22 21:45:14,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:14,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5504/7350 [03:55<01:21, 22.63it/s]2022-02-22 21:45:15,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5511/7350 [03:56<01:06, 27.47it/s]2022-02-22 21:45:15,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5515/7350 [03:56<01:09, 26.37it/s]2022-02-22 21:45:15,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5519/7350 [03:56<01:05, 27.82it/s]2022-02-22 21:45:15,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5523/7350 [03:56<01:05, 27.91it/s]2022-02-22 21:45:15,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5526/7350 [03:56<01:08, 26.82it/s]2022-02-22 21:45:15,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5530/7350 [03:56<01:03, 28.49it/s]2022-02-22 21:45:15,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:15,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5533/7350 [03:56<01:10, 25.62it/s]2022-02-22 21:45:16,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5537/7350 [03:57<01:11, 25.41it/s]2022-02-22 21:45:16,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5540/7350 [03:57<01:14, 24.45it/s]2022-02-22 21:45:16,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5544/7350 [03:57<01:08, 26.40it/s]2022-02-22 21:45:16,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5547/7350 [03:57<01:07, 26.78it/s]2022-02-22 21:45:16,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▍         | 5550/7350 [03:57<01:06, 26.88it/s]2022-02-22 21:45:16,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▍         | 5554/7350 [03:57<01:05, 27.35it/s]2022-02-22 21:45:16,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▍         | 5557/7350 [03:57<01:13, 24.43it/s]2022-02-22 21:45:16,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:16,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5561/7350 [03:58<01:05, 27.43it/s]2022-02-22 21:45:17,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5566/7350 [03:58<01:01, 28.92it/s]2022-02-22 21:45:17,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5569/7350 [03:58<01:16, 23.23it/s]2022-02-22 21:45:17,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5576/7350 [03:58<00:55, 32.03it/s]2022-02-22 21:45:17,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5580/7350 [03:58<01:14, 23.68it/s]2022-02-22 21:45:17,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:17,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5587/7350 [03:59<01:14, 23.74it/s]2022-02-22 21:45:18,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5591/7350 [03:59<01:09, 25.34it/s]2022-02-22 21:45:18,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5597/7350 [03:59<01:10, 24.86it/s]2022-02-22 21:45:18,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5604/7350 [03:59<00:56, 31.12it/s]2022-02-22 21:45:18,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5608/7350 [03:59<01:11, 24.36it/s]2022-02-22 21:45:18,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:18,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5612/7350 [03:59<01:05, 26.47it/s]2022-02-22 21:45:19,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5616/7350 [04:00<01:09, 25.13it/s]2022-02-22 21:45:19,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5620/7350 [04:00<01:05, 26.27it/s]2022-02-22 21:45:19,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▊         | 5626/7350 [04:00<01:09, 24.72it/s]2022-02-22 21:45:19,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▊         | 5630/7350 [04:00<01:04, 26.60it/s]2022-02-22 21:45:19,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5636/7350 [04:00<00:58, 29.30it/s]2022-02-22 21:45:19,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:19,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5640/7350 [04:01<01:00, 28.16it/s]2022-02-22 21:45:20,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5644/7350 [04:01<00:57, 29.60it/s]2022-02-22 21:45:20,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5648/7350 [04:01<01:12, 23.37it/s]2022-02-22 21:45:20,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5655/7350 [04:01<00:57, 29.24it/s]2022-02-22 21:45:20,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5659/7350 [04:01<01:04, 26.10it/s]2022-02-22 21:45:20,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5662/7350 [04:01<01:06, 25.27it/s]2022-02-22 21:45:20,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:20,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5667/7350 [04:01<00:57, 29.14it/s]2022-02-22 21:45:21,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5671/7350 [04:02<01:09, 24.17it/s]2022-02-22 21:45:21,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5676/7350 [04:02<00:58, 28.82it/s]2022-02-22 21:45:21,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5680/7350 [04:02<01:04, 26.03it/s]2022-02-22 21:45:21,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5686/7350 [04:02<00:57, 29.01it/s]2022-02-22 21:45:21,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:21,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5690/7350 [04:02<01:07, 24.75it/s]2022-02-22 21:45:21,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5696/7350 [04:03<01:02, 26.59it/s]2022-02-22 21:45:22,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▏        | 5699/7350 [04:03<01:07, 24.62it/s]2022-02-22 21:45:22,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5702/7350 [04:03<01:04, 25.58it/s]2022-02-22 21:45:22,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5706/7350 [04:03<01:06, 24.80it/s]2022-02-22 21:45:22,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5709/7350 [04:03<01:03, 25.83it/s]2022-02-22 21:45:22,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5712/7350 [04:03<01:02, 26.33it/s]2022-02-22 21:45:22,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5716/7350 [04:03<00:59, 27.60it/s]2022-02-22 21:45:22,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:22,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5719/7350 [04:04<01:01, 26.51it/s]2022-02-22 21:45:23,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5722/7350 [04:04<01:04, 25.41it/s]2022-02-22 21:45:23,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5726/7350 [04:04<00:56, 28.78it/s]2022-02-22 21:45:23,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5729/7350 [04:04<01:07, 23.92it/s]2022-02-22 21:45:23,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5732/7350 [04:04<01:05, 24.63it/s]2022-02-22 21:45:23,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5736/7350 [04:04<00:57, 27.85it/s]2022-02-22 21:45:23,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5739/7350 [04:04<01:08, 23.50it/s]2022-02-22 21:45:23,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:23,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5744/7350 [04:04<00:56, 28.63it/s]2022-02-22 21:45:24,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5748/7350 [04:05<01:14, 21.56it/s]2022-02-22 21:45:24,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5752/7350 [04:05<01:04, 24.89it/s]2022-02-22 21:45:24,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5756/7350 [04:05<00:57, 27.82it/s]2022-02-22 21:45:24,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5760/7350 [04:05<01:08, 23.07it/s]2022-02-22 21:45:24,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5765/7350 [04:05<00:57, 27.43it/s]2022-02-22 21:45:24,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:24,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5769/7350 [04:05<01:00, 26.09it/s]2022-02-22 21:45:25,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5774/7350 [04:06<00:55, 28.33it/s]2022-02-22 21:45:25,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5778/7350 [04:06<01:01, 25.44it/s]2022-02-22 21:45:25,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5781/7350 [04:06<00:59, 26.24it/s]2022-02-22 21:45:25,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5784/7350 [04:06<00:59, 26.47it/s]2022-02-22 21:45:25,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5787/7350 [04:06<00:59, 26.25it/s]2022-02-22 21:45:25,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5790/7350 [04:06<01:05, 23.80it/s]2022-02-22 21:45:25,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:25,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5793/7350 [04:06<01:11, 21.85it/s]2022-02-22 21:45:26,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5798/7350 [04:07<00:56, 27.44it/s]2022-02-22 21:45:26,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5801/7350 [04:07<00:57, 27.06it/s]2022-02-22 21:45:26,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5804/7350 [04:07<01:07, 22.92it/s]2022-02-22 21:45:26,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5807/7350 [04:07<01:04, 23.96it/s]2022-02-22 21:45:26,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5812/7350 [04:07<01:06, 23.05it/s]2022-02-22 21:45:26,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5817/7350 [04:07<01:00, 25.21it/s]2022-02-22 21:45:26,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:26,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5822/7350 [04:08<00:53, 28.69it/s]2022-02-22 21:45:27,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5826/7350 [04:08<01:06, 22.87it/s]2022-02-22 21:45:27,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5832/7350 [04:08<00:51, 29.76it/s]2022-02-22 21:45:27,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5836/7350 [04:08<01:07, 22.51it/s]2022-02-22 21:45:27,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5842/7350 [04:08<00:53, 28.22it/s]2022-02-22 21:45:27,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:27,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5846/7350 [04:09<01:04, 23.25it/s]2022-02-22 21:45:28,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5852/7350 [04:09<00:54, 27.54it/s]2022-02-22 21:45:28,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5856/7350 [04:09<01:01, 24.41it/s]2022-02-22 21:45:28,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5861/7350 [04:09<00:55, 26.70it/s]2022-02-22 21:45:28,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5865/7350 [04:09<00:59, 24.80it/s]2022-02-22 21:45:28,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5868/7350 [04:09<01:00, 24.36it/s]2022-02-22 21:45:28,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:28,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5872/7350 [04:10<00:55, 26.46it/s]2022-02-22 21:45:29,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5875/7350 [04:10<01:01, 23.83it/s]2022-02-22 21:45:29,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5878/7350 [04:10<00:59, 24.72it/s]2022-02-22 21:45:29,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5883/7350 [04:10<00:48, 29.96it/s]2022-02-22 21:45:29,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5887/7350 [04:10<00:58, 24.92it/s]2022-02-22 21:45:29,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5892/7350 [04:10<00:51, 28.48it/s]2022-02-22 21:45:29,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:29,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5896/7350 [04:10<00:58, 24.85it/s]2022-02-22 21:45:30,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5900/7350 [04:11<00:54, 26.78it/s]2022-02-22 21:45:30,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5903/7350 [04:11<00:59, 24.24it/s]2022-02-22 21:45:30,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5908/7350 [04:11<00:51, 28.21it/s]2022-02-22 21:45:30,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5912/7350 [04:11<00:47, 29.97it/s]2022-02-22 21:45:30,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▍       | 5916/7350 [04:11<01:03, 22.76it/s]2022-02-22 21:45:30,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5922/7350 [04:11<00:47, 29.85it/s]2022-02-22 21:45:30,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:30,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5926/7350 [04:12<01:00, 23.36it/s]2022-02-22 21:45:31,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5932/7350 [04:12<00:48, 29.42it/s]2022-02-22 21:45:31,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5936/7350 [04:12<01:04, 21.76it/s]2022-02-22 21:45:31,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5943/7350 [04:12<00:48, 28.97it/s]2022-02-22 21:45:31,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5947/7350 [04:12<00:55, 25.07it/s]2022-02-22 21:45:31,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:31,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5953/7350 [04:13<00:46, 29.79it/s]2022-02-22 21:45:32,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5957/7350 [04:13<00:58, 23.83it/s]2022-02-22 21:45:32,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5963/7350 [04:13<00:47, 29.34it/s]2022-02-22 21:45:32,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5967/7350 [04:13<00:56, 24.50it/s]2022-02-22 21:45:32,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5971/7350 [04:13<00:54, 25.18it/s]2022-02-22 21:45:32,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:32,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5975/7350 [04:13<00:53, 25.81it/s]2022-02-22 21:45:33,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5978/7350 [04:14<00:53, 25.54it/s]2022-02-22 21:45:33,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▊       | 5984/7350 [04:14<00:51, 26.42it/s]2022-02-22 21:45:33,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▊       | 5987/7350 [04:14<00:57, 23.53it/s]2022-02-22 21:45:33,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 5993/7350 [04:14<00:46, 29.09it/s]2022-02-22 21:45:33,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 5997/7350 [04:14<00:59, 22.61it/s]2022-02-22 21:45:33,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:33,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 6003/7350 [04:15<00:47, 28.61it/s]2022-02-22 21:45:34,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 6007/7350 [04:15<00:56, 23.72it/s]2022-02-22 21:45:34,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6013/7350 [04:15<00:48, 27.32it/s]2022-02-22 21:45:34,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6017/7350 [04:15<00:54, 24.57it/s]2022-02-22 21:45:34,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6022/7350 [04:15<00:45, 29.00it/s]2022-02-22 21:45:34,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6026/7350 [04:15<00:48, 27.51it/s]2022-02-22 21:45:34,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:34,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6030/7350 [04:16<00:50, 25.96it/s]2022-02-22 21:45:35,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6034/7350 [04:16<00:52, 25.29it/s]2022-02-22 21:45:35,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6037/7350 [04:16<00:50, 26.07it/s]2022-02-22 21:45:35,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6040/7350 [04:16<00:55, 23.67it/s]2022-02-22 21:45:35,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6046/7350 [04:16<00:44, 29.06it/s]2022-02-22 21:45:35,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6050/7350 [04:16<00:52, 24.63it/s]2022-02-22 21:45:35,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:35,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6053/7350 [04:16<00:51, 25.43it/s]2022-02-22 21:45:36,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████▏      | 6059/7350 [04:17<00:52, 24.57it/s]2022-02-22 21:45:36,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6065/7350 [04:17<00:43, 29.70it/s]2022-02-22 21:45:36,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6069/7350 [04:17<00:50, 25.45it/s]2022-02-22 21:45:36,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6072/7350 [04:17<00:54, 23.24it/s]2022-02-22 21:45:36,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:36,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6079/7350 [04:17<00:48, 26.22it/s]2022-02-22 21:45:37,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6082/7350 [04:18<00:54, 23.26it/s]2022-02-22 21:45:37,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6089/7350 [04:18<00:45, 27.42it/s]2022-02-22 21:45:37,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6092/7350 [04:18<00:55, 22.83it/s]2022-02-22 21:45:37,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6099/7350 [04:18<00:44, 28.10it/s]2022-02-22 21:45:37,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6102/7350 [04:18<00:47, 26.41it/s]2022-02-22 21:45:37,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:37,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6106/7350 [04:19<00:44, 28.04it/s]2022-02-22 21:45:38,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6109/7350 [04:19<00:45, 27.35it/s]2022-02-22 21:45:38,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6112/7350 [04:19<00:48, 25.71it/s]2022-02-22 21:45:38,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6115/7350 [04:19<00:50, 24.64it/s]2022-02-22 21:45:38,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6119/7350 [04:19<00:44, 27.56it/s]2022-02-22 21:45:38,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6122/7350 [04:19<00:48, 25.35it/s]2022-02-22 21:45:38,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6126/7350 [04:19<00:46, 26.57it/s]2022-02-22 21:45:38,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:38,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6130/7350 [04:19<00:46, 26.48it/s]2022-02-22 21:45:39,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6133/7350 [04:20<00:44, 27.06it/s]2022-02-22 21:45:39,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 6138/7350 [04:20<00:39, 30.30it/s]2022-02-22 21:45:39,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 6142/7350 [04:20<00:48, 24.97it/s]2022-02-22 21:45:39,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 6147/7350 [04:20<00:42, 28.03it/s]2022-02-22 21:45:39,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6150/7350 [04:20<00:45, 26.23it/s]2022-02-22 21:45:39,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6153/7350 [04:20<00:48, 24.58it/s]2022-02-22 21:45:39,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:39,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6156/7350 [04:20<00:47, 25.35it/s]2022-02-22 21:45:40,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6159/7350 [04:21<00:45, 26.05it/s]2022-02-22 21:45:40,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6162/7350 [04:21<00:49, 24.05it/s]2022-02-22 21:45:40,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6167/7350 [04:21<00:44, 26.49it/s]2022-02-22 21:45:40,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6170/7350 [04:21<00:45, 25.74it/s]2022-02-22 21:45:40,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6175/7350 [04:21<00:44, 26.64it/s]2022-02-22 21:45:40,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6178/7350 [04:21<00:43, 26.71it/s]2022-02-22 21:45:40,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6181/7350 [04:21<00:45, 25.63it/s]2022-02-22 21:45:40,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:40,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6186/7350 [04:22<00:40, 29.03it/s]2022-02-22 21:45:41,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6189/7350 [04:22<00:47, 24.58it/s]2022-02-22 21:45:41,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6193/7350 [04:22<00:41, 27.93it/s]2022-02-22 21:45:41,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6196/7350 [04:22<00:43, 26.67it/s]2022-02-22 21:45:41,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6199/7350 [04:22<00:45, 25.49it/s]2022-02-22 21:45:41,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6202/7350 [04:22<00:45, 25.12it/s]2022-02-22 21:45:41,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6206/7350 [04:22<00:40, 27.91it/s]2022-02-22 21:45:41,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:41,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6209/7350 [04:22<00:48, 23.75it/s]2022-02-22 21:45:42,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|████████████████████████████████▉      | 6215/7350 [04:23<00:37, 30.25it/s]2022-02-22 21:45:42,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|████████████████████████████████▉      | 6219/7350 [04:23<00:45, 24.66it/s]2022-02-22 21:45:42,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6223/7350 [04:23<00:46, 24.02it/s]2022-02-22 21:45:42,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6226/7350 [04:23<00:44, 25.23it/s]2022-02-22 21:45:42,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6230/7350 [04:23<00:41, 26.73it/s]2022-02-22 21:45:42,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6234/7350 [04:23<00:43, 25.90it/s]2022-02-22 21:45:42,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:42,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6238/7350 [04:24<00:41, 26.67it/s]2022-02-22 21:45:43,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6243/7350 [04:24<00:35, 30.89it/s]2022-02-22 21:45:43,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6247/7350 [04:24<00:36, 29.94it/s]2022-02-22 21:45:43,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6251/7350 [04:24<00:42, 25.68it/s]2022-02-22 21:45:43,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6254/7350 [04:24<00:44, 24.41it/s]2022-02-22 21:45:43,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6258/7350 [04:24<00:39, 27.57it/s]2022-02-22 21:45:43,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:43,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6261/7350 [04:24<00:44, 24.47it/s]2022-02-22 21:45:43,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6264/7350 [04:25<00:44, 24.58it/s]2022-02-22 21:45:44,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6268/7350 [04:25<00:38, 27.81it/s]2022-02-22 21:45:44,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6271/7350 [04:25<00:44, 24.41it/s]2022-02-22 21:45:44,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6277/7350 [04:25<00:36, 29.49it/s]2022-02-22 21:45:44,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6281/7350 [04:25<00:45, 23.32it/s]2022-02-22 21:45:44,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▎     | 6287/7350 [04:25<00:36, 29.12it/s]2022-02-22 21:45:44,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:44,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6291/7350 [04:26<00:42, 25.11it/s]2022-02-22 21:45:45,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6297/7350 [04:26<00:37, 27.81it/s]2022-02-22 21:45:45,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6301/7350 [04:26<00:41, 25.54it/s]2022-02-22 21:45:45,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6306/7350 [04:26<00:35, 29.63it/s]2022-02-22 21:45:45,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6310/7350 [04:26<00:42, 24.44it/s]2022-02-22 21:45:45,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:45,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6314/7350 [04:26<00:37, 27.27it/s]2022-02-22 21:45:45,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6318/7350 [04:27<00:39, 26.46it/s]2022-02-22 21:45:46,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6321/7350 [04:27<00:40, 25.71it/s]2022-02-22 21:45:46,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6325/7350 [04:27<00:35, 28.74it/s]2022-02-22 21:45:46,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6329/7350 [04:27<00:43, 23.52it/s]2022-02-22 21:45:46,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6335/7350 [04:27<00:32, 30.78it/s]2022-02-22 21:45:46,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6339/7350 [04:27<00:41, 24.29it/s]2022-02-22 21:45:46,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:46,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6344/7350 [04:27<00:34, 29.07it/s]2022-02-22 21:45:47,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6348/7350 [04:28<00:42, 23.43it/s]2022-02-22 21:45:47,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6354/7350 [04:28<00:33, 29.69it/s]2022-02-22 21:45:47,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▋     | 6358/7350 [04:28<00:46, 21.23it/s]2022-02-22 21:45:47,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6365/7350 [04:28<00:36, 26.66it/s]2022-02-22 21:45:47,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:47,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6369/7350 [04:29<00:38, 25.34it/s]2022-02-22 21:45:48,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6375/7350 [04:29<00:37, 25.86it/s]2022-02-22 21:45:48,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6378/7350 [04:29<00:41, 23.22it/s]2022-02-22 21:45:48,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6385/7350 [04:29<00:34, 27.69it/s]2022-02-22 21:45:48,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6388/7350 [04:29<00:36, 26.14it/s]2022-02-22 21:45:48,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:48,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6393/7350 [04:29<00:32, 29.53it/s]2022-02-22 21:45:48,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6397/7350 [04:30<00:34, 27.51it/s]2022-02-22 21:45:49,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6400/7350 [04:30<00:34, 27.91it/s]2022-02-22 21:45:49,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6404/7350 [04:30<00:33, 28.60it/s]2022-02-22 21:45:49,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6407/7350 [04:30<00:37, 25.08it/s]2022-02-22 21:45:49,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6411/7350 [04:30<00:35, 26.21it/s]2022-02-22 21:45:49,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6415/7350 [04:30<00:37, 24.84it/s]2022-02-22 21:45:49,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:49,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6419/7350 [04:30<00:33, 27.50it/s]2022-02-22 21:45:49,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6424/7350 [04:31<00:36, 25.19it/s]2022-02-22 21:45:50,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6427/7350 [04:31<00:38, 24.20it/s]2022-02-22 21:45:50,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6432/7350 [04:31<00:36, 25.22it/s]2022-02-22 21:45:50,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6435/7350 [04:31<00:35, 25.58it/s]2022-02-22 21:45:50,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6440/7350 [04:31<00:30, 29.55it/s]2022-02-22 21:45:50,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6444/7350 [04:31<00:33, 27.20it/s]2022-02-22 21:45:50,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:50,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6447/7350 [04:31<00:33, 27.23it/s]2022-02-22 21:45:51,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6451/7350 [04:32<00:29, 30.06it/s]2022-02-22 21:45:51,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6455/7350 [04:32<00:34, 26.21it/s]2022-02-22 21:45:51,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6458/7350 [04:32<00:36, 24.27it/s]2022-02-22 21:45:51,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6463/7350 [04:32<00:32, 27.14it/s]2022-02-22 21:45:51,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6466/7350 [04:32<00:38, 22.72it/s]2022-02-22 21:45:51,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:51,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6473/7350 [04:32<00:32, 27.36it/s]2022-02-22 21:45:52,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6476/7350 [04:33<00:39, 21.95it/s]2022-02-22 21:45:52,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6483/7350 [04:33<00:30, 28.29it/s]2022-02-22 21:45:52,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6487/7350 [04:33<00:32, 26.31it/s]2022-02-22 21:45:52,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6492/7350 [04:33<00:29, 28.75it/s]2022-02-22 21:45:52,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6496/7350 [04:33<00:27, 30.71it/s]2022-02-22 21:45:52,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:52,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6500/7350 [04:34<00:40, 21.17it/s]2022-02-22 21:45:53,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6507/7350 [04:34<00:30, 27.49it/s]2022-02-22 21:45:53,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6511/7350 [04:34<00:33, 25.22it/s]2022-02-22 21:45:53,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6517/7350 [04:34<00:28, 29.37it/s]2022-02-22 21:45:53,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6521/7350 [04:34<00:34, 23.95it/s]2022-02-22 21:45:53,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:53,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6526/7350 [04:34<00:31, 26.46it/s]2022-02-22 21:45:54,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6529/7350 [04:35<00:32, 25.54it/s]2022-02-22 21:45:54,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6532/7350 [04:35<00:31, 26.37it/s]2022-02-22 21:45:54,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6535/7350 [04:35<00:31, 26.12it/s]2022-02-22 21:45:54,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6538/7350 [04:35<00:30, 26.37it/s]2022-02-22 21:45:54,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6541/7350 [04:35<00:30, 26.29it/s]2022-02-22 21:45:54,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6544/7350 [04:35<00:29, 27.08it/s]2022-02-22 21:45:54,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6547/7350 [04:35<00:28, 27.79it/s]2022-02-22 21:45:54,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:54,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6550/7350 [04:35<00:30, 26.39it/s]2022-02-22 21:45:55,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6553/7350 [04:36<00:36, 21.87it/s]2022-02-22 21:45:55,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6557/7350 [04:36<00:31, 25.40it/s]2022-02-22 21:45:55,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6561/7350 [04:36<00:27, 28.82it/s]2022-02-22 21:45:55,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6565/7350 [04:36<00:28, 27.24it/s]2022-02-22 21:45:55,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6568/7350 [04:36<00:31, 24.71it/s]2022-02-22 21:45:55,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6572/7350 [04:36<00:33, 23.47it/s]2022-02-22 21:45:55,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:55,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▉    | 6576/7350 [04:36<00:30, 25.49it/s]2022-02-22 21:45:55,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6581/7350 [04:37<00:26, 28.76it/s]2022-02-22 21:45:56,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6584/7350 [04:37<00:31, 24.47it/s]2022-02-22 21:45:56,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6589/7350 [04:37<00:26, 29.20it/s]2022-02-22 21:45:56,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6593/7350 [04:37<00:32, 23.62it/s]2022-02-22 21:45:56,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6599/7350 [04:37<00:26, 28.06it/s]2022-02-22 21:45:56,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:56,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6603/7350 [04:38<00:32, 23.30it/s]2022-02-22 21:45:57,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6610/7350 [04:38<00:25, 28.85it/s]2022-02-22 21:45:57,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6614/7350 [04:38<00:34, 21.29it/s]2022-02-22 21:45:57,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6621/7350 [04:38<00:25, 28.81it/s]2022-02-22 21:45:57,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6625/7350 [04:38<00:28, 25.62it/s]2022-02-22 21:45:57,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:57,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6632/7350 [04:39<00:24, 29.75it/s]2022-02-22 21:45:58,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6636/7350 [04:39<00:27, 25.92it/s]2022-02-22 21:45:58,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6642/7350 [04:39<00:23, 29.53it/s]2022-02-22 21:45:58,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▎   | 6646/7350 [04:39<00:27, 26.03it/s]2022-02-22 21:45:58,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▎   | 6651/7350 [04:39<00:23, 29.71it/s]2022-02-22 21:45:58,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:58,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6655/7350 [04:39<00:28, 24.60it/s]2022-02-22 21:45:58,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6658/7350 [04:40<00:28, 24.08it/s]2022-02-22 21:45:59,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6664/7350 [04:40<00:29, 23.15it/s]2022-02-22 21:45:59,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6670/7350 [04:40<00:25, 26.66it/s]2022-02-22 21:45:59,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6674/7350 [04:40<00:26, 25.08it/s]2022-02-22 21:45:59,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6679/7350 [04:40<00:23, 28.66it/s]2022-02-22 21:45:59,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:45:59,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6683/7350 [04:40<00:23, 27.81it/s]2022-02-22 21:46:00,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6686/7350 [04:41<00:24, 26.72it/s]2022-02-22 21:46:00,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6690/7350 [04:41<00:25, 25.41it/s]2022-02-22 21:46:00,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6694/7350 [04:41<00:24, 26.44it/s]2022-02-22 21:46:00,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6697/7350 [04:41<00:26, 24.48it/s]2022-02-22 21:46:00,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6701/7350 [04:41<00:24, 26.26it/s]2022-02-22 21:46:00,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6705/7350 [04:41<00:22, 28.41it/s]2022-02-22 21:46:00,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6708/7350 [04:41<00:22, 28.17it/s]2022-02-22 21:46:00,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:00,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6711/7350 [04:42<00:27, 23.23it/s]2022-02-22 21:46:01,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6717/7350 [04:42<00:22, 28.36it/s]2022-02-22 21:46:01,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6720/7350 [04:42<00:24, 25.20it/s]2022-02-22 21:46:01,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6724/7350 [04:42<00:25, 24.44it/s]2022-02-22 21:46:01,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6729/7350 [04:42<00:21, 29.30it/s]2022-02-22 21:46:01,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:01,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6733/7350 [04:42<00:25, 24.55it/s]2022-02-22 21:46:02,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6737/7350 [04:43<00:22, 27.07it/s]2022-02-22 21:46:02,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6740/7350 [04:43<00:23, 25.58it/s]2022-02-22 21:46:02,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6743/7350 [04:43<00:27, 22.05it/s]2022-02-22 21:46:02,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6750/7350 [04:43<00:19, 30.80it/s]2022-02-22 21:46:02,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6754/7350 [04:43<00:23, 25.28it/s]2022-02-22 21:46:02,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6757/7350 [04:43<00:24, 24.27it/s]2022-02-22 21:46:02,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:02,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6762/7350 [04:44<00:22, 26.35it/s]2022-02-22 21:46:03,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6766/7350 [04:44<00:21, 27.24it/s]2022-02-22 21:46:03,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6772/7350 [04:44<00:22, 25.51it/s]2022-02-22 21:46:03,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6776/7350 [04:44<00:22, 25.53it/s]2022-02-22 21:46:03,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6782/7350 [04:44<00:21, 26.44it/s]2022-02-22 21:46:03,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:03,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6786/7350 [04:44<00:20, 27.09it/s]2022-02-22 21:46:03,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6790/7350 [04:45<00:19, 28.29it/s]2022-02-22 21:46:04,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6793/7350 [04:45<00:20, 27.72it/s]2022-02-22 21:46:04,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6796/7350 [04:45<00:19, 27.99it/s]2022-02-22 21:46:04,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6799/7350 [04:45<00:22, 24.75it/s]2022-02-22 21:46:04,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6804/7350 [04:45<00:19, 28.17it/s]2022-02-22 21:46:04,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6807/7350 [04:45<00:19, 28.27it/s]2022-02-22 21:46:04,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6810/7350 [04:45<00:21, 25.07it/s]2022-02-22 21:46:04,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:04,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6815/7350 [04:46<00:20, 25.75it/s]2022-02-22 21:46:05,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6818/7350 [04:46<00:21, 25.25it/s]2022-02-22 21:46:05,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6823/7350 [04:46<00:19, 27.56it/s]2022-02-22 21:46:05,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6826/7350 [04:46<00:19, 26.77it/s]2022-02-22 21:46:05,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6830/7350 [04:46<00:20, 25.69it/s]2022-02-22 21:46:05,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6834/7350 [04:46<00:18, 27.78it/s]2022-02-22 21:46:05,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6838/7350 [04:46<00:19, 25.74it/s]2022-02-22 21:46:05,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:05,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6842/7350 [04:47<00:17, 28.47it/s]2022-02-22 21:46:06,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6845/7350 [04:47<00:18, 27.56it/s]2022-02-22 21:46:06,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6848/7350 [04:47<00:21, 23.44it/s]2022-02-22 21:46:06,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6853/7350 [04:47<00:19, 25.21it/s]2022-02-22 21:46:06,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6858/7350 [04:47<00:18, 26.58it/s]2022-02-22 21:46:06,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6862/7350 [04:47<00:17, 28.12it/s]2022-02-22 21:46:06,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:06,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6866/7350 [04:47<00:18, 25.57it/s]2022-02-22 21:46:07,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6871/7350 [04:48<00:16, 28.62it/s]2022-02-22 21:46:07,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▍  | 6874/7350 [04:48<00:16, 28.09it/s]2022-02-22 21:46:07,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▍  | 6877/7350 [04:48<00:17, 26.31it/s]2022-02-22 21:46:07,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6880/7350 [04:48<00:19, 24.69it/s]2022-02-22 21:46:07,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6884/7350 [04:48<00:16, 28.12it/s]2022-02-22 21:46:07,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6887/7350 [04:48<00:18, 25.69it/s]2022-02-22 21:46:07,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6890/7350 [04:48<00:17, 26.10it/s]2022-02-22 21:46:07,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:07,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6893/7350 [04:48<00:17, 25.83it/s]2022-02-22 21:46:08,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6897/7350 [04:49<00:17, 26.51it/s]2022-02-22 21:46:08,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6900/7350 [04:49<00:17, 25.75it/s]2022-02-22 21:46:08,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6903/7350 [04:49<00:19, 23.04it/s]2022-02-22 21:46:08,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6908/7350 [04:49<00:16, 27.50it/s]2022-02-22 21:46:08,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6911/7350 [04:49<00:16, 25.99it/s]2022-02-22 21:46:08,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6914/7350 [04:49<00:16, 26.84it/s]2022-02-22 21:46:08,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6917/7350 [04:49<00:16, 26.18it/s]2022-02-22 21:46:08,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:08,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6920/7350 [04:50<00:21, 19.88it/s]2022-02-22 21:46:09,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6926/7350 [04:50<00:14, 28.28it/s]2022-02-22 21:46:09,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6930/7350 [04:50<00:17, 24.56it/s]2022-02-22 21:46:09,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6934/7350 [04:50<00:15, 27.60it/s]2022-02-22 21:46:09,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6938/7350 [04:50<00:14, 29.28it/s]2022-02-22 21:46:09,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6942/7350 [04:50<00:15, 25.99it/s]2022-02-22 21:46:09,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:09,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▊  | 6946/7350 [04:50<00:14, 28.67it/s]2022-02-22 21:46:10,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6950/7350 [04:51<00:15, 25.87it/s]2022-02-22 21:46:10,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6953/7350 [04:51<00:15, 25.97it/s]2022-02-22 21:46:10,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6957/7350 [04:51<00:14, 26.64it/s]2022-02-22 21:46:10,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6960/7350 [04:51<00:14, 26.15it/s]2022-02-22 21:46:10,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6964/7350 [04:51<00:13, 27.81it/s]2022-02-22 21:46:10,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6967/7350 [04:51<00:13, 27.82it/s]2022-02-22 21:46:10,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:10,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6970/7350 [04:51<00:15, 23.85it/s]2022-02-22 21:46:11,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6975/7350 [04:52<00:13, 28.84it/s]2022-02-22 21:46:11,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6979/7350 [04:52<00:14, 26.01it/s]2022-02-22 21:46:11,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6982/7350 [04:52<00:14, 25.33it/s]2022-02-22 21:46:11,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6987/7350 [04:52<00:12, 28.10it/s]2022-02-22 21:46:11,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6990/7350 [04:52<00:13, 27.00it/s]2022-02-22 21:46:11,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6993/7350 [04:52<00:14, 24.95it/s]2022-02-22 21:46:11,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:11,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 6997/7350 [04:52<00:13, 26.69it/s]2022-02-22 21:46:12,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7001/7350 [04:53<00:14, 23.69it/s]2022-02-22 21:46:12,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7005/7350 [04:53<00:14, 24.37it/s]2022-02-22 21:46:12,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7009/7350 [04:53<00:12, 26.43it/s]2022-02-22 21:46:12,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7012/7350 [04:53<00:13, 25.48it/s]2022-02-22 21:46:12,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7015/7350 [04:53<00:13, 24.19it/s]2022-02-22 21:46:12,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7019/7350 [04:53<00:12, 27.41it/s]2022-02-22 21:46:12,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:12,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7023/7350 [04:53<00:12, 27.06it/s]2022-02-22 21:46:13,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7026/7350 [04:54<00:12, 26.84it/s]2022-02-22 21:46:13,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7029/7350 [04:54<00:12, 25.91it/s]2022-02-22 21:46:13,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7033/7350 [04:54<00:11, 28.19it/s]2022-02-22 21:46:13,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7036/7350 [04:54<00:13, 23.15it/s]2022-02-22 21:46:13,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7040/7350 [04:54<00:12, 25.06it/s]2022-02-22 21:46:13,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7045/7350 [04:54<00:11, 26.56it/s]2022-02-22 21:46:13,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:13,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7048/7350 [04:54<00:11, 26.56it/s]2022-02-22 21:46:13,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7051/7350 [04:55<00:11, 26.32it/s]2022-02-22 21:46:14,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7055/7350 [04:55<00:11, 26.29it/s]2022-02-22 21:46:14,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7058/7350 [04:55<00:11, 25.76it/s]2022-02-22 21:46:14,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7062/7350 [04:55<00:10, 26.30it/s]2022-02-22 21:46:14,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7066/7350 [04:55<00:10, 27.26it/s]2022-02-22 21:46:14,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7069/7350 [04:55<00:10, 27.90it/s]2022-02-22 21:46:14,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7072/7350 [04:55<00:10, 25.46it/s]2022-02-22 21:46:14,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:14,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7076/7350 [04:55<00:09, 28.15it/s]2022-02-22 21:46:15,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7079/7350 [04:56<00:11, 23.08it/s]2022-02-22 21:46:15,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7083/7350 [04:56<00:10, 26.18it/s]2022-02-22 21:46:15,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7087/7350 [04:56<00:09, 26.83it/s]2022-02-22 21:46:15,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▋ | 7091/7350 [04:56<00:10, 24.54it/s]2022-02-22 21:46:15,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7097/7350 [04:56<00:09, 27.52it/s]2022-02-22 21:46:15,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7101/7350 [04:56<00:08, 28.80it/s]2022-02-22 21:46:15,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:15,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7104/7350 [04:56<00:08, 27.69it/s]2022-02-22 21:46:16,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7107/7350 [04:57<00:09, 26.62it/s]2022-02-22 21:46:16,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7112/7350 [04:57<00:09, 24.80it/s]2022-02-22 21:46:16,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7117/7350 [04:57<00:08, 26.93it/s]2022-02-22 21:46:16,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7121/7350 [04:57<00:07, 29.15it/s]2022-02-22 21:46:16,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7125/7350 [04:57<00:08, 26.05it/s]2022-02-22 21:46:16,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7128/7350 [04:57<00:08, 26.09it/s]2022-02-22 21:46:16,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:16,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7132/7350 [04:58<00:08, 26.02it/s]2022-02-22 21:46:17,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7135/7350 [04:58<00:08, 24.10it/s]2022-02-22 21:46:17,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7141/7350 [04:58<00:06, 31.50it/s]2022-02-22 21:46:17,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7145/7350 [04:58<00:08, 23.90it/s]2022-02-22 21:46:17,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7151/7350 [04:58<00:06, 29.92it/s]2022-02-22 21:46:17,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:17,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7155/7350 [04:58<00:08, 23.73it/s]2022-02-22 21:46:18,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7161/7350 [04:59<00:06, 28.75it/s]2022-02-22 21:46:18,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|██████████████████████████████████████ | 7165/7350 [04:59<00:07, 24.36it/s]2022-02-22 21:46:18,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7170/7350 [04:59<00:06, 27.90it/s]2022-02-22 21:46:18,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7174/7350 [04:59<00:07, 23.04it/s]2022-02-22 21:46:18,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7179/7350 [04:59<00:06, 27.67it/s]2022-02-22 21:46:18,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:18,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7183/7350 [05:00<00:06, 26.40it/s]2022-02-22 21:46:19,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7187/7350 [05:00<00:05, 27.96it/s]2022-02-22 21:46:19,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7191/7350 [05:00<00:05, 28.34it/s]2022-02-22 21:46:19,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7195/7350 [05:00<00:06, 22.77it/s]2022-02-22 21:46:19,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7201/7350 [05:00<00:05, 28.05it/s]2022-02-22 21:46:19,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:19,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7205/7350 [05:00<00:06, 22.12it/s]2022-02-22 21:46:20,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7212/7350 [05:01<00:04, 29.24it/s]2022-02-22 21:46:20,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7216/7350 [05:01<00:05, 25.00it/s]2022-02-22 21:46:20,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7221/7350 [05:01<00:04, 29.22it/s]2022-02-22 21:46:20,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7225/7350 [05:01<00:05, 21.78it/s]2022-02-22 21:46:20,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▍| 7233/7350 [05:01<00:04, 27.09it/s]2022-02-22 21:46:20,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:20,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▍| 7237/7350 [05:02<00:04, 23.60it/s]2022-02-22 21:46:21,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7243/7350 [05:02<00:03, 27.84it/s]2022-02-22 21:46:21,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7247/7350 [05:02<00:04, 24.89it/s]2022-02-22 21:46:21,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7250/7350 [05:02<00:04, 24.99it/s]2022-02-22 21:46:21,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7255/7350 [05:02<00:03, 28.52it/s]2022-02-22 21:46:21,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7259/7350 [05:02<00:03, 28.09it/s]2022-02-22 21:46:21,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:21,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7262/7350 [05:03<00:03, 28.26it/s]2022-02-22 21:46:22,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7265/7350 [05:03<00:03, 26.59it/s]2022-02-22 21:46:22,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7268/7350 [05:03<00:03, 26.37it/s]2022-02-22 21:46:22,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7271/7350 [05:03<00:03, 23.79it/s]2022-02-22 21:46:22,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7276/7350 [05:03<00:02, 27.89it/s]2022-02-22 21:46:22,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7280/7350 [05:03<00:02, 29.44it/s]2022-02-22 21:46:22,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7284/7350 [05:03<00:02, 25.66it/s]2022-02-22 21:46:22,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:22,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7288/7350 [05:03<00:02, 28.66it/s]2022-02-22 21:46:23,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7292/7350 [05:04<00:02, 24.73it/s]2022-02-22 21:46:23,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7297/7350 [05:04<00:01, 27.20it/s]2022-02-22 21:46:23,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7300/7350 [05:04<00:02, 24.38it/s]2022-02-22 21:46:23,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 7304/7350 [05:04<00:01, 27.45it/s]2022-02-22 21:46:23,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 7308/7350 [05:04<00:01, 27.87it/s]2022-02-22 21:46:23,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:23,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 7311/7350 [05:04<00:01, 22.97it/s]2022-02-22 21:46:24,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7315/7350 [05:05<00:01, 26.49it/s]2022-02-22 21:46:24,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7320/7350 [05:05<00:01, 25.23it/s]2022-02-22 21:46:24,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7323/7350 [05:05<00:01, 24.01it/s]2022-02-22 21:46:24,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7329/7350 [05:05<00:00, 31.55it/s]2022-02-22 21:46:24,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7333/7350 [05:05<00:00, 24.06it/s]2022-02-22 21:46:24,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7337/7350 [05:05<00:00, 24.87it/s]2022-02-22 21:46:24,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:24,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7341/7350 [05:06<00:00, 24.22it/s]2022-02-22 21:46:25,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7345/7350 [05:06<00:00, 25.76it/s]2022-02-22 21:46:25,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:46:25,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 7350/7350 [05:06<00:00, 23.99it/s]
2022-02-22 21:46:25,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

  0%|                                                  | 0/7350 [00:00<?, ?it/s]2022-02-22 21:46:25,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                          | 1/7350 [00:00<18:45,  6.53it/s]2022-02-22 21:46:25,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                          | 5/7350 [00:00<05:54, 20.72it/s]2022-02-22 21:46:26,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                         | 10/7350 [00:00<04:00, 30.56it/s]2022-02-22 21:46:26,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                         | 19/7350 [00:00<02:24, 50.67it/s]2022-02-22 21:46:26,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|▏                                        | 27/7350 [00:00<02:04, 58.62it/s]2022-02-22 21:46:26,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|▏                                        | 34/7350 [00:00<02:01, 60.29it/s]2022-02-22 21:46:26,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▏                                        | 44/7350 [00:00<01:41, 71.88it/s]2022-02-22 21:46:26,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▎                                        | 52/7350 [00:00<01:48, 67.23it/s]2022-02-22 21:46:26,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▎                                        | 60/7350 [00:01<01:43, 70.22it/s]2022-02-22 21:46:26,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▍                                        | 68/7350 [00:01<01:40, 72.78it/s]2022-02-22 21:46:26,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:26,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▍                                        | 76/7350 [00:01<01:47, 67.77it/s]2022-02-22 21:46:27,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▍                                        | 84/7350 [00:01<01:56, 62.62it/s]2022-02-22 21:46:27,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▌                                        | 91/7350 [00:01<02:01, 59.92it/s]2022-02-22 21:46:27,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▌                                       | 101/7350 [00:01<01:52, 64.29it/s]2022-02-22 21:46:27,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▌                                       | 110/7350 [00:01<01:45, 68.39it/s]2022-02-22 21:46:27,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                       | 119/7350 [00:01<01:45, 68.38it/s]2022-02-22 21:46:27,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                       | 126/7350 [00:02<01:45, 68.22it/s]2022-02-22 21:46:27,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:27,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                       | 133/7350 [00:02<01:47, 67.41it/s]2022-02-22 21:46:28,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▊                                       | 140/7350 [00:02<02:02, 58.75it/s]2022-02-22 21:46:28,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▊                                       | 149/7350 [00:02<01:52, 64.14it/s]2022-02-22 21:46:28,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▊                                       | 157/7350 [00:02<01:47, 67.19it/s]2022-02-22 21:46:28,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▉                                       | 164/7350 [00:02<01:48, 66.49it/s]2022-02-22 21:46:28,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▉                                       | 171/7350 [00:02<01:55, 61.95it/s]2022-02-22 21:46:28,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▉                                       | 180/7350 [00:02<01:46, 67.61it/s]2022-02-22 21:46:28,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█                                       | 188/7350 [00:03<01:48, 66.00it/s]2022-02-22 21:46:28,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█                                       | 196/7350 [00:03<01:47, 66.64it/s]2022-02-22 21:46:28,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:28,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█                                       | 204/7350 [00:03<01:53, 62.95it/s]2022-02-22 21:46:29,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▏                                      | 212/7350 [00:03<01:47, 66.45it/s]2022-02-22 21:46:29,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▏                                      | 219/7350 [00:03<01:53, 62.89it/s]2022-02-22 21:46:29,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▏                                      | 228/7350 [00:03<01:49, 65.14it/s]2022-02-22 21:46:29,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▎                                      | 236/7350 [00:03<01:47, 66.47it/s]2022-02-22 21:46:29,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▎                                      | 244/7350 [00:03<01:54, 62.18it/s]2022-02-22 21:46:29,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▍                                      | 257/7350 [00:04<01:32, 76.28it/s]2022-02-22 21:46:29,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▍                                      | 265/7350 [00:04<01:39, 71.13it/s]2022-02-22 21:46:29,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:29,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▍                                      | 273/7350 [00:04<01:45, 67.12it/s]2022-02-22 21:46:30,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▌                                      | 281/7350 [00:04<01:47, 66.02it/s]2022-02-22 21:46:30,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▌                                      | 289/7350 [00:04<01:41, 69.41it/s]2022-02-22 21:46:30,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▌                                      | 297/7350 [00:04<01:38, 71.54it/s]2022-02-22 21:46:30,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▋                                      | 305/7350 [00:04<01:37, 71.91it/s]2022-02-22 21:46:30,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▋                                      | 313/7350 [00:04<01:39, 70.70it/s]2022-02-22 21:46:30,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▋                                      | 321/7350 [00:04<01:41, 68.94it/s]2022-02-22 21:46:30,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▊                                      | 329/7350 [00:05<01:38, 71.32it/s]2022-02-22 21:46:30,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:30,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▊                                      | 337/7350 [00:05<01:38, 70.89it/s]2022-02-22 21:46:31,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▉                                      | 345/7350 [00:05<01:48, 64.85it/s]2022-02-22 21:46:31,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▉                                      | 355/7350 [00:05<01:39, 70.21it/s]2022-02-22 21:46:31,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▉                                      | 363/7350 [00:05<01:40, 69.62it/s]2022-02-22 21:46:31,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██                                      | 371/7350 [00:05<01:37, 71.38it/s]2022-02-22 21:46:31,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██                                      | 379/7350 [00:05<01:43, 67.34it/s]2022-02-22 21:46:31,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██                                      | 386/7350 [00:05<01:43, 67.23it/s]2022-02-22 21:46:31,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██▏                                     | 394/7350 [00:06<01:40, 69.10it/s]2022-02-22 21:46:31,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██▏                                     | 403/7350 [00:06<01:34, 73.17it/s]2022-02-22 21:46:31,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:31,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▏                                     | 411/7350 [00:06<01:38, 70.64it/s]2022-02-22 21:46:32,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▎                                     | 420/7350 [00:06<01:34, 73.42it/s]2022-02-22 21:46:32,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▎                                     | 429/7350 [00:06<01:31, 75.32it/s]2022-02-22 21:46:32,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▍                                     | 437/7350 [00:06<01:42, 67.72it/s]2022-02-22 21:46:32,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▍                                     | 445/7350 [00:06<01:39, 69.48it/s]2022-02-22 21:46:32,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▍                                     | 453/7350 [00:06<01:37, 70.38it/s]2022-02-22 21:46:32,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▌                                     | 461/7350 [00:06<01:43, 66.49it/s]2022-02-22 21:46:32,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▌                                     | 468/7350 [00:07<01:43, 66.28it/s]2022-02-22 21:46:32,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:32,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▌                                     | 475/7350 [00:07<01:44, 65.75it/s]2022-02-22 21:46:33,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▋                                     | 483/7350 [00:07<01:47, 63.72it/s]2022-02-22 21:46:33,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▋                                     | 494/7350 [00:07<01:33, 73.23it/s]2022-02-22 21:46:33,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▋                                     | 503/7350 [00:07<01:34, 72.71it/s]2022-02-22 21:46:33,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▊                                     | 511/7350 [00:07<01:36, 71.14it/s]2022-02-22 21:46:33,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▊                                     | 519/7350 [00:07<01:38, 69.38it/s]2022-02-22 21:46:33,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▊                                     | 526/7350 [00:07<01:40, 68.08it/s]2022-02-22 21:46:33,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▉                                     | 533/7350 [00:08<01:41, 67.06it/s]2022-02-22 21:46:33,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:33,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▉                                     | 542/7350 [00:08<01:36, 70.55it/s]2022-02-22 21:46:33,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▉                                     | 551/7350 [00:08<01:31, 74.32it/s]2022-02-22 21:46:34,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███                                     | 559/7350 [00:08<01:35, 71.01it/s]2022-02-22 21:46:34,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███                                     | 568/7350 [00:08<01:32, 73.45it/s]2022-02-22 21:46:34,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▏                                    | 576/7350 [00:08<01:30, 74.54it/s]2022-02-22 21:46:34,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▏                                    | 584/7350 [00:08<01:38, 68.93it/s]2022-02-22 21:46:34,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▏                                    | 591/7350 [00:08<01:39, 68.02it/s]2022-02-22 21:46:34,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▎                                    | 598/7350 [00:08<01:41, 66.63it/s]2022-02-22 21:46:34,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▎                                    | 606/7350 [00:09<01:38, 68.42it/s]2022-02-22 21:46:34,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▎                                    | 614/7350 [00:09<01:38, 68.45it/s]2022-02-22 21:46:34,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:34,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▍                                    | 624/7350 [00:09<01:31, 73.42it/s]2022-02-22 21:46:35,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▍                                    | 633/7350 [00:09<01:27, 76.89it/s]2022-02-22 21:46:35,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▍                                    | 641/7350 [00:09<01:34, 71.29it/s]2022-02-22 21:46:35,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▌                                    | 649/7350 [00:09<01:35, 69.91it/s]2022-02-22 21:46:35,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▌                                    | 657/7350 [00:09<01:37, 68.96it/s]2022-02-22 21:46:35,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▌                                    | 664/7350 [00:09<01:46, 62.98it/s]2022-02-22 21:46:35,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▋                                    | 673/7350 [00:10<01:38, 67.89it/s]2022-02-22 21:46:35,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▋                                    | 681/7350 [00:10<01:39, 67.30it/s]2022-02-22 21:46:35,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:35,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▊                                    | 690/7350 [00:10<01:36, 68.69it/s]2022-02-22 21:46:36,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▊                                    | 699/7350 [00:10<01:32, 71.80it/s]2022-02-22 21:46:36,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▊                                    | 707/7350 [00:10<01:43, 64.07it/s]2022-02-22 21:46:36,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▉                                    | 716/7350 [00:10<01:38, 67.30it/s]2022-02-22 21:46:36,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▉                                    | 727/7350 [00:10<01:30, 73.13it/s]2022-02-22 21:46:36,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,630 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████                                    | 735/7350 [00:10<01:29, 74.13it/s]2022-02-22 21:46:36,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████                                    | 743/7350 [00:10<01:29, 73.68it/s]2022-02-22 21:46:36,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████                                    | 751/7350 [00:11<01:30, 73.31it/s]2022-02-22 21:46:36,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:36,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████▏                                   | 759/7350 [00:11<01:31, 71.79it/s]2022-02-22 21:46:37,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████▏                                   | 767/7350 [00:11<01:39, 66.21it/s]2022-02-22 21:46:37,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▏                                   | 777/7350 [00:11<01:32, 71.03it/s]2022-02-22 21:46:37,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▎                                   | 786/7350 [00:11<01:29, 73.39it/s]2022-02-22 21:46:37,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▎                                   | 794/7350 [00:11<01:29, 73.35it/s]2022-02-22 21:46:37,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▎                                   | 802/7350 [00:11<01:30, 72.34it/s]2022-02-22 21:46:37,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▍                                   | 810/7350 [00:11<01:36, 67.68it/s]2022-02-22 21:46:37,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▍                                   | 819/7350 [00:12<01:32, 70.77it/s]2022-02-22 21:46:37,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:37,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▌                                   | 827/7350 [00:12<01:37, 67.02it/s]2022-02-22 21:46:38,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▌                                   | 835/7350 [00:12<01:33, 69.92it/s]2022-02-22 21:46:38,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▌                                   | 843/7350 [00:12<01:34, 68.51it/s]2022-02-22 21:46:38,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▋                                   | 850/7350 [00:12<01:35, 68.29it/s]2022-02-22 21:46:38,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▋                                   | 857/7350 [00:12<01:35, 67.88it/s]2022-02-22 21:46:38,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▋                                   | 864/7350 [00:12<01:36, 67.32it/s]2022-02-22 21:46:38,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▋                                   | 872/7350 [00:12<01:37, 66.72it/s]2022-02-22 21:46:38,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▊                                   | 879/7350 [00:13<01:46, 60.99it/s]2022-02-22 21:46:38,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▊                                   | 887/7350 [00:13<01:38, 65.40it/s]2022-02-22 21:46:38,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:38,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▊                                   | 894/7350 [00:13<01:41, 63.37it/s]2022-02-22 21:46:39,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▉                                   | 902/7350 [00:13<01:36, 66.64it/s]2022-02-22 21:46:39,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▉                                   | 910/7350 [00:13<01:35, 67.10it/s]2022-02-22 21:46:39,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████                                   | 919/7350 [00:13<01:30, 71.13it/s]2022-02-22 21:46:39,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████                                   | 927/7350 [00:13<01:27, 73.42it/s]2022-02-22 21:46:39,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████                                   | 936/7350 [00:13<01:30, 70.61it/s]2022-02-22 21:46:39,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▏                                  | 946/7350 [00:13<01:22, 77.85it/s]2022-02-22 21:46:39,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▏                                  | 954/7350 [00:14<01:24, 76.05it/s]2022-02-22 21:46:39,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▏                                  | 963/7350 [00:14<01:27, 72.81it/s]2022-02-22 21:46:39,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:39,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▎                                  | 972/7350 [00:14<01:28, 72.35it/s]2022-02-22 21:46:40,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▎                                  | 982/7350 [00:14<01:26, 74.00it/s]2022-02-22 21:46:40,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▍                                  | 992/7350 [00:14<01:21, 78.27it/s]2022-02-22 21:46:40,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▎                                 | 1000/7350 [00:14<01:22, 76.90it/s]2022-02-22 21:46:40,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▎                                 | 1008/7350 [00:14<01:31, 69.67it/s]2022-02-22 21:46:40,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▍                                 | 1016/7350 [00:14<01:35, 66.25it/s]2022-02-22 21:46:40,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▍                                 | 1023/7350 [00:15<01:42, 61.72it/s]2022-02-22 21:46:40,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:40,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▍                                 | 1033/7350 [00:15<01:32, 68.53it/s]2022-02-22 21:46:41,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▌                                 | 1041/7350 [00:15<01:28, 71.39it/s]2022-02-22 21:46:41,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▌                                 | 1049/7350 [00:15<01:28, 71.13it/s]2022-02-22 21:46:41,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▌                                 | 1057/7350 [00:15<01:29, 70.42it/s]2022-02-22 21:46:41,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▋                                 | 1066/7350 [00:15<01:32, 67.67it/s]2022-02-22 21:46:41,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▋                                 | 1075/7350 [00:15<01:33, 67.16it/s]2022-02-22 21:46:41,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▋                                 | 1082/7350 [00:15<01:32, 67.47it/s]2022-02-22 21:46:41,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▊                                 | 1089/7350 [00:15<01:32, 68.05it/s]2022-02-22 21:46:41,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▊                                 | 1097/7350 [00:16<01:34, 65.96it/s]2022-02-22 21:46:41,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:41,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▊                                 | 1104/7350 [00:16<01:34, 66.17it/s]2022-02-22 21:46:42,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▉                                 | 1111/7350 [00:16<01:35, 65.56it/s]2022-02-22 21:46:42,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▉                                 | 1118/7350 [00:16<01:35, 65.30it/s]2022-02-22 21:46:42,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▉                                 | 1126/7350 [00:16<01:33, 66.81it/s]2022-02-22 21:46:42,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|██████                                 | 1136/7350 [00:16<01:27, 71.08it/s]2022-02-22 21:46:42,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████                                 | 1144/7350 [00:16<01:29, 69.38it/s]2022-02-22 21:46:42,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████                                 | 1151/7350 [00:16<01:31, 67.71it/s]2022-02-22 21:46:42,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▏                                | 1159/7350 [00:17<01:28, 70.34it/s]2022-02-22 21:46:42,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▏                                | 1167/7350 [00:17<01:28, 69.70it/s]2022-02-22 21:46:42,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:42,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▏                                | 1174/7350 [00:17<01:29, 69.18it/s]2022-02-22 21:46:43,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▎                                | 1182/7350 [00:17<01:28, 69.73it/s]2022-02-22 21:46:43,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▎                                | 1190/7350 [00:17<01:27, 70.53it/s]2022-02-22 21:46:43,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▎                                | 1199/7350 [00:17<01:27, 70.63it/s]2022-02-22 21:46:43,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▍                                | 1207/7350 [00:17<01:27, 70.17it/s]2022-02-22 21:46:43,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▍                                | 1215/7350 [00:17<01:25, 71.49it/s]2022-02-22 21:46:43,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▍                                | 1223/7350 [00:17<01:28, 69.41it/s]2022-02-22 21:46:43,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▌                                | 1230/7350 [00:18<01:31, 66.90it/s]2022-02-22 21:46:43,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▌                                | 1239/7350 [00:18<01:28, 69.38it/s]2022-02-22 21:46:43,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:43,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▌                                | 1246/7350 [00:18<01:34, 64.57it/s]2022-02-22 21:46:44,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▋                                | 1253/7350 [00:18<01:38, 62.10it/s]2022-02-22 21:46:44,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▋                                | 1261/7350 [00:18<01:36, 63.02it/s]2022-02-22 21:46:44,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▋                                | 1269/7350 [00:18<01:31, 66.36it/s]2022-02-22 21:46:44,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▊                                | 1277/7350 [00:18<01:37, 62.33it/s]2022-02-22 21:46:44,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▊                                | 1286/7350 [00:18<01:27, 69.09it/s]2022-02-22 21:46:44,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▊                                | 1294/7350 [00:19<01:32, 65.18it/s]2022-02-22 21:46:44,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:44,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▉                                | 1301/7350 [00:19<01:40, 60.40it/s]2022-02-22 21:46:44,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,060 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▉                                | 1310/7350 [00:19<01:31, 66.25it/s]2022-02-22 21:46:45,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▉                                | 1317/7350 [00:19<01:32, 65.34it/s]2022-02-22 21:46:45,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████                                | 1324/7350 [00:19<01:31, 65.88it/s]2022-02-22 21:46:45,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████                                | 1332/7350 [00:19<01:26, 69.18it/s]2022-02-22 21:46:45,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████                                | 1340/7350 [00:19<01:31, 65.34it/s]2022-02-22 21:46:45,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████▏                               | 1349/7350 [00:19<01:27, 68.68it/s]2022-02-22 21:46:45,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████▏                               | 1357/7350 [00:19<01:26, 69.45it/s]2022-02-22 21:46:45,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▏                               | 1366/7350 [00:20<01:23, 71.39it/s]2022-02-22 21:46:45,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:45,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▎                               | 1374/7350 [00:20<01:28, 67.53it/s]2022-02-22 21:46:46,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▎                               | 1382/7350 [00:20<01:26, 69.09it/s]2022-02-22 21:46:46,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▎                               | 1389/7350 [00:20<01:31, 65.13it/s]2022-02-22 21:46:46,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▍                               | 1398/7350 [00:20<01:27, 67.68it/s]2022-02-22 21:46:46,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▍                               | 1406/7350 [00:20<01:26, 69.06it/s]2022-02-22 21:46:46,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▍                               | 1413/7350 [00:20<01:30, 65.39it/s]2022-02-22 21:46:46,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▌                               | 1422/7350 [00:20<01:25, 69.68it/s]2022-02-22 21:46:46,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▌                               | 1432/7350 [00:21<01:17, 76.73it/s]2022-02-22 21:46:46,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:46,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▋                               | 1440/7350 [00:21<01:20, 73.55it/s]2022-02-22 21:46:46,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▋                               | 1448/7350 [00:21<01:24, 69.51it/s]2022-02-22 21:46:47,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▋                               | 1456/7350 [00:21<01:28, 66.94it/s]2022-02-22 21:46:47,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▊                               | 1465/7350 [00:21<01:29, 65.48it/s]2022-02-22 21:46:47,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▊                               | 1472/7350 [00:21<01:29, 65.71it/s]2022-02-22 21:46:47,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▊                               | 1479/7350 [00:21<01:29, 65.95it/s]2022-02-22 21:46:47,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▉                               | 1488/7350 [00:21<01:31, 64.41it/s]2022-02-22 21:46:47,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▉                               | 1498/7350 [00:22<01:23, 69.81it/s]2022-02-22 21:46:47,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:47,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▉                               | 1506/7350 [00:22<01:24, 68.76it/s]2022-02-22 21:46:47,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████                               | 1513/7350 [00:22<01:32, 62.83it/s]2022-02-22 21:46:48,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████                               | 1520/7350 [00:22<01:32, 63.35it/s]2022-02-22 21:46:48,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████                               | 1527/7350 [00:22<01:34, 61.41it/s]2022-02-22 21:46:48,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▏                              | 1534/7350 [00:22<01:33, 62.12it/s]2022-02-22 21:46:48,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▏                              | 1541/7350 [00:22<01:37, 59.77it/s]2022-02-22 21:46:48,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▏                              | 1551/7350 [00:22<01:27, 66.13it/s]2022-02-22 21:46:48,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▎                              | 1559/7350 [00:22<01:24, 68.20it/s]2022-02-22 21:46:48,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▎                              | 1566/7350 [00:23<01:25, 67.82it/s]2022-02-22 21:46:48,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:48,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▎                              | 1573/7350 [00:23<01:26, 66.92it/s]2022-02-22 21:46:49,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▍                              | 1583/7350 [00:23<01:19, 72.98it/s]2022-02-22 21:46:49,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▍                              | 1591/7350 [00:23<01:23, 69.23it/s]2022-02-22 21:46:49,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▍                              | 1598/7350 [00:23<01:22, 69.34it/s]2022-02-22 21:46:49,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▌                              | 1608/7350 [00:23<01:18, 72.87it/s]2022-02-22 21:46:49,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▌                              | 1616/7350 [00:23<01:18, 73.45it/s]2022-02-22 21:46:49,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▌                              | 1624/7350 [00:23<01:19, 71.78it/s]2022-02-22 21:46:49,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▋                              | 1632/7350 [00:23<01:19, 72.03it/s]2022-02-22 21:46:49,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▋                              | 1640/7350 [00:24<01:25, 67.11it/s]2022-02-22 21:46:49,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:49,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▋                              | 1648/7350 [00:24<01:21, 70.18it/s]2022-02-22 21:46:50,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▊                              | 1656/7350 [00:24<01:19, 71.43it/s]2022-02-22 21:46:50,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▊                              | 1664/7350 [00:24<01:17, 73.59it/s]2022-02-22 21:46:50,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▊                              | 1672/7350 [00:24<01:16, 74.42it/s]2022-02-22 21:46:50,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▉                              | 1680/7350 [00:24<01:24, 66.74it/s]2022-02-22 21:46:50,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▉                              | 1688/7350 [00:24<01:22, 68.58it/s]2022-02-22 21:46:50,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▉                              | 1696/7350 [00:24<01:20, 69.86it/s]2022-02-22 21:46:50,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████                              | 1706/7350 [00:25<01:18, 72.20it/s]2022-02-22 21:46:50,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████                              | 1714/7350 [00:25<01:17, 73.07it/s]2022-02-22 21:46:50,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:50,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████▏                             | 1722/7350 [00:25<01:23, 67.26it/s]2022-02-22 21:46:51,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▏                             | 1730/7350 [00:25<01:23, 67.15it/s]2022-02-22 21:46:51,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▏                             | 1738/7350 [00:25<01:21, 68.89it/s]2022-02-22 21:46:51,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▎                             | 1745/7350 [00:25<01:22, 67.78it/s]2022-02-22 21:46:51,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▎                             | 1752/7350 [00:25<01:26, 64.66it/s]2022-02-22 21:46:51,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▎                             | 1762/7350 [00:25<01:20, 69.63it/s]2022-02-22 21:46:51,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▍                             | 1772/7350 [00:25<01:14, 74.49it/s]2022-02-22 21:46:51,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▍                             | 1780/7350 [00:26<01:15, 73.74it/s]2022-02-22 21:46:51,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:51,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▍                             | 1788/7350 [00:26<01:20, 69.09it/s]2022-02-22 21:46:52,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▌                             | 1796/7350 [00:26<01:20, 68.78it/s]2022-02-22 21:46:52,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▌                             | 1805/7350 [00:26<01:14, 74.35it/s]2022-02-22 21:46:52,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▌                             | 1813/7350 [00:26<01:16, 72.45it/s]2022-02-22 21:46:52,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▋                             | 1821/7350 [00:26<01:15, 73.08it/s]2022-02-22 21:46:52,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▋                             | 1829/7350 [00:26<01:16, 72.00it/s]2022-02-22 21:46:52,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▋                             | 1837/7350 [00:26<01:18, 70.17it/s]2022-02-22 21:46:52,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▊                             | 1845/7350 [00:27<01:17, 70.97it/s]2022-02-22 21:46:52,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:52,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▊                             | 1854/7350 [00:27<01:21, 67.83it/s]2022-02-22 21:46:52,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▉                             | 1862/7350 [00:27<01:21, 67.45it/s]2022-02-22 21:46:53,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▉                             | 1869/7350 [00:27<01:21, 67.30it/s]2022-02-22 21:46:53,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|█████████▉                             | 1878/7350 [00:27<01:22, 66.64it/s]2022-02-22 21:46:53,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████                             | 1887/7350 [00:27<01:16, 71.66it/s]2022-02-22 21:46:53,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████                             | 1895/7350 [00:27<01:13, 73.79it/s]2022-02-22 21:46:53,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████                             | 1903/7350 [00:27<01:17, 69.85it/s]2022-02-22 21:46:53,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                            | 1911/7350 [00:27<01:18, 69.57it/s]2022-02-22 21:46:53,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                            | 1919/7350 [00:28<01:19, 67.94it/s]2022-02-22 21:46:53,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:53,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                            | 1926/7350 [00:28<01:20, 67.28it/s]2022-02-22 21:46:54,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▎                            | 1935/7350 [00:28<01:16, 70.52it/s]2022-02-22 21:46:54,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▎                            | 1943/7350 [00:28<01:16, 70.82it/s]2022-02-22 21:46:54,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▎                            | 1951/7350 [00:28<01:14, 72.77it/s]2022-02-22 21:46:54,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▍                            | 1959/7350 [00:28<01:17, 69.34it/s]2022-02-22 21:46:54,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▍                            | 1968/7350 [00:28<01:14, 72.68it/s]2022-02-22 21:46:54,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▍                            | 1976/7350 [00:28<01:15, 71.59it/s]2022-02-22 21:46:54,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▌                            | 1984/7350 [00:29<01:16, 69.80it/s]2022-02-22 21:46:54,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▌                            | 1992/7350 [00:29<01:14, 71.57it/s]2022-02-22 21:46:54,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:54,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▌                            | 2000/7350 [00:29<01:19, 67.05it/s]2022-02-22 21:46:55,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▋                            | 2009/7350 [00:29<01:16, 69.54it/s]2022-02-22 21:46:55,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▋                            | 2017/7350 [00:29<01:14, 71.35it/s]2022-02-22 21:46:55,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▋                            | 2025/7350 [00:29<01:15, 70.10it/s]2022-02-22 21:46:55,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▊                            | 2034/7350 [00:29<01:12, 73.08it/s]2022-02-22 21:46:55,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▊                            | 2042/7350 [00:29<01:15, 70.20it/s]2022-02-22 21:46:55,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▉                            | 2050/7350 [00:29<01:17, 68.25it/s]2022-02-22 21:46:55,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▉                            | 2060/7350 [00:30<01:13, 71.60it/s]2022-02-22 21:46:55,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:55,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▉                            | 2068/7350 [00:30<01:15, 70.11it/s]2022-02-22 21:46:56,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████                            | 2076/7350 [00:30<01:16, 69.02it/s]2022-02-22 21:46:56,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████                            | 2083/7350 [00:30<01:19, 65.98it/s]2022-02-22 21:46:56,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████                            | 2092/7350 [00:30<01:13, 71.56it/s]2022-02-22 21:46:56,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▏                           | 2100/7350 [00:30<01:12, 72.41it/s]2022-02-22 21:46:56,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▏                           | 2109/7350 [00:30<01:16, 68.08it/s]2022-02-22 21:46:56,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▏                           | 2119/7350 [00:30<01:09, 75.42it/s]2022-02-22 21:46:56,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▎                           | 2127/7350 [00:31<01:12, 72.38it/s]2022-02-22 21:46:56,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▎                           | 2135/7350 [00:31<01:11, 72.48it/s]2022-02-22 21:46:56,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:56,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▎                           | 2143/7350 [00:31<01:13, 70.48it/s]2022-02-22 21:46:57,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▍                           | 2151/7350 [00:31<01:12, 71.71it/s]2022-02-22 21:46:57,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▍                           | 2160/7350 [00:31<01:09, 74.74it/s]2022-02-22 21:46:57,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▌                           | 2169/7350 [00:31<01:08, 75.34it/s]2022-02-22 21:46:57,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▌                           | 2177/7350 [00:31<01:11, 72.07it/s]2022-02-22 21:46:57,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▌                           | 2185/7350 [00:31<01:10, 72.84it/s]2022-02-22 21:46:57,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▋                           | 2193/7350 [00:31<01:09, 74.47it/s]2022-02-22 21:46:57,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▋                           | 2201/7350 [00:32<01:08, 74.96it/s]2022-02-22 21:46:57,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:57,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▋                           | 2209/7350 [00:32<01:12, 70.83it/s]2022-02-22 21:46:57,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▊                           | 2218/7350 [00:32<01:10, 72.91it/s]2022-02-22 21:46:58,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▊                           | 2226/7350 [00:32<01:11, 71.18it/s]2022-02-22 21:46:58,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▊                           | 2234/7350 [00:32<01:11, 71.64it/s]2022-02-22 21:46:58,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|███████████▉                           | 2242/7350 [00:32<01:15, 67.81it/s]2022-02-22 21:46:58,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|███████████▉                           | 2250/7350 [00:32<01:13, 69.40it/s]2022-02-22 21:46:58,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|███████████▉                           | 2258/7350 [00:32<01:11, 71.69it/s]2022-02-22 21:46:58,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████                           | 2266/7350 [00:33<01:16, 66.44it/s]2022-02-22 21:46:58,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████                           | 2274/7350 [00:33<01:12, 69.73it/s]2022-02-22 21:46:58,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,963 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:58,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████                           | 2282/7350 [00:33<01:13, 68.85it/s]2022-02-22 21:46:59,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▏                          | 2289/7350 [00:33<01:14, 68.25it/s]2022-02-22 21:46:59,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▏                          | 2296/7350 [00:33<01:13, 68.52it/s]2022-02-22 21:46:59,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▏                          | 2304/7350 [00:33<01:11, 70.91it/s]2022-02-22 21:46:59,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▎                          | 2312/7350 [00:33<01:11, 70.22it/s]2022-02-22 21:46:59,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▎                          | 2320/7350 [00:33<01:09, 72.02it/s]2022-02-22 21:46:59,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▎                          | 2328/7350 [00:33<01:15, 66.27it/s]2022-02-22 21:46:59,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▍                          | 2338/7350 [00:34<01:09, 72.30it/s]2022-02-22 21:46:59,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▍                          | 2346/7350 [00:34<01:07, 74.08it/s]2022-02-22 21:46:59,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:46:59,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▍                          | 2354/7350 [00:34<01:11, 69.48it/s]2022-02-22 21:47:00,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▌                          | 2362/7350 [00:34<01:15, 66.31it/s]2022-02-22 21:47:00,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▌                          | 2370/7350 [00:34<01:12, 69.15it/s]2022-02-22 21:47:00,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▌                          | 2378/7350 [00:34<01:14, 67.05it/s]2022-02-22 21:47:00,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▋                          | 2387/7350 [00:34<01:09, 71.70it/s]2022-02-22 21:47:00,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▋                          | 2395/7350 [00:34<01:14, 66.85it/s]2022-02-22 21:47:00,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▊                          | 2403/7350 [00:34<01:12, 67.91it/s]2022-02-22 21:47:00,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▊                          | 2410/7350 [00:35<01:14, 66.07it/s]2022-02-22 21:47:00,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:00,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▊                          | 2418/7350 [00:35<01:12, 67.83it/s]2022-02-22 21:47:01,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▊                          | 2426/7350 [00:35<01:13, 67.38it/s]2022-02-22 21:47:01,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▉                          | 2434/7350 [00:35<01:12, 67.52it/s]2022-02-22 21:47:01,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▉                          | 2445/7350 [00:35<01:04, 75.63it/s]2022-02-22 21:47:01,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|█████████████                          | 2453/7350 [00:35<01:07, 72.07it/s]2022-02-22 21:47:01,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|█████████████                          | 2461/7350 [00:35<01:06, 73.64it/s]2022-02-22 21:47:01,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████                          | 2469/7350 [00:35<01:04, 75.33it/s]2022-02-22 21:47:01,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▏                         | 2477/7350 [00:36<01:10, 69.13it/s]2022-02-22 21:47:01,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▏                         | 2485/7350 [00:36<01:12, 67.40it/s]2022-02-22 21:47:01,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:01,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▏                         | 2492/7350 [00:36<01:12, 66.59it/s]2022-02-22 21:47:02,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▎                         | 2502/7350 [00:36<01:12, 67.22it/s]2022-02-22 21:47:02,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▎                         | 2510/7350 [00:36<01:10, 68.37it/s]2022-02-22 21:47:02,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▎                         | 2520/7350 [00:36<01:03, 76.46it/s]2022-02-22 21:47:02,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▍                         | 2528/7350 [00:36<01:07, 70.97it/s]2022-02-22 21:47:02,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▍                         | 2536/7350 [00:36<01:06, 72.56it/s]2022-02-22 21:47:02,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▍                         | 2544/7350 [00:36<01:06, 72.29it/s]2022-02-22 21:47:02,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▌                         | 2552/7350 [00:37<01:09, 69.03it/s]2022-02-22 21:47:02,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:02,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▌                         | 2561/7350 [00:37<01:08, 69.48it/s]2022-02-22 21:47:03,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▋                         | 2569/7350 [00:37<01:11, 66.98it/s]2022-02-22 21:47:03,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▋                         | 2579/7350 [00:37<01:07, 70.18it/s]2022-02-22 21:47:03,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▋                         | 2587/7350 [00:37<01:06, 71.95it/s]2022-02-22 21:47:03,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▊                         | 2595/7350 [00:37<01:07, 70.67it/s]2022-02-22 21:47:03,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▊                         | 2603/7350 [00:37<01:07, 70.31it/s]2022-02-22 21:47:03,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▊                         | 2611/7350 [00:37<01:07, 69.83it/s]2022-02-22 21:47:03,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▉                         | 2618/7350 [00:38<01:11, 66.40it/s]2022-02-22 21:47:03,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:03,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▉                         | 2626/7350 [00:38<01:08, 69.38it/s]2022-02-22 21:47:03,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▉                         | 2633/7350 [00:38<01:08, 68.37it/s]2022-02-22 21:47:04,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████                         | 2640/7350 [00:38<01:10, 66.74it/s]2022-02-22 21:47:04,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████                         | 2648/7350 [00:38<01:07, 69.23it/s]2022-02-22 21:47:04,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████                         | 2655/7350 [00:38<01:09, 67.25it/s]2022-02-22 21:47:04,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████                         | 2662/7350 [00:38<01:13, 64.02it/s]2022-02-22 21:47:04,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▏                        | 2670/7350 [00:38<01:09, 67.49it/s]2022-02-22 21:47:04,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▏                        | 2678/7350 [00:38<01:05, 70.86it/s]2022-02-22 21:47:04,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▎                        | 2686/7350 [00:39<01:05, 71.43it/s]2022-02-22 21:47:04,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▎                        | 2694/7350 [00:39<01:03, 72.87it/s]2022-02-22 21:47:04,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:04,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▎                        | 2702/7350 [00:39<01:06, 69.61it/s]2022-02-22 21:47:05,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▍                        | 2710/7350 [00:39<01:06, 69.69it/s]2022-02-22 21:47:05,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▍                        | 2719/7350 [00:39<01:02, 74.14it/s]2022-02-22 21:47:05,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▍                        | 2727/7350 [00:39<01:04, 71.56it/s]2022-02-22 21:47:05,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▌                        | 2735/7350 [00:39<01:03, 72.23it/s]2022-02-22 21:47:05,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,630 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▌                        | 2743/7350 [00:39<01:04, 71.04it/s]2022-02-22 21:47:05,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▌                        | 2753/7350 [00:39<00:59, 76.97it/s]2022-02-22 21:47:05,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▋                        | 2761/7350 [00:40<01:01, 75.10it/s]2022-02-22 21:47:05,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:05,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▋                        | 2769/7350 [00:40<01:04, 71.15it/s]2022-02-22 21:47:06,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▋                        | 2777/7350 [00:40<01:03, 72.31it/s]2022-02-22 21:47:06,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▊                        | 2785/7350 [00:40<01:02, 72.69it/s]2022-02-22 21:47:06,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▊                        | 2793/7350 [00:40<01:05, 69.12it/s]2022-02-22 21:47:06,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▊                        | 2800/7350 [00:40<01:07, 67.62it/s]2022-02-22 21:47:06,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▉                        | 2809/7350 [00:40<01:02, 72.17it/s]2022-02-22 21:47:06,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▉                        | 2819/7350 [00:40<01:00, 74.54it/s]2022-02-22 21:47:06,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|███████████████                        | 2827/7350 [00:40<01:01, 73.71it/s]2022-02-22 21:47:06,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████                        | 2835/7350 [00:41<01:06, 68.32it/s]2022-02-22 21:47:06,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:06,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████                        | 2844/7350 [00:41<01:01, 73.42it/s]2022-02-22 21:47:07,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▏                       | 2852/7350 [00:41<01:02, 72.07it/s]2022-02-22 21:47:07,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▏                       | 2861/7350 [00:41<00:58, 76.48it/s]2022-02-22 21:47:07,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▏                       | 2869/7350 [00:41<01:02, 71.94it/s]2022-02-22 21:47:07,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▎                       | 2877/7350 [00:41<01:01, 72.95it/s]2022-02-22 21:47:07,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▎                       | 2885/7350 [00:41<01:01, 72.33it/s]2022-02-22 21:47:07,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▎                       | 2893/7350 [00:41<01:00, 73.15it/s]2022-02-22 21:47:07,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▍                       | 2901/7350 [00:42<01:06, 67.35it/s]2022-02-22 21:47:07,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:07,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▍                       | 2911/7350 [00:42<01:05, 67.83it/s]2022-02-22 21:47:07,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▌                       | 2922/7350 [00:42<01:01, 71.70it/s]2022-02-22 21:47:08,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▌                       | 2931/7350 [00:42<01:01, 71.50it/s]2022-02-22 21:47:08,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▌                       | 2941/7350 [00:42<00:57, 76.58it/s]2022-02-22 21:47:08,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▋                       | 2949/7350 [00:42<00:57, 76.00it/s]2022-02-22 21:47:08,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▋                       | 2957/7350 [00:42<01:00, 73.12it/s]2022-02-22 21:47:08,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,630 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▋                       | 2966/7350 [00:42<00:56, 77.31it/s]2022-02-22 21:47:08,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▊                       | 2974/7350 [00:42<00:59, 73.62it/s]2022-02-22 21:47:08,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▊                       | 2983/7350 [00:43<00:57, 76.24it/s]2022-02-22 21:47:08,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:08,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▊                       | 2991/7350 [00:43<00:57, 75.21it/s]2022-02-22 21:47:09,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▉                       | 2999/7350 [00:43<01:02, 70.13it/s]2022-02-22 21:47:09,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▉                       | 3007/7350 [00:43<01:00, 72.05it/s]2022-02-22 21:47:09,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▉                       | 3015/7350 [00:43<00:59, 72.31it/s]2022-02-22 21:47:09,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████                       | 3023/7350 [00:43<01:00, 71.71it/s]2022-02-22 21:47:09,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████                       | 3031/7350 [00:43<01:03, 68.52it/s]2022-02-22 21:47:09,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████▏                      | 3040/7350 [00:43<01:04, 67.20it/s]2022-02-22 21:47:09,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████▏                      | 3049/7350 [00:44<00:59, 72.69it/s]2022-02-22 21:47:09,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:09,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▏                      | 3057/7350 [00:44<00:59, 71.82it/s]2022-02-22 21:47:10,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▎                      | 3065/7350 [00:44<00:58, 73.88it/s]2022-02-22 21:47:10,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▎                      | 3073/7350 [00:44<00:58, 72.51it/s]2022-02-22 21:47:10,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▎                      | 3081/7350 [00:44<00:58, 72.82it/s]2022-02-22 21:47:10,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▍                      | 3089/7350 [00:44<00:59, 71.58it/s]2022-02-22 21:47:10,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▍                      | 3097/7350 [00:44<01:01, 68.75it/s]2022-02-22 21:47:10,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▍                      | 3105/7350 [00:44<01:01, 69.37it/s]2022-02-22 21:47:10,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▌                      | 3115/7350 [00:44<00:58, 72.86it/s]2022-02-22 21:47:10,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▌                      | 3123/7350 [00:45<00:57, 73.44it/s]2022-02-22 21:47:10,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:10,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▌                      | 3133/7350 [00:45<00:53, 79.15it/s]2022-02-22 21:47:11,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▋                      | 3141/7350 [00:45<00:58, 72.27it/s]2022-02-22 21:47:11,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▋                      | 3149/7350 [00:45<00:57, 72.60it/s]2022-02-22 21:47:11,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▊                      | 3157/7350 [00:45<00:56, 73.70it/s]2022-02-22 21:47:11,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▊                      | 3165/7350 [00:45<00:56, 74.11it/s]2022-02-22 21:47:11,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▊                      | 3173/7350 [00:45<01:01, 67.59it/s]2022-02-22 21:47:11,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▉                      | 3181/7350 [00:45<01:01, 67.85it/s]2022-02-22 21:47:11,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▉                      | 3190/7350 [00:46<00:59, 70.45it/s]2022-02-22 21:47:11,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|████████████████▉                      | 3198/7350 [00:46<00:58, 70.51it/s]2022-02-22 21:47:11,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:11,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████                      | 3206/7350 [00:46<01:04, 64.22it/s]2022-02-22 21:47:12,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████                      | 3213/7350 [00:46<01:03, 65.33it/s]2022-02-22 21:47:12,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████                      | 3222/7350 [00:46<00:57, 71.18it/s]2022-02-22 21:47:12,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▏                     | 3230/7350 [00:46<01:01, 67.52it/s]2022-02-22 21:47:12,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▏                     | 3241/7350 [00:46<00:54, 75.00it/s]2022-02-22 21:47:12,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▏                     | 3249/7350 [00:46<01:01, 66.54it/s]2022-02-22 21:47:12,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▎                     | 3257/7350 [00:47<01:00, 67.90it/s]2022-02-22 21:47:12,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▎                     | 3264/7350 [00:47<00:59, 68.41it/s]2022-02-22 21:47:12,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:12,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▎                     | 3271/7350 [00:47<01:08, 59.24it/s]2022-02-22 21:47:13,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▍                     | 3280/7350 [00:47<01:01, 66.44it/s]2022-02-22 21:47:13,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▍                     | 3287/7350 [00:47<01:03, 64.17it/s]2022-02-22 21:47:13,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▍                     | 3294/7350 [00:47<01:02, 65.08it/s]2022-02-22 21:47:13,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▌                     | 3301/7350 [00:47<01:02, 64.62it/s]2022-02-22 21:47:13,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▌                     | 3308/7350 [00:47<01:02, 64.91it/s]2022-02-22 21:47:13,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▌                     | 3315/7350 [00:47<01:00, 66.29it/s]2022-02-22 21:47:13,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▋                     | 3323/7350 [00:48<01:02, 64.76it/s]2022-02-22 21:47:13,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▋                     | 3332/7350 [00:48<00:56, 70.76it/s]2022-02-22 21:47:13,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:13,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▋                     | 3340/7350 [00:48<00:59, 67.45it/s]2022-02-22 21:47:14,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▊                     | 3349/7350 [00:48<00:55, 72.46it/s]2022-02-22 21:47:14,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▊                     | 3357/7350 [00:48<00:58, 68.70it/s]2022-02-22 21:47:14,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▊                     | 3364/7350 [00:48<00:58, 67.79it/s]2022-02-22 21:47:14,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▉                     | 3374/7350 [00:48<00:58, 67.60it/s]2022-02-22 21:47:14,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▉                     | 3385/7350 [00:48<00:51, 76.73it/s]2022-02-22 21:47:14,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████                     | 3393/7350 [00:48<00:54, 73.05it/s]2022-02-22 21:47:14,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████                     | 3401/7350 [00:49<00:56, 70.36it/s]2022-02-22 21:47:14,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:14,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████                     | 3411/7350 [00:49<00:52, 74.67it/s]2022-02-22 21:47:15,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▏                    | 3419/7350 [00:49<00:52, 75.02it/s]2022-02-22 21:47:15,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▏                    | 3427/7350 [00:49<00:53, 72.96it/s]2022-02-22 21:47:15,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▏                    | 3435/7350 [00:49<00:55, 71.08it/s]2022-02-22 21:47:15,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▎                    | 3445/7350 [00:49<00:49, 78.79it/s]2022-02-22 21:47:15,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▎                    | 3453/7350 [00:49<00:54, 71.99it/s]2022-02-22 21:47:15,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▎                    | 3461/7350 [00:49<00:55, 70.30it/s]2022-02-22 21:47:15,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▍                    | 3469/7350 [00:50<00:56, 69.24it/s]2022-02-22 21:47:15,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:15,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▍                    | 3477/7350 [00:50<00:56, 68.05it/s]2022-02-22 21:47:16,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▍                    | 3486/7350 [00:50<00:54, 70.79it/s]2022-02-22 21:47:16,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▌                    | 3494/7350 [00:50<00:56, 67.69it/s]2022-02-22 21:47:16,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▌                    | 3503/7350 [00:50<00:57, 67.12it/s]2022-02-22 21:47:16,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▋                    | 3511/7350 [00:50<00:55, 68.97it/s]2022-02-22 21:47:16,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▋                    | 3520/7350 [00:50<00:51, 73.75it/s]2022-02-22 21:47:16,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▋                    | 3529/7350 [00:50<00:51, 73.94it/s]2022-02-22 21:47:16,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▊                    | 3537/7350 [00:51<00:51, 73.35it/s]2022-02-22 21:47:16,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▊                    | 3545/7350 [00:51<00:50, 74.86it/s]2022-02-22 21:47:16,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:16,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▊                    | 3553/7350 [00:51<00:51, 73.76it/s]2022-02-22 21:47:17,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▉                    | 3561/7350 [00:51<00:51, 73.60it/s]2022-02-22 21:47:17,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|██████████████████▉                    | 3569/7350 [00:51<00:53, 70.13it/s]2022-02-22 21:47:17,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|██████████████████▉                    | 3577/7350 [00:51<00:53, 70.67it/s]2022-02-22 21:47:17,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████                    | 3585/7350 [00:51<00:52, 71.97it/s]2022-02-22 21:47:17,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████                    | 3593/7350 [00:51<00:53, 69.91it/s]2022-02-22 21:47:17,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████                    | 3601/7350 [00:51<00:54, 69.13it/s]2022-02-22 21:47:17,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▏                   | 3609/7350 [00:52<00:53, 69.76it/s]2022-02-22 21:47:17,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▏                   | 3617/7350 [00:52<00:53, 69.80it/s]2022-02-22 21:47:17,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:17,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▏                   | 3624/7350 [00:52<00:54, 67.79it/s]2022-02-22 21:47:18,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▎                   | 3631/7350 [00:52<00:57, 64.75it/s]2022-02-22 21:47:18,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▎                   | 3638/7350 [00:52<00:59, 62.65it/s]2022-02-22 21:47:18,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▎                   | 3647/7350 [00:52<00:55, 66.46it/s]2022-02-22 21:47:18,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▍                   | 3656/7350 [00:52<00:52, 70.98it/s]2022-02-22 21:47:18,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▍                   | 3664/7350 [00:52<00:52, 69.95it/s]2022-02-22 21:47:18,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▍                   | 3672/7350 [00:52<00:52, 69.67it/s]2022-02-22 21:47:18,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▌                   | 3679/7350 [00:53<00:55, 66.60it/s]2022-02-22 21:47:18,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:18,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▌                   | 3686/7350 [00:53<00:55, 65.51it/s]2022-02-22 21:47:19,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▌                   | 3693/7350 [00:53<00:56, 64.53it/s]2022-02-22 21:47:19,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▋                   | 3702/7350 [00:53<00:53, 68.22it/s]2022-02-22 21:47:19,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▋                   | 3709/7350 [00:53<00:54, 66.53it/s]2022-02-22 21:47:19,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▋                   | 3717/7350 [00:53<00:53, 67.90it/s]2022-02-22 21:47:19,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▊                   | 3724/7350 [00:53<00:55, 65.31it/s]2022-02-22 21:47:19,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▊                   | 3731/7350 [00:53<00:56, 63.71it/s]2022-02-22 21:47:19,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▊                   | 3739/7350 [00:53<00:54, 65.91it/s]2022-02-22 21:47:19,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▉                   | 3746/7350 [00:54<00:55, 65.44it/s]2022-02-22 21:47:19,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:19,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▉                   | 3755/7350 [00:54<00:51, 69.73it/s]2022-02-22 21:47:20,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▉                   | 3762/7350 [00:54<00:53, 67.16it/s]2022-02-22 21:47:20,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▉                   | 3769/7350 [00:54<00:54, 65.99it/s]2022-02-22 21:47:20,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|████████████████████                   | 3777/7350 [00:54<00:55, 63.92it/s]2022-02-22 21:47:20,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|████████████████████                   | 3785/7350 [00:54<00:52, 67.64it/s]2022-02-22 21:47:20,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████                   | 3792/7350 [00:54<00:53, 66.84it/s]2022-02-22 21:47:20,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▏                  | 3801/7350 [00:54<00:49, 71.71it/s]2022-02-22 21:47:20,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▏                  | 3811/7350 [00:55<00:46, 75.69it/s]2022-02-22 21:47:20,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▎                  | 3819/7350 [00:55<00:46, 75.20it/s]2022-02-22 21:47:20,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:20,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▎                  | 3827/7350 [00:55<00:51, 68.87it/s]2022-02-22 21:47:21,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▎                  | 3835/7350 [00:55<00:50, 70.04it/s]2022-02-22 21:47:21,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▍                  | 3844/7350 [00:55<00:46, 74.89it/s]2022-02-22 21:47:21,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▍                  | 3852/7350 [00:55<00:48, 72.06it/s]2022-02-22 21:47:21,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▍                  | 3861/7350 [00:55<00:46, 75.42it/s]2022-02-22 21:47:21,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▌                  | 3869/7350 [00:55<00:51, 67.65it/s]2022-02-22 21:47:21,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▌                  | 3876/7350 [00:55<00:51, 67.25it/s]2022-02-22 21:47:21,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▌                  | 3884/7350 [00:56<00:49, 70.01it/s]2022-02-22 21:47:21,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,963 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:21,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▋                  | 3892/7350 [00:56<00:51, 66.66it/s]2022-02-22 21:47:22,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▋                  | 3899/7350 [00:56<00:52, 65.87it/s]2022-02-22 21:47:22,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▋                  | 3908/7350 [00:56<00:52, 65.44it/s]2022-02-22 21:47:22,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▊                  | 3919/7350 [00:56<00:47, 71.75it/s]2022-02-22 21:47:22,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▊                  | 3927/7350 [00:56<00:48, 70.78it/s]2022-02-22 21:47:22,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|████████████████████▉                  | 3935/7350 [00:56<00:48, 70.24it/s]2022-02-22 21:47:22,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|████████████████████▉                  | 3943/7350 [00:56<00:48, 70.53it/s]2022-02-22 21:47:22,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|████████████████████▉                  | 3951/7350 [00:57<00:47, 72.16it/s]2022-02-22 21:47:22,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████                  | 3959/7350 [00:57<00:47, 71.65it/s]2022-02-22 21:47:22,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:22,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████                  | 3968/7350 [00:57<00:46, 73.48it/s]2022-02-22 21:47:23,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████                  | 3976/7350 [00:57<00:47, 71.13it/s]2022-02-22 21:47:23,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▏                 | 3984/7350 [00:57<00:47, 70.65it/s]2022-02-22 21:47:23,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▏                 | 3992/7350 [00:57<00:46, 72.40it/s]2022-02-22 21:47:23,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▏                 | 4000/7350 [00:57<00:50, 66.07it/s]2022-02-22 21:47:23,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▎                 | 4007/7350 [00:57<00:53, 62.72it/s]2022-02-22 21:47:23,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▎                 | 4016/7350 [00:57<00:48, 68.10it/s]2022-02-22 21:47:23,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▎                 | 4025/7350 [00:58<00:46, 71.18it/s]2022-02-22 21:47:23,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:23,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▍                 | 4034/7350 [00:58<00:44, 74.31it/s]2022-02-22 21:47:24,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,060 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▍                 | 4043/7350 [00:58<00:43, 76.45it/s]2022-02-22 21:47:24,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▍                 | 4051/7350 [00:58<00:43, 75.63it/s]2022-02-22 21:47:24,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▌                 | 4059/7350 [00:58<00:45, 72.28it/s]2022-02-22 21:47:24,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▌                 | 4067/7350 [00:58<00:45, 72.18it/s]2022-02-22 21:47:24,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▌                 | 4075/7350 [00:58<00:47, 69.29it/s]2022-02-22 21:47:24,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▋                 | 4085/7350 [00:58<00:43, 75.89it/s]2022-02-22 21:47:24,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▋                 | 4093/7350 [00:58<00:44, 74.00it/s]2022-02-22 21:47:24,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▊                 | 4101/7350 [00:59<00:43, 74.23it/s]2022-02-22 21:47:24,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:24,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▊                 | 4109/7350 [00:59<00:45, 71.18it/s]2022-02-22 21:47:25,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▊                 | 4117/7350 [00:59<00:46, 69.01it/s]2022-02-22 21:47:25,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▉                 | 4127/7350 [00:59<00:42, 75.88it/s]2022-02-22 21:47:25,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▉                 | 4135/7350 [00:59<00:42, 76.11it/s]2022-02-22 21:47:25,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▉                 | 4143/7350 [00:59<00:41, 76.61it/s]2022-02-22 21:47:25,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|██████████████████████                 | 4151/7350 [00:59<00:42, 75.83it/s]2022-02-22 21:47:25,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████                 | 4159/7350 [00:59<00:41, 76.00it/s]2022-02-22 21:47:25,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████                 | 4167/7350 [00:59<00:43, 73.54it/s]2022-02-22 21:47:25,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▏                | 4178/7350 [01:00<00:40, 78.53it/s]2022-02-22 21:47:25,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:25,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▏                | 4186/7350 [01:00<00:43, 72.73it/s]2022-02-22 21:47:26,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▎                | 4194/7350 [01:00<00:44, 71.70it/s]2022-02-22 21:47:26,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▎                | 4202/7350 [01:00<00:43, 73.07it/s]2022-02-22 21:47:26,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▎                | 4211/7350 [01:00<00:42, 73.75it/s]2022-02-22 21:47:26,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▍                | 4220/7350 [01:00<00:44, 69.83it/s]2022-02-22 21:47:26,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▍                | 4228/7350 [01:00<00:44, 70.44it/s]2022-02-22 21:47:26,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▍                | 4236/7350 [01:00<00:43, 71.63it/s]2022-02-22 21:47:26,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▌                | 4245/7350 [01:01<00:41, 75.11it/s]2022-02-22 21:47:26,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▌                | 4253/7350 [01:01<00:41, 75.45it/s]2022-02-22 21:47:26,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:26,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▌                | 4261/7350 [01:01<00:40, 75.40it/s]2022-02-22 21:47:27,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▋                | 4269/7350 [01:01<00:44, 69.61it/s]2022-02-22 21:47:27,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▋                | 4277/7350 [01:01<00:45, 67.68it/s]2022-02-22 21:47:27,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▋                | 4286/7350 [01:01<00:43, 71.24it/s]2022-02-22 21:47:27,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▊                | 4294/7350 [01:01<00:43, 69.81it/s]2022-02-22 21:47:27,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▊                | 4303/7350 [01:01<00:42, 71.01it/s]2022-02-22 21:47:27,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▊                | 4311/7350 [01:01<00:42, 71.13it/s]2022-02-22 21:47:27,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▉                | 4319/7350 [01:02<00:41, 73.11it/s]2022-02-22 21:47:27,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:27,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▉                | 4327/7350 [01:02<00:42, 70.69it/s]2022-02-22 21:47:28,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████                | 4335/7350 [01:02<00:44, 67.56it/s]2022-02-22 21:47:28,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████                | 4343/7350 [01:02<00:43, 69.41it/s]2022-02-22 21:47:28,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████                | 4353/7350 [01:02<00:40, 73.97it/s]2022-02-22 21:47:28,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████▏               | 4361/7350 [01:02<00:41, 72.59it/s]2022-02-22 21:47:28,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████▏               | 4369/7350 [01:02<00:40, 73.52it/s]2022-02-22 21:47:28,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▏               | 4377/7350 [01:02<00:40, 72.72it/s]2022-02-22 21:47:28,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▎               | 4385/7350 [01:03<00:41, 71.63it/s]2022-02-22 21:47:28,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▎               | 4393/7350 [01:03<00:40, 72.25it/s]2022-02-22 21:47:28,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:28,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▎               | 4403/7350 [01:03<00:40, 73.16it/s]2022-02-22 21:47:29,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▍               | 4412/7350 [01:03<00:38, 77.03it/s]2022-02-22 21:47:29,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▍               | 4420/7350 [01:03<00:39, 74.99it/s]2022-02-22 21:47:29,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▍               | 4428/7350 [01:03<00:38, 75.12it/s]2022-02-22 21:47:29,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▌               | 4436/7350 [01:03<00:39, 74.20it/s]2022-02-22 21:47:29,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▌               | 4445/7350 [01:03<00:41, 69.87it/s]2022-02-22 21:47:29,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▋               | 4455/7350 [01:03<00:38, 74.85it/s]2022-02-22 21:47:29,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▋               | 4463/7350 [01:04<00:39, 72.47it/s]2022-02-22 21:47:29,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:29,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▋               | 4472/7350 [01:04<00:38, 75.65it/s]2022-02-22 21:47:30,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▊               | 4481/7350 [01:04<00:37, 77.27it/s]2022-02-22 21:47:30,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▊               | 4489/7350 [01:04<00:37, 76.16it/s]2022-02-22 21:47:30,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▊               | 4497/7350 [01:04<00:38, 73.27it/s]2022-02-22 21:47:30,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▉               | 4505/7350 [01:04<00:39, 72.10it/s]2022-02-22 21:47:30,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▉               | 4514/7350 [01:04<00:42, 66.42it/s]2022-02-22 21:47:30,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████               | 4524/7350 [01:04<00:38, 73.47it/s]2022-02-22 21:47:30,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████               | 4532/7350 [01:05<00:42, 66.48it/s]2022-02-22 21:47:30,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:30,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████               | 4541/7350 [01:05<00:39, 71.92it/s]2022-02-22 21:47:30,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▏              | 4549/7350 [01:05<00:43, 64.57it/s]2022-02-22 21:47:31,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▏              | 4559/7350 [01:05<00:39, 69.89it/s]2022-02-22 21:47:31,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▏              | 4567/7350 [01:05<00:41, 67.88it/s]2022-02-22 21:47:31,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▎              | 4574/7350 [01:05<00:41, 66.11it/s]2022-02-22 21:47:31,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▎              | 4581/7350 [01:05<00:46, 59.36it/s]2022-02-22 21:47:31,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▎              | 4589/7350 [01:05<00:46, 59.24it/s]2022-02-22 21:47:31,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▍              | 4600/7350 [01:06<00:41, 66.87it/s]2022-02-22 21:47:31,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:31,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▍              | 4607/7350 [01:06<00:41, 66.35it/s]2022-02-22 21:47:32,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▍              | 4617/7350 [01:06<00:38, 70.63it/s]2022-02-22 21:47:32,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▌              | 4625/7350 [01:06<00:38, 70.02it/s]2022-02-22 21:47:32,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▌              | 4633/7350 [01:06<00:38, 71.28it/s]2022-02-22 21:47:32,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▋              | 4643/7350 [01:06<00:37, 72.77it/s]2022-02-22 21:47:32,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▋              | 4652/7350 [01:06<00:37, 71.88it/s]2022-02-22 21:47:32,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▋              | 4662/7350 [01:06<00:34, 77.29it/s]2022-02-22 21:47:32,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▊              | 4670/7350 [01:07<00:38, 69.55it/s]2022-02-22 21:47:32,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:32,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▊              | 4679/7350 [01:07<00:36, 72.84it/s]2022-02-22 21:47:33,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▊              | 4687/7350 [01:07<00:37, 71.29it/s]2022-02-22 21:47:33,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▉              | 4695/7350 [01:07<00:39, 66.71it/s]2022-02-22 21:47:33,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▉              | 4702/7350 [01:07<00:41, 63.12it/s]2022-02-22 21:47:33,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▉              | 4710/7350 [01:07<00:40, 64.63it/s]2022-02-22 21:47:33,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████              | 4720/7350 [01:07<00:38, 67.71it/s]2022-02-22 21:47:33,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████              | 4728/7350 [01:07<00:37, 70.26it/s]2022-02-22 21:47:33,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████▏             | 4736/7350 [01:08<00:37, 69.12it/s]2022-02-22 21:47:33,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▏             | 4743/7350 [01:08<00:38, 67.25it/s]2022-02-22 21:47:33,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:33,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▏             | 4750/7350 [01:08<00:40, 64.34it/s]2022-02-22 21:47:34,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▎             | 4759/7350 [01:08<00:39, 65.40it/s]2022-02-22 21:47:34,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▎             | 4769/7350 [01:08<00:35, 73.28it/s]2022-02-22 21:47:34,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▎             | 4777/7350 [01:08<00:36, 69.98it/s]2022-02-22 21:47:34,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▍             | 4786/7350 [01:08<00:36, 70.11it/s]2022-02-22 21:47:34,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▍             | 4794/7350 [01:08<00:37, 67.57it/s]2022-02-22 21:47:34,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▍             | 4801/7350 [01:09<00:41, 61.87it/s]2022-02-22 21:47:34,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:34,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▌             | 4812/7350 [01:09<00:36, 68.70it/s]2022-02-22 21:47:34,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▌             | 4819/7350 [01:09<00:40, 62.90it/s]2022-02-22 21:47:35,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▋             | 4830/7350 [01:09<00:36, 68.66it/s]2022-02-22 21:47:35,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▋             | 4838/7350 [01:09<00:36, 69.60it/s]2022-02-22 21:47:35,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▋             | 4846/7350 [01:09<00:36, 69.12it/s]2022-02-22 21:47:35,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▊             | 4854/7350 [01:09<00:35, 69.67it/s]2022-02-22 21:47:35,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▊             | 4861/7350 [01:09<00:36, 67.38it/s]2022-02-22 21:47:35,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▊             | 4870/7350 [01:10<00:37, 65.93it/s]2022-02-22 21:47:35,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▉             | 4877/7350 [01:10<00:37, 66.71it/s]2022-02-22 21:47:35,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:35,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▉             | 4885/7350 [01:10<00:36, 68.21it/s]2022-02-22 21:47:36,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|█████████████████████████▉             | 4892/7350 [01:10<00:36, 67.55it/s]2022-02-22 21:47:36,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|█████████████████████████▉             | 4899/7350 [01:10<00:38, 64.10it/s]2022-02-22 21:47:36,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████             | 4906/7350 [01:10<00:41, 59.52it/s]2022-02-22 21:47:36,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████             | 4916/7350 [01:10<00:39, 62.31it/s]2022-02-22 21:47:36,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▏            | 4925/7350 [01:10<00:38, 63.07it/s]2022-02-22 21:47:36,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▏            | 4933/7350 [01:11<00:36, 65.38it/s]2022-02-22 21:47:36,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▏            | 4941/7350 [01:11<00:36, 65.64it/s]2022-02-22 21:47:36,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:36,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▎            | 4951/7350 [01:11<00:34, 70.54it/s]2022-02-22 21:47:37,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▎            | 4959/7350 [01:11<00:33, 71.24it/s]2022-02-22 21:47:37,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▎            | 4967/7350 [01:11<00:33, 70.62it/s]2022-02-22 21:47:37,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▍            | 4975/7350 [01:11<00:34, 68.28it/s]2022-02-22 21:47:37,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▍            | 4983/7350 [01:11<00:33, 70.90it/s]2022-02-22 21:47:37,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▍            | 4991/7350 [01:11<00:33, 70.34it/s]2022-02-22 21:47:37,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▌            | 4999/7350 [01:11<00:33, 70.17it/s]2022-02-22 21:47:37,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▌            | 5007/7350 [01:12<00:34, 68.71it/s]2022-02-22 21:47:37,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:37,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▌            | 5016/7350 [01:12<00:33, 69.98it/s]2022-02-22 21:47:38,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▋            | 5024/7350 [01:12<00:33, 68.57it/s]2022-02-22 21:47:38,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▋            | 5031/7350 [01:12<00:33, 68.42it/s]2022-02-22 21:47:38,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▋            | 5039/7350 [01:12<00:33, 69.23it/s]2022-02-22 21:47:38,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▊            | 5047/7350 [01:12<00:32, 71.90it/s]2022-02-22 21:47:38,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▊            | 5055/7350 [01:12<00:31, 71.76it/s]2022-02-22 21:47:38,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▊            | 5063/7350 [01:12<00:34, 65.98it/s]2022-02-22 21:47:38,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▉            | 5071/7350 [01:12<00:34, 66.81it/s]2022-02-22 21:47:38,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▉            | 5078/7350 [01:13<00:34, 66.17it/s]2022-02-22 21:47:38,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:38,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▉            | 5087/7350 [01:13<00:33, 66.80it/s]2022-02-22 21:47:39,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████            | 5096/7350 [01:13<00:31, 71.74it/s]2022-02-22 21:47:39,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████            | 5105/7350 [01:13<00:32, 69.67it/s]2022-02-22 21:47:39,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▏           | 5113/7350 [01:13<00:33, 66.87it/s]2022-02-22 21:47:39,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▏           | 5122/7350 [01:13<00:30, 72.17it/s]2022-02-22 21:47:39,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▏           | 5130/7350 [01:13<00:31, 70.61it/s]2022-02-22 21:47:39,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▎           | 5138/7350 [01:13<00:35, 62.94it/s]2022-02-22 21:47:39,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▎           | 5147/7350 [01:14<00:31, 69.52it/s]2022-02-22 21:47:39,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:39,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▎           | 5155/7350 [01:14<00:31, 69.13it/s]2022-02-22 21:47:40,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▍           | 5163/7350 [01:14<00:32, 66.93it/s]2022-02-22 21:47:40,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▍           | 5170/7350 [01:14<00:32, 67.54it/s]2022-02-22 21:47:40,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▍           | 5178/7350 [01:14<00:30, 70.25it/s]2022-02-22 21:47:40,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▌           | 5187/7350 [01:14<00:28, 75.31it/s]2022-02-22 21:47:40,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▌           | 5195/7350 [01:14<00:29, 72.55it/s]2022-02-22 21:47:40,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▌           | 5203/7350 [01:14<00:30, 71.46it/s]2022-02-22 21:47:40,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▋           | 5211/7350 [01:14<00:29, 71.97it/s]2022-02-22 21:47:40,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▋           | 5219/7350 [01:15<00:29, 72.42it/s]2022-02-22 21:47:40,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:40,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▋           | 5227/7350 [01:15<00:31, 67.58it/s]2022-02-22 21:47:41,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▊           | 5235/7350 [01:15<00:29, 70.51it/s]2022-02-22 21:47:41,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▊           | 5244/7350 [01:15<00:27, 75.75it/s]2022-02-22 21:47:41,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▊           | 5252/7350 [01:15<00:29, 72.23it/s]2022-02-22 21:47:41,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|███████████████████████████▉           | 5260/7350 [01:15<00:29, 71.64it/s]2022-02-22 21:47:41,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|███████████████████████████▉           | 5269/7350 [01:15<00:28, 73.84it/s]2022-02-22 21:47:41,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████           | 5277/7350 [01:15<00:29, 69.25it/s]2022-02-22 21:47:41,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████           | 5285/7350 [01:16<00:29, 71.09it/s]2022-02-22 21:47:41,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████           | 5293/7350 [01:16<00:28, 72.38it/s]2022-02-22 21:47:41,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:41,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▏          | 5301/7350 [01:16<00:30, 67.31it/s]2022-02-22 21:47:42,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▏          | 5310/7350 [01:16<00:28, 71.59it/s]2022-02-22 21:47:42,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▏          | 5318/7350 [01:16<00:28, 70.35it/s]2022-02-22 21:47:42,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▎          | 5326/7350 [01:16<00:29, 67.88it/s]2022-02-22 21:47:42,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▎          | 5334/7350 [01:16<00:29, 68.16it/s]2022-02-22 21:47:42,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▎          | 5341/7350 [01:16<00:32, 62.67it/s]2022-02-22 21:47:42,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▍          | 5350/7350 [01:16<00:29, 67.78it/s]2022-02-22 21:47:42,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▍          | 5357/7350 [01:17<00:29, 66.78it/s]2022-02-22 21:47:42,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:42,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▍          | 5364/7350 [01:17<00:29, 66.39it/s]2022-02-22 21:47:43,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▍          | 5371/7350 [01:17<00:30, 65.77it/s]2022-02-22 21:47:43,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▌          | 5378/7350 [01:17<00:29, 66.66it/s]2022-02-22 21:47:43,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▌          | 5386/7350 [01:17<00:29, 66.34it/s]2022-02-22 21:47:43,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▋          | 5396/7350 [01:17<00:27, 69.89it/s]2022-02-22 21:47:43,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▋          | 5403/7350 [01:17<00:28, 68.97it/s]2022-02-22 21:47:43,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▋          | 5412/7350 [01:17<00:27, 70.21it/s]2022-02-22 21:47:43,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▊          | 5420/7350 [01:18<00:28, 68.92it/s]2022-02-22 21:47:43,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▊          | 5428/7350 [01:18<00:27, 69.56it/s]2022-02-22 21:47:43,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:43,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▊          | 5435/7350 [01:18<00:27, 69.55it/s]2022-02-22 21:47:44,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▉          | 5443/7350 [01:18<00:27, 68.33it/s]2022-02-22 21:47:44,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▉          | 5451/7350 [01:18<00:27, 70.12it/s]2022-02-22 21:47:44,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▉          | 5459/7350 [01:18<00:28, 65.68it/s]2022-02-22 21:47:44,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████          | 5466/7350 [01:18<00:29, 64.23it/s]2022-02-22 21:47:44,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████          | 5473/7350 [01:18<00:30, 61.99it/s]2022-02-22 21:47:44,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████          | 5482/7350 [01:18<00:28, 66.34it/s]2022-02-22 21:47:44,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▏         | 5492/7350 [01:19<00:25, 74.22it/s]2022-02-22 21:47:44,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:44,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▏         | 5500/7350 [01:19<00:26, 70.79it/s]2022-02-22 21:47:45,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▏         | 5508/7350 [01:19<00:25, 71.55it/s]2022-02-22 21:47:45,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▎         | 5516/7350 [01:19<00:25, 71.13it/s]2022-02-22 21:47:45,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▎         | 5525/7350 [01:19<00:26, 69.13it/s]2022-02-22 21:47:45,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▎         | 5536/7350 [01:19<00:24, 72.85it/s]2022-02-22 21:47:45,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▍         | 5545/7350 [01:19<00:23, 76.42it/s]2022-02-22 21:47:45,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▍         | 5553/7350 [01:19<00:23, 76.05it/s]2022-02-22 21:47:45,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▌         | 5561/7350 [01:20<00:24, 73.19it/s]2022-02-22 21:47:45,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▌         | 5570/7350 [01:20<00:24, 71.97it/s]2022-02-22 21:47:45,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:45,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▌         | 5578/7350 [01:20<00:25, 69.85it/s]2022-02-22 21:47:46,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▋         | 5588/7350 [01:20<00:22, 77.07it/s]2022-02-22 21:47:46,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▋         | 5596/7350 [01:20<00:23, 74.50it/s]2022-02-22 21:47:46,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▋         | 5605/7350 [01:20<00:23, 74.43it/s]2022-02-22 21:47:46,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▊         | 5615/7350 [01:20<00:24, 70.49it/s]2022-02-22 21:47:46,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▊         | 5626/7350 [01:20<00:24, 71.54it/s]2022-02-22 21:47:46,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▉         | 5634/7350 [01:21<00:24, 70.76it/s]2022-02-22 21:47:46,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▉         | 5642/7350 [01:21<00:24, 69.48it/s]2022-02-22 21:47:46,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:46,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▉         | 5652/7350 [01:21<00:22, 76.62it/s]2022-02-22 21:47:47,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████         | 5660/7350 [01:21<00:23, 73.43it/s]2022-02-22 21:47:47,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████         | 5668/7350 [01:21<00:22, 73.68it/s]2022-02-22 21:47:47,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████         | 5676/7350 [01:21<00:23, 71.11it/s]2022-02-22 21:47:47,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████▏        | 5685/7350 [01:21<00:23, 71.15it/s]2022-02-22 21:47:47,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████▏        | 5694/7350 [01:21<00:22, 72.50it/s]2022-02-22 21:47:47,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▎        | 5703/7350 [01:21<00:22, 73.22it/s]2022-02-22 21:47:47,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▎        | 5712/7350 [01:22<00:22, 72.81it/s]2022-02-22 21:47:47,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:47,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▎        | 5721/7350 [01:22<00:21, 74.94it/s]2022-02-22 21:47:48,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▍        | 5729/7350 [01:22<00:22, 71.56it/s]2022-02-22 21:47:48,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▍        | 5737/7350 [01:22<00:22, 70.89it/s]2022-02-22 21:47:48,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▍        | 5745/7350 [01:22<00:22, 71.42it/s]2022-02-22 21:47:48,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▌        | 5753/7350 [01:22<00:23, 69.41it/s]2022-02-22 21:47:48,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▌        | 5761/7350 [01:22<00:24, 66.18it/s]2022-02-22 21:47:48,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▋        | 5772/7350 [01:22<00:23, 67.78it/s]2022-02-22 21:47:48,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▋        | 5781/7350 [01:23<00:21, 72.27it/s]2022-02-22 21:47:48,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:48,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▋        | 5790/7350 [01:23<00:20, 76.76it/s]2022-02-22 21:47:49,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▊        | 5798/7350 [01:23<00:22, 70.41it/s]2022-02-22 21:47:49,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▊        | 5807/7350 [01:23<00:22, 69.86it/s]2022-02-22 21:47:49,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▊        | 5815/7350 [01:23<00:21, 70.54it/s]2022-02-22 21:47:49,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▉        | 5823/7350 [01:23<00:21, 70.96it/s]2022-02-22 21:47:49,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▉        | 5831/7350 [01:23<00:21, 70.96it/s]2022-02-22 21:47:49,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▉        | 5841/7350 [01:23<00:21, 69.73it/s]2022-02-22 21:47:49,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████        | 5850/7350 [01:24<00:22, 67.75it/s]2022-02-22 21:47:49,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:49,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████        | 5859/7350 [01:24<00:21, 69.95it/s]2022-02-22 21:47:50,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▏       | 5868/7350 [01:24<00:21, 68.93it/s]2022-02-22 21:47:50,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▏       | 5878/7350 [01:24<00:19, 74.30it/s]2022-02-22 21:47:50,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▏       | 5886/7350 [01:24<00:20, 72.06it/s]2022-02-22 21:47:50,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▎       | 5894/7350 [01:24<00:19, 73.84it/s]2022-02-22 21:47:50,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▎       | 5902/7350 [01:24<00:21, 67.77it/s]2022-02-22 21:47:50,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▎       | 5909/7350 [01:24<00:22, 64.32it/s]2022-02-22 21:47:50,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▍       | 5917/7350 [01:25<00:23, 61.85it/s]2022-02-22 21:47:50,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:50,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▍       | 5927/7350 [01:25<00:21, 66.55it/s]2022-02-22 21:47:51,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▌       | 5937/7350 [01:25<00:20, 68.85it/s]2022-02-22 21:47:51,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▌       | 5946/7350 [01:25<00:20, 68.95it/s]2022-02-22 21:47:51,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▌       | 5956/7350 [01:25<00:18, 74.23it/s]2022-02-22 21:47:51,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▋       | 5964/7350 [01:25<00:18, 73.22it/s]2022-02-22 21:47:51,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▋       | 5972/7350 [01:25<00:18, 74.55it/s]2022-02-22 21:47:51,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▋       | 5980/7350 [01:25<00:19, 69.90it/s]2022-02-22 21:47:51,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▊       | 5988/7350 [01:26<00:19, 70.31it/s]2022-02-22 21:47:51,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:51,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▊       | 5996/7350 [01:26<00:20, 66.69it/s]2022-02-22 21:47:52,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▊       | 6003/7350 [01:26<00:20, 64.89it/s]2022-02-22 21:47:52,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 6011/7350 [01:26<00:19, 67.99it/s]2022-02-22 21:47:52,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 6018/7350 [01:26<00:21, 62.35it/s]2022-02-22 21:47:52,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 6026/7350 [01:26<00:20, 63.36it/s]2022-02-22 21:47:52,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████       | 6033/7350 [01:26<00:20, 64.08it/s]2022-02-22 21:47:52,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████       | 6043/7350 [01:26<00:17, 73.37it/s]2022-02-22 21:47:52,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████       | 6051/7350 [01:27<00:19, 67.04it/s]2022-02-22 21:47:52,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████▏      | 6058/7350 [01:27<00:20, 64.33it/s]2022-02-22 21:47:52,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:52,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▏      | 6068/7350 [01:27<00:18, 69.41it/s]2022-02-22 21:47:53,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▏      | 6076/7350 [01:27<00:17, 71.34it/s]2022-02-22 21:47:53,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▎      | 6084/7350 [01:27<00:19, 65.56it/s]2022-02-22 21:47:53,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▎      | 6094/7350 [01:27<00:18, 69.23it/s]2022-02-22 21:47:53,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▍      | 6102/7350 [01:27<00:18, 68.53it/s]2022-02-22 21:47:53,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▍      | 6109/7350 [01:27<00:18, 65.88it/s]2022-02-22 21:47:53,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▍      | 6116/7350 [01:27<00:19, 62.74it/s]2022-02-22 21:47:53,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▌      | 6126/7350 [01:28<00:17, 71.78it/s]2022-02-22 21:47:53,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:53,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▌      | 6134/7350 [01:28<00:17, 69.25it/s]2022-02-22 21:47:54,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▌      | 6142/7350 [01:28<00:17, 70.17it/s]2022-02-22 21:47:54,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 6150/7350 [01:28<00:17, 68.73it/s]2022-02-22 21:47:54,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 6158/7350 [01:28<00:16, 70.16it/s]2022-02-22 21:47:54,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 6166/7350 [01:28<00:17, 69.48it/s]2022-02-22 21:47:54,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▊      | 6175/7350 [01:28<00:15, 74.40it/s]2022-02-22 21:47:54,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▊      | 6183/7350 [01:28<00:16, 69.56it/s]2022-02-22 21:47:54,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▊      | 6191/7350 [01:29<00:16, 68.67it/s]2022-02-22 21:47:54,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,963 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▉      | 6198/7350 [01:29<00:17, 67.34it/s]2022-02-22 21:47:54,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:54,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▉      | 6208/7350 [01:29<00:17, 65.33it/s]2022-02-22 21:47:55,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|████████████████████████████████▉      | 6217/7350 [01:29<00:15, 71.29it/s]2022-02-22 21:47:55,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████      | 6225/7350 [01:29<00:15, 71.60it/s]2022-02-22 21:47:55,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████      | 6233/7350 [01:29<00:15, 70.14it/s]2022-02-22 21:47:55,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████      | 6241/7350 [01:29<00:15, 69.33it/s]2022-02-22 21:47:55,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 6249/7350 [01:29<00:15, 71.22it/s]2022-02-22 21:47:55,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 6257/7350 [01:29<00:15, 70.82it/s]2022-02-22 21:47:55,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 6265/7350 [01:30<00:15, 70.29it/s]2022-02-22 21:47:55,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:55,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▎     | 6273/7350 [01:30<00:15, 71.02it/s]2022-02-22 21:47:56,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▎     | 6281/7350 [01:30<00:15, 70.77it/s]2022-02-22 21:47:56,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▍     | 6290/7350 [01:30<00:14, 75.29it/s]2022-02-22 21:47:56,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▍     | 6298/7350 [01:30<00:14, 73.68it/s]2022-02-22 21:47:56,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▍     | 6306/7350 [01:30<00:14, 74.23it/s]2022-02-22 21:47:56,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 6314/7350 [01:30<00:13, 75.44it/s]2022-02-22 21:47:56,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 6322/7350 [01:30<00:13, 76.58it/s]2022-02-22 21:47:56,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 6330/7350 [01:30<00:13, 73.89it/s]2022-02-22 21:47:56,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▋     | 6338/7350 [01:31<00:13, 73.89it/s]2022-02-22 21:47:56,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:56,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▋     | 6347/7350 [01:31<00:13, 74.53it/s]2022-02-22 21:47:57,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▋     | 6355/7350 [01:31<00:13, 72.00it/s]2022-02-22 21:47:57,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 6363/7350 [01:31<00:14, 68.55it/s]2022-02-22 21:47:57,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 6370/7350 [01:31<00:14, 68.44it/s]2022-02-22 21:47:57,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 6377/7350 [01:31<00:15, 64.48it/s]2022-02-22 21:47:57,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 6386/7350 [01:31<00:13, 70.62it/s]2022-02-22 21:47:57,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 6396/7350 [01:31<00:12, 77.83it/s]2022-02-22 21:47:57,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 6404/7350 [01:31<00:12, 77.55it/s]2022-02-22 21:47:57,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|██████████████████████████████████     | 6412/7350 [01:32<00:13, 69.94it/s]2022-02-22 21:47:57,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:57,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|██████████████████████████████████     | 6421/7350 [01:32<00:12, 75.22it/s]2022-02-22 21:47:58,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|██████████████████████████████████     | 6429/7350 [01:32<00:12, 71.70it/s]2022-02-22 21:47:58,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▏    | 6437/7350 [01:32<00:12, 70.92it/s]2022-02-22 21:47:58,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▏    | 6445/7350 [01:32<00:12, 72.45it/s]2022-02-22 21:47:58,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▏    | 6453/7350 [01:32<00:12, 71.42it/s]2022-02-22 21:47:58,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▎    | 6461/7350 [01:32<00:13, 67.75it/s]2022-02-22 21:47:58,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▎    | 6468/7350 [01:32<00:12, 67.92it/s]2022-02-22 21:47:58,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▎    | 6475/7350 [01:33<00:13, 62.51it/s]2022-02-22 21:47:58,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▍    | 6484/7350 [01:33<00:12, 68.52it/s]2022-02-22 21:47:58,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:58,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▍    | 6491/7350 [01:33<00:13, 64.74it/s]2022-02-22 21:47:59,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▍    | 6500/7350 [01:33<00:12, 68.99it/s]2022-02-22 21:47:59,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▌    | 6508/7350 [01:33<00:12, 68.43it/s]2022-02-22 21:47:59,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▌    | 6515/7350 [01:33<00:12, 66.62it/s]2022-02-22 21:47:59,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▌    | 6522/7350 [01:33<00:12, 67.03it/s]2022-02-22 21:47:59,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▋    | 6529/7350 [01:33<00:12, 64.70it/s]2022-02-22 21:47:59,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▋    | 6539/7350 [01:33<00:11, 69.25it/s]2022-02-22 21:47:59,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▋    | 6548/7350 [01:34<00:11, 72.03it/s]2022-02-22 21:47:59,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:47:59,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▊    | 6556/7350 [01:34<00:10, 73.74it/s]2022-02-22 21:48:00,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▊    | 6564/7350 [01:34<00:10, 71.66it/s]2022-02-22 21:48:00,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▊    | 6572/7350 [01:34<00:10, 70.75it/s]2022-02-22 21:48:00,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|██████████████████████████████████▉    | 6580/7350 [01:34<00:10, 71.89it/s]2022-02-22 21:48:00,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|██████████████████████████████████▉    | 6588/7350 [01:34<00:10, 74.06it/s]2022-02-22 21:48:00,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|██████████████████████████████████▉    | 6596/7350 [01:34<00:10, 73.52it/s]2022-02-22 21:48:00,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████    | 6604/7350 [01:34<00:10, 68.25it/s]2022-02-22 21:48:00,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████    | 6612/7350 [01:34<00:10, 70.38it/s]2022-02-22 21:48:00,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▏   | 6620/7350 [01:35<00:11, 61.95it/s]2022-02-22 21:48:00,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:00,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▏   | 6630/7350 [01:35<00:11, 65.42it/s]2022-02-22 21:48:01,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▏   | 6637/7350 [01:35<00:10, 64.92it/s]2022-02-22 21:48:01,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▎   | 6645/7350 [01:35<00:10, 68.53it/s]2022-02-22 21:48:01,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▎   | 6655/7350 [01:35<00:09, 72.55it/s]2022-02-22 21:48:01,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▎   | 6663/7350 [01:35<00:09, 69.83it/s]2022-02-22 21:48:01,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▍   | 6673/7350 [01:35<00:09, 73.79it/s]2022-02-22 21:48:01,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▍   | 6682/7350 [01:35<00:09, 73.62it/s]2022-02-22 21:48:01,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▍   | 6690/7350 [01:36<00:09, 70.48it/s]2022-02-22 21:48:01,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:01,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▌   | 6698/7350 [01:36<00:09, 66.52it/s]2022-02-22 21:48:02,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▌   | 6705/7350 [01:36<00:09, 65.98it/s]2022-02-22 21:48:02,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▌   | 6713/7350 [01:36<00:09, 67.23it/s]2022-02-22 21:48:02,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▋   | 6722/7350 [01:36<00:09, 65.91it/s]2022-02-22 21:48:02,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▋   | 6729/7350 [01:36<00:09, 66.42it/s]2022-02-22 21:48:02,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▋   | 6737/7350 [01:36<00:09, 65.63it/s]2022-02-22 21:48:02,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▊   | 6746/7350 [01:36<00:08, 70.04it/s]2022-02-22 21:48:02,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▊   | 6754/7350 [01:37<00:08, 69.23it/s]2022-02-22 21:48:02,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:02,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 6762/7350 [01:37<00:08, 68.15it/s]2022-02-22 21:48:03,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 6769/7350 [01:37<00:08, 68.30it/s]2022-02-22 21:48:03,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 6777/7350 [01:37<00:08, 68.24it/s]2022-02-22 21:48:03,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 6784/7350 [01:37<00:08, 63.31it/s]2022-02-22 21:48:03,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|████████████████████████████████████   | 6793/7350 [01:37<00:07, 69.79it/s]2022-02-22 21:48:03,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████   | 6801/7350 [01:37<00:08, 68.56it/s]2022-02-22 21:48:03,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▏  | 6810/7350 [01:37<00:07, 72.49it/s]2022-02-22 21:48:03,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▏  | 6818/7350 [01:37<00:07, 70.89it/s]2022-02-22 21:48:03,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▏  | 6827/7350 [01:38<00:07, 72.92it/s]2022-02-22 21:48:03,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:03,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▎  | 6835/7350 [01:38<00:07, 73.50it/s]2022-02-22 21:48:04,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▎  | 6843/7350 [01:38<00:06, 73.90it/s]2022-02-22 21:48:04,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▎  | 6851/7350 [01:38<00:06, 75.59it/s]2022-02-22 21:48:04,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▍  | 6859/7350 [01:38<00:07, 70.13it/s]2022-02-22 21:48:04,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▍  | 6867/7350 [01:38<00:06, 69.95it/s]2022-02-22 21:48:04,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▍  | 6875/7350 [01:38<00:06, 68.50it/s]2022-02-22 21:48:04,630 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 6884/7350 [01:38<00:06, 72.61it/s]2022-02-22 21:48:04,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 6892/7350 [01:39<00:06, 71.39it/s]2022-02-22 21:48:04,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 6900/7350 [01:39<00:06, 71.78it/s]2022-02-22 21:48:04,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:04,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▋  | 6909/7350 [01:39<00:06, 68.41it/s]2022-02-22 21:48:05,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▋  | 6919/7350 [01:39<00:05, 74.38it/s]2022-02-22 21:48:05,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▊  | 6927/7350 [01:39<00:05, 74.78it/s]2022-02-22 21:48:05,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▊  | 6936/7350 [01:39<00:05, 77.70it/s]2022-02-22 21:48:05,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▊  | 6944/7350 [01:39<00:05, 73.36it/s]2022-02-22 21:48:05,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▉  | 6952/7350 [01:39<00:05, 74.93it/s]2022-02-22 21:48:05,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▉  | 6962/7350 [01:39<00:05, 75.01it/s]2022-02-22 21:48:05,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▉  | 6971/7350 [01:40<00:04, 77.08it/s]2022-02-22 21:48:05,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:05,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████  | 6979/7350 [01:40<00:05, 73.61it/s]2022-02-22 21:48:06,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████  | 6987/7350 [01:40<00:04, 73.43it/s]2022-02-22 21:48:06,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████  | 6995/7350 [01:40<00:04, 71.48it/s]2022-02-22 21:48:06,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 7004/7350 [01:40<00:05, 67.14it/s]2022-02-22 21:48:06,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 7011/7350 [01:40<00:05, 67.09it/s]2022-02-22 21:48:06,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 7019/7350 [01:40<00:04, 70.01it/s]2022-02-22 21:48:06,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▎ | 7027/7350 [01:40<00:04, 70.39it/s]2022-02-22 21:48:06,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▎ | 7036/7350 [01:40<00:04, 74.99it/s]2022-02-22 21:48:06,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▍ | 7044/7350 [01:41<00:04, 72.06it/s]2022-02-22 21:48:06,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:06,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▍ | 7052/7350 [01:41<00:04, 69.16it/s]2022-02-22 21:48:07,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▍ | 7061/7350 [01:41<00:04, 65.01it/s]2022-02-22 21:48:07,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▌ | 7071/7350 [01:41<00:04, 65.62it/s]2022-02-22 21:48:07,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▌ | 7080/7350 [01:41<00:04, 63.34it/s]2022-02-22 21:48:07,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▌ | 7088/7350 [01:41<00:03, 66.04it/s]2022-02-22 21:48:07,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▋ | 7099/7350 [01:41<00:03, 73.40it/s]2022-02-22 21:48:07,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▋ | 7107/7350 [01:42<00:03, 72.40it/s]2022-02-22 21:48:07,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:07,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▊ | 7115/7350 [01:42<00:03, 65.72it/s]2022-02-22 21:48:08,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▊ | 7124/7350 [01:42<00:03, 70.82it/s]2022-02-22 21:48:08,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▊ | 7132/7350 [01:42<00:03, 69.77it/s]2022-02-22 21:48:08,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▉ | 7140/7350 [01:42<00:03, 65.44it/s]2022-02-22 21:48:08,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▉ | 7149/7350 [01:42<00:02, 69.60it/s]2022-02-22 21:48:08,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▉ | 7157/7350 [01:42<00:02, 65.26it/s]2022-02-22 21:48:08,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|██████████████████████████████████████ | 7165/7350 [01:42<00:02, 67.26it/s]2022-02-22 21:48:08,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████ | 7173/7350 [01:43<00:02, 70.35it/s]2022-02-22 21:48:08,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:08,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████ | 7181/7350 [01:43<00:02, 66.02it/s]2022-02-22 21:48:08,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▏| 7191/7350 [01:43<00:02, 68.69it/s]2022-02-22 21:48:09,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▏| 7201/7350 [01:43<00:01, 74.70it/s]2022-02-22 21:48:09,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▎| 7209/7350 [01:43<00:01, 73.42it/s]2022-02-22 21:48:09,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▎| 7217/7350 [01:43<00:01, 70.28it/s]2022-02-22 21:48:09,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▎| 7226/7350 [01:43<00:01, 70.10it/s]2022-02-22 21:48:09,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▍| 7234/7350 [01:43<00:01, 71.86it/s]2022-02-22 21:48:09,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▍| 7242/7350 [01:44<00:01, 68.68it/s]2022-02-22 21:48:09,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▍| 7249/7350 [01:44<00:01, 64.33it/s]2022-02-22 21:48:09,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:09,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▌| 7257/7350 [01:44<00:01, 66.63it/s]2022-02-22 21:48:10,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▌| 7265/7350 [01:44<00:01, 68.40it/s]2022-02-22 21:48:10,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▌| 7272/7350 [01:44<00:01, 65.89it/s]2022-02-22 21:48:10,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▌| 7279/7350 [01:44<00:01, 65.17it/s]2022-02-22 21:48:10,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▋| 7287/7350 [01:44<00:00, 66.45it/s]2022-02-22 21:48:10,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▋| 7294/7350 [01:44<00:00, 65.99it/s]2022-02-22 21:48:10,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▋| 7301/7350 [01:44<00:00, 64.63it/s]2022-02-22 21:48:10,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▊| 7311/7350 [01:45<00:00, 65.20it/s]2022-02-22 21:48:10,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:10,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▊| 7321/7350 [01:45<00:00, 70.54it/s]2022-02-22 21:48:11,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▉| 7329/7350 [01:45<00:00, 67.62it/s]2022-02-22 21:48:11,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▉| 7336/7350 [01:45<00:00, 67.47it/s]2022-02-22 21:48:11,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▉| 7345/7350 [01:45<00:00, 70.44it/s]2022-02-22 21:48:11,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:48:11,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|███████████████████████████████████████| 7350/7350 [01:45<00:00, 69.60it/s]
In [14]:
#Tshirt: net aperture
Flux, Flux_error = phot.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt = Flux['Flux 0']/Flux['Flux 0'][0] #normalized net aperture sum
std_tshirt = np.std(normalized_flux_tshirt[0:20]) #calculated standard deviation
relative_error_tshirt = (Flux_error['Error 0']/Flux['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt[0:seg01_len] - np.median(normalized_flux_tshirt[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt)*10**6))
plt.errorbar(Flux['Time (JD)'],normalized_flux_tshirt,yerr=relative_error_tshirt,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
Tshirt Calculated Net Aperture Sum MAD (ppm): 6470.66827809625
Tshirt Calculated Net Aperture Sum std (ppm): 7865.73564001017
Median Relative Errors Net Aperture Sum (ppm): 3251.4463747714167
Out[14]:
<ErrorbarContainer object of 3 artists>

$\textbf{Plotting Results: Altered}$¶

Initial pipeline results with altered aperture sizes. In this particular simulation, there is an edge effect (the observation is cut off on the top and bottom). We want to see how observations that turn out this way in real life can effect the results the pipline returns.

TSOPHOT reference files are ASDF format. An object called ‘radii’ in a TSOPHOT file defines the radii that the step needs. This object is a list of one or more dictionaries. Each such dictionary has four keys: ‘pupil’, ‘radius’, ‘radius_inner’, and ‘radius_outer’. The particular one of these dictionaries to use is selected by comparing meta.instrument.pupil with the value corresponding to ‘pupil’ in each dictionary. If an exact match is found, that dictionary will be used. If no match is found, the first dictionary with ‘pupil’: ‘ANY’ will be selected. The radii will be taken from the values of keys ‘radius’, ‘radius_inner’, and ‘radius_outer’.

NOTE: You must run these sections in order because it requires re-running stage 3 (will take a few minutes).

$\textbf{30-30-50 Radii}$¶

$\textbf{TSO Photometry Reference File: Radii Parameters}$¶

The original radii parameters are: radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

The altered radii parameters are (to try the pupil = CLEAR parameters): radius: 30.0, radius_inner: 30.0, and radius_outer: 50.0

In [43]:
original_tsophot=asdf.open("/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf") #the original tsophot reference file
original_tsophot.tree #print the original tsophot reference file

#adjust the radii parameters
original_tsophot.tree['radii'] = [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 70.0}, #For this particular data set, the outer radius limit is 62 due to edge effects on detector
  {'pupil': 'ANY', 'radius': 30.0, 'radius_inner': 30.0, 'radius_outer': 50.0}]
original_tsophot.write_to('adjusted_jwst_nircam_tsophot_0001.asdf')
adjusted_tsophot=asdf.open('adjusted_jwst_nircam_tsophot_0001.asdf') #the adjusted tsophot reference file
adjusted_tsophot.tree #print the adjusted tsophot reference file
Out[43]:
{'asdf_library': {'author': 'Space Telescope Science Institute',
  'homepage': 'http://github.com/spacetelescope/asdf',
  'name': 'asdf',
  'version': '2.7.2'},
 'history': {'entries': [{'description': 'File created based on values of aperture radii for NIRCam that were specified as constants in tso_photometry_step.py.',
    'time': datetime.datetime(2018, 7, 13, 17, 20, 5)}],
  'extensions': [{'extension_class': 'asdf.extension.BuiltinExtension',
    'software': {'name': 'asdf', 'version': '2.7.2'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyAsdfExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'gwcs.extension.GWCSExtension',
    'software': {'name': 'gwcs', 'version': '0.16.1'}}]},
 'meta': {'author': 'NIRCam IDT; P. Hodge',
  'date': '2018-07-13T17:20:00',
  'description': 'aperture radii for tso_photometry',
  'exposure': {'type': 'NRC_TSIMAGE'},
  'filename': 'nircam_tsophot.asdf',
  'instrument': {'name': 'NIRCAM'},
  'model_type': 'TsoPhotModel',
  'pedigree': 'GROUND',
  'reftype': 'tsophot',
  'telescope': 'JWST',
  'useafter': '2015-01-01T00:00:00',
  'visit': {'tsovisit': True}},
 'radii': [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 70.0},
  {'pupil': 'ANY',
   'radius': 30.0,
   'radius_inner': 30.0,
   'radius_outer': 50.0}]}
In [44]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True
pipeline_stage3.tso_photometry.override_tsophot = 'adjusted_jwst_nircam_tsophot_0001.asdf' #use the modified tso_phot ref file

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/303050_radii/'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2021-11-08 20:20:55,338 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2021-11-08 20:20:55,346 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2021-11-08 20:20:55,352 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2021-11-08 20:20:55,358 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2021-11-08 20:20:55,363 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2021-11-08 20:20:55,856 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/nrca1_level3_asn.json',).
2021-11-08 20:20:55,866 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/303050_radii/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2021-11-08 20:20:59,907 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg001_nrca1_calints.fits' reftypes = ['gain', 'readnoise']
2021-11-08 20:20:59,917 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
2021-11-08 20:20:59,920 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
2021-11-08 20:20:59,922 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2021-11-08 20:22:25,982 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:22:26,775 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:22:26,779 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:22:26,780 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:22:27,126 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:23:26,707 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:23:27,472 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:23:27,476 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:23:27,478 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:23:27,824 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:24:27,793 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:24:28,566 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:24:28,571 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:24:28,573 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:24:28,916 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:25:28,611 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:25:29,379 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:25:29,383 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:25:29,384 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:25:29,728 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:26:29,488 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:26:30,254 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:26:30,258 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:26:30,260 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:26:30,606 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:27:30,320 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:27:31,091 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:27:31,095 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:27:31,097 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:27:31,440 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:28:31,138 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:28:31,916 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:28:31,920 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:28:31,922 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:28:32,265 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:29:31,781 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:29:32,557 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:29:32,561 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:29:32,563 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:29:32,906 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:30:32,630 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:30:33,462 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:30:33,467 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:30:33,468 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:30:33,816 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:31:33,443 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:31:34,246 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:31:34,250 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:31:34,252 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:31:34,597 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:31:37,977 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 20:31:39,115 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 20:31:39,119 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 20:31:39,120 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 20:31:39,141 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 20:31:39,513 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_calints.fits>,).
2021-11-08 20:31:39,516 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:41,212 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:41,576 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_calints.fits>,).
2021-11-08 20:31:41,579 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:43,280 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:43,642 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_calints.fits>,).
2021-11-08 20:31:43,645 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:45,437 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:45,796 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_calints.fits>,).
2021-11-08 20:31:45,799 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:47,564 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:47,898 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg005_nrca1_calints.fits>,).
2021-11-08 20:31:47,901 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:49,593 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:49,925 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg006_nrca1_calints.fits>,).
2021-11-08 20:31:49,928 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:51,713 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:52,079 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg007_nrca1_calints.fits>,).
2021-11-08 20:31:52,082 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:53,870 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:54,233 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_calints.fits>,).
2021-11-08 20:31:54,236 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:56,027 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:56,387 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_calints.fits>,).
2021-11-08 20:31:56,390 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:31:58,207 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:31:58,543 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_calints.fits>,).
2021-11-08 20:31:58,546 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:32:00,366 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:32:00,698 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_calints.fits>,).
2021-11-08 20:32:00,701 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 20:32:00,844 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 20:32:00,860 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/303050_radii/HD189733b_nrca1_level3_asn_phot.ecsv
2021-11-08 20:32:01,380 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done
In [46]:
#Import the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_nrca1_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA1}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM64}']
['# - {filter: WLP4}']
['# - {pupil: CLEAR}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1981.2}']
['# - {ycenter: 29.2}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       TW93WjUrbkNja0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       U1ZQa09iSzFOa0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=3.0 pixels.  Background calculated as the mean in a circular annulus with']
['#     r_inner=4.0 pixels and r_outer=5.0 pixels.}']
['# - {number_of_integrations: 7350}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59866.27084318895 0.03437464693709405 6.803794567178708e-05 0.01511093184220688 4.0711415672567734e-05 0.0005344398883137656 1.4398717876795587e-06 0.01511093184220688 4.0711415672567734e-05 0.01926371509488717 7.928796514794438e-05']
['59866.270874726906 0.03435108052437096 6.799471897045218e-05 0.015021569450899067 4.066226065489018e-05 0.0005312793402463988 1.4381332845593025e-06 0.015021569450899068 4.066226065489018e-05 0.019329511073471896 7.922563505227963e-05']
['59866.27090626487 0.034253978989639805 6.792966636010561e-05 0.014998795500809682 4.0653450467202296e-05 0.0005304738765285202 1.4378216879103927e-06 0.014998795500809682 4.0653450467202296e-05 0.019255183488830124 7.916528662668085e-05']
['59866.27093780284 0.034172923740053936 6.784029945228808e-05 0.015048362421496618 4.068408410203093e-05 0.0005322269477376691 1.438905131112137e-06 0.01504836242149662 4.068408410203093e-05 0.019124561318557318 7.91043673193664e-05']
['59866.270969340796 0.034073762353711595 6.777316397120873e-05 0.014960751247994428 4.062162072405935e-05 0.0005291283363303456 1.4366959410307159e-06 0.014960751247994428 4.062162072405935e-05 0.019113011105717167 7.90146684161724e-05']
['59866.27100087876 0.034256611806883594 6.79289605891627e-05 0.0149927649973014 4.0652113345318276e-05 0.0005302605910968144 1.4377743968976464e-06 0.0149927649973014 4.0652113345318276e-05 0.019263846809582194 7.916399437979759e-05']
['59866.27103241673 0.03428642231321051 6.794193096926357e-05 0.015019196878351779 4.066879360607347e-05 0.0005311954276577888 1.438364340442369e-06 0.015019196878351779 4.066879360607347e-05 0.01926722543485873 7.918368996962429e-05']
['59866.271063954686 0.03427294745109388 6.796911989775051e-05 0.014983887778542862 4.0634318492067806e-05 0.0005299466237087411 1.4371450327073338e-06 0.01498388777854286 4.0634318492067806e-05 0.019289059672551023 7.918932440038611e-05']
['59866.27109549265 0.03426665963815963 6.790343202271487e-05 0.015022655712613487 4.0665874640661313e-05 0.0005313177588955858 1.4382611031592446e-06 0.015022655712613488 4.0665874640661313e-05 0.01924400392554614 7.914915944438982e-05']
['59866.27112703061 0.034317527600580496 6.795730800063105e-05 0.015040876866933162 4.067842304888352e-05 0.0005319622004019895 1.4387049123140223e-06 0.015040876866933162 4.067842304888352e-05 0.019276650733647333 7.920182960283538e-05']
['59866.271158568576 0.03423024066100155 6.789334520333595e-05 0.015063892168645582 4.069394883002952e-05 0.0005327762001873857 1.4392540244950776e-06 0.01506389216864558 4.069394883002952e-05 0.019166348492355968 7.915493537537884e-05']
['59866.27119010654 0.03439366285841919 6.802793425962794e-05 0.015063202315898654 4.067788796563229e-05 0.000532751801637457 1.438685987615267e-06 0.015063202315898654 4.067788796563229e-05 0.019330460542520536 7.92621625302817e-05']
['59866.2712216445 0.0343200344352277 6.797985487866492e-05 0.015051842200031734 4.0682477404395626e-05 0.0005323500197276088 1.4388483058075342e-06 0.015051842200031734 4.0682477404395626e-05 0.019268192235195967 7.92232581827048e-05']
['59866.271253182465 0.03428025764764876 6.792383333825194e-05 0.014999777038643547 4.066295844333817e-05 0.000530508591328096 1.4381579637772424e-06 0.014999777038643547 4.066295844333817e-05 0.019280480609005217 7.916516484368154e-05']
['59866.27128472043 0.034324247303607704 6.79700957322768e-05 0.014998471857758175 4.0650739192422725e-05 0.0005304624299970881 1.4377257961807818e-06 0.014998471857758176 4.0650739192422725e-05 0.019325775445849527 7.919858907041998e-05']
['59866.27131625839 0.03423447725725685 6.788930936847675e-05 0.015051057940893913 4.0696768464859724e-05 0.00053232228223462 1.439353748677509e-06 0.015051057940893913 4.0696768464859724e-05 0.019183419316362936 7.915292344576506e-05']
['59866.271347796355 0.0342602356597712 6.791933874413623e-05 0.015075352546143448 4.068915882122105e-05 0.0005331815281270489 1.4390846125885617e-06 0.015075352546143448 4.068915882122105e-05 0.019184883113627753 7.917477010398752e-05']
['59866.271379334314 0.03416766046615669 6.788544966466831e-05 0.01501537792452012 4.06454038238535e-05 0.0005310603597956225 1.4375370961183355e-06 0.01501537792452012 4.06454038238535e-05 0.019152282541636572 7.912321484986779e-05']
['59866.27141087228 0.03423691661826086 6.789515106465857e-05 0.015030697481507553 4.067787984232871e-05 0.0005316021782890732 1.4386857003121739e-06 0.015030697481507555 4.067787984232871e-05 0.019206219136753303 7.914822453194853e-05']
['59866.271442410245 0.034083974537813755 6.778148729174158e-05 0.01498415011116044 4.064402717335164e-05 0.000529955901827146 1.4374884070667174e-06 0.014984150111160438 4.064402717335164e-05 0.019099824426653318 7.903332818721905e-05']
['59866.2714739482 0.034233625577617804 6.78742860437815e-05 0.015053000672364113 4.068555952754608e-05 0.0005323909923049717 1.438957313615226e-06 0.015053000672364113 4.068555952754608e-05 0.019180624905253692 7.913427487519279e-05']
['59866.27150548617 0.03423978836737114 6.791853869775537e-05 0.014992081317348225 4.0642330594239106e-05 0.0005302364108648054 1.437428402855138e-06 0.014992081317348227 4.0642330594239106e-05 0.019247707050022912 7.915002801622953e-05']
['59866.271537024135 0.034311029324009645 6.796863898978328e-05 0.014989174517655043 4.065691014720391e-05 0.0005301336038559725 1.4379440490601201e-06 0.014989174517655043 4.065691014720391e-05 0.0193218548063546 7.92005064935907e-05']
['59866.27156856209 0.03427806582567109 6.791641329312157e-05 0.015089815785622808 4.0697313599794e-05 0.000533693060583996 1.4393730288818294e-06 0.015089815785622806 4.0697313599794e-05 0.019188250040048285 7.917645185812558e-05']
['59866.27160010006 0.03418457599933815 6.787483966806974e-05 0.015113367477907707 4.07153538295255e-05 0.0005345260313051784 1.4400110714898919e-06 0.015113367477907706 4.07153538295255e-05 0.019071208521430443 7.9150071998891e-05']
['59866.27163163802 0.03421276258075451 6.78704438853971e-05 0.014971374973724715 4.062068846505587e-05 0.0005295040737667963 1.4366629691132394e-06 0.014971374973724715 4.062068846505587e-05 0.019241387607029793 7.909764525304126e-05']
['59866.27166317598 0.0343265544945138 6.797288565508709e-05 0.015119198314356591 4.070681562338671e-05 0.000534732254959223 1.4397090942205307e-06 0.015119198314356593 4.070681562338671e-05 0.019207356180157207 7.922977989667739e-05']
['59866.27169471395 0.03425314787459601 6.793630047424727e-05 0.015064439626855122 4.069460701932385e-05 0.00053279556256076 1.4392773031794516e-06 0.015064439626855122 4.069460701932385e-05 0.01918870824774089 7.919212058395968e-05']
['59866.27172625191 0.034203225823437634 6.787787158220491e-05 0.015080980750334438 4.069381063695382e-05 0.0005333805851309881 1.4392491369148336e-06 0.015080980750334438 4.069381063695382e-05 0.019122245073103197 7.914159257107831e-05']
['59866.27175778987 0.03430767628530597 6.794284722768919e-05 0.015075484515416312 4.0697747856107953e-05 0.0005331861955852962 1.4393883875571483e-06 0.015075484515416314 4.0697747856107953e-05 0.019232191769889655 7.919935081782206e-05']
['59866.27178932784 0.03425886909615578 6.790020915038871e-05 0.015082143447346881 4.0690079352699865e-05 0.0005334217071258433 1.4391171697297005e-06 0.01508214344734688 4.0690079352699865e-05 0.0191767256488089 7.91588337483287e-05']
['59866.2718208658 0.034259784825791235 6.793877209330295e-05 0.015001330954920414 4.06540805036436e-05 0.0005305635498740103 1.4378439708912731e-06 0.015001330954920414 4.06540805036436e-05 0.01925845387087082 7.91734236669256e-05']
['59866.27185240376 0.034219914045670034 6.790676518500075e-05 0.014993691373723 4.063536131015579e-05 0.000530293354960517 1.4371819148525446e-06 0.014993691373723 4.063536131015579e-05 0.019226222671947034 7.913634655894683e-05']
['59866.27188394172 0.034358985637715354 6.799047708747595e-05 0.015023122706608823 4.0670341148424514e-05 0.0005313342754295307 1.4384190735567718e-06 0.015023122706608823 4.0670341148424514e-05 0.01933586293110653 7.922614229982313e-05']
['59866.27191547969 0.034225616281018965 6.791278184189859e-05 0.01510929780378815 4.06992481722236e-05 0.000534382096026756 1.4394414503851494e-06 0.015109297803788148 4.06992481722236e-05 0.019116318477230818 7.917433131570836e-05']
['59866.27194701765 0.03424335666413039 6.790212637089666e-05 0.014997772735142478 4.064244979094218e-05 0.0005304377035926179 1.437432618576137e-06 0.014997772735142478 4.064244979094218e-05 0.019245583928987915 7.913600628474042e-05']
['59866.27197855561 0.03429564040617844 6.795378256218506e-05 0.015087363538665676 4.06973153245528e-05 0.0005336063300895716 1.4393730898826935e-06 0.015087363538665676 4.06973153245528e-05 0.019208276867512766 7.92085098908874e-05']
['59866.27201009358 0.034328906185523936 6.795163214778692e-05 0.014983866979723603 4.064416239427303e-05 0.0005299458881009866 1.437493189528506e-06 0.014983866979723603 4.064416239427303e-05 0.019345039205800333 7.917936756681116e-05']
['59866.27204163154 0.03427387783140043 6.7972467231582e-05 0.014985447928278906 4.064402014561681e-05 0.0005300018027181756 1.4374881585114425e-06 0.014985447928278904 4.064402014561681e-05 0.019288429903121525 7.919717592910617e-05']
['59866.2720731695 0.03434229295355862 6.798566040466e-05 0.014972215727591255 4.0643253116777975e-05 0.0005295338093520814 1.4374610304156214e-06 0.014972215727591255 4.0643253116777975e-05 0.019370077225967362 7.92081059271855e-05']
['59866.27210470747 0.03410409842621929 6.779066850785853e-05 0.015063073628130702 4.069378164939114e-05 0.0005327472502387047 1.439248111689525e-06 0.015063073628130702 4.069378164939114e-05 0.019041024798088585 7.906679835222041e-05']
['59866.272136245425 0.034342366262928734 6.798242609109051e-05 0.0150491848767803 4.068252762973783e-05 0.0005322560361429734 1.438850082165641e-06 0.015049184876780298 4.068252762973783e-05 0.019293181386148436 7.922549028926843e-05']
['59866.27216778339 0.03426071956979024 6.794172881945546e-05 0.015066601476677413 4.067696221257951e-05 0.0005328720223575245 1.4386532457987267e-06 0.015066601476677413 4.067696221257951e-05 0.019194118093112826 7.918771224009471e-05']
['59866.272199321356 0.03428541631509829 6.796480365394282e-05 0.015006759244183975 4.0654992938658576e-05 0.0005307555363337499 1.4378762416785807e-06 0.015006759244183973 4.0654992938658576e-05 0.019278657070914314 7.919623088608054e-05']
['59866.272230859315 0.03422098549845165 6.78884194662863e-05 0.01503426417724581 4.066461799717018e-05 0.0005317283243462395 1.4382166584873962e-06 0.01503426417724581 4.066461799717018e-05 0.01918672132120584 7.913563454276598e-05']
['59866.27226239728 0.03424913893524119 6.794112714989018e-05 0.014976758392275951 4.063183763604644e-05 0.0005296944732497211 1.437057290374245e-06 0.014976758392275953 4.063183763604644e-05 0.019272380542965234 7.916402584557953e-05']
['59866.272293935246 0.03426073219928779 6.794048275279084e-05 0.015069308605543718 4.068354164633773e-05 0.0005329677674554487 1.4388859456665858e-06 0.015069308605543716 4.068354164633773e-05 0.019191423593744074 7.919002309364209e-05']
['59866.272325473205 0.034211413021883026 6.789568064270123e-05 0.015040800189167182 4.068669542909895e-05 0.0005319594884807715 1.4389974879145603e-06 0.015040800189167184 4.068669542909895e-05 0.019170612832715844 7.915320988359181e-05']
['59866.27235701117 0.03420312838012929 6.78565793824823e-05 0.015019615295924854 4.067293331623973e-05 0.0005312102261522402 1.4385107527392418e-06 0.015019615295924854 4.067293331623973e-05 0.019183513084204434 7.911259615281504e-05']
['59866.27238854913 0.034225005909924486 6.790974913919861e-05 0.015050099871341534 4.067954139429565e-05 0.0005322883974557118 1.4387444656918943e-06 0.015050099871341533 4.067954139429565e-05 0.019174906038582955 7.91616012735916e-05']
['59866.272420087094 0.03423623913531275 6.792006563774845e-05 0.015057691430778557 4.0674344238820694e-05 0.0005325568939468625 1.438560653917704e-06 0.015057691430778557 4.0674344238820694e-05 0.019178547704534192 7.916778129702855e-05']
['59866.27245162506 0.03425268115143156 6.790697305763591e-05 0.014988961849601301 4.06389685519354e-05 0.0005301260822621967 1.4373094949325783e-06 0.014988961849601301 4.06389685519354e-05 0.01926371930183026 7.913837725664891e-05']
['59866.27248316302 0.03426718814550776 6.793385987498792e-05 0.015133225676583033 4.072311564119202e-05 0.0005352283714118626 1.4402855894219087e-06 0.015133225676583033 4.072311564119202e-05 0.01913396246892473 7.920468082784244e-05']
['59866.272514700984 0.0343145038442106 6.79923702927135e-05 0.015091610272849445 4.069159019136227e-05 0.0005337565275867593 1.439170604716664e-06 0.015091610272849446 4.069159019136227e-05 0.019222893571361154 7.923867698493735e-05']
['59866.27254623895 0.0342410671875567 6.79018701192186e-05 0.015078757999887726 4.070636126660745e-05 0.0005333019714152429 1.4396930246366758e-06 0.015078757999887728 4.070636126660745e-05 0.019162309187668973 7.916862897167533e-05']
['59866.27257777691 0.03424401904955187 6.794610494725606e-05 0.015075413345742045 4.0697079032946854e-05 0.0005331836784729721 1.439364732776672e-06 0.015075413345742045 4.0697079032946854e-05 0.019168605703809825 7.920180186913337e-05']
['59866.272609314874 0.03420694628643614 6.788546708824161e-05 0.015050503809451521 4.069012650859213e-05 0.0005323026838439136 1.4391188375282226e-06 0.015050503809451523 4.069012650859213e-05 0.019156442476984618 7.914621303052955e-05']
['59866.27264085283 0.034258670428110705 6.793461553821316e-05 0.015042478869732069 4.0664952367121e-05 0.0005320188596607213 1.438228484405284e-06 0.01504247886973207 4.0664952367121e-05 0.019216191558378636 7.917544025356002e-05']
['59866.2726723908 0.03420550770188154 6.789778826119803e-05 0.015019668134733544 4.065903538770518e-05 0.0005312120949428157 1.438019214067017e-06 0.015019668134733542 4.065903538770518e-05 0.019185839567148 7.914080369456166e-05']
['59866.272703928764 0.03417896219199529 6.785412541343534e-05 0.015055738790220674 4.067254817029059e-05 0.000532487833414225 1.4384971309877713e-06 0.015055738790220673 4.067254817029059e-05 0.019123223401774615 7.911029332701794e-05']
['59866.27273546672 0.03418643659855246 6.791783178964439e-05 0.015011816127137523 4.065415484602555e-05 0.0005309343869823488 1.4378466002151772e-06 0.015011816127137525 4.065415484602555e-05 0.01917462047141493 7.915549368964262e-05']
['59866.27276700469 0.034275380354899306 6.791443501874527e-05 0.015081871971752554 4.0712982877486986e-05 0.0005334121056407842 1.4399272162150558e-06 0.015081871971752554 4.0712982877486986e-05 0.019193508383146752 7.918281037383001e-05']
['59866.27279854265 0.034371929784967954 6.797687440861371e-05 0.015041423788824743 4.0665523574934606e-05 0.0005319815438069962 1.4382486867490768e-06 0.015041423788824745 4.0665523574934606e-05 0.019330505996143207 7.921199569502087e-05']
['59866.27283008061 0.034220749225106276 6.791067748585377e-05 0.015043071931403813 4.068327890202449e-05 0.000532039834926636 1.4388766529874254e-06 0.015043071931403812 4.068327890202449e-05 0.019177677293702462 7.916431834360452e-05']
['59866.27286161858 0.034215342245959436 6.788453057870691e-05 0.014998553124903028 4.0650015221867914e-05 0.0005304653042343801 1.437700190960237e-06 0.014998553124903028 4.0650015221867914e-05 0.019216789121056406 7.912479528838912e-05']
['59866.272893156536 0.034298384813875024 6.79679584198498e-05 0.015034099730184498 4.0683953189303255e-05 0.0005317225082211984 1.438900501021532e-06 0.015034099730184498 4.0683953189303255e-05 0.019264285083690526 7.92138082588626e-05']
['59866.2729246945 0.034154409437623004 6.786862876731677e-05 0.015009807535857735 4.066990910338957e-05 0.0005308633475977199 1.4384037930894498e-06 0.015009807535857735 4.066990910338957e-05 0.01914460190176527 7.912137686639324e-05']
['59866.27295623247 0.03424368419202339 6.791250703598019e-05 0.015093242018936056 4.069813929234949e-05 0.0005338142387991048 1.4394022317822028e-06 0.015093242018936057 4.069813929234949e-05 0.01915044217308733 7.917352558634445e-05']
['59866.272987770426 0.03417450362643331 6.784274686569924e-05 0.01501706261352598 4.065050521488109e-05 0.0005311199434807014 1.4377175209180434e-06 0.015017062613525978 4.065050521488109e-05 0.019157441012907332 7.908920202220035e-05']
['59866.27301930839 0.03428714181517911 6.795160206373953e-05 0.014959065555022159 4.063157440313779e-05 0.0005290687171372186 1.437047980414557e-06 0.014959065555022159 4.063157440313779e-05 0.01932807626015695 7.9172880846326e-05']
['59866.27305084636 0.03431477371205718 6.794658844248272e-05 0.01506104627514209 4.068284039950307e-05 0.0005326755472943648 1.438861144133238e-06 0.01506104627514209 4.068284039950307e-05 0.019253727436915086 7.919490124966104e-05']
['59866.273082384316 0.03433332792508114 6.79792769404479e-05 0.015018626883936298 4.067029698497657e-05 0.0005311752682291758 1.4384175115943174e-06 0.0150186268839363 4.067029698497657e-05 0.01931470104114484 7.921650806613672e-05']
['59866.27311392228 0.03433895111888682 6.795951987512563e-05 0.014984035349787084 4.0637098401981e-05 0.000529951842973847 1.4372433519082304e-06 0.014984035349787086 4.0637098401981e-05 0.01935491576909973 7.918251137839644e-05']
['59866.27314546024 0.03433594794198018 6.799482158523226e-05 0.015108633254036587 4.0695230205514254e-05 0.0005343585923872245 1.439299343882267e-06 0.015108633254036587 4.0695230205514254e-05 0.019227314687943593 7.924264965211201e-05']
['59866.273176998206 0.03433231011567578 6.798479186212468e-05 0.014948864192148605 4.0615290767290545e-05 0.0005287079177310851 1.4364720646064242e-06 0.014948864192148604 4.0615290767290545e-05 0.019383445923527177 7.919301590827293e-05']
['59866.27320853617 0.03435112538083079 6.799840301665593e-05 0.015052722903043455 4.067222679862329e-05 0.000532381168224878 1.4384857647901224e-06 0.015052722903043457 4.067222679862329e-05 0.01929840247778733 7.923391221929037e-05']
['59866.27324007413 0.03430488853065315 6.793904779713868e-05 0.015095860522162724 4.069073485952911e-05 0.0005339068494062217 1.4391403535412793e-06 0.015095860522162722 4.069073485952911e-05 0.01920902800849043 7.919248776866649e-05']
['59866.273271612095 0.03432992331499314 6.79872624587171e-05 0.014984319305507934 4.064046867069746e-05 0.0005299618858530898 1.4373625507806246e-06 0.014984319305507934 4.064046867069746e-05 0.019345604009485207 7.920805230785835e-05']
['59866.27330315006 0.03430471805995525 6.793242048658182e-05 0.015053608975467701 4.06792024924322e-05 0.0005324125066262682 1.4387324794903853e-06 0.015053608975467701 4.06792024924322e-05 0.019251109084487544 7.918087691220692e-05']
['59866.27333468802 0.03421252216827521 6.789769086282152e-05 0.015011669054417386 4.066678943724536e-05 0.0005309291853489256 1.4382934574699724e-06 0.015011669054417386 4.066678943724536e-05 0.019200853113857823 7.914470410353764e-05']
['59866.273366225985 0.0342397144926835 6.789138698115731e-05 0.015003706553874738 4.0653865721081084e-05 0.0005306475694998736 1.4378363745120478e-06 0.015003706553874738 4.0653865721081084e-05 0.019236007938808766 7.913265586528073e-05']
['59866.273397763944 0.0342222107873446 6.790189875208564e-05 0.015093635189990151 4.0687172731720466e-05 0.0005338281443806026 1.4390143690415747e-06 0.015093635189990153 4.0687172731720466e-05 0.01912857559735445 7.915878901953558e-05']
['59866.27342930191 0.034293479543238935 6.796871065952363e-05 0.01501240002448871 4.065964322531395e-05 0.0005309550381267264 1.4380407119248022e-06 0.01501240002448871 4.065964322531395e-05 0.019281079518750223 7.920197103562423e-05']
['59866.273460839875 0.03430242153079347 6.794583523544851e-05 0.014970741010698363 4.06395933017806e-05 0.0005294816519113781 1.4373315909383694e-06 0.014970741010698362 4.06395933017806e-05 0.01933168052009511 7.917204727412856e-05']
['59866.27349237783 0.03428216955991432 6.794022593124153e-05 0.015006577724532328 4.067165163817604e-05 0.0005307491163893438 1.438465422650511e-06 0.015006577724532328 4.067165163817604e-05 0.019275591835381987 7.918369495398211e-05']
['59866.2735239158 0.03422482611563725 6.790619949569116e-05 0.015107438397214392 4.0713318734716126e-05 0.0005343163329717714 1.4399390947346536e-06 0.015107438397214394 4.0713318734716126e-05 0.019117387718422856 7.91759196494944e-05']
['59866.273555453765 0.03420655019190354 6.784561320290081e-05 0.01502213189082989 4.066025358222568e-05 0.0005312992324897727 1.4380622988847027e-06 0.01502213189082989 4.066025358222568e-05 0.019184418301073647 7.909667156238956e-05']
['59866.27358699172 0.034313467330655774 6.797010281727726e-05 0.015023787514412149 4.066758303492875e-05 0.0005313577881957763 1.4383215252464475e-06 0.01502378751441215 4.066758303492875e-05 0.019289679816243625 7.920724201039995e-05']
['59866.27361852969 0.034353648961941825 6.800575897893852e-05 0.015084450993853804 4.070498748640536e-05 0.0005335033198887303 1.439644437101146e-06 0.015084450993853802 4.070498748640536e-05 0.01926919796808802 7.925704549483215e-05']
['59866.27365006765 0.0343094996406187 6.797418861247065e-05 0.01506602641180469 4.069545103282318e-05 0.0005328516835981706 1.4393071540506636e-06 0.015066026411804689 4.069545103282318e-05 0.019243473228814006 7.92250594969082e-05']
['59866.27368160561 0.034299928662322475 6.79453820071234e-05 0.015052465858911953 4.0673850755701e-05 0.0005323720771484065 1.4385432005226306e-06 0.015052465858911953 4.0673850755701e-05 0.019247462803410522 7.918924845830378e-05']
['59866.27371314358 0.03420500797805029 6.789367092037035e-05 0.015023076492490484 4.0672675885573345e-05 0.0005313326409394475 1.4385016479918955e-06 0.015023076492490484 4.0672675885573345e-05 0.019181931485559807 7.914428036653339e-05']
['59866.27374468154 0.03423997702945787 6.791774665086847e-05 0.015033617033606242 4.066107587224284e-05 0.0005317054363219889 1.4380913814448994e-06 0.015033617033606242 4.066107587224284e-05 0.01920635999585163 7.91589754937483e-05']
['59866.2737762195 0.03435198469271313 6.79911460295825e-05 0.015065038167839646 4.06946843428736e-05 0.0005328167316177222 1.4392800379405984e-06 0.015065038167839644 4.06946843428736e-05 0.019286946524873488 7.923921549448945e-05']
['59866.27380775747 0.0343394042041653 6.799597178161922e-05 0.015031985122393038 4.06743786610017e-05 0.0005316477192694848 1.4385618713533173e-06 0.01503198512239304 4.06743786610017e-05 0.019307419081772262 7.923293038872983e-05']
['59866.27383929543 0.034264578820101595 6.792092937778686e-05 0.014980557919698219 4.064120534560323e-05 0.0005298288540432027 1.43738860532567e-06 0.014980557919698219 4.064120534560323e-05 0.019284020900403376 7.915150168812843e-05']
['59866.27387083339 0.03430887280813686 6.796154508275071e-05 0.01506523426191091 4.069246683843657e-05 0.0005328236670267784 1.4392016097644912e-06 0.01506523426191091 4.069246683843657e-05 0.01924363854622595 7.921267870380358e-05']
['59866.27390237135 0.03419054886156314 6.788264338901575e-05 0.015004698603774232 4.0665196971337635e-05 0.0005306826560877177 1.4382371355097681e-06 0.015004698603774232 4.0665196971337635e-05 0.01918585025778891 7.913097698245595e-05']
['59866.27393390932 0.03423798768311884 6.790995519098837e-05 0.01505277113324312 4.067928159024339e-05 0.0005323828740192519 1.438735277003194e-06 0.01505277113324312 4.067928159024339e-05 0.01918521654987572 7.916164453029235e-05']
['59866.27396544728 0.03428882729646251 6.792996428046196e-05 0.01518019970813528 4.074425096348614e-05 0.0005368897379270837 1.4410330985367862e-06 0.01518019970813528 4.074425096348614e-05 0.01910862758832723 7.92122088678278e-05']
['59866.27399698524 0.03428377460406269 6.795301629518487e-05 0.015005951134322423 4.0656358087885324e-05 0.0005307269552939661 1.4379245239558017e-06 0.015005951134322423 4.0656358087885324e-05 0.019277823469740267 7.918681630539277e-05']
['59866.27402852321 0.03430379139167691 6.795406247184829e-05 0.015004156776486513 4.0660166234047497e-05 0.0005306634928674638 1.438059209574852e-06 0.015004156776486513 4.0660166234047497e-05 0.0192996346151904 7.918966930482938e-05']
['59866.27406006117 0.03421123588186805 6.787384599680877e-05 0.015091954536465894 4.06974433016176e-05 0.0005337687034214891 1.4393776161454638e-06 0.015091954536465894 4.06974433016176e-05 0.019119281345402157 7.914000797123345e-05']
['59866.27409159913 0.034135536171414335 6.782282663803042e-05 0.01497398876380192 4.0642599000755553e-05 0.00052959651768035 1.4374378957937716e-06 0.01497398876380192 4.0642599000755553e-05 0.019161547407612417 7.906805085942454e-05']
['59866.2741231371 0.03420047844340543 6.78823219103014e-05 0.014967118545971747 4.0621591004052896e-05 0.00052935353342973 1.4366948899005082e-06 0.014967118545971747 4.0621591004052896e-05 0.01923335989743368 7.910830097805373e-05']
['59866.274154675055 0.03424383473819522 6.789411466899725e-05 0.014964808616088933 4.063443694353085e-05 0.0005292718363721642 1.4371492220708581e-06 0.014964808616088931 4.063443694353085e-05 0.019279026122106288 7.912501672925405e-05']
['59866.27418621302 0.03413211739962104 6.782696056666569e-05 0.015044875782266872 4.0680144688984233e-05 0.000532103633100293 1.4387658028767453e-06 0.015044875782266874 4.0680144688984233e-05 0.019087241617354166 7.909090182586563e-05']
['59866.274217750986 0.034286825657858906 6.794342557752504e-05 0.015149583076014718 4.0721548063743374e-05 0.0005358068960731252 1.4402301477108796e-06 0.01514958307601472 4.0721548063743374e-05 0.019137242581844186 7.921207960858272e-05']
['59866.274249288945 0.034250776730747806 6.789648892447469e-05 0.015056134638744513 4.069961877593053e-05 0.0005325018336918439 1.4394545578100131e-06 0.015056134638744514 4.069961877593053e-05 0.019194642092003292 7.916054684486074e-05']
['59866.27428082691 0.03432995696282534 6.800518448503795e-05 0.014998168087913747 4.06525604372896e-05 0.0005304516863365763 1.4377902095414804e-06 0.014998168087913747 4.06525604372896e-05 0.019331788874911597 7.922963957353036e-05']
['59866.274312364876 0.0342326996837291 6.78880581387895e-05 0.015013274756462858 4.0672737442962055e-05 0.0005309859754417411 1.4385038251391615e-06 0.01501327475646286 4.0672737442962055e-05 0.019219424927266242 7.913949714876758e-05']
['59866.274343902835 0.034316123550986885 6.797020551096411e-05 0.01502299148776063 4.067804708770648e-05 0.000531329634512127 1.4386916154074142e-06 0.01502299148776063 4.067804708770648e-05 0.019293132063226255 7.921270322411906e-05']
['59866.2743754408 0.03431161707243131 6.795993320238515e-05 0.014930004738960554 4.0618412934456475e-05 0.000528040901020221 1.4365824886814502e-06 0.014930004738960553 4.0618412934456475e-05 0.019381612333470754 7.91732782584293e-05']
['59866.27440697876 0.0343713793273229 6.800786573857748e-05 0.015009601907999706 4.065642387878504e-05 0.0005308560749999326 1.4379268508328907e-06 0.015009601907999704 4.065642387878504e-05 0.019361777419323194 7.923392332156615e-05']
['59866.274438516724 0.034303559464660106 6.796728475445157e-05 0.015038373008958649 4.066838752765009e-05 0.0005318736445412242 1.4383499783560658e-06 0.01503837300895865 4.066838752765009e-05 0.019265186455701456 7.920523682807741e-05']
['59866.27447005469 0.03420787485803779 6.789459485168203e-05 0.014984141029852223 4.063631453523097e-05 0.0005299555806415699 1.4372156282931212e-06 0.014984141029852223 4.063631453523097e-05 0.01922373382818557 7.91263929993038e-05']
['59866.27450159265 0.03427116100247802 6.792697629799149e-05 0.015036445683605031 4.06806596548303e-05 0.0005318054793507853 1.4387840160678399e-06 0.01503644568360503 4.06806596548303e-05 0.01923471531887299 7.917695484760723e-05']
['59866.274533130614 0.03419845689485114 6.784018813968891e-05 0.015048252162270667 4.0667566306930754e-05 0.0005322230481152621 1.4383209336145432e-06 0.015048252162270669 4.0667566306930754e-05 0.019150204732580473 7.90957778655536e-05']
['59866.27456466858 0.034254237291582244 6.79178185719873e-05 0.015062582240019513 4.067757168572525e-05 0.0005327298709393998 1.438674801501799e-06 0.015062582240019514 4.067757168572525e-05 0.019191655051562728 7.916751175718926e-05']
['59866.27459620654 0.03432267540899722 6.794690545703455e-05 0.015132934155951147 4.0732345451498735e-05 0.0005352180609786231 1.440612027185045e-06 0.015132934155951148 4.0732345451498735e-05 0.019189741253046073 7.922061554398211e-05']
['59866.274627744504 0.03422036469784325 6.789551195695129e-05 0.015001271977261562 4.0658464670381616e-05 0.000530561463966024 1.4379990290707607e-06 0.015001271977261562 4.0658464670381616e-05 0.01921909272058169 7.913855756361236e-05']
['59866.27465928246 0.03421014552084126 6.788571754453439e-05 0.014992396158020614 4.064413878487947e-05 0.0005302475460757602 1.4374923545170196e-06 0.014992396158020612 4.064413878487947e-05 0.01921774936282065 7.912279484510672e-05']
['59866.27469082043 0.03431913376014651 6.797343551626286e-05 0.015006319813642059 4.0653011309335804e-05 0.0005307399946575519 1.437806155878115e-06 0.015006319813642059 4.0653011309335804e-05 0.01931281394650445 7.920262157530222e-05']
['59866.274722358394 0.03429688831992037 6.792405455036204e-05 0.015090449105068385 4.070110937653543e-05 0.0005337154596774005 1.4395072770221122e-06 0.015090449105068387 4.070110937653543e-05 0.019206439214851986 7.918495747956969e-05']
['59866.27475389635 0.03433255011964792 6.797052801609405e-05 0.015038895867662449 4.0666458187784825e-05 0.0005318921368850572 1.4382817419168522e-06 0.01503889586766245 4.0666458187784825e-05 0.019293654251985468 7.920702936182797e-05']
['59866.27478543432 0.034322310233592855 6.797535385328822e-05 0.015114092861913515 4.0725547378145185e-05 0.0005345516865163261 1.4403715945233299e-06 0.015114092861913517 4.0725547378145185e-05 0.01920821737167934 7.924152283196793e-05']
['59866.27481697228 0.0342564644985418 6.791881012204189e-05 0.01500745821843052 4.0662939833163243e-05 0.0005307802574907348 1.4381573055769468e-06 0.015007458218430521 4.0662939833163243e-05 0.019249006280111277 7.916084539890559e-05']
['59866.27484851024 0.03420196057279324 6.787788910470859e-05 0.014995870722368276 4.064819994355904e-05 0.0005303704336515428 1.4376359886233605e-06 0.014995870722368276 4.064819994355904e-05 0.019206089850424962 7.911816471558645e-05']
['59866.27488004821 0.03426426913185597 6.792082718145721e-05 0.015050901043250528 4.068317709774793e-05 0.0005323167331156191 1.4388730523976826e-06 0.015050901043250528 4.068317709774793e-05 0.019213368088605444 7.917297306391935e-05']
['59866.274911586166 0.0342663870536701 6.791059084754604e-05 0.015103905762021683 4.070410468172133e-05 0.0005341913915599802 1.4396132142724242e-06 0.015103905762021683 4.070410468172133e-05 0.019162481291648416 7.917494860878238e-05']
['59866.27494312413 0.03419129736496915 6.78865514796235e-05 0.015038892595244007 4.067867898483722e-05 0.0005318920211469303 1.4387139641967214e-06 0.015038892595244008 4.067867898483722e-05 0.01915240476972514 7.91412584923124e-05']
['59866.2749746621 0.03429137772138206 6.793710060812655e-05 0.015070048823575257 4.06773322112379e-05 0.0005329939473129343 1.4386663318243755e-06 0.015070048823575257 4.06773322112379e-05 0.019221328897806804 7.918393141832579e-05']
['59866.275006200056 0.034306534908450884 6.796189756048409e-05 0.014948935309128969 4.062452607053012e-05 0.0005287104329797436 1.43679869664232e-06 0.01494893530912897 4.062452607053012e-05 0.019357599599321915 7.917810075063e-05']
['59866.27503773802 0.03429727424028515 6.795037645597221e-05 0.015099395492936946 4.069371644640419e-05 0.0005340318734223113 1.4392458056055965e-06 0.015099395492936946 4.069371644640419e-05 0.019197878747348202 7.920373866635773e-05']
['59866.27506927599 0.03432997996690016 6.80004747802965e-05 0.015011670277145454 4.066099406289269e-05 0.0005309292285940848 1.438088488031018e-06 0.015011670277145455 4.066099406289269e-05 0.019318309689754704 7.922992495596808e-05']
['59866.275100813946 0.03421142079970277 6.787206893126996e-05 0.014988848668439095 4.065356416829849e-05 0.0005301220792974346 1.437825709264058e-06 0.014988848668439095 4.065356416829849e-05 0.019222572131263674 7.911592773011654e-05']
['59866.27513235191 0.03428111086174695 6.794738587887031e-05 0.014938067021985671 4.0608387576383125e-05 0.0005283260459526773 1.4362279141717524e-06 0.01493806702198567 4.0608387576383125e-05 0.01934304383976128 7.915736471943627e-05']
['59866.27516388987 0.03437132409945425 6.80285380780372e-05 0.01513764682061944 4.0731801041944344e-05 0.000535384737395755 1.4405927726357902e-06 0.01513764682061944 4.0731801041944344e-05 0.019233677278834814 7.92903626499179e-05']
['59866.275195427836 0.03437647151843144 6.802393912723717e-05 0.015050014194358929 4.0669039343245174e-05 0.0005322853672523139 1.438373031616942e-06 0.01505001419435893 4.0669039343245174e-05 0.01932645732407251 7.925419266820205e-05']
['59866.2752269658 0.034291806625033644 6.797039095252159e-05 0.015007603286484022 4.0658267872173095e-05 0.0005307853882235791 1.4379920687579436e-06 0.015007603286484022 4.0658267872173095e-05 0.019284203338549622 7.920270697775431e-05']
['59866.27525850376 0.03429115653593338 6.792297674397451e-05 0.015150557813179116 4.072678868809092e-05 0.0005358413703482205 1.440415496881946e-06 0.015150557813179115 4.072678868809092e-05 0.01914059872275426 7.919723534699246e-05']
['59866.275290041725 0.03425083332695245 6.792462655415002e-05 0.015049702919666574 4.068223435787502e-05 0.0005322743581621033 1.4388397097952774e-06 0.015049702919666574 4.068223435787502e-05 0.01920113040728588 7.917574808531845e-05']
['59866.27532157969 0.034346147586968585 6.798822938130707e-05 0.015063588125687638 4.067574374003324e-05 0.0005327654468674592 1.4386101511478906e-06 0.015063588125687638 4.067574374003324e-05 0.01928255946128095 7.922698696284037e-05']
['59866.27535311765 0.0343752134390586 6.801708737473776e-05 0.01506911558445801 4.06909836760671e-05 0.000532960940731024 1.439149153626156e-06 0.01506911558445801 4.06909836760671e-05 0.019306097854600586 7.925957562003893e-05']
['59866.275384655615 0.034206413296450015 6.789996408016345e-05 0.014969927882412498 4.0632448195332966e-05 0.0005294528933811419 1.4370788844916897e-06 0.014969927882412498 4.0632448195332966e-05 0.019236485414037517 7.912901470657842e-05']
['59866.27541619357 0.034329659129907486 6.795977343003652e-05 0.015055744320373128 4.0673942270693134e-05 0.0005324880290033582 1.4385464372033782e-06 0.01505574432037313 4.0673942270693134e-05 0.019273914809534356 7.920164382449127e-05']
['59866.27544773154 0.03421576250970172 6.787589418453048e-05 0.01497527257378268 4.062806817669055e-05 0.0005296419231702231 1.436923973021073e-06 0.014975272573782682 4.062806817669055e-05 0.01924048993591904 7.910611186956033e-05']
['59866.275479269505 0.03422677820260943 6.78936019558568e-05 0.014924283943913624 4.06233229681315e-05 0.0005278385692846356 1.4367561455992565e-06 0.014924283943913624 4.06233229681315e-05 0.019302494258695804 7.911886978157261e-05']
['59866.27551080746 0.034332255605918294 6.796258540466513e-05 0.015014185454539995 4.066428786987961e-05 0.000531018184797439 1.4382049826229198e-06 0.015014185454539995 4.066428786987961e-05 0.0193180701513783 7.919909925529986e-05']
['59866.27554234543 0.03438840499316889 6.799103141847385e-05 0.015053937796100028 4.067200131598338e-05 0.0005324241362771627 1.4384777899730728e-06 0.015053937796100028 4.067200131598338e-05 0.019334467197068862 7.922747026376175e-05']
['59866.275573883395 0.034381421085494406 6.80131938816243e-05 0.015059491845175198 4.067994768983392e-05 0.0005326205705803823 1.438758835457066e-06 0.015059491845175198 4.067994768983392e-05 0.019321929240319207 7.925056899497341e-05']
['59866.27560542135 0.03424513675584812 6.791432041285798e-05 0.014986583112526151 4.0652292510334256e-05 0.0005300419516480132 1.4377807335638515e-06 0.014986583112526151 4.0652292510334256e-05 0.01925855364332197 7.915152432825357e-05']
['59866.27563695932 0.034246160177285725 6.792245969440112e-05 0.015033530078990451 4.0667693189719616e-05 0.0005317023609315605 1.438325421175219e-06 0.015033530078990451 4.0667693189719616e-05 0.019212630098295276 7.916641838753799e-05']
['59866.27566849728 0.034214196060925725 6.789209019407011e-05 0.015012137440296112 4.0652291798366546e-05 0.0005309457511106754 1.4377807083831447e-06 0.015012137440296114 4.0652291798366546e-05 0.01920205862062961 7.913245060895873e-05']
['59866.27570003524 0.034351330245300696 6.800622940434971e-05 0.015158014485564758 4.074411794225367e-05 0.0005361050961858187 1.4410283938730788e-06 0.015158014485564756 4.074411794225367e-05 0.01919331575973594 7.927755284246176e-05']
['59866.27573157321 0.034364904364794696 6.79776773538596e-05 0.015146460995325559 4.071908395453923e-05 0.0005356964750565892 1.440142997675289e-06 0.015146460995325557 4.071908395453923e-05 0.019218443369469138 7.924019445030565e-05']
['59866.27576311117 0.03420044895056193 6.790177996011253e-05 0.015033505234105148 4.0673471806665935e-05 0.0005317014822234923 1.4385297979421614e-06 0.015033505234105148 4.0673471806665935e-05 0.01916694371645678 7.915164578553745e-05']
['59866.27579464913 0.034207582434689784 6.789498427345103e-05 0.015075713055391233 4.072010759279285e-05 0.0005331942785334522 1.4401792014726226e-06 0.01507571305539123 4.072010759279285e-05 0.019131869379298554 7.916979254653121e-05']
['59866.27582618709 0.03434995215764944 6.799640176003037e-05 0.015106409001534891 4.071463661609569e-05 0.0005342799255471514 1.4399857052537574e-06 0.015106409001534893 4.071463661609569e-05 0.019243543156114547 7.925397332053568e-05']
['59866.27585772506 0.0343676063582988 6.799099798971243e-05 0.015074489893343646 4.069116022565653e-05 0.0005331510180254355 1.4391553977905689e-06 0.015074489893343647 4.069116022565653e-05 0.019293116464955157 7.923727865182606e-05']
['59866.27588926302 0.03420590342581831 6.789970806844702e-05 0.015014227325983318 4.067377467882578e-05 0.0005310196656968122 1.4385405098535758e-06 0.015014227325983318 4.067377467882578e-05 0.01919167609983499 7.91500240202378e-05']
['59866.27592080098 0.03418847086737001 6.786664571981665e-05 0.014961429538423191 4.0624219470260205e-05 0.0005291523259469211 1.4367878528759845e-06 0.014961429538423191 4.0624219470260205e-05 0.019227041328946815 7.909619971166108e-05']
['59866.27595233895 0.034379208502010934 6.802975832108783e-05 0.01499578445629533 4.0655237279960365e-05 0.000530367382613336 1.4378848834843541e-06 0.01499578445629533 4.0655237279960365e-05 0.019383424045715605 7.925210618977578e-05']
['59866.27598387691 0.03429484636254133 6.797704349382976e-05 0.01498664958731431 4.0618930062729736e-05 0.0005300443027127079 1.4366007783527617e-06 0.014986649587314308 4.0618930062729736e-05 0.01930819677522702 7.918823095386682e-05']
['59866.27601541487 0.03434009373142208 6.79736284102073e-05 0.015070292229984359 4.069854121489753e-05 0.0005330025560536429 1.4394164468844831e-06 0.015070292229984357 4.069854121489753e-05 0.01926980150143772 7.922616623483466e-05']
['59866.27604695284 0.034189658309849 6.786354534117207e-05 0.015060431922327897 4.068775325740414e-05 0.0005326538190083245 1.439034900937608e-06 0.015060431922327895 4.068775325740414e-05 0.019129226387521105 7.912619067924803e-05']
['59866.276078490795 0.03422308595102566 6.789794979120656e-05 0.015061281677667968 4.067904777506172e-05 0.0005326838729556114 1.4387270074827644e-06 0.015061281677667966 4.067904777506172e-05 0.019161804273357695 7.915122559843884e-05']
['59866.27611002876 0.034354953836056926 6.796541884357342e-05 0.015021921185055916 4.064670754513385e-05 0.0005312917802974469 1.4375832058263757e-06 0.015021921185055914 4.064670754513385e-05 0.01933303265100101 7.919250591338808e-05']
['59866.27614156673 0.034202299622665626 6.78740008409706e-05 0.015002924100331891 4.066076064230439e-05 0.0005306198958667438 1.438080232466474e-06 0.015002924100331891 4.066076064230439e-05 0.019199375522333736 7.912128314284878e-05']
['59866.276173104685 0.034262752846373486 6.793914841146842e-05 0.014987684004383528 4.065428928878515e-05 0.0005300808877326601 1.4378513551551223e-06 0.014987684004383528 4.065428928878515e-05 0.019275068841989956 7.917385379310372e-05']
['59866.27620464265 0.03417268150734287 6.788451491497485e-05 0.015007898937930843 4.0654218485804367e-05 0.0005307958447545111 1.4378488510119274e-06 0.015007898937930843 4.0654218485804367e-05 0.01916478256941203 7.912694134068978e-05']
['59866.276236180616 0.034190700645924624 6.78846613029063e-05 0.014987093814405574 4.0641427968524286e-05 0.0005300600140321368 1.4373964790008547e-06 0.014987093814405574 4.0641427968524286e-05 0.01920360683151905 7.912049612793801e-05']
['59866.276267718575 0.03420406430048903 6.787047088594468e-05 0.014997486127340098 4.066394560542195e-05 0.0005304275669151785 1.4381928774939684e-06 0.0149974861273401 4.066394560542195e-05 0.019206578173148928 7.91198918760673e-05']
['59866.27629925654 0.03428353030478271 6.793638126892636e-05 0.014971567542958024 4.065096919580411e-05 0.0005295108845102115 1.4377339308863542e-06 0.014971567542958024 4.065096919580411e-05 0.01931196276182469 7.91697745132266e-05']
['59866.2763307945 0.03423811545576249 6.788326390168023e-05 0.0149902564799424 4.0641476759899225e-05 0.0005301718704440329 1.437398204642744e-06 0.0149902564799424 4.0641476759899225e-05 0.01924785897582009 7.911932223654719e-05']
['59866.276362332464 0.03426093179715938 6.791751095328265e-05 0.015022601283395646 4.0663430098996105e-05 0.0005313158338557929 1.4381746451837753e-06 0.015022601283395646 4.0663430098996105e-05 0.019238330513763738 7.915998257645849e-05']
['59866.27639387043 0.034302394200154546 6.796626134462702e-05 0.015083497715980271 4.068861637898992e-05 0.0005334696045807941 1.4390654276191338e-06 0.015083497715980273 4.068861637898992e-05 0.019218896484174273 7.921474726338996e-05']
['59866.27642540839 0.03429642215543746 6.79470298043191e-05 0.014967380158302068 4.0625107054648856e-05 0.0005293627860731842 1.4368192447521766e-06 0.014967380158302067 4.0625107054648856e-05 0.019329041997135393 7.916563763673422e-05']
['59866.276456946354 0.0343310941197365 6.797873874678878e-05 0.015027058370253372 4.066626804585135e-05 0.0005314734710569478 1.4382750170216076e-06 0.01502705837025337 4.066626804585135e-05 0.019304035749483126 7.921397779673227e-05']
['59866.27648848432 0.03426671338629688 6.792394819255394e-05 0.015033232044353322 4.0680087983217835e-05 0.0005316918201125134 1.4387637973205179e-06 0.015033232044353322 4.0680087983217835e-05 0.01923348134194356 7.917406328076825e-05']
['59866.27652002228 0.03419129809677681 6.788023243571234e-05 0.01502287627633086 4.064961790855415e-05 0.0005313255597413384 1.4376861388762722e-06 0.01502287627633086 4.064961790855415e-05 0.019168421820445952 7.912090363259117e-05']
['59866.276551560244 0.034224657992210306 6.789628134046314e-05 0.015021601950077516 4.065789516327007e-05 0.0005312804896697092 1.4379788868769987e-06 0.015021601950077516 4.065789516327007e-05 0.01920305604213279 7.91389250556942e-05']
['59866.2765830982 0.03426366838394329 6.793441190758733e-05 0.014980773674250063 4.063969068909148e-05 0.0005298364847995183 1.4373350353099075e-06 0.014980773674250063 4.063969068909148e-05 0.01928289470969323 7.91622939317373e-05']
['59866.27661463617 0.03435849744922267 6.800257571665945e-05 0.015063155458990111 4.067216962996534e-05 0.0005327501444133208 1.438483742862455e-06 0.015063155458990111 4.067216962996534e-05 0.019295341990232556 7.923746390760293e-05']
['59866.276646174134 0.03441054898285289 6.805806919865639e-05 0.01500424819579421 4.066904312294262e-05 0.0005306667261640669 1.4383731652963934e-06 0.01500424819579421 4.066904312294262e-05 0.019406300787058677 7.928349040995148e-05']
['59866.27667771209 0.03428683858308504 6.793271938183391e-05 0.015087385731984579 4.0686654754079306e-05 0.0005336071150176621 1.438996049330019e-06 0.01508738573198458 4.0686654754079306e-05 0.01919945285110046 7.918496219414793e-05']
['59866.27670925006 0.03423599174229942 6.790080300814556e-05 0.014974458863891786 4.064477510811842e-05 0.0005296131440699167 1.4375148598478825e-06 0.014974458863891786 4.064477510811842e-05 0.01926153287840763 7.913606505721973e-05']
['59866.276740788024 0.03423893663417726 6.792477674801951e-05 0.01504252150802894 4.0682859989643376e-05 0.0005320203676819906 1.4388618369927194e-06 0.01504252150802894 4.0682859989643376e-05 0.019196415126148315 7.917619840081498e-05']
['59866.27677232598 0.03431811412450374 6.797840876440003e-05 0.015036103319118954 4.067026242923271e-05 0.0005317933706840524 1.4384162894348847e-06 0.015036103319118954 4.067026242923271e-05 0.019282010805384782 7.92157453048478e-05']
['59866.27680386395 0.03432001592672868 6.79461142343489e-05 0.015085276767651895 4.0694495278530015e-05 0.0005335325256624729 1.4392733511572997e-06 0.015085276767651895 4.0694495278530015e-05 0.019234739159076787 7.92004822303595e-05']
['59866.276835401906 0.034277734054030486 6.793102273991603e-05 0.015049834045446363 4.069287226239224e-05 0.0005322789957878856 1.4392159487037342e-06 0.015049834045446365 4.069287226239224e-05 0.01922790000858412 7.918670155685461e-05']
['59866.27686693987 0.03427499115675527 6.793464645344517e-05 0.015090180928030316 4.069918481033911e-05 0.0005337059748549043 1.4394392094169005e-06 0.015090180928030314 4.069918481033911e-05 0.01918481022872496 7.919305419656908e-05']
['59866.27689847784 0.03427536301358207 6.793488990383059e-05 0.015087290773910585 4.068771847727156e-05 0.0005336037565628037 1.4390336708420474e-06 0.015087290773910585 4.068771847727156e-05 0.019188072239671485 7.918737084365971e-05']
['59866.276930015796 0.03429061395238703 6.791837738674174e-05 0.015002575452703294 4.066132707410802e-05 0.000530607564979302 1.4381002658934678e-06 0.015002575452703294 4.066132707410802e-05 0.019288038499683732 7.915964569321582e-05']
['59866.27696155376 0.034215052643987325 6.788047433515454e-05 0.014949404593665372 4.0611278501284596e-05 0.0005287270305250069 1.4363301597246807e-06 0.014949404593665372 4.0611278501284596e-05 0.01926564805032195 7.91014205781064e-05']
['59866.27699309173 0.03419206883365281 6.786325065026795e-05 0.01503306102140666 4.0657373741081046e-05 0.0005316857714131038 1.437960445339483e-06 0.01503306102140666 4.0657373741081046e-05 0.01915900781224615 7.911032061838101e-05']
['59866.277024629686 0.034174405205776096 6.787523988508388e-05 0.014962246362221467 4.062367567076119e-05 0.0005291812151791723 1.4367686199030245e-06 0.014962246362221465 4.062367567076119e-05 0.01921215884355463 7.91032945866408e-05']
['59866.27705616765 0.03438008117018615 6.80294025708037e-05 0.014976853366189218 4.063375390307058e-05 0.0005296978322647791 1.4371250644562842e-06 0.014976853366189216 4.063375390307058e-05 0.019403227803996934 7.924078224245251e-05']
['59866.27708770561 0.034259984668069024 6.789698466005315e-05 0.015020206812849435 4.066521087798397e-05 0.0005312311467839001 1.4382376273567693e-06 0.015020206812849435 4.066521087798397e-05 0.01923977785521959 7.914328715487118e-05']
['59866.277119243576 0.03427400489024478 6.79310389940077e-05 0.015046823374913088 4.06681859696841e-05 0.0005321725150995762 1.4383428497012645e-06 0.015046823374913086 4.06681859696841e-05 0.01922718151533169 7.917403241511832e-05']
['59866.27715078154 0.034142875279088554 6.785090337155128e-05 0.015000661912470445 4.064779821573717e-05 0.0005305398873377768 1.43762178040811e-06 0.015000661912470447 4.064779821573717e-05 0.01914221336661811 7.909480759267876e-05']
['59866.2771823195 0.03430984201970495 6.796119335210322e-05 0.015023501405017138 4.064825498457602e-05 0.0005313476691458916 1.4376379353011218e-06 0.015023501405017138 4.064825498457602e-05 0.019286340614687814 7.918967379105099e-05']
['59866.277213857466 0.034304588844072094 6.793961434261432e-05 0.015157868720717057 4.0744595803909804e-05 0.0005360999408089208 1.4410452947718984e-06 0.015157868720717059 4.0744595803909804e-05 0.019146720123355034 7.922066197809225e-05']
['59866.27724539543 0.034201432689898933 6.789445804712539e-05 0.015053741696782481 4.068693909277084e-05 0.0005324172006825573 1.4390061057540788e-06 0.01505374169678248 4.068693909277084e-05 0.019147690993116452 7.915228642466188e-05']
['59866.27727693339 0.034161707912755426 6.783758563600092e-05 0.015078403062341844 4.069207248583277e-05 0.0005332894180674837 1.439187662394221e-06 0.015078403062341844 4.069207248583277e-05 0.019083304850413582 7.910614886413083e-05']
['59866.277308471355 0.034337917891496046 6.798218181722454e-05 0.015133163493098477 4.0744790305423346e-05 0.0005352261721209858 1.4410521738557471e-06 0.015133163493098477 4.0744790305423346e-05 0.01920475439839757 7.925727084415092e-05']
['59866.277340009314 0.03417580986456385 6.786375961123381e-05 0.015028518081281764 4.06616126409114e-05 0.0005315250977737598 1.4381103657530992e-06 0.015028518081281764 4.06616126409114e-05 0.01914729178328209 7.911293580149112e-05']
['59866.27737154728 0.034193017935911396 6.786012060278076e-05 0.015045347168963953 4.0684095764547665e-05 0.0005321203049942814 1.4389055435892897e-06 0.015045347168963951 4.0684095764547665e-05 0.019147670766947445 7.912137269033467e-05']
['59866.277403085245 0.03420509680000554 6.788659273057693e-05 0.014977963202250432 4.06313584499368e-05 0.0005297370846859266 1.4370403426324649e-06 0.01497796320225043 4.06313584499368e-05 0.01922713359775511 7.911698150242128e-05']
['59866.2774346232 0.03428070487653777 6.795459753407671e-05 0.014970100888009522 4.063524355661563e-05 0.0005294590122024639 1.4371777501729929e-06 0.014970100888009524 4.063524355661563e-05 0.019310603988528244 7.917733479300636e-05']
['59866.27746616117 0.034306695948518894 6.796369549508345e-05 0.015084689567946629 4.071218843030143e-05 0.0005335117577212118 1.4398991183935876e-06 0.015084689567946629 4.071218843030143e-05 0.019222006380572264 7.922465646585536e-05']
['59866.277497699135 0.034282039667452 6.792160031842114e-05 0.015043033792608882 4.066153516827183e-05 0.0005320384860426945 1.4381076257189786e-06 0.015043033792608882 4.066153516827183e-05 0.019239005874843115 7.916251784813286e-05']
['59866.27752923709 0.034184535442032205 6.786938345246341e-05 0.015087734297623136 4.0705522275663056e-05 0.0005336194430052995 1.439663351402007e-06 0.015087734297623135 4.0705522275663056e-05 0.01909680114440907 7.91403358215772e-05']
['59866.27756077506 0.034199220609061644 6.786784678601486e-05 0.015091233760954349 4.070327685706632e-05 0.0005337432112024843 1.4395839359644557e-06 0.015091233760954349 4.070327685706632e-05 0.019107986848107293 7.913786308887156e-05']
['59866.27759231302 0.03425362201136847 6.792440083287523e-05 0.01503546240528438 4.066746357769648e-05 0.0005317707029940817 1.4383173003111134e-06 0.01503546240528438 4.066746357769648e-05 0.01921815960608409 7.916796588487273e-05']
['59866.27762385098 0.03423264104169421 6.793034512264892e-05 0.015034810157550513 4.067938576921479e-05 0.0005317476344494226 1.438738961580586e-06 0.015034810157550512 4.067938576921479e-05 0.019197830884143702 7.91791905429879e-05']
['59866.27765538895 0.03436585669481928 6.79890081299276e-05 0.01497000707248583 4.064149797152563e-05 0.0005294556941570562 1.4373989548505647e-06 0.01497000707248583 4.064149797152563e-05 0.01939584962233345 7.921007880226407e-05']
['59866.27768692691 0.03421917686523659 6.786547998139607e-05 0.015121053717681337 4.0719429782390355e-05 0.0005347978764282368 1.4401552288335035e-06 0.015121053717681337 4.0719429782390355e-05 0.01909812314755525 7.914414277069586e-05']
['59866.27771846487 0.03419296662608735 6.7876964705333e-05 0.015079556954648894 4.070536400483841e-05 0.0005333302286595865 1.4396577537166537e-06 0.015079556954648894 4.070536400483841e-05 0.01911340967143845 7.914675606981891e-05']
['59866.27775000284 0.03418676460361837 6.786553088325397e-05 0.014933376287390037 4.060814164169578e-05 0.0005281601451532046 1.436219216011493e-06 0.014933376287390037 4.060814164169578e-05 0.019253388316228335 7.908698660119708e-05']
['59866.2777815408 0.03427662461340983 6.7943246928472e-05 0.014948013738282282 4.0629349601700975e-05 0.0005286778390784858 1.4369692941598755e-06 0.01494801373828228 4.0629349601700975e-05 0.01932861087512755 7.916456816177651e-05']
['59866.27781307876 0.03426820433558611 6.794013487203526e-05 0.01504673385903636 4.0698814543383415e-05 0.0005321693491230727 1.4394261139021755e-06 0.015046733859036363 4.0698814543383415e-05 0.01922147047654975 7.919757213240225e-05']
['59866.27784461672 0.03441599451233749 6.803611571889432e-05 0.015003414802156214 4.065310432714281e-05 0.0005306372508936161 1.4378094457100663e-06 0.015003414802156214 4.065310432714281e-05 0.019412579710181274 7.925646934823892e-05']
['59866.27787615469 0.03436217045473481 6.798406802219556e-05 0.01508879389457852 4.0695018711761445e-05 0.0005336569185815516 1.439291863820891e-06 0.01508879389457852 4.0695018711761445e-05 0.01927337656015629 7.923331403391586e-05']
['59866.27790769265 0.0342288737151655 6.792864382453517e-05 0.015048969953565573 4.067584340530468e-05 0.0005322484347891937 1.4386136760858029e-06 0.015048969953565574 4.067584340530468e-05 0.019179903761599927 7.91759110372178e-05']
['59866.27793923061 0.034264249058628106 6.791712062777094e-05 0.015019212000836862 4.0665678290539415e-05 0.0005311959625062894 1.4382541586942498e-06 0.015019212000836862 4.0665678290539415e-05 0.019245037057791244 7.916080258055016e-05']
['59866.27797076858 0.03428841424811338 6.793328028008935e-05 0.015009690035015606 4.065194502047136e-05 0.0005308591918555327 1.4377684436239952e-06 0.015009690035015606 4.065194502047136e-05 0.019278724213097773 7.916761461330386e-05']
['59866.27800230654 0.034217124681103335 6.789645561016064e-05 0.015092174822772527 4.070152541507435e-05 0.0005337764944558438 1.4395219913754423e-06 0.015092174822772527 4.070152541507435e-05 0.019124949858330808 7.916149856803153e-05']
['59866.2780338445 0.0342845281399254 6.794400643147798e-05 0.015108435426520194 4.0714885587422354e-05 0.0005343515956700882 1.4399945108131632e-06 0.015108435426520194 4.0714885587422354e-05 0.019176092713405205 7.92091529960876e-05']
['59866.27806538247 0.03424799691132877 6.791507509137171e-05 0.015029946280049033 4.065563509177458e-05 0.0005315756099723217 1.437898953199166e-06 0.015029946280049031 4.065563509177458e-05 0.01921805063127974 7.915388865609946e-05']
['59866.278096920425 0.03437179037196794 6.797255193171681e-05 0.015029278094126445 4.066022833628109e-05 0.0005315519777295475 1.4380614059920637e-06 0.015029278094126446 4.066022833628109e-05 0.019342512277841496 7.920556788804973e-05']
['59866.27812845839 0.03421658011666105 6.790755887319372e-05 0.014995526823556826 4.0647479572237545e-05 0.0005303582707191504 1.4376105106996545e-06 0.014995526823556827 4.0647479572237545e-05 0.019221053293104223 7.914325080315908e-05']
['59866.27815999636 0.03412587519813173 6.783351229551161e-05 0.015048936174055456 4.068599131268908e-05 0.0005322472400834137 1.4389725848907508e-06 0.015048936174055456 4.068599131268908e-05 0.019076939024076277 7.909952768153257e-05']
['59866.278191534315 0.034247784697296016 6.790601097951487e-05 0.015014339460876429 4.066067118845298e-05 0.0005310236316573748 1.4380770686836673e-06 0.015014339460876429 4.066067118845298e-05 0.019233445236419587 7.914869871732248e-05']
['59866.27822307228 0.034328482213807764 6.7999456539797e-05 0.015049717300306175 4.0659588550103725e-05 0.0005322748667731871 1.4380387781848083e-06 0.015049717300306173 4.0659588550103725e-05 0.01927876491350159 7.922832972347371e-05']
['59866.278254610246 0.03425044883506825 6.788454432098218e-05 0.015045057867635976 4.068606236091107e-05 0.0005321100730528613 1.4389750977075792e-06 0.015045057867635976 4.068606236091107e-05 0.019205390967432276 7.914333217715399e-05']
['59866.278286148205 0.03422150865311991 6.789619491778353e-05 0.015047207463971006 4.068139442544042e-05 0.0005321860994711663 1.4388100032622042e-06 0.015047207463971006 4.068139442544042e-05 0.019174301189148903 7.915092631619614e-05']
['59866.27831768617 0.034295606748267954 6.794918712104427e-05 0.015068690342497366 4.0676969652061066e-05 0.0005329459008732359 1.438653508916563e-06 0.015068690342497368 4.0676969652061066e-05 0.019226916405770587 7.919411525161062e-05']
['59866.27834922413 0.03418235132060135 6.784082388295113e-05 0.015042675107416765 4.069860725996339e-05 0.0005320258001490635 1.4394187827508605e-06 0.015042675107416765 4.069860725996339e-05 0.019139676213184586 7.911228740226348e-05']
['59866.278380762094 0.03437580363459973 6.800564877291351e-05 0.015022227145588426 4.065023885756123e-05 0.0005313026014377003 1.4377081004549134e-06 0.015022227145588426 4.065023885756123e-05 0.019353576489011304 7.922884691955104e-05']
['59866.27841230006 0.034331158359961124 6.796790588200089e-05 0.015103061924486075 4.071614717145192e-05 0.0005341615469122117 1.4400391302208145e-06 0.015103061924486075 4.071614717145192e-05 0.01922809643547505 7.923030272863952e-05']
['59866.27844383802 0.034268910009843785 6.793385174295186e-05 0.01506459279398263 4.0691754619426714e-05 0.0005328009797397516 1.4391764201698283e-06 0.015064592793982631 4.0691754619426714e-05 0.019204317215861154 7.918855413909891e-05']
['59866.278475375984 0.03432135963902576 6.793842393405378e-05 0.015100061053612671 4.071518536748677e-05 0.000534055412815971 1.4400051133640725e-06 0.01510006105361267 4.071518536748677e-05 0.01922129858541309 7.920451859680747e-05']
['59866.27850691395 0.03430435642440846 6.793426511648546e-05 0.015058924251915701 4.068296266717508e-05 0.0005326004960752903 1.438865468467545e-06 0.015058924251915701 4.068296266717508e-05 0.01924543217249276 7.918439131732778e-05']
['59866.27853845191 0.03434426930004521 6.802067703731474e-05 0.015003897118530129 4.064829096221331e-05 0.0005306543093458479 1.4376392077497472e-06 0.01500389711853013 4.064829096221331e-05 0.019340372181515075 7.924074748993367e-05']
['59866.278569989874 0.03431822008913949 6.794868202541343e-05 0.01494267722663945 4.060591016517692e-05 0.0005284890985880804 1.4361402936740771e-06 0.014942677226639448 4.060591016517692e-05 0.019375542862500043 7.915720642704088e-05']
['59866.27860152783 0.03418067095412347 6.787612565372348e-05 0.015034711822210797 4.066991654669603e-05 0.0005317441565482234 1.4384040563425642e-06 0.015034711822210795 4.066991654669603e-05 0.019145959131912676 7.9127811455109e-05']
['59866.2786330658 0.034310636928199655 6.793716874642175e-05 0.01505053481176011 4.0676975283512744e-05 0.0005323037803262822 1.4386537080884231e-06 0.01505053481176011 4.0676975283512744e-05 0.019260102116439547 7.918380652314772e-05']
['59866.278664603764 0.03424178852241033 6.789958235953247e-05 0.015052338776141242 4.06818005637025e-05 0.0005323675825148198 1.4388243674648683e-06 0.015052338776141242 4.06818005637025e-05 0.019189449746269092 7.915404084254826e-05']
['59866.27869614172 0.03418266397670515 6.787021769135207e-05 0.014981971534601408 4.064920094682143e-05 0.0005298788504430851 1.4376713918716406e-06 0.014981971534601408 4.064920094682143e-05 0.01920069244210374 7.911209760262073e-05']
['59866.27872767969 0.034269916813575274 6.791291241780546e-05 0.015067662705983764 4.068230111308462e-05 0.0005329095556663822 1.438842070777852e-06 0.015067662705983765 4.068230111308462e-05 0.019202254107591507 7.91657330978764e-05']
['59866.278759217654 0.03427111272679313 6.791691500250938e-05 0.015065749132068429 4.0670522094026413e-05 0.0005328418768335828 1.4384254731983214e-06 0.015065749132068429 4.0670522094026413e-05 0.019205363594724703 7.916311458538487e-05']
['59866.27879075561 0.0341393972663535 6.784254355759121e-05 0.014976491788507707 4.063604887729913e-05 0.0005296850440702626 1.4372062325657824e-06 0.014976491788507707 4.063604887729913e-05 0.01916290547784579 7.908159826863583e-05']
['59866.27882229358 0.03424687788396634 6.79111275968177e-05 0.01500923910025089 4.0664030746306416e-05 0.0005308432433006846 1.4381958887367734e-06 0.01500923910025089 4.0664030746306416e-05 0.019237638783715448 7.915481443353782e-05']
['59866.278853831536 0.03422524935830905 6.792027688997608e-05 0.014957007537245942 4.063549929926732e-05 0.0005289959296478728 1.437186795219032e-06 0.014957007537245942 4.063549929926732e-05 0.019268241821063105 7.914801207934268e-05']
['59866.2788853695 0.03417151106341975 6.787080580654231e-05 0.015036009883699755 4.06678271636794e-05 0.0005317900660820912 1.4383301595347623e-06 0.015036009883699753 4.06678271636794e-05 0.019135501179719995 7.912217418046776e-05']
['59866.27891690747 0.03420747645293352 6.78803515138181e-05 0.015010110630016359 4.0671619475699074e-05 0.0005308740673607349 1.4384642851355797e-06 0.01501011063001636 4.0671619475699074e-05 0.01919736582291716 7.913231168375895e-05']
['59866.278948445426 0.03436638739116773 6.799781102710622e-05 0.014986068727752678 4.06483001224147e-05 0.0005300237590081578 1.4376395317255986e-06 0.01498606872775268 4.06483001224147e-05 0.01938031866341505 7.922112475419639e-05']
['59866.27897998339 0.034232829506524856 6.790837848799838e-05 0.015028322774955338 4.067347846175071e-05 0.0005315181902254781 1.4385300333176368e-06 0.015028322774955338 4.067347846175071e-05 0.019204506731569516 7.915730995333115e-05']
['59866.27901152136 0.03420735072770839 6.789047567307953e-05 0.015043990927670975 4.068798382604394e-05 0.0005320723377707698 1.439043055635107e-06 0.015043990927670975 4.068798382604394e-05 0.019163359800037416 7.914940754639554e-05']
['59866.279043059316 0.03434119656341229 6.797197721847643e-05 0.015130955359710381 4.071768817678727e-05 0.0005351480753779366 1.4400936321355816e-06 0.015130955359710381 4.071768817678727e-05 0.019210241203701912 7.92345872548798e-05']
['59866.27907459728 0.03425398870708519 6.790947915260665e-05 0.014983895032583953 4.0651869631445225e-05 0.0005299468802679628 1.4377657772826251e-06 0.014983895032583955 4.0651869631445225e-05 0.019270093674501235 7.914715322303346e-05']
['59866.27910613524 0.03412222903310683 6.782310076375717e-05 0.014995191924421015 4.064708815938084e-05 0.0005303464260851723 1.4375966673016692e-06 0.014995191924421015 4.064708815938084e-05 0.01912703710868581 7.907059360500106e-05']
['59866.279137673206 0.03422195137394481 6.791792172300269e-05 0.014997670207177 4.065458653315896e-05 0.0005304340774076155 1.4378618680243221e-06 0.014997670207176999 4.065458653315896e-05 0.019224281166767814 7.91557925698052e-05']
['59866.27916921117 0.034327491338218837 6.797917582004614e-05 0.015055408593137887 4.066808717940696e-05 0.0005324761550813539 1.438339355709945e-06 0.015055408593137889 4.066808717940696e-05 0.019272082745080948 7.921528678231614e-05']
['59866.27920074913 0.034288723488215274 6.796373609625266e-05 0.014998527999463291 4.064688812429418e-05 0.0005304644156037286 1.437589592507706e-06 0.014998527999463291 4.064688812429418e-05 0.019290195488751983 7.919115441985907e-05']
['59866.279232287096 0.034204977733002115 6.791229075141921e-05 0.015082465908445265 4.068456306628848e-05 0.000533433111854235 1.4389220710075045e-06 0.015082465908445263 4.068456306628848e-05 0.01912251182455685 7.916636221906437e-05']
['59866.27926382506 0.03431499036071696 6.798575428920885e-05 0.015056769417938997 4.068094593431302e-05 0.0005325242844133047 1.4387941411333466e-06 0.015056769417938997 4.068094593431302e-05 0.019258220942777963 7.922753402942174e-05']
['59866.27929536302 0.034109726418126915 6.77994244451841e-05 0.01493389293936788 4.061130144166629e-05 0.0005281784179790117 1.4363309710747122e-06 0.01493389293936788 4.061130144166629e-05 0.019175833478759036 7.903189077761023e-05']
['59866.279326900985 0.03422660084962438 6.791354945406852e-05 0.015033786657716755 4.066849601223748e-05 0.0005317114355476902 1.438353815213473e-06 0.015033786657716756 4.066849601223748e-05 0.019192814191907624 7.915918624738121e-05']
['59866.279358438944 0.03437858269620247 6.798123543340056e-05 0.014994117127186488 4.0657968570728545e-05 0.0005303084129090175 1.437981483134749e-06 0.014994117127186487 4.0657968570728545e-05 0.019384465569015984 7.921186009272718e-05']
['59866.27938997691 0.034241825670950465 6.788453503158069e-05 0.015000590661879608 4.0650761487850375e-05 0.0005305373673636146 1.4377265847202305e-06 0.015000590661879606 4.0650761487850375e-05 0.019241235009070858 7.912518250213396e-05']
['59866.279421514875 0.03429124822458031 6.793315286260541e-05 0.015035563695473025 4.0659999212929884e-05 0.0005317742854016838 1.4380533024111922e-06 0.015035563695473025 4.0659999212929884e-05 0.019255684529107284 7.91716413487151e-05']
['59866.27945305283 0.03437145532913093 6.802339066862468e-05 0.01504680181051723 4.068266779839823e-05 0.0005321717524150884 1.4388550396179008e-06 0.01504680181051723 4.068266779839823e-05 0.019324653518613705 7.926071622973871e-05']
['59866.2794845908 0.034172153259002275 6.788219736667248e-05 0.015030321168614823 4.0666544763284504e-05 0.0005315888689430671 1.438284803898791e-06 0.015030321168614821 4.0666544763284504e-05 0.019141832090387452 7.913128700022576e-05']
['59866.279516128765 0.03429195864954251 6.796239779323993e-05 0.014919650324354439 4.0603103799453717e-05 0.0005276746885163574 1.4360410387903058e-06 0.014919650324354437 4.0603103799453717e-05 0.01937230832518807 7.916754102506781e-05']
['59866.27954766672 0.034365777355038304 6.800290765338254e-05 0.014982147840772559 4.063818598687733e-05 0.0005298850859983376 1.4372818173554044e-06 0.014982147840772559 4.063818598687733e-05 0.019383629514265747 7.922031058774326e-05']
['59866.27957920469 0.03424593902085263 6.792835256641139e-05 0.014978515210392644 4.0641901208637365e-05 0.0005297566079802511 1.437413216446025e-06 0.014978515210392646 4.0641901208637365e-05 0.019267423810459983 7.915822898624834e-05']
['59866.27961074265 0.03418451863491544 6.786651451547026e-05 0.015029899480088033 4.067057410021746e-05 0.0005315739547622929 1.4384273125410718e-06 0.015029899480088031 4.067057410021746e-05 0.019154619154827406 7.911990514478525e-05']
['59866.27964228061 0.03428318639261235 6.79162111421222e-05 0.01505067168943756 4.0673916264616875e-05 0.00053230862138383 1.4385455174265812e-06 0.015050671689437559 4.0673916264616875e-05 0.019232514703174795 7.916425456102261e-05']
['59866.27967381858 0.03422981345411509 6.78911402949356e-05 0.015022495709027356 4.0667212211817673e-05 0.0005313120999263312 1.4383084100617496e-06 0.015022495709027354 4.0667212211817673e-05 0.019207317745087736 7.91393017383123e-05']
['59866.27970535654 0.03425573593372047 6.790502529418757e-05 0.014981748390947408 4.064084198673743e-05 0.0005298709583507398 1.437375754134646e-06 0.014981748390947406 4.064084198673743e-05 0.019273987542773065 7.913766800705725e-05']
['59866.2797368945 0.034220509298554386 6.790345779587021e-05 0.01501582829861004 4.065867236780996e-05 0.0005310762885206562 1.4380063748646248e-06 0.015015828298610041 4.065867236780996e-05 0.019204680999944344 7.914548135774044e-05']
['59866.27976843247 0.03424853706453575 6.789643876585153e-05 0.014996995443141111 4.065874334036777e-05 0.000530410212511675 1.4380088850053803e-06 0.014996995443141111 4.065874334036777e-05 0.019251541621394634 7.913949587344443e-05']
['59866.27979997043 0.03418275132760744 6.787558962932682e-05 0.014966972896655432 4.063289164497895e-05 0.0005293483821389189 1.4370945683146164e-06 0.014966972896655432 4.063289164497895e-05 0.019215778430952006 7.910832794947305e-05']
['59866.27983150839 0.034227234614759336 6.788179628212114e-05 0.015094019529473137 4.068267224685629e-05 0.0005338417376091676 1.4388551969499208e-06 0.015094019529473139 4.068267224685629e-05 0.019133215085286197 7.913923229114955e-05']
['59866.27986304635 0.034263592014878365 6.791826840410131e-05 0.01496100840473583 4.0628119293602284e-05 0.0005291374313895775 1.4369257809120015e-06 0.01496100840473583 4.0628119293602284e-05 0.019302583610142535 7.914249970999605e-05']
['59866.27989458432 0.03419622478671834 6.78891190993251e-05 0.015031968751836978 4.066925670986702e-05 0.000531647140279503 1.4383807193885708e-06 0.015031968751836978 4.066925670986702e-05 0.019164256034881363 7.913861847047503e-05']
['59866.27992612228 0.034372140610720706 6.79993908228479e-05 0.015066572989518176 4.069284941033948e-05 0.0005328710148303673 1.4392151404776993e-06 0.015066572989518176 4.069284941033948e-05 0.01930556762120253 7.924534778402438e-05']
['59866.27995766024 0.03420948859696511 6.789181076409428e-05 0.015062801213451195 4.068579075514868e-05 0.0005327376155403016 1.4389654916187666e-06 0.015062801213451197 4.068579075514868e-05 0.019146687383513918 7.914942538135908e-05']
['59866.27998919821 0.03420088883899575 6.789245131635734e-05 0.014955177970175282 4.06295280283087e-05 0.0005289312219494253 1.4369756047102305e-06 0.01495517797017528 4.06295280283087e-05 0.019245710868820466 7.912106858193381e-05']
['59866.28002073617 0.034343253493035755 6.797166782625609e-05 0.015106682771610952 4.07002770716396e-05 0.0005342896081829016 1.4394778402580384e-06 0.015106682771610954 4.07002770716396e-05 0.019236570721424803 7.922537586399404e-05']
['59866.28005227413 0.034242107912138546 6.792096316516985e-05 0.015154160491038408 4.0723512767710355e-05 0.0005359687890125925 1.4402996348993368e-06 0.015154160491038406 4.0723512767710355e-05 0.019087947421100142 7.919382380859147e-05']
['59866.2800838121 0.034352406717581156 6.793797879713392e-05 0.015139201417554224 4.070748646295518e-05 0.0005354397200150186 1.4397328203168293e-06 0.015139201417554224 4.070748646295518e-05 0.01921320530002693 7.920017940113203e-05']
['59866.280115350055 0.03426052675803711 6.789169354947099e-05 0.015122041815595661 4.070325782123892e-05 0.0005348328232431976 1.4395832627097831e-06 0.015122041815595661 4.070325782123892e-05 0.01913848494244145 7.915830499876515e-05']
['59866.28014688802 0.034229986837313466 6.793070198911742e-05 0.015067285721426214 4.0700970932941814e-05 0.0005328962225650925 1.4395023805816091e-06 0.015067285721426214 4.0700970932941814e-05 0.019162701115887252 7.919058850405429e-05']
['59866.28017842599 0.03434551633957344 6.801687451109755e-05 0.015080079212370949 4.068649786293452e-05 0.0005333486997480383 1.438990500440859e-06 0.015080079212370949 4.068649786293452e-05 0.019265437127202488 7.925709007154482e-05']
['59866.280209963945 0.03428811141704948 6.793071712200254e-05 0.014967546527679806 4.065674397944071e-05 0.0005293686701862612 1.4379381720776988e-06 0.014967546527679806 4.065674397944071e-05 0.019320564889369674 7.916787959595304e-05']
['59866.28024150191 0.03421347854012652 6.788396805477008e-05 0.01491378131137185 4.0608706244417706e-05 0.0005274671146436353 1.4362391847479544e-06 0.014913781311371848 4.0608706244417706e-05 0.019299697228754673 7.910309818020059e-05']
['59866.280273039876 0.03431244328365039 6.796166638201283e-05 0.015077976031245926 4.070163850337376e-05 0.0005332743149319794 1.439525991055855e-06 0.015077976031245926 4.070163850337376e-05 0.019234467252404467 7.921749474882003e-05']
['59866.280304577835 0.034178628792767486 6.78496201647608e-05 0.01499216886612495 4.064535422428154e-05 0.0005302395072693781 1.4375353418923238e-06 0.014992168866124951 4.064535422428154e-05 0.019186459926642536 7.909245081877055e-05']
['59866.2803361158 0.03434542495571491 6.799840042224274e-05 0.01497218619758855 4.06399426428575e-05 0.0005295327649418814 1.437343946351528e-06 0.014972186197588548 4.06399426428575e-05 0.01937323875812636 7.921734278551893e-05']
['59866.28036765376 0.034267630590759844 6.791431953578599e-05 0.015049480410334208 4.068229323056117e-05 0.0005322664885042966 1.438841791990614e-06 0.015049480410334208 4.068229323056117e-05 0.019218150180425636 7.916693615712436e-05']
['59866.280399191724 0.03419607465180202 6.786197800528805e-05 0.014995963925083277 4.0660115617807544e-05 0.0005303737300232765 1.4380574193915654e-06 0.014995963925083277 4.0660115617807544e-05 0.019200110726718747 7.911063810160853e-05']
['59866.28043072969 0.034207080573972246 6.787507353197398e-05 0.0149695346624618 4.063841428089784e-05 0.0005294389860702806 1.4372898916047028e-06 0.0149695346624618 4.063841428089784e-05 0.019237545911510445 7.911072191704962e-05']
['59866.28046226765 0.034185816788916405 6.786832698334635e-05 0.015047632475998834 4.0685925584246814e-05 0.0005322011311967446 1.4389702602226424e-06 0.015047632475998834 4.0685925584246814e-05 0.01913818431291757 7.912935200142415e-05']
['59866.280493805614 0.03427101645620828 6.79427646801471e-05 0.015070478669738487 4.0685225126983876e-05 0.0005330091500110781 1.438945486614682e-06 0.015070478669738487 4.0685225126983876e-05 0.019200537786469796 7.919284573757407e-05']
['59866.28052534358 0.034155005292274686 6.785252596461182e-05 0.0149965818778759 4.065013561728589e-05 0.0005303955856325084 1.437704449077103e-06 0.0149965818778759 4.065013561728589e-05 0.019158423414398787 7.909740075048014e-05']
['59866.28055688154 0.034269752076728076 6.790656891785144e-05 0.015004091754627608 4.066964442605203e-05 0.0005306611931896295 1.4383944320435398e-06 0.015004091754627608 4.066964442605203e-05 0.019265660322100468 7.915378752742292e-05']
['59866.280588419504 0.034293707822153775 6.795119148881416e-05 0.01504680094644149 4.067774201674089e-05 0.0005321717218546605 1.4386808257291546e-06 0.015046800946441488 4.067774201674089e-05 0.01924690687571229 7.919623173061971e-05']
['59866.28061995746 0.034260478166286586 6.792941109360746e-05 0.014949830809275779 4.0632250605338686e-05 0.0005287421048186112 1.4370718961751796e-06 0.014949830809275779 4.0632250605338686e-05 0.019310647357010807 7.915418296451152e-05']
['59866.28065149543 0.034340269789915986 6.800394820954881e-05 0.0149805673574227 4.062857999885616e-05 0.0005298291878344255 1.4369420750272154e-06 0.014980567357422701 4.062857999885616e-05 0.019359702432493284 7.921627664066553e-05']
['59866.280683033394 0.0341878460581221 6.786636438004667e-05 0.014980312396147173 4.065164853389877e-05 0.0005298201704239151 1.437757957556531e-06 0.014980312396147173 4.065164853389877e-05 0.019207533661974925 7.911004956823692e-05']
['59866.28071457135 0.03424539962666784 6.789957472067916e-05 0.015088478447304496 4.070208731434463e-05 0.0005336457619164526 1.439541864496861e-06 0.015088478447304498 4.070208731434463e-05 0.01915692117936334 7.916446272787826e-05']
['59866.28074610932 0.03420569202242322 6.786939957530192e-05 0.014956321577382555 4.060983466623943e-05 0.0005289716687805349 1.4362790945059145e-06 0.014956321577382557 4.060983466623943e-05 0.019249370445040662 7.909117567928354e-05']
['59866.280777647284 0.03418601762214347 6.788145365724562e-05 0.014998132899728985 4.063869159358232e-05 0.0005304504418091222 1.4372996995345956e-06 0.014998132899728985 4.063869159358232e-05 0.019187884722414485 7.911633842044944e-05']
['59866.28080918524 0.034213300821466106 6.790000429877256e-05 0.014963845451311086 4.0632359648106035e-05 0.0005292377713865184 1.4370757527741645e-06 0.014963845451311084 4.0632359648106035e-05 0.019249455370155023 7.91290037492345e-05']
['59866.28084072321 0.034250412157062135 6.790951474235087e-05 0.015059172634491788 4.068265443475432e-05 0.0005326092808119041 1.4388545669756816e-06 0.01505917263449179 4.068265443475432e-05 0.019191239522570347 7.9162999970941e-05']
['59866.280872261166 0.03417901242053191 6.785154930830888e-05 0.015017233305271657 4.067076857332421e-05 0.0005311259804662724 1.4384341906202354e-06 0.015017233305271657 4.067076857332421e-05 0.019161779115260253 7.910716882737473e-05']
['59866.28090379913 0.03431426658736232 6.794028008624236e-05 0.015099523291053053 4.071256756470425e-05 0.000534036393356066 1.4399125275300999e-06 0.015099523291053055 4.071256756470425e-05 0.019214743296309268 7.920476510859475e-05']
['59866.2809353371 0.034345429342924914 6.798221439443497e-05 0.015042336286108703 4.067126779410684e-05 0.0005320138167966184 1.4384518469436244e-06 0.015042336286108703 4.067126779410684e-05 0.019303093056816212 7.921952725149825e-05']
['59866.280966875056 0.03435858812012428 6.800028741025956e-05 0.01503268927332451 4.065912432489202e-05 0.0005316726235142463 1.4380223595765526e-06 0.015032689273324512 4.065912432489202e-05 0.01932589884679977 7.9228804602524e-05']
['59866.28099841302 0.03423427030990586 6.787325470026686e-05 0.015065688730391921 4.0704126540482576e-05 0.0005328397405612745 1.439613987367958e-06 0.015065688730391923 4.0704126540482576e-05 0.01916858157951394 7.914293791003033e-05']
['59866.28102995099 0.03423704704333432 6.794022409273707e-05 0.015059752362724025 4.069764438679284e-05 0.0005326297845038619 1.4393847280787129e-06 0.015059752362724025 4.069764438679284e-05 0.019177294680610295 7.919704734650896e-05']
['59866.281061488946 0.03423712751573038 6.789925609465526e-05 0.015057845138690995 4.0687528376338876e-05 0.0005325623302522085 1.439026947396909e-06 0.015057845138690995 4.0687528376338876e-05 0.019179282377039385 7.915670498184573e-05']
['59866.28109302691 0.034311592026897174 6.795071948240829e-05 0.015089270477652433 4.070311425512506e-05 0.0005336737742597755 1.4395781850971874e-06 0.015089270477652433 4.070311425512506e-05 0.01922232154924474 7.920886180373195e-05']
['59866.28112456487 0.03420727326036251 6.789337506627401e-05 0.015022364021848455 4.064405504183908e-05 0.0005313074424451171 1.4374893927128357e-06 0.015022364021848455 4.064405504183908e-05 0.019184909238514056 7.912932192388484e-05']
['59866.281156102836 0.03428760665432311 6.792963916517487e-05 0.01503908314760464 4.06887995502516e-05 0.0005318987605580664 1.4390719059772958e-06 0.015039083147604642 4.06887995502516e-05 0.019248523506718466 7.918342178733762e-05']
['59866.2811876408 0.03421184985036459 6.79175816324373e-05 0.01499558562031262 4.065960775395027e-05 0.0005303603502289998 1.4380394573819427e-06 0.01499558562031262 4.065960775395027e-05 0.019216264230051967 7.91580797992465e-05']
['59866.28121917876 0.034278824568308226 6.794113972304525e-05 0.01495765003580886 4.062456202965593e-05 0.0005290186533861435 1.436799968436236e-06 0.014957650035808862 4.062456202965593e-05 0.019321174532499364 7.916030259522585e-05']
['59866.281250716725 0.03417581380427608 6.785952666614416e-05 0.015043117241197767 4.067934865988151e-05 0.0005320414374327867 1.4387376491064026e-06 0.015043117241197768 4.067934865988151e-05 0.019132696563078314 7.911842242325951e-05']
['59866.281282254684 0.03412289390750298 6.782052484388402e-05 0.015048644306476093 4.0687106617776685e-05 0.0005322369173794172 1.4390120307391393e-06 0.015048644306476093 4.0687106617776685e-05 0.019074249601026882 7.908896405331289e-05']
['59866.28131379265 0.034151708015551376 6.784707966708305e-05 0.015015888522210636 4.066637963297261e-05 0.0005310784184948174 1.4382789636087038e-06 0.015015888522210636 4.066637963297261e-05 0.01913581949334074 7.910107870190243e-05']
['59866.281345330615 0.034271320553607806 6.792703743681694e-05 0.015077678329672065 4.06866398836758e-05 0.0005332637858926358 1.4389955233970802e-06 0.015077678329672065 4.06866398836758e-05 0.019193642223935742 7.918008007047385e-05']
['59866.281376868574 0.03419876631342479 6.786003577763188e-05 0.015022423283057458 4.0660040437487486e-05 0.0005313095383816385 1.438054760431663e-06 0.015022423283057458 4.0660040437487486e-05 0.019176343030367332 7.910893340274281e-05']
['59866.28140840654 0.034254341298899496 6.794773984180953e-05 0.014943437287248906 4.0634309254635786e-05 0.0005285159802332015 1.4371447060000078e-06 0.014943437287248907 4.0634309254635786e-05 0.019310904011650587 7.917096966825409e-05']
['59866.281439944505 0.03435108325475997 6.798707033646452e-05 0.015046994721064548 4.068092155844894e-05 0.0005321785752300173 1.438793279013511e-06 0.015046994721064548 4.068092155844894e-05 0.019304088533695418 7.922865082645323e-05']
['59866.28147148246 0.03422091617726591 6.789206388741438e-05 0.01504539631151695 4.068742610954921e-05 0.0005321220430565539 1.4390233304491113e-06 0.01504539631151695 4.068742610954921e-05 0.019175519865748957 7.915048314642674e-05']
['59866.28150302043 0.03422373278276013 6.79035796412802e-05 0.015119667191577377 4.072851154204716e-05 0.0005347488380986433 1.4404764303760264e-06 0.015119667191577379 4.072851154204716e-05 0.01910406559118275 7.918148634959028e-05']
['59866.28153455839 0.034416168354062186 6.8057223143205e-05 0.015059287699607526 4.0676897869518455e-05 0.0005326133504078923 1.4386509701284552e-06 0.015059287699607526 4.0676897869518455e-05 0.01935688065445466 7.9286793618176e-05']
['59866.28156609635 0.03414478576021139 6.782543384284561e-05 0.01499394176756153 4.063856976865539e-05 0.0005303022108309885 1.4372953908591927e-06 0.014993941767561532 4.063856976865539e-05 0.01915084399264986 7.906821629967442e-05']
['59866.28159763432 0.0343109879595357 6.797154306702198e-05 0.015104889939210874 4.0700217029399816e-05 0.0005342261997076553 1.439475716698204e-06 0.015104889939210872 4.0700217029399816e-05 0.01920609802032483 7.922523798103904e-05']
['59866.28162917228 0.03427340384101709 6.794485112281625e-05 0.014965569447828805 4.0632477181896434e-05 0.0005292987452904447 1.4370799096816585e-06 0.014965569447828805 4.0632477181896434e-05 0.019307834393188283 7.916755014549205e-05']
['59866.28166071024 0.03425391254550567 6.790479346129824e-05 0.015010305665676573 4.065521375008174e-05 0.0005308809653361575 1.4378840512851334e-06 0.015010305665676571 4.065521375008174e-05 0.019243606879829102 7.914485062268049e-05']
['59866.28169224821 0.034195033188295386 6.787888586473423e-05 0.015013164149059854 4.0664653610820526e-05 0.0005309820635050899 1.4382179180626172e-06 0.015013164149059855 4.0664653610820526e-05 0.01918186903923553 7.912747436589668e-05']
['59866.28172378617 0.034300801821393834 6.794931694889028e-05 0.015061385314391332 4.068998284619405e-05 0.0005326875383549024 1.4391137565102692e-06 0.015061385314391334 4.068998284619405e-05 0.019239416507002498 7.920091147104504e-05']
['59866.28175532413 0.034370399260418426 6.798469708790265e-05 0.014988228327879874 4.064826934671599e-05 0.0005301001392382345 1.437638443257915e-06 0.014988228327879875 4.064826934671599e-05 0.01938217093253855 7.920985316876336e-05']
['59866.28178686209 0.03427568935428542 6.79305050226288e-05 0.015074566103370757 4.068263627099964e-05 0.0005331537134037749 1.4388539245642722e-06 0.015074566103370756 4.068263627099964e-05 0.019201123250914665 7.918099776201264e-05']
['59866.28181840006 0.03423984304270668 6.78998637799956e-05 0.015093927221722293 4.0704154618710524e-05 0.0005338384728903159 1.4396149804321294e-06 0.015093927221722293 4.0704154618710524e-05 0.019145915820984384 7.916577356765896e-05']
['59866.28184993802 0.03412742046526103 6.781827346677058e-05 0.01496716512308953 4.063448501572055e-05 0.0005293551807582921 1.437150922276773e-06 0.01496716512308953 4.063448501572055e-05 0.0191602553421715 7.905997463006485e-05']
['59866.28188147598 0.034235714479416625 6.79237646490789e-05 0.015000913590677276 4.065904798078137e-05 0.0005305487886334847 1.438019659455978e-06 0.015000913590677276 4.065904798078137e-05 0.01923480088873935 7.916309738007314e-05']
['59866.28191301395 0.03424650075993455 6.792007697750135e-05 0.01506599876463522 4.067169205050069e-05 0.0005328507057795742 1.4384668519441177e-06 0.015065998764635219 4.067169205050069e-05 0.01918050199529933 7.916642843327258e-05']
['59866.28194455191 0.0341927932504967 6.78691936987315e-05 0.014996514146228898 4.065814887469583e-05 0.0005303931901155253 1.4379878600831164e-06 0.0149965141462289 4.065814887469583e-05 0.0191962791042678 7.911581714949841e-05']
['59866.28197608987 0.034198739047139416 6.789582921876514e-05 0.014950805143511983 4.062996772271115e-05 0.0005287765648430368 1.436991155718586e-06 0.014950805143511983 4.062996772271115e-05 0.01924793390362743 7.912419290237514e-05']
['59866.28200762784 0.03427223964280472 6.793158585548794e-05 0.014941272911704287 4.062214257587674e-05 0.0005284394311072829 1.436714397763227e-06 0.014941272911704287 4.062214257587674e-05 0.019330966731100435 7.915086117217163e-05']
['59866.282039165795 0.03414949991203588 6.781034801196022e-05 0.015039181688486255 4.067306902574512e-05 0.0005319022457288231 1.4385155524811547e-06 0.015039181688486253 4.067306902574512e-05 0.019110318223549624 7.907301588706596e-05']
['59866.28207070376 0.034193785170343834 6.78709771562428e-05 0.015061053776307802 4.067827005337596e-05 0.000532675812593832 1.4386995012048448e-06 0.015061053776307804 4.067827005337596e-05 0.01913273139403603 7.91276891781797e-05']
['59866.28210224173 0.034322322774165845 6.797814826285133e-05 0.015042900224099553 4.0662285916585205e-05 0.0005320337620230276 1.438134178008999e-06 0.015042900224099553 4.0662285916585205e-05 0.019279422550066292 7.921142680957288e-05']
['59866.282133779685 0.03428042926452881 6.796066060206232e-05 0.015107012954456397 4.071885007199263e-05 0.0005343012860122297 1.4401347257723122e-06 0.015107012954456397 4.071885007199263e-05 0.01917341631007241 7.922547658836846e-05']
['59866.28216531765 0.03419513959159902 6.78810312216792e-05 0.014979061147548217 4.0638343647427185e-05 0.000529775916557346 1.4372873934567023e-06 0.014979061147548217 4.0638343647427185e-05 0.0192160784440508 7.911579724761023e-05']
['59866.282196855616 0.03420909827366001 6.788649276908161e-05 0.01502274826103593 4.068000507143619e-05 0.000531321032126454 1.438760864916098e-06 0.01502274826103593 4.068000507143619e-05 0.01918635001262408 7.914188974935235e-05']
['59866.282228393575 0.0343070000617621 6.794234752366483e-05 0.015059056310944778 4.067799569426598e-05 0.0005326051667080142 1.4386897977362813e-06 0.01505905631094478 4.067799569426598e-05 0.01924794375081732 7.918877395647167e-05']
['59866.28225993154 0.03432745001227752 6.79973898369096e-05 0.015025169679663605 4.066116549772655e-05 0.0005314066722917627 1.438094551297957e-06 0.015025169679663605 4.066116549772655e-05 0.019302280332613917 7.922736524879623e-05']
['59866.2822914695 0.034253472943603175 6.792333169521817e-05 0.015009404545693219 4.0659342024088865e-05 0.000530849094736231 1.438030059110616e-06 0.01500940454569322 4.0659342024088865e-05 0.019244068397909955 7.916287692100678e-05']
['59866.282323007465 0.0342203940737463 6.791803651473985e-05 0.015018584283640507 4.0657095871084245e-05 0.0005311737615519197 1.4379506176986992e-06 0.015018584283640508 4.0657095871084245e-05 0.019201809790105794 7.915717989347569e-05']
['59866.28235454543 0.034249213969893805 6.792486695378259e-05 0.015037724546765323 4.066210156994406e-05 0.000531850709882674 1.4381276580802924e-06 0.015037724546765325 4.066210156994406e-05 0.019211489423128482 7.91656115669772e-05']
['59866.28238608339 0.03416594147689195 6.784696986272656e-05 0.014982874675035477 4.0645822515534436e-05 0.0005299107925018381 1.4375519043073692e-06 0.014982874675035479 4.0645822515534436e-05 0.01918306680185647 7.909041792479068e-05']
['59866.282417621354 0.034179306853970935 6.786436058059098e-05 0.014988703203798059 4.064464312107661e-05 0.0005301169345381754 1.4375101917611874e-06 0.014988703203798059 4.064464312107661e-05 0.019190603650172874 7.910473090436597e-05']
['59866.28244915932 0.03434338154850284 6.797920888169762e-05 0.01505713286649062 4.0670055877465275e-05 0.0005325371387763159 1.4384089841604865e-06 0.01505713286649062 4.0670055877465275e-05 0.01928624868201222 7.921632587577906e-05']
['59866.28248069728 0.03432795044947457 6.794286816652013e-05 0.015036732361482279 4.067412456040348e-05 0.0005318156185066163 1.4385528843830396e-06 0.01503673236148228 4.067412456040348e-05 0.019291218087992293 7.918723219969461e-05']
['59866.282512235244 0.03430062313928921 6.795119940072033e-05 0.014954403665430402 4.0622200387699284e-05 0.0005289038365210682 1.4367164424381886e-06 0.014954403665430403 4.0622200387699284e-05 0.019346219473858804 7.916772489048078e-05']
['59866.2825437732 0.03432211995636066 6.797297545187596e-05 0.015096468756493899 4.070071901088602e-05 0.0005339283612951917 1.4394934706615083e-06 0.0150964687564939 4.070071901088602e-05 0.019225651199866762 7.922672478264157e-05']
['59866.28257531117 0.03417443034707673 6.786393250639717e-05 0.014972243124754203 4.0634713710346415e-05 0.0005295347783285059 1.4371590106945873e-06 0.014972243124754205 4.0634713710346415e-05 0.019202187222322524 7.909926228198747e-05']
['59866.282606849134 0.03428836179954672 6.794611685833063e-05 0.014955347025127484 4.062111423124433e-05 0.0005289372010452691 1.4366780275117938e-06 0.014955347025127484 4.062111423124433e-05 0.019333014774419233 7.916280513924278e-05']
['59866.28263838709 0.03425276880402105 6.789433477445094e-05 0.015028421235763957 4.065527640702152e-05 0.000531521672564232 1.4378862673210635e-06 0.015028421235763957 4.065527640702152e-05 0.01922434756825709 7.91359096377652e-05']
['59866.28266992506 0.034277334704449845 6.797739334790139e-05 0.015086527372280459 4.070703120978875e-05 0.0005335767567532484 1.4397167190297636e-06 0.015086527372280459 4.070703120978875e-05 0.019190807332169386 7.923375793366123e-05']
['59866.282701463024 0.034271228621929016 6.792769248419717e-05 0.014996744177442175 4.066125991290796e-05 0.0005304013258054494 1.438097890551918e-06 0.014996744177442175 4.066125991290796e-05 0.01927448444448684 7.916760362631114e-05']
['59866.28273300098 0.03424254063665227 6.790254969322552e-05 0.015060265275394646 4.068208376204681e-05 0.0005326479250787295 1.4388343835573955e-06 0.015060265275394648 4.068208376204681e-05 0.01918227536125762 7.915673183035764e-05']
['59866.28276453895 0.03430638016060028 6.795113791848795e-05 0.015049388662065363 4.0671865402203394e-05 0.0005322632435730729 1.4384729830064241e-06 0.015049388662065365 4.0671865402203394e-05 0.019256991498534916 7.919316750649844e-05']
['59866.28279607691 0.03442223715285178 6.803581385780246e-05 0.015109349752592913 4.0720257849755744e-05 0.0005343839333398818 1.4401845157255956e-06 0.015109349752592913 4.0720257849755744e-05 0.01931288740025887 7.929067641686593e-05']
['59866.28282761487 0.0341917854697479 6.785017473039957e-05 0.015010207757317548 4.066348469195644e-05 0.0005308775025363112 1.4381765760147744e-06 0.015010207757317548 4.066348469195644e-05 0.019181577712430356 7.910224521616771e-05']
['59866.28285915284 0.03417896961056373 6.784710103014278e-05 0.015029688744927886 4.0670397270995914e-05 0.000531566501530644 1.4384210584866956e-06 0.015029688744927888 4.0670397270995914e-05 0.01914928086563584 7.91031625940141e-05']
['59866.282890690796 0.034268649946650985 6.791477231664771e-05 0.015014945340851306 4.0667746503483976e-05 0.0005310450602780242 1.438327306763915e-06 0.015014945340851306 4.0667746503483976e-05 0.019253704605799678 7.915985033142579e-05']
['59866.28292222876 0.034226286704925765 6.786701321420441e-05 0.015099440607806098 4.069887350003956e-05 0.0005340334690344074 1.439428199067343e-06 0.0150994406078061 4.069887350003956e-05 0.019126846097119666 7.91348835014573e-05']
['59866.28295376673 0.034242226992791856 6.788718596687518e-05 0.014968979649152423 4.06368408385534e-05 0.0005294193564899097 1.4372342424654168e-06 0.014968979649152425 4.06368408385534e-05 0.01927324734363943 7.912030619151455e-05']
['59866.282985304686 0.034310454836306944 6.791680680922482e-05 0.015103984172446306 4.070555595750363e-05 0.0005341941647614622 1.4396645426534337e-06 0.015103984172446306 4.070555595750363e-05 0.019206470663860636 7.918102634451656e-05']
['59866.28301684265 0.03429652702650438 6.79556080561866e-05 0.015049180222107012 4.066839512919252e-05 0.0005322558715175819 1.4383502472056332e-06 0.015049180222107012 4.066839512919252e-05 0.01924734680439737 7.919522099640977e-05']
['59866.28304838061 0.03425453114687914 6.792345610221075e-05 0.015006696589806235 4.066655682934899e-05 0.0005307533203884336 1.4382852306485258e-06 0.015006696589806233 4.066655682934899e-05 0.019247834557072907 7.916668954316342e-05']
['59866.283079918576 0.03430461677355902 6.793791423988846e-05 0.015162956792918078 4.074580202223309e-05 0.0005362798945514988 1.4410879560182536e-06 0.015162956792918078 4.074580202223309e-05 0.019141659980640942 7.921982437307882e-05']
['59866.28311145654 0.034267214672143775 6.793050492191352e-05 0.014976724442812612 4.063168354247237e-05 0.0005296932725330753 1.437051840428909e-06 0.014976724442812612 4.063168354247237e-05 0.019290490229331166 7.915483059448575e-05']
['59866.2831429945 0.03428139138326365 6.79342003191167e-05 0.015075408574439406 4.0688615721842314e-05 0.000533183509722661 1.4390654043772915e-06 0.015075408574439404 4.0688615721842314e-05 0.019205982808824247 7.918724027491822e-05']
['59866.283174532466 0.034268097702253725 6.792945393289756e-05 0.014997438602870835 4.066180835077113e-05 0.0005304258860809116 1.4381172875734519e-06 0.014997438602870835 4.066180835077113e-05 0.01927065909938289 7.916939667558729e-05']
['59866.28320607043 0.03434605162652901 6.800152718731613e-05 0.015082597868263598 4.068836501204202e-05 0.0005334377789780966 1.4390565373319587e-06 0.015082597868263598 4.068836501204202e-05 0.019263453758265416 7.924487836548466e-05']
['59866.28323760839 0.03432676684664411 6.799917011190702e-05 0.015066534959861011 4.069338476684693e-05 0.0005328696698063847 1.4392340748409164e-06 0.015066534959861011 4.069338476684693e-05 0.0192602318867831 7.924543330495908e-05']
['59866.283269146355 0.03427946265696533 6.795645670744551e-05 0.015057330957736871 4.067914280310347e-05 0.0005325441448209879 1.4387303684122259e-06 0.01505733095773687 4.067914280310347e-05 0.019222131699228463 7.920146884639326e-05']
['59866.283300684314 0.034264371483190094 6.793685974897916e-05 0.014934748465435934 4.060950170203323e-05 0.0005282086760240505 1.4362673183060723e-06 0.014934748465435934 4.060950170203323e-05 0.01932962301775416 7.914890107285067e-05']
['59866.28333222228 0.03417371866007952 6.785518188350014e-05 0.015011469635967663 4.065039280133066e-05 0.000530922132364033 1.4377135451019941e-06 0.015011469635967665 4.065039280133066e-05 0.01916224902411185 7.909981127250154e-05']
['59866.283363760245 0.034262329151061095 6.794937809521055e-05 0.014961634883732757 4.061465416708305e-05 0.0005291595885516007 1.4364495494798029e-06 0.014961634883732755 4.061465416708305e-05 0.01930069426732834 7.916228973847103e-05']
['59866.283395298204 0.034308445165279575 6.797811769651277e-05 0.015020981989752949 4.065982832599605e-05 0.000531258563058559 1.4380472585222523e-06 0.01502098198975295 4.065982832599605e-05 0.019287463175526626 7.921013902942232e-05']
['59866.28342683617 0.03431029710389866 6.794276221193798e-05 0.015021804650561067 4.065766896667764e-05 0.0005312876587328034 1.4379708868090443e-06 0.015021804650561067 4.065766896667764e-05 0.01928849245333759 7.917869020634208e-05']
['59866.283458374135 0.03429817018365152 6.794730367875286e-05 0.01500208813769708 4.06498669279889e-05 0.0005305903297366171 1.4376949461371538e-06 0.01500208813769708 4.06498669279889e-05 0.01929608204595444 7.917858143763291e-05']
['59866.28348991209 0.03424161047126851 6.79216826769038e-05 0.015092932451616645 4.071113565774421e-05 0.0005338032900948595 1.439861884181047e-06 0.015092932451616647 4.071113565774421e-05 0.019148678019651862 7.918807703313211e-05']
['59866.28352145006 0.034255408789060485 6.791827559573315e-05 0.015130808108939124 4.07270475039589e-05 0.0005351428674472433 1.4404246506207772e-06 0.015130808108939124 4.07270475039589e-05 0.01912460068012136 7.91933365775662e-05']
['59866.28355298802 0.03427328751926363 6.794591867706055e-05 0.015038302124857215 4.065424704495651e-05 0.0005318711375289731 1.4378498610853127e-06 0.015038302124857215 4.065424704495651e-05 0.019234985394406417 7.91796417500236e-05']
['59866.28358452598 0.034248782071335054 6.791380044892359e-05 0.015001286303580615 4.064012121067445e-05 0.0005305619706559115 1.4373502618961379e-06 0.015001286303580615 4.064012121067445e-05 0.01924749576775444 7.914482764801832e-05']
['59866.28361606395 0.03428568624958691 6.79675519852838e-05 0.015071096915885367 4.066737814733029e-05 0.0005330310159955944 1.4383142788299868e-06 0.015071096915885365 4.066737814733029e-05 0.019214589333701543 7.92049478773278e-05']
['59866.28364760191 0.03432073956782879 6.792605750917467e-05 0.015073332598851859 4.0681096256649555e-05 0.0005331100871056619 1.4387994576984392e-06 0.01507333259885186 4.0681096256649555e-05 0.019247406968976928 7.917639093430876e-05']
['59866.28367913987 0.03434927864567897 6.796916783376717e-05 0.015110755290972428 4.069410496942343e-05 0.0005344336440911718 1.4392595467964894e-06 0.015110755290972428 4.069410496942343e-05 0.019238523354706542 7.922006030846772e-05']
['59866.28371067784 0.034320927333263675 6.796222422665954e-05 0.015102743658749484 4.071210132978594e-05 0.0005341502905643905 1.4398960378430128e-06 0.015102743658749484 4.071210132978594e-05 0.01921818367451419 7.922334956640944e-05']
['59866.2837422158 0.03427789175560931 6.794809223964449e-05 0.015077597284641246 4.06818173158952e-05 0.0005332609195110207 1.438824959952485e-06 0.015077597284641246 4.06818173158952e-05 0.019200294470968063 7.91956659112802e-05']
['59866.28377375376 0.03428086425235116 6.793282357475052e-05 0.015023224861185113 4.066193116403862e-05 0.000531337888408592 1.4381216312042517e-06 0.015023224861185114 4.066193116403862e-05 0.019257639391166047 7.917235101237802e-05']
['59866.28380529172 0.03417923042768325 6.785716639775507e-05 0.014967898235873913 4.0627762595452067e-05 0.0005293811093190652 1.4369131652956018e-06 0.014967898235873913 4.0627762595452067e-05 0.019211332191809337 7.908988636383944e-05']
['59866.28383682969 0.03436419379103201 6.801766177239003e-05 0.015154152783367219 4.073173426973384e-05 0.0005359685164094883 1.4405904110519317e-06 0.015154152783367219 4.073173426973384e-05 0.019210041007664793 7.928099702705219e-05']
['59866.28386836765 0.034300367937873076 6.793917027760946e-05 0.015072504240128796 4.068524633574909e-05 0.0005330807899088999 1.4389462367213088e-06 0.015072504240128796 4.068524633574909e-05 0.01922786369774428 7.918977287131589e-05']
['59866.28389990561 0.03424246965848263 6.789907113808484e-05 0.014957976280489784 4.061596185765166e-05 0.0005290301919313937 1.4364957995726983e-06 0.014957976280489784 4.061596185765166e-05 0.019284493377992845 7.911978399260781e-05']
['59866.28393144358 0.03423914859502832 6.791073171819155e-05 0.015101360075861868 4.0697093042044345e-05 0.0005341013563297814 1.4393652282471418e-06 0.01510136007586187 4.0697093042044345e-05 0.019137788519166452 7.917146496417128e-05']
['59866.28396298154 0.03428153730959253 6.792596496224672e-05 0.0151186038814953 4.0712403805309244e-05 0.0005347112311973984 1.4399067357262792e-06 0.0151186038814953 4.0712403805309244e-05 0.01916293342809723 7.919240203238519e-05']
['59866.2839945195 0.03423750371759055 6.78822062192472e-05 0.015061886888576568 4.0700776705589297e-05 0.0005327052779128818 1.439495511194223e-06 0.015061886888576567 4.0700776705589297e-05 0.019175616829013985 7.91488922577609e-05']
['59866.28402605747 0.03434567429503236 6.797279803352433e-05 0.015068134902358145 4.0688251505728876e-05 0.0005329262561968472 1.4390525228673343e-06 0.015068134902358145 4.0688251505728876e-05 0.019277539392674216 7.922016841120534e-05']
['59866.284057595425 0.03434766146943367 6.79801323662559e-05 0.015128055762035431 4.0736208644043385e-05 0.000535045523088393 1.4407486596716222e-06 0.015128055762035431 4.0736208644043385e-05 0.019219605707398238 7.925110151426735e-05']
['59866.28408913339 0.03434804502176368 6.802034902514349e-05 0.015078734239951477 4.068960518394277e-05 0.000533301131079398 1.439100399440467e-06 0.015078734239951477 4.068960518394277e-05 0.019269310781812203 7.92616669741905e-05']
['59866.28412067136 0.034193015731003 6.790252036520789e-05 0.014963703437925939 4.064672280733705e-05 0.000529232748690467 1.437583745616394e-06 0.014963703437925939 4.064672280733705e-05 0.01922931229307706 7.913853894863088e-05']
['59866.284152209315 0.03424905926905746 6.790658061062908e-05 0.015064649577454233 4.068297151340701e-05 0.0005328029880442386 1.4388657813389982e-06 0.015064649577454235 4.068297151340701e-05 0.019184409691603226 7.91606459131591e-05']
['59866.28418374728 0.034314911143556226 6.795477815696762e-05 0.015004201588522684 4.061842268966259e-05 0.0005306650777690341 1.4365828337012889e-06 0.015004201588522684 4.061842268966259e-05 0.019310709555033542 7.916885837347145e-05']
['59866.284215285246 0.03429055521433112 6.794017809284055e-05 0.015110953214379065 4.072076428435464e-05 0.0005344406441997318 1.4402024271855438e-06 0.015110953214379066 4.072076428435464e-05 0.019179601999952056 7.920889118772503e-05']
['59866.284246823205 0.03416655055639641 6.781761959216875e-05 0.014945023434139575 4.06183194668123e-05 0.0005285720787038948 1.4365791829397636e-06 0.014945023434139577 4.06183194668123e-05 0.019221527122256835 7.905110627597905e-05']
['59866.28427836117 0.03432294262554509 6.796310504186708e-05 0.015018987374916122 4.067258854741487e-05 0.0005311880179894822 1.4384985590364195e-06 0.015018987374916122 4.067258854741487e-05 0.019303955250628967 7.920380739635665e-05']
['59866.28430989913 0.03425708275083062 6.792101757820285e-05 0.015024608771166502 4.067260576416877e-05 0.0005313868342117769 1.438499167954528e-06 0.015024608771166502 4.067260576416877e-05 0.01923247397966412 7.916770483288015e-05']
['59866.284341437095 0.034221078543604115 6.787251460957356e-05 0.015095193141316353 4.071666979584195e-05 0.000533883245637194 1.4400576142774933e-06 0.015095193141316354 4.071666979584195e-05 0.01912588540228776 7.91487551303898e-05']
['59866.28437297506 0.034212712394750266 6.789436165541675e-05 0.01506403243300909 4.0676573352851126e-05 0.0005327811610244506 1.438639492699184e-06 0.01506403243300909 4.0676573352851126e-05 0.019148679961741175 7.914687589745033e-05']
['59866.28440451302 0.03434022140167109 6.800031647626651e-05 0.01508315153532817 4.071021628809484e-05 0.0005334573609447975 1.4398293681312187e-06 0.015083151535328168 4.071021628809484e-05 0.019257069866342923 7.925506135948584e-05']
['59866.284436050984 0.034235237887359944 6.789846683196133e-05 0.014997373801600766 4.0652212388654525e-05 0.0005304235942048116 1.437777899839101e-06 0.014997373801600766 4.0652212388654525e-05 0.019237864085759178 7.913788075392991e-05']
['59866.28446758895 0.034235983181548274 6.791798306490104e-05 0.015012055210196733 4.065283110937312e-05 0.0005309428428158338 1.437799782608158e-06 0.015012055210196733 4.065283110937312e-05 0.019223927971351543 7.915494362837612e-05']
['59866.28449912691 0.03435545553368421 6.798684223776611e-05 0.015069866651001223 4.068372383335479e-05 0.0005329875042761224 1.438892389214215e-06 0.015069866651001223 4.068372383335479e-05 0.019285588882682985 7.922989399470113e-05']
['59866.284530664874 0.03438500340380058 6.800376541261375e-05 0.015069554755342706 4.067323290436841e-05 0.0005329764732237265 1.438521348501813e-06 0.015069554755342706 4.067323290436841e-05 0.019315448648457877 7.923903069313001e-05']
['59866.28456220283 0.03432094113603078 6.797280070708217e-05 0.01502972308917413 4.066387924961183e-05 0.0005315677162098787 1.4381905306372612e-06 0.01502972308917413 4.066387924961183e-05 0.01929121804685665 7.920765563751854e-05']
['59866.2845937408 0.034239510924177055 6.791755826162881e-05 0.015013916625585362 4.066057328702695e-05 0.000531008676918111 1.4380736061290254e-06 0.015013916625585362 4.066057328702695e-05 0.01922559429859169 7.915855569836676e-05']
['59866.284625278764 0.03436081726531395 6.798685205352665e-05 0.015019897014673817 4.067194998543196e-05 0.0005312201899147867 1.438475974526186e-06 0.015019897014673817 4.067194998543196e-05 0.019340920250640138 7.922385731435702e-05']
['59866.28465681672 0.034263127295967255 6.792234191686527e-05 0.015035993511013493 4.065756471880739e-05 0.0005317894870167689 1.4379671997948538e-06 0.015035993511013493 4.065756471880739e-05 0.019227133784953762 7.916111482499197e-05']
['59866.28468835469 0.034187294660249584 6.792354460277712e-05 0.014972530032923191 4.063475789577452e-05 0.000529544925629241 1.4371605734344307e-06 0.014972530032923191 4.063475789577452e-05 0.019214764627326394 7.915043563148382e-05']
['59866.284719892654 0.03425676972283222 6.789202973282588e-05 0.015045876916046147 4.068749514459917e-05 0.0005321390409646636 1.4390257720645441e-06 0.015045876916046145 4.068749514459917e-05 0.019210892806786072 7.915048933761998e-05']
['59866.28475143061 0.0342215875986763 6.78806573063407e-05 0.015034070371092348 4.067690943164657e-05 0.0005317214698557228 1.4386513790550868e-06 0.015034070371092348 4.067690943164657e-05 0.019187517227583953 7.91352929940317e-05']
['59866.28478296858 0.03433368328862128 6.79977229121025e-05 0.015036123771924708 4.067662412252331e-05 0.0005317940940540826 1.4386412883090255e-06 0.015036123771924708 4.067662412252331e-05 0.019297559516696573 7.923558588939768e-05']
['59866.284814506536 0.03416002638624019 6.785041849483995e-05 0.014981864996612313 4.064868238283128e-05 0.0005298750824325092 1.4376530514222314e-06 0.014981864996612314 4.064868238283128e-05 0.019178161389627874 7.909484603553645e-05']
['59866.2848460445 0.03432118381170639 6.797416304683609e-05 0.015043990670326074 4.068184312716604e-05 0.0005320723286690557 1.4388258728394498e-06 0.015043990670326073 4.068184312716604e-05 0.019277193141380315 7.921804846208473e-05']
['59866.28487758247 0.03421945351439012 6.7898575582281e-05 0.015017489594496232 4.065512840231868e-05 0.0005311350448433729 1.437881032725495e-06 0.01501748959449623 4.065512840231868e-05 0.019201963919893886 7.913947201941484e-05']
['59866.284909120426 0.034311405162909515 6.79665340614109e-05 0.0150125980815723 4.067071649842812e-05 0.0005309620429631415 1.4384323488475415e-06 0.0150125980815723 4.067071649842812e-05 0.019298807081337216 7.92057885057427e-05']
['59866.28494065839 0.034182165209927694 6.786130311549449e-05 0.015095838299963252 4.0712566744689765e-05 0.0005339060634566901 1.43991249852802e-06 0.015095838299963252 4.0712566744689765e-05 0.01908632690996444 7.913703021641537e-05']
['59866.28497219636 0.03415606654248812 6.786588569674284e-05 0.015016279419580761 4.066021537165816e-05 0.0005310922436611945 1.438060947462325e-06 0.01501627941958076 4.066021537165816e-05 0.019139787122907363 7.911404145581864e-05']
['59866.285003734316 0.03427510305558051 6.789615423764256e-05 0.015008039246272215 4.066341413483487e-05 0.0005308008071469747 1.4381740805670704e-06 0.015008039246272213 4.066341413483487e-05 0.019267063809308295 7.914165154558525e-05']
['59866.28503527228 0.034383919184225696 6.801478553972695e-05 0.015130192057779001 4.071181829167912e-05 0.000535121079094503 1.4398860274177274e-06 0.015130192057779 4.071181829167912e-05 0.0192537271264467 7.926829883774313e-05']
['59866.28506681024 0.03409424594055393 6.781209995766071e-05 0.015077877407753236 4.068578322032717e-05 0.0005332708268394535 1.438965225128969e-06 0.015077877407753237 4.068578322032717e-05 0.01901636853280069 7.908105877464732e-05']
['59866.285098348206 0.03416846684789662 6.787914824129304e-05 0.014920476243161994 4.0605837766773e-05 0.0005277038994187608 1.4361377331043315e-06 0.014920476243161996 4.0605837766773e-05 0.019247990604734627 7.909748938307034e-05']
['59866.28512988617 0.03424692670413966 6.790834265112846e-05 0.014992125494335005 4.0658914629146356e-05 0.0005302379733060981 1.438014943106671e-06 0.014992125494335007 4.0658914629146356e-05 0.019254801209804655 7.914979684397986e-05']
['59866.28516142413 0.03426282766968691 6.793670573872428e-05 0.015003440779580386 4.0645471687090104e-05 0.000530638169657053 1.4375394962893487e-06 0.015003440779580388 4.0645471687090104e-05 0.019259386890106527 7.916723031214403e-05']
['59866.285192962096 0.03413927725021499 6.782357391547442e-05 0.014987439249499482 4.064326801297398e-05 0.0005300722312994064 1.4374615572607832e-06 0.014987439249499484 4.064326801297398e-05 0.01915183800071551 7.906903574372371e-05']
['59866.28522450006 0.03429461084599903 6.79340364022411e-05 0.015063416175063602 4.067329873002214e-05 0.0005327593653581741 1.438523676608074e-06 0.015063416175063602 4.067329873002214e-05 0.01923119467093543 7.917923042997223e-05']
['59866.28525603802 0.034294858874383785 6.795672952534982e-05 0.015076557491830561 4.069828081440282e-05 0.000533224144363107 1.439407237100946e-06 0.015076557491830561 4.069828081440282e-05 0.019218301382553225 7.921153419186843e-05']
['59866.285287575985 0.03431182341362387 6.796982553499858e-05 0.01502166757654888 4.066209834835175e-05 0.0005312828107313348 1.438127544139772e-06 0.015021667576548882 4.066209834835175e-05 0.01929015583707499 7.920418818060807e-05']
['59866.285319113944 0.03416993939841055 6.784385401489169e-05 0.015053081050009838 4.0679005958637854e-05 0.0005323938350826676 1.4387255285293064e-06 0.015053081050009838 4.0679005958637854e-05 0.01911685834840071 7.91048042370173e-05']
['59866.28535065191 0.034195160624370384 6.78948890817387e-05 0.014954582767825358 4.062862308960063e-05 0.0005289101709725075 1.4369435990505452e-06 0.014954582767825358 4.062862308960063e-05 0.019240577856545024 7.912269571733783e-05']
['59866.285382189875 0.03425222005300031 6.794043141578034e-05 0.015061444814218833 4.068621801109922e-05 0.0005326896427308268 1.4389806027068764e-06 0.015061444814218833 4.068621801109922e-05 0.01919077523878148 7.919135405465073e-05']
['59866.285413727834 0.034247738441414516 6.792998770383561e-05 0.01511844221913851 4.072093867453596e-05 0.0005347055135611328 1.4402085949765179e-06 0.015118442219138509 4.072093867453596e-05 0.019129296222276007 7.920024037828785e-05']
['59866.2854452658 0.03431091100807149 6.797597359847238e-05 0.015046470071984836 4.066746834001956e-05 0.0005321600195645896 1.4383174687438376e-06 0.015046470071984838 4.066746834001956e-05 0.01926444093608665 7.921222107633839e-05']
['59866.285476803765 0.03414365442267996 6.784355355569626e-05 0.014994986940305842 4.065936949003558e-05 0.0005303391762551312 1.4380310305197684e-06 0.014994986940305842 4.065936949003558e-05 0.01914866748237412 7.909445041462683e-05']
['59866.28550834172 0.03427882917233045 6.794152972678795e-05 0.0150424508154066 4.068182752798709e-05 0.0005320178674419272 1.4388253211313527e-06 0.0150424508154066 4.068182752798709e-05 0.01923637835692385 7.919004074145245e-05']
['59866.28553987969 0.034230170996730584 6.791002674757393e-05 0.01506449914950134 4.070033904357097e-05 0.0005327976677437315 1.4394800320667518e-06 0.015064499149501342 4.070033904357097e-05 0.01916567184722924 7.917252889176797e-05']
['59866.28557141765 0.034251293300500835 6.789755799567201e-05 0.015024243970729519 4.068515980696585e-05 0.0005313739320356018 1.4389431763916261e-06 0.015024243970729519 4.068515980696585e-05 0.019227049329771317 7.915403091627106e-05']
['59866.28560295561 0.034230255304897 6.787892225874709e-05 0.015062963999715899 4.069428456744444e-05 0.0005327433729266783 1.4392658987771143e-06 0.015062963999715899 4.069428456744444e-05 0.0191672913051811 7.914273740189417e-05']
['59866.28563449358 0.03429146288177428 6.794042972844296e-05 0.015032720333771237 4.06740821285188e-05 0.0005316737220528309 1.4385513836621083e-06 0.015032720333771236 4.06740821285188e-05 0.019258742548003045 7.918511822737268e-05']
['59866.28566603154 0.034197810893919524 6.78472581599112e-05 0.01500540778561923 4.065447205948343e-05 0.0005307077382646471 1.437857819346252e-06 0.01500540778561923 4.065447205948343e-05 0.019192403108300296 7.909511071016308e-05']
['59866.2856975695 0.034179719532532994 6.787624879081221e-05 0.014932541739236437 4.061914712206625e-05 0.0005281306290501171 1.4366084552563952e-06 0.014932541739236438 4.061914712206625e-05 0.019247177793296558 7.91018347627683e-05']
['59866.28572910747 0.03426757697731672 6.791791488435983e-05 0.01506218846785633 4.068334673713451e-05 0.000532715944098017 1.4388790521636643e-06 0.01506218846785633 4.068334673713451e-05 0.01920538850946039 7.917056185207392e-05']
['59866.28576064543 0.03433094683231841 6.79751281689453e-05 0.015030100824234243 4.065703575627565e-05 0.0005315810758547667 1.4379484915722676e-06 0.015030100824234244 4.065703575627565e-05 0.019300846008084165 7.920613995184728e-05']
['59866.28579218339 0.03441131335436376 6.805126988899946e-05 0.015014962179648676 4.066408844056817e-05 0.0005310456558286547 1.4381979292538726e-06 0.015014962179648678 4.066408844056817e-05 0.019396351174715082 7.927511224973317e-05']
['59866.28582372135 0.034372945697804524 6.800417675214066e-05 0.01502700669376678 4.0672245698912604e-05 0.0005314716433751071 1.4384864332511157e-06 0.01502700669376678 4.0672245698912604e-05 0.019345939004037745 7.923887698553724e-05']
['59866.28585525932 0.034337985719100156 6.797997167365024e-05 0.015050984133214344 4.067471658194002e-05 0.0005323196718219442 1.438573822861697e-06 0.015050984133214344 4.067471658194002e-05 0.01928700158588581 7.921937337401399e-05']
['59866.28588679728 0.03434029663108615 6.799012609360742e-05 0.015021707462920532 4.0660315447932024e-05 0.0005312842214231594 1.4380644869364743e-06 0.015021707462920534 4.0660315447932024e-05 0.019318589168165614 7.922069488807818e-05']
['59866.28591833524 0.03418481641961458 6.78612270222139e-05 0.01496622462689176 4.0639878024090515e-05 0.0005293219175096623 1.4373416609301543e-06 0.01496622462689176 4.0639878024090515e-05 0.019218591792722818 7.909959430220492e-05']
['59866.28594987321 0.034233836088054095 6.790358832360368e-05 0.014978592369092695 4.064911526571058e-05 0.0005297593369110324 1.437668361522236e-06 0.014978592369092695 4.064911526571058e-05 0.019255243718961403 7.914068409551734e-05']
['59866.28598141117 0.034269684815259535 6.792240919058268e-05 0.014992145172959718 4.064714172867e-05 0.0005302386692950749 1.4375985619277062e-06 0.014992145172959716 4.064714172867e-05 0.01927753964229982 7.915581975422613e-05']
['59866.28601294913 0.03427737239445502 6.795247429728628e-05 0.015061421889627042 4.069683184411485e-05 0.0005326888319392486 1.4393559902601185e-06 0.015061421889627042 4.069683184411485e-05 0.019215950504827974 7.920713910545887e-05']
['59866.2860444871 0.03422486451820254 6.789626231615765e-05 0.015048661263166067 4.0676992546225996e-05 0.0005322375170996456 1.438654318632011e-06 0.015048661263166067 4.0676992546225996e-05 0.01917620325503647 7.91487217781198e-05']
['59866.286076025055 0.03424921965541684 6.79092573369375e-05 0.015045447726306987 4.067573393867888e-05 0.0005321238614827722 1.438609804495892e-06 0.015045447726306988 4.067573393867888e-05 0.019203771929109853 7.915922285813949e-05']
['59866.28610756302 0.034301485386185784 6.79858074193656e-05 0.014924720107457903 4.061199326568214e-05 0.0005278539954144286 1.4363554393440173e-06 0.014924720107457904 4.061199326568214e-05 0.019376765278727878 7.919219663246423e-05']
['59866.28613910099 0.034042330748307786 6.77782955458768e-05 0.014957932129027927 4.062127895978086e-05 0.0005290286303928606 1.4366838535919843e-06 0.014957932129027927 4.062127895978086e-05 0.01908439861927986 7.901889426860235e-05']
['59866.286170638945 0.0342579561448808 6.7931777281377e-05 0.01501317484467359 4.063915455636932e-05 0.0005309824417850445 1.4373160734937107e-06 0.01501317484467359 4.063915455636932e-05 0.01924478130020721 7.91597577539439e-05']
['59866.28620217691 0.03425497800555058 6.788409514611343e-05 0.015000295320298767 4.065615055461019e-05 0.0005305269217919499 1.43791718396767e-06 0.015000295320298767 4.065615055461019e-05 0.019254682685251812 7.912757390269028e-05']
['59866.286233714876 0.034350225869457324 6.798102728266357e-05 0.014990406988088036 4.065897622729658e-05 0.0005301771935807782 1.4380171216955807e-06 0.014990406988088038 4.065897622729658e-05 0.019359818881369284 7.921219867077367e-05']
['59866.286265252835 0.03428052407572158 6.79495814294616e-05 0.015020735126240255 4.0660325280462085e-05 0.0005312498320478225 1.4380648346910882e-06 0.015020735126240255 4.0660325280462085e-05 0.019259788949481327 7.918590574308041e-05']
['59866.2862967908 0.03425004869767936 6.790806323074577e-05 0.015007998664581145 4.065424186029706e-05 0.0005307993718632563 1.4378496777154952e-06 0.015007998664581145 4.065424186029706e-05 0.019242050033098212 7.914715682187513e-05']
['59866.28632832876 0.03429039034519179 6.79429064534409e-05 0.015050797677701287 4.068003150807602e-05 0.0005323130773071509 1.4387617999209663e-06 0.015050797677701287 4.068003150807602e-05 0.0192395926674905 7.919029928494448e-05']
['59866.286359866725 0.03435771172790302 6.802937365599007e-05 0.015089697238757815 4.070375498400937e-05 0.0005336888678463179 1.4396008462458806e-06 0.015089697238757815 4.070375498400937e-05 0.019268014489145207 7.927667595090364e-05']
['59866.28639140469 0.03422004604541381 6.791137118268387e-05 0.015024084994533851 4.0656131528481796e-05 0.0005313683094028519 1.4379165110560294e-06 0.01502408499453385 4.0656131528481796e-05 0.019195961050879957 7.915096567176851e-05']
['59866.28642294265 0.034258449056763944 6.790184954529433e-05 0.015081164056492926 4.0688796911862326e-05 0.0005333870682601487 1.4390718126633635e-06 0.015081164056492926 4.0688796911862326e-05 0.019177285000271018 7.915958164244278e-05']
['59866.286454480614 0.034164529603902816 6.785241263095995e-05 0.014994571053642953 4.0662248766699485e-05 0.0005303244672733167 1.4381328641005661e-06 0.014994571053642951 4.0662248766699485e-05 0.019169958550259866 7.910352946997376e-05']
['59866.28648601857 0.03421505978828314 6.78971236873942e-05 0.015052317529500562 4.069526520815848e-05 0.0005323668310686224 1.439300581847567e-06 0.015052317529500562 4.069526520815848e-05 0.019162742258782575 7.915885304489739e-05']
['59866.28651755654 0.034211120725117304 6.789689561118235e-05 0.01510321215495502 4.0695955457012413e-05 0.0005341668602281529 1.4393249944069152e-06 0.015103212154955019 4.0695955457012413e-05 0.019107908570162285 7.915901227399778e-05']
['59866.286549094504 0.034260301857407964 6.792407535916405e-05 0.015064940583841908 4.06945721549057e-05 0.0005328132802898096 1.439276070102899e-06 0.015064940583841908 4.06945721549057e-05 0.019195361273566056 7.918161539314681e-05']
['59866.28658063246 0.03432010549575621 6.792129201685905e-05 0.015074545155746638 4.068104927779051e-05 0.0005331529725331251 1.4387977961611865e-06 0.015074545155746638 4.068104927779051e-05 0.01924556034000957 7.917227847915873e-05']
['59866.28661217043 0.03425012826809472 6.788873780342069e-05 0.015078247804493516 4.069120170402222e-05 0.0005332839269443692 1.4391568647876648e-06 0.015078247804493516 4.069120170402222e-05 0.0191718804636012 7.914957117166854e-05']
['59866.286643708394 0.0343152582852989 6.795339186791063e-05 0.015091015878282791 4.06913304963092e-05 0.0005337355051793304 1.4391614198830213e-06 0.015091015878282791 4.06913304963092e-05 0.019224242407016104 7.920509986051206e-05']
['59866.28667524635 0.03431721306376354 6.796893132932828e-05 0.014949234317621908 4.063349508586944e-05 0.0005287210082418942 1.4371159106703022e-06 0.014949234317621908 4.063349508586944e-05 0.019367978746141636 7.91887400388737e-05']
['59866.28670678432 0.03428219504746374 6.793310600682138e-05 0.015003221679989426 4.066849826254848e-05 0.0005306304205941794 1.438353894801944e-06 0.015003221679989425 4.066849826254848e-05 0.01927897336747432 7.917596631974213e-05']
['59866.28673832228 0.03420814165315013 6.787136882986606e-05 0.015075765718466187 4.0674026764652476e-05 0.0005331961411087183 1.4385494255658874e-06 0.015075765718466186 4.0674026764652476e-05 0.01913237593468394 7.912584381914281e-05']
['59866.28676986024 0.03428728142886023 6.791497694263368e-05 0.014981844389512741 4.063919369494796e-05 0.0005298743536054515 1.4373174577377677e-06 0.014981844389512741 4.063919369494796e-05 0.019305437039347485 7.914536093349985e-05']
['59866.28680139821 0.03422636494032014 6.788729433196625e-05 0.01504732741027229 4.068406989554549e-05 0.0005321903417037784 1.4389046286604968e-06 0.015047327410272288 4.068406989554549e-05 0.019179037530047856 7.91446667500764e-05']
['59866.286832936166 0.03423335939274106 6.790250975676528e-05 0.014991401046577124 4.0670041397242766e-05 0.0005302123512079472 1.438408472027378e-06 0.014991401046577124 4.0670041397242766e-05 0.019241958346163934 7.915050914884278e-05']
['59866.28686447413 0.03422997616070616 6.790374560995796e-05 0.014987690701585498 4.064314913656902e-05 0.0005300811245977264 1.4374573528680128e-06 0.014987690701585498 4.064314913656902e-05 0.019242285459120663 7.913775483041754e-05']
['59866.2868960121 0.034244630988570175 6.790794305540681e-05 0.015004710745590207 4.0659907954016033e-05 0.0005306830855166133 1.438050074787361e-06 0.015004710745590207 4.0659907954016033e-05 0.01923992024297997 7.914996427570533e-05']
['59866.286927550056 0.0342594009209921 6.792827301654304e-05 0.015009975783852787 4.065092164567835e-05 0.0005308692981532927 1.437732249144674e-06 0.015009975783852787 4.065092164567835e-05 0.01924942513713931 7.916279243213373e-05']
['59866.28695908802 0.03427201283066558 6.796020272835775e-05 0.015030544642548304 4.067298657921021e-05 0.0005315967727166595 1.438512636531472e-06 0.015030544642548304 4.067298657921021e-05 0.019241468188117276 7.920152140048888e-05']
['59866.28699062598 0.03431382838080454 6.794803937515562e-05 0.01508264956008899 4.0679452259042887e-05 0.0005334396072024364 1.4387413131772098e-06 0.01508264956008899 4.0679452259042887e-05 0.019231178820715546 7.91944056800949e-05']
['59866.287022163946 0.03420581837651949 6.790478468093213e-05 0.014973166705856075 4.0629666982504336e-05 0.0005295674433279968 1.436980519209586e-06 0.014973166705856075 4.0629666982504336e-05 0.019232651670663414 7.913172323204493e-05']
['59866.28705370191 0.03435612462301071 6.800727567133495e-05 0.015025857450476484 4.064671866757733e-05 0.000531430997208337 1.4375835992023444e-06 0.015025857450476484 4.064671866757733e-05 0.01933026717253422 7.922843733583369e-05']
['59866.28708523987 0.034232363217806545 6.79194313075805e-05 0.015027924580778812 4.0653977966989785e-05 0.000531504106987366 1.4378403443989837e-06 0.015027924580778814 4.0653977966989785e-05 0.019204438637027733 7.915677528604634e-05']
['59866.287116777836 0.03425038924746668 6.79331189944883e-05 0.015048010608935321 4.067291147799142e-05 0.0005322145049136308 1.4385099803692046e-06 0.015048010608935323 4.067291147799142e-05 0.019202378638531355 7.917824438831561e-05']
['59866.2871483158 0.034239435250538255 6.788775538135348e-05 0.014978404528137578 4.063821694318317e-05 0.0005297526933962497 1.4372829122107588e-06 0.014978404528137578 4.063821694318317e-05 0.01926103072240068 7.912150154692281e-05']
['59866.28717985376 0.03425686580552351 6.791666389868748e-05 0.015036044250375346 4.0694203521589854e-05 0.0005317912815546019 1.4392630323663645e-06 0.015036044250375347 4.0694203521589854e-05 0.019220821555148166 7.917506826889293e-05']
['59866.287211391726 0.034172359081695886 6.787343129898041e-05 0.014997059006935291 4.0634973443611394e-05 0.0005304124606210184 1.4371681968797e-06 0.014997059006935291 4.0634973443611394e-05 0.019175300074760593 7.910754542431726e-05']
['59866.287242929684 0.03427207602558765 6.790615736700487e-05 0.015078711042694157 4.069534649617032e-05 0.0005333003106442495 1.4393034568228777e-06 0.015078711042694159 4.069534649617032e-05 0.01919336498289349 7.916664344782967e-05']
['59866.28727446765 0.03428298898992744 6.794956101565636e-05 0.015070295969802553 4.068842714415567e-05 0.0005330026883226545 1.4390587348059613e-06 0.015070295969802553 4.068842714415567e-05 0.019212693020124884 7.920032162615042e-05']
['59866.287306005615 0.03419232376882406 6.783779070273967e-05 0.014959694970133166 4.0623985016232514e-05 0.0005290909781430348 1.4367795607609989e-06 0.014959694970133166 4.0623985016232514e-05 0.019232628798690893 7.907132227317182e-05']
['59866.287337543574 0.03427574839557022 6.791734425888524e-05 0.0149894685590725 4.06401912052557e-05 0.000530144003443764 1.4373527374480482e-06 0.014989468559072499 4.06401912052557e-05 0.019286279836497718 7.914790453562036e-05']
['59866.28736908154 0.034184561685703586 6.785618874311938e-05 0.015089637857124088 4.0710457064139264e-05 0.000533686767650643 1.4398378838418074e-06 0.015089637857124086 4.0710457064139264e-05 0.0190949238285795 7.913155922331474e-05']
['59866.287400619505 0.03423573206380051 6.790258831421706e-05 0.015019363413033223 4.065884541801e-05 0.0005312013176172884 1.4380124952634558e-06 0.015019363413033225 4.065884541801e-05 0.019216368650767285 7.914482428115992e-05']
['59866.28743215746 0.03431487985448346 6.798366507829811e-05 0.015026721795417383 4.067517866584184e-05 0.0005314615671571994 1.4385901657366075e-06 0.015026721795417383 4.067517866584184e-05 0.019288158059066078 7.922278003817062e-05']
['59866.28746369543 0.03423518054083286 6.789248467095118e-05 0.014994137786931715 4.065551807183415e-05 0.0005303091435980344 1.437894814465397e-06 0.014994137786931715 4.065551807183415e-05 0.019241042753901146 7.913444651025603e-05']
['59866.28749523339 0.034245207143694605 6.789710823733624e-05 0.015048816269160388 4.06681836217562e-05 0.0005322429993152467 1.4383427666603018e-06 0.015048816269160386 4.06681836217562e-05 0.019196390874534217 7.914492065878537e-05']
['59866.28752677135 0.03437327690189278 6.801025590124172e-05 0.015142950913443599 4.073642574389933e-05 0.0005355723313049957 1.4407563380083372e-06 0.015142950913443599 4.073642574389933e-05 0.019230325988449176 7.927705399509121e-05']
['59866.28755830932 0.034172337030242264 6.783943884389387e-05 0.015007178202914199 4.066340035474082e-05 0.0005307703539677203 1.4381735931959404e-06 0.015007178202914199 4.066340035474082e-05 0.019165158827328065 7.90929933120776e-05']
['59866.28758984728 0.034268715613894 6.791203150137416e-05 0.015013585605856333 4.067125787859712e-05 0.0005309969694900808 1.4384514962542055e-06 0.015013585605856333 4.067125787859712e-05 0.01925513000803767 7.915930292815232e-05']
['59866.28762138524 0.03419654962218506 6.787941156578952e-05 0.014997534602351516 4.0650177378593095e-05 0.0005304292813679971 1.437705926081208e-06 0.014997534602351516 4.0650177378593095e-05 0.019199015019833544 7.912048682502479e-05']
['59866.28765292321 0.034330742363537496 6.798906049742623e-05 0.015047098463295192 4.0668455235803065e-05 0.000532182244360865 1.4383523730421179e-06 0.015047098463295192 4.0668455235803065e-05 0.019283643900242304 7.922395848851029e-05']
['59866.28768446117 0.034169345020593045 6.78614698338534e-05 0.014961667336937422 4.062537848658856e-05 0.0005291607363489211 1.4368288446932691e-06 0.014961667336937422 4.062537848658856e-05 0.019207677683655625 7.909235402483333e-05']
['59866.28771599913 0.03430006828289751 6.794321987362926e-05 0.015032257808176798 4.067565770594031e-05 0.0005316573635562395 1.4386071083142986e-06 0.015032257808176798 4.067565770594031e-05 0.01926781047472071 7.918832146602901e-05']
['59866.28774753709 0.03422173265246381 6.787955894297908e-05 0.015053431694127099 4.0693139153898716e-05 0.0005324062365814516 1.4392253880598508e-06 0.0150534316941271 4.0693139153898716e-05 0.019168300958336708 7.914269452382788e-05']
['59866.28777907506 0.03421182222917789 6.788192378104322e-05 0.015000469017693736 4.0673470580642746e-05 0.0005305330650806191 1.4385297545804613e-06 0.015000469017693736 4.0673470580642746e-05 0.01921135321148415 7.913461180349451e-05']
['59866.28781061302 0.034229694364322626 6.78993273982046e-05 0.015075401126928407 4.067814941799741e-05 0.0005331832463208412 1.4386952346011096e-06 0.015075401126928407 4.067814941799741e-05 0.019154293237394218 7.915194565644928e-05']
['59866.28784215098 0.03435583759119321 6.797475099479334e-05 0.015050625027487025 4.0682692861738375e-05 0.000532306971054923 1.4388559260522284e-06 0.015050625027487026 4.0682692861738375e-05 0.019305212563706188 7.92189893351758e-05']
['59866.28787368895 0.03427692482123518 6.793194570555766e-05 0.015025476188178065 4.0668199322795476e-05 0.000531417512812913 1.4383433219709712e-06 0.015025476188178065 4.0668199322795476e-05 0.01925144863305711 7.917481723061605e-05']
['59866.28790522691 0.03424750237340506 6.790696021060971e-05 0.015071319922284053 4.0701405722521086e-05 0.000533038903233526 1.4395177581173304e-06 0.015071319922284051 4.0701405722521086e-05 0.019176182451121012 7.917044696624241e-05']
['59866.28793676487 0.034356862555635186 6.799371409688656e-05 0.01505158904660547 4.068580672966514e-05 0.0005323410662566864 1.438966056601713e-06 0.01505158904660547 4.068580672966514e-05 0.019305273509029715 7.92368602730624e-05']
['59866.28796830284 0.034267141683740183 6.794745917841237e-05 0.015059153210994899 4.068199662294372e-05 0.000532608593846228 1.4388313016420635e-06 0.015059153210994897 4.068199662294372e-05 0.019207988472745286 7.919521486826851e-05']
['59866.287999840795 0.03423520577321463 6.791428372136461e-05 0.014981562728455524 4.0648476455536965e-05 0.0005298643918833332 1.437645768234052e-06 0.014981562728455525 4.0648476455536965e-05 0.019253643044759104 7.914953298372868e-05']
['59866.28803137876 0.03417524277128283 6.783736122858156e-05 0.01502742105901386 4.067145227808561e-05 0.0005314862985478446 1.4384583717296561e-06 0.01502742105901386 4.067145227808561e-05 0.01914782171226897 7.909535137329915e-05']
['59866.28806291673 0.03426087983548153 6.792988664543643e-05 0.015046925678634136 4.0669493325360454e-05 0.0005321761333535543 1.438389087949769e-06 0.015046925678634134 4.0669493325360454e-05 0.019213954156847398 7.917371525325423e-05']
['59866.288094454685 0.03419851082406036 6.78766113852656e-05 0.015015217678545013 4.066388859595757e-05 0.0005310546922536116 1.438190861196622e-06 0.015015217678545013 4.066388859595757e-05 0.01918329314551535 7.912513007187298e-05']
['59866.28812599265 0.034314207661018975 6.797104806011153e-05 0.015043587660965788 4.066671900481294e-05 0.0005320580751286553 1.438290966432245e-06 0.015043587660965788 4.066671900481294e-05 0.01927062000005319 7.9207609539781e-05']
['59866.28815753062 0.03423578811385729 6.789431027924526e-05 0.014982415935737757 4.064977612444867e-05 0.0005298945679180997 1.4376917346188697e-06 0.014982415935737759 4.064977612444867e-05 0.01925337217811953 7.913306304739016e-05']
['59866.288189068575 0.03416443656824903 6.787443776476215e-05 0.015046410854210789 4.0683227982562926e-05 0.0005321579251642654 1.4388748520798682e-06 0.015046410854210789 4.0683227982562926e-05 0.019118025714038242 7.913320631039641e-05']
['59866.28822060654 0.03419534204375468 6.790926549655431e-05 0.01508027089537013 4.069269764363989e-05 0.000533355479147333 1.4392097728287133e-06 0.01508027089537013 4.069269764363989e-05 0.019115071148384545 7.916794794484821e-05']
['59866.2882521445 0.03433193923117355 6.800641967414046e-05 0.015036715471454043 4.067107142715057e-05 0.0005318150211440645 1.4384449018832353e-06 0.015036715471454042 4.067107142715057e-05 0.01929522375971951 7.924019919162055e-05']
['59866.288283682465 0.03427486684082495 6.793956976296131e-05 0.015076054662331563 4.068756327251395e-05 0.0005332063604074852 1.439028181596633e-06 0.015076054662331561 4.068756327251395e-05 0.01919881217849339 7.919130599144778e-05']
['59866.28831522043 0.03428580346656468 6.793152690691973e-05 0.015009198026552992 4.0673216202318786e-05 0.0005308417906157843 1.4385207577876448e-06 0.015009198026552992 4.0673216202318786e-05 0.01927660544001169 7.917703495424748e-05']
['59866.28834675839 0.034233223979023474 6.788114060700184e-05 0.01496191580549486 4.0640382804687414e-05 0.0005291695241265031 1.4373595138917482e-06 0.01496191580549486 4.0640382804687414e-05 0.019271308173528616 7.911693854427815e-05']
['59866.288378296354 0.03427897116183265 6.792115768258567e-05 0.01508343928463027 4.068052593687774e-05 0.0005334675379945309 1.4387792867626997e-06 0.01508343928463027 4.068052593687774e-05 0.019195531877202382 7.917189432774518e-05']
['59866.28840983432 0.03420330468441564 6.787238823031808e-05 0.015029958629839206 4.0678255204279414e-05 0.0005315760467568 1.4386989760254857e-06 0.015029958629839205 4.0678255204279414e-05 0.019173346054576434 7.912889188249451e-05']
['59866.28844137228 0.034247068862236045 6.789521728953969e-05 0.015144075555275277 4.072010783799611e-05 0.0005356121073731556 1.440179210144914e-06 0.015144075555275277 4.072010783799611e-05 0.019102993306960768 7.916999250430582e-05']
['59866.288472910244 0.03428870720754794 6.797703228599716e-05 0.015023693676711612 4.0668841908611414e-05 0.0005313544693660232 1.4383660487951862e-06 0.015023693676711612 4.0668841908611414e-05 0.019265013530836327 7.921383478029029e-05']
['59866.2885044482 0.034256788782300485 6.79561561904386e-05 0.015027561066803617 4.06745441562176e-05 0.0005314912503104692 1.4385677245492436e-06 0.015027561066803615 4.06745441562176e-05 0.01922922771549687 7.919884914880635e-05']
['59866.28853598617 0.03429364297031087 6.795646340669797e-05 0.015069818008234028 4.0689351931403205e-05 0.000532985783890157 1.4390914424641287e-06 0.01506981800823403 4.0689351931403205e-05 0.019223824962076842 7.920671865027275e-05']
['59866.288567524134 0.034276184072870065 6.794152472514e-05 0.015050246819231687 4.069581182460873e-05 0.0005322935946741774 1.4393199144497963e-06 0.01505024681923169 4.069581182460873e-05 0.019225937253638376 7.919722142878986e-05']
['59866.28859906209 0.034317494846107265 6.795618003929635e-05 0.015031541655871979 4.066342267891071e-05 0.0005316320348497242 1.438174382751938e-06 0.015031541655871979 4.066342267891071e-05 0.019285953190235287 7.919315847658186e-05']
['59866.28863060006 0.034189014566225355 6.786802156872312e-05 0.015027286866553708 4.067297772025778e-05 0.0005314815524604314 1.4385123232101232e-06 0.015027286866553706 4.067297772025778e-05 0.01916172769967165 7.912243340725342e-05']
['59866.288662138024 0.03425507406091071 6.792310401640807e-05 0.015000096619281596 4.0645371037053405e-05 0.0005305198941810431 1.4375359365224903e-06 0.015000096619281596 4.0645371037053405e-05 0.019254977441629115 7.915550673177154e-05']
['59866.28869367598 0.034205396395550494 6.788835095754473e-05 0.014970439796743435 4.0620578254178475e-05 0.000529470998646966 1.4366590712008127e-06 0.014970439796743437 4.0620578254178475e-05 0.019234956598807057 7.911295452350773e-05']
['59866.28872521395 0.0342431185592218 6.79126240394615e-05 0.015019956137580918 4.06726886882858e-05 0.000531222280959879 1.4385021007952228e-06 0.01501995613758092 4.06726886882858e-05 0.019223162421640877 7.916054641713545e-05']
['59866.28875675191 0.03431892708947487 6.79517962147171e-05 0.015078194174636336 4.070615282923061e-05 0.0005332820301761764 1.439685652672487e-06 0.015078194174636335 4.070615282923061e-05 0.019240732914838535 7.921134695839428e-05']
['59866.28878828987 0.03429262652867796 6.795454626081208e-05 0.015035044017171553 4.067734807315202e-05 0.0005317559055415733 1.4386668928248285e-06 0.015035044017171553 4.067734807315202e-05 0.01925758251150641 7.919890784459854e-05']
['59866.28881982784 0.03436747382139491 6.798112897238137e-05 0.014934898426592002 4.0612695347452554e-05 0.0005282139798149972 1.4363802704071765e-06 0.014934898426592002 4.0612695347452554e-05 0.019432575394802913 7.918854033093768e-05']
['59866.288851365796 0.034300479396372825 6.791838272376336e-05 0.015003507402369515 4.0660276880598114e-05 0.0005306405259562113 1.4380631228960667e-06 0.015003507402369515 4.0660276880598114e-05 0.01929697199400331 7.915911083266725e-05']
['59866.28888290376 0.034266370573187564 6.795020212520973e-05 0.015120391747869938 4.07200872775141e-05 0.0005347744640354231 1.440178482966615e-06 0.015120391747869937 4.07200872775141e-05 0.019145978825317628 7.921714130631844e-05']
['59866.28891444173 0.034218337663862 6.786086440245341e-05 0.015071761137901896 4.068543968036761e-05 0.0005330545080438702 1.4389530748883662e-06 0.015071761137901896 4.068543968036761e-05 0.019146576525960107 7.912270166919858e-05']
['59866.288945979686 0.03428441557743086 6.794388591568106e-05 0.015018000790976161 4.066084216615166e-05 0.0005311531247204111 1.438083115782757e-06 0.01501800079097616 4.066084216615166e-05 0.0192664147864547 7.918128389325207e-05']
['59866.28897751765 0.034218817124846784 6.787529670783802e-05 0.015086196462560682 4.071371165642682e-05 0.0005335650532159996 1.4399529914974324e-06 0.015086196462560682 4.071371165642682e-05 0.019132620662286104 7.914961920325145e-05']
['59866.28900905561 0.03433478228909504 6.79780921713879e-05 0.015040770473626794 4.0671198646587465e-05 0.0005319584375085183 1.4384494013503998e-06 0.015040770473626794 4.0671198646587465e-05 0.01929401181546825 7.921595429338643e-05']
['59866.289040593576 0.034205268111149885 6.788454114454433e-05 0.01495490313783856 4.062429512046748e-05 0.0005289215017438896 1.4367905284547475e-06 0.01495490313783856 4.062429512046748e-05 0.019250364973311326 7.911159384338157e-05']
['59866.28907213154 0.03434847443813421 6.796254811508748e-05 0.015074074241113943 4.0699923067149766e-05 0.0005331363173349989 1.4394653199103866e-06 0.015074074241113943 4.0699923067149766e-05 0.019274400197020272 7.921736983747625e-05']
['59866.2891036695 0.03427885227601091 6.795734631487404e-05 0.015042014448880103 4.065604527024689e-05 0.0005320024341331067 1.4379134602950368e-06 0.015042014448880103 4.065604527024689e-05 0.019236837827130805 7.919037148022536e-05']
['59866.289135207466 0.03432059087484839 6.799298443954543e-05 0.015028894605798773 4.066952883619157e-05 0.0005315384146044437 1.4383903438885033e-06 0.015028894605798773 4.066952883619157e-05 0.01929169626904962 7.922787709357158e-05']
['59866.28916674543 0.03416854292531177 6.785472260818022e-05 0.014981502469751955 4.064388917916914e-05 0.0005298622606676582 1.4374835265208812e-06 0.014981502469751955 4.064388917916914e-05 0.019187040455559815 7.90960751734349e-05']
['59866.28919828339 0.03429818526987428 6.796242467835905e-05 0.014945141242470272 4.0624615813193756e-05 0.0005285762453212654 1.4368018706397697e-06 0.014945141242470272 4.0624615813193756e-05 0.019353044027404006 7.91785992433007e-05']
['59866.289229821356 0.03416679895628954 6.785824990845383e-05 0.01500964608240659 4.0672470351597446e-05 0.0005308576373499801 1.4384943787145094e-06 0.015009646082406588 4.0672470351597446e-05 0.01915715287388295 7.911379099208777e-05']
['59866.289261359314 0.03415669008921246 6.787171285387643e-05 0.014960389044497627 4.061099422653754e-05 0.000529115526002141 1.4363201055621939e-06 0.014960389044497627 4.061099422653754e-05 0.019196301044714835 7.90937561238997e-05']
['59866.28929289728 0.03420954728288163 6.784952037764314e-05 0.015063058149556587 4.0671692162359584e-05 0.0005327467027961308 1.4384668559003168e-06 0.015063058149556585 4.0671692162359584e-05 0.01914648913332504 7.91059034385295e-05']
['59866.289324435245 0.034202058669081735 6.788873570566651e-05 0.015020399384723486 4.067744023238362e-05 0.0005312379576207125 1.4386701522908864e-06 0.015020399384723486 4.067744023238362e-05 0.01918165928435825 7.914249540905935e-05']
['59866.289355973204 0.034217385708833814 6.788796021864488e-05 0.015123447115802867 4.0706676453454205e-05 0.0005348825255708653 1.4397041720910444e-06 0.015123447115802867 4.0706676453454205e-05 0.01909393859303095 7.915686104523419e-05']
['59866.28938751117 0.03425391478851468 6.792439187074718e-05 0.015037735951951597 4.067284927813572e-05 0.0005318511132586234 1.4385077804993172e-06 0.015037735951951597 4.067284927813572e-05 0.019216178836563083 7.917072488876662e-05']
['59866.289419049135 0.03420959174230703 6.788051712941674e-05 0.01499198414228451 4.064961745295735e-05 0.0005302329739999752 1.4376861227628318e-06 0.01499198414228451 4.064961745295735e-05 0.019217607600022522 7.912114764605488e-05']
['59866.28945058709 0.03426757546655349 6.792573543612268e-05 0.015055304685285957 4.070166153693711e-05 0.0005324724800928515 1.4395268057015136e-06 0.015055304685285957 4.070166153693711e-05 0.019212270781267533 7.918668313804739e-05']
['59866.28948212506 0.03439944524136545 6.802881211412936e-05 0.015022465697336475 4.067232596285809e-05 0.000531311038479897 1.4384892720074881e-06 0.015022465697336475 4.067232596285809e-05 0.019376979544028974 7.92600616760326e-05']
['59866.28951366302 0.034337519867703094 6.796379051714067e-05 0.015016813430164035 4.065555633074618e-05 0.0005311111304220815 1.437896167597612e-06 0.015016813430164035 4.065555633074618e-05 0.01932070643753906 7.919565065090542e-05']
['59866.28954520098 0.034235349655152236 6.790566539715138e-05 0.015031921864981762 4.066886889903119e-05 0.0005316454819962199 1.4383670033860136e-06 0.015031921864981762 4.066886889903119e-05 0.019203427790170473 7.91526139211869e-05']
['59866.28957673895 0.03426438913983707 6.793799972335496e-05 0.015065519131069422 4.0702743621468206e-05 0.0005328337422122699 1.4395650766130618e-06 0.015065519131069422 4.0702743621468206e-05 0.01919887000876765 7.919775972037056e-05']
['59866.28960827691 0.03435878931132903 6.80111433481633e-05 0.014984674703767261 4.064852837901996e-05 0.0005299744554952538 1.4376476046516033e-06 0.014984674703767261 4.064852837901996e-05 0.01937411460756177 7.923268567267179e-05']
['59866.28963981487 0.0342621579895527 6.793585643318552e-05 0.014973803423527578 4.063558969819127e-05 0.0005295899626090577 1.4371899924269424e-06 0.01497380342352758 4.063558969819127e-05 0.019288354566025116 7.916142835642964e-05']
['59866.28967135284 0.0342930979032438 6.794791670236753e-05 0.015103550869320612 4.071786728467558e-05 0.0005341788397982819 1.4400999667813086e-06 0.015103550869320612 4.071786728467558e-05 0.01918954703392319 7.921403979348818e-05']
['59866.2897028908 0.03436297613955609 6.799420942144492e-05 0.015040855579075937 4.066336278479228e-05 0.000531961447498055 1.4381722644308245e-06 0.015040855579075937 4.066336278479228e-05 0.019322120560480154 7.922576340948025e-05']
['59866.28973442876 0.03425962394067175 6.793524069345888e-05 0.015008673284850681 4.066782465721564e-05 0.0005308232316745022 1.4383300708867407e-06 0.01500867328485068 4.066782465721564e-05 0.019250950655821074 7.917745190663961e-05']
['59866.28976596672 0.03422288873708463 6.790674212024393e-05 0.015012917436759506 4.066025059148349e-05 0.0005309733378423961 1.4380621931088353e-06 0.015012917436759506 4.066025059148349e-05 0.019209971300325125 7.914910993528319e-05']
['59866.28979750469 0.03435457444279092 6.797461104803923e-05 0.015064566399848555 4.067909674388006e-05 0.0005328000462382168 1.4387287394004302e-06 0.015064566399848555 4.067909674388006e-05 0.019290008042942366 7.921702253322938e-05']
['59866.28982904265 0.03431797989580131 6.795301220905421e-05 0.015098041219097457 4.071247702938897e-05 0.0005339839757832325 1.4399093254983328e-06 0.015098041219097458 4.071247702938897e-05 0.019219938676703848 7.921564021171825e-05']
['59866.28986058061 0.03445831253499745 6.812947470574465e-05 0.015043227892389694 4.0668089368823896e-05 0.0005320453509181543 1.4383394331447292e-06 0.015043227892389694 4.0668089368823896e-05 0.01941508464260775 7.934430550828048e-05']
['59866.28989211858 0.03432323891883346 6.796141831175987e-05 0.015000866200834021 4.0653070435436684e-05 0.0005305471125606389 1.437808247036164e-06 0.015000866200834021 4.0653070435436684e-05 0.01932237271799944 7.919233873787657e-05']
['59866.28992365654 0.034268362257727766 6.791654777480355e-05 0.015077140906869768 4.069396838212958e-05 0.0005332447784491878 1.4392547160091604e-06 0.015077140906869768 4.069396838212958e-05 0.019191221350857997 7.917484780113527e-05']
['59866.2899551945 0.03431970299091216 6.79557435411265e-05 0.015070632145315186 4.069050457521888e-05 0.0005330145780992283 1.4391322088998817e-06 0.015070632145315187 4.069050457521888e-05 0.01924907084559697 7.920669316928505e-05']
['59866.28998673247 0.03427845737900492 6.793104021895792e-05 0.015069639941535984 4.069041673022413e-05 0.0005329794860690028 1.4391291020187396e-06 0.015069639941535984 4.069041673022413e-05 0.01920881743746894 7.918545471807928e-05']
['59866.290018270425 0.034217673545498775 6.791006245471347e-05 0.015087392252393597 4.070255996984677e-05 0.0005336073456299568 1.4395585812656487e-06 0.015087392252393597 4.070255996984677e-05 0.019130281293105178 7.917370125680658e-05']
['59866.29004980839 0.03425330714253117 6.792015614290165e-05 0.015032925999752086 4.0665175717412264e-05 0.0005316809959989372 1.4382363838059273e-06 0.015032925999752087 4.0665175717412264e-05 0.019220381142779082 7.916314879161994e-05']
['59866.29008134636 0.034224371608006635 6.789903581291689e-05 0.01500517238447145 4.066017617062329e-05 0.0005306994126521407 1.438059561009331e-06 0.01500517238447145 4.066017617062329e-05 0.019219199223535183 7.914246009917743e-05']
['59866.290112884315 0.0341512898176357 6.78537463079868e-05 0.014993135366081402 4.0649517176892556e-05 0.0005302736902128376 1.4376825762225237e-06 0.014993135366081402 4.0649517176892556e-05 0.019158154451554294 7.909812978031222e-05']
['59866.29014442228 0.034315004169682015 6.795175438407122e-05 0.014962771790869732 4.063064469446166e-05 0.0005291997984161976 1.4370150986964588e-06 0.014962771790869732 4.063064469446166e-05 0.019352232378812284 7.917253445583719e-05']
['59866.29017596025 0.03419209336410364 6.786795577646556e-05 0.01498218785865419 4.0647671084372126e-05 0.0005298865013413762 1.4376172840558502e-06 0.01498218785865419 4.0647671084372126e-05 0.019209905505449452 7.910937103693587e-05']
['59866.290207498205 0.03424054956696532 6.791523704361004e-05 0.014991590803287826 4.065900727882487e-05 0.0005302190624787234 1.4380182199187402e-06 0.014991590803287826 4.065900727882487e-05 0.019248958763677493 7.915575971203407e-05']
['59866.29023903617 0.034107712977582735 6.783551216326643e-05 0.015051475839318495 4.069767645475026e-05 0.0005323370623679495 1.4393858622506992e-06 0.015051475839318495 4.069767645475026e-05 0.01905623713826424 7.910725364508745e-05']
['59866.29027057413 0.03428633625328271 6.794829855089098e-05 0.014978885669090107 4.0642444554618366e-05 0.0005297697102764539 1.437432433379066e-06 0.014978885669090105 4.0642444554618366e-05 0.0193074505841926 7.91756248812489e-05']
['59866.290302112095 0.034283435117387816 6.792600079867731e-05 0.015023356922172867 4.067108921683634e-05 0.0005313425591105899 1.4384455310646637e-06 0.015023356922172867 4.067108921683634e-05 0.01926007819521495 7.917120109348963e-05']
['59866.29033365006 0.03441500722397925 6.802763446261892e-05 0.0150694197880628 4.068651640184905e-05 0.0005329716997326703 1.4389911561208337e-06 0.015069419788062798 4.068651640184905e-05 0.019345587435916453 7.926633375839726e-05']
['59866.29036518802 0.03426244747012439 6.792578755078724e-05 0.01502341979269303 4.066779879161184e-05 0.0005313447827003807 1.4383291560781404e-06 0.01502341979269303 4.066779879161184e-05 0.01923902767743136 7.916932785460356e-05']
['59866.290396725984 0.03423245642696745 6.786801644872576e-05 0.015070789707410817 4.068445327796586e-05 0.0005330201507184201 1.438918188039896e-06 0.015070789707410815 4.068445327796586e-05 0.019161666719556634 7.912832865170031e-05']
['59866.29042826395 0.034209251436968645 6.788850582436176e-05 0.015041219305711537 4.068883679143634e-05 0.000531974311696275 1.4390732231147707e-06 0.015041219305711537 4.068883679143634e-05 0.019168032131257107 7.914815640622683e-05']
['59866.29045980191 0.03420722104416924 6.788629144540386e-05 0.014983842531183046 4.0649771342267026e-05 0.0005299450234107464 1.4376915654837926e-06 0.014983842531183046 4.0649771342267026e-05 0.019223378512986194 7.912618072666534e-05']
['59866.290491339874 0.034316704771415844 6.798411485506692e-05 0.01500056583262346 4.0652584381079636e-05 0.0005305364892083148 1.4377910563798229e-06 0.01500056583262346 4.0652584381079636e-05 0.019316138938792384 7.921156790196575e-05']
['59866.29052287783 0.03422491043748579 6.789689374267929e-05 0.015035801989351744 4.068417371453136e-05 0.0005317827133236186 1.4389083005060051e-06 0.015035801989351743 4.068417371453136e-05 0.019189108448134047 7.915295427675991e-05']
['59866.2905544158 0.03425716876617835 6.795234488230398e-05 0.015057781466157197 4.0685921745282823e-05 0.0005325600782969878 1.4389701244470656e-06 0.015057781466157195 4.0685921745282823e-05 0.019199387300021152 7.920142298763868e-05']
['59866.290585953764 0.034336727948584035 6.797188968900251e-05 0.01503615434571606 4.066667194126245e-05 0.0005317951753807542 1.438289301899645e-06 0.015036154345716058 4.066667194126245e-05 0.01930057360286798 7.920830761146326e-05']
['59866.29061749172 0.03417663985744134 6.78537232746353e-05 0.015000942730048197 4.0664442246339405e-05 0.0005305498192279116 1.4382104425732918e-06 0.015000942730048199 4.0664442246339405e-05 0.019175697127393143 7.910578123902612e-05']
['59866.29064902969 0.03420246135247054 6.787657808982037e-05 0.015004627631441971 4.066093113578056e-05 0.0005306801459549394 1.4380862624396956e-06 0.015004627631441971 4.066093113578056e-05 0.01919783372102857 7.912358165561119e-05']
['59866.290680567654 0.03412544696131256 6.782077025401282e-05 0.015005510413329115 4.063966889614682e-05 0.0005307113679773863 1.437334264542159e-06 0.015005510413329115 4.063966889614682e-05 0.019119936547983447 7.906478081823811e-05']
['59866.29071210561 0.034311613979462835 6.795422952048124e-05 0.014961045764728708 4.063931237534326e-05 0.000529138752729031 1.4373216551981143e-06 0.014961045764728708 4.063931237534326e-05 0.019350568214734125 7.917910721941093e-05']
['59866.29074364358 0.034311813038503926 6.794696044641736e-05 0.015104625176819366 4.0711093758282825e-05 0.0005342168356535768 1.4398604022907374e-06 0.015104625176819366 4.0711093758282825e-05 0.019207187861684558 7.920973796764322e-05']
['59866.29077518154 0.03418532310973144 6.782055870403591e-05 0.015023251864268656 4.067188893328947e-05 0.0005313388434473085 1.4384738152483497e-06 0.015023251864268655 4.067188893328947e-05 0.019162071245462788 7.908116547149147e-05']
['59866.2908067195 0.034321570440149544 6.795005261951596e-05 0.015117285146748437 4.070655541847115e-05 0.0005346645904966005 1.4396998913541912e-06 0.015117285146748437 4.070655541847115e-05 0.019204285293401107 7.921005810521825e-05']
['59866.29083825747 0.034155880043097865 6.784201848916843e-05 0.01505519196891881 4.0697962734485625e-05 0.0005324684935668518 1.4393959873251415e-06 0.01505519196891881 4.0697962734485625e-05 0.019100688074179056 7.911298024611544e-05']
['59866.290869795426 0.03432316548778709 6.795905758347966e-05 0.015130067595239513 4.073124376456785e-05 0.0005351166771326388 1.440573062980425e-06 0.015130067595239513 4.073124376456785e-05 0.019193097892547577 7.923047220762572e-05']
['59866.29090133339 0.03421261008152022 6.78723462668376e-05 0.015006448054297232 4.066508484681254e-05 0.0005307445302429243 1.4382331699158988e-06 0.015006448054297232 4.066508484681254e-05 0.019206162027222987 7.912208612874135e-05']
['59866.29093287136 0.03426506624662661 6.791344067391256e-05 0.014992907259699725 4.06566340272116e-05 0.0005302656225999054 1.437934283313084e-06 0.014992907259699725 4.06566340272116e-05 0.019272158986926885 7.915299940363386e-05']
['59866.290964409316 0.03424523162284656 6.79154061244682e-05 0.01506655140044115 4.0687805809514186e-05 0.0005328702512729616 1.4390367595882931e-06 0.01506655140044115 4.0687805809514186e-05 0.01917868022240541 7.917070121354357e-05']
['59866.29099594728 0.03425005470717761 6.792003044472279e-05 0.014982039778537005 4.063458723078473e-05 0.0005298812640785709 1.4371545373951556e-06 0.014982039778537003 4.063458723078473e-05 0.01926801492864061 7.914733233046029e-05']
['59866.29102748524 0.03440778189825005 6.803378381188771e-05 0.015042501630377661 4.0674273781748476e-05 0.0005320196646538888 1.4385581620085221e-06 0.015042501630377661 4.0674273781748476e-05 0.01936528026787239 7.926532840678393e-05']
['59866.291059023206 0.034404838892705146 6.804185931358243e-05 0.015034582441885064 4.06761146871917e-05 0.0005317395806552503 1.4386232707198673e-06 0.015034582441885063 4.06761146871917e-05 0.019370256450820085 7.92732043309397e-05']
['59866.29109056117 0.034123324171945885 6.78304867090115e-05 0.015012587873227755 4.066564290009086e-05 0.0005309616819168092 1.4382529070131775e-06 0.015012587873227755 4.066564290009086e-05 0.01911073629871813 7.90864681197681e-05']
['59866.29112209913 0.03413720931807722 6.784344854485135e-05 0.015017697152977546 4.065188898199664e-05 0.0005311423857229911 1.4377664616683827e-06 0.015017697152977544 4.065188898199664e-05 0.019119512165099675 7.909051515992592e-05']
['59866.291153637096 0.03430930268169505 6.794023942267844e-05 0.015048720847076685 4.0685643512911416e-05 0.0005322396244494019 1.4389602839899017e-06 0.015048720847076683 4.0685643512911416e-05 0.019260581834618366 7.919089417900633e-05']
['59866.29118517506 0.03427425626722059 6.791970990111632e-05 0.015046158979414423 4.068242944367135e-05 0.000532149016915625 1.4388466095439026e-06 0.015046158979414423 4.068242944367135e-05 0.019228097287806167 7.91716303892442e-05']
['59866.29121671302 0.03430427010005024 6.795524392963221e-05 0.015001297779103624 4.065517931607756e-05 0.0005305623765195141 1.437882833431361e-06 0.015001297779103624 4.065517931607756e-05 0.01930297232094661 7.918812273793486e-05']
['59866.291248250986 0.034271144233729026 6.79668935202522e-05 0.014999013156582001 4.065962883219835e-05 0.0005304815745267551 1.43804020287247e-06 0.014999013156582003 4.065962883219835e-05 0.019272131077147023 7.920040423864916e-05']
['59866.291279788944 0.034252715642232825 6.789822936031627e-05 0.015101005501775287 4.069102754161492e-05 0.0005340888158367654 1.4391507050525486e-06 0.015101005501775287 4.069102754161492e-05 0.019151710140457537 7.915762295988035e-05']
['59866.29131132691 0.034368656212935056 6.800971728930393e-05 0.015053900668907905 4.067012087735607e-05 0.0005324228231713518 1.4384112830613578e-06 0.015053900668907907 4.067012087735607e-05 0.01931475554402715 7.924254146574175e-05']
['59866.291342864875 0.034247588419596395 6.788903649723606e-05 0.015072783248457658 4.068938428523693e-05 0.0005330906578099449 1.439092586746921e-06 0.01507278324845766 4.068938428523693e-05 0.019174805171138735 7.91488930436474e-05']
['59866.291374402834 0.03424723758380747 6.791030850764821e-05 0.015011116787176912 4.0659322504334915e-05 0.0005309096528908747 1.438029368740543e-06 0.015011116787176912 4.0659322504334915e-05 0.019236120796630556 7.9151693021157e-05']
['59866.2914059408 0.03437623279477681 6.80211705635546e-05 0.015107559949824632 4.071434185282257e-05 0.0005343206320159414 1.4399752801355442e-06 0.015107559949824632 4.071434185282257e-05 0.01926867284495218 7.927507349315223e-05']
['59866.291437478765 0.03429027666948787 6.79270730934619e-05 0.01501572599953926 4.0662058889010704e-05 0.0005310726704311476 1.4381261485510657e-06 0.01501572599953926 4.0662058889010704e-05 0.019274550669948612 7.916748254263166e-05']
['59866.29146901672 0.03421619008861786 6.790209786221478e-05 0.01498462072847397 4.064533881715121e-05 0.0005299725465097578 1.4375347969765568e-06 0.01498462072847397 4.064533881715121e-05 0.019231569360143887 7.913746560037675e-05']
['59866.29150055469 0.03419001424142101 6.787435493370403e-05 0.015050670557676121 4.068253437754148e-05 0.0005323085813559573 1.4388503208203754e-06 0.015050670557676121 4.068253437754148e-05 0.01913934368374489 7.913277867638844e-05']
['59866.29153209265 0.03439181293460182 6.801519973270732e-05 0.015108546861961246 4.0724670571700874e-05 0.0005343555368925946 1.4403405838389416e-06 0.015108546861961246 4.0724670571700874e-05 0.019283266072640574 7.927525583593931e-05']
['59866.29156363061 0.03431111312414861 6.798225737990976e-05 0.014967450603716483 4.063921367175359e-05 0.0005293652775700559 1.4373181642727374e-06 0.014967450603716483 4.063921367175359e-05 0.01934366252043213 7.920311235252525e-05']
['59866.29159516858 0.03423698401822471 6.789410688191579e-05 0.015080622624120061 4.0693422271750795e-05 0.0005333679190071506 1.4392354013055476e-06 0.015080622624120061 4.0693422271750795e-05 0.01915636139410465 7.915531798609635e-05']
['59866.29162670654 0.03433708585603571 6.796142921240198e-05 0.015034597271363238 4.06830027368507e-05 0.0005317401051407513 1.4388668856424213e-06 0.015034597271363236 4.06830027368507e-05 0.019302488584672477 7.920771788329044e-05']
['59866.2916582445 0.03435200293578541 6.799322404560848e-05 0.015014685434956453 4.0653127036186704e-05 0.0005310358679873787 1.4378102488781971e-06 0.015014685434956453 4.0653127036186704e-05 0.019337317500828954 7.921966456591852e-05']
['59866.29168978247 0.03428242391773282 6.793085016795124e-05 0.015081142254288056 4.0693532717147865e-05 0.0005333862971648875 1.439239307512411e-06 0.015081142254288055 4.0693532717147865e-05 0.019201281663444765 7.918689291506659e-05']
['59866.29172132043 0.03430119641354288 6.7933911475306e-05 0.015085944219345098 4.068743111878324e-05 0.0005335561319371948 1.439023507614524e-06 0.015085944219345098 4.068743111878324e-05 0.01921525219419778 7.918638380037596e-05']
['59866.29175285839 0.03417315713717266 6.786742514175999e-05 0.014981768889399304 4.064127638007148e-05 0.0005298716833351721 1.4373911176560593e-06 0.014981768889399305 4.064127638007148e-05 0.019191388247773354 7.91056302748025e-05']
['59866.29178439635 0.03413260904834178 6.783591811737357e-05 0.014979992902501403 4.064838425677803e-05 0.0005298088706476904 1.4376425073700004e-06 0.014979992902501403 4.064838425677803e-05 0.01915261614584038 7.908225420101333e-05']
['59866.29181593432 0.03417164972871991 6.785210692480652e-05 0.015070795460585032 4.0685988216733116e-05 0.0005330203541953346 1.4389724753937074e-06 0.015070795460585033 4.0685988216733116e-05 0.019100854268134876 7.911547289441885e-05']
['59866.29184747228 0.0342901179836219 6.793798627123109e-05 0.01503990472178454 4.066019657990073e-05 0.0005319278178006992 1.4380602828398617e-06 0.01503990472178454 4.066019657990073e-05 0.01925021326183736 7.917589004555714e-05']
['59866.29187901024 0.034256632465273926 6.793255503173501e-05 0.015028515507625323 4.0676177585348975e-05 0.0005315250067492833 1.438625495287121e-06 0.015028515507625325 4.0676177585348975e-05 0.019228116957648603 7.917943834162093e-05']
['59866.29191054821 0.034300938535429024 6.797665965686315e-05 0.01507626265180807 4.069765669987099e-05 0.0005332137165304401 1.439385163564769e-06 0.015076262651808068 4.069765669987099e-05 0.019224675883620958 7.922831260960668e-05']
['59866.291942086165 0.03437660939217992 6.801437689146063e-05 0.015066612516053464 4.067666778723262e-05 0.0005328724127955838 1.438642832632209e-06 0.015066612516053464 4.067666778723262e-05 0.01930999687612646 7.924990073310212e-05']
['59866.29197362413 0.034349317247060154 6.798317928024126e-05 0.015038319749365106 4.067244564031226e-05 0.0005318717608684288 1.438493504731579e-06 0.015038319749365106 4.067244564031226e-05 0.019310997497695048 7.922095997533469e-05']
['59866.2920051621 0.03424171025018447 6.790869353222561e-05 0.015009768658768963 4.065187013815758e-05 0.0005308619726019752 1.4377657952039087e-06 0.015009768658768961 4.065187013815758e-05 0.01923194159141551 7.914647940991039e-05']
['59866.292036700055 0.03413748443793731 6.783033553912656e-05 0.01500371735694306 4.065411772468506e-05 0.0005306479515802567 1.4378452873163256e-06 0.015003717356943062 4.065411772468506e-05 0.019133767080994245 7.908041291826345e-05']
['59866.29206823802 0.03420392857470697 6.788591257778251e-05 0.015052598739938819 4.0683534321069727e-05 0.0005323767768533552 1.4388856865882274e-06 0.015052598739938819 4.0683534321069727e-05 0.019151329834768152 7.914320622373084e-05']
['59866.29209977599 0.0342147136932122 6.787642312356417e-05 0.015078855393434247 4.068447623953042e-05 0.0005333054160073216 1.4389190001391184e-06 0.015078855393434249 4.068447623953042e-05 0.019135858299777948 7.913555094225371e-05']
['59866.292131313945 0.03422113336591737 6.787645734071509e-05 0.015019263122984034 4.0678743087137225e-05 0.0005311977705823836 1.4387162313518124e-06 0.015019263122984032 4.0678743087137225e-05 0.019201870242933336 7.913263296690709e-05']
['59866.29216285191 0.034343243168263926 6.799192058729062e-05 0.014982937842026908 4.0649764298432794e-05 0.0005299130265771551 1.437691316359118e-06 0.01498293784202691 4.0649764298432794e-05 0.019360305326237018 7.921682020042572e-05']
['59866.29219438987 0.03432429587946746 6.795496175415896e-05 0.015116454032958892 4.0715546779626187e-05 0.0005346351958592943 1.4400178957037353e-06 0.015116454032958892 4.0715546779626187e-05 0.019207841846508568 7.921889027607705e-05']
['59866.292225927835 0.034287636878549625 6.796273509336184e-05 0.015034142483445628 4.0679226136525177e-05 0.0005317240203084967 1.4387333157291125e-06 0.015034142483445628 4.0679226136525177e-05 0.019253494395103998 7.920689869220377e-05']
['59866.2922574658 0.034329129341059535 6.79714851656804e-05 0.015013978053132693 4.0671221471944005e-05 0.0005310108494731776 1.438450208632249e-06 0.015013978053132692 4.0671221471944005e-05 0.019315151287926845 7.921029637394516e-05']
['59866.29228900376 0.034308291163837594 6.795680206519578e-05 0.015045136184733854 4.0692854408703506e-05 0.0005321128429535849 1.4392153172586643e-06 0.015045136184733856 4.0692854408703506e-05 0.01926315497910374 7.920880851809436e-05']
['59866.292320541725 0.03419015671723337 6.787284528099298e-05 0.014997145074458125 4.067454695120505e-05 0.0005304155046369515 1.4385678234017032e-06 0.014997145074458127 4.067454695120505e-05 0.019193011642775242 7.912737766552986e-05']
['59866.29235207969 0.034186740965543236 6.7867872166544e-05 0.014988365432975883 4.0646682282456854e-05 0.0005301049883390685 1.4375823123419491e-06 0.014988365432975884 4.0646682282456854e-05 0.01919837553256735 7.910879124967939e-05']
['59866.29238361765 0.03417655212538984 6.787041683020453e-05 0.01504903015662864 4.069151441128872e-05 0.0005322505640369885 1.4391679245448211e-06 0.015049030156628642 4.069151441128872e-05 0.0191275219687612 7.913401813246834e-05']
['59866.292415155614 0.03429841433192283 6.796376994487905e-05 0.015022931539414764 4.0667638120006104e-05 0.0005313275142731104 1.4383234734825256e-06 0.015022931539414766 4.0667638120006104e-05 0.019275482792508063 7.920183593440381e-05']
['59866.29244669357 0.03414331237718894 6.782470392748556e-05 0.015054849185201608 4.069453325176277e-05 0.0005324563700728509 1.4392746941856769e-06 0.01505484918520161 4.069453325176277e-05 0.019088463191987332 7.909636843389146e-05']
['59866.29247823154 0.03433924162503247 6.797051102890867e-05 0.015091874150037944 4.068981316670298e-05 0.0005337658603331856 1.4391077553258815e-06 0.015091874150037944 4.068981316670298e-05 0.019247367474994524 7.921900823080399e-05']
['59866.292509769504 0.034345024616641476 6.79963689422694e-05 0.0149746828959522 4.063372670273724e-05 0.0005296210675832112 1.437124102441283e-06 0.014974682895952197 4.063372670273724e-05 0.01937034172068928 7.921241023404072e-05']
['59866.29254130746 0.03431503386730331 6.796997273413686e-05 0.015071930783145556 4.068557870674366e-05 0.0005330605080170037 1.4389579919405813e-06 0.015071930783145556 4.068557870674366e-05 0.01924310308415775 7.921637146563798e-05']
['59866.29257284543 0.03432521042184761 6.794900754381186e-05 0.015092850618954252 4.069988042433917e-05 0.0005338003958564758 1.439463811729477e-06 0.01509285061895425 4.069988042433917e-05 0.019232359802893357 7.92057314387318e-05']
['59866.292604383394 0.03440669462972327 6.800324907000843e-05 0.014981488695462517 4.0647649466455556e-05 0.0005298617735018245 1.4376165194784543e-06 0.014981488695462517 4.0647649466455556e-05 0.019425205934260753 7.922545860533372e-05']
['59866.29263592135 0.03415332911186364 6.787675933768686e-05 0.014991504906498107 4.064480243346494e-05 0.0005302160245012391 1.4375158262843206e-06 0.014991504906498105 4.064480243346494e-05 0.019161824205365535 7.911544996422417e-05']
['59866.29266745932 0.034277122199143986 6.793815271613523e-05 0.015072989021513864 4.0687704771910216e-05 0.0005330979355430671 1.4390331861140464e-06 0.015072989021513862 4.0687704771910216e-05 0.019204133177630124 7.91901629881328e-05']
['59866.29269899728 0.034273145190457176 6.793985856701673e-05 0.014979281000436129 4.0651340427043123e-05 0.0005297836922626491 1.4377470605056251e-06 0.014979281000436129 4.0651340427043123e-05 0.01929386419002105 7.917294904588049e-05']
['59866.29273053524 0.03435035058823296 6.79803475203985e-05 0.015078876816546303 4.0694061475798106e-05 0.0005333061736949171 1.439258008524164e-06 0.015078876816546303 4.0694061475798106e-05 0.019271473771686656 7.922963011645445e-05']
['59866.29276207321 0.03421810107344334 6.792020413961147e-05 0.014943364626696822 4.060922263048901e-05 0.000528513410391861 1.4362574481692416e-06 0.014943364626696822 4.060922263048901e-05 0.019274736446746522 7.913446210734686e-05']
['59866.29279361117 0.03428570727477751 6.792170914706175e-05 0.015126071629857959 4.072944225851258e-05 0.0005349753487675502 1.4405093477373792e-06 0.015126071629857959 4.072944225851258e-05 0.019159635644919553 7.919751284066667e-05']
['59866.29282514913 0.03426842007057517 6.793262095991774e-05 0.015015036564973407 4.0672990483488725e-05 0.000531048286671349 1.4385127746170775e-06 0.015015036564973407 4.0672990483488725e-05 0.019253383505601764 7.91778576709033e-05']
['59866.2928566871 0.03426102107032339 6.790618812470463e-05 0.015003004946355952 4.066181317603771e-05 0.0005306227552099346 1.4381174582323471e-06 0.015003004946355952 4.066181317603771e-05 0.019258016123967436 7.91494373725472e-05']
['59866.292888225056 0.034388069812639616 6.803141069522273e-05 0.014960454358933289 4.063580449936949e-05 0.0005291178360277612 1.4371975894645637e-06 0.014960454358933289 4.063580449936949e-05 0.019427615453706325 7.924355777281231e-05']
['59866.29291976302 0.034302026136522897 6.795565180700901e-05 0.015007338536379288 4.066821751348711e-05 0.0005307760246040564 1.4383439653350807e-06 0.015007338536379288 4.066821751348711e-05 0.019294687600143606 7.919516732881968e-05']
['59866.29295130098 0.034317134476128115 6.79445142272665e-05 0.01509291358481152 4.06898776701758e-05 0.000533802622818127 1.4391100366695583e-06 0.01509291358481152 4.06898776701758e-05 0.019224220891316597 7.919673704385232e-05']
['59866.292982838946 0.03436881283525167 6.800219667621617e-05 0.015087487158860779 4.06880117930253e-05 0.0005336107022595976 1.439044044764735e-06 0.01508748715886078 4.06880117930253e-05 0.01928132567639089 7.924527150852694e-05']
['59866.29301437691 0.03423961611006611 6.78916901119723e-05 0.015042036204554913 4.0679654907652395e-05 0.0005320032035827037 1.4387484804056352e-06 0.015042036204554915 4.0679654907652395e-05 0.019197579905511193 7.914616800367384e-05']
['59866.29304591487 0.03434476758004826 6.79776281417457e-05 0.014999862741501583 4.064338947326881e-05 0.0005305116224466502 1.4374658530399636e-06 0.014999862741501585 4.064338947326881e-05 0.019344904838546673 7.920128178036815e-05']
['59866.293077452836 0.034283146038827116 6.794263016213071e-05 0.01501119751579175 4.065076127811165e-05 0.0005309125080815637 1.4377265773022404e-06 0.01501119751579175 4.065076127811165e-05 0.019271948523035366 7.917503006528064e-05']
['59866.2931089908 0.03417869598342823 6.787584870030195e-05 0.015059034834087279 4.070390958023792e-05 0.0005326044071195623 1.439606313968982e-06 0.015059034834087279 4.070390958023792e-05 0.019119661149340952 7.914505096278899e-05']
['59866.29314052876 0.03435878616651453 6.798908405979842e-05 0.015084605080322621 4.0700435023526906e-05 0.0005335087695827694 1.439483426663291e-06 0.015084605080322623 4.0700435023526906e-05 0.019274181086191902 7.924039981218338e-05']
['59866.293172066726 0.034196112490125774 6.78619253164203e-05 0.015051701900445526 4.068826209862203e-05 0.0005323450576447957 1.4390528975142913e-06 0.015051701900445524 4.068826209862203e-05 0.01914441058968025 7.912506290839564e-05']
['59866.293203604684 0.03427274820929644 6.794193045765041e-05 0.015039415222675816 4.065960857266202e-05 0.0005319105053111897 1.4380394863379476e-06 0.015039415222675814 4.065960857266202e-05 0.019233332986620624 7.917897248382487e-05']
['59866.29323514265 0.03433013519066248 6.794452895946093e-05 0.015085974052483743 4.07003746350327e-05 0.0005335571870686356 1.4394812908572112e-06 0.015085974052483745 4.07003746350327e-05 0.01924416113817873 7.920214334823925e-05']
['59866.293266680615 0.034246170209211016 6.793750658099499e-05 0.014964253531122906 4.0635904686241536e-05 0.0005292522042574578 1.4372011328503233e-06 0.014964253531122905 4.0635904686241536e-05 0.01928191667808811 7.916300619678389e-05']
['59866.293298218574 0.034307126795468545 6.794363829585124e-05 0.015063927115216882 4.0679986326129327e-05 0.0005327774361695115 1.4387602019364875e-06 0.01506392711521688 4.0679986326129327e-05 0.019243199680251663 7.919090397496124e-05']
['59866.29332975654 0.03430253465368573 6.79764432634855e-05 0.015079527468259999 4.0711862108891495e-05 0.0005333291857919096 1.4398875771346036e-06 0.01507952746826 4.0711862108891495e-05 0.01922300718542573 7.923542487503465e-05']
['59866.293361294505 0.03423680712319136 6.790619116192378e-05 0.014973750050685861 4.063117804172791e-05 0.0005295880749309273 1.437033961997305e-06 0.014973750050685861 4.063117804172791e-05 0.0192630570725055 7.913370601190323e-05']
['59866.293392832464 0.0341561664850224 6.782184563309314e-05 0.015045427979471967 4.067981508494571e-05 0.0005321231630813491 1.4387541455185247e-06 0.015045427979471969 4.067981508494571e-05 0.01911073850555043 7.90863458532792e-05']
['59866.29342437043 0.0341536479224994 6.78470897730185e-05 0.015084661506793683 4.0711656673197295e-05 0.0005335107652609451 1.4398803113332215e-06 0.015084661506793683 4.0711656673197295e-05 0.019068986415705716 7.912437411913172e-05']
['59866.29345590839 0.03424648394818179 6.792254965883176e-05 0.014970184723329427 4.062979503079685e-05 0.000529461977270368 1.4369850479915211e-06 0.014970184723329427 4.062979503079685e-05 0.019276299224852363 7.91470340341382e-05']
['59866.29348744635 0.03434833604214394 6.796989161234506e-05 0.01507342909821559 4.0693801894003366e-05 0.0005331135000724937 1.4392488276962152e-06 0.015073429098215591 4.0693801894003366e-05 0.01927490694392835 7.922052561288853e-05']
['59866.29351898432 0.03422090886234319 6.791389308768994e-05 0.014908135303246044 4.059183050243064e-05 0.0005272674279543111 1.4356423274689354e-06 0.014908135303246042 4.059183050243064e-05 0.01931277355909715 7.91201211947014e-05']
['59866.29355052228 0.034215618333970084 6.790947851193216e-05 0.01501639007684604 4.0663020693620456e-05 0.000531096157361363 1.4381601654306058e-06 0.01501639007684604 4.0663020693620456e-05 0.019199228257124043 7.915288070368875e-05']
['59866.29358206024 0.034188419550801846 6.788194180979509e-05 0.015015762171471853 4.0649492720214127e-05 0.0005310739497515639 1.4376817112444652e-06 0.015015762171471853 4.0649492720214127e-05 0.019172657379329994 7.912230584531235e-05']
['59866.29361359821 0.034266306760563116 6.792858748681777e-05 0.014983367533913751 4.064180826563007e-05 0.0005299282238188878 1.4374099292595723e-06 0.014983367533913751 4.064180826563007e-05 0.019282939226649365 7.915838286027887e-05']
['59866.29364513617 0.03421616815770925 6.787088645226016e-05 0.015008215721117817 4.065375394173695e-05 0.0005308070486678655 1.4378324211264578e-06 0.015008215721117815 4.065375394173695e-05 0.01920795243659143 7.911501082203607e-05']
['59866.29367667413 0.03421099039996153 6.790651503578686e-05 0.014947745684531256 4.0630749818808364e-05 0.000528668358616377 1.4370188167096627e-06 0.014947745684531256 4.0630749818808364e-05 0.019263244715430276 7.913376406530997e-05']
['59866.29370821209 0.034205581077652265 6.792662618515727e-05 0.015004831358883659 4.06647087996632e-05 0.0005306873513392479 1.4382198699686428e-06 0.01500483135888366 4.06647087996632e-05 0.019200749718768603 7.916846017613011e-05']
['59866.29373975006 0.03430989041835675 6.79525711453338e-05 0.015010799345753473 4.066882921493835e-05 0.0005308984256971675 1.4383655998483385e-06 0.015010799345753473 4.066882921493835e-05 0.019299091072603275 7.919283802829316e-05']
['59866.29377128802 0.03425458163809838 6.791870873141533e-05 0.015097175306346012 4.0699552897575845e-05 0.0005339533503844149 1.4394522278398374e-06 0.015097175306346012 4.0699552897575845e-05 0.019157406331752367 7.917957187182441e-05']
['59866.29380282598 0.034172391003422994 6.78583529769564e-05 0.015003533174137796 4.065917869808838e-05 0.0005306414374460589 1.438024282634991e-06 0.015003533174137796 4.065917869808838e-05 0.0191688578292852 7.910704697527454e-05']
['59866.29383436395 0.034338893393145685 6.800633289079105e-05 0.01506714175530128 4.0699075886911946e-05 0.000532891130804999 1.4394353570387113e-06 0.01506714175530128 4.0699075886911946e-05 0.019271751637844406 7.925450202544778e-05']
['59866.29386590191 0.03422878463265921 6.788793596793557e-05 0.014955735276963762 4.0620286292622876e-05 0.0005289509326450265 1.4366487451730868e-06 0.014955735276963762 4.0620286292622876e-05 0.019273049355695446 7.91124485051573e-05']
['59866.29389743987 0.0342336153040108 6.791108425241189e-05 0.015091662883443336 4.0688721602672026e-05 0.0005337583883058874 1.4390691491456087e-06 0.015091662883443336 4.0688721602672026e-05 0.01914195242056746 7.916746446614249e-05']
['59866.29392897784 0.034362039186281036 6.798202830600857e-05 0.015049278820460225 4.066230730345183e-05 0.0005322593587209806 1.4381349344146746e-06 0.015049278820460225 4.066230730345183e-05 0.01931276036582081 7.921476761210186e-05']
['59866.293960515795 0.03424080100918314 6.791407962307071e-05 0.015033873527222663 4.067869221912472e-05 0.0005317145079279722 1.4387144322638935e-06 0.015033873527222665 4.067869221912472e-05 0.019206927481960477 7.916487991342541e-05']
['59866.29399205376 0.03428550359285567 6.794942165694704e-05 0.014947606633478298 4.061544280338321e-05 0.0005286634406913946 1.4364774417832411e-06 0.014947606633478296 4.061544280338321e-05 0.019337896959377373 7.916273174687997e-05']
['59866.29402359173 0.034179180849388265 6.784603955838458e-05 0.015032845241687605 4.0668170839770564e-05 0.0005316781397666801 1.438342314590036e-06 0.015032845241687603 4.0668170839770564e-05 0.01914633560770066 7.910110747145485e-05']
['59866.294055129685 0.034185657997101694 6.78742499669998e-05 0.015005371898998138 4.0654588611969984e-05 0.0005307064690350609 1.437861941547222e-06 0.015005371898998138 4.0654588611969984e-05 0.019180286098103558 7.911832520845782e-05']
['59866.29408666765 0.03424871884354645 6.791560928184059e-05 0.015040863083045142 4.067053385751995e-05 0.0005319617128966754 1.4384258892467977e-06 0.015040863083045142 4.067053385751995e-05 0.01920785576050131 7.916200040663012e-05']
['59866.29411820562 0.03426839214519753 6.792560959086162e-05 0.015030973351375574 4.068253639890323e-05 0.0005316119351897722 1.4388503923114232e-06 0.015030973351375574 4.068253639890323e-05 0.019237418793821955 7.917674662511865e-05']
['59866.294149743575 0.034197681855078994 6.785938209703881e-05 0.01496713972948531 4.062037505281656e-05 0.0005293542826432623 1.4366518844227701e-06 0.01496713972948531 4.062037505281656e-05 0.019230542125593685 7.908799281827422e-05']
['59866.29418128154 0.03425999114756387 6.793155389265098e-05 0.014960086429874488 4.0608462285455563e-05 0.0005291048231992244 1.4362305564646797e-06 0.014960086429874486 4.0608462285455563e-05 0.01929990471768938 7.914381355140407e-05']
['59866.2942128195 0.0343612611073349 6.799401750273422e-05 0.015004188379944494 4.062828581414461e-05 0.000530664610611143 1.4369316703714318e-06 0.015004188379944494 4.062828581414461e-05 0.019357072727390408 7.920760079915281e-05']
['59866.294244357465 0.034268480480333145 6.79315503338252e-05 0.014942976981412304 4.059853943162982e-05 0.0005284997002444838 1.4358796073011362e-06 0.014942976981412302 4.059853943162982e-05 0.019325503498920843 7.913871956721708e-05']
['59866.29427589543 0.034349925585224136 6.797644049795325e-05 0.015025180794204255 4.0653085066122486e-05 0.000531407065388226 1.4378087644908232e-06 0.015025180794204254 4.0653085066122486e-05 0.019324744791019883 7.920523838841197e-05']
['59866.29430743339 0.0342116797156498 6.788873065789021e-05 0.015005437995009002 4.0654893003980117e-05 0.0005307088067032493 1.4378727072123444e-06 0.015005437995009002 4.0654893003980117e-05 0.019206241720640796 7.913090468018569e-05']
['59866.294338971355 0.03423628415571842 6.788907690498969e-05 0.014969406118240143 4.063420387210176e-05 0.00052943443974844 1.4371409788552953e-06 0.014969406118240143 4.063420387210176e-05 0.01926687803747828 7.912057436173687e-05']
['59866.29437050932 0.034236996934673414 6.79004350931525e-05 0.014990057658502202 4.0649918636364585e-05 0.0005301648385740329 1.4376967749468403e-06 0.014990057658502202 4.0649918636364585e-05 0.019246939276171212 7.913839125849399e-05']
['59866.29440204728 0.034185354357290205 6.785388729951059e-05 0.015004793859276342 4.065982608968595e-05 0.0005306860250619438 1.4380471794289618e-06 0.015004793859276343 4.065982608968595e-05 0.019180560498013862 7.910354909419799e-05']
['59866.294433585244 0.03437677917212368 6.800984795818246e-05 0.015011589591909721 4.066426725480737e-05 0.0005309263749376178 1.4382042535138868e-06 0.01501158959190972 4.066426725480737e-05 0.019365189580213958 7.923964948600855e-05']
['59866.2944651232 0.03432649456480157 6.79972112132626e-05 0.01506045801488042 4.0666682335429274e-05 0.0005326547418435939 1.438289669518096e-06 0.01506045801488042 4.0666682335429274e-05 0.01926603654992115 7.923004344913463e-05']
['59866.29449666117 0.03430986270781745 6.799830739413447e-05 0.015062771871199369 4.0675727630586134e-05 0.0005327365777704306 1.438609581392749e-06 0.01506277187119937 4.0675727630586134e-05 0.019247090836618075 7.923562725658724e-05']
['59866.294528199134 0.03436392401262164 6.800110504513244e-05 0.015119514597618549 4.0704095646161295e-05 0.0005347434411913469 1.439612894704859e-06 0.015119514597618547 4.0704095646161295e-05 0.01924440941500309 7.925259421451756e-05']
['59866.29455973709 0.03429403479832422 6.794832116428445e-05 0.015044765777999717 4.065103689956058e-05 0.0005320997424952087 1.4377363254169115e-06 0.015044765777999715 4.065103689956058e-05 0.019249269020324505 7.918005525417485e-05']
['59866.29459127506 0.03420678909794818 6.788389113218104e-05 0.015046154580219089 4.06548738130237e-05 0.0005321488613259177 1.4378720284711053e-06 0.015046154580219089 4.06548738130237e-05 0.01916063451772909 7.912674288758946e-05']
['59866.294622813024 0.03422426846430029 6.786029225321386e-05 0.015051984153928577 4.0675705597427904e-05 0.0005323550403196918 1.4386088021291838e-06 0.015051984153928577 4.0675705597427904e-05 0.019172284310371712 7.911720603345536e-05']
['59866.29465435098 0.034247464378419495 6.794290200486272e-05 0.015025447142633647 4.0654295042202415e-05 0.0005314164855369199 1.437851558640633e-06 0.015025447142633645 4.0654295042202415e-05 0.01922201723578585 7.917707773226304e-05']
['59866.29468588895 0.034294153130997346 6.796043798903555e-05 0.014968763249031597 4.062916053144939e-05 0.0005294117029012619 1.436962607167624e-06 0.014968763249031597 4.062916053144939e-05 0.01932538988196575 7.917922591912497e-05']
['59866.29471742691 0.03428824768905681 6.793269142062273e-05 0.014980384304397684 4.062747466221735e-05 0.0005298227136580301 1.4369029817405828e-06 0.014980384304397684 4.062747466221735e-05 0.01930786338465913 7.915454668607901e-05']
['59866.29474896487 0.03411782011899676 6.782806877629e-05 0.015013586827003038 4.0655155453061796e-05 0.0005309970126793107 1.437881989449824e-06 0.015013586827003038 4.0655155453061796e-05 0.01910423329199372 7.907900213605219e-05']
['59866.29478050284 0.03429907903023329 6.794813288038596e-05 0.015056032866622094 4.067176089253806e-05 0.0005324982342393211 1.4384692867331265e-06 0.015056032866622094 4.067176089253806e-05 0.019243046163611197 7.919053539426524e-05']
['59866.2948120408 0.0343539606925291 6.799670048953426e-05 0.015133424505722031 4.070920645555696e-05 0.000535235403554152 1.439793652611197e-06 0.01513342450572203 4.070920645555696e-05 0.01922053618680707 7.925144016170677e-05']
['59866.29484357876 0.03434420662730941 6.799729381781656e-05 0.015013531603894677 4.066259062062397e-05 0.0005309950595613844 1.4381449547098768e-06 0.01501353160389468 4.066259062062397e-05 0.019330675023414727 7.922801425333675e-05']
['59866.29487511673 0.034298079865486227 6.795574606687567e-05 0.014991660758964218 4.0651535080449235e-05 0.0005302215366546557 1.4377539449615745e-06 0.014991660758964218 4.0651535080449235e-05 0.019306419106522008 7.918668276864919e-05']
['59866.294906654686 0.034336454460449695 6.796589826070791e-05 0.014995714318924542 4.0627944541855824e-05 0.000530364902011279 1.4369196003332765e-06 0.014995714318924542 4.0627944541855824e-05 0.019340740141525155 7.918328866674465e-05']
['59866.29493819265 0.034308554195301766 6.795051524834993e-05 0.014984195110901514 4.062541140947427e-05 0.0005299574933674194 1.4368300091021584e-06 0.014984195110901516 4.062541140947427e-05 0.01932435908440025 7.916878535575292e-05']
['59866.29496973061 0.03436935129280725 6.800219169820893e-05 0.015081054752991067 4.0672511825308454e-05 0.0005333832024395669 1.4384958455469793e-06 0.015081054752991065 4.0672511825308454e-05 0.019288296539816185 7.923730998677209e-05']
['59866.295001268576 0.03431523342220349 6.79735650910956e-05 0.015054994513980732 4.067131281761883e-05 0.0005324615100269777 1.4384534393246218e-06 0.01505499451398073 4.067131281761883e-05 0.01926023890822276 7.921212809603095e-05']
['59866.29503280654 0.03417688667596934 6.787781767214623e-05 0.01499685860162206 4.06467223325964e-05 0.0005304053727329689 1.4375837288258782e-06 0.01499685860162206 4.06467223325964e-05 0.01918002807434728 7.911734429514377e-05']
['59866.2950643445 0.034266004821364764 6.795066483027457e-05 0.014993727591436662 4.063948631581224e-05 0.0005302946359001074 1.4373278070837681e-06 0.014993727591436664 4.063948631581224e-05 0.0192722772299281 7.917613718090448e-05']
['59866.295095882466 0.03436270835012001 6.801977878546576e-05 0.015111018676124731 4.071178616385092e-05 0.0005344429594353776 1.4398848911282458e-06 0.015111018676124731 4.071178616385092e-05 0.01925168967399528 7.927256674710881e-05']
['59866.29512742043 0.03430728843365111 6.798903460091465e-05 0.015025708117782473 4.064794982630162e-05 0.0005314257156446888 1.4376271425349447e-06 0.015025708117782473 4.064794982630162e-05 0.01928158031586864 7.921341206541922e-05']
['59866.29515895839 0.034423396066331255 6.802418640444387e-05 0.015018627874884128 4.065681488459459e-05 0.0005311753032767859 1.4379406798345279e-06 0.015018627874884128 4.065681488459459e-05 0.019404768191447125 7.924813267545626e-05']
['59866.295190496356 0.03431488679852601 6.79759603845323e-05 0.015060825118485058 4.0672294823368504e-05 0.0005326677254776617 1.4384881706733342e-06 0.01506082511848506 4.0672294823368504e-05 0.01925406168004095 7.921468775674441e-05']
['59866.295222034314 0.03427059940273881 6.792637680882393e-05 0.015066285291350479 4.068680944976476e-05 0.0005328608395891435 1.439001520570689e-06 0.01506628529135048 4.068680944976476e-05 0.019204314111388333 7.9179600463603e-05']
['59866.29525357228 0.034191097961902686 6.786185866857867e-05 0.015007278970630845 4.0651456261467566e-05 0.0005307739178966555 1.437751157310343e-06 0.015007278970630844 4.0651456261467566e-05 0.01918381899127184 7.910608546838958e-05']
['59866.295285110245 0.034333658305197856 6.797782244987371e-05 0.01511618326317544 4.0701011150517876e-05 0.0005346256193371885 1.4395038029873935e-06 0.015116183263175442 4.0701011150517876e-05 0.019217475042022415 7.923103340043682e-05']
['59866.295316648204 0.03412232182378574 6.784070284989748e-05 0.015005075595652714 4.06517201743674e-05 0.0005306959894479323 1.4377604913197994e-06 0.015005075595652714 4.06517201743674e-05 0.019117246228133024 7.908807316089549e-05']
['59866.29534818617 0.03425734360435977 6.793258875013748e-05 0.015001156839578506 4.064781850082932e-05 0.000530557391803492 1.4376224978464847e-06 0.015001156839578507 4.064781850082932e-05 0.019256186764781268 7.916490234423124e-05']
['59866.295379724135 0.03433903621526588 6.797055224972945e-05 0.015088993719488108 4.0678291954097765e-05 0.0005336639859420214 1.4387002757844297e-06 0.015088993719488108 4.0678291954097765e-05 0.019250042495777768 7.921312649703972e-05']
['59866.295411262094 0.03433417892195742 6.800051995019e-05 0.014996488370117533 4.063879806881024e-05 0.0005303922784720725 1.437303465325449e-06 0.014996488370117533 4.063879806881024e-05 0.019337690551839887 7.92185749807059e-05']
['59866.29544280006 0.03424007334722672 6.79260923147164e-05 0.015057145302427903 4.067669099913636e-05 0.000532537578607625 1.4386436535853685e-06 0.015057145302427903 4.067669099913636e-05 0.01918292804479882 7.9174157449174e-05']
['59866.29547433802 0.03426268575150255 6.792433238046057e-05 0.015037270009936468 4.0667186284651925e-05 0.0005318346339308673 1.4383074930758408e-06 0.015037270009936468 4.0667186284651925e-05 0.019225415741566082 7.916776471293013e-05']
['59866.29550587598 0.03427858033100844 6.79190715217077e-05 0.015082834833498145 4.068305128467906e-05 0.0005334461599088565 1.4388686026706124e-06 0.015082834833498145 4.068305128467906e-05 0.019195745497510294 7.917140227508082e-05']
['59866.29553741395 0.034269142263332365 6.79222876368786e-05 0.015085190670394771 4.067278839341241e-05 0.0005335294805949045 1.438505627142723e-06 0.015085190670394771 4.067278839341241e-05 0.019183951592937593 7.916888829282734e-05']
['59866.29556895191 0.03431718248771189 6.796575830945609e-05 0.015045644546866419 4.0677404305221054e-05 0.0005321308225860912 1.438668881627439e-06 0.015045644546866419 4.0677404305221054e-05 0.019271537940845476 7.920855713614416e-05']
['59866.29560048987 0.03429020943527028 6.794807665536773e-05 0.015019769371310875 4.066878829719875e-05 0.0005312156754543056 1.4383641526793347e-06 0.015019769371310875 4.066878829719875e-05 0.019270440063959407 7.918896048519705e-05']
['59866.29563202784 0.034331651797675604 6.798900205284486e-05 0.015065384707755198 4.067275801120568e-05 0.0005328289879600642 1.4385045525919713e-06 0.015065384707755198 4.067275801120568e-05 0.019266267089920408 7.922611718606332e-05']
['59866.2956635658 0.03429210127421489 6.794859214861364e-05 0.015038305200910564 4.066390929696556e-05 0.0005318712463221055 1.4381915933450104e-06 0.015038305200910564 4.066390929696556e-05 0.019253796073304328 7.918689723868767e-05']
['59866.29569510376 0.034318444656992526 6.796473199522085e-05 0.0150131856587349 4.064351985040656e-05 0.0005309828242542249 1.43747046418795e-06 0.0150131856587349 4.064351985040656e-05 0.019305258998257628 7.919028034432376e-05']
['59866.29572664172 0.034243695702208164 6.792726876893643e-05 0.014992124293672424 4.062955039456242e-05 0.0005302379308413459 1.436976395754639e-06 0.014992124293672424 4.062955039456242e-05 0.019251571408535742 7.915095834967265e-05']
['59866.29575817969 0.03436055762505858 6.801606370209099e-05 0.01497606713445969 4.0637414434571056e-05 0.0005296700250056303 1.4372545292746495e-06 0.01497606713445969 4.0637414434571056e-05 0.019384490490598892 7.92312083301396e-05']
['59866.29578971765 0.034272559819872865 6.792711903875101e-05 0.015007366901200525 4.0660554059262724e-05 0.0005307770278043919 1.4380729260859763e-06 0.015007366901200527 4.0660554059262724e-05 0.01926519291867234 7.916674906367493e-05']
['59866.29582125561 0.03424278404415591 6.792463952179309e-05 0.015035612028319266 4.066528990138983e-05 0.0005317759948264378 1.4382404222380278e-06 0.015035612028319266 4.066528990138983e-05 0.019207172015836646 7.916705411299332e-05']
['59866.29585279358 0.03420833611584776 6.790122797470576e-05 0.014994724944541233 4.063905453491019e-05 0.000530329910050463 1.4373125359582361e-06 0.014994724944541233 4.063905453491019e-05 0.01921361117130653 7.913349173367979e-05']
['59866.29588433154 0.03426671821441341 6.79125030407905e-05 0.01497315585395214 4.062056797386517e-05 0.0005295670595204073 1.4366587076091062e-06 0.014973155853952142 4.062056797386517e-05 0.019293562360461272 7.91336755862179e-05']
['59866.2959158695 0.034236490895320305 6.792156934268208e-05 0.01500727808115434 4.0669108376694154e-05 0.0005307738864378594 1.4383754731757516e-06 0.01500727808115434 4.0669108376694154e-05 0.019229212814165966 7.9166381489418e-05']
['59866.29594740747 0.034287285433498335 6.793275445622693e-05 0.015054006031408003 4.068694341532097e-05 0.0005324265496075088 1.4390062586330167e-06 0.015054006031408001 4.068694341532097e-05 0.019233279402090332 7.918514060410293e-05']
['59866.295978945425 0.03428969403235202 6.793272953269987e-05 0.015083393955010304 4.0680356513967724e-05 0.0005334659347871784 1.4387732946530105e-06 0.015083393955010302 4.0680356513967724e-05 0.01920630007734172 7.918173493847221e-05']
['59866.29601048339 0.03425205690136323 6.790858072675191e-05 0.015113328187455201 4.071334219103789e-05 0.0005345246416896823 1.4399399243323327e-06 0.015113328187455201 4.071334219103789e-05 0.01913872871390803 7.917797401226131e-05']
['59866.29604202136 0.03419888475978019 6.78638750350416e-05 0.015007263082255112 4.065286598607225e-05 0.0005307733559603143 1.4378010161190614e-06 0.015007263082255112 4.065286598607225e-05 0.019191621677525077 7.910853966325818e-05']
['59866.296073559315 0.034362082980250445 6.799725704109354e-05 0.01506896402856181 4.066939195437727e-05 0.0005329555805376828 1.4383855026846447e-06 0.015068964028561808 4.066939195437727e-05 0.019293118951688636 7.923147358879116e-05']
['59866.29610509728 0.03415899340165121 6.782767869364542e-05 0.014989775457112647 4.0635715730327795e-05 0.0005301548577415672 1.437194449901946e-06 0.014989775457112645 4.0635715730327795e-05 0.019169217944538568 7.906867514941939e-05']
['59866.29613663525 0.03426770007751219 6.794692604936664e-05 0.015018332597331754 4.066060214862103e-05 0.0005311648599696649 1.4380746268991061e-06 0.015018332597331754 4.066060214862103e-05 0.019249367480180433 7.918376933846067e-05']
['59866.296168173205 0.03436259245659475 6.801722705529095e-05 0.015060947290998586 4.0670658294765435e-05 0.0005326720464464256 1.4384302903140697e-06 0.015060947290998584 4.0670658294765435e-05 0.019301645165596168 7.924926259859189e-05']
['59866.29619971117 0.034322249026581 6.798546110765257e-05 0.015025721209110748 4.066910894735219e-05 0.0005314261786557125 1.4383754933586511e-06 0.01502572120911075 4.066910894735219e-05 0.019296527817470252 7.922120514478268e-05']
['59866.29623124913 0.03428736119980723 6.79341277988406e-05 0.015034055039663532 4.066348737423609e-05 0.0005317209276173493 1.438176670881011e-06 0.015034055039663532 4.066348737423609e-05 0.019253306160143695 7.917426933811176e-05']
['59866.296262787095 0.03420327987734135 6.787464748270002e-05 0.015004776865446113 4.064759826924919e-05 0.0005306854240281476 1.437614708747684e-06 0.015004776865446115 4.064759826924919e-05 0.019198503011895234 7.911507451781275e-05']
['59866.29629432506 0.03430015052629642 6.794240724088677e-05 0.015015955994001157 4.065539239746287e-05 0.0005310808048212576 1.4378903696437505e-06 0.015015955994001158 4.065539239746287e-05 0.01928419453229526 7.917721662623779e-05']
['59866.29632586302 0.03430776606454535 6.796173237961497e-05 0.015010622049157046 4.06729125524744e-05 0.0005308921551127865 1.4385100183712664e-06 0.015010622049157046 4.06729125524744e-05 0.019297144015388304 7.920279593259089e-05']
['59866.296357400985 0.03427249684052906 6.791875491492075e-05 0.015055042038915733 4.0691907543511025e-05 0.0005324631908777168 1.4391818287529253e-06 0.015055042038915733 4.0691907543511025e-05 0.01921745480161333 7.917568192774042e-05']
['59866.29638893895 0.03417554807955393 6.788268475650884e-05 0.015046810410368268 4.0694976927187895e-05 0.0005321720565726 1.4392903859939075e-06 0.015046810410368268 4.0694976927187895e-05 0.019128737669185665 7.914632042524728e-05']
['59866.29642047691 0.034171305917314494 6.783199685195615e-05 0.014996055251332938 4.0652100853235976e-05 0.0005303769600286249 1.4377739550806137e-06 0.014996055251332938 4.0652100853235976e-05 0.019175250665981556 7.908080108790918e-05']
['59866.296452014874 0.0343191001062588 6.795088667308296e-05 0.01504997414942056 4.06782248516551e-05 0.0005322839509523389 1.438697902520998e-06 0.01504997414942056 4.06782248516551e-05 0.01926912595683824 7.919621819720923e-05']
['59866.29648355283 0.03424593638852088 6.79111954139847e-05 0.015039603823320844 4.06612633321797e-05 0.0005319171756945068 1.438098011483918e-06 0.015039603823320844 4.06612633321797e-05 0.019206332565200036 7.915345095651407e-05']
['59866.2965150908 0.03423172485626523 6.790861790435667e-05 0.015022681102961196 4.067281638038531e-05 0.0005313186568954402 1.4385066169794072e-06 0.015022681102961196 4.067281638038531e-05 0.019209043753304032 7.915717515167181e-05']
['59866.296546628764 0.034386930132004355 6.803878490859404e-05 0.015031055728200831 4.066352723902782e-05 0.0005316148486739802 1.4381780808096019e-06 0.015031055728200831 4.066352723902782e-05 0.019355874403803524 7.926410725768053e-05']
['59866.29657816672 0.03433449439531984 6.798715269257859e-05 0.01507434272108383 4.067702931875968e-05 0.0005331458128715165 1.4386556191943455e-06 0.015074342721083833 4.067702931875968e-05 0.019260151674236007 7.922672305127374e-05']
['59866.29660970469 0.03419461032388899 6.785568123304386e-05 0.015060706570467496 4.0672858868704475e-05 0.0005326635326992196 1.4385081196963002e-06 0.015060706570467495 4.0672858868704475e-05 0.0191339037534215 7.911178751712044e-05']
['59866.296641242654 0.03419362258441282 6.784839620809215e-05 0.015000135743126954 4.063818582436973e-05 0.0005305212779040168 1.437281811607874e-06 0.015000135743126954 4.063818582436973e-05 0.019193486841285863 7.90877172202249e-05']
['59866.29667278061 0.03428208613891893 6.795047494507169e-05 0.014989745359741203 4.064312424605454e-05 0.000530153793264803 1.4374564725461428e-06 0.014989745359741204 4.064312424605454e-05 0.019292340779177724 7.917784155773029e-05']
['59866.29670431858 0.03434232797036852 6.79799955347351e-05 0.015021534197443965 4.066502211226068e-05 0.0005312780934104787 1.4382309511350033e-06 0.015021534197443967 4.066502211226068e-05 0.019320793772924554 7.921441672002171e-05']
['59866.29673585654 0.034269538262652305 6.793479325788876e-05 0.01504992446900413 4.065234862240684e-05 0.000532282193867039 1.4377827181224556e-06 0.01504992446900413 4.065234862240684e-05 0.019219613793648175 7.916912013853501e-05']
['59866.2967673945 0.03436337797136472 6.803181626543521e-05 0.014959780814092185 4.063713448823519e-05 0.0005290940142520154 1.4372446281983932e-06 0.014959780814092183 4.063713448823519e-05 0.019403597157272537 7.924458797791083e-05']
['59866.29679893247 0.03437929280929085 6.799611568761841e-05 0.015084945560788383 4.070670693496494e-05 0.0005335208116159143 1.439705250153957e-06 0.015084945560788383 4.070670693496494e-05 0.019294347248502465 7.924965449825702e-05']
['59866.296830470426 0.03426870564514527 6.791799404938319e-05 0.015145466858574382 4.072244358124936e-05 0.0005356613146614651 1.4402618201637024e-06 0.015145466858574383 4.072244358124936e-05 0.019123238786570886 7.919072753119578e-05']
['59866.29686200839 0.0342098462887589 6.791806760603883e-05 0.015059272491331011 4.067581988281719e-05 0.0005326128125251405 1.4386128441479899e-06 0.015059272491331013 4.067581988281719e-05 0.019150573797427888 7.916682531513972e-05']
['59866.29689354636 0.034274048602775824 6.79279045998371e-05 0.015036239860276107 4.067422114826754e-05 0.0005317981998396294 1.4385563004799303e-06 0.015036239860276109 4.067422114826754e-05 0.019237808742499717 7.917444341037544e-05']
['59866.296925084316 0.03415378341601944 6.78542426409425e-05 0.014972188211018297 4.064023329320287e-05 0.0005295328361523919 1.4373542260046783e-06 0.014972188211018297 4.064023329320287e-05 0.019181595205001144 7.90937848791032e-05']
['59866.29695662228 0.03417911494016758 6.786827097341129e-05 0.01501929899489345 4.0649903504136006e-05 0.0005311990392916507 1.437696239753734e-06 0.01501929899489345 4.0649903504136006e-05 0.01915981594527413 7.911078851721774e-05']
['59866.29698816024 0.03432360023235701 6.79713025205208e-05 0.015007768303571149 4.065103551544951e-05 0.0005307912245091593 1.4377362764639963e-06 0.015007768303571149 4.065103551544951e-05 0.019315831928785863 7.919977686088828e-05']
['59866.297019698206 0.0341752893793881 6.78521547679852e-05 0.01503846418597656 4.067606866809171e-05 0.000531876869268579 1.4386216431271474e-06 0.01503846418597656 4.067606866809171e-05 0.01913682519341154 7.911041315117707e-05']
['59866.29705123617 0.03437391318612643 6.801625417737111e-05 0.014995694046514841 4.064552273905911e-05 0.0005303641850214541 1.437541301883398e-06 0.014995694046514841 4.064552273905911e-05 0.01937821913961159 7.923553086243648e-05']
['59866.29708277413 0.03421830473592473 6.789533164804297e-05 0.015019421985484876 4.0650035492785515e-05 0.0005312033891940016 1.4377009078972898e-06 0.015019421985484878 4.0650035492785515e-05 0.01919888275043985 7.913407259305227e-05']
['59866.297114312096 0.034317183998334916 6.795207759770868e-05 0.015077481924131133 4.0690976101845746e-05 0.0005332568394675936 1.439148885742874e-06 0.015077481924131133 4.0690976101845746e-05 0.019239702074203783 7.920379022474874e-05']
['59866.29714585006 0.034314470751858804 6.797569825547709e-05 0.014972111091374805 4.0633108896103955e-05 0.0005295301086029538 1.4371022520013803e-06 0.014972111091374805 4.0633108896103955e-05 0.019342359660483997 7.919435012601791e-05']
['59866.29717738802 0.034281276524425884 6.792197829240592e-05 0.015017685709554753 4.065045683407743e-05 0.0005311419809947014 1.4377158097971426e-06 0.015017685709554751 4.065045683407743e-05 0.019263590814871133 7.915715239934578e-05']
['59866.297208925986 0.034283041403856664 6.793011220039369e-05 0.015097214793636854 4.069824804160185e-05 0.000533954746961643 1.4394060780002185e-06 0.015097214793636852 4.069824804160185e-05 0.019185826610219812 7.91886831385257e-05']
['59866.297240463944 0.0343477625413214 6.803709610381455e-05 0.015026271435297143 4.0666955335805655e-05 0.0005314456389262421 1.4382993249312885e-06 0.015026271435297143 4.0666955335805655e-05 0.01932149110602426 7.926441637029891e-05']
['59866.29727200191 0.034335426270772275 6.797755773739296e-05 0.01500360309975535 4.0661304440678446e-05 0.0005306439105588772 1.4380994653996466e-06 0.015003603099755352 4.0661304440678446e-05 0.01933182317101692 7.921041620114195e-05']
['59866.297303539875 0.03412989163040294 6.783269124880415e-05 0.015037951913560686 4.066587430828799e-05 0.000531858751338091 1.438261091403943e-06 0.015037951913560684 4.066587430828799e-05 0.019091939716842254 7.908847789225096e-05']
['59866.297335077834 0.0342731145827946 6.791874459270102e-05 0.015031284360235535 4.065402700382697e-05 0.0005316229348780851 1.437842078722324e-06 0.015031284360235535 4.065402700382697e-05 0.019241830222559063 7.915621124508453e-05']
['59866.2973666158 0.03416550358424229 6.787672312129742e-05 0.015060539303469645 4.0686309009396856e-05 0.0005326576168393255 1.4389838211132944e-06 0.015060539303469647 4.0686309009396856e-05 0.019104964280772647 7.913675051765393e-05']
['59866.29739815376 0.03420856711216084 6.790127721754121e-05 0.014986219539888561 4.063444512790706e-05 0.0005300290928963587 1.4371495115339538e-06 0.014986219539888561 4.063444512790706e-05 0.01922234757227228 7.913116692319323e-05']
['59866.297429691724 0.03434602558464694 6.798761075546856e-05 0.015056474948517784 4.067376964727408e-05 0.0005325138696879768 1.438540331898837e-06 0.015056474948517782 4.067376964727408e-05 0.019289550636129155 7.92254425898437e-05']
['59866.29746122969 0.034257531491367656 6.79271475016372e-05 0.015001754790423974 4.065399224398121e-05 0.0005305785399885546 1.4378408493442633e-06 0.015001754790423974 4.065399224398121e-05 0.01925577670094368 7.916340349607804e-05']
['59866.29749276765 0.03431551034279419 6.79566650378827e-05 0.014998754677754517 4.063821795795769e-05 0.0005304724327082932 1.4372829481010658e-06 0.014998754677754517 4.063821795795769e-05 0.019316755665039674 7.91806357758604e-05']
['59866.29752430561 0.034248498636770264 6.792470762041528e-05 0.01502595012074965 4.0656116019671794e-05 0.000531434274748793 1.4379159625440797e-06 0.01502595012074965 4.0656116019671794e-05 0.019222548516020614 7.916240064022764e-05']
['59866.29755584358 0.03421978979760554 6.789576271490066e-05 0.015000589242473402 4.064263042106023e-05 0.0005305373171623893 1.4374390070597278e-06 0.015000589242473402 4.064263042106023e-05 0.019219200555132133 7.913063883339364e-05']
['59866.29758738154 0.03435383475383131 6.800921445359074e-05 0.015055058811170967 4.07004060854896e-05 0.0005324637840749007 1.4394824031895841e-06 0.015055058811170969 4.07004060854896e-05 0.019298775942660343 7.925765771279299e-05']
['59866.2976189195 0.0341724772481566 6.78434491166262e-05 0.015052203527480174 4.0674954899794494e-05 0.0005323627990719408 1.4385822516316005e-06 0.015052203527480174 4.0674954899794494e-05 0.019120273720676425 7.910237382114751e-05']
['59866.29765045746 0.03414757724712314 6.782768079756291e-05 0.015054204000475524 4.0679141661623805e-05 0.0005324335513309923 1.4387303280406413e-06 0.015054204000475524 4.0679141661623805e-05 0.019093373246647616 7.909100358891991e-05']
['59866.29768199543 0.03419552945826813 6.786186077159255e-05 0.015039195623898317 4.067308334099784e-05 0.000531902738593204 1.4385160587796507e-06 0.015039195623898315 4.067308334099784e-05 0.019156333834369814 7.911720328630662e-05']
['59866.29771353339 0.034297241239663816 6.79578245346265e-05 0.01503226547412555 4.066759125784054e-05 0.0005316576346837145 1.4383218160724605e-06 0.01503226547412555 4.066759125784054e-05 0.019264975765538265 7.9196710122289e-05']
['59866.29774507135 0.03434273887217684 6.795539431825017e-05 0.01506335966355046 4.066687518169384e-05 0.00053275736667225 1.4382964900594876e-06 0.015063359663550458 4.066687518169384e-05 0.019279379208626386 7.919425707709072e-05']
['59866.29777660932 0.034188597633624244 6.789408183346745e-05 0.014999072978904753 4.0641920404350154e-05 0.0005304836903086158 1.4374138953554865e-06 0.014999072978904753 4.0641920404350154e-05 0.019189524654719493 7.912883192720027e-05']
['59866.29780814728 0.034302221872729695 6.797095013329668e-05 0.014965964357445209 4.061779329980814e-05 0.0005293127123610058 1.4365605735887406e-06 0.014965964357445207 4.061779329980814e-05 0.019336257515284488 7.918241720589895e-05']
['59866.29783968524 0.03429424778981749 6.795622723505881e-05 0.01497429457343368 4.0647079375372485e-05 0.000529607333483581 1.4375963566309247e-06 0.01497429457343368 4.0647079375372485e-05 0.019319953216383808 7.918480840269035e-05']
['59866.29787122321 0.034251947596028474 6.792680791853451e-05 0.01503302461460949 4.063984358150331e-05 0.0005316844837860523 1.4373404427728195e-06 0.015033024614609489 4.063984358150331e-05 0.019218922981418987 7.915584703817235e-05']
['59866.297902761165 0.0342530049163043 6.795150896002675e-05 0.01505353466920567 4.0681299361074096e-05 0.0005324098785798449 1.4388066410480235e-06 0.01505353466920567 4.0681299361074096e-05 0.01919947024709863 7.919833134384792e-05']
['59866.29793429913 0.034224968889485265 6.793110289064935e-05 0.01499933402780213 4.065173330394398e-05 0.0005304929230247061 1.4377609556835803e-06 0.01499933402780213 4.065173330394398e-05 0.019225634861683133 7.91656374985699e-05']
['59866.2979658371 0.03440217448652713 6.80212779417615e-05 0.01516121495951869 4.072595002882585e-05 0.000536218289796931 1.4403858353780337e-06 0.015161214959518691 4.072595002882585e-05 0.01924095952700844 7.928112801026983e-05']
['59866.297997375055 0.03420818205876642 6.787083833321329e-05 0.01505938719139696 4.067208466236328e-05 0.0005326168692101335 1.4384807377482617e-06 0.015059387191396961 4.067208466236328e-05 0.019148794867369458 7.912439046738761e-05']
['59866.29802891302 0.03421877807087753 6.792180328948066e-05 0.015034425011947034 4.067403641919966e-05 0.0005317340127101774 1.4385497670256444e-06 0.015034425011947034 4.067403641919966e-05 0.019184353058930497 7.916911393166709e-05']
['59866.29806045099 0.03420262041255026 6.789365899108906e-05 0.015035275978922253 4.0674272065748006e-05 0.0005317641095102916 1.4385581013174205e-06 0.015035275978922251 4.0674272065748006e-05 0.01916734443362801 7.914509043065639e-05']
['59866.298091988945 0.03415906443316145 6.786862940510412e-05 0.015044997290923623 4.0677692775923776e-05 0.0005321079305899264 1.4386790841915002e-06 0.015044997290923623 4.0677692775923776e-05 0.019114067142237824 7.912537865248927e-05']
['59866.29812352691 0.03432086634102766 6.795356538423886e-05 0.015017427422976777 4.063966072891829e-05 0.000531132845975675 1.4373339756855388e-06 0.015017427422976777 4.063966072891829e-05 0.019303438918050884 7.917871603272947e-05']
['59866.29815506487 0.034247972444098634 6.79142955555457e-05 0.015003121918656007 4.064761455795958e-05 0.0005306268922587699 1.4376152848429676e-06 0.015003121918656007 4.064761455795958e-05 0.019244850525442628 7.914910050062769e-05']
['59866.298186602835 0.03419349701155272 6.786523614586523e-05 0.014969431780769928 4.063078711294233e-05 0.0005294353473747661 1.4370201357198336e-06 0.014969431780769928 4.063078711294233e-05 0.019224065230782794 7.909836369073189e-05']
['59866.2982181408 0.03419891471237232 6.788383031149084e-05 0.015045316708565874 4.068389784399783e-05 0.0005321192276780764 1.4388985435817685e-06 0.015045316708565874 4.068389784399783e-05 0.019153598003806442 7.914160701893874e-05']
['59866.29824967876 0.03427687055016 6.792482260748003e-05 0.015026585202959132 4.06443001369629e-05 0.0005314567361872172 1.43749806117961e-06 0.015026585202959134 4.06443001369629e-05 0.019250285347200868 7.915643157622224e-05']
['59866.298281216725 0.03433843984261334 6.79827979877502e-05 0.015113190240292035 4.069998138019096e-05 0.0005345197628068149 1.4394673823123317e-06 0.015113190240292037 4.069998138019096e-05 0.019225249602321304 7.923477334220843e-05']
['59866.29831275469 0.034282248141088933 6.794409622630183e-05 0.015075485422773318 4.068519427617493e-05 0.0005331862276764856 1.438944395490517e-06 0.015075485422773318 4.068519427617493e-05 0.019206762718315618 7.919397227882346e-05']
['59866.29834429265 0.034244388526106485 6.790935960219187e-05 0.01497989965315457 4.0631111264776334e-05 0.000529805572626693 1.4370316002457656e-06 0.01497989965315457 4.0631111264776334e-05 0.019264488872951915 7.913639064419379e-05']
['59866.298375830615 0.034202456626132305 6.791389886756516e-05 0.01496323464499304 4.062168209195207e-05 0.0005292161685321209 1.4366981114759323e-06 0.014963234644993039 4.062168209195207e-05 0.019239221981139268 7.913544537925776e-05']
['59866.29840736857 0.03454467713781993 6.82523421145175e-05 0.014965184163189338 4.0626605021578356e-05 0.0005292851186338072 1.436872224494714e-06 0.014965184163189338 4.0626605021578356e-05 0.019579492974630595 7.94286046692026e-05']
['59866.29843890654 0.03429875328895665 6.795145159179137e-05 0.015045537568078127 4.06632655146344e-05 0.0005321270389854328 1.4381688242027264e-06 0.015045537568078126 4.06632655146344e-05 0.019253215720878528 7.918902029792528e-05']
['59866.298470444504 0.03427974844828591 6.79497305025288e-05 0.014995194801919276 4.062754110998279e-05 0.000530346527855855 1.4369053318495443e-06 0.014995194801919276 4.062754110998279e-05 0.01928455364636663 7.916920469481573e-05']
['59866.29850198246 0.03425342296459182 6.791816962308338e-05 0.015052409653899488 4.0674705763150745e-05 0.0005323700893027265 1.4385734402252988e-06 0.015052409653899488 4.0674705763150745e-05 0.019201013310692336 7.916634040972727e-05']
['59866.29853352043 0.03430778843553229 6.799633719100491e-05 0.015013430710331151 4.0659093877951594e-05 0.0005309914911815263 1.4380212827363147e-06 0.015013430710331153 4.0659093877951594e-05 0.019294357725201137 7.9225398619186e-05']
['59866.298565058394 0.034217809046616775 6.789024004646319e-05 0.015017590443974858 4.064317071422488e-05 0.0005311386116640466 1.4374581160214773e-06 0.015017590443974856 4.064317071422488e-05 0.01920021860264192 7.912617783813409e-05']
['59866.29859659635 0.034370753873286586 6.801509705636196e-05 0.015076340634283912 4.0667159378360114e-05 0.0005332164745963301 1.4383065414604316e-06 0.015076340634283912 4.0667159378360114e-05 0.019294413239002675 7.924563886732999e-05']
['59866.29862813432 0.03424162896895748 6.793166578585598e-05 0.015018028651190018 4.066245197734036e-05 0.0005311541100739113 1.4381400512067848e-06 0.015018028651190016 4.066245197734036e-05 0.019223600317767466 7.917162507648019e-05']
['59866.29865967228 0.03418138741853823 6.783637305214962e-05 0.015040687485601095 4.0673702140487626e-05 0.0005319555024075166 1.438537944334669e-06 0.015040687485601095 4.0673702140487626e-05 0.019140699932937138 7.909566078289958e-05']
['59866.29869121024 0.034194267138444645 6.78640217315808e-05 0.014914251136433758 4.0607437469022365e-05 0.0005274837313060778 1.4361943109977673e-06 0.014914251136433757 4.0607437469022365e-05 0.01928001600201089 7.908533001375812e-05']
['59866.29872274821 0.03435319396974917 6.800395808850928e-05 0.015072716044273116 4.067314200118139e-05 0.0005330882809481301 1.438518133459245e-06 0.015072716044273116 4.067314200118139e-05 0.01928047792547605 7.923914938937692e-05']
['59866.29875428617 0.03410519432603379 6.78011975066548e-05 0.014991625118685094 4.064314442013703e-05 0.0005302202761376344 1.4374571860583541e-06 0.014991625118685094 4.064314442013703e-05 0.019113569207348694 7.904977907428033e-05']
['59866.29878582413 0.03430231716283323 6.797974714812534e-05 0.015110276355092675 4.0716610604093533e-05 0.0005344167051994636 1.4400555207976376e-06 0.015110276355092675 4.0716610604093533e-05 0.019192040807740555 7.924069914765037e-05']
['59866.2988173621 0.03426372798247621 6.795446735467416e-05 0.015014501857187501 4.063551990850477e-05 0.000531029375251963 1.4371875241217015e-06 0.0150145018571875 4.063551990850477e-05 0.01924922612528871 7.917736489484835e-05']
['59866.298848900056 0.03431726339718987 6.79555415465327e-05 0.015023272855918887 4.066701263668768e-05 0.0005313395858750637 1.4383013515354258e-06 0.015023272855918887 4.066701263668768e-05 0.019293990541270983 7.91944539956874e-05']
['59866.29888043802 0.03427826399706364 6.791988786225607e-05 0.015089000162637874 4.067644417607922e-05 0.0005336642138218289 1.4386349240054546e-06 0.015089000162637874 4.067644417607922e-05 0.01918926383442577 7.916870769458807e-05']
['59866.29891197598 0.03418451470623378 6.787207628873598e-05 0.014982186997485745 4.065334948026846e-05 0.0005298864708837729 1.4378181162282355e-06 0.014982186997485743 4.065334948026846e-05 0.019202327708748038 7.911582372514894e-05']
['59866.298943513946 0.03419344776323034 6.78922749095554e-05 0.015024792511889483 4.067334875525377e-05 0.0005313933327105124 1.4385254458887169e-06 0.01502479251188948 4.067334875525377e-05 0.01916865525134086 7.914342860504054e-05']
['59866.29897505191 0.03433546170132103 6.798594924535682e-05 0.015085824764293673 4.069550343610642e-05 0.0005335519070789923 1.4393090074376775e-06 0.015085824764293675 4.069550343610642e-05 0.019249636937027352 7.923517712929266e-05']
['59866.29900658987 0.034286761400248986 6.79471268215393e-05 0.01498556283734427 4.0625950558278735e-05 0.0005300058667950108 1.4368490775904457e-06 0.014985562837344268 4.0625950558278735e-05 0.019301198562904718 7.916615376577325e-05']
['59866.299038127836 0.03426471842843372 6.794063673238911e-05 0.014991000023600171 4.064513405206111e-05 0.000530198167921486 1.4375275548929432e-06 0.014991000023600171 4.064513405206111e-05 0.019273718404833547 7.917043034942072e-05']
['59866.2990696658 0.03420305528483073 6.790745746485739e-05 0.015078741330399013 4.068314394869212e-05 0.0005333013818526811 1.4388718799896623e-06 0.015078741330399012 4.068314394869212e-05 0.019124313954431718 7.916148672739428e-05']
['59866.29910120376 0.03422789729095497 6.789669317415022e-05 0.015035756906923752 4.065402571146312e-05 0.0005317811188588938 1.4378420330143027e-06 0.015035756906923752 4.065402571146312e-05 0.019192140384031216 7.913729051801685e-05']
['59866.299132741726 0.03427218843699775 6.793995677210519e-05 0.015021691954423322 4.065674094413648e-05 0.0005312836729222724 1.4379380647257718e-06 0.01502169195442332 4.065674094413648e-05 0.01925049648257443 7.917580634508338e-05']
['59866.299164279684 0.03428950102769235 6.79558291098401e-05 0.015004864900721525 4.063349592787307e-05 0.0005306885376390916 1.4371159404500887e-06 0.015004864900721527 4.063349592787307e-05 0.019284636126970824 7.917749491696659e-05']
['59866.29919581765 0.034245182054038315 6.793193768661055e-05 0.0150153853719129 4.0666238974372775e-05 0.0005310606231932612 1.4382739888283812e-06 0.015015385371912899 4.0666238974372775e-05 0.019229796682125416 7.917380343382737e-05']
['59866.299227355616 0.03421036430766167 6.793477387217637e-05 0.014986404225898618 4.0629599345116804e-05 0.0005300356248277854 1.4369781270263496e-06 0.014986404225898618 4.0629599345116804e-05 0.01922396008176305 7.915742444021567e-05']
['59866.299258893574 0.03440187933697701 6.80264618194437e-05 0.015004376446456018 4.063529396104953e-05 0.0005306712621033516 1.4371795328651726e-06 0.015004376446456018 4.063529396104953e-05 0.019397502890520994 7.923904733761722e-05']
['59866.29929043154 0.03434441406204719 6.797804783772454e-05 0.014987131535262327 4.064879973025767e-05 0.0005300613481345391 1.4376572017384468e-06 0.014987131535262328 4.064879973025767e-05 0.019357282526784862 7.920441848368412e-05']
['59866.299321969505 0.03428408979344798 6.794528207420014e-05 0.015084975977300616 4.0686070082973716e-05 0.0005335218873799751 1.438975370819677e-06 0.015084975977300616 4.0686070082973716e-05 0.019199113816147362 7.919543960948302e-05']
['59866.299353507464 0.03413646515384969 6.783556391311136e-05 0.015036773565183584 4.066340890679051e-05 0.0005318170757894465 1.4381738956628252e-06 0.015036773565183582 4.066340890679051e-05 0.019099691588666104 7.90896741384782e-05']
['59866.29938504543 0.034331159521401505 6.798358884241588e-05 0.015084916812734885 4.069765577092863e-05 0.0005335197948615101 1.4393851307101537e-06 0.015084916812734883 4.069765577092863e-05 0.019246242708666622 7.923425734582014e-05']
['59866.29941658339 0.03425407647556488 6.792450712632646e-05 0.014988550338238885 4.0644996907363564e-05 0.0005301115280249818 1.4375227043914912e-06 0.014988550338238883 4.0644996907363564e-05 0.019265526137325996 7.915651863209983e-05']
['59866.29944812135 0.03428981834614677 6.793276924153959e-05 0.014977067165720474 4.064390989761662e-05 0.0005297053938763858 1.4374842592860657e-06 0.014977067165720474 4.064390989761662e-05 0.019312751180426295 7.916305039972781e-05']
['59866.29947965932 0.03418030798602249 6.787476041259317e-05 0.01504698521179598 4.066471926778731e-05 0.00053217823890844 1.4382202402027975e-06 0.01504698521179598 4.066471926778731e-05 0.01913332277422651 7.912396915091456e-05']
['59866.29951119728 0.03421122638387251 6.788510215109519e-05 0.014988159805802934 4.0626698003687395e-05 0.0005300977157655109 1.4368755130641079e-06 0.014988159805802932 4.0626698003687395e-05 0.019223066578069575 7.911330915053071e-05']
['59866.29954273524 0.03419398897469705 6.789296017323373e-05 0.0150092123607473 4.0642888821099344e-05 0.0005308422975842019 1.4374481460916212e-06 0.015009212360747298 4.0642888821099344e-05 0.01918477661394975 7.912836692873514e-05']
['59866.29957427321 0.0342959317623629 6.7956336880558e-05 0.015048087264817704 4.068458591306859e-05 0.0005322172160608748 1.4389228790470573e-06 0.015048087264817702 4.068458591306859e-05 0.019247844497545193 7.920416184230312e-05']
['59866.29960581117 0.03431172941436893 6.795405105392166e-05 0.015005130254833828 4.0630658609702795e-05 0.0005306979226210123 1.437015590847439e-06 0.01500513025483383 4.0630658609702795e-05 0.019306599159535098 7.917451277840116e-05']
['59866.29963734913 0.03427958235934989 6.792655006591511e-05 0.015116304667811139 4.0712622030912665e-05 0.0005346299131478297 1.4399144538781667e-06 0.015116304667811139 4.0712622030912665e-05 0.019163277691538756 7.919301608405394e-05']
['59866.29966888709 0.03435702359157783 6.800622908237823e-05 0.015132917459259865 4.0716454467621394e-05 0.0005352174704539674 1.4400499985995624e-06 0.015132917459259865 4.0716454467621394e-05 0.019224106132317963 7.92633386782237e-05']
['59866.29970042506 0.03425290738065184 6.792297035078162e-05 0.015029828635740525 4.065379970788861e-05 0.0005315714491560494 1.437834039772961e-06 0.015029828635740525 4.065379970788861e-05 0.019223078744911318 7.915972038835335e-05']
['59866.29973196302 0.03425735472629802 6.791558298498383e-05 0.015007948152862036 4.064831393495159e-05 0.0005307975853766385 1.4376400202441593e-06 0.015007948152862037 4.064831393495159e-05 0.019249406573435983 7.915056435645045e-05']
['59866.29976350098 0.034321229228116305 6.796753579348943e-05 0.01506414555691876 4.067371340132726e-05 0.0005327851619643185 1.4385383426054001e-06 0.01506414555691876 4.067371340132726e-05 0.019257083671197543 7.920818697390173e-05']
['59866.29979503895 0.0342946134798147 6.7936706232564e-05 0.01504087954394847 4.0672784347476385e-05 0.0005319622950820381 1.4385054840470079e-06 0.01504087954394847 4.0672784347476385e-05 0.019253733935866234 7.918125687500812e-05']
['59866.29982657691 0.03425849246931805 6.79204102966759e-05 0.015077921222372427 4.0700069816180127e-05 0.0005332723764646144 1.4394705100956257e-06 0.015077921222372427 4.0700069816180127e-05 0.019180571246945624 7.918129714718453e-05']
['59866.29985811487 0.03419825892740868 6.787548723216268e-05 0.01503955222722503 4.068376440256415e-05 0.0005319153508559083 1.4388938240564833e-06 0.01503955222722503 4.068376440256415e-05 0.01915870670018365 7.913438224290896e-05']
['59866.29988965284 0.034325625430607465 6.798525936002173e-05 0.014997281809191458 4.06509623517674e-05 0.0005304203406388852 1.4377336888280713e-06 0.014997281809191458 4.06509623517674e-05 0.019328343621416007 7.921171775926989e-05']
['59866.299921190795 0.03429623428943534 6.793503512489367e-05 0.01505864169229797 4.067545555305127e-05 0.0005325905025730947 1.4385999586183984e-06 0.01505864169229797 4.067545555305127e-05 0.01923759259713737 7.918119525410554e-05']
['59866.29995272876 0.03421432699993089 6.784620377404241e-05 0.015085231180663366 4.068328331296983e-05 0.0005335309133525696 1.438876808992704e-06 0.015085231180663367 4.068328331296983e-05 0.019129095819267524 7.910901912975697e-05']
['59866.29998426673 0.034405574864649444 6.803503171099796e-05 0.015124692413611822 4.0702520776037356e-05 0.0005349265689712913 1.4395571950682029e-06 0.015124692413611824 4.0702520776037356e-05 0.01928088245103762 7.928089768311312e-05']
['59866.300015804685 0.034268720547661 6.791016105901623e-05 0.015075913414021936 4.069212364516094e-05 0.000533201364770445 1.439189471785324e-06 0.015075913414021935 4.069212364516094e-05 0.019192807133639068 7.916842111482704e-05']
['59866.30004734265 0.03426542648518246 6.788865320564059e-05 0.01503345401145448 4.066741995441057e-05 0.0005316996705928141 1.438315757452983e-06 0.01503345401145448 4.066741995441057e-05 0.01923197247372798 7.913727490774575e-05']
['59866.30007888062 0.03433756365979343 6.794518976347054e-05 0.015003412931248303 4.0650829206326634e-05 0.0005306371847237845 1.437728979771394e-06 0.015003412931248301 4.0650829206326634e-05 0.01933415072854513 7.917726142748283e-05']
['59866.300110418575 0.03431934502860936 6.794338403316059e-05 0.015035660298100448 4.0638143473645555e-05 0.0005317777020207216 1.437280313757408e-06 0.01503566029810045 4.0638143473645555e-05 0.01928368473050891 7.916919943300009e-05']
['59866.30014195654 0.03423420064881119 6.792484670647697e-05 0.014953904761621239 4.062569253840476e-05 0.0005288861914083225 1.4368399520041437e-06 0.014953904761621239 4.062569253840476e-05 0.019280295887189953 7.914689946121321e-05']
['59866.3001734945 0.034298085522921275 6.794043636372208e-05 0.0150755656362421 4.0697892355389316e-05 0.0005331890646476099 1.439393498173793e-06 0.0150755656362421 4.0697892355389316e-05 0.019222519886679175 7.919735687170265e-05']
['59866.300205032465 0.034315825768222695 6.796538817940417e-05 0.015069863383075172 4.067490053628438e-05 0.0005329873886968814 1.438580328915743e-06 0.015069863383075172 4.067490053628438e-05 0.019245962385147523 7.920695376047307e-05']
['59866.30023657043 0.034374949481674626 6.800441612326605e-05 0.015013759023613186 4.0653127112000035e-05 0.0005310031028885749 1.4378102515595451e-06 0.015013759023613188 4.0653127112000035e-05 0.019361190458061436 7.922927082998277e-05']
['59866.30026810839 0.03406432833044939 6.775928845659078e-05 0.014981538341741452 4.063676643195381e-05 0.0005298635293797576 1.437231610870278e-06 0.014981538341741454 4.063676643195381e-05 0.019082789988707934 7.901055599214984e-05']
['59866.300299646355 0.03433020219862826 6.79802841320291e-05 0.015119936726024208 4.072690103832658e-05 0.0005347583709296536 1.4404194704586934e-06 0.015119936726024208 4.072690103832658e-05 0.01921026547260405 7.924644786270899e-05']
['59866.30033118432 0.034189687752034646 6.787820419512858e-05 0.015031132182370965 4.0670599239585194e-05 0.0005316175526871128 1.4384282016643252e-06 0.015031132182370966 4.0670599239585194e-05 0.019158555569663678 7.912994532579003e-05']
['59866.30036272228 0.03431632303318513 6.797445379679368e-05 0.01498796812395918 4.0646814972713355e-05 0.0005300909364070811 1.4375870052997764e-06 0.014987968123959182 4.0646814972713355e-05 0.01932835490922595 7.920031525441318e-05']
['59866.300394260245 0.03420440367047282 6.788658630677022e-05 0.015024506988640074 4.0653928208143206e-05 0.0005313832343912877 1.4378385845397847e-06 0.015024506988640073 4.0653928208143206e-05 0.019179896681832745 7.912856929794335e-05']
['59866.3004257982 0.03427941793069693 6.797251895470265e-05 0.014945830633887273 4.0611254512931483e-05 0.0005286006275549856 1.4363293113102417e-06 0.014945830633887273 4.0611254512931483e-05 0.019333587296809656 7.918040998985488e-05']
['59866.30045733617 0.03415463721441311 6.784677324667971e-05 0.014970961846053692 4.0621743546493855e-05 0.0005294894623643581 1.4367002849857326e-06 0.01497096184605369 4.0621743546493855e-05 0.019183675368359417 7.907787736619825e-05']
['59866.300488874134 0.034305188936899794 6.796680081512274e-05 0.015017933436458054 4.063685736124669e-05 0.0005311507425416342 1.4372348268361523e-06 0.015017933436458054 4.063685736124669e-05 0.01928725550044174 7.91886367431646e-05']
['59866.30052041209 0.034284198687512625 6.793539826862195e-05 0.015051374831299662 4.067915544229214e-05 0.000532333489940063 1.4387308154320825e-06 0.01505137483129966 4.067915544229214e-05 0.019232823856212965 7.918340751328176e-05']
['59866.30055195006 0.03428048335136153 6.794157154719329e-05 0.01493932755803762 4.061600876717793e-05 0.0005283706282957025 1.4364974586578056e-06 0.01493932755803762 4.061600876717793e-05 0.019341155793323912 7.915628409973436e-05']
['59866.300583488024 0.03422419725279294 6.788793698671551e-05 0.0150376237601551 4.0656638990164483e-05 0.0005318471452855152 1.437934458841636e-06 0.0150376237601551 4.0656638990164483e-05 0.01918657349263784 7.91311208203752e-05']
['59866.30061502598 0.034308135701361056 6.795258692876147e-05 0.01504501040805021 4.066315946710404e-05 0.0005321083945133787 1.4381650735385796e-06 0.015045010408050207 4.066315946710404e-05 0.019263125293310847 7.918994006916546e-05']
['59866.30064656395 0.03426521128093866 6.79329015482694e-05 0.015087780948447338 4.069416255900875e-05 0.0005336210929406931 1.4392615836114168e-06 0.015087780948447338 4.069416255900875e-05 0.01917743033249132 7.918897637389874e-05']
['59866.30067810191 0.03420315143583891 6.785044115264571e-05 0.014968745929032773 4.061617289195557e-05 0.0005294110903316114 1.4365032633843937e-06 0.014968745929032773 4.061617289195557e-05 0.019234405506806135 7.907816300975804e-05']
['59866.30070963987 0.034303649998177914 6.797115288397748e-05 0.01506796841519249 4.066964984556332e-05 0.000532920367917875 1.4383946237195424e-06 0.01506796841519249 4.066964984556332e-05 0.01923568158298542 7.92092042816854e-05']
['59866.30074117784 0.03432055111574115 6.796952615934573e-05 0.015093691231909578 4.0694324169932075e-05 0.0005338301264580463 1.4392672994285957e-06 0.015093691231909576 4.0694324169932075e-05 0.019226859883831576 7.922048034424874e-05']
['59866.3007727158 0.034240999819820574 6.78938852934464e-05 0.0150350340274206 4.0659546883453756e-05 0.0005317555522264079 1.4380373045285185e-06 0.0150350340274206 4.0659546883453756e-05 0.019205965792399974 7.913771801743737e-05']
['59866.30080425376 0.03433297365743778 6.797036721921634e-05 0.015071017618946912 4.067577709024193e-05 0.0005330282114400995 1.4386113306702389e-06 0.015071017618946912 4.067577709024193e-05 0.019261956038490867 7.921167629718595e-05']
['59866.30083579173 0.03427679404807938 6.795669911516134e-05 0.015033526624346651 4.067909113177184e-05 0.00053170223874853 1.438728540912705e-06 0.015033526624346651 4.067909113177184e-05 0.01924326742373273 7.920165029805609e-05']
['59866.300867329686 0.034356516336502364 6.800127558125403e-05 0.015022157041478922 4.064727638451194e-05 0.0005313001220120206 1.4376033244038977e-06 0.01502215704147892 4.064727638451194e-05 0.019334359295023446 7.922357324784435e-05']
['59866.30089886765 0.03441900621836218 6.805123673039351e-05 0.014934756604436994 4.0600883804682885e-05 0.0005282089638823284 1.4359625225366577e-06 0.014934756604436994 4.0600883804682885e-05 0.019484249613925184 7.924268159431141e-05']
['59866.30093040561 0.03432721430329631 6.797924600750195e-05 0.015108159614617386 4.071020352837055e-05 0.0005343418408194893 1.439828916848287e-06 0.015108159614617386 4.071020352837055e-05 0.019219054688678926 7.923697722067534e-05']
['59866.300961943576 0.03424263860780873 6.791017512465414e-05 0.01497681376221282 4.063687031245956e-05 0.0005296964315606436 1.4372352848916073e-06 0.01497681376221282 4.063687031245956e-05 0.019265824845595914 7.91400474744162e-05']
['59866.30099348154 0.03430202693776226 6.799084778806207e-05 0.01496028886939219 4.061907534475064e-05 0.0005291119830325399 1.436605916653155e-06 0.01496028886939219 4.061907534475064e-05 0.01934173806837007 7.920015571198049e-05']
['59866.3010250195 0.03425447668492956 6.790587734593731e-05 0.014995004906418528 4.06503745747144e-05 0.000530339811676385 1.437712900467311e-06 0.014995004906418528 4.06503745747144e-05 0.019259471778511034 7.914329492247633e-05']
['59866.301056557466 0.03443852523231204 6.806853410801335e-05 0.015067298920095184 4.068475158238353e-05 0.0005328966893725167 1.4389287384004776e-06 0.015067298920095184 4.068475158238353e-05 0.01937122631221686 7.930053181999497e-05']
['59866.30108809543 0.034196250053478185 6.788717952308815e-05 0.014969197269169125 4.062440407269552e-05 0.0005294270532235482 1.4367943818515593e-06 0.014969197269169125 4.062440407269552e-05 0.01922705278430906 7.911391375644135e-05']
['59866.30111963339 0.03428651929158095 6.793919014462822e-05 0.015026838749822309 4.066992978340403e-05 0.0005314657035731239 1.438404524495344e-06 0.015026838749822309 4.066992978340403e-05 0.01925968054175864 7.918192183885766e-05']
['59866.301151171356 0.03431718628792787 6.799631702047659e-05 0.014986703069422421 4.0647773234001525e-05 0.0005300461942553463 1.437620896859951e-06 0.01498670306942242 4.0647773234001525e-05 0.01933048321850545 7.921957205913173e-05']
['59866.301182709314 0.0342143371560191 6.790207458218926e-05 0.01499975591552872 4.064994140273643e-05 0.000530507844250732 1.4376975801425325e-06 0.01499975591552872 4.064994140273643e-05 0.01921458124049038 7.913980963213835e-05']
['59866.30121424728 0.03430676747160917 6.794320162455074e-05 0.015093014506919352 4.067988377395386e-05 0.0005338061922075334 1.438756574895232e-06 0.01509301450691935 4.067988377395386e-05 0.01921375296468982 7.919047664243946e-05']
['59866.301245785246 0.034268318176451706 6.794446886367171e-05 0.015003967478727197 4.0653152471370875e-05 0.0005306567978287723 1.4378111484638168e-06 0.015003967478727197 4.0653152471370875e-05 0.01926435069772451 7.917783562984645e-05']
['59866.301277323204 0.034280697637827456 6.793910625848115e-05 0.014971456095370745 4.063121121781699e-05 0.0005295069428581201 1.4370351353614318e-06 0.014971456095370745 4.063121121781699e-05 0.01930924154245671 7.916196993650455e-05']
['59866.30130886117 0.03425546462186888 6.793020505175087e-05 0.015066046540382443 4.068291458712714e-05 0.000532852395500981 1.438863767983702e-06 0.015066046540382445 4.068291458712714e-05 0.019189418081486435 7.918088341055815e-05']
['59866.301340399135 0.03430260921520491 6.792529382181375e-05 0.015115082705759115 4.069860509157596e-05 0.0005345866950809741 1.4394187060598431e-06 0.015115082705759115 4.069860509157596e-05 0.019187526509445794 7.918473335927692e-05']
['59866.301371937094 0.034212855552328954 6.787899536830854e-05 0.015013709031601088 4.065848547755088e-05 0.0005310013347828326 1.4379997649738364e-06 0.01501370903160109 4.065848547755088e-05 0.019199146520727864 7.912439859827732e-05']
['59866.30140347506 0.03429027739137804 6.795445406373162e-05 0.015095817936394895 4.0684767582653626e-05 0.0005339053432427873 1.4389293042942725e-06 0.015095817936394897 4.0684767582653626e-05 0.019194459454983145 7.920263973097333e-05']
['59866.30143501302 0.0341921733697689 6.787766554329912e-05 0.014968263779377152 4.063160093996879e-05 0.0005293940377758331 1.4370489189629631e-06 0.014968263779377152 4.063160093996879e-05 0.01922390959039175 7.910944617776596e-05']
['59866.30146655098 0.0342173146261039 6.791065469522358e-05 0.014994632308750973 4.065261273910735e-05 0.0005303266337295903 1.4377920593398865e-06 0.014994632308750973 4.065261273910735e-05 0.019222682317352923 7.914854353460793e-05']
['59866.30149808895 0.03433056548121936 6.797994489249818e-05 0.015030388668432116 4.064760104260968e-05 0.0005315912562607515 1.4376148068352464e-06 0.015030388668432116 4.064760104260968e-05 0.01930017681278725 7.920543149371925e-05']
['59866.30152962691 0.03432811054132806 6.796453017991716e-05 0.015106687755828532 4.071611430262685e-05 0.0005342897844635383 1.4400379677239294e-06 0.015106687755828532 4.071611430262685e-05 0.01922142278549953 7.922739000169982e-05']
['59866.30156116487 0.034274342324565436 6.792017355123e-05 0.015029933764809397 4.066903950963677e-05 0.0005315751673362658 1.4383730375018408e-06 0.015029933764809399 4.066903950963677e-05 0.019244408559756038 7.916514858108712e-05']
['59866.30159270284 0.034255091342507676 6.792634066667532e-05 0.014958476938633397 4.06169510286313e-05 0.0005290478990910282 1.436530784339581e-06 0.014958476938633397 4.06169510286313e-05 0.019296614403874278 7.91436950566971e-05']
['59866.3016242408 0.034249898218424425 6.792740498601177e-05 0.015026964833580627 4.0663645900908984e-05 0.0005314701628738749 1.438182277615145e-06 0.015026964833580625 4.0663645900908984e-05 0.0192229333848438 7.916858244334155e-05']
['59866.30165577876 0.03422123014485595 6.789808772225034e-05 0.015024484266364024 4.065112124686584e-05 0.0005313824307551651 1.4377393085925934e-06 0.015024484266364022 4.065112124686584e-05 0.01919674587849193 7.913699498316694e-05']
['59866.30168731672 0.03423702992906893 6.791624476510692e-05 0.01497164909007702 4.0634335528980824e-05 0.0005295137686495633 1.437145635264872e-06 0.01497164909007702 4.0634335528980824e-05 0.01926538083899191 7.914395445563551e-05']
['59866.30171885469 0.03427747487233637 6.792684082898744e-05 0.015069989326529674 4.0666784966392254e-05 0.0005329918430354001 1.43829329934589e-06 0.015069989326529674 4.0666784966392254e-05 0.0192074855458067 7.916971077697191e-05']
['59866.30175039265 0.03431908567708035 6.795935865422935e-05 0.015026253215915318 4.0655053702645754e-05 0.0005314449945474248 1.4378783907650075e-06 0.015026253215915318 4.0655053702645754e-05 0.019292832461165033 7.919158932777639e-05']
['59866.30178193061 0.03426834911297009 6.793967187826166e-05 0.015117590895568982 4.070834862237952e-05 0.0005346754041490747 1.4397633129688552e-06 0.015117590895568982 4.070834862237952e-05 0.019150758217401108 7.920207486226006e-05']
['59866.30181346858 0.03428731131729145 6.793614370179998e-05 0.015056669966663194 4.066656233883448e-05 0.0005325207670439401 1.4382854255067146e-06 0.015056669966663194 4.066656233883448e-05 0.019230641350628255 7.917757835100747e-05']
['59866.30184500654 0.03429382854121343 6.794577521260353e-05 0.015007564226786759 4.066054797002487e-05 0.0005307840067693802 1.438072710723242e-06 0.015007564226786757 4.066054797002487e-05 0.01928626431442667 7.918275399646277e-05']
['59866.3018765445 0.034176688219302497 6.786415479884722e-05 0.014980835893209518 4.0647112679690535e-05 0.0005298386853450631 1.4375975345302233e-06 0.014980835893209516 4.0647112679690535e-05 0.01919585232609298 7.910582327336816e-05']
['59866.30190808247 0.03421001603159186 6.789682454787853e-05 0.015030263877632451 4.066822864048469e-05 0.0005315868426890584 1.4383443588721176e-06 0.01503026387763245 4.066822864048469e-05 0.01917975215395941 7.914470041916982e-05']
['59866.301939620425 0.03430554828059013 6.796963739450136e-05 0.015081036482556615 4.06947704283335e-05 0.0005333825562551323 1.4392830825909253e-06 0.015081036482556615 4.06947704283335e-05 0.019224511798033517 7.92208050183458e-05']
['59866.30197115839 0.034243814152216175 6.79110697203235e-05 0.015051307498288721 4.065722481917968e-05 0.0005323311085219465 1.4379551783046526e-06 0.015051307498288721 4.065722481917968e-05 0.019192506653927452 7.91512685972623e-05']
['59866.30200269636 0.03430393710563673 6.796324192552718e-05 0.015081138753764071 4.068318108032908e-05 0.0005333861733591773 1.4388731932526773e-06 0.01508113875376407 4.068318108032908e-05 0.01922279835187266 7.920936482413289e-05']
['59866.302034234315 0.034222174161868964 6.786244041508275e-05 0.015072594953202666 4.068551935558571e-05 0.0005330839982275909 1.4389558928227667e-06 0.015072594953202666 4.068551935558571e-05 0.0191495792086663 7.912409433493945e-05']
['59866.30206577228 0.03419907864502226 6.789268357678122e-05 0.015063293647984867 4.067924960232884e-05 0.0005327550318492311 1.4387341456621449e-06 0.015063293647984867 4.067924960232884e-05 0.019135784997037393 7.914681188440574e-05']
['59866.30209731025 0.034218668659889644 6.79126776698236e-05 0.014981916468504088 4.0638683291614675e-05 0.0005298769028782884 1.4372994059125537e-06 0.014981916468504088 4.0638683291614675e-05 0.019236752191385556 7.914312584148746e-05']
['59866.302128848205 0.03427079319573696 6.792624379397562e-05 0.014964146248578097 4.0625105290422124e-05 0.0005292484099136103 1.43681918235542e-06 0.014964146248578097 4.0625105290422124e-05 0.019306646947158865 7.914779703704011e-05']
['59866.30216038617 0.03430746810851882 6.796992728051878e-05 0.015021386625836412 4.0650803726575174e-05 0.0005312728741325226 1.4377280786095287e-06 0.015021386625836412 4.0650803726575174e-05 0.019286081482682408 7.919847762511316e-05']
['59866.30219192413 0.03414310279789102 6.785124105982841e-05 0.014997340356895903 4.065000243736574e-05 0.000530422411340345 1.437699738800967e-06 0.014997340356895903 4.065000243736574e-05 0.019145762440995116 7.909623007145653e-05']
['59866.302223462095 0.034195718403485516 6.788982468629325e-05 0.015066608480821642 4.06821854706689e-05 0.0005328722700784524 1.4388379807640534e-06 0.01506660848082164 4.06821854706689e-05 0.019129109922663874 7.91458685630876e-05']
['59866.30225500006 0.03419326100275585 6.789489760727274e-05 0.014986943511768566 4.064262022841987e-05 0.0005300546981637725 1.4374386465688174e-06 0.014986943511768568 4.064262022841987e-05 0.01920631749098728 7.91298913188538e-05']
['59866.30228653802 0.034291775453567395 6.792187852361103e-05 0.015072354575486776 4.068346924591434e-05 0.0005330754966049925 1.4388833850254157e-06 0.015072354575486778 4.068346924591434e-05 0.019219420878080616 7.917402510962437e-05']
['59866.302318075985 0.03419509121028084 6.785919646053706e-05 0.014990953880935503 4.0644427082807656e-05 0.0005301965359585595 1.4375025509704316e-06 0.014990953880935503 4.0644427082807656e-05 0.019204137329345335 7.910018961519267e-05']
['59866.30234961395 0.034283235962462924 6.793545816050082e-05 0.015036350834199547 4.0676258838604435e-05 0.0005318021247392893 1.4386283690331763e-06 0.015036350834199545 4.0676258838604435e-05 0.019246885128263377 7.918197085563293e-05']
['59866.30238115191 0.03433253480479473 6.799412262138134e-05 0.0150202665335694 4.065887128631324e-05 0.0005312332589722973 1.4380134101675293e-06 0.015020266533569398 4.065887128631324e-05 0.01931226827122533 7.92233837028464e-05']
['59866.302412689874 0.03429028869298247 6.792988153720213e-05 0.015152534821633357 4.0721554715977795e-05 0.0005359112927188932 1.440230382985544e-06 0.015152534821633357 4.0721554715977795e-05 0.019137753871349115 7.920046606014821e-05']
['59866.30244422783 0.03421053519248114 6.789933095488407e-05 0.01502629192178936 4.065675042461723e-05 0.0005314463634876872 1.4379384000291881e-06 0.01502629192178936 4.065675042461723e-05 0.01918424327069178 7.91409533630376e-05']
['59866.3024757658 0.034180039924010766 6.785732294401305e-05 0.015044148620695339 4.068394751529517e-05 0.0005320779150206184 1.4389003003445467e-06 0.015044148620695339 4.068394751529517e-05 0.019135891303315427 7.911889700037136e-05']
['59866.302507303764 0.034143940076181996 6.786192147283179e-05 0.015027995482213003 4.065462168926942e-05 0.000531506614612638 1.4378631114173797e-06 0.015027995482213003 4.065462168926942e-05 0.019115944593968995 7.910776605796932e-05']
['59866.30253884172 0.03419132820581898 6.789025082602805e-05 0.014960188732662088 4.062222857489797e-05 0.0005291084414201885 1.4367174393564113e-06 0.014960188732662087 4.062222857489797e-05 0.019231139473156893 7.911543219633108e-05']
['59866.30257037969 0.03423688934024704 6.791628329198887e-05 0.01500124611980465 4.0653746488662034e-05 0.0005305605494455611 1.4378321575278547e-06 0.015001246119804652 4.0653746488662034e-05 0.019235643220442387 7.915395530080659e-05']
['59866.30260191765 0.03432277200868351 6.795196626359328e-05 0.01509619531268913 4.0691023096885096e-05 0.0005339186901989279 1.439150547852388e-06 0.01509619531268913 4.0691023096885096e-05 0.019226576695994375 7.92037188505676e-05']
['59866.30263345561 0.03413065003889232 6.78372918256824e-05 0.014986788692409386 4.064755435841864e-05 0.0005300492225490392 1.4376131557197425e-06 0.014986788692409386 4.064755435841864e-05 0.01914386134648293 7.908300599726463e-05']
['59866.30266499358 0.03418317460227871 6.788726588541463e-05 0.015041976958157245 4.066867272511511e-05 0.000532001108170026 1.4383600651530247e-06 0.015041976958157245 4.066867272511511e-05 0.019141197644121463 7.913672858173696e-05']
['59866.30269653154 0.0343182881503716 6.795403704140954e-05 0.01506635906990162 4.067273417787683e-05 0.0005328634489716119 1.4385037096603942e-06 0.01506635906990162 4.067273417787683e-05 0.01925192908046998 7.91961012659682e-05']
['59866.3027280695 0.03428687737565812 6.794206425526479e-05 0.015092016920913671 4.070341058244646e-05 0.000533770909819986 1.4395886655322927e-06 0.015092016920913671 4.070341058244646e-05 0.01919486045474445 7.920158917793092e-05']
['59866.30275960747 0.03438490330693921 6.802665708625643e-05 0.015096035327332231 4.071984973362212e-05 0.0005339130318744007 1.440170081570035e-06 0.015096035327332233 4.071984973362212e-05 0.01928886797960698 7.928260992588405e-05']
['59866.30279114543 0.03428482429698172 6.795540441965703e-05 0.014987892022034318 4.063617505962e-05 0.0005300882448520765 1.4372106953524707e-06 0.01498789202203432 4.063617505962e-05 0.0192969322749474 7.917850537434528e-05']
['59866.30282268339 0.03438147232885269 6.801327799028255e-05 0.015087163673835476 4.069531140299274e-05 0.000533599261317199 1.4393022156556154e-06 0.015087163673835476 4.069531140299274e-05 0.019294308655017217 7.925852858317523e-05']
['59866.30285422135 0.03431039920490302 6.796573983587719e-05 0.015037423138656707 4.0665833644544805e-05 0.0005318400497514796 1.4382596532182248e-06 0.015037423138656707 4.0665833644544805e-05 0.01927297606624631 7.920259981492991e-05']
['59866.302885759316 0.03423492968438186 6.790668674439789e-05 0.014995396839635312 4.0650143599533474e-05 0.0005303536734783434 1.437704731391361e-06 0.014995396839635312 4.0650143599533474e-05 0.019239532844746547 7.914387076245687e-05']
['59866.30291729728 0.03425034700197467 6.791723128356368e-05 0.015011382449456165 4.0656745538182945e-05 0.0005309190487719716 1.4379382272069281e-06 0.015011382449456163 4.0656745538182945e-05 0.019238964552518507 7.915630905355327e-05']
['59866.30294883524 0.034361464830878125 6.799709966173871e-05 0.014989984724917178 4.062563242598099e-05 0.0005301622590761276 1.4368378259620582e-06 0.014989984724917178 4.062563242598099e-05 0.019371480105960945 7.920888569105959e-05']
['59866.302980373206 0.03426755110260547 6.793969813929787e-05 0.015097866288221401 4.070094379763766e-05 0.0005339777888690938 1.439501420866545e-06 0.0150978662882214 4.070094379763766e-05 0.019169684814384073 7.919829170681255e-05']
['59866.30301191117 0.03422010097018615 6.790336841075746e-05 0.014968535279374967 4.062165916765806e-05 0.0005294036401239891 1.436697300694886e-06 0.01496853527937497 4.062165916765806e-05 0.01925156569081118 7.912639657573465e-05']
['59866.30304344913 0.03433714471717488 6.798049542443507e-05 0.015025346337023683 4.0656538598476845e-05 0.0005314129202677828 1.4379309082120063e-06 0.015025346337023683 4.0656538598476845e-05 0.0193117983801512 7.92104910284053e-05']
['59866.303074987096 0.034299241758317923 6.795091253374635e-05 0.015029120817369032 4.065887052147863e-05 0.0005315464152021306 1.4380133831170383e-06 0.015029120817369032 4.065887052147863e-05 0.01927012094094889 7.918630100119092e-05']
['59866.303106525054 0.034286640049322754 6.793309564796683e-05 0.014971904165594225 4.064054800342384e-05 0.0005295227901005466 1.4373653566018583e-06 0.014971904165594224 4.064054800342384e-05 0.01931473588372853 7.916160449570491e-05']
['59866.30313806302 0.0342239670462657 6.790784102531193e-05 0.014990204219889502 4.063456061017538e-05 0.0005301700221227563 1.4371535958836967e-06 0.014990204219889502 4.063456061017538e-05 0.019233762826376198 7.913685859762855e-05']
['59866.303169600986 0.034210263906170144 6.789569338223291e-05 0.014948508749621597 4.061278467652664e-05 0.0005286953465232721 1.436383429776888e-06 0.014948508749621595 4.061278467652664e-05 0.01926175515654855 7.91152542752414e-05']
['59866.303201138944 0.03418918462465984 6.786618498264909e-05 0.015044781310825513 4.066046063862011e-05 0.0005321002918565434 1.43806962200663e-06 0.015044781310825513 4.066046063862011e-05 0.01914440331383433 7.911442424390081e-05']
['59866.30323267691 0.03426076438795498 6.791268007381101e-05 0.015087157532266412 4.0681328434598514e-05 0.0005335990441036268 1.4388076693136068e-06 0.01508715753226641 4.0681328434598514e-05 0.01917360685568857 7.916503393551651e-05']
['59866.303264214876 0.03431721150181469 6.794681176640826e-05 0.015057066924229997 4.066747102269412e-05 0.00053253480654593 1.438317563624041e-06 0.015057066924229997 4.066747102269412e-05 0.01926014457758469 7.918719864095068e-05']
['59866.303295752834 0.03425389554474058 6.790847225255581e-05 0.014982649799006298 4.0638393815827896e-05 0.0005299028391392543 1.4372891678009156e-06 0.014982649799006298 4.0638393815827896e-05 0.01927124574573428 7.913936855703652e-05']
['59866.3033272908 0.034165025721410495 6.788656695294189e-05 0.01500062137434576 4.064689677371811e-05 0.000530538453594904 1.4375898984185001e-06 0.01500062137434576 4.064689677371811e-05 0.019164404347064734 7.912494037905847e-05']
['59866.30335882876 0.034230332849640735 6.791415323289573e-05 0.015066415579604059 4.0703877405572594e-05 0.0005328654475934955 1.4396051760229756e-06 0.01506641557960406 4.0703877405572594e-05 0.019163917270036676 7.917788734987266e-05']
['59866.303390366724 0.034327215025550646 6.799268256630196e-05 0.015004771125876167 4.065257807842123e-05 0.0005306852210323857 1.4377908334688805e-06 0.015004771125876165 4.065257807842123e-05 0.019322443899674482 7.921891811293586e-05']
['59866.30342190469 0.03422512982152761 6.791959706288314e-05 0.014946922733812536 4.061667343033198e-05 0.0005286392526886425 1.4365209663081296e-06 0.014946922733812538 4.061667343033198e-05 0.01927820708771507 7.91377648517485e-05']
['59866.30345344265 0.03427494233757815 6.796945336122047e-05 0.015055020185863506 4.0687523711329225e-05 0.0005324624179840982 1.4390267824059434e-06 0.015055020185863506 4.0687523711329225e-05 0.01921992215171464 7.921692480766406e-05']
['59866.30348498061 0.034192604580986 6.787042773330978e-05 0.014988066022685615 4.062686873405062e-05 0.0005300943988662442 1.4368815514154951e-06 0.014988066022685613 4.062686873405062e-05 0.019204538558300385 7.910080545630496e-05']
['59866.30351651858 0.034147320984918066 6.78441041107768e-05 0.014972640588493178 4.064133286960721e-05 0.0005295488357326743 1.4373931155646914e-06 0.014972640588493178 4.064133286960721e-05 0.019174680396424885 7.908565230186913e-05']
['59866.30354805654 0.034214900003959485 6.79185424370701e-05 0.015010195509699434 4.06585024670125e-05 0.0005308770693654303 1.4380003658531246e-06 0.015010195509699434 4.06585024670125e-05 0.019204704494260053 7.915833645066167e-05']
['59866.3035795945 0.03433990541962896 6.795907359444575e-05 0.015091610906747295 4.068914127548223e-05 0.0005337565500063095 1.439083992034992e-06 0.015091610906747295 4.068914127548223e-05 0.019248294512881667 7.920884989413396e-05']
['59866.30361113246 0.034242147150373124 6.79141213729583e-05 0.015002298819345873 4.065669231648153e-05 0.0005305977810756891 1.4379363448742927e-06 0.015002298819345871 4.065669231648153e-05 0.01923984833102725 7.91536133854795e-05']
['59866.30364267043 0.03425117550758279 6.792964010672084e-05 0.015030879491944179 4.064819012996136e-05 0.0005316086155914472 1.4376356415383426e-06 0.015030879491944179 4.064819012996136e-05 0.019220296015638613 7.916256290614967e-05']
['59866.30367420839 0.03427711168832124 6.79471225052217e-05 0.015024704398393589 4.0669442579646786e-05 0.0005313902163330848 1.4383872931872866e-06 0.01502470439839359 4.0669442579646786e-05 0.01925240728992765 7.918847780124829e-05']
['59866.30370574635 0.03419730108124275 6.787085471388476e-05 0.015033123407590967 4.066180950450738e-05 0.0005316879778730178 1.4381173283785248e-06 0.015033123407590967 4.066180950450738e-05 0.01916417767365178 7.91191233000853e-05']
['59866.30373728432 0.034291078853644616 6.795839492220201e-05 0.015034377817487506 4.0668028654413136e-05 0.0005317323435476173 1.4383372858117092e-06 0.015034377817487506 4.0668028654413136e-05 0.01925670103615711 7.919742416921235e-05']
['59866.30376882228 0.03424261357924542 6.790697689201014e-05 0.015006759155725087 4.0661385676029723e-05 0.0005307555332051568 1.4381023385124709e-06 0.015006759155725089 4.0661385676029723e-05 0.019235854423520334 7.914989447691534e-05']
['59866.30380036024 0.03424745002762392 6.792356155901738e-05 0.015003636497522836 4.064725509830957e-05 0.0005306450917632736 1.4376025715584915e-06 0.015003636497522838 4.064725509830957e-05 0.019243813530101087 7.915686680186802e-05']
['59866.30383189821 0.03427211082346066 6.794513164129617e-05 0.014998238346978388 4.06458038488598e-05 0.0005304541712426728 1.437551244108805e-06 0.014998238346978386 4.06458038488598e-05 0.019273872476482275 7.917463157017563e-05']
['59866.303863436166 0.03438059553818674 6.800930080415974e-05 0.015000302820387224 4.06438655690556e-05 0.0005305271870533169 1.4374826914839309e-06 0.015000302820387225 4.06438655690556e-05 0.019380292717799515 7.922871199423948e-05']
['59866.30389497413 0.03418513807933736 6.786724457319276e-05 0.014972857423642202 4.0633721198941796e-05 0.0005295565047072972 1.4371239077843385e-06 0.0149728574236422 4.0633721198941796e-05 0.01921228065569516 7.910159407010009e-05']
['59866.3039265121 0.034170313078894066 6.785241567299669e-05 0.01507424211426957 4.070708357163899e-05 0.000533142254633339 1.4397185709513848e-06 0.015074242114269568 4.070708357163899e-05 0.019096070964624498 7.912658823410452e-05']
['59866.303958050055 0.03429118688639856 6.79505222734291e-05 0.015008258107057191 4.064939118470914e-05 0.0005308085477638143 1.4376781201605723e-06 0.015008258107057191 4.064939118470914e-05 0.019282928779341367 7.918109926566627e-05']
['59866.30398958802 0.03418426290204766 6.784322895300644e-05 0.015000037709818604 4.0659983079365524e-05 0.000530517810684992 1.4380527318030772e-06 0.015000037709818604 4.0659983079365524e-05 0.019184225192229055 7.909448741084515e-05']
['59866.30402112599 0.03426644987445706 6.789865584046671e-05 0.015088397906142808 4.068558216005605e-05 0.0005336429133555626 1.4389581140765229e-06 0.01508839790614281 4.068558216005605e-05 0.01917805196831425 7.915518972654173e-05']
['59866.304052663945 0.034290713921110355 6.794915517828074e-05 0.014997824395830122 4.063184793648839e-05 0.000530439530715685 1.4370576546778566e-06 0.01499782439583012 4.063184793648839e-05 0.019292889525280237 7.917092115275653e-05']
['59866.30408420191 0.03416867162933896 6.787146847833847e-05 0.015077530468879207 4.068635652389902e-05 0.0005332585563868419 1.4389855015950476e-06 0.015077530468879208 4.068635652389902e-05 0.019091141160459752 7.9132268011197e-05']
['59866.30411573987 0.03424923515953375 6.791703195652965e-05 0.014978731101312745 4.064014564584899e-05 0.0005297642435596073 1.437351126113652e-06 0.014978731101312747 4.064014564584899e-05 0.019270504058221005 7.914761315352529e-05']
['59866.304147277835 0.03423473621096561 6.789816819716321e-05 0.015008018408183988 4.066685041195304e-05 0.0005308000701503645 1.4382956140091126e-06 0.015008018408183986 4.066685041195304e-05 0.019226717802781623 7.914514493611362e-05']
['59866.3041788158 0.03427739272759341 6.793452901933306e-05 0.015091341824323725 4.0683915051290264e-05 0.0005337470331623517 1.4388991521652457e-06 0.015091341824323725 4.0683915051290264e-05 0.019186050903269688 7.918510704027121e-05']
['59866.30421035376 0.0342781468619384 6.792137014969262e-05 0.015006806244004744 4.065414781194574e-05 0.0005307571986123722 1.4378463514354947e-06 0.015006806244004744 4.065414781194574e-05 0.019271340617933654 7.915852611896642e-05']
['59866.304241891725 0.03415496989390795 6.786564455805504e-05 0.014998405931472315 4.064782743668936e-05 0.0005304600983316938 1.437622813887884e-06 0.014998405931472315 4.064782743668936e-05 0.019156563962435633 7.910746858927508e-05']
['59866.30427342969 0.03418847735158979 6.787948657107352e-05 0.01497069955144805 4.0626324066056454e-05 0.0005294801855903505 1.4368622877258029e-06 0.01497069955144805 4.0626324066056454e-05 0.019217777800141736 7.910829858031828e-05']
['59866.30430496765 0.03418518429186996 6.78608220302081e-05 0.014967174523369726 4.062581089925076e-05 0.0005293555132251943 1.436844138162746e-06 0.014967174523369726 4.062581089925076e-05 0.019218009768500233 7.909202031707912e-05']
['59866.304336505615 0.0342479903199828 6.79301725309911e-05 0.015039901475505282 4.066996911519317e-05 0.0005319277029870569 1.4384059155728245e-06 0.015039901475505282 4.066996911519317e-05 0.01920808884447752 7.917420494025175e-05']
['59866.30436804357 0.034236672529540546 6.791035081693589e-05 0.014951301332820573 4.061909852615441e-05 0.0005287941139499639 1.4366067365275988e-06 0.014951301332820575 4.061909852615441e-05 0.01928537119671997 7.913107425756802e-05']
['59866.30439958154 0.034383800055061385 6.801002855238808e-05 0.015043213277516666 4.066042282242903e-05 0.0005320448340227576 1.4380682845324654e-06 0.015043213277516666 4.066042282242903e-05 0.01934058677754472 7.923783167020251e-05']
['59866.304431119504 0.034297286193866176 6.794538485605509e-05 0.015044283770089243 4.065331107065283e-05 0.0005320826949526396 1.4378167577659712e-06 0.015044283770089244 4.065331107065283e-05 0.019253002423776932 7.917870309776932e-05']
['59866.30446265746 0.03424228460774798 6.791386858465263e-05 0.015004260679783195 4.0658121632152534e-05 0.0005306671676948572 1.4379868965752435e-06 0.015004260679783195 4.0658121632152534e-05 0.01923802392796479 7.915413066156673e-05']
['59866.30449419543 0.03421711874461301 6.790123198288439e-05 0.01505640166989934 4.0677951109112336e-05 0.0005325112779870105 1.438688220859039e-06 0.01505640166989934 4.0677951109112336e-05 0.019160717074713667 7.915347756876393e-05']
['59866.304525733394 0.03424722633936517 6.791599436616387e-05 0.015108731843689785 4.070823996566962e-05 0.0005343620792829232 1.4397594700238595e-06 0.015108731843689785 4.070823996566962e-05 0.01913849449567538 7.918170932638006e-05']
['59866.30455727135 0.034410503043939736 6.801556891286974e-05 0.015107821947482674 4.0695504034750334e-05 0.0005343298982875761 1.4393090286103748e-06 0.015107821947482674 4.0695504034750334e-05 0.01930268109645706 7.926059338147624e-05']
['59866.30458880932 0.0341994992549778 6.787439788278043e-05 0.014991136325117681 4.0631327009690984e-05 0.0005302029886015444 1.4370392306612352e-06 0.014991136325117681 4.0631327009690984e-05 0.019208362929860116 7.91065017714627e-05']
['59866.30462034728 0.03422258804190996 6.790964144337575e-05 0.015055910206832048 4.0692819099249774e-05 0.0005324938960366757 1.4392140684421977e-06 0.015055910206832047 4.0692819099249774e-05 0.019166677835077913 7.916833285608662e-05']
['59866.30465188524 0.034359200511519854 6.800412390091703e-05 0.014981928517369814 4.0636901609086695e-05 0.0005298773290197415 1.437236391783365e-06 0.014981928517369814 4.0636901609086695e-05 0.01937727199415004 7.922069578031909e-05']
['59866.30468342321 0.034284182888626565 6.795480732922892e-05 0.014993184286462234 4.065753302895451e-05 0.000530275420417377 1.43796607899558e-06 0.014993184286462236 4.065753302895451e-05 0.01929099860216433 7.918895649743815e-05']
['59866.30471496117 0.03429123432927 6.793223394764628e-05 0.014970415683706358 4.063746006205918e-05 0.000529470145822734 1.437256143016933e-06 0.014970415683706358 4.063746006205918e-05 0.01932081864556364 7.915927974289053e-05']
['59866.30474649913 0.034372232130646926 6.796311659829828e-05 0.015068368812631655 4.0673142367010726e-05 0.0005329345290804626 1.438518146397811e-06 0.015068368812631655 4.0673142367010726e-05 0.01930386331801527 7.920410171046074e-05']
['59866.3047780371 0.034395690749228006 6.802874221668984e-05 0.015106681024222099 4.069690120052558e-05 0.000534289546381663 1.4393584432413636e-06 0.015106681024222099 4.069690120052558e-05 0.019289009725005905 7.927261528996112e-05']
['59866.30480957506 0.034298630697122606 6.79422709312701e-05 0.01508901548193062 4.068518860442831e-05 0.0005336647556309767 1.4389441948935146e-06 0.015089015481930618 4.068518860442831e-05 0.01920961521519199 7.919240336721707e-05']
['59866.30484111302 0.03421881248147252 6.789915426444651e-05 0.014885758712982396 4.058012630459063e-05 0.0005264760179654219 1.435228376148677e-06 0.014885758712982396 4.058012630459063e-05 0.01933305376849013 7.910146522488463e-05']
['59866.30487265098 0.034263771338376756 6.793710061771306e-05 0.015108932774079192 4.071238435922036e-05 0.0005343691857417436 1.4399060479615749e-06 0.015108932774079193 4.071238435922036e-05 0.01915483856429756 7.920194366651716e-05']
['59866.304904188946 0.03416969331420386 6.78579381821837e-05 0.015030013921888795 4.066247474962025e-05 0.0005315780023130235 1.4381408566114316e-06 0.015030013921888793 4.066247474962025e-05 0.019139679392315066 7.910838531470965e-05']
['59866.30493572691 0.03430650786169944 6.794561904761523e-05 0.01505829686966299 4.067336502486683e-05 0.0005325783069671286 1.4385260213085702e-06 0.015058296869662988 4.067336502486683e-05 0.019248210992036455 7.918920235871627e-05']
['59866.30496726487 0.034201364641219055 6.788181804920163e-05 0.015029582077975051 4.066684739831289e-05 0.0005315627289589087 1.4382955074233955e-06 0.01502958207797505 4.066684739831289e-05 0.019171782563244005 7.913111713468087e-05']
['59866.304998802836 0.03429669041419493 6.792806285374444e-05 0.015023304245118982 4.0655333565594996e-05 0.0005313406960409203 1.4378882888920654e-06 0.015023304245118982 4.0655333565594996e-05 0.01927338616907595 7.916487775770295e-05']
['59866.3050303408 0.03434290398163122 6.799227242198304e-05 0.01502230839048765 4.064600066049636e-05 0.0005313054748882142 1.4375582048965418e-06 0.01502230839048765 4.064600066049636e-05 0.01932059559114357 7.921519095980407e-05']
['59866.30506187876 0.03428773675008054 6.792386949252359e-05 0.014942482508238316 4.063052650743507e-05 0.0005284822118334024 1.437010918685461e-06 0.014942482508238318 4.063052650743507e-05 0.01934525424184222 7.914854219193655e-05']
['59866.305093416726 0.034182141756145416 6.788748234780415e-05 0.015019188281604609 4.065665088922326e-05 0.000531195123610054 1.437934879684752e-06 0.015019188281604609 4.065665088922326e-05 0.019162953474540806 7.913073689187785e-05']
['59866.305124954684 0.034301838605151194 6.796415629856429e-05 0.015019859371929303 4.064480405053263e-05 0.0005312188585750398 1.4375158834763907e-06 0.015019859371929303 4.064480405053263e-05 0.01928197923322189 7.919044536862935e-05']
['59866.30515649265 0.03431459048029054 6.795402162289581e-05 0.015075770285563558 4.0676560161982854e-05 0.0005331963026367455 1.438639026167653e-06 0.015075770285563558 4.0676560161982854e-05 0.019238820194726985 7.91980530148084e-05']
['59866.305188030616 0.03433228647530716 6.798920941332598e-05 0.015049982729195832 4.06935205108335e-05 0.0005322842543998156 1.4392388758023515e-06 0.01504998272919583 4.06935205108335e-05 0.019282303746111326 7.923695607615629e-05']
['59866.305219568574 0.03430946369541785 6.798376205487522e-05 0.01498765590576963 4.064136106549756e-05 0.0005300798939474832 1.437394112790319e-06 0.01498765590576963 4.064136106549756e-05 0.019321807789648218 7.92055056949328e-05']
['59866.30525110654 0.03429550128700117 6.791971212808252e-05 0.015090159647308787 4.068058016304375e-05 0.0005337052222033434 1.4387812046210032e-06 0.015090159647308785 4.068058016304375e-05 0.019205341639692387 7.917068206074411e-05']
['59866.305282644505 0.03429508810671138 6.793122175320004e-05 0.015097942398416962 4.070195063977994e-05 0.0005339804807166146 1.4395370306229576e-06 0.015097942398416964 4.070195063977994e-05 0.019197145708294415 7.919153789872705e-05']
['59866.305314182464 0.03423104421021409 6.792249691606287e-05 0.015055996896366537 4.066158854724634e-05 0.0005324969620517709 1.4381095136140122e-06 0.015055996896366535 4.066158854724634e-05 0.019175047313847556 7.916331454972135e-05']
['59866.30534572043 0.03427800198064593 6.791922239858053e-05 0.015069634691961372 4.068555338891266e-05 0.0005329793004032809 1.4389570965054808e-06 0.015069634691961372 4.068555338891266e-05 0.019208367288684556 7.917281746780208e-05']
['59866.30537725839 0.03438098097441877 6.801934922537963e-05 0.015037067837738602 4.068250926458714e-05 0.0005318274835520571 1.4388494326313047e-06 0.015037067837738604 4.068250926458714e-05 0.01934391313668017 7.925716642113424e-05']
['59866.305408796354 0.03426488054441135 6.79299258100935e-05 0.015019281451564817 4.065442174790007e-05 0.000531198418823324 1.4378560399379885e-06 0.015019281451564817 4.065442174790007e-05 0.01924559909284653 7.916600803514686e-05']
['59866.30544033432 0.03429800356540581 6.795917286874954e-05 0.015051470028742261 4.068092657912524e-05 0.000532336856860854 1.438793456583611e-06 0.015051470028742261 4.068092657912524e-05 0.01924653353666355 7.920471554358845e-05']
['59866.30547187228 0.0342568417153324 6.79143494349854e-05 0.0150335372831476 4.067022443790456e-05 0.0005317026157264985 1.4384149457665137e-06 0.015033537283147602 4.067022443790456e-05 0.0192233044321848 7.91607605762276e-05']
['59866.30550341024 0.03422882874102309 6.792471183136456e-05 0.015004346670411976 4.064687160098375e-05 0.0005306702089912194 1.4375890081151435e-06 0.015004346670411976 4.064687160098375e-05 0.019224482070611115 7.915765691530274e-05']
['59866.30553494821 0.03427679575172004 6.791146366151078e-05 0.0150915245881896 4.068755108663777e-05 0.0005337534971118344 1.4390277506094264e-06 0.0150915245881896 4.068755108663777e-05 0.01918527116353044 7.916718834262372e-05']
['59866.30556648617 0.034225604465700755 6.789769054477325e-05 0.015041028831375551 4.065430351646911e-05 0.0005319675750446963 1.4378518583565072e-06 0.015041028831375553 4.065430351646911e-05 0.019184575634325202 7.913828893603262e-05']
['59866.30559802413 0.034178541165548255 6.785481860996147e-05 0.014966776015529953 4.0630334037171366e-05 0.0005293414188935142 1.4370041114423794e-06 0.014966776015529953 4.0630334037171366e-05 0.019211765150018302 7.908919302005109e-05']
['59866.30562956209 0.034166591807206985 6.785017410396716e-05 0.015084639838624885 4.068930717567042e-05 0.0005335099989062402 1.4390898595538832e-06 0.015084639838624885 4.068930717567042e-05 0.0190819519685821 7.9115522145624e-05']
['59866.30566110006 0.034355163825352156 6.801865921620425e-05 0.01498472409238374 4.063803386225923e-05 0.0005299762022602416 1.4372764370476407e-06 0.01498472409238374 4.063803386225923e-05 0.01937043973296842 7.9233754156674e-05']
['59866.30569263802 0.03431794964086807 6.794988324811162e-05 0.01506507717447759 4.067775419742656e-05 0.0005328181111953316 1.4386812565327846e-06 0.01506507717447759 4.067775419742656e-05 0.01925287246639048 7.91951155058079e-05']
['59866.30572417598 0.034186053794028774 6.784958181282634e-05 0.015017050798230529 4.0663216091641746e-05 0.000531119525600107 1.43816707622193e-06 0.015017050798230529 4.0663216091641746e-05 0.019169002995798247 7.910159856217172e-05']
['59866.30575571395 0.034190608735554726 6.790928652685292e-05 0.01505724068680236 4.067504280229007e-05 0.0005325409521397779 1.4385853605464185e-06 0.01505724068680236 4.067504280229007e-05 0.019133368048752368 7.915889276356977e-05']
['59866.30578725191 0.03420736051261559 6.788646021556685e-05 0.015038818620252333 4.067411783675242e-05 0.0005318894048167991 1.4385526465825281e-06 0.015038818620252333 4.067411783675242e-05 0.019168541892363257 7.913883586708716e-05']
['59866.30581878987 0.034284618347729674 6.793112334879347e-05 0.015008552875550618 4.064850439990287e-05 0.0005308189730666579 1.437646756563822e-06 0.015008552875550616 4.064850439990287e-05 0.019276065472179058 7.916399705281382e-05']
['59866.30585032784 0.034247021650545315 6.790721895723707e-05 0.014977753622363667 4.064415780707935e-05 0.0005297296723137153 1.4374930272897173e-06 0.014977753622363667 4.064415780707935e-05 0.019269268028181647 7.914125315126686e-05']
['59866.305881865796 0.03420492231442892 6.787004192335e-05 0.015004625752633078 4.061812209896021e-05 0.0005306800795056677 1.4365722024799264e-06 0.015004625752633078 4.061812209896021e-05 0.01920029656179584 7.909598241076045e-05']
['59866.30591340376 0.03417668275457673 6.789929963525423e-05 0.014975937069784473 4.063804451867513e-05 0.0005296654249087453 1.4372768139412555e-06 0.014975937069784473 4.063804451867513e-05 0.019200745684792256 7.913131840971599e-05']
['59866.30594494173 0.034208772490241 6.790203220709841e-05 0.014979949226857052 4.065398654528505e-05 0.0005298073259377591 1.4378406477941158e-06 0.014979949226857053 4.065398654528505e-05 0.019228823263383946 7.914185112744109e-05']
['59866.305976479685 0.03426762127610562 6.791860817613385e-05 0.015063346027716067 4.068238548191661e-05 0.0005327568844032619 1.4388450547148861e-06 0.015063346027716067 4.068238548191661e-05 0.019204275248389555 7.917066265405675e-05']
['59866.30600801765 0.03433750107076016 6.798590620560184e-05 0.014990458242901 4.06427965879346e-05 0.0005301790063489648 1.4374448840107132e-06 0.014990458242900998 4.06427965879346e-05 0.019347042827859165 7.920808264997405e-05']
['59866.30603955562 0.03429081631792577 6.793450936602663e-05 0.015046812194562784 4.067109301106945e-05 0.0005321721196755726 1.4384456652582091e-06 0.015046812194562786 4.067109301106945e-05 0.019244004123362985 7.91785032033179e-05']
['59866.306071093575 0.03423572178435713 6.792987978423503e-05 0.01498405451036435 4.064304649058439e-05 0.0005299525206406435 1.4374537225089366e-06 0.01498405451036435 4.064304649058439e-05 0.01925166727399278 7.916012756139562e-05']
['59866.30610263154 0.034215641350562875 6.790289683526376e-05 0.015013989201719615 4.065308224147806e-05 0.0005310112437737814 1.4378086645894626e-06 0.015013989201719613 4.065308224147806e-05 0.019201652148843264 7.91421284421442e-05']
['59866.3061341695 0.03430871455560617 6.797912194348775e-05 0.015069178853536019 4.0664474594560844e-05 0.000532963178416915 1.43821158665759e-06 0.015069178853536019 4.0664474594560844e-05 0.01923953570207015 7.921338595375949e-05']
['59866.306165707465 0.034153139411698424 6.786546252380773e-05 0.015009693296709882 4.0641380411537854e-05 0.0005308593072143698 1.4373947970165282e-06 0.01500969329670988 4.0641380411537854e-05 0.019143446114988544 7.910399993252986e-05']
['59866.30619724543 0.0343096004961769 6.79581821037354e-05 0.01496676378272072 4.0638766597670095e-05 0.0005293409862463903 1.4373023522615558e-06 0.01496676378272072 4.0638766597670095e-05 0.019342836713456178 7.918221937672856e-05']
['59866.30622878339 0.03415304041138192 6.7819150063263e-05 0.014961134453464996 4.060584280924404e-05 0.0005291418894514258 1.4361379114452629e-06 0.014961134453464996 4.060584280924404e-05 0.01919190595791692 7.904600929555155e-05']
['59866.306260321355 0.03428505616852745 6.792531852806385e-05 0.0150451463564928 4.066958141209844e-05 0.0005321132027059662 1.4383922033808292e-06 0.0150451463564928 4.066958141209844e-05 0.01923990981203465 7.916984116047118e-05']
['59866.30629185932 0.034210154835575615 6.787969420593357e-05 0.015083407197025766 4.0689915711108655e-05 0.0005334664031276712 1.4391113820923369e-06 0.015083407197025767 4.0689915711108655e-05 0.019126747638549848 7.914115317625957e-05']
['59866.30632339728 0.03440493188711942 6.803308567146184e-05 0.014976149183013508 4.063268848916613e-05 0.0005296729268796111 1.4370873831475437e-06 0.014976149183013508 4.063268848916613e-05 0.01942878270410591 7.924339795742029e-05']
['59866.306354935245 0.03429665666971072 6.795844851608155e-05 0.015065137032566563 4.069521575534293e-05 0.0005328202282421637 1.4392988328120015e-06 0.015065137032566565 4.069521575534293e-05 0.019231519637144152 7.921143421304034e-05']
['59866.3063864732 0.03443846009326016 6.804411276649283e-05 0.015069647236142564 4.06702172106835e-05 0.000532979744062935 1.4384146901558568e-06 0.015069647236142562 4.06702172106835e-05 0.019368812857117598 7.927211268878462e-05']
['59866.30641801117 0.03418787930895924 6.788390496072012e-05 0.0150336888781687 4.066772305452348e-05 0.0005317079773035999 1.4383264774265877e-06 0.0150336888781687 4.066772305452348e-05 0.019154190430790537 7.913335738584268e-05']
['59866.306449549134 0.034368492649810824 6.798694258160757e-05 0.014985090651100513 4.0644897714432324e-05 0.0005299891666228434 1.4375191961591964e-06 0.014985090651100513 4.0644897714432324e-05 0.01938340199871031 7.921005032072301e-05']
['59866.30648108709 0.034218365432173374 6.789046426198845e-05 0.015002944382115888 4.065657936847758e-05 0.0005306206131881167 1.4379323501558169e-06 0.015002944382115888 4.065657936847758e-05 0.019215421050057486 7.913325839148573e-05']
['59866.30651262506 0.034324159911531496 6.797772048455e-05 0.01506415446462923 4.066067083296654e-05 0.0005327854770101303 1.4380770561109063e-06 0.01506415446462923 4.066067083296654e-05 0.019260005446902265 7.921023061992979e-05']
['59866.306544163024 0.03434827557503571 6.79914753166467e-05 0.014989418411259793 4.064911217118048e-05 0.0005301422298277024 1.4376682520756223e-06 0.014989418411259793 4.064911217118048e-05 0.019358857163775917 7.921610338838556e-05']
['59866.30657570098 0.03441119514166616 6.80300309843667e-05 0.01496966650350203 4.062735453470451e-05 0.0005294436489932261 1.4368987330989228e-06 0.01496966650350203 4.062735453470451e-05 0.019441528638164125 7.923804043653822e-05']
['59866.30660723895 0.03417696298922547 6.78840236938048e-05 0.014960429056149622 4.06280600567292e-05 0.0005291169411248513 1.4369236858361871e-06 0.014960429056149622 4.06280600567292e-05 0.019216533933075847 7.911308322164069e-05']
['59866.30663877691 0.03427924336124073 6.793372632552577e-05 0.015066805841000593 4.068651822938185e-05 0.0005328792502669079 1.4389912207565845e-06 0.015066805841000591 4.068651822938185e-05 0.01921243752024014 7.91857559040845e-05']
['59866.30667031487 0.03423467945419179 6.786140790010663e-05 0.015115337590909602 4.070032640760156e-05 0.0005345957097991121 1.4394795851607538e-06 0.015115337590909604 4.070032640760156e-05 0.019119341863282187 7.913082365216453e-05']
['59866.30670185284 0.03419665400055624 6.78655085150448e-05 0.015028859630881606 4.067452644280601e-05 0.0005315371776197878 1.4385670980654629e-06 0.015028859630881606 4.067452644280601e-05 0.019167794369674637 7.912107397749441e-05']
['59866.3067333908 0.03434456774843801 6.80108592141864e-05 0.015014553722307549 4.0672589904564784e-05 0.0005310312096053474 1.4384986070357789e-06 0.015014553722307547 4.0672589904564784e-05 0.019330014026130465 7.924478872832452e-05']
['59866.30676492876 0.03415244408024812 6.784203130741888e-05 0.015004398061056369 4.065853988683149e-05 0.0005306720265634602 1.438001689308494e-06 0.015004398061056369 4.065853988683149e-05 0.019148046019191747 7.909271823401868e-05']
['59866.30679646673 0.03435811041015107 6.800914675479819e-05 0.015017402711376084 4.065277306629289e-05 0.0005311319719815856 1.437797729754129e-06 0.015017402711376082 4.065277306629289e-05 0.019340707698774988 7.923314963003292e-05']
['59866.30682800469 0.03421578595798455 6.788479487036956e-05 0.01505210332170689 4.065975180774646e-05 0.0005323592550176864 1.4380445522427726e-06 0.01505210332170689 4.065975180774646e-05 0.019163682636277664 7.91300245902887e-05']
['59866.30685954265 0.03431404445643524 6.796146849885935e-05 0.01502441626939247 4.066256818385855e-05 0.0005313800258542456 1.438144161171627e-06 0.015024416269392472 4.066256818385855e-05 0.019289628187042766 7.919725785548636e-05']
['59866.30689108061 0.03436985285846343 6.802371273810445e-05 0.015002421791978866 4.0649858970227686e-05 0.0005306021303428905 1.4376946646889242e-06 0.015002421791978868 4.0649858970227686e-05 0.019367431066484565 7.924415769617059e-05']
['59866.306922618576 0.034235773568102895 6.790762291400897e-05 0.015011635400362898 4.0665519636907543e-05 0.0005309279950802308 1.4382485474698605e-06 0.0150116354003629 4.0665519636907543e-05 0.019224138167739997 7.915257252402445e-05']
['59866.30695415654 0.03418995826218403 6.786185768118513e-05 0.015064338578334113 4.0669411665938215e-05 0.0005327919887004021 1.4383861998385026e-06 0.015064338578334113 4.0669411665938215e-05 0.019125619683849918 7.911531313971383e-05']
['59866.3069856945 0.03423289479175362 6.790215596457505e-05 0.014921974121006012 4.059988228992546e-05 0.0005277568760105437 1.4359271011979415e-06 0.014921974121006012 4.059988228992546e-05 0.01931092067074761 7.911417841697705e-05']
['59866.307017232466 0.03432970212947296 6.798482742343053e-05 0.01502913278905312 4.066628742022982e-05 0.0005315468386138417 1.4382757022500748e-06 0.01502913278905312 4.066628742022982e-05 0.019300569340419835 7.921921289900812e-05']
['59866.30704877043 0.034273565850874904 6.793657865796965e-05 0.014973667943535315 4.06329415823754e-05 0.0005295851709845112 1.4370963344887255e-06 0.014973667943535314 4.06329415823754e-05 0.01929989790733959 7.916068886377399e-05']
['59866.30708030839 0.03424699174753012 6.79449202341454e-05 0.014965212940909606 4.063799899212945e-05 0.0005292861364374587 1.4372752037690806e-06 0.014965212940909606 4.063799899212945e-05 0.019281778806620513 7.917044364981602e-05']
['59866.307111846356 0.03421996482163158 6.79008319174536e-05 0.01501169773596378 4.066522348445412e-05 0.0005309301997511221 1.4382380732194446e-06 0.015011697735963779 4.066522348445412e-05 0.0192082670856678 7.91465942168258e-05']
['59866.307143384314 0.0342778763577161 6.791267340608996e-05 0.015028044308370021 4.066040566397726e-05 0.0005315083414846916 1.4380676776763732e-06 0.015028044308370021 4.066040566397726e-05 0.019249832049346077 7.915427845619865e-05']
['59866.30717492228 0.0341466519522553 6.78338459694104e-05 0.015015345889504636 4.065931349913144e-05 0.0005310592267887188 1.4380290502466214e-06 0.015015345889504634 4.065931349913144e-05 0.019131306062750666 7.908609506874358e-05']
['59866.307206460246 0.03435227416030499 6.798190986058211e-05 0.015061745601602066 4.067342482524327e-05 0.0005327002809083515 1.4385281363142391e-06 0.015061745601602065 4.067342482524327e-05 0.019290528558702922 7.922037336005825e-05']
['59866.307237998204 0.034263332366407585 6.79229738241828e-05 0.01501429844767395 4.0661831884568524e-05 0.0005310221811120622 1.4381181199112709e-06 0.015014298447673949 4.0661831884568524e-05 0.019249033918733637 7.916384872736756e-05']
['59866.30726953617 0.03428485591079737 6.796213850215981e-05 0.015123180648310223 4.0711491919879346e-05 0.0005348731012111704 1.4398744843765677e-06 0.015123180648310225 4.0711491919879346e-05 0.019161675262487146 7.922296285881484e-05']
['59866.307301074135 0.03431064624951036 6.79742143599983e-05 0.015001908283565863 4.065279922174768e-05 0.0005305839686979462 1.437798654814111e-06 0.015001908283565861 4.065279922174768e-05 0.019308737965944497 7.920318113827706e-05']
['59866.307332612094 0.034274320697728164 6.794179443965244e-05 0.015092433052734338 4.069048354399742e-05 0.0005337856274724831 1.4391314650725808e-06 0.015092433052734338 4.069048354399742e-05 0.019181887644993824 7.91947149923801e-05']
['59866.30736415006 0.034226209574126844 6.790676062214778e-05 0.01497929429479113 4.0639382462394825e-05 0.0005297841624542744 1.437324134020493e-06 0.014979294294791128 4.0639382462394825e-05 0.019246915279335718 7.913840752200213e-05']
['59866.30739568802 0.03423186670804224 6.789984706772925e-05 0.015041518131594794 4.065769492618643e-05 0.0005319848804999293 1.437971804938854e-06 0.015041518131594796 4.065769492618643e-05 0.019190348576447448 7.914188138104796e-05']
['59866.307427225984 0.0342966107930821 6.798006875265365e-05 0.014967381754603151 4.062564458765397e-05 0.000529362842530786 1.4368382560932518e-06 0.014967381754603151 4.062564458765397e-05 0.019329229038478946 7.919427217784058e-05']
['59866.30745876395 0.034246160282420904 6.790818988229365e-05 0.015004956573014743 4.0641953831721424e-05 0.0005306917798832272 1.4374150776069024e-06 0.015004956573014745 4.0641953831721424e-05 0.019241203709406157 7.914095440635919e-05']
['59866.30749030191 0.03430787926001521 6.79607732309295e-05 0.015008741685626822 4.0653486815509425e-05 0.0005308256508570876 1.4378229734687822e-06 0.015008741685626822 4.0653486815509425e-05 0.01929913757438839 7.919199889133132e-05']
['59866.30752183987 0.034243355401497234 6.791631115678077e-05 0.0150050071355809 4.064998388937835e-05 0.0005306935681681915 1.4376990828001053e-06 0.0150050071355809 4.064998388937835e-05 0.019238348265916333 7.915204679192689e-05']
['59866.30755337784 0.03436792602109838 6.798706438233769e-05 0.01507997028284966 4.0687485147976146e-05 0.0005333448471543134 1.439025418506329e-06 0.01507997028284966 4.0687485147976146e-05 0.01928795573824872 7.923201607301754e-05']
['59866.3075849158 0.03413277246821027 6.781669010284507e-05 0.014998988579442787 4.063402855987271e-05 0.0005304807052882677 1.4371347784535537e-06 0.014998988579442787 4.063402855987271e-05 0.01913378388876748 7.905838180427093e-05']
['59866.30761645376 0.03430576172893492 6.794326948538814e-05 0.015029648017077365 4.066168027748177e-05 0.0005315650610775924 1.4381127579074343e-06 0.015029648017077367 4.066168027748177e-05 0.019276113711857557 7.918118533687296e-05']
['59866.30764799172 0.03442691856102218 6.803410018786958e-05 0.015056230940417392 4.066846647458142e-05 0.000532505239666792 1.4383527705325909e-06 0.015056230940417394 4.066846647458142e-05 0.019370687620604787 7.926262015456736e-05']
['59866.30767952969 0.034146502181877196 6.784725786823108e-05 0.01492810607833375 4.0614917227654256e-05 0.0005279737496371078 1.4364588533443007e-06 0.01492810607833375 4.0614917227654256e-05 0.019218396103543447 7.907478676321203e-05']
['59866.30771106765 0.034272262337113786 6.792588325912885e-05 0.014996836827981553 4.064573486493124e-05 0.0005304046026479654 1.4375488043014216e-06 0.014996836827981554 4.064573486493124e-05 0.01927542550913223 7.915807842060777e-05']
['59866.30774260561 0.03428705671428504 6.795172567502902e-05 0.015030742396456768 4.065970922566276e-05 0.000531603766830448 1.4380430462096376e-06 0.01503074239645677 4.065970922566276e-05 0.019256314317828267 7.918742940978602e-05']
['59866.30777414358 0.03422411433021464 6.791594273122496e-05 0.015069094426387155 4.068497057582578e-05 0.0005329601924173433 1.4389364837091087e-06 0.015069094426387155 4.068497057582578e-05 0.019155019903827487 7.916970448237658e-05']
['59866.30780568154 0.03423840863630268 6.789398964181333e-05 0.014990289755048623 4.0646947324871275e-05 0.0005301730473101745 1.4375916862998123e-06 0.014990289755048623 4.0646947324871275e-05 0.019248118881254057 7.913133485739714e-05']
['59866.3078372195 0.034289128136646516 6.794726902991276e-05 0.015002263881242029 4.06194291040843e-05 0.0005305965453930383 1.436618428330181e-06 0.01500226388124203 4.06194291040843e-05 0.019286864255404483 7.916292938847749e-05']
['59866.30786875747 0.03434246584098889 6.800518151365029e-05 0.015053374102576423 4.0664704975435466e-05 0.0005324041996970137 1.4382197347142545e-06 0.015053374102576423 4.0664704975435466e-05 0.01928909173841247 7.923586904580354e-05']
['59866.307900295425 0.03423212106869265 6.79072629093848e-05 0.014951022002732864 4.0610758101676235e-05 0.0005287842346690276 1.4363117543535575e-06 0.014951022002732866 4.0610758101676235e-05 0.01928109906595979 7.912414315136165e-05']
['59866.30793183339 0.034292226730420886 6.797542234347055e-05 0.015078085853055883 4.0685907364611934e-05 0.0005332781990839602 1.4389696158348752e-06 0.015078085853055881 4.0685907364611934e-05 0.019214140877365005 7.922121622933455e-05']
['59866.30796337136 0.03422828556092981 6.788633213428915e-05 0.015071960436487368 4.06896026086279e-05 0.0005330615567894322 1.4391003083573354e-06 0.015071960436487366 4.06896026086279e-05 0.01915632512444244 7.914668566083534e-05']
['59866.307994909315 0.0342466088987031 6.790185582049849e-05 0.014976547200033098 4.06360540135116e-05 0.0005296870038520783 1.4372064142221388e-06 0.0149765472000331 4.06360540135116e-05 0.019270061698670002 7.913248959597314e-05']
['59866.30802644728 0.03429227470937193 6.794842377875382e-05 0.014992827864880744 4.064546692665635e-05 0.000530262814582595 1.4375393279234457e-06 0.014992827864880745 4.064546692665635e-05 0.019299446844491183 7.917728383635697e-05']
['59866.30805798524 0.03419204566663968 6.787677888583017e-05 0.015007345022221447 4.066449204726091e-05 0.0005307762539937985 1.438212203920587e-06 0.015007345022221447 4.066449204726091e-05 0.019184700644418233 7.912558388648785e-05']
['59866.308089523205 0.03432421962307021 6.795896484279609e-05 0.015076581754056835 4.068606963148127e-05 0.0005332250024638273 1.4389753548513984e-06 0.015076581754056833 4.068606963148127e-05 0.019247637869013377 7.92071787438622e-05']
['59866.30812106117 0.03423034197906743 6.792401787426703e-05 0.015005941026308886 4.06399935212812e-05 0.0005307265977961174 1.4373457458076677e-06 0.015005941026308887 4.06399935212812e-05 0.01922440095275854 7.915352978606528e-05']
['59866.30815259913 0.03431871551597882 6.795494926248522e-05 0.014961699668380998 4.062715296992384e-05 0.0005291618798398238 1.4368916042031011e-06 0.014961699668380998 4.062715296992384e-05 0.019357015847597824 7.917348475157912e-05']
['59866.308184137095 0.03419253631698561 6.786618015603824e-05 0.015044387824592342 4.066944001675138e-05 0.000532086375127866 1.4383872025434038e-06 0.01504438782459234 4.066944001675138e-05 0.01914814849239327 7.9119035384969e-05']
['59866.30821567506 0.03428529221694948 6.791497895882591e-05 0.015089143168029022 4.069913669131158e-05 0.0005336692716029157 1.4394375075544366e-06 0.015089143168029024 4.069913669131158e-05 0.019196149048920457 7.917615862364017e-05']
['59866.30824721302 0.034289574675445834 6.79424781785132e-05 0.015079508767175098 4.068757952054901e-05 0.000533328524376331 1.439028756253321e-06 0.015079508767175098 4.068757952054901e-05 0.019210065908270735 7.91938095325559e-05']
['59866.308278750985 0.034182961506042824 6.788946977931777e-05 0.014996283060278746 4.0632457831255485e-05 0.0005303850171219151 1.4370792252927343e-06 0.014996283060278745 4.0632457831255485e-05 0.019186678445764077 7.912001476444286e-05']
['59866.30831028894 0.03429754811894085 6.793141678709152e-05 0.015029745335599363 4.066880630508292e-05 0.0005315685030162214 1.4383647895779525e-06 0.015029745335599365 4.066880630508292e-05 0.019267802783341482 7.917467519972463e-05']
['59866.30834182691 0.03437728549739163 6.80160617202728e-05 0.015071707176026697 4.067402571756161e-05 0.0005330525995329422 1.4385493885326235e-06 0.015071707176026699 4.067402571756161e-05 0.01930557832136493 7.924999066251567e-05']
['59866.308373364875 0.03445268909120751 6.808656371833288e-05 0.014985738300659043 4.064252342437068e-05 0.000530012072540317 1.4374352228259421e-06 0.014985738300659045 4.064252342437068e-05 0.019466950790548464 7.929435584750735e-05']
['59866.30840490283 0.03415614881505359 6.786853122575854e-05 0.014939321985813337 4.0604966072477244e-05 0.0005283704312185828 1.4361069032252126e-06 0.014939321985813336 4.0604966072477244e-05 0.019216826829240256 7.908793081430814e-05']
['59866.3084364408 0.03430770571295058 6.79608026747516e-05 0.015003166326198131 4.0656677522356115e-05 0.0005306284628542898 1.4379358216391396e-06 0.015003166326198133 4.0656677522356115e-05 0.01930453938675245 7.919366216657354e-05']
['59866.308467978764 0.03429203762655901 6.794421267112772e-05 0.014981946012138432 4.063545056367546e-05 0.000529877947770609 1.4371850715500655e-06 0.01498194601213843 4.063545056367546e-05 0.01931009161442058 7.916852833046946e-05']
['59866.30849951672 0.034300579986984825 6.796416262848714e-05 0.015006170580697765 4.064565672337582e-05 0.0005307347166218282 1.4375460406092428e-06 0.015006170580697765 4.064565672337582e-05 0.019294409406287058 7.919088844220624e-05']
['59866.30853105469 0.03414982790014043 6.784662132587562e-05 0.015089985655326139 4.069979665529284e-05 0.0005336990684957664 1.4394608490055209e-06 0.015089985655326139 4.069979665529284e-05 0.019059842244814287 7.911787075698478e-05']
['59866.30856259265 0.03419076616433638 6.787622510769666e-05 0.015090732578935813 4.0694312922838304e-05 0.0005337254855145645 1.4392669016440248e-06 0.015090732578935813 4.0694312922838304e-05 0.01910003358540057 7.914043870950296e-05']
['59866.30859413061 0.03425665149237608 6.79315625100996e-05 0.015004061461941085 4.065026601101627e-05 0.0005306601218050075 1.4377090608119339e-06 0.015004061461941085 4.065026601101627e-05 0.019252590030434998 7.916527844850894e-05']
['59866.30862566858 0.034309658910144904 6.797639552434968e-05 0.01499972134414476 4.063201850518426e-05 0.0005305066215381438 1.437063687311431e-06 0.01499972134414476 4.063201850518426e-05 0.019309937566000142 7.919438917176181e-05']
['59866.30865720654 0.034173317850588004 6.786743954636763e-05 0.014984607993367973 4.0629369660116984e-05 0.00052997209609752 1.4369700035812216e-06 0.014984607993367973 4.0629369660116984e-05 0.01918870985722003 7.909952610198306e-05']
['59866.3086887445 0.03430831537948984 6.798046625868339e-05 0.015057448469052498 4.0677612234414984e-05 0.0005325483009335993 1.4386762356183338e-06 0.015057448469052498 4.0677612234414984e-05 0.019250866910437342 7.922128457580967e-05']
['59866.30872028247 0.034244575331223284 6.791490020620319e-05 0.015032651430288547 4.065781313813457e-05 0.0005316712850906384 1.4379759858312716e-06 0.015032651430288547 4.065781313813457e-05 0.019211923900934735 7.915485733165088e-05']
['59866.30875182043 0.03423864443661728 6.792294247037842e-05 0.015034350111109072 4.066255785214775e-05 0.0005317313636349322 1.438143795762106e-06 0.015034350111109073 4.066255785214775e-05 0.019204294325508207 7.916419471524736e-05']
['59866.30878335839 0.03419913660242576 6.787448538709222e-05 0.014985078287304488 4.064404274715363e-05 0.0005299887293430094 1.4374889578772882e-06 0.014985078287304488 4.064404274715363e-05 0.019214058315121272 7.911310875825224e-05']
['59866.30881489635 0.034261958841864296 6.79179870898846e-05 0.015075999790651199 4.0683322094636346e-05 0.0005332044197187817 1.4388781806135768e-06 0.015075999790651199 4.0683322094636346e-05 0.0191859590512131 7.91706111318945e-05']
['59866.30884643432 0.034314384420787464 6.797859000091778e-05 0.014991427999130101 4.0646862960318164e-05 0.0005302133044595106 1.4375887025141125e-06 0.014991427999130101 4.0646862960318164e-05 0.019322956421657364 7.920388984783364e-05']
['59866.30887797228 0.03420490042255521 6.789137637293681e-05 0.014996143332692514 4.065277689614014e-05 0.0005303800752694629 1.437797865207267e-06 0.014996143332692514 4.065277689614014e-05 0.019208757089862694 7.913208739303613e-05']
['59866.30890951024 0.03432943819212435 6.796851275123077e-05 0.014999159777534531 4.0647478696907884e-05 0.0005304867601821676 1.4376104797412006e-06 0.014999159777534533 4.0647478696907884e-05 0.019330278414589813 7.919555700940426e-05']
['59866.308941048206 0.0342633819907982 6.794701559856155e-05 0.014990713377509885 4.063547806551792e-05 0.0005301880298898889 1.4371860442287702e-06 0.014990713377509884 4.063547806551792e-05 0.01927266861328832 7.91709479946044e-05']
['59866.30897258617 0.03435643026747163 6.797487590720785e-05 0.01507245005671048 4.0681362867276556e-05 0.0005330788735624869 1.4388088871204765e-06 0.015072450056710478 4.0681362867276556e-05 0.01928398021076115 7.921841351188077e-05']
['59866.30900412413 0.034293705946943046 6.789166661699952e-05 0.015130548829105063 4.0723698291727016e-05 0.0005351336972989689 1.440306196469184e-06 0.015130548829105063 4.0723698291727016e-05 0.019163157117837983 7.91687943484642e-05']
['59866.309035662096 0.03423941007657628 6.788076506933505e-05 0.015071491595974845 4.0683511432803534e-05 0.0005330449749483012 1.4388848770814045e-06 0.015071491595974845 4.0683511432803534e-05 0.019167918480601433 7.913877917242162e-05']
['59866.309067200054 0.03423788656773088 6.792527475350025e-05 0.015029969593724789 4.066295814497484e-05 0.0005315764345249302 1.4381579532247984e-06 0.015029969593724789 4.066295814497484e-05 0.01920791697400609 7.916640143039517e-05']
['59866.30909873802 0.0342702507357804 6.794213523241052e-05 0.015037741452521635 4.0675775770693547e-05 0.0005318513078014926 1.4386112840007614e-06 0.015037741452521637 4.0675775770693547e-05 0.01923250928325876 7.918745149635074e-05']
['59866.309130275986 0.0342494536093189 6.793433120453658e-05 0.015030491018148137 4.0649322418160526e-05 0.0005315948761414691 1.4376756880414321e-06 0.015030491018148137 4.0649322418160526e-05 0.019218962591170764 7.916716976918677e-05']
['59866.309161813944 0.034276882788410526 6.793484323446133e-05 0.015028868743389219 4.0666107790892694e-05 0.0005315374999088168 1.4382693491618686e-06 0.015028868743389219 4.0666107790892694e-05 0.019248014045021307 7.917622905993529e-05']
['59866.30919335191 0.03428953353701914 6.795560884745074e-05 0.015003012684879198 4.065306566445777e-05 0.0005306230289042073 1.4378080782973023e-06 0.015003012684879198 4.065306566445777e-05 0.019286520852139943 7.918735076858197e-05']
['59866.309224889876 0.03434076686518903 6.797125440537156e-05 0.015027476365735558 4.067835932628354e-05 0.0005314882546229877 1.4387026585880725e-06 0.015027476365735556 4.067835932628354e-05 0.019313290499453475 7.921376359521103e-05']
['59866.309256427834 0.034264720085193066 6.790313224927847e-05 0.015029013842656369 4.066911421413161e-05 0.0005315426317456181 1.4383756796328685e-06 0.015029013842656369 4.066911421413161e-05 0.019235706242536697 7.915056677134462e-05']
['59866.3092879658 0.03430167051684589 6.797469075856523e-05 0.015027729691491236 4.0642941804041054e-05 0.0005314972141888163 1.4374500199798596e-06 0.015027729691491236 4.0642941804041054e-05 0.019273940825354656 7.919853093466595e-05']
['59866.30931950376 0.034227811012863034 6.788959275685493e-05 0.015081022630988171 4.0680183785918596e-05 0.0005333820663561129 1.4387671856479372e-06 0.01508102263098817 4.0680183785918596e-05 0.019146788381874863 7.914464073800401e-05']
['59866.309351041724 0.034253889960032397 6.789306262071769e-05 0.014993508535979196 4.063248590094418e-05 0.0005302868883981369 1.4370802180548913e-06 0.014993508535979196 4.063248590094418e-05 0.019260381424053202 7.912311206285507e-05']
['59866.30938257969 0.03417952482094699 6.787058718732846e-05 0.01499763738895422 4.065142872748921e-05 0.0005304329167004202 1.437750183495063e-06 0.01499763738895422 4.065142872748921e-05 0.019181887431992766 7.911355928498533e-05']
['59866.30941411765 0.03420803430666407 6.789335793289473e-05 0.015079363880811342 4.068693578106585e-05 0.0005333234000694469 1.4390059886264747e-06 0.01507936388081134 4.068693578106585e-05 0.01912867042585273 7.915134107933192e-05']
['59866.309445655614 0.03419142637366613 6.78674256433546e-05 0.01506602704044569 4.068085973730851e-05 0.0005328517058317978 1.438791092537936e-06 0.015066027040445691 4.068085973730851e-05 0.01912539933322044 7.912597432210761e-05']
['59866.30947719358 0.03432066241319374 6.800432957187104e-05 0.015030706145483512 4.066945057096243e-05 0.0005316024847145399 1.4383875758222613e-06 0.01503070614548351 4.066945057096243e-05 0.019289956267710226 7.923757347536338e-05']
['59866.30950873154 0.0342270148610563 6.791194078817793e-05 0.014951390094235075 4.062708230357014e-05 0.0005287972532428247 1.4368891048921008e-06 0.014951390094235077 4.062708230357014e-05 0.019275624766821226 7.913653718806533e-05']
['59866.3095402695 0.03442061508443362 6.806867791831016e-05 0.015114906084547538 4.0710795626601286e-05 0.0005345804483834458 1.4398498580394465e-06 0.015114906084547538 4.0710795626601286e-05 0.01930570899988608 7.931402016098758e-05']
['59866.30957180746 0.03428012665584248 6.795784602307438e-05 0.014998277134361372 4.0642167050522085e-05 0.0005304555430657243 1.4374226186793658e-06 0.014998277134361374 4.0642167050522085e-05 0.019281849521481105 7.918367621333597e-05']
['59866.30960334543 0.03428670115235075 6.794210231125926e-05 0.015044375303406335 4.0680890011305794e-05 0.0005320859322815002 1.4387921632615616e-06 0.015044375303406335 4.0680890011305794e-05 0.01924232584894442 7.919005037620307e-05']
['59866.30963488339 0.03426990879438961 6.794447505563646e-05 0.015090217732639436 4.067997690383575e-05 0.0005337072765516755 1.4387598686910211e-06 0.015090217732639436 4.067997690383575e-05 0.019179691061750173 7.919161705308595e-05']
['59866.30966642135 0.03424211451456779 6.790445825799041e-05 0.015007378946242145 4.065462134177894e-05 0.0005307774538105949 1.437863099127418e-06 0.015007378946242145 4.065462134177894e-05 0.019234735568325643 7.914425871631238e-05']
['59866.30969795932 0.03416690189419223 6.783247041433594e-05 0.015072923919824371 4.069931580540973e-05 0.0005330956330418036 1.4394438424197916e-06 0.015072923919824373 4.069931580540973e-05 0.019093977974367855 7.910548874471502e-05']
['59866.30972949728 0.03442142568348173 6.804663622258859e-05 0.015059263057103428 4.0663942087192925e-05 0.0005326124788575951 1.4381927530620707e-06 0.015059263057103428 4.0663942087192925e-05 0.0193621626263783 7.927105958216962e-05']
['59866.30976103524 0.034282121250921636 6.793127900677675e-05 0.01501804150824505 4.064587992701064e-05 0.000531154564799214 1.4375539348229753e-06 0.015018041508245048 4.064587992701064e-05 0.01926407974267659 7.916278306462901e-05']
['59866.30979257321 0.03428952263707974 6.79070170994426e-05 0.015112903646806895 4.069567458284249e-05 0.0005345096266357442 1.4393150605152418e-06 0.015112903646806895 4.069567458284249e-05 0.019176618990272842 7.916754954586256e-05']
['59866.309824111166 0.03433300141730613 6.798501188645202e-05 0.015024962347031276 4.065755597997458e-05 0.0005313993393999184 1.4379668907218673e-06 0.015024962347031276 4.065755597997458e-05 0.019308039070274854 7.921488937987472e-05']
['59866.30985564913 0.034195779878771954 6.788968884841192e-05 0.014992453741324904 4.064591512836494e-05 0.0005302495826685419 1.4375551798162066e-06 0.014992453741324904 4.064591512836494e-05 0.01920332613744705 7.912711462296873e-05']
['59866.3098871871 0.034308408615976956 6.798197627890349e-05 0.015081398618450016 4.0690963291506795e-05 0.0005333953641923558 1.4391484326698146e-06 0.015081398618450016 4.0690963291506795e-05 0.01922700999752694 7.922943640072262e-05']
['59866.309918725055 0.0341804790131459 6.785252187820466e-05 0.015025301789828947 4.0654230136474636e-05 0.0005314113447330621 1.4378492630700972e-06 0.015025301789828947 4.0654230136474636e-05 0.019155177223316954 7.909950159907258e-05']
['59866.30995026302 0.03424255170347234 6.78972197172679e-05 0.014953760225604804 4.061207950579038e-05 0.0005288810794924401 1.4363584894639106e-06 0.014953760225604804 4.061207950579038e-05 0.019288791477867537 7.911620217831233e-05']
['59866.30998180099 0.03432554944219607 6.796471955818712e-05 0.015070514356663763 4.0684772120381384e-05 0.0005330104121778695 1.438929464783562e-06 0.015070514356663763 4.0684772120381384e-05 0.019255035085532307 7.921144984855653e-05']
['59866.310013338945 0.03419770858572871 6.787294962908209e-05 0.0150086161185504 4.0649515940689135e-05 0.0005308212098302205 1.4376825325007716e-06 0.015008616118550401 4.0649515940689135e-05 0.019189092467178308 7.911460318780759e-05']
['59866.31004487691 0.03423796778170438 6.790097146029907e-05 0.014999812154916583 4.06474241381521e-05 0.0005305098333121931 1.4376085501199402e-06 0.014999812154916584 4.06474241381521e-05 0.0192381556267878 7.913757018205183e-05']
['59866.31007641487 0.03423665975392327 6.791481505759067e-05 0.015007397810538343 4.064963448315659e-05 0.0005307781209985922 1.4376867250829186e-06 0.015007397810538343 4.064963448315659e-05 0.019229261943384923 7.915058362337563e-05']
['59866.310107952835 0.03419686518138673 6.788210285159112e-05 0.01503293082553199 4.0676551530268465e-05 0.0005316811666759874 1.4386387208832058e-06 0.01503293082553199 4.0676551530268465e-05 0.019163934355854742 7.913634899304227e-05']
['59866.3101394908 0.03421064395288579 6.789806603009169e-05 0.014955919100622961 4.0616271286830516e-05 0.0005289574340770307 1.4365067433912207e-06 0.014955919100622961 4.0616271286830516e-05 0.01925472485226283 7.91190802769604e-05']
['59866.31017102876 0.034251392729689904 6.793816290011591e-05 0.015010454630715896 4.0644742133947536e-05 0.0005308862338966812 1.4375136936251514e-06 0.015010454630715896 4.0644742133947536e-05 0.01924093809897401 7.916810621315744e-05']
['59866.310202566725 0.03418015937419892 6.788794451341732e-05 0.015023289138853509 4.06607748376817e-05 0.0005313401617660711 1.4380807345252447e-06 0.01502328913885351 4.06607748376817e-05 0.019156870235345406 7.913325230683671e-05']
['59866.31023410469 0.0343571783688395 6.800297627742453e-05 0.01499720075709913 4.064852353908927e-05 0.0005304174740075205 1.4376474334740714e-06 0.014997200757099132 4.064852353908927e-05 0.01935997761174037 7.92256729128624e-05']
['59866.31026564265 0.03431057301840663 6.795819704697489e-05 0.015080441462002872 4.068520343957629e-05 0.0005333615117079391 1.4389447195795442e-06 0.015080441462002872 4.068520343957629e-05 0.019230131556403754 7.920607504980396e-05']
['59866.310297180615 0.03434289277527147 6.798217899705275e-05 0.015072033670639062 4.0680399325365245e-05 0.000533064146917709 1.438774808796463e-06 0.015072033670639062 4.0680399325365245e-05 0.019270859104632408 7.922418538841846e-05']
['59866.31032871857 0.03427105768101236 6.792500106971884e-05 0.01503011456726376 4.065146815895957e-05 0.0005315815619150069 1.4377515780980457e-06 0.01503011456726376 4.065146815895957e-05 0.019240943113748597 7.916026549854548e-05']
['59866.31036025654 0.03416949282964418 6.786021467180361e-05 0.014999427943899859 4.064680992457993e-05 0.0005304962446271926 1.4375868267585789e-06 0.014999427943899859 4.064680992457993e-05 0.019170064885744326 7.910228752917453e-05']
['59866.310391794505 0.034311080957474885 6.794686137942843e-05 0.015044664903974159 4.0673568466484506e-05 0.0005320961748063649 1.4385332165839224e-06 0.015044664903974159 4.0673568466484506e-05 0.019266416053500726 7.919037279311839e-05']
['59866.31042333246 0.03410637141288871 6.779692418569142e-05 0.01492219469697065 4.0604309091629535e-05 0.0005277646772894547 1.436083667280895e-06 0.01492219469697065 4.0604309091629535e-05 0.019184176715918065 7.902615292325055e-05']
['59866.31045487043 0.03430818399098386 6.793323262337579e-05 0.015088357419219631 4.069483553709206e-05 0.0005336414814235727 1.4392853853422061e-06 0.015088357419219631 4.069483553709206e-05 0.019219826571764232 7.918960622488698e-05']
['59866.310486408394 0.034297007447567154 6.796894807739224e-05 0.015069263377466106 4.070064141323029e-05 0.0005329661678394224 1.4394907262058457e-06 0.015069263377466108 4.070064141323029e-05 0.019227744070101048 7.92232296374971e-05']
['59866.31051794635 0.03421121738669753 6.787165331084042e-05 0.01505197075017422 4.066729793641042e-05 0.0005323545662588559 1.4383114419490119e-06 0.015051970750174221 4.066729793641042e-05 0.01915924663652331 7.912262915623878e-05']
['59866.31054948432 0.03434793999368015 6.799345955505757e-05 0.015013255947005328 4.064722837994058e-05 0.0005309853101932649 1.4376016265894926e-06 0.015013255947005328 4.064722837994058e-05 0.019334684046674825 7.92168398589359e-05']
['59866.31058102228 0.03426423790676878 6.7928821160437e-05 0.0150115924223468 4.067107540081224e-05 0.0005309264750438516 1.438445042422768e-06 0.0150115924223468 4.067107540081224e-05 0.01925264548442198 7.917361377697237e-05']
['59866.31061256024 0.034226549474523166 6.790431224742351e-05 0.015092563939487436 4.0706122713312805e-05 0.0005337902566444255 1.4396845875397794e-06 0.015092563939487436 4.0706122713312805e-05 0.01913398553503573 7.917060090808248e-05']
['59866.31064409821 0.03423629973971366 6.790532552451905e-05 0.01506419761936219 4.068053145223755e-05 0.00053278700329659 1.43877948182865e-06 0.015064197619362191 4.068053145223755e-05 0.019172102120351472 7.915831525384675e-05']
['59866.31067563617 0.03423273203425545 6.790547305804461e-05 0.014996588854456256 4.0635449901755946e-05 0.0005303958323785639 1.4371850481394514e-06 0.014996588854456257 4.0635449901755946e-05 0.01923614317979919 7.9135283280942e-05']
['59866.31070717413 0.03428106866792554 6.793640835122386e-05 0.014995195951013651 4.0652481420684414e-05 0.0005303465684967549 1.4377874149007468e-06 0.014995195951013651 4.0652481420684414e-05 0.019285872716911887 7.917057423893886e-05']
['59866.3107387121 0.03437597542137957 6.799889975496028e-05 0.015114796678323092 4.07001183673231e-05 0.0005345765789297956 1.439472227241047e-06 0.015114796678323092 4.07001183673231e-05 0.01926117874305648 7.924865931357608e-05']
['59866.31077025006 0.03430773709056545 6.793694892432541e-05 0.01508252210355596 4.067158993842305e-05 0.0005334350993497117 1.4384632404681385e-06 0.015082522103555962 4.067158993842305e-05 0.019225214987009485 7.918085158209423e-05']
['59866.31080178802 0.03420286061715005 6.787209196656898e-05 0.014972213035923738 4.0626431873294864e-05 0.0005295337141538169 1.4368661006268906e-06 0.014972213035923738 4.0626431873294864e-05 0.01923064758122631 7.910200904322132e-05']
['59866.31083332598 0.034160632864285646 6.78535889474667e-05 0.015031742673338653 4.065902534395376e-05 0.0005316391443882729 1.4380188588419758e-06 0.015031742673338653 4.065902534395376e-05 0.019128890190946993 7.910288158450393e-05']
['59866.310864863946 0.034290350268773175 6.79420279503482e-05 0.014997752252715317 4.066233322509178e-05 0.0005304369791749448 1.4381358512051482e-06 0.014997752252715319 4.066233322509178e-05 0.019292598016057858 7.91804553239895e-05']
['59866.31089640191 0.03411002853576065 6.781477811232906e-05 0.015002848760652 4.065260857491115e-05 0.0005306172312706404 1.4377919120615735e-06 0.015002848760652 4.065260857491115e-05 0.019107179775108653 7.906629316193699e-05']
['59866.31092793987 0.03420037345986531 6.791187681778099e-05 0.015009475488977972 4.0648641958893204e-05 0.0005308516038416638 1.4376516217178839e-06 0.01500947548897797 4.0648641958893204e-05 0.01919089797088734 7.914755274811566e-05']
['59866.310959477836 0.03425450678682151 6.790287793293795e-05 0.015048094265695491 4.0674701186196654e-05 0.0005322174636662761 1.4385732783486613e-06 0.015048094265695491 4.0674701186196654e-05 0.019206412521126016 7.915321944281142e-05']
['59866.3109910158 0.03434382086140579 6.797247060075175e-05 0.01511292694902556 4.072395976582158e-05 0.000534510450783141 1.4403154442235488e-06 0.015112926949025562 4.072395976582158e-05 0.01923089391238023 7.923823356548476e-05']
['59866.31102255376 0.03428634895927204 6.792069142898651e-05 0.015133913136126097 4.072030544514563e-05 0.0005352526853195192 1.4401861990681663e-06 0.015133913136126097 4.072030544514563e-05 0.019152435823145943 7.919194150756475e-05']
['59866.311054091726 0.034217184697153145 6.792024835803175e-05 0.014957112890331954 4.0630145192488236e-05 0.0005289996557510748 1.43699743242798e-06 0.014957112890331956 4.0630145192488236e-05 0.01926007180682119 7.914523886741001e-05']
['59866.311085629684 0.03420670353141586 6.787863090343907e-05 0.014975822493801085 4.0630451446307876e-05 0.0005296613726122751 1.4370082639411438e-06 0.014975822493801085 4.0630451446307876e-05 0.019230881037614778 7.910968409781508e-05']
['59866.31111716765 0.034351364763413134 6.800331885687811e-05 0.015120709393491239 4.071448484573332e-05 0.0005347856984511524 1.4399803374752271e-06 0.015120709393491239 4.071448484573332e-05 0.019230655369921894 7.925983000110259e-05']
['59866.311148705616 0.034241347564162826 6.795309618756549e-05 0.015054857958273717 4.067340489618755e-05 0.0005324566803568047 1.4385274314680771e-06 0.015054857958273717 4.067340489618755e-05 0.01918648960588911 7.919563843625317e-05']
['59866.311180243574 0.03434778427346756 6.796320560625301e-05 0.015044660445900398 4.065344752738244e-05 0.0005320960171342592 1.4378215839355346e-06 0.015044660445900396 4.065344752738244e-05 0.019303123827567166 7.919406614222721e-05']
['59866.31121178154 0.03424514560718201 6.789411321317608e-05 0.01508738102257548 4.0688736153733757e-05 0.0005336069484563872 1.4390696637841423e-06 0.01508738102257548 4.0688736153733757e-05 0.01915776458460653 7.915291440491456e-05']
['59866.311243319506 0.03429811003902693 6.79478396808125e-05 0.01496749669122761 4.062722844279568e-05 0.0005293669075823249 1.4368942735099063e-06 0.01496749669122761 4.062722844279568e-05 0.019330613347799317 7.916742138173065e-05']
['59866.311274857464 0.03429352677001952 6.793476743102962e-05 0.015085855905815536 4.067945651187012e-05 0.0005335530084850233 1.4387414635902046e-06 0.015085855905815536 4.067945651187012e-05 0.019207670864203982 7.918302095783675e-05']
['59866.31130639543 0.034326044148175035 6.79585937390763e-05 0.015061439892721983 4.0671606123066164e-05 0.0005326894686684821 1.438463812882795e-06 0.015061439892721983 4.0671606123066164e-05 0.019264604255453052 7.91994318642669e-05']
['59866.31133793339 0.03414727094275733 6.785635446843919e-05 0.014977194081940358 4.0629918172560145e-05 0.0005297098826194421 1.4369894032404832e-06 0.014977194081940358 4.0629918172560145e-05 0.019170076860816974 7.909029708159782e-05']
['59866.311369471354 0.03426663842954432 6.792654273808261e-05 0.0149873967265763 4.0639125471286174e-05 0.0005300707273586465 1.4373150448193211e-06 0.0149873967265763 4.0639125471286174e-05 0.01927924170296802 7.915525078868429e-05']
['59866.31140100932 0.03434517052974667 6.799013191783263e-05 0.014933308118055712 4.060800245209894e-05 0.0005281577341561991 1.4362142931865228e-06 0.014933308118055714 4.060800245209894e-05 0.019411862411690958 7.919386277581084e-05']
['59866.31143254728 0.034165579937406265 6.786765065241803e-05 0.01501545863095138 4.065473857417483e-05 0.0005310632142017279 1.4378672453752615e-06 0.015015458630951379 4.065473857417483e-05 0.01915012130645489 7.911274090570466e-05']
['59866.311464085244 0.0343612417187015 6.799703166265615e-05 0.014996604587604887 4.064057183471556e-05 0.0005303963888248694 1.4373661994613868e-06 0.014996604587604885 4.064057183471556e-05 0.019364637131096617 7.921649066946186e-05']
['59866.31149562321 0.03433631192504106 6.798926322040316e-05 0.015051975616870649 4.068864104289434e-05 0.0005323547383830321 1.4390662999263124e-06 0.015051975616870649 4.068864104289434e-05 0.019284336308170412 7.923449642151309e-05']
['59866.31152716117 0.0342913088761743 6.796147997853216e-05 0.015127459843768136 4.071799889413886e-05 0.0005350244467910777 1.440104621513895e-06 0.015127459843768136 4.071799889413886e-05 0.019163849032406165 7.92257419959922e-05']
['59866.31155869913 0.03427255712326673 6.789868636249247e-05 0.015074305360816675 4.0671328817549595e-05 0.0005331444915223624 1.4384540052064154e-06 0.015074305360816673 4.0671328817549595e-05 0.01919825176245006 7.914789067017113e-05']
['59866.31159023709 0.034236509625683996 6.789981637098865e-05 0.015091399475867776 4.068251222586181e-05 0.0005337490721686212 1.4388495373649718e-06 0.015091399475867776 4.068251222586181e-05 0.019145110149816222 7.915460734677024e-05']
['59866.31162177506 0.034271939656231834 6.792970790507376e-05 0.014945415177960199 4.062061934063226e-05 0.0005285859338073343 1.4366605243368602e-06 0.0149454151779602 4.062061934063226e-05 0.019326524478271635 7.914846765216108e-05']
['59866.31165331302 0.03425338717886711 6.793954704421008e-05 0.014955028473196316 4.063856793686526e-05 0.0005289259345753854 1.4372953260728696e-06 0.014955028473196316 4.063856793686526e-05 0.019298358705670794 7.916612442536042e-05']
['59866.31168485098 0.03423768834681118 6.793108482237478e-05 0.014972218121022595 4.0636588729552646e-05 0.000529533894002399 1.4372253259334905e-06 0.014972218121022597 4.0636588729552646e-05 0.019265470225788582 7.915784628651465e-05']
['59866.31171638895 0.034205036639942565 6.787844578507123e-05 0.015059364818993644 4.067363272555297e-05 0.0005326160779482276 1.4385354892835633e-06 0.015059364818993644 4.067363272555297e-05 0.019145671820948923 7.913171172981176e-05']
['59866.31174792691 0.034230557980200256 6.7916095394761e-05 0.015115038264408144 4.0703440217065864e-05 0.0005345851232897108 1.4395897136425516e-06 0.015115038264408142 4.0703440217065864e-05 0.019115519715792114 7.917932848398331e-05']
['59866.31177946487 0.03429061023552659 6.793258800640798e-05 0.014982518621170763 4.063867787117757e-05 0.0005298981996723766 1.4372992142038072e-06 0.014982518621170761 4.063867787117757e-05 0.01930809161435583 7.916020876908868e-05']
['59866.31181100284 0.034215953474567753 6.788120967349009e-05 0.015005736633262873 4.065234269761215e-05 0.0005307193688708715 1.4377825085757087e-06 0.015005736633262873 4.065234269761215e-05 0.019210216841304882 7.912314195948252e-05']
['59866.311842540796 0.034300718408660086 6.797588711683649e-05 0.01504288828089544 4.0680333059884404e-05 0.0005320333396185896 1.4387724651345002e-06 0.01504288828089544 4.0680333059884404e-05 0.019257830127764646 7.921875237078668e-05']
['59866.31187407876 0.034294054581615996 6.792668909871768e-05 0.015107027673632693 4.0688826070336966e-05 0.0005343018065965999 1.4390728439334462e-06 0.015107027673632693 4.0688826070336966e-05 0.019187026907983303 7.918090463549898e-05']
['59866.31190561673 0.034373440812876806 6.800878066034286e-05 0.015102465908836515 4.070173588928274e-05 0.0005341404671707034 1.4395294353778109e-06 0.015102465908836517 4.070173588928274e-05 0.01927097490404029 7.925796837736602e-05']
['59866.311937154685 0.034189695581415824 6.788001569407459e-05 0.015029286520696863 4.064963724636711e-05 0.0005315522757585109 1.4376868228114991e-06 0.015029286520696863 4.064963724636711e-05 0.01916040906071896 7.912072761855169e-05']
['59866.31196869265 0.034259905724893576 6.789232273190054e-05 0.015098591332313978 4.068906055754492e-05 0.0005340034320582701 1.4390811372219434e-06 0.01509859133231398 4.068906055754492e-05 0.019161314392579596 7.915154537334124e-05']
['59866.31200023062 0.03426570889430332 6.790594332707911e-05 0.015018212495677277 4.06657290820397e-05 0.0005311606122425575 1.4382559550761026e-06 0.015018212495677277 4.06657290820397e-05 0.01924749639862604 7.915123916221609e-05']
['59866.312031768575 0.034259925240558244 6.791554531878743e-05 0.01510815650446137 4.069011908533129e-05 0.0005343417308202217 1.439118574984077e-06 0.015108156504461371 4.069011908533129e-05 0.01915176873609687 7.917200949279177e-05']
['59866.31206330654 0.03428362489276407 6.793583124824235e-05 0.015070469748959573 4.067569402855322e-05 0.0005330088345030647 1.438608392963941e-06 0.015070469748959573 4.067569402855322e-05 0.0192131551438045 7.918200080885896e-05']
['59866.3120948445 0.03418314550096107 6.788070100393447e-05 0.014955881726076028 4.062167892174432e-05 0.0005289561122228328 1.4366979993527693e-06 0.014955881726076028 4.062167892174432e-05 0.01922726377488504 7.910695523913707e-05']
['59866.312126382465 0.03432012305405291 6.79863602134787e-05 0.015074301581430487 4.0691180310724394e-05 0.0005331443578539194 1.4391561081545318e-06 0.015074301581430487 4.0691180310724394e-05 0.019245821472622424 7.923330947371039e-05']
['59866.31215792043 0.03427866320467856 6.794210718881748e-05 0.015067797013701586 4.069563473845753e-05 0.0005329143058302014 1.4393136513083928e-06 0.015067797013701586 4.069563473845753e-05 0.019210866190976974 7.91976301162018e-05']
['59866.31218945839 0.034444808749831045 6.806882576967112e-05 0.015079346852051997 4.0676411608893326e-05 0.0005333227978002859 1.438633772176873e-06 0.015079346852051997 4.0676411608893326e-05 0.019365461897779046 7.929650372518295e-05']
['59866.312220996355 0.03426170509068659 6.795930170706747e-05 0.015092067768784339 4.069225929811614e-05 0.0005337727081955332 1.439194269527183e-06 0.015092067768784339 4.069225929811614e-05 0.019169637321902248 7.921064736067584e-05']
['59866.31225253432 0.03421104047234807 6.788100109097285e-05 0.015059800722049387 4.0662063978426735e-05 0.0005326314948651233 1.4381263285523365e-06 0.015059800722049387 4.0662063978426735e-05 0.01915123975029868 7.912795811910179e-05']
['59866.31228407228 0.034307724464840386 6.79785249338126e-05 0.015064956373349947 4.069226445885818e-05 0.0005328138387294216 1.4391944520510955e-06 0.015064956373349947 4.069226445885818e-05 0.01924276809149044 7.922714332201202e-05']
['59866.312315610245 0.03420925135666877 6.787873405656619e-05 0.014986339008206936 4.063697959436771e-05 0.0005300333182237837 1.4372391499484677e-06 0.014986339008206938 4.063697959436771e-05 0.01922291234846183 7.911312563459427e-05']
['59866.3123471482 0.03434789009217143 6.797375595651748e-05 0.015073668936682114 4.068103153618868e-05 0.0005331219826230472 1.4387971686803798e-06 0.015073668936682114 4.068103153618868e-05 0.019274221155489317 7.92172823674517e-05']
['59866.31237868617 0.03419728074551871 6.789362856420596e-05 0.015039971018966982 4.0677865807506395e-05 0.0005319301625838767 1.4386852039318746e-06 0.015039971018966982 4.0677865807506395e-05 0.019157309726551733 7.914691128697228e-05']
['59866.312410224135 0.03428905787712942 6.792967187283892e-05 0.01496266747828522 4.0610703722718166e-05 0.0005291961091132083 1.4363098310913405e-06 0.01496266747828522 4.0610703722718166e-05 0.019326390398844203 7.914334828402168e-05']
['59866.31244176209 0.03425557262461909 6.793823308446045e-05 0.015004579421003474 4.0650150600922465e-05 0.0005306784408594737 1.4377049790148423e-06 0.015004579421003474 4.0650150600922465e-05 0.01925099320361562 7.917094327160788e-05']
['59866.31247330006 0.03423591151943884 6.787475870603916e-05 0.014961801321013523 4.0620032721873714e-05 0.0005291654750662559 1.4366397769423862e-06 0.014961801321013522 4.0620032721873714e-05 0.01927411019842532 7.910101091471038e-05']
['59866.312504838024 0.03420523750605619 6.788971046338288e-05 0.01495655920522737 4.0640638298254743e-05 0.000528980073146339 1.4373685501282302e-06 0.01495655920522737 4.0640638298254743e-05 0.01924867830082882 7.912442270305376e-05']
['59866.31253637598 0.03430829179758991 6.798572621566901e-05 0.015040687405349163 4.0657831352146684e-05 0.0005319554995691851 1.4379766300201742e-06 0.015040687405349164 4.0657831352146684e-05 0.019267604392240744 7.921564377906366e-05']
['59866.31256791395 0.034252935279912564 6.790543296691716e-05 0.015016206816351406 4.0650829632613306e-05 0.0005310896758472308 1.4377289948482007e-06 0.015016206816351404 4.0650829632613306e-05 0.01923672846356116 7.914314737388343e-05']
['59866.31259945191 0.03425341118471189 6.789985946392208e-05 0.014995092917347914 4.064557706793309e-05 0.0005303429244262645 1.4375432233742528e-06 0.014995092917347916 4.064557706793309e-05 0.019258318267363975 7.913566737196102e-05']
['59866.31263098987 0.03418923615029659 6.787743215952904e-05 0.01495776157716902 4.0614159731503185e-05 0.000529022598354772 1.4364320623983416e-06 0.014957761577169017 4.0614159731503185e-05 0.019231474573127575 7.91002892995185e-05']
['59866.31266252784 0.034284633849591975 6.792418859319076e-05 0.015068803069792148 4.0681615694912235e-05 0.0005329498877857216 1.438817829068914e-06 0.015068803069792148 4.0681615694912235e-05 0.019215830779799825 7.917505447798488e-05']
['59866.3126940658 0.03432224805633418 6.797790118466653e-05 0.01512746334894333 4.072023045089936e-05 0.0005350245707612907 1.4401835466892782e-06 0.01512746334894333 4.072023045089936e-05 0.01919478470739085 7.924097562149672e-05']
['59866.31272560376 0.03433579199598694 6.795606682322204e-05 0.015001777330744183 4.0661365361475004e-05 0.0005305793371893058 1.4381016200320708e-06 0.015001777330744183 4.0661365361475004e-05 0.01933401466524276 7.919200496982999e-05']
['59866.31275714173 0.03420793170614983 6.786623780606857e-05 0.015061111365412006 4.070083196431784e-05 0.0005326778493917435 1.4394974655719556e-06 0.015061111365412005 4.070083196431784e-05 0.019146820340737825 7.913522576285158e-05']
['59866.31278867969 0.03412627674889031 6.782305019017112e-05 0.015030509051040206 4.066718725100365e-05 0.0005315955139245604 1.4383075272535417e-06 0.015030509051040206 4.066718725100365e-05 0.019095767697850104 7.908088426419286e-05']
['59866.31282021765 0.03442165807655387 6.806553733383092e-05 0.01510909940006237 4.069202788221396e-05 0.0005343750789303815 1.439186084863907e-06 0.01510909940006237 4.069202788221396e-05 0.0193125586764915 7.930169295614066e-05']
['59866.31285175561 0.03418898727953089 6.787456005051511e-05 0.015034917555174176 4.066256825245662e-05 0.000531751432863352 1.4381441635977876e-06 0.015034917555174176 4.066256825245662e-05 0.019154069724356713 7.912269180795529e-05']
['59866.312883293576 0.034234815132126416 6.791236319702345e-05 0.01501274678512146 4.065436246137776e-05 0.0005309673022753424 1.4378539431061918e-06 0.01501274678512146 4.065436246137776e-05 0.019222068347004954 7.915090815742739e-05']
['59866.31291483154 0.03419711476628275 6.787340735018991e-05 0.014959897219833788 4.0606924814565807e-05 0.0005290981312629444 1.4361761795553542e-06 0.014959897219833788 4.0606924814565807e-05 0.019237217546448963 7.909312086534842e-05']
['59866.3129463695 0.034191935955807155 6.785386712702507e-05 0.015033644092388675 4.066761043024748e-05 0.0005317063933306507 1.438322494157646e-06 0.015033644092388674 4.066761043024748e-05 0.019158291863418483 7.910753328348917e-05']
['59866.312977907466 0.034229520791893876 6.787614092028164e-05 0.0150553226014745 4.0702338360125e-05 0.0005324731137483999 1.4395507434250584e-06 0.015055322601474498 4.0702338360125e-05 0.019174198190419378 7.914449351794498e-05']
['59866.31300944543 0.03419434923199794 6.786106364226018e-05 0.01498361160136549 4.0639486375695925e-05 0.0005299368559391972 1.4373278092017202e-06 0.01498361160136549 4.0639486375695925e-05 0.01921073763063245 7.909925291391355e-05']
['59866.31304098339 0.034274201064240235 6.792042269380548e-05 0.01507414761142359 4.067670002289446e-05 0.0005331389122788781 1.4386439727355259e-06 0.01507414761142359 4.067670002289446e-05 0.019200053452816647 7.916929798638958e-05']
['59866.313072521356 0.034259533896191324 6.791126700231195e-05 0.015031458098552192 4.06695089660197e-05 0.000531629079614063 1.4383896411249317e-06 0.015031458098552192 4.06695089660197e-05 0.019228075797639133 7.915774848614923e-05']
['59866.313104059314 0.03425954386826173 6.794939085837028e-05 0.01500715413553356 4.065376324073595e-05 0.0005307695027582546 1.4378327500112704e-06 0.01500715413553356 4.065376324073595e-05 0.01925238973272817 7.918237293525238e-05']
['59866.31313559728 0.03420392084982123 6.788875994309827e-05 0.01506585155799631 4.069217997535038e-05 0.0005328454994097435 1.439191464058234e-06 0.01506585155799631 4.069217997535038e-05 0.019138069291824922 7.915009310012169e-05']
['59866.313167135246 0.03414624289628863 6.781888213968008e-05 0.015007404323802542 4.065663208250063e-05 0.0005307783513581906 1.4379342145330032e-06 0.01500740432380254 4.065663208250063e-05 0.019138838572486085 7.907188189848295e-05']
['59866.313198673204 0.03427753026663739 6.790675164674117e-05 0.015051915828284457 4.067360359794363e-05 0.0005323526237943581 1.4385344591051172e-06 0.015051915828284457 4.067360359794363e-05 0.019225614438352936 7.91559786046186e-05']
['59866.31323021117 0.034268072674030196 6.791963876141178e-05 0.015002673302051801 4.0627196352791484e-05 0.0005306110256920782 1.4368931385581749e-06 0.0150026733020518 4.0627196352791484e-05 0.019265399371978395 7.914320193780981e-05']
['59866.313261749136 0.03425825342260572 6.792935504164388e-05 0.01504542688923037 4.068462683865973e-05 0.0005321231245219403 1.438924326493753e-06 0.015045426889230369 4.068462683865973e-05 0.019212826533375346 7.918103394989674e-05']
['59866.313293287094 0.034270525068004404 6.792644310410656e-05 0.015066058170187262 4.0677006211175756e-05 0.0005328528068211864 1.4386548019307447e-06 0.015066058170187262 4.0677006211175756e-05 0.019204466897817143 7.91746203469234e-05']
['59866.31332482506 0.034245294849007395 6.794388540790813e-05 0.015042126165291178 4.067742218919742e-05 0.0005320063852928949 1.4386695141437146e-06 0.015042126165291178 4.067742218919742e-05 0.019203168683716215 7.91897988397569e-05']
['59866.31335636302 0.034302882789052094 6.793638965186028e-05 0.015113027007450465 4.06943671056773e-05 0.0005345139896260125 1.4392688179699484e-06 0.015113027007450465 4.06943671056773e-05 0.01918985578160163 7.91920738019975e-05']
['59866.313387900984 0.03427340047449575 6.79294061063728e-05 0.015067033645930178 4.067644487634687e-05 0.0005328873072181533 1.4386349487723564e-06 0.015067033645930176 4.067644487634687e-05 0.019206366828565573 7.917687403366595e-05']
['59866.31341943895 0.03428895989146894 6.793117385347034e-05 0.01502305387029225 4.065989741775283e-05 0.0005313318408428536 1.4380497021432787e-06 0.01502305387029225 4.065989741775283e-05 0.01926590602117669 7.916989098851025e-05']
['59866.31345097691 0.03421240231719377 6.788993373110422e-05 0.015015019999796151 4.0655630736382695e-05 0.0005310477007980504 1.4378987991586887e-06 0.015015019999796151 4.0655630736382695e-05 0.019197382317397614 7.913231585507167e-05']
['59866.31348251487 0.03440336046932033 6.805547186325672e-05 0.015041959457554063 4.0664326083470314e-05 0.0005320004892128031 1.4382063341522207e-06 0.015041959457554065 4.0664326083470314e-05 0.019361401011766262 7.927884122736237e-05']
['59866.31351405283 0.03432140770967654 6.800523936463812e-05 0.015011154142192869 4.063575220726499e-05 0.0005309109740543056 1.4371957400096932e-06 0.01501115414219287 4.063575220726499e-05 0.019310253567483667 7.922106372986902e-05']
['59866.3135455908 0.03424899956309633 6.791656130845826e-05 0.014986874559086495 4.064972101525547e-05 0.0005300522594615078 1.4376897855298681e-06 0.014986874559086493 4.064972101525547e-05 0.019262125004009836 7.915212643121896e-05']
['59866.31357712876 0.034187003659733886 6.787979588107608e-05 0.01503594458068723 4.067687446778967e-05 0.0005317877564604819 1.438650142461608e-06 0.01503594458068723 4.067687446778967e-05 0.019151059079046656 7.91345361098735e-05']
['59866.31360866672 0.03437561356473168 6.802560905991223e-05 0.015080063956371431 4.06758391838969e-05 0.0005333481601774305 1.438613526784044e-06 0.01508006395637143 4.06758391838969e-05 0.019295549608360246 7.92591154460246e-05']
['59866.31364020469 0.03416885810923349 6.787740861337831e-05 0.015033601086366158 4.0652145634861006e-05 0.0005317048723037471 1.43777553890661e-06 0.015033601086366158 4.0652145634861006e-05 0.01913525702286733 7.911977973165416e-05']
['59866.31367174265 0.034273267438479804 6.791437405182058e-05 0.015073086044415292 4.067745890973925e-05 0.0005331013670262573 1.4386708128672136e-06 0.015073086044415292 4.067745890973925e-05 0.019200181394064514 7.916449877441355e-05']
['59866.31370328061 0.03430933073044863 6.795098775062418e-05 0.015023925504435619 4.06657004805119e-05 0.0005313626685945168 1.4382549435039848e-06 0.015023925504435617 4.06657004805119e-05 0.019285405226013012 7.918987265967905e-05']
['59866.31373481858 0.03431770247272748 6.796241944926822e-05 0.015062555955291098 4.069942379836914e-05 0.0005327289413072987 1.4394476618894159e-06 0.0150625559552911 4.069942379836914e-05 0.01925514651743638 7.921700294076726e-05']
['59866.313766356536 0.034167712067280386 6.785183774903469e-05 0.015002102652341838 4.066876470112039e-05 0.0005305908430871638 1.4383633181387772e-06 0.015002102652341837 4.066876470112039e-05 0.01916560941493855 7.910638601425567e-05']
['59866.3137978945 0.034220636500501105 6.788155430047954e-05 0.014989158524378546 4.065769438924347e-05 0.0005301330382095256 1.4379717859483816e-06 0.014989158524378545 4.065769438924347e-05 0.01923147797612256 7.912618736738219e-05']
['59866.31382943247 0.0343831246796287 6.800715175143707e-05 0.014994725013386221 4.062058698854495e-05 0.0005303299124853563 1.4366593801158347e-06 0.01499472501338622 4.062058698854495e-05 0.019388399666242482 7.921492773863357e-05']
['59866.313860970426 0.03419139210694507 6.789049522290969e-05 0.01506067240103596 4.067864922976333e-05 0.0005326623242027904 1.4387129118262567e-06 0.015060672401035959 4.067864922976333e-05 0.019130719705909113 7.914462612692063e-05']
['59866.31389250839 0.03416413110766105 6.785137214262182e-05 0.01505885137479149 4.068450349862078e-05 0.0005325979185742776 1.4389199642322237e-06 0.01505885137479149 4.068450349862078e-05 0.01910527973286956 7.911407919306046e-05']
['59866.31392404636 0.034367330574861715 6.8009276863203e-05 0.015007051434276822 4.063946480203168e-05 0.0005307658704443275 1.43732704618943e-06 0.01500705143427682 4.063946480203168e-05 0.019360279140584895 7.92264339652579e-05']
['59866.313955584315 0.034238311206899893 6.789117838718067e-05 0.015078906714480728 4.068424560121974e-05 0.0005333072311180398 1.4389108429775159e-06 0.015078906714480728 4.068424560121974e-05 0.019159404492419166 7.91480886878537e-05']
['59866.31398712228 0.034320704483947674 6.796510677154991e-05 0.014997756158954984 4.063558756029556e-05 0.0005304371173299119 1.437189916814349e-06 0.014997756158954984 4.063558756029556e-05 0.019322948324992692 7.918653114538246e-05']
['59866.31401866024 0.034204256347273095 6.788404081950158e-05 0.014978412008428617 4.062829900730329e-05 0.0005297529579574263 1.4369321369839696e-06 0.014978412008428615 4.062829900730329e-05 0.01922584433884448 7.911322062848027e-05']
['59866.314050198205 0.03437101144960292 6.800954554480522e-05 0.015098008993911376 4.070156871175916e-05 0.0005339828360504198 1.4395235226824216e-06 0.015098008993911375 4.070156871175916e-05 0.019273002455691544 7.925853885108523e-05']
['59866.31408173617 0.034133601267781206 6.783879830777104e-05 0.014999532445967082 4.065013825820868e-05 0.000530499940631762 1.43770454248064e-06 0.014999532445967084 4.065013825820868e-05 0.01913406882181412 7.908562635684136e-05']
['59866.31411327413 0.03428403428126951 6.793857442533229e-05 0.015091195847473588 4.069636341278388e-05 0.0005337418702874014 1.4393394228908245e-06 0.01509119584747359 4.069636341278388e-05 0.019192838433795923 7.919497389337148e-05']
['59866.314144812095 0.03428870471384531 6.793682998641916e-05 0.015007564479143516 4.063937058877464e-05 0.0005307840156946747 1.437323714077083e-06 0.015007564479143516 4.063937058877464e-05 0.019281140234701795 7.916420472950753e-05']
['59866.31417635006 0.03424725631202158 6.79285667095684e-05 0.01507845643799025 4.0709996990532164e-05 0.0005332913058448803 1.4398216120665283e-06 0.015078456437990252 4.0709996990532164e-05 0.019168799874031327 7.919339637990924e-05']
['59866.31420788802 0.03432489543851489 6.796657191719059e-05 0.014966471277729541 4.062923516469956e-05 0.0005293306409985626 1.4369652467788871e-06 0.014966471277729543 4.062923516469956e-05 0.01935842416078535 7.918452909655458e-05']
['59866.314239425985 0.03430218933031448 6.792710434339841e-05 0.015007977822737684 4.0673571390528176e-05 0.0005307986347338319 1.4385333200008121e-06 0.015007977822737684 4.0673571390528176e-05 0.0192942115075768 7.917342302906529e-05']
['59866.31427096394 0.03419138992298433 6.786873041228015e-05 0.015097435645083512 4.069536666080887e-05 0.0005339625579837375 1.4393041700010779e-06 0.015097435645083512 4.069536666080887e-05 0.019093954277900817 7.913455272782196e-05']
['59866.31430250191 0.034225015549543686 6.787345815338153e-05 0.015094853000676261 4.0703708222296075e-05 0.0005338712156229236 1.4395991923885876e-06 0.015094853000676263 4.0703708222296075e-05 0.019130162548867423 7.914289724760301e-05']
['59866.314334039875 0.03433343891186205 6.797022510011917e-05 0.015112310171110983 4.069590973285808e-05 0.0005344886367267199 1.4393233772457638e-06 0.015112310171110983 4.069590973285808e-05 0.01922112874075107 7.922189450616416e-05']
['59866.31436557783 0.03423880097396891 6.792366585045955e-05 0.015103080667295982 4.069045641977712e-05 0.0005341622098035104 1.4391305057495277e-06 0.015103080667295984 4.069045641977712e-05 0.01913572030667293 7.917914893590778e-05']
['59866.3143971158 0.034293733580122256 6.794921333216928e-05 0.015128565897783487 4.070981059555438e-05 0.0005350635654497154 1.4398150196927325e-06 0.015128565897783485 4.070981059555438e-05 0.019165167682338773 7.921101104762244e-05']
['59866.314428653764 0.03433537291556493 6.800432076257131e-05 0.015105932749459832 4.0701620904349605e-05 0.0005342630815756172 1.439525368617702e-06 0.015105932749459832 4.0701620904349605e-05 0.019229440166105102 7.925408246027504e-05']
['59866.31446019172 0.034305685166381106 6.793240718399713e-05 0.01513149691283881 4.072399447835211e-05 0.000535167228901789 1.4403166719281755e-06 0.01513149691283881 4.072399447835211e-05 0.019174188253542297 7.920388672334988e-05']
['59866.31449172969 0.03428263266283594 6.794063876355734e-05 0.015093107227003692 4.069166629372796e-05 0.0005338094715096993 1.4391732962872598e-06 0.015093107227003693 4.069166629372796e-05 0.019189525435832244 7.919433124511063e-05']
['59866.31452326765 0.03430587176994927 6.796142899584318e-05 0.015080137701874594 4.070421056850433e-05 0.0005333507683910659 1.439616959251296e-06 0.015080137701874594 4.070421056850433e-05 0.01922573406807468 7.921861264350805e-05']
['59866.31455480561 0.03433045777759892 6.797809466579108e-05 0.0151103077685776 4.069429202783841e-05 0.0005344178162242205 1.4392661626345761e-06 0.015110307768577603 4.069429202783841e-05 0.019220150009021317 7.922781555765782e-05']
['59866.31458634358 0.034239698257261426 6.792608784534359e-05 0.014992222674937293 4.063458880262455e-05 0.000530241410366815 1.4371545929876171e-06 0.014992222674937293 4.063458880262455e-05 0.019247475582324133 7.915253133748607e-05']
['59866.31461788154 0.034411480006319856 6.802691581849943e-05 0.015140712438959385 4.0711094717158586e-05 0.000535493161465185 1.4398604362040301e-06 0.015140712438959383 4.0711094717158586e-05 0.019270767567360472 7.927833568413672e-05']
['59866.3146494195 0.03417682465878606 6.785420297243529e-05 0.01496918389741257 4.062704085426087e-05 0.0005294265802944031 1.4368876389226656e-06 0.01496918389741257 4.062704085426087e-05 0.01920764076137349 7.908697307141188e-05']
['59866.31468095747 0.034245970076933946 6.791262442781197e-05 0.01499192833763964 4.064573189278099e-05 0.0005302310003144022 1.4375486991831096e-06 0.014991928337639638 4.064573189278099e-05 0.019254041739294306 7.914669972761263e-05']
['59866.31471249543 0.03428768207453328 6.795766937792742e-05 0.015013914105099486 4.065070753228764e-05 0.0005310085877741586 1.4377246764325602e-06 0.015013914105099486 4.065070753228764e-05 0.019273767969433794 7.91879084845362e-05']
['59866.31474403339 0.034240363432534206 6.792270842728536e-05 0.015059186787302468 4.0673006599843036e-05 0.0005326097813651881 1.4385133446165116e-06 0.015059186787302468 4.0673006599843036e-05 0.019181176645231737 7.916936140937918e-05']
['59866.31477557135 0.034228155140267925 6.790762909926618e-05 0.014991229278048742 4.06415595300502e-05 0.0005302062761389784 1.4374011320380037e-06 0.014991229278048742 4.06415595300502e-05 0.019236925862219183 7.91402707281073e-05']
['59866.31480710932 0.03427546835210011 6.794914677644702e-05 0.01498746472950762 4.063990808520496e-05 0.0005300731324703497 1.4373427241245896e-06 0.01498746472950762 4.063990808520496e-05 0.01928800362259249 7.917505084823784e-05']
['59866.31483864728 0.034164592082049264 6.785002404489292e-05 0.014929307461786143 4.0610618441197924e-05 0.0005280162398848849 1.4363068148745624e-06 0.014929307461786143 4.0610618441197924e-05 0.01923528462026312 7.907495237475083e-05']
['59866.31487018524 0.03421917719928163 6.788028539387491e-05 0.014968640504302968 4.0635125673565846e-05 0.0005294073616945286 1.437173580912975e-06 0.01496864050430297 4.0635125673565846e-05 0.01925053669497866 7.911350443293734e-05']
['59866.314901723206 0.034187612135243836 6.789790750621176e-05 0.015037268410936874 4.067116958053278e-05 0.0005318345773778253 1.4384483733490044e-06 0.015037268410936874 4.067116958053278e-05 0.019150343724306962 7.914714068600673e-05']
['59866.31493326117 0.034225815137774736 6.789118395256082e-05 0.014952544792533872 4.061846199951227e-05 0.0005288380923410543 1.4365842240028199e-06 0.014952544792533872 4.061846199951227e-05 0.019273270345240866 7.911429904692497e-05']
['59866.31496479913 0.0342823034925802 6.793780226556107e-05 0.01500717707726467 4.0657100084608496e-05 0.0005307703141560121 1.4379507667216352e-06 0.015007177077264669 4.0657100084608496e-05 0.01927512641531553 7.917414201596596e-05']
['59866.314996337096 0.03413260996910793 6.784872761766579e-05 0.014919196196475554 4.060732788819631e-05 0.0005276586270281973 1.4361904353688486e-06 0.014919196196475552 4.060732788819631e-05 0.019213413772632373 7.907215007545761e-05']
['59866.315027875055 0.034252866848788324 6.790384573519355e-05 0.015021500059709328 4.066360711281967e-05 0.000531276886035098 1.4381809057671123e-06 0.01502150005970933 4.066360711281967e-05 0.019231366789078996 7.914834937669088e-05']
['59866.31505941302 0.03429206675636911 6.796394157436455e-05 0.014983189212722077 4.0640244454380746e-05 0.0005299219169968627 1.4373546207505963e-06 0.014983189212722075 4.0640244454380746e-05 0.019308877543647032 7.918792094527715e-05']
['59866.315090950986 0.03417776541914539 6.785538408813272e-05 0.014959129027855334 4.061225138883292e-05 0.0005290709620294745 1.436364568582989e-06 0.014959129027855334 4.061225138883292e-05 0.019218636391290057 7.908039019009566e-05']
['59866.315122488944 0.03419578193450179 6.787591408206633e-05 0.015068978195687503 4.066841566166334e-05 0.000532956081597257 1.4383509733932386e-06 0.015068978195687503 4.066841566166334e-05 0.019126803738814285 7.912685855577659e-05']
['59866.31515402691 0.03422123796318245 6.789923660933363e-05 0.015018616297110057 4.0643004311090524e-05 0.0005311748937967918 1.4374522307145042e-06 0.015018616297110057 4.0643004311090524e-05 0.019202621666072395 7.913381155714411e-05']
['59866.315185564876 0.03418393785213262 6.787688642235194e-05 0.015025845466426619 4.0653843190326194e-05 0.000531430573359276 1.4378355776496006e-06 0.015025845466426619 4.0653843190326194e-05 0.019158092385706 7.912020397178269e-05']
['59866.315217102834 0.03427605474709753 6.792177795876509e-05 0.015059181947031833 4.066701682743332e-05 0.0005326096101756331 1.4383014997527335e-06 0.015059181947031831 4.066701682743332e-05 0.019216872800065697 7.916548603225103e-05']
['59866.3152486408 0.03425761426135093 6.790257916254423e-05 0.015004330830576545 4.065631533421501e-05 0.0005306696487716401 1.4379230118540315e-06 0.015004330830576545 4.065631533421501e-05 0.019253283430774388 7.914351668633832e-05']
['59866.31528017876 0.03423437721841636 6.789095047413154e-05 0.015094603409674237 4.070473123640946e-05 0.000533862388146985 1.439635374111476e-06 0.015094603409674237 4.070473123640946e-05 0.01913977380874212 7.915842533368959e-05']
['59866.315311716724 0.0342636973648163 6.793525662281282e-05 0.01505924063942198 4.0700579425425324e-05 0.0005326116859943029 1.4394885338357187e-06 0.015059240639421982 4.0700579425425324e-05 0.019204456725394316 7.919429435238872e-05']
['59866.31534325469 0.03436537181213979 6.799213000162288e-05 0.015027082190127314 4.064651442671653e-05 0.0005314743135126548 1.4375763756595496e-06 0.015027082190127316 4.064651442671653e-05 0.019338289622012478 7.921533233660552e-05']
['59866.31537479265 0.0342795736890729 6.792524423346326e-05 0.015090771537326114 4.069396607853254e-05 0.0005337268633857626 1.4392546345360813e-06 0.015090771537326115 4.069396607853254e-05 0.01918880215174678 7.918230660555671e-05']
['59866.315406330614 0.034346886451261896 6.799022869787748e-05 0.014980764870965847 4.064578345456769e-05 0.0005298361734470299 1.4375505228082715e-06 0.014980764870965847 4.064578345456769e-05 0.019366121580296047 7.921332533750424e-05']
['59866.31543786858 0.03430322770361312 6.79431541410391e-05 0.015020498238014397 4.0641416716683275e-05 0.0005312414538406879 1.4373960810483845e-06 0.015020498238014397 4.0641416716683275e-05 0.01928272946559872 7.917068237278305e-05']
['59866.31546940654 0.034270103789374555 6.794572884116895e-05 0.0150077705270943 4.065982276709703e-05 0.0005307913031502039 1.4380470619164174e-06 0.0150077705270943 4.065982276709703e-05 0.019262333262280253 7.918234181438057e-05']
['59866.3155009445 0.03430210549301806 6.794229511371116e-05 0.015081004283473034 4.068219522180834e-05 0.0005333814174455067 1.4388383256400629e-06 0.015081004283473032 4.068219522180834e-05 0.01922110120954503 7.919088630255344e-05']
['59866.31553248246 0.034182122200163555 6.78877034839439e-05 0.015023776992199745 4.065148181573066e-05 0.0005313574160486393 1.437752061107518e-06 0.015023776992199745 4.065148181573066e-05 0.01915834520796381 7.912827091589054e-05']
['59866.31556402043 0.03415963106638204 6.78699670679711e-05 0.014969779091568674 4.063477152052772e-05 0.0005294476309815238 1.437161055311502e-06 0.014969779091568675 4.063477152052772e-05 0.019189851974813366 7.910446944599889e-05']
['59866.31559555839 0.03430564413109504 6.797525330166396e-05 0.01501564345924886 4.065681406879316e-05 0.0005310697511655429 1.4379406509814546e-06 0.01501564345924886 4.065681406879316e-05 0.01929000067184618 7.920613354816528e-05']
['59866.31562709635 0.03437693589833121 6.79978558336545e-05 0.015062448968654666 4.066335563794674e-05 0.0005327251574290691 1.4381720116628698e-06 0.015062448968654664 4.066335563794674e-05 0.01931448692967655 7.922888923689765e-05']
['59866.31565863432 0.034232357219071974 6.787697685733253e-05 0.015055362527127903 4.0667489007114426e-05 0.0005324745258295323 1.4383181996927947e-06 0.015055362527127905 4.0667489007114426e-05 0.019176994691944067 7.912729396001501e-05']
['59866.31569017228 0.034272315235114745 6.793864224049622e-05 0.015067196654474759 4.068199267107167e-05 0.0005328930724660725 1.4388311618731812e-06 0.01506719665447476 4.068199267107167e-05 0.019205118580639984 7.918764826140038e-05']
['59866.31572171024 0.03429920535006016 6.794727725295386e-05 0.014997481494320489 4.06200850473549e-05 0.0005304274030556291 1.436641627577715e-06 0.014997481494320489 4.06200850473549e-05 0.019301723855739673 7.916327302066361e-05']
['59866.31575324821 0.034282218148958474 6.793102149101463e-05 0.01506565947760755 4.068595516424999e-05 0.0005328387059556674 1.4389713064012471e-06 0.01506565947760755 4.068595516424999e-05 0.019216558671350924 7.918314611355153e-05']
['59866.315784786166 0.03427630649310693 6.79400960413702e-05 0.015029939334987273 4.066873076218574e-05 0.0005315753643410086 1.4383621177945078e-06 0.015029939334987273 4.066873076218574e-05 0.019246367158119657 7.918208327593912e-05']
['59866.31581632413 0.03432418683108582 6.795912887003505e-05 0.015105227602406563 4.0690234215711026e-05 0.000534238142100254 1.4391226468883069e-06 0.015105227602406561 4.0690234215711026e-05 0.019218959228679257 7.920945876158637e-05']
['59866.3158478621 0.03426718732365483 6.789923832414919e-05 0.015059164518133198 4.06723898111527e-05 0.0005326089937544397 1.438491530178976e-06 0.015059164518133198 4.06723898111527e-05 0.019208022805521634 7.914890939204385e-05']
['59866.315879400056 0.03421578263291625 6.789087844258408e-05 0.015071968622575855 4.0680804338313426e-05 0.0005330618463130872 1.4387891331992894e-06 0.015071968622575857 4.0680804338313426e-05 0.01914381401034039 7.914606255094354e-05']
['59866.31591093802 0.034274434671872904 6.79198575869722e-05 0.015001996207651044 4.0643029657979845e-05 0.0005305870783763404 1.4374531271773326e-06 0.015001996207651044 4.0643029657979845e-05 0.019272438464221858 7.915151871198693e-05']
['59866.31594247599 0.03416851670185356 6.784823243797356e-05 0.015013293279817113 4.0656143901498985e-05 0.0005309866305713838 1.4379169486619953e-06 0.015013293279817113 4.0656143901498985e-05 0.019155223422036446 7.909680576291738e-05']
['59866.315974013945 0.03432563868907539 6.797635734213967e-05 0.014977683281697353 4.062917743350898e-05 0.0005297271845215499 1.4369632049556979e-06 0.014977683281697352 4.062917743350898e-05 0.01934795540737804 7.919289877526786e-05']
['59866.31600555191 0.0342707582691597 6.794143170429803e-05 0.01495335479355444 4.061975720172823e-05 0.0005288667402669061 1.4366300324105916e-06 0.01495335479355444 4.061975720172823e-05 0.01931740347560526 7.915808750315502e-05']
['59866.31603708987 0.03421164334117379 6.788757606954959e-05 0.015005532604142995 4.065142903323746e-05 0.0005307121528168796 1.4377501943086954e-06 0.015005532604142995 4.065142903323746e-05 0.019206110737030796 7.912813448479134e-05']
['59866.316068627835 0.03427915407091753 6.791811844061987e-05 0.015080168308228257 4.067208318609012e-05 0.0005333518508693938 1.4384806855357793e-06 0.015080168308228257 4.067208318609012e-05 0.01919898576268927 7.916494908234517e-05']
['59866.3161001658 0.03423090546512902 6.79124042788407e-05 0.01502365060941463 4.065600730452742e-05 0.0005313529461719787 1.4379121175323871e-06 0.01502365060941463 4.065600730452742e-05 0.019207254855714388 7.915178826077455e-05']
['59866.31613170376 0.03427598556466672 6.793732548251545e-05 0.015033454116139768 4.0668612837121955e-05 0.0005316996742952988 1.4383579470485486e-06 0.015033454116139768 4.0668612837121955e-05 0.019242531448526952 7.917964551456999e-05']
['59866.316163241725 0.03433855015633218 6.79843772083686e-05 0.015105358969044198 4.0697361967004316e-05 0.00053424278824464 1.439374739521964e-06 0.015105358969044197 4.0697361967004316e-05 0.01923319118728798 7.923478286386048e-05']
['59866.31619477969 0.03426713921501946 6.794911137492558e-05 0.01506443053582982 4.067557698180571e-05 0.0005327952410315123 1.4386042532820657e-06 0.01506443053582982 4.067557698180571e-05 0.01920270867918964 7.919333494331985e-05']
['59866.31622631765 0.03432839531278622 6.798670228157035e-05 0.01494105359025439 4.062346421624306e-05 0.0005284316741977547 1.4367611412292915e-06 0.01494105359025439 4.062346421624306e-05 0.01938734172253183 7.91988480475017e-05']
['59866.316257855615 0.03436855705863438 6.799081483584431e-05 0.015070192401114272 4.067839272053269e-05 0.0005329990253296124 1.4387038396680332e-06 0.015070192401114272 4.067839272053269e-05 0.019298364657520113 7.923056566987234e-05']
['59866.31628939357 0.03427982154677254 6.796028067990142e-05 0.015001118444994275 4.065440364429986e-05 0.0005305560338728546 1.4378553996541082e-06 0.015001118444994277 4.065440364429986e-05 0.01927870310177826 7.919204685929418e-05']
['59866.31632093154 0.03431519135360718 6.79836351825529e-05 0.015126928365336264 4.071235198577618e-05 0.0005350056495867268 1.4399049029852043e-06 0.015126928365336264 4.071235198577618e-05 0.019188262988270914 7.92418466269444e-05']
['59866.316352469505 0.03426624466592163 6.794226131343235e-05 0.01495237691432372 4.061903663099919e-05 0.000528832154863947 1.4366045474342863e-06 0.01495237691432372 4.061903663099919e-05 0.01931386775159791 7.915842980512675e-05']
['59866.31638400746 0.03422811520591467 6.792075120671527e-05 0.01501392585673839 4.0657032815499545e-05 0.0005310090034033632 1.4379483875635892e-06 0.015013925856738391 4.0657032815499545e-05 0.019214189349176278 7.915947676586247e-05']
['59866.31641554543 0.03422731748828637 6.790604277691319e-05 0.015030645488861405 4.065149617579614e-05 0.0005316003394253756 1.4377525689909414e-06 0.015030645488861405 4.065149617579614e-05 0.019196671999424965 7.91440129570818e-05']
['59866.316447083394 0.034220823460428054 6.789001653772875e-05 0.015032574176886708 4.067324486624771e-05 0.0005316685528104666 1.4385217715667508e-06 0.015032574176886708 4.067324486624771e-05 0.019188249283541348 7.914143790355865e-05']
['59866.31647862135 0.03422877523285485 6.790138831634518e-05 0.01497266556627983 4.062793887450607e-05 0.000529549719141166 1.4369193998917814e-06 0.01497266556627983 4.062793887450607e-05 0.019256109666575018 7.912792144671627e-05']
['59866.31651015932 0.03414866241114957 6.784049506305952e-05 0.015044677866463168 4.068106426790096e-05 0.0005320966332606318 1.438798326327892e-06 0.015044677866463168 4.068106426790096e-05 0.0191039845446864 7.910298199417069e-05']
['59866.31654169728 0.03424548040375711 6.789659450526994e-05 0.015096043054282951 4.068995153445644e-05 0.0005339133051593789 1.4391126490840877e-06 0.015096043054282951 4.068995153445644e-05 0.019149437349474163 7.915566752475445e-05']
['59866.31657323524 0.034307340022378924 6.79641411784207e-05 0.015068473561955138 4.069831587921055e-05 0.0005329382338299332 1.43940847726483e-06 0.015068473561955138 4.069831587921055e-05 0.019238866460423786 7.921791086316466e-05']
['59866.31660477321 0.0342569273792509 6.792925056965661e-05 0.015047559173853595 4.06733270234809e-05 0.0005321985386636881 1.4385246772844783e-06 0.015047559173853593 4.06733270234809e-05 0.019209368205397308 7.917513886387706e-05']
['59866.31663631117 0.03431113290036699 6.795723302936725e-05 0.01509767055602862 4.06973395247397e-05 0.0005339708662588709 1.43937394578922e-06 0.01509767055602862 4.06973395247397e-05 0.01921346234433837 7.921148253504451e-05']
['59866.31666784913 0.03431056196580921 6.799031855651268e-05 0.014910542364488626 4.0606262759896825e-05 0.0005273525603309959 1.4361527641613175e-06 0.014910542364488626 4.0606262759896825e-05 0.01940001960132058 7.919313096943355e-05']
['59866.3166993871 0.03430410708665711 6.797028968446876e-05 0.015000609191532448 4.0655780471215586e-05 0.0005305380227160242 1.4379040949450904e-06 0.015000609191532446 4.0655780471215586e-05 0.019303497895124665 7.920134320524037e-05']
['59866.31673092506 0.034282301287357056 6.795358104796927e-05 0.015026604427907967 4.066423867797868e-05 0.0005314574161306922 1.4382032428153215e-06 0.015026604427907967 4.066423867797868e-05 0.01925569685944909 7.919134728303684e-05']
['59866.31676246302 0.03425597130180156 6.792750218190805e-05 0.015040949785131362 4.0665689618322175e-05 0.0005319647793556972 1.43825455933261e-06 0.01504094978513136 4.0665689618322175e-05 0.0192150215166702 7.916971557866581e-05']
['59866.31679400098 0.03424242942692352 6.791680819696612e-05 0.015139501658953338 4.072973324745385e-05 0.0005354503388823053 1.4405196393659102e-06 0.01513950165895334 4.072973324745385e-05 0.019102927767970183 7.919345936421916e-05']
['59866.31682553895 0.03420320778317498 6.791311622952321e-05 0.014953141553058174 4.0622944259261946e-05 0.0005288591984271176 1.4367427515129048e-06 0.014953141553058175 4.0622944259261946e-05 0.019250066230116807 7.913542162834436e-05']
['59866.31685707691 0.03423760898850101 6.790729320304195e-05 0.014934643700921277 4.0603973140940555e-05 0.000528204970737302 1.4360717854558313e-06 0.014934643700921275 4.0603973140940555e-05 0.019302965287579736 7.912068695982189e-05']
['59866.31688861487 0.03418071787181894 6.78612312688469e-05 0.01495899214120674 4.061497641195615e-05 0.0005290661206546375 1.4364609465607895e-06 0.014958992141206742 4.061497641195615e-05 0.0192217257306122 7.90868068534043e-05']
['59866.316920152836 0.03429864892230506 6.797361729276411e-05 0.015087967775150207 4.068259793780053e-05 0.0005336277005836404 1.4388525688046893e-06 0.015087967775150207 4.068259793780053e-05 0.01921068114715485 7.921796780296685e-05']
['59866.3169516908 0.034261073045844796 6.791738062356212e-05 0.015013801506341538 4.0643173797284226e-05 0.0005310046054077333 1.4374582250623962e-06 0.015013801506341538 4.0643173797284226e-05 0.019247271539503258 7.91494672570957e-05']
['59866.31698322876 0.03424742560812646 6.79038258997432e-05 0.01497498219109199 4.063898277082545e-05 0.0005296316529834204 1.4373099978229422e-06 0.014974982191091989 4.063898277082545e-05 0.01927244341703447 7.913568406521854e-05']
['59866.317014766726 0.034241242636283364 6.790473473053454e-05 0.014933736297690407 4.062546933971691e-05 0.000528172877912953 1.4368320579653741e-06 0.014933736297690407 4.062546933971691e-05 0.019307506338592958 7.912952519696135e-05']
['59866.317046304684 0.0342789655551587 6.791599286427345e-05 0.015076763584531775 4.0696286640636694e-05 0.0005332314334013589 1.4393367076315541e-06 0.015076763584531775 4.0696286640636694e-05 0.01920220197062692 7.917556335812778e-05']
['59866.31707784265 0.03427580120182295 6.794987168421526e-05 0.014971414563257525 4.062633066720662e-05 0.0005295054739600944 1.4368625211937317e-06 0.014971414563257526 4.062633066720662e-05 0.019304386638565423 7.916870470951595e-05']
['59866.317109380616 0.03441343354577851 6.802574014122943e-05 0.015014310780250808 4.0664399657526246e-05 0.0005310226172877441 1.4382089363021507e-06 0.01501431078025081 4.0664399657526246e-05 0.0193991227655277 7.925335779176232e-05']
['59866.317140918574 0.03426394149240267 6.791128349354965e-05 0.01496746243900505 4.0630198261582264e-05 0.0005293656961577621 1.4369993093632335e-06 0.014967462439005048 4.0630198261582264e-05 0.019296479053397625 7.913757284954316e-05']
['59866.31717245654 0.0342502475218363 6.790799506544065e-05 0.014991172446471 4.0644091600068106e-05 0.0005302042661330848 1.4374906856956936e-06 0.014991172446471001 4.0644091600068106e-05 0.019259075075365298 7.914188509128803e-05']
['59866.317203994506 0.03423360242950716 6.78859982663126e-05 0.01500504660388267 4.0664023520713835e-05 0.0005306949640738187 1.4381956331837121e-06 0.01500504660388267 4.0664023520713835e-05 0.01922855582562449 7.913325198364443e-05']
['59866.317235532464 0.034251981064894264 6.793370091124394e-05 0.014956864999482244 4.0630334643975774e-05 0.0005289908884057239 1.4370041329036951e-06 0.014956864999482242 4.0630334643975774e-05 0.019295116065412024 7.915688101978124e-05']
['59866.31726707043 0.034232186481579316 6.786561764478145e-05 0.015026255794894137 4.0655771328391535e-05 0.000531445085760142 1.4379037715838366e-06 0.015026255794894137 4.0655771328391535e-05 0.019205930686685177 7.911152760890244e-05']
['59866.31729860839 0.03437249520795376 6.801951271404288e-05 0.015005527183784161 4.0662271552241676e-05 0.0005307119611109015 1.4381336699742707e-06 0.015005527183784161 4.0662271552241676e-05 0.019366968024169602 7.924692068240937e-05']
['59866.317330146354 0.034214248798581114 6.788036785752417e-05 0.014976901176321436 4.063689446790434e-05 0.0005296995232023064 1.4372361392157049e-06 0.014976901176321436 4.063689446790434e-05 0.019237347622259676 7.911448370853717e-05']
['59866.31736168432 0.03435663438843304 6.797453831516433e-05 0.015059264604654992 4.0674380187074135e-05 0.0005326125335910353 1.4385619253270887e-06 0.01505926460465499 4.0674380187074135e-05 0.01929736978377805 7.9214538203302e-05']
['59866.31739322228 0.03418619811495951 6.788705600751912e-05 0.014992969338681602 4.065122552046358e-05 0.000530267818194756 1.4377429965167076e-06 0.014992969338681602 4.065122552046358e-05 0.019193228776277906 7.912758374728516e-05']
['59866.317424760244 0.03420412378923886 6.789043445524336e-05 0.015089456199316372 4.0692627521910414e-05 0.0005336803428199655 1.4392072927798547e-06 0.015089456199316372 4.0692627521910414e-05 0.019114667589922488 7.915175945712538e-05']
['59866.31745629821 0.03423112227009159 6.79060886698043e-05 0.014994141827566448 4.06342785130855e-05 0.0005303092865062546 1.4371436187400775e-06 0.014994141827566447 4.06342785130855e-05 0.019236980442525142 7.91352100440147e-05']
['59866.31748783617 0.034232187063371056 6.791509702948953e-05 0.015021657096506533 4.0679350044238605e-05 0.0005312824400756584 1.438737698068019e-06 0.015021657096506533 4.0679350044238605e-05 0.019210529966864523 7.916609074942803e-05']
['59866.31751937413 0.03430885799789101 6.795344624883436e-05 0.014954092464707846 4.0618162848266315e-05 0.000528892830047004 1.436573643691814e-06 0.014954092464707846 4.0618162848266315e-05 0.019354765533183167 7.916758181390601e-05']
['59866.31755091209 0.03438873270843337 6.803248472354799e-05 0.015046635721453696 4.065936027973703e-05 0.0005321658782160984 1.4380307047720928e-06 0.015046635721453696 4.065936027973703e-05 0.019342096986979675 7.925656159597922e-05']
['59866.31758245006 0.034263050516474505 6.790481608677537e-05 0.015008050349561722 4.0640952274309134e-05 0.0005308011998455102 1.4373796547595788e-06 0.015008050349561722 4.0640952274309134e-05 0.019255000166912783 7.913754513213977e-05']
['59866.31761398802 0.03418679248072952 6.785923410346046e-05 0.015009458697417053 4.065832331672062e-05 0.000530851009961681 1.4379940297076781e-06 0.015009458697417053 4.065832331672062e-05 0.019177333783312468 7.910736317205395e-05']
['59866.31764552598 0.03433019352022726 6.799617590517253e-05 0.015103125253223064 4.070911178375054e-05 0.0005341637867081076 1.439790304280983e-06 0.015103125253223063 4.070911178375054e-05 0.019227068267004196 7.925094144519081e-05']
['59866.31767706395 0.034288031836573474 6.791277017359944e-05 0.015080570797958147 4.068179732407186e-05 0.0005333660860316284 1.4388242528863725e-06 0.015080570797958149 4.068179732407186e-05 0.019207461038615325 7.91653521824352e-05']
['59866.31770860191 0.03419231926635267 6.787383263529505e-05 0.015053697371726037 4.0678461094784254e-05 0.0005324156330043715 1.4387062579125037e-06 0.015053697371726037 4.0678461094784254e-05 0.01913862189462663 7.913023665858658e-05']
['59866.31774013987 0.03425286025041645 6.791898838270136e-05 0.015030031495185205 4.067192908140039e-05 0.0005315786238412435 1.4384752351973071e-06 0.015030031495185205 4.067192908140039e-05 0.019222828755231243 7.916561626193525e-05']
['59866.31777167784 0.03426045079340691 6.79499809813781e-05 0.014983770413353173 4.064458592765654e-05 0.0005299424727642776 1.4375081689577393e-06 0.014983770413353173 4.064458592765654e-05 0.019276680380053736 7.917816795430608e-05']
['59866.317803215796 0.03425219358123359 6.794606214660808e-05 0.015018695729004536 4.0665736406606346e-05 0.0005311777031253797 1.4382562141296554e-06 0.015018695729004538 4.0665736406606346e-05 0.019233497852229053 7.918566460365359e-05']
['59866.31783475376 0.03429256006683543 6.79326512548348e-05 0.015053761158343929 4.0702803445166955e-05 0.0005324178889944917 1.4395671924435886e-06 0.01505376115834393 4.0702803445166955e-05 0.019238798908491502 7.919320245328448e-05']
['59866.31786629173 0.03427107744619744 6.794505547160066e-05 0.015020554159997486 4.0663722444884034e-05 0.0005312434316762515 1.4381849848044767e-06 0.015020554159997488 4.0663722444884034e-05 0.01925052328619995 7.918376655674734e-05']
['59866.317897829686 0.034338269782842795 6.800819894260595e-05 0.015015339227492035 4.06632734168069e-05 0.0005310589911682219 1.4381691036849073e-06 0.015015339227492035 4.06632734168069e-05 0.01932293055535076 7.923772414946724e-05']
['59866.31792936765 0.03432247601730851 6.796616518573245e-05 0.015100777820904118 4.069523197423623e-05 0.0005340807632731889 1.4392994064380104e-06 0.015100777820904118 4.069523197423623e-05 0.019221698196404395 7.92180630632381e-05']
['59866.31796090562 0.03418434336254313 6.789973455773409e-05 0.015029841098136595 4.066176003977665e-05 0.0005315718899231466 1.4381155789215458e-06 0.015029841098136595 4.066176003977665e-05 0.01915450226440654 7.91438733102135e-05']
['59866.317992443575 0.034320986819422264 6.793814897814598e-05 0.01510697506928461 4.0718991716210846e-05 0.000534299946098372 1.4401397354117544e-06 0.015106975069284611 4.0718991716210846e-05 0.019214011750137653 7.920623948251555e-05']
['59866.31802398154 0.034233581093335984 6.78923173273954e-05 0.015082440992557658 4.06831590153179e-05 0.0005334322306349741 1.4388724128625442e-06 0.015082440992557658 4.06831590153179e-05 0.019151140100778327 7.914850712141952e-05']
['59866.3180555195 0.03428817009178358 6.797569158367601e-05 0.014991679564010296 4.0644001906596116e-05 0.0005302222017471087 1.4374875134380424e-06 0.014991679564010298 4.0644001906596116e-05 0.019296490527773283 7.919993394733628e-05']
['59866.318087057465 0.0342108196212815 6.79101415290562e-05 0.015056786572290705 4.066501506592004e-05 0.0005325248911243869 1.4382307019216823e-06 0.015056786572290705 4.066501506592004e-05 0.0191540330489908 7.915447411743663e-05']
['59866.31811859543 0.034186730485708056 6.788877559436854e-05 0.014986441316258483 4.064613139263613e-05 0.0005300369366309218 1.4375628286001564e-06 0.014986441316258484 4.064613139263613e-05 0.01920028916944957 7.912644215993772e-05']
['59866.31815013339 0.03422096520297324 6.787195954184519e-05 0.015062356226631924 4.069108268367907e-05 0.000532721877350991 1.4391526553041223e-06 0.015062356226631926 4.069108268367907e-05 0.019158608976341314 7.913511927090195e-05']
['59866.318181671355 0.03416840296598022 6.784126187145557e-05 0.014988024570905678 4.064437975831648e-05 0.0005300929328094272 1.4375008772089428e-06 0.014988024570905678 4.064437975831648e-05 0.01918037839507454 7.908477994057805e-05']
['59866.31821320932 0.03422618062264098 6.78965457590738e-05 0.015074014974555483 4.0699543309978236e-05 0.0005331342212092792 1.4394518887479368e-06 0.015074014974555485 4.0699543309978236e-05 0.019152165648085497 7.916055679222322e-05']
['59866.31824474728 0.03423992478934201 6.789807430619835e-05 0.014932979308228142 4.059646265905442e-05 0.0005281461048874446 1.4358061564964578e-06 0.014932979308228143 4.059646265905442e-05 0.01930694548111387 7.910892032456284e-05']
['59866.318276285245 0.034277558874790746 6.795026439515427e-05 0.015072885542231842 4.068084461087699e-05 0.0005330942757121247 1.4387905575498587e-06 0.015072885542231844 4.068084461087699e-05 0.019204673332558903 7.919702992932052e-05']
['59866.3183078232 0.0342356087030214 6.789918878086356e-05 0.015137164012755224 4.070444178183101e-05 0.0005353676615606097 1.4396251367499292e-06 0.015137164012755224 4.070444178183101e-05 0.019098444690266177 7.916534227722267e-05']
['59866.31833936117 0.03425147514964554 6.791223362917527e-05 0.01510155093038817 4.0695229583414944e-05 0.0005341081064278418 1.4392993218800047e-06 0.01510155093038817 4.0695229583414944e-05 0.019149924219257375 7.917179540310133e-05']
['59866.318370899135 0.03426397716147951 6.79281900054422e-05 0.01501336959339109 4.065873807106094e-05 0.0005309893296119447 1.438008698641774e-06 0.015013369593391092 4.065873807106094e-05 0.01925060756808842 7.916673530559788e-05']
['59866.31840243709 0.03435699618588131 6.797335552421267e-05 0.01507793154382383 4.070610372666197e-05 0.0005332727415112835 1.4396839160243722e-06 0.015077931543823832 4.070610372666197e-05 0.01927906464205748 7.922981725226164e-05']
['59866.31843397506 0.034201338994438585 6.788769579721189e-05 0.015069505496771794 4.070757990481043e-05 0.0005329747310581597 1.4397361251464192e-06 0.015069505496771793 4.070757990481043e-05 0.01913183349766679 7.915709887534602e-05']
['59866.318465513024 0.03426486151218697 6.792544810690497e-05 0.015019131613041156 4.06766746432076e-05 0.0005311931193696114 1.4386430751127218e-06 0.015019131613041156 4.06766746432076e-05 0.01924572989914581 7.917359635985476e-05']
['59866.31849705098 0.03432729796934211 6.798948628079306e-05 0.015051019810882303 4.068444641211418e-05 0.000532320933661325 1.4389179452100664e-06 0.015051019810882303 4.068444641211418e-05 0.01927627815845981 7.92325338771034e-05']
['59866.31852858895 0.03417058514595553 6.78787330812209e-05 0.015006261808150685 4.066453400511597e-05 0.0005307379431329566 1.43821368787615e-06 0.015006261808150685 4.066453400511597e-05 0.019164323337804844 7.91272818348063e-05']
['59866.31856012691 0.034282445581505235 6.795106542906787e-05 0.015034023355468423 4.06754047086311e-05 0.0005317198070181782 1.4385981603648878e-06 0.01503402335546842 4.06754047086311e-05 0.019248422226036815 7.91949230769018e-05']
['59866.31859166487 0.03425946254240159 6.790242871030448e-05 0.015026030889018164 4.064320132367004e-05 0.0005314371313419439 1.4374591986091446e-06 0.015026030889018164 4.064320132367004e-05 0.01923343165338343 7.913665167666848e-05']
['59866.31862320284 0.0343122102099617 6.796128381641764e-05 0.015064894150811482 4.069149102958711e-05 0.0005328116380572952 1.4391670975862903e-06 0.01506489415081148 4.069149102958711e-05 0.019247316059150216 7.921195326582118e-05']
['59866.3186547408 0.03428493168887752 6.795754526985408e-05 0.015050688527654524 4.066450528651442e-05 0.0005323092169139329 1.4382126721633955e-06 0.015050688527654526 4.066450528651442e-05 0.019234243161223 7.91948858784532e-05']
['59866.31868627876 0.0343351111529396 6.79807251307725e-05 0.015035099086029808 4.065965966156192e-05 0.0005317578532040182 1.4380412932381598e-06 0.015035099086029808 4.065965966156192e-05 0.019300012066909792 7.921229016446684e-05']
['59866.31871781673 0.034266260926356554 6.79549051907291e-05 0.014960226870804371 4.063185451550836e-05 0.0005291097902810474 1.4370578873630898e-06 0.01496022687080437 4.063185451550836e-05 0.019306034055552184 7.917585958390612e-05']
['59866.31874935469 0.034349114818612636 6.800720427754037e-05 0.015044002774711981 4.06753798221652e-05 0.0005320727567741336 1.4385972801862068e-06 0.015044002774711981 4.06753798221652e-05 0.019305112043900653 7.924308397156504e-05']
['59866.31878089265 0.03417989602463757 6.786174878171882e-05 0.01502189869273306 4.066559481018016e-05 0.000531290984794255 1.4382512061805106e-06 0.01502189869273306 4.066559481018016e-05 0.01915799733190451 7.911325773205694e-05']
['59866.31881243061 0.03425506201616843 6.793001295270803e-05 0.015007503072687533 4.0659121095522625e-05 0.0005307818438855619 1.4380222453609745e-06 0.015007503072687533 4.0659121095522625e-05 0.019247558943480896 7.91684961838701e-05']
['59866.31884396858 0.03427429268179613 6.79497484636059e-05 0.015036308837272255 4.067510494562651e-05 0.0005318006394018286 1.438587558417346e-06 0.015036308837272255 4.067510494562651e-05 0.019237983844523875 7.91936391296993e-05']
['59866.31887550654 0.0342360382572863 6.79364822978497e-05 0.01503258388700513 4.066079133966144e-05 0.0005316688962356543 1.4380813181633885e-06 0.01503258388700513 4.066079133966144e-05 0.01920345437028117 7.91749049849353e-05']
['59866.3189070445 0.03429927352510861 6.79705495093973e-05 0.014993932714810181 4.0650923198982205e-05 0.000530301890655405 1.4377323040815603e-06 0.014993932714810181 4.0650923198982205e-05 0.019305340810298426 7.91990729588357e-05']
['59866.318938582466 0.03434723429806997 6.799986131136565e-05 0.015114887099654679 4.0714809421396015e-05 0.0005345797769302142 1.4399918169910327e-06 0.01511488709965468 4.0714809421396015e-05 0.019232347198415288 7.925703025338232e-05']
['59866.318970120425 0.034234646219316114 6.792528807264814e-05 0.014984230038998016 4.063526649826093e-05 0.0005299587286961329 1.4371785615677156e-06 0.014984230038998018 4.063526649826093e-05 0.019250416180318097 7.915219291426437e-05']
['59866.31900165839 0.03436230087776519 6.80042248761416e-05 0.015080101535841266 4.0693827932695084e-05 0.0005333494892792934 1.4392497486265483e-06 0.015080101535841267 4.0693827932695084e-05 0.019282199341923927 7.924999831432572e-05']
['59866.319033196356 0.034300515450576705 6.796494328380449e-05 0.015041998175422998 4.065611511443622e-05 0.000532001858577298 1.4379159305279205e-06 0.015041998175422998 4.065611511443622e-05 0.019258517275153708 7.91969267823509e-05']
['59866.319064734314 0.034347419788150785 6.801242592695955e-05 0.015016605548908185 4.066276144606873e-05 0.0005311037781266494 1.4381509964240856e-06 0.015016605548908187 4.066276144606873e-05 0.0193308142392426 7.924108939742091e-05']
['59866.31909627228 0.034233732159228224 6.788679484159718e-05 0.015020954538531505 4.067153706133025e-05 0.0005312575921702064 1.4384613703235394e-06 0.015020954538531504 4.067153706133025e-05 0.01921277762069672 7.91377965374085e-05']
['59866.319127810246 0.0343358608031953 6.79717111346154e-05 0.015007632113561492 4.065995322619196e-05 0.0005307864077728845 1.4380516759630462e-06 0.015007632113561492 4.065995322619196e-05 0.019328228689633804 7.92047051059703e-05']
['59866.319159348204 0.034268483675853494 6.794991016469602e-05 0.014938610180988722 4.060492524318023e-05 0.0005283452562727263 1.4361054591842253e-06 0.014938610180988722 4.060492524318023e-05 0.01932987349486477 7.915775543428777e-05']
['59866.31919088617 0.03422680280723993 6.791734664748629e-05 0.015012620276048544 4.0667256438399916e-05 0.0005309628279321645 1.4383099742571228e-06 0.015012620276048544 4.0667256438399916e-05 0.019214182531191386 7.916180721699951e-05']
['59866.31922242413 0.03422551201128202 6.791291434174882e-05 0.015089491107716872 4.0691020536371866e-05 0.0005336815774520755 1.4391504572927575e-06 0.015089491107716872 4.0691020536371866e-05 0.019136020903565143 7.917021590649573e-05']
['59866.319253962094 0.034327271247573815 6.79824871415321e-05 0.01503719496996093 4.067809962840944e-05 0.000531831979934637 1.4386934736546563e-06 0.015037194969960928 4.067809962840944e-05 0.019290076277612887 7.922326897652849e-05']
['59866.31928550006 0.034252888832383 6.792205252702296e-05 0.01505849757721554 4.066559695914051e-05 0.0005325854055447073 1.4382512821844357e-06 0.015058497577215538 4.066559695914051e-05 0.01919439125516746 7.916499223474303e-05']
['59866.31931703802 0.03431469601120552 6.796705924695155e-05 0.014955250908668912 4.0600302322483465e-05 0.000528933801620937 1.4359419568108005e-06 0.01495525090866891 4.0600302322483465e-05 0.01935944510253661 7.917010604613132e-05']
['59866.319348575984 0.03432172098204124 6.799304580143588e-05 0.01503986110015584 4.067509410487743e-05 0.0005319262750011807 1.4385871750042788e-06 0.01503986110015584 4.067509410487743e-05 0.0192818598818854 7.923078667914885e-05']
['59866.31938011395 0.03437081713441394 6.800168598085377e-05 0.0150583406481028 4.067971974407238e-05 0.0005325798553127057 1.4387507735249092e-06 0.0150583406481028 4.067971974407238e-05 0.019312476486311143 7.924057606236161e-05']
['59866.31941165191 0.03427349557784295 6.797428415162389e-05 0.01498226949915363 4.0650081567510374e-05 0.0005298893887833856 1.4377025374573372e-06 0.014982269499153628 4.0650081567510374e-05 0.01929122607868932 7.920184617400627e-05']
['59866.319443189874 0.03425014293387999 6.790682323817263e-05 0.015019068608896154 4.068803397749956e-05 0.0005311908910538087 1.4390448293800103e-06 0.015019068608896154 4.068803397749956e-05 0.01923107432498384 7.916345590772665e-05']
['59866.31947472783 0.034361118579697134 6.797715012296228e-05 0.01508706773417765 4.0685010438542664e-05 0.0005335958681459143 1.4389378935643169e-06 0.01508706773417765 4.0685010438542664e-05 0.01927405084551948 7.922223812304268e-05']
['59866.3195062658 0.03425616787900997 6.791617091342509e-05 0.01510505876469825 4.0706810463195477e-05 0.0005342321706878411 1.439708911716099e-06 0.01510505876469825 4.0706810463195477e-05 0.019151109114311723 7.918112584213545e-05']
['59866.31953780376 0.03441168885498258 6.803962577952888e-05 0.015095080123614739 4.070886280218195e-05 0.0005338792484536676 1.4397814983593431e-06 0.015095080123614739 4.070886280218195e-05 0.01931660873136784 7.928809612334757e-05']
['59866.31956934172 0.034288314779950584 6.791946519526908e-05 0.015027836611914707 4.0651034430750014e-05 0.0005315009957252415 1.4377362381005993e-06 0.015027836611914707 4.0651034430750014e-05 0.019260478168035874 7.91552926385936e-05']
['59866.31960087969 0.03431570534286699 6.794067234401789e-05 0.015112799183099128 4.071529021495041e-05 0.0005345059319878631 1.4400088215845414e-06 0.015112799183099126 4.071529021495041e-05 0.01920290615976786 7.920650109583704e-05']
['59866.31963241765 0.03431884004063863 6.797670814339002e-05 0.015001101491302123 4.0649656944649345e-05 0.0005305554342586524 1.4376875194957188e-06 0.015001101491302123 4.0649656944649345e-05 0.019317738549336504 7.920370862358218e-05']
['59866.31966395561 0.03424342851064658 6.792132026762704e-05 0.014942488437165495 4.062003069259455e-05 0.0005284824215263063 1.4366397051713174e-06 0.014942488437165493 4.062003069259455e-05 0.019300940073481085 7.914096689051055e-05']
['59866.31969549358 0.03437224024135917 6.798080154784518e-05 0.0151373066611893 4.0715345623332084e-05 0.0005353727067169225 1.4400107812551706e-06 0.0151373066611893 4.0715345623332084e-05 0.019234933580169866 7.924095373173456e-05']
['59866.319727031536 0.034305683347361296 6.796922609339914e-05 0.015060233494873287 4.068649488458439e-05 0.0005326468010727142 1.438990395103271e-06 0.015060233494873287 4.068649488458439e-05 0.01924544985248801 7.921620138411664e-05']
['59866.3197585695 0.034205645120965224 6.788622086877026e-05 0.015007806575658002 4.0654144715632016e-05 0.0005307925781073382 1.437846241925798e-06 0.015007806575658002 4.0654144715632016e-05 0.01919783854530722 7.912836701463647e-05']
['59866.31979010747 0.034246052188605054 6.7896466273153e-05 0.015004592989313408 4.0656787568920214e-05 0.0005306789207402727 1.4379397137401721e-06 0.015004592989313406 4.0656787568920214e-05 0.019241459199291648 7.91385146929465e-05']
['59866.319821645426 0.034279706120026565 6.79707368688995e-05 0.01500747009584729 4.065206483658121e-05 0.0005307806775684215 1.4377726812520272e-06 0.015007470095847292 4.065206483658121e-05 0.019272236024179275 7.919981973450936e-05']
['59866.31985318339 0.034335294142611404 6.798748587405945e-05 0.01500320348003925 4.066023452847376e-05 0.0005306297769026162 1.43806162499608e-06 0.015003203480039248 4.066023452847376e-05 0.019332090662572157 7.921838743237534e-05']
['59866.31988472136 0.03436037940210104 6.798627214289289e-05 0.015125929582750478 4.071733747376826e-05 0.0005349703248788152 1.4400812285535744e-06 0.015125929582750478 4.071733747376826e-05 0.019234449819350567 7.92466704085429e-05']
['59866.319916259316 0.03421827824842621 6.7894424043627e-05 0.01503384627198779 4.067465328715156e-05 0.0005317135439712266 1.4385715842664845e-06 0.015033846271987792 4.067465328715156e-05 0.019184431976438418 7.914594263918919e-05']
['59866.31994779728 0.03428428089692833 6.79210719356799e-05 0.015063253708036432 4.06692837358406e-05 0.0005327536192625155 1.4383816752368569e-06 0.01506325370803643 4.06692837358406e-05 0.0192210271888919 7.91660448202265e-05']
['59866.31997933524 0.03423322868220696 6.790383931017799e-05 0.014952583486862644 4.061639020969203e-05 0.0005288394608729863 1.4365109494270555e-06 0.014952583486862644 4.061639020969203e-05 0.019280645195344316 7.912409586673607e-05']
['59866.320010873205 0.03424321036017391 6.791308904171168e-05 0.015069883203085712 4.068489861417915e-05 0.0005329880896863591 1.438933938586492e-06 0.015069883203085712 4.068489861417915e-05 0.019173327157088194 7.916721946887799e-05']
['59866.32004241117 0.03414032321163776 6.783440885677687e-05 0.014979147598236457 4.061936586142918e-05 0.0005297789741249831 1.4366161915788082e-06 0.014979147598236457 4.061936586142918e-05 0.019161175613401304 7.906604775713155e-05']
['59866.32007394913 0.034278257324806036 6.792167710088984e-05 0.015075162677034366 4.067142189165374e-05 0.0005331748128809932 1.4384572970294705e-06 0.015075162677034367 4.067142189165374e-05 0.019203094647771667 7.916766245687967e-05']
['59866.320105487095 0.03425060257062805 6.793363652395249e-05 0.014954223644422034 4.0626467423374814e-05 0.0005288974695803254 1.4368673579537684e-06 0.014954223644422034 4.0626467423374814e-05 0.019296378926206018 7.915484082904232e-05']
['59866.32013702506 0.03417334776698245 6.785960586123927e-05 0.015021903256407614 4.0661155287511205e-05 0.0005312911462012247 1.4380941901854589e-06 0.015021903256407614 4.0661155287511205e-05 0.019151444510574836 7.910913763250007e-05']
['59866.32016856302 0.034183375191256596 6.785822284570097e-05 0.01501833053017966 4.0669531459908796e-05 0.0005311647868591152 1.4383904366835182e-06 0.01501833053017966 4.0669531459908796e-05 0.019165044661076935 7.911225693244583e-05']
['59866.320200100985 0.0342216227958419 6.791032810581676e-05 0.015008038302895581 4.065720416853036e-05 0.0005308007737818515 1.4379544479373377e-06 0.015008038302895581 4.065720416853036e-05 0.019213584492946318 7.915062169207042e-05']
['59866.32023163894 0.03434687972251424 6.801643267999275e-05 0.015049105272734845 4.067705346141782e-05 0.0005322532207257903 1.4386564730662084e-06 0.015049105272734845 4.067705346141782e-05 0.019297774449779394 7.925186302425344e-05']
['59866.32026317691 0.03416646934426228 6.784694837002844e-05 0.014954647576384237 4.0624158459373006e-05 0.0005289124631063964 1.4367856950572554e-06 0.014954647576384237 4.0624158459373006e-05 0.019211821767878046 7.90792681659204e-05']
['59866.320294714875 0.03420047645521577 6.785898949667528e-05 0.014957165941115475 4.062856793243768e-05 0.0005290015320387264 1.4369416482649609e-06 0.014957165941115477 4.062856793243768e-05 0.01924331051410029 7.90918642323633e-05']
['59866.32032625283 0.03430251444275572 6.796599373604593e-05 0.015081571265724476 4.0681128825504665e-05 0.0005334014703406095 1.4388006095860573e-06 0.015081571265724476 4.0681128825504665e-05 0.019220943177031245 7.921067192648691e-05']
['59866.3203577908 0.03429784849801496 6.79549179308197e-05 0.015117965946143817 4.071264391428089e-05 0.000534688668849718 1.4399152278439943e-06 0.015117965946143817 4.071264391428089e-05 0.019179882551871145 7.921736075807799e-05']
['59866.320389328765 0.034256832916805015 6.793802055740352e-05 0.01505103272472098 4.0680422255963725e-05 0.0005323213903949383 1.4387756198004843e-06 0.01505103272472098 4.0680422255963725e-05 0.019205800192084035 7.918630811056726e-05']
['59866.32042086672 0.03434485980118803 6.796914693351744e-05 0.015036987479242184 4.066493427171409e-05 0.0005318246414516294 1.4382278444111825e-06 0.015036987479242182 4.066493427171409e-05 0.01930787232194585 7.920506179653489e-05']
['59866.32045240469 0.0340973901710923 6.779079594532732e-05 0.015034393975646342 4.0659202889089e-05 0.0005317329150255839 1.4380251382166191e-06 0.01503439397564634 4.0659202889089e-05 0.019062996195445957 7.904911634216482e-05']
['59866.32048394265 0.03428124185667452 6.794275736500356e-05 0.015020126170829552 4.065077274785388e-05 0.0005312282946558812 1.4377269829613897e-06 0.015020126170829554 4.065077274785388e-05 0.019261115685844966 7.917514511105998e-05']
['59866.32051548061 0.0341300543531949 6.784886771372301e-05 0.014971785535667017 4.06394808140028e-05 0.0005295185944251435 1.437327612497064e-06 0.014971785535667017 4.06394808140028e-05 0.019158268817527878 7.908878713740644e-05']
['59866.32054701858 0.034270608583863035 6.792241914976068e-05 0.014989539602715932 4.064920278202951e-05 0.000530146516098659 1.437671456778849e-06 0.014989539602715932 4.064920278202951e-05 0.019281068981147103 7.915688668694804e-05']
['59866.32057855654 0.03430600212564377 6.793536116456568e-05 0.015051985317781475 4.067498511786056e-05 0.0005323550814825677 1.4385833203770638e-06 0.015051985317781475 4.067498511786056e-05 0.019254016807862293 7.918123332518986e-05']
['59866.3206100945 0.03432231068779497 6.797387231635345e-05 0.015101474720072193 4.068728248569044e-05 0.0005341054110392858 1.439018250794207e-06 0.015101474720072195 4.068728248569044e-05 0.019220835967722776 7.922059248547876e-05']
['59866.32064163247 0.03424736721596713 6.791061432420795e-05 0.01503414117294221 4.066285912121613e-05 0.0005317239739589196 1.4381544509757578e-06 0.01503414117294221 4.066285912121613e-05 0.019213226043024917 7.915377217671429e-05']
['59866.32067317043 0.03422862879520458 6.789687850534897e-05 0.015005908948027348 4.064736361908717e-05 0.0005307254632589901 1.4376064096958658e-06 0.015005908948027346 4.064736361908717e-05 0.019222719847177234 7.913402732044168e-05']
['59866.32070470839 0.034324531186403016 6.798624235758922e-05 0.014964788001377297 4.062211267575416e-05 0.0005292711072758849 1.4367133402627143e-06 0.014964788001377297 4.062211267575416e-05 0.01935974318502572 7.919775999450065e-05']
['59866.32073624635 0.03423500659182507 6.791272335416846e-05 0.015043013715450054 4.068122543930549e-05 0.0005320377759584565 1.4388040266002733e-06 0.015043013715450053 4.068122543930549e-05 0.01919199287637502 7.916501813694868e-05']
['59866.32076778432 0.0343511204598018 6.799804423251633e-05 0.015014630887615092 4.0643376080694016e-05 0.0005310339387698209 1.4374653793745235e-06 0.015014630887615092 4.0643376080694016e-05 0.019336489572186706 7.921879851830611e-05']
['59866.32079932228 0.0342739488488264 6.793963079362526e-05 0.015043033546254147 4.0685460874409465e-05 0.000532038477329678 1.4389538244742606e-06 0.015043033546254145 4.0685460874409465e-05 0.019230915302572253 7.919027818449191e-05']
['59866.32083086024 0.03429054289523953 6.794997309474638e-05 0.015009177477640322 4.066974823975867e-05 0.0005308410638466672 1.4383981037023337e-06 0.01500917747764032 4.066974823975867e-05 0.019281365417599207 7.919108071911956e-05']
['59866.32086239821 0.034153877833346974 6.78760407023694e-05 0.015022566839821902 4.0666099231385614e-05 0.0005313146156635664 1.4382690464312325e-06 0.015022566839821902 4.0666099231385614e-05 0.019131310993525073 7.912577663521926e-05']
['59866.32089393617 0.03429868561267988 6.793201594123555e-05 0.015070566739232766 4.0671349263238316e-05 0.000533012264832267 1.4384547283247319e-06 0.015070566739232766 4.0671349263238316e-05 0.019228118873447116 7.917649550676386e-05']
['59866.32092547413 0.0342062644104734 6.790842489762346e-05 0.015041686629911859 4.067047894267303e-05 0.0005319908399088322 1.4384239470313898e-06 0.015041686629911859 4.067047894267303e-05 0.01916457778056154 7.915580856451772e-05']
['59866.320957012096 0.034219589320536384 6.790104134184072e-05 0.015044737026646233 4.0670222202810725e-05 0.0005320987256240916 1.4384148667162398e-06 0.015044737026646235 4.0670222202810725e-05 0.019174852293890148 7.914934231774994e-05']
['59866.320988550055 0.03421554668225431 6.789488283705941e-05 0.01495037966395015 4.061861225217896e-05 0.0005287615165818257 1.4365895381038455e-06 0.014950379663950152 4.061861225217896e-05 0.019265167018304157 7.911755037127279e-05']
['59866.32102008802 0.03430496013016641 6.792781613269168e-05 0.015048644313616836 4.0663372406071455e-05 0.0005322369176319693 1.4381726047139666e-06 0.015048644313616834 4.0663372406071455e-05 0.019256315816549574 7.916879473625716e-05']
['59866.321051625986 0.03437150806615392 6.79896070500638e-05 0.015077648625232584 4.068027088381515e-05 0.0005332627353129969 1.4387702661058861e-06 0.015077648625232584 4.068027088381515e-05 0.019293859440921334 7.923049353628099e-05']
['59866.321083163944 0.034247885931479816 6.791623573701006e-05 0.014975480116727983 4.0637997476111214e-05 0.0005296492635003671 1.4372751501509036e-06 0.01497548011672798 4.0637997476111214e-05 0.019272405814751835 7.914582689917103e-05']
['59866.32111470191 0.034250493557350145 6.79157955368122e-05 0.015035784776057198 4.066670692898716e-05 0.00053178210452786 1.438290539337275e-06 0.0150357847760572 4.066670692898716e-05 0.019214708781292944 7.916019413724433e-05']
['59866.321146239876 0.03422542264358183 6.788721107248703e-05 0.015028597202275474 4.067425503859884e-05 0.0005315278961064824 1.4385574991052078e-06 0.015028597202275474 4.067425503859884e-05 0.01919682544130636 7.913955047980364e-05']
['59866.321177777834 0.03441255913587344 6.803369395172085e-05 0.015066751388351556 4.069334472443478e-05 0.000532877324398406 1.4392326586302882e-06 0.015066751388351556 4.069334472443478e-05 0.019345807747521884 7.927503905756277e-05']
['59866.3212093158 0.03430524301479121 6.795067250844718e-05 0.015075065888522155 4.068813704016466e-05 0.0005331713896876258 1.4390484744761435e-06 0.015075065888522155 4.068813704016466e-05 0.019230177126269052 7.92011261924315e-05']
['59866.32124085376 0.03428791372185831 6.796194810274694e-05 0.01505832925714625 4.068708453000073e-05 0.0005325794524400298 1.4390112495438669e-06 0.015058329257146251 4.068708453000073e-05 0.01922958446471206 7.921025967304925e-05']
['59866.321272391724 0.03422943280426228 6.792882113483074e-05 0.015075892371005208 4.068386484477307e-05 0.0005332006205259718 1.4388973764729376e-06 0.01507589237100521 4.068386484477307e-05 0.01915354043325707 7.918018438647127e-05']
['59866.32130392969 0.03427260644109254 6.794281568213675e-05 0.015065384645438249 4.0687394114535724e-05 0.000532828985756053 1.439022198856989e-06 0.015065384645438249 4.0687394114535724e-05 0.019207221795654292 7.919400383014085e-05']
['59866.32133546765 0.034306907333976726 6.795273318455951e-05 0.015069190444290058 4.069097904296915e-05 0.0005329635883559816 1.4391489897638357e-06 0.015069190444290058 4.069097904296915e-05 0.019237716889686667 7.920435419045653e-05']
['59866.321367005614 0.03425326143882929 6.793815495209929e-05 0.015006173851893524 4.066339881027651e-05 0.0005307348323167115 1.4381735385716894e-06 0.015006173851893524 4.066339881027651e-05 0.019247087586935767 7.917767931114835e-05']
['59866.32139854358 0.03426761702508182 6.793025038191844e-05 0.014986765531664984 4.0643353217613826e-05 0.0005300484034052709 1.4374645707584733e-06 0.014986765531664982 4.0643353217613826e-05 0.019280851493416837 7.916060306567813e-05']
['59866.32143008154 0.03420560848208182 6.787239852687416e-05 0.01498159893979717 4.0631742853508014e-05 0.0005298656725975596 1.4370539381276874e-06 0.01498159893979717 4.0631742853508014e-05 0.019224009542284648 7.910499989952866e-05']
['59866.321461619504 0.034407329011305623 6.804247727329297e-05 0.015051167730459832 4.0679768224977056e-05 0.0005323261652462013 1.4387524881861591e-06 0.01505116773045983 4.0679768224977056e-05 0.019356161280845795 7.927560946674862e-05']
['59866.32149315746 0.03419697997081869 6.78626315751345e-05 0.015034968841858204 4.0682410977378723e-05 0.0005317532467587472 1.438845956432402e-06 0.015034968841858206 4.0682410977378723e-05 0.019162011128960488 7.912266001111684e-05']
['59866.32152469543 0.034244651585016855 6.788177866655715e-05 0.015074124594028406 4.066835294172324e-05 0.0005331380982050514 1.4383487551291283e-06 0.015074124594028408 4.066835294172324e-05 0.019170526990988448 7.913185708630895e-05']
['59866.32155623339 0.034307381992387045 6.795882583192314e-05 0.014980904765851713 4.0654721065783296e-05 0.0005298411212164962 1.437866626142582e-06 0.014980904765851713 4.0654721065783296e-05 0.019326477226535334 7.919096131118947e-05']
['59866.32158777135 0.034279740608759865 6.79490697935555e-05 0.015096702246245168 4.070244939057565e-05 0.0005339366193058752 1.4395546703239597e-06 0.015096702246245168 4.070244939057565e-05 0.0191830383625147 7.920710493511203e-05']
['59866.32161930932 0.03422923362247155 6.79018800683738e-05 0.015027996480155152 4.066586269062933e-05 0.0005315066499076215 1.4382606805133203e-06 0.015027996480155152 4.066586269062933e-05 0.019201237142316398 7.914782186006724e-05']
['59866.32165084728 0.034262725817758195 6.792291526249491e-05 0.015005462004258415 4.065551274553388e-05 0.0005307096558567436 1.43789462608606e-06 0.015005462004258415 4.065551274553388e-05 0.019257263813499778 7.916055289320768e-05']
['59866.32168238524 0.03432766456333525 6.795689795707846e-05 0.01511795549868065 4.0716777164658624e-05 0.0005346882993462945 1.4400614116725838e-06 0.01511795549868065 4.0716777164658624e-05 0.0192097090646546 7.922118354723842e-05']
['59866.32171392321 0.034188422576028256 6.788745884873479e-05 0.015000426829804011 4.065148944558407e-05 0.0005305315729892438 1.4377523309583817e-06 0.01500042682980401 4.065148944558407e-05 0.01918799574622425 7.912806495222218e-05']
['59866.321745461166 0.03428911818362439 6.795533059590458e-05 0.015035022778776826 4.067006661270265e-05 0.0005317551543870169 1.4384093638418405e-06 0.015035022778776828 4.067006661270265e-05 0.019254095404847557 7.919584127137204e-05']
['59866.32177699913 0.034265759851790686 6.790938207361106e-05 0.015062429328069026 4.067719441724719e-05 0.0005327244627854491 1.4386614583588754e-06 0.015062429328069024 4.067719441724719e-05 0.01920333052372166 7.916008033900808e-05']
['59866.3218085371 0.03424420207780706 6.790646006811823e-05 0.014995446787186562 4.063707532543095e-05 0.0005303554400116049 1.4372425357422283e-06 0.014995446787186562 4.063707532543095e-05 0.0192487552906205 7.913696487727897e-05']
['59866.321840075056 0.03431017045427811 6.795585730993513e-05 0.01512259319977078 4.070578486917982e-05 0.0005348523244692005 1.439672638747833e-06 0.015122593199770782 4.070578486917982e-05 0.01918757725450733 7.921464173083289e-05']
['59866.32187161302 0.03422138698276767 6.788872985387685e-05 0.015002418194250756 4.066270165828889e-05 0.0005306020030992877 1.4381488818639304e-06 0.015002418194250758 4.066270165828889e-05 0.019218968788516914 7.913491610739016e-05']
['59866.32190315099 0.03423140997790038 6.787332276486871e-05 0.015088990802463478 4.070864623163263e-05 0.0005336638827733793 1.4397738387430202e-06 0.015088990802463478 4.070864623163263e-05 0.019142419175436905 7.914532090500526e-05']
['59866.321934688945 0.03425889239434134 6.792941369992369e-05 0.015074875726346365 4.068402136645893e-05 0.0005331646640764555 1.438902912295161e-06 0.015074875726346363 4.068402136645893e-05 0.01918401666799498 7.918077317229143e-05']
['59866.32196622691 0.034300060014514654 6.798834113712332e-05 0.015041086880905915 4.066057546747377e-05 0.000531969628126852 1.4380736832465564e-06 0.015041086880905913 4.066057546747377e-05 0.01925897313360874 7.921929643668886e-05']
['59866.32199776487 0.0343272205979927 6.799736709043198e-05 0.015073669950958025 4.069552581841994e-05 0.0005331220184957194 1.4393097990500853e-06 0.015073669950958025 4.069552581841994e-05 0.019253550647034677 7.924498566388062e-05']
['59866.322029302835 0.03433333768429762 6.797005774394271e-05 0.015079864055393927 4.069130018019264e-05 0.0005333410901266085 1.4391603476697311e-06 0.015079864055393926 4.069130018019264e-05 0.019253473628903693 7.921938310836213e-05']
['59866.3220608408 0.03438279131219242 6.800066367997626e-05 0.015067359209205603 4.068390214759803e-05 0.000532898821663614 1.4388986957904896e-06 0.015067359209205601 4.068390214759803e-05 0.01931543210298682 7.924184598349899e-05']
['59866.32209237876 0.03439882634505573 6.801745681509275e-05 0.014988317741998885 4.064519854080705e-05 0.000530103301615795 1.437529835715763e-06 0.014988317741998883 4.064519854080705e-05 0.019410508603056844 7.923639691464164e-05']
['59866.322123916725 0.03422699513915978 6.789662642222483e-05 0.015004865109076082 4.0650761121507304e-05 0.0005306885450081266 1.4377265717634947e-06 0.01500486510907608 4.0650761121507304e-05 0.019222130030083696 7.913555622649663e-05']
['59866.32215545469 0.034243771187525036 6.791528111936076e-05 0.01497820782526883 4.063651074143826e-05 0.0005297457364553871 1.4372225676681777e-06 0.01497820782526883 4.063651074143826e-05 0.019265563362256207 7.914424435649649e-05']
['59866.32218699265 0.034309726131806655 6.796081835733976e-05 0.015038616221350552 4.06538886534256e-05 0.0005318822464199781 1.4378371855778223e-06 0.015038616221350552 4.06538886534256e-05 0.0192711099104561 7.919224390332967e-05']
['59866.322218530615 0.03443442703068794 6.805543558105678e-05 0.015149734362842272 4.073298422832759e-05 0.0005358122467501096 1.4406346192938996e-06 0.015149734362842272 4.073298422832759e-05 0.01928469266784567 7.931404866902555e-05']
['59866.32225006857 0.03433380020724073 6.797076222879072e-05 0.01502139035388249 4.066955448965482e-05 0.0005312730059851807 1.4383912511941666e-06 0.01502139035388249 4.066955448965482e-05 0.01931240985335824 7.920882009189258e-05']
['59866.32228160654 0.034199677484434664 6.788438627850357e-05 0.015031136364995843 4.06641074028391e-05 0.0005316177006172071 1.4381985999070172e-06 0.015031136364995843 4.06641074028391e-05 0.01916854111943882 7.913191221800923e-05']
['59866.322313144505 0.03424475066859955 6.791533007436133e-05 0.015038471851885832 4.067327529935705e-05 0.0005318771403946576 1.4385228479178142e-06 0.01503847185188583 4.067327529935705e-05 0.019206278816713718 7.916316935726321e-05']
['59866.32234468246 0.03435844502417897 6.801669439093387e-05 0.015047503921028195 4.06872708430844e-05 0.0005321965844947365 1.4390178390212513e-06 0.015047503921028195 4.06872708430844e-05 0.019310941103150778 7.925733230766856e-05']
['59866.32237622043 0.03425810977416722 6.792036401139016e-05 0.014992761463539837 4.063699100102031e-05 0.0005302604661155654 1.4372395533762779e-06 0.014992761463539837 4.063699100102031e-05 0.01926534831062738 7.914885270840475e-05']
['59866.322407758395 0.034189624346030976 6.788064236425517e-05 0.015027463816564461 4.065701658859959e-05 0.0005314878107868518 1.4379478136544028e-06 0.015027463816564461 4.065701658859959e-05 0.019162160529466517 7.912505674986637e-05']
['59866.32243929635 0.03422030227666062 6.788525973129923e-05 0.015017869759503305 4.0667955355106184e-05 0.0005311484904300544 1.4383346933790367e-06 0.015017869759503305 4.0667955355106184e-05 0.019202432517157315 7.913463894876166e-05']
['59866.32247083432 0.03432448866143619 6.796791596865906e-05 0.015129427210314544 4.072652598442654e-05 0.0005350940281490187 1.4404062056404452e-06 0.015129427210314543 4.072652598442654e-05 0.019195061451121646 7.923564551313297e-05']
['59866.32250237228 0.03420805383132287 6.787672809508483e-05 0.015031705241307832 4.067767639465987e-05 0.0005316378205009985 1.4386785048228057e-06 0.015031705241307832 4.067767639465987e-05 0.019176348590015033 7.913231687346673e-05']
['59866.32253391024 0.03426796944345294 6.795912058008345e-05 0.014974659025189345 4.063928662036222e-05 0.0005296202233276772 1.437320744301994e-06 0.014974659025189345 4.063928662036222e-05 0.0192933104182636 7.918329171631017e-05']
['59866.32256544821 0.03440587533371671 6.804686980146019e-05 0.015066589302080727 4.0678080833221524e-05 0.0005328715917692483 1.4386928089108646e-06 0.015066589302080727 4.0678080833221524e-05 0.019339286031635983 7.927851379819742e-05']
['59866.32259698617 0.03424713000351664 6.790248536970644e-05 0.015050915822652916 4.067805420709318e-05 0.0005323172558300515 1.4386918672042109e-06 0.015050915822652914 4.067805420709318e-05 0.019196214180863723 7.915460576276284e-05']
['59866.32262852413 0.034252365383370426 6.792655624151366e-05 0.015109174055270664 4.0701402530674946e-05 0.0005343777193182542 1.4395176452288659e-06 0.015109174055270663 4.0701402530674946e-05 0.019143191328099763 7.918725409303918e-05']
['59866.3226600621 0.034269622457535696 6.793072307402127e-05 0.015008719900594441 4.0657951372753534e-05 0.000530824880369179 1.437980874880808e-06 0.015008719900594441 4.0657951372753534e-05 0.019260902556941253 7.916850476792243e-05']
['59866.32269160006 0.034255828668540225 6.791144969767315e-05 0.015016767543937687 4.066652474108338e-05 0.0005311095075288052 1.4382840957582843e-06 0.015016767543937687 4.066652474108338e-05 0.01923906112460254 7.915637204013798e-05']
['59866.32272313802 0.03426428254673552 6.792698732142141e-05 0.015023069571523853 4.066475953597521e-05 0.0005313323961603252 1.4382216643986095e-06 0.015023069571523853 4.066475953597521e-05 0.019241212975211665 7.916879609216773e-05']
['59866.32275467598 0.0340484926375141 6.773121673424087e-05 0.014984852056009572 4.064185526872185e-05 0.0005299807280477054 1.437411591653883e-06 0.014984852056009574 4.064185526872185e-05 0.019063640581504525 7.898910127343167e-05']
['59866.32278621395 0.034260028908714164 6.792136122545012e-05 0.015058281723893185 4.069606199623388e-05 0.0005325777712950994 1.4393287624610774e-06 0.015058281723893183 4.069606199623388e-05 0.019201747184820983 7.918005287141068e-05']
['59866.32281775191 0.03437919958761061 6.801877444931898e-05 0.015032355098789717 4.068286136898358e-05 0.0005316608045077867 1.4388618857769e-06 0.015032355098789715 4.068286136898358e-05 0.019346844488820895 7.925685387873572e-05']
['59866.32284928987 0.034316669856948506 6.797166044434052e-05 0.015011016890088682 4.0665880587218335e-05 0.0005309061197541208 1.4382613134756768e-06 0.01501101689008868 4.0665880587218335e-05 0.019305652966859828 7.920770459680438e-05']
['59866.322880827836 0.03429519675154525 6.792540804046277e-05 0.015091108731258813 4.0696285237191876e-05 0.000533738789181578 1.4393366579948474e-06 0.015091108731258811 4.0696285237191876e-05 0.01920408802028644 7.918363902707583e-05']
['59866.3229123658 0.03423754360421518 6.790263953621109e-05 0.01496764263936746 4.06345007116075e-05 0.0005293720694418565 1.4371514774052162e-06 0.01496764263936746 4.06345007116075e-05 0.019269900964847722 7.913236445390878e-05']
['59866.32294390376 0.03430216499578431 6.796831405386782e-05 0.015021525149709765 4.066476518579895e-05 0.0005312777734123405 1.4382218642202486e-06 0.015021525149709765 4.066476518579895e-05 0.019280639846074546 7.920426025752259e-05']
['59866.322975441726 0.03423552929722546 6.787800393000311e-05 0.015060860242327632 4.0684426740602855e-05 0.0005326689677294763 1.438917249472674e-06 0.015060860242327632 4.0684426740602855e-05 0.019174669054897828 7.91368813937787e-05']
['59866.323006979685 0.03421493658825822 6.789878487105184e-05 0.01503807874618828 4.067276431250442e-05 0.0005318632371246748 1.438504775454825e-06 0.01503807874618828 4.067276431250442e-05 0.01917685784206994 7.914871283720229e-05']
['59866.32303851765 0.03417032569575384 6.783847036635922e-05 0.015050138808480315 4.069185343498279e-05 0.0005322897745752911 1.4391799150552073e-06 0.015050138808480313 4.069185343498279e-05 0.019120186887273523 7.910679488907081e-05']
['59866.323070055616 0.034139705817342304 6.783559700873652e-05 0.01505924850657537 4.067145879290949e-05 0.0005326119642379361 1.438458602144417e-06 0.015059248506575367 4.067145879290949e-05 0.019080457310766935 7.909384161788474e-05']
['59866.323101593574 0.03418480338472743 6.787409972609043e-05 0.015030147748092785 4.0655866545080316e-05 0.0005315827354467747 1.4379071391853221e-06 0.015030147748092786 4.0655866545080316e-05 0.019154655636634644 7.911885298813836e-05']
['59866.32313313154 0.034325954078790986 6.797534022561762e-05 0.014993884936983157 4.0642915732334384e-05 0.0005303002008604402 1.4374490978818616e-06 0.014993884936983155 4.0642915732334384e-05 0.01933206914180783 7.919907498206088e-05']
['59866.323164669506 0.0341821465127134 6.789095196326568e-05 0.015063527619303171 4.067908951667571e-05 0.0005327633068918645 1.4387284837903643e-06 0.015063527619303173 4.067908951667571e-05 0.01911861889341023 7.9145244218362e-05']
['59866.323196207464 0.0342339982678674 6.790008577992446e-05 0.014982009361698738 4.063688649703292e-05 0.000529880188302979 1.4372358573037965e-06 0.014982009361698736 4.063688649703292e-05 0.019251988906168666 7.913139827586668e-05']
['59866.32322774543 0.0342959534296418 6.795098340446e-05 0.015062469685694978 4.068381348753103e-05 0.0005327258901444851 1.4388955600820634e-06 0.015062469685694978 4.068381348753103e-05 0.01923348374394682 7.919917187396222e-05']
['59866.32325928339 0.034186063108162835 6.786095734853505e-05 0.015077491425855754 4.070517109727275e-05 0.0005332571755223583 1.4396509310071794e-06 0.015077491425855755 4.070517109727275e-05 0.01910857168230708 7.913292921608514e-05']
['59866.323290821354 0.034100758388507256 6.781287414263853e-05 0.015059756852890082 4.069526631988371e-05 0.0005326299433110005 1.4393006211668038e-06 0.015059756852890082 4.069526631988371e-05 0.019041001535617174 7.90866019015332e-05']
['59866.32332235932 0.03426972576978914 6.793231329632927e-05 0.01509117399059004 4.0708361564895954e-05 0.0005337410972582775 1.4397637707167367e-06 0.015091173990590038 4.0708361564895954e-05 0.019178551779199103 7.919576940145813e-05']
['59866.32335389728 0.03425245897539906 6.793524815500668e-05 0.01500582597198485 4.067760987554993e-05 0.0005307225285818075 1.4386761521905485e-06 0.015005825971984849 4.067760987554993e-05 0.019246633003414212 7.918248472402073e-05']
['59866.323385435244 0.0343499567507824 6.79722327464067e-05 0.015035349934467616 4.067520002590675e-05 0.0005317667251526502 1.4385909211943664e-06 0.015035349934467616 4.067520002590675e-05 0.019314606816314785 7.921298076501861e-05']
['59866.32341697321 0.03414249485587643 6.784379202440828e-05 0.015030249025355425 4.0673905058677364e-05 0.0005315863173972129 1.4385451210975445e-06 0.015030249025355425 4.0673905058677364e-05 0.019112245830521003 7.91021280938349e-05']
['59866.32344851117 0.03423486834591683 6.790947044689261e-05 0.01507733636300217 4.0698636077154275e-05 0.0005332516912957721 1.4394198019504994e-06 0.01507733636300217 4.0698636077154275e-05 0.01915753198291466 7.917117628858387e-05']
['59866.323480049134 0.03429323896381833 6.794653395568842e-05 0.015023410098729737 4.064682480289754e-05 0.0005313444398465638 1.4375873529714217e-06 0.015023410098729737 4.064682480289754e-05 0.01926982886508859 7.917635911778823e-05']
['59866.32351158709 0.034337411820606414 6.798369312931286e-05 0.015089830801332936 4.071147915392209e-05 0.0005336935916561051 1.4398740328731898e-06 0.015089830801332936 4.071147915392209e-05 0.01924758101927348 7.924144790701905e-05']
['59866.32354312506 0.03427681512687835 6.792450417649233e-05 0.015070138382230114 4.068355525888836e-05 0.0005329971148024048 1.438886427112079e-06 0.015070138382230114 4.068355525888836e-05 0.019206676744648238 7.917632181482887e-05']
['59866.32357466302 0.03417253768674569 6.786018004220877e-05 0.01491478751006981 4.059305589357961e-05 0.0005275027016428605 1.4356856668152865e-06 0.01491478751006981 4.059305589357961e-05 0.01925775017667588 7.907464968079383e-05']
['59866.32360620098 0.03428948988332382 6.79392831083157e-05 0.014990640737678154 4.064152625343176e-05 0.000530185460781381 1.4373999551183783e-06 0.014990640737678154 4.064152625343176e-05 0.01929884914564567 7.91674165643938e-05']
['59866.32363773895 0.03425385130862221 6.791875006454031e-05 0.014996947654404295 4.0655894225659615e-05 0.0005304085223308553 1.4379081181855494e-06 0.014996947654404296 4.0655894225659615e-05 0.019256903654217915 7.915717494717404e-05']
['59866.32366927691 0.03426577956426086 6.792435060890387e-05 0.015086707015441115 4.0696015339475964e-05 0.0005335831103303619 1.4393271123158215e-06 0.015086707015441115 4.0696015339475964e-05 0.01917907254881975 7.918259322699758e-05']
['59866.32370081487 0.03429645758605967 6.796957422746255e-05 0.014970730194648304 4.063347323875117e-05 0.00052948126937186 1.4371151379865542e-06 0.014970730194648304 4.063347323875117e-05 0.019325727391411363 7.918928063890243e-05']
['59866.32373235284 0.03420998976790431 6.790077074156287e-05 0.015006827000415095 4.0651596111765745e-05 0.0005307579327202184 1.4377561035028425e-06 0.015006827000415095 4.0651596111765745e-05 0.019203162767489217 7.913954089917636e-05']
['59866.323763890796 0.0343288196659931 6.801000320251947e-05 0.014968218451325416 4.064717925178384e-05 0.0005293924346239454 1.4375998890363836e-06 0.014968218451325415 4.064717925178384e-05 0.019360601214667685 7.923101486623376e-05']
['59866.32379542876 0.034265896929507655 6.793207711170248e-05 0.014938532739722267 4.061853143568538e-05 0.0005283425173482028 1.436586679805082e-06 0.014938532739722265 4.061853143568538e-05 0.01932736418978539 7.91494295412295e-05']
['59866.32382696673 0.03422880088413217 6.794074658372796e-05 0.014982639455624232 4.06516126621464e-05 0.0005299024733169468 1.4377566888528182e-06 0.014982639455624234 4.06516126621464e-05 0.019246161428507935 7.917385084980725e-05']
['59866.323858504686 0.03420505387625713 6.786895793023995e-05 0.015013637143719677 4.065818540953936e-05 0.0005309987922691269 1.4379891522388814e-06 0.015013637143719675 4.065818540953936e-05 0.019191416732537454 7.91156336720699e-05']
['59866.32389004265 0.03437527887205621 6.801912384905081e-05 0.015064637805156919 4.0671987416731276e-05 0.0005328025716843922 1.4384772983875888e-06 0.01506463780515692 4.0671987416731276e-05 0.019310641066899288 7.925157266338163e-05']
['59866.32392158062 0.03416092065936989 6.786620050906548e-05 0.014954401458353599 4.062931450490107e-05 0.0005289037584616942 1.4369680528644995e-06 0.0149544014583536 4.062931450490107e-05 0.01920651920101629 7.909843467904308e-05']
['59866.323953118575 0.03431545003443701 6.797753480239702e-05 0.014981020237695609 4.0642916118633816e-05 0.0005298452051975505 1.437449111544409e-06 0.01498102023769561 4.0642916118633816e-05 0.019334429796741402 7.920095875958449e-05']
['59866.32398465654 0.0343264283107033 6.797043610820494e-05 0.01503866542029698 4.0683015503244525e-05 0.00053188398647676 1.4388673371612396e-06 0.01503866542029698 4.0683015503244525e-05 0.019287762890406325 7.921545262874413e-05']
['59866.3240161945 0.03438053790768167 6.801315341624484e-05 0.015161247815427235 4.073937836692187e-05 0.0005362194518369876 1.4408607656859206e-06 0.015161247815427237 4.073937836692187e-05 0.019219290092254433 7.928105692626e-05']
['59866.324047732465 0.03438192095822811 6.805208340825057e-05 0.015045869735930587 4.067000484490076e-05 0.0005321387870200229 1.4384071792527309e-06 0.015045869735930587 4.067000484490076e-05 0.019336051222297524 7.927884554083607e-05']
['59866.32407927043 0.03429958132346791 6.794663873308456e-05 0.015053687089598639 4.065859933020041e-05 0.0005324152693485047 1.4380037916876043e-06 0.01505368708959864 4.065859933020041e-05 0.019245894233869267 7.918249436976634e-05']
['59866.32411080839 0.034239651257995156 6.790141313708612e-05 0.015038697112200764 4.0686210070988894e-05 0.0005318851073485697 1.4389803218829192e-06 0.015038697112200764 4.0686210070988894e-05 0.01920095414579439 7.915787766201093e-05']
['59866.324142346355 0.03425719929942409 6.79316112417965e-05 0.015049658286642896 4.0669075320598675e-05 0.0005322727795918047 1.4383743040555305e-06 0.015049658286642896 4.0669075320598675e-05 0.019207541012781194 7.917498022316837e-05']
['59866.32417388431 0.03422857587607466 6.79163818793261e-05 0.015084468963811923 4.067831429955975e-05 0.0005335039554459884 1.438701066093481e-06 0.015084468963811923 4.067831429955975e-05 0.01914410691226274 7.916666079753662e-05']
['59866.32420542228 0.03430620510811321 6.796951510610896e-05 0.015138731064384838 4.072367489431088e-05 0.000535423084674595 1.4403053689548655e-06 0.01513873106438484 4.072367489431088e-05 0.019167474043728372 7.923555187324122e-05']
['59866.324236960245 0.03440409722577201 6.802748395775636e-05 0.015086953305483704 4.069626272320146e-05 0.0005335918210587425 1.4393358617253222e-06 0.015086953305483704 4.069626272320146e-05 0.019317143920288302 7.92712077191879e-05']
['59866.3242684982 0.03430249215264919 6.792247156045733e-05 0.015025156548642915 4.068191168302778e-05 0.0005314062078769071 1.4388282975070665e-06 0.015025156548642915 4.068191168302778e-05 0.019277335604006275 7.917373352992018e-05']
['59866.32430003617 0.034219806781500516 6.790852538590042e-05 0.015013830995883102 4.0675469124425205e-05 0.0005310056483869133 1.4386004386075644e-06 0.015013830995883102 4.0675469124425205e-05 0.01920597578561741 7.91584588567738e-05']
['59866.324331574135 0.034152563810998064 6.784880003653945e-05 0.014926300609298488 4.061914997233101e-05 0.0005279098942323164 1.4366085560638896e-06 0.014926300609298488 4.061914997233101e-05 0.019226263201699574 7.907828406631643e-05']
['59866.32436311209 0.03425397606659864 6.790031835931838e-05 0.015053818521448171 4.0665763469624934e-05 0.0005324199177992897 1.4382571712881407e-06 0.015053818521448171 4.0665763469624934e-05 0.01920015754515047 7.914643107471285e-05']
['59866.32439465006 0.03431727771878652 6.796607411043049e-05 0.015027460688836246 4.066735728957302e-05 0.0005314877001660949 1.4383135411377264e-06 0.015027460688836246 4.066735728957302e-05 0.019289817029950272 7.920366897374336e-05']
['59866.32442618802 0.034249035199328016 6.789881644324203e-05 0.014946181901639802 4.0620743249344836e-05 0.0005286130511103552 1.4366649067111042e-06 0.0149461819016398 4.0620743249344836e-05 0.019302853297688216 7.912202004829166e-05']
['59866.32445772598 0.034280489384073604 6.796824309250141e-05 0.015010369115629061 4.0652413003157786e-05 0.0005308832094191748 1.4377849951257341e-06 0.015010369115629061 4.0652413003157786e-05 0.019270120268444543 7.919785825425253e-05']
['59866.32448926395 0.03428313137587657 6.792407054525518e-05 0.0150558268414466 4.0674210936258475e-05 0.0005324909475893031 1.438555939303992e-06 0.0150558268414466 4.0674210936258475e-05 0.019227304534429966 7.917114875208046e-05']
['59866.32452080191 0.034293663389196496 6.797032026205296e-05 0.014934920378487634 4.0598565695597794e-05 0.0005282147562044861 1.4358805361989869e-06 0.014934920378487634 4.0598565695597794e-05 0.019358743010708862 7.917201508781886e-05']
['59866.32455233987 0.03429754966815062 6.795757251358297e-05 0.015057423343095677 4.0669478436581944e-05 0.0005325474122846598 1.4383885613669476e-06 0.015057423343095679 4.0669478436581944e-05 0.019240126325054945 7.919746295331999e-05']
['59866.32458387784 0.0342773706237689 6.79519910223684e-05 0.014994983372255214 4.0647108012931226e-05 0.0005303390500611546 1.437597369477376e-06 0.014994983372255214 4.0647108012931226e-05 0.019282387251513683 7.918118762508512e-05']
['59866.3246154158 0.03430944444805869 6.795871661275076e-05 0.01506606067213313 4.070382476192178e-05 0.0005328528953094201 1.4396033141346983e-06 0.01506606067213313 4.070382476192178e-05 0.01924338377592556 7.921608746903247e-05']
['59866.32464695376 0.034393996888665235 6.801371257662473e-05 0.015068478126178833 4.0692849457793646e-05 0.0005329383952563249 1.4392151421560472e-06 0.015068478126178834 4.0692849457793646e-05 0.0193255187624864 7.925763745816788e-05']
['59866.32467849172 0.034231424483037 6.788431060128382e-05 0.015053559727199099 4.066202279559903e-05 0.0005324107648250711 1.4381248720077589e-06 0.015053559727199097 4.066202279559903e-05 0.019177864755837905 7.913077608390676e-05']
['59866.32471002969 0.034290597030507526 6.790771252497611e-05 0.015057204324826792 4.067236775430974e-05 0.0005325396660979663 1.4384907500777345e-06 0.015057204324826792 4.067236775430974e-05 0.019233392705680735 7.915616791581444e-05']
['59866.32474156765 0.03426519775091407 6.792858243881784e-05 0.014974582129897362 4.06247543836063e-05 0.0005296175037130506 1.4368067715655748e-06 0.014974582129897362 4.06247543836063e-05 0.019290615621016707 7.914962400969199e-05']
['59866.32477310561 0.03420505304254978 6.787991778483694e-05 0.015058511170248656 4.068033805517821e-05 0.00053258588629991 1.4387726418068781e-06 0.015058511170248656 4.068033805517821e-05 0.019146541872301127 7.913642108890068e-05']
['59866.32480464358 0.0342024849094976 6.789449554535454e-05 0.015001376889437413 4.066128402278999e-05 0.000530565174475219 1.4380987432645632e-06 0.015001376889437413 4.066128402278999e-05 0.019201108020060188 7.91391340851046e-05']
['59866.32483618154 0.034321080567343364 6.79631466155943e-05 0.015009971742587247 4.0650834334201295e-05 0.0005308691552227624 1.4377291611328605e-06 0.015009971742587249 4.0650834334201295e-05 0.019311108824756115 7.919267409274324e-05']
['59866.3248677195 0.034237083760234564 6.790800796309205e-05 0.014935653933831634 4.062674129400115e-05 0.0005282407004176036 1.4368770441457573e-06 0.014935653933831632 4.062674129400115e-05 0.019301429826402934 7.913298713990943e-05']
['59866.324899257466 0.03425374873696006 6.791193319137807e-05 0.01503204077491132 4.066518557638942e-05 0.0005316496875746804 1.4382367324959159e-06 0.01503204077491132 4.066518557638942e-05 0.019221707962048744 7.91560988664322e-05']
['59866.324930795425 0.03434225556380813 6.79809848397405e-05 0.015100070245681963 4.069974875204212e-05 0.0005340557379189189 1.4394591547746006e-06 0.015100070245681963 4.069974875204212e-05 0.019242185318126166 7.923309818668195e-05']
['59866.32496233339 0.03411867122750137 6.781799239416659e-05 0.014939687325067267 4.0608409096971476e-05 0.0005283833524515091 1.4362286753068668e-06 0.014939687325067265 4.0608409096971476e-05 0.019178983902434103 7.904633439801136e-05']
['59866.324993871356 0.03431427041160932 6.79719837680571e-05 0.014983791405246335 4.064828355962318e-05 0.0005299432152006246 1.4376389459366782e-06 0.014983791405246335 4.064828355962318e-05 0.019330479006362984 7.919894906947031e-05']
['59866.325025409315 0.034250179145693435 6.790419944312187e-05 0.015069625939836639 4.068167488557586e-05 0.000532978990860189 1.4388199225104032e-06 0.01506962593983664 4.068167488557586e-05 0.019180553205856793 7.91579368952158e-05']
['59866.32505694728 0.03436483190499213 6.798570495272633e-05 0.01510868300323478 4.070008693133845e-05 0.0005343603519051818 1.4394711154205255e-06 0.01510868300323478 4.070008693133845e-05 0.01925614890175735 7.923732172491486e-05']
['59866.325088485246 0.03428662176546815 6.796259722278014e-05 0.014999722686223736 4.064513801534418e-05 0.0005305066690044778 1.4375276950654077e-06 0.014999722686223736 4.064513801534418e-05 0.019286899079244413 7.918927872857675e-05']
['59866.325120023204 0.034301132340092945 6.798577520445779e-05 0.015095004081102347 4.069702523258539e-05 0.0005338765589999494 1.4393628299781237e-06 0.01509500408110235 4.069702523258539e-05 0.019206128258990596 7.923580941047274e-05']
['59866.32515156117 0.034322605980782996 6.79806364092682e-05 0.01504443950203035 4.0677354626061024e-05 0.0005320882028433562 1.438667124586575e-06 0.015044439502030351 4.0677354626061024e-05 0.019278166478752645 7.922129831038778e-05']
['59866.32518309913 0.034287250581182295 6.79440915385425e-05 0.015088506725028185 4.07014243414054e-05 0.0005336467620363424 1.4395184166256577e-06 0.015088506725028183 4.07014243414054e-05 0.01919874385615411 7.920230753214827e-05']
['59866.325214637094 0.03409964438704308 6.782943638690823e-05 0.015045086092765919 4.06813595090454e-05 0.0005321110713126279 1.438808768347346e-06 0.015045086092765917 4.06813595090454e-05 0.019054558294277157 7.909364988461355e-05']
['59866.32524617506 0.03430051536216883 6.79401963159463e-05 0.015079369724420793 4.069137374537913e-05 0.0005333236067448535 1.4391629495059687e-06 0.015079369724420793 4.069137374537913e-05 0.01922114563774804 7.919380135298124e-05']
['59866.32527771302 0.03438304459303386 6.798563361560965e-05 0.015102538352595956 4.07065680053154e-05 0.0005341430293445725 1.4397003365227423e-06 0.015102538352595956 4.07065680053154e-05 0.0192805062404379 7.924058970557501e-05']
['59866.325309250984 0.03424194362911092 6.78952289966948e-05 0.015079215288241255 4.0701709815235325e-05 0.0005333181446823278 1.439528513197026e-06 0.015079215288241255 4.0701709815235325e-05 0.019162728340869663 7.916054132203273e-05']
['59866.32534078895 0.034182791831284386 6.78799827364022e-05 0.014977652494234736 4.0641923950130075e-05 0.000529726095637803 1.437414020761798e-06 0.014977652494234736 4.0641923950130075e-05 0.019205139337049648 7.911673677966261e-05']
['59866.32537232691 0.034203525156348856 6.789692261288475e-05 0.014982817040646553 4.063641397533284e-05 0.0005299087541023071 1.4372191452672887e-06 0.014982817040646555 4.063641397533284e-05 0.0192207081157023 7.912844141694367e-05']
['59866.325403864874 0.03431892555902347 6.796138201691561e-05 0.01500379456575771 4.06569984364861e-05 0.0005306506822834793 1.4379471716547164e-06 0.015003794565757709 4.06569984364861e-05 0.019315130993265758 7.919432408647462e-05']
['59866.32543540283 0.034323341143213594 6.79786931414252e-05 0.015072367315976203 4.068920299201233e-05 0.0005330759472076302 1.4390861748107333e-06 0.015072367315976203 4.068920299201233e-05 0.01925097382723739 7.922571527819257e-05']
['59866.3254669408 0.034214869528174444 6.788229075985032e-05 0.01501006684725272 4.064563808698569e-05 0.0005308725188622337 1.4375453814817737e-06 0.01501006684725272 4.064563808698569e-05 0.019204802680921722 7.912062496152998e-05']
['59866.32549847876 0.03419624922878257 6.789674860264769e-05 0.01504310547098831 4.0676559575127745e-05 0.0005320410211467831 1.4386390054118992e-06 0.01504310547098831 4.0676559575127745e-05 0.019153143757794255 7.914891641507202e-05']
['59866.32553001672 0.03426377950969951 6.794778843533375e-05 0.015150196411987638 4.0744823591129304e-05 0.0005358285883957621 1.4410533510967777e-06 0.01515019641198764 4.0744823591129304e-05 0.019113583097711873 7.922778933382606e-05']
['59866.32556155469 0.03425650320487168 6.791141567252656e-05 0.014941477196368652 4.0615760300227835e-05 0.0005284466561993121 1.4364886709370718e-06 0.01494147719636865 4.0615760300227835e-05 0.01931502600850303 7.913027463248342e-05']
['59866.32559309265 0.03424378689095226 6.788868949278667e-05 0.015027269771084886 4.0676545082567544e-05 0.0005314809478319054 1.438638492842434e-06 0.015027269771084886 4.0676545082567544e-05 0.019216517119867375 7.914199568435303e-05']
['59866.32562463061 0.034271529616547815 6.793722848086373e-05 0.015070288282461996 4.0691527680051754e-05 0.0005330024164385992 1.4391683938313158e-06 0.015070288282461998 4.0691527680051754e-05 0.019201241334085815 7.919133436555732e-05']
['59866.32565616858 0.03425877950195871 6.794826005882679e-05 0.014961772553911196 4.062650949890021e-05 0.0005291644576381374 1.4368688460710686e-06 0.014961772553911198 4.062650949890021e-05 0.019297006948047507 7.91674132398311e-05']
['59866.325687706536 0.03424167931312613 6.79140294282477e-05 0.015016226762392788 4.0660571623700624e-05 0.0005310903812941378 1.4380735473008906e-06 0.015016226762392788 4.0660571623700624e-05 0.019225452550733345 7.915552714717389e-05']
['59866.3257192445 0.03427350709143012 6.792829558536141e-05 0.015045873109102437 4.0660280115759744e-05 0.0005321389063215726 1.4380632373165036e-06 0.015045873109102437 4.0660280115759744e-05 0.019227633982327685 7.916761787640371e-05']
['59866.32575078247 0.034387988168774974 6.80170079499781e-05 0.015093801636451862 4.069302896694024e-05 0.0005338340312199673 1.4392214909933828e-06 0.015093801636451862 4.069302896694024e-05 0.019294186532323114 7.926055751110776e-05']
['59866.325782320426 0.034221481485561325 6.792754753907974e-05 0.015023968210362724 4.067554333492372e-05 0.0005313641790077164 1.438603063267046e-06 0.015023968210362722 4.067554333492372e-05 0.019197513275198603 7.91748163260591e-05']
['59866.32581385839 0.03424972706541876 6.790490365477965e-05 0.01504346896974444 4.065796836312461e-05 0.0005320538772854155 1.437981475792262e-06 0.01504346896974444 4.065796836312461e-05 0.01920625809567432 7.91463601928841e-05']
['59866.32584539636 0.03424518647733289 6.793622930230555e-05 0.01500879140512073 4.0663003690987295e-05 0.0005308274093244707 1.4381595640854696e-06 0.015008791405120733 4.0663003690987295e-05 0.01923639507221216 7.91758240941557e-05']
['59866.325876934316 0.034319800608518275 6.797419940845863e-05 0.014985753704772408 4.064201370394732e-05 0.0005300126173493806 1.437417195153726e-06 0.014985753704772408 4.064201370394732e-05 0.019334046903745867 7.919763293895051e-05']
['59866.32590847228 0.0342839247487852 6.793995874919092e-05 0.014995520674635011 4.063757260574387e-05 0.0005303580532455279 1.4372601234355402e-06 0.014995520674635013 4.063757260574387e-05 0.019288404074150188 7.916596681736963e-05']
['59866.32594001024 0.034200237707871624 6.789933008430382e-05 0.01499333776926818 4.0635711934686354e-05 0.0005302808487612094 1.437194315658591e-06 0.01499333776926818 4.0635711934686354e-05 0.019206899938603444 7.913014665938675e-05']
['59866.325971548205 0.03444834437801004 6.804875748733402e-05 0.015085237109531456 4.0678835033769425e-05 0.0005335311230433837 1.4387194832987048e-06 0.015085237109531456 4.0678835033769425e-05 0.019363107268478584 7.928052103306728e-05']
['59866.32600308617 0.034212814194243636 6.788421342730184e-05 0.014965571566153708 4.063093089636518e-05 0.0005292988202108623 1.4370252210181628e-06 0.014965571566153708 4.063093089636518e-05 0.01924724262808993 7.911472036320844e-05']
['59866.32603462413 0.034345982229272945 6.798904682537061e-05 0.0150670047744892 4.0690055721507424e-05 0.0005328862860998099 1.4391163339472365e-06 0.015067004774489202 4.0690055721507424e-05 0.01927897745478374 7.923503721739403e-05']
['59866.326066162095 0.03426321051423002 6.793821049509966e-05 0.015021931476702572 4.0662616595666043e-05 0.0005312921442899888 1.4381458733890642e-06 0.015021931476702574 4.0662616595666043e-05 0.019241279037527446 7.917732524961048e-05']
['59866.32609770006 0.034318032156298195 6.795137919877847e-05 0.01503941428444221 4.067323258326761e-05 0.000531910472127964 1.4385213371451955e-06 0.015039414284442212 4.067323258326761e-05 0.01927861787185598 7.919407669635883e-05']
['59866.32612923802 0.03427636390661063 6.793911610845515e-05 0.01497775924671647 4.064203036648154e-05 0.0005297298712345043 1.4374177844703226e-06 0.014977759246716472 4.064203036648154e-05 0.019298604659894157 7.9167532043813e-05']
['59866.326160775985 0.034274317390518776 6.790568451608395e-05 0.015071957873252243 4.06874551824087e-05 0.0005330614661335344 1.4390243586911774e-06 0.015071957873252243 4.06874551824087e-05 0.01920235951726653 7.91621816198773e-05']
['59866.32619231394 0.03432062005121839 6.794110609251501e-05 0.015049797814837323 4.0671272451733894e-05 0.0005322777143922145 1.4384520116734841e-06 0.015049797814837325 4.0671272451733894e-05 0.01927082223638106 7.918425537894228e-05']
['59866.32622385191 0.034287627577705634 6.797190136253914e-05 0.015106083399525844 4.0704036965298364e-05 0.000534268409731769 1.4396108192938812e-06 0.015106083399525842 4.0704036965298364e-05 0.019181544178179792 7.922750784993256e-05']
['59866.326255389875 0.034264153446896324 6.792810876847986e-05 0.015128088902831042 4.070920855301161e-05 0.0005350466952042685 1.4397937267934804e-06 0.015128088902831042 4.070920855301161e-05 0.01913606454406528 7.919259827708031e-05']
['59866.32628692783 0.03413327123318938 6.782459404656802e-05 0.015021027923620318 4.0668008287730044e-05 0.0005312601876367917 1.4383365654876452e-06 0.015021027923620318 4.0668008287730044e-05 0.01911224330956906 7.908263055610017e-05']
['59866.3263184658 0.03425322471340309 6.793626819560614e-05 0.01505590082510968 4.06881655330371e-05 0.0005324935642261225 1.4390494822053638e-06 0.01505590082510968 4.06881655330371e-05 0.019197323888293413 7.91887829859075e-05']
['59866.326350003765 0.03428818334672692 6.795312291585309e-05 0.015034520795238591 4.066481605693506e-05 0.0005317374003511367 1.4382236634186427e-06 0.015034520795238591 4.066481605693506e-05 0.019253662551488325 7.919125064652915e-05']
['59866.32638154172 0.03422178764348252 6.787773121515616e-05 0.015080964096020827 4.067844854407021e-05 0.0005333799961051359 1.4387058140217971e-06 0.015080964096020827 4.067844854407021e-05 0.019140823547461695 7.913357423287257e-05']
['59866.32641307969 0.03430955108565608 6.79732322680257e-05 0.015003771708256739 4.0656759558999605e-05 0.0005306498738647535 1.4379387230918787e-06 0.015003771708256739 4.0656759558999605e-05 0.019305779377399343 7.92043711091836e-05']
['59866.32644461765 0.034401540720981616 6.804980123324586e-05 0.015053665120706782 4.066974619484871e-05 0.0005324144923578972 1.4383980313784385e-06 0.01505366512070678 4.066974619484871e-05 0.019347875600274837 7.927675386541556e-05']
['59866.32647615561 0.034154194472876986 6.784475545744336e-05 0.014959398363102453 4.062153484173936e-05 0.0005290804878152363 1.4366929035649938e-06 0.014959398363102453 4.062153484173936e-05 0.019194796109774533 7.907603894972822e-05']
['59866.32650769358 0.034253418198091266 6.791531151822977e-05 0.014987135399499415 4.064178740604332e-05 0.0005300614848039687 1.4374091915026075e-06 0.014987135399499413 4.064178740604332e-05 0.019266282798591855 7.914697986768804e-05']
['59866.32653923154 0.03425607733940711 6.795109452515904e-05 0.015025178440778265 4.066512481111598e-05 0.0005314069821528083 1.4382345833639968e-06 0.015025178440778263 4.066512481111598e-05 0.019230898898628848 7.91896686637262e-05']
['59866.3265707695 0.03419788513332274 6.788055057442654e-05 0.014990487365201678 4.0647690932539005e-05 0.0005301800363396553 1.4376179860411546e-06 0.014990487365201676 4.0647690932539005e-05 0.01920739776812106 7.912018657987665e-05']
['59866.32660230747 0.034241451076015346 6.791889573744522e-05 0.015143543728068278 4.073099056555066e-05 0.0005355932978334079 1.4405641078970536e-06 0.015143543728068278 4.073099056555066e-05 0.019097907347947068 7.919589629927128e-05']
['59866.32663384543 0.03422991597925712 6.789547882675613e-05 0.015060004954261349 4.068604388388376e-05 0.0005326387181020282 1.438974444216417e-06 0.01506000495426135 4.068604388388376e-05 0.019169911024995767 7.915270186188091e-05']
['59866.32666538339 0.03423657698202002 6.792126190064568e-05 0.014980168515451886 4.0640500435447066e-05 0.0005298150816852771 1.437363674228828e-06 0.014980168515451885 4.0640500435447066e-05 0.019256408466568134 7.915142509026402e-05']
['59866.32669692135 0.03431163649315745 6.797663260291864e-05 0.014974255310633632 4.0635752241006424e-05 0.0005296059448460905 1.4371957412030525e-06 0.014974255310633632 4.0635752241006424e-05 0.01933738118252382 7.919650838404835e-05']
['59866.32672845932 0.03422170319914756 6.787261538847098e-05 0.01498561846448005 4.0648529095745455e-05 0.0005300078342024841 1.4376476300005821e-06 0.01498561846448005 4.0648529095745455e-05 0.019236084734667508 7.911380939708928e-05']
['59866.32675999728 0.0342605224446735 6.791989947439849e-05 0.0149999398099915 4.06644501945315e-05 0.0005305143481869006 1.4382107236830828e-06 0.0149999398099915 4.06644501945315e-05 0.019260582634682 7.916255588493797e-05']
['59866.32679153524 0.03420484249094837 6.788566852770537e-05 0.015089540586119325 4.0690289992261336e-05 0.0005336833273925925 1.439124619580238e-06 0.015089540586119325 4.0690289992261336e-05 0.019115301904829046 7.914646985878657e-05']
['59866.32682307321 0.034230330351201786 6.790568269988604e-05 0.014982442231643396 4.064772767382388e-05 0.0005298954979455142 1.4376192854982887e-06 0.014982442231643394 4.064772767382388e-05 0.019247888119558392 7.91417684158179e-05']
['59866.32685461117 0.03429196852756163 6.794164127603946e-05 0.01508944917840666 4.0702682650908984e-05 0.0005336800945060797 1.4395629202206433e-06 0.01508944917840666 4.0702682650908984e-05 0.01920251934915497 7.920085223192132e-05']
['59866.32688614913 0.03425966286660366 6.793510761138835e-05 0.014973506928178462 4.063875268629494e-05 0.0005295794762311875 1.4373018602473067e-06 0.014973506928178462 4.063875268629494e-05 0.019286155938425198 7.916240942561538e-05']
['59866.326917687096 0.03423150789551175 6.787858257443344e-05 0.015085386980150788 4.067853333680117e-05 0.0005335364236322483 1.4387088129511906e-06 0.015085386980150788 4.067853333680117e-05 0.019146120915360963 7.913434808442805e-05']
['59866.326949225055 0.034260779090735244 6.791044291244914e-05 0.014977771508758985 4.063007683268365e-05 0.0005297303049155439 1.436995014694467e-06 0.014977771508758985 4.063007683268365e-05 0.019283007581976257 7.91367891691013e-05']
['59866.32698076302 0.034306324150811994 6.79674960914359e-05 0.014995506860538079 4.064930506116599e-05 0.000530357564671792 1.4376750741633258e-06 0.014995506860538079 4.064930506116599e-05 0.019310817290273917 7.919562189221756e-05']
['59866.327012300986 0.03410420405860582 6.78129540110289e-05 0.015027304095382166 4.067489033755617e-05 0.0005314821618055899 1.438579968209519e-06 0.015027304095382166 4.067489033755617e-05 0.019076899963223655 7.90761875388169e-05']
['59866.327043838945 0.034254918902278775 6.79366486685148e-05 0.015072734121624761 4.068632258837384e-05 0.0005330889203036573 1.4389843013713634e-06 0.015072734121624761 4.068632258837384e-05 0.01918218478065401 7.918816248704369e-05']
['59866.32707537691 0.03416885319043586 6.786685800426118e-05 0.014949947933089775 4.061236809241546e-05 0.000528746247226156 1.4363686961278864e-06 0.014949947933089777 4.061236809241546e-05 0.019218905257346083 7.909029559588455e-05']
['59866.327106914876 0.03437307118263435 6.804621104823758e-05 0.015005404382464636 4.0656496906395424e-05 0.0005307076179026747 1.4379294336562629e-06 0.015005404382464636 4.0656496906395424e-05 0.019367666800169714 7.926687567149995e-05']
['59866.327138452834 0.0342609991173634 6.792917364587184e-05 0.015108254513707224 4.070909665065688e-05 0.0005343451971882099 1.4397897690572806e-06 0.015108254513707226 4.070909665065688e-05 0.019152744603656173 7.919345416335578e-05']
['59866.3271699908 0.03417866002205397 6.787057874212932e-05 0.014970411165398365 4.062819234019201e-05 0.0005294699860202781 1.4369283644066306e-06 0.014970411165398365 4.062819234019201e-05 0.019208248856655605 7.910161484839113e-05']
['59866.32720152876 0.03428226088908354 6.793277498224999e-05 0.015110933555333501 4.0703998221960576e-05 0.0005344399489032256 1.4396094490286098e-06 0.015110933555333501 4.0703998221960576e-05 0.019171327333750036 7.919392267113922e-05']
['59866.327233066724 0.03432644136335429 6.795871786753935e-05 0.015057829381462835 4.0677827035516626e-05 0.0005325617729542638 1.4386838326532467e-06 0.015057829381462835 4.0677827035516626e-05 0.019268611981891455 7.920273320114161e-05']
['59866.32726460469 0.03428300381265471 6.794018147319188e-05 0.015023623663631224 4.066143604462784e-05 0.00053135199315984 1.438104119937219e-06 0.015023623663631224 4.066143604462784e-05 0.01925938014902348 7.91784101875101e-05']
['59866.32729614265 0.03427688516272446 6.796891130132726e-05 0.015018133295028534 4.064340225923356e-05 0.0005311578110926145 1.4374663052509617e-06 0.015018133295028536 4.064340225923356e-05 0.019258751867695923 7.919380689607972e-05']
['59866.327327680614 0.03426430062899801 6.791577228601766e-05 0.015031206344218251 4.0665117807396716e-05 0.0005316201756259093 1.4382343356580986e-06 0.015031206344218251 4.0665117807396716e-05 0.01923309428477976 7.915935782644815e-05']
['59866.32735921858 0.034258434820935664 6.792019963811416e-05 0.01510741913330698 4.070641494960964e-05 0.0005343156516504185 1.4396949232844888e-06 0.015107419133306979 4.070641494960964e-05 0.019151015687628684 7.91843781116647e-05']
['59866.32739075654 0.034214134834682136 6.790685282046159e-05 0.014968323294410377 4.062106331625609e-05 0.00052939614268955 1.436676226762448e-06 0.014968323294410377 4.062106331625609e-05 0.01924581154027176 7.912908090533542e-05']
['59866.327422294504 0.03423058866023858 6.789673048107102e-05 0.015040960779136726 4.067934925200366e-05 0.0005319651681890968 1.4387376700484396e-06 0.015040960779136726 4.067934925200366e-05 0.019189627881101852 7.915033458922135e-05']
['59866.32745383246 0.034305697815131535 6.795227282333242e-05 0.015034132356787312 4.068007647031113e-05 0.0005317236621512238 1.4387633901347376e-06 0.015034132356787314 4.068007647031113e-05 0.01927156545834422 7.919835859086326e-05']
['59866.32748537043 0.03428836885239585 6.795764421389295e-05 0.015008692365263998 4.0668805685245934e-05 0.000530823906506079 1.4383647676557037e-06 0.015008692365263997 4.0668805685245934e-05 0.01927967648713185 7.919717900889116e-05']
['59866.32751690839 0.034216485043520824 6.788794616641301e-05 0.015017600354184613 4.065844910931869e-05 0.0005311389621660177 1.4379984787107422e-06 0.015017600354184613 4.065844910931869e-05 0.019198884689336213 7.913205872886696e-05']
['59866.32754844635 0.03418867855874271 6.789830878886218e-05 0.0150561544999641 4.06758111013414e-05 0.0005325025361387934 1.4386125335668166e-06 0.0150561544999641 4.06758111013414e-05 0.019132524058778612 7.914987015238677e-05']
['59866.32757998432 0.03441284112131575 6.808910786601756e-05 0.014955834059003772 4.060477332628012e-05 0.0005289544263450168 1.436100086222983e-06 0.014955834059003772 4.060477332628012e-05 0.019457007062311977 7.927719865679389e-05']
['59866.32761152228 0.03415055388974606 6.78392192898377e-05 0.015028995283991747 4.067742617947312e-05 0.0005315419753671267 1.4386696552708483e-06 0.015028995283991747 4.067742617947312e-05 0.019121558605754315 7.910001690544175e-05']
['59866.32764306024 0.03424351288530819 6.790529543136616e-05 0.015106329974219818 4.070346790682004e-05 0.0005342771305276329 1.4395906929672738e-06 0.015106329974219818 4.070346790682004e-05 0.019137182911088374 7.917007924249316e-05']
['59866.32767459821 0.03422059244647634 6.7887469700152e-05 0.015016004160023244 4.067380764844205e-05 0.000531082508345814 1.4385416759152205e-06 0.015016004160023244 4.067380764844205e-05 0.0192045882864531 7.913954239766312e-05']
['59866.327706136166 0.03426900878764948 6.788944549368789e-05 0.015020801670597172 4.066292492941115e-05 0.0005312521855730087 1.4381567784645431e-06 0.015020801670597172 4.066292492941115e-05 0.019248207117052305 7.913564477057949e-05']
['59866.32773767413 0.03425405408615189 6.792245822374481e-05 0.014992864718828948 4.064745962616475e-05 0.0005302641180243792 1.4376098052516364e-06 0.014992864718828948 4.064745962616475e-05 0.01926118936732294 7.915602507211345e-05']
['59866.3277692121 0.03427207746648178 6.792460450811809e-05 0.01505789986537865 4.0662168160737455e-05 0.0005325642658128439 1.438130013247833e-06 0.015057899865378649 4.0662168160737455e-05 0.01921417760110313 7.916542058952473e-05']
['59866.327800750056 0.034298594445140225 6.796390486279628e-05 0.015145350483460104 4.071918913422884e-05 0.000535657198733756 1.4401467176458477e-06 0.015145350483460102 4.071918913422884e-05 0.019153243961680125 7.922843383500852e-05']
['59866.32783228802 0.03426599539328942 6.791454862884746e-05 0.015086001933062369 4.070223010781903e-05 0.0005335581731423921 1.439546914782926e-06 0.015086001933062369 4.070223010781903e-05 0.019179993460227054 7.917737966875347e-05']
['59866.32786382599 0.03413366070916059 6.783504852359624e-05 0.015015132103076081 4.066201737334855e-05 0.0005310516656405255 1.4381246802348776e-06 0.015015132103076083 4.066201737334855e-05 0.019118528606084505 7.908851664476427e-05']
['59866.327895363946 0.034258620311941594 6.792875946692491e-05 0.015026921643478748 4.066603887438701e-05 0.0005314686353364957 1.438266911739082e-06 0.015026921643478748 4.066603887438701e-05 0.019231698668462846 7.91709737242665e-05']
['59866.32792690191 0.034284468074522366 6.798230624271372e-05 0.0150157168007536 4.0639559230247906e-05 0.000531072345090657 1.4373303859044035e-06 0.015015716800753602 4.0639559230247906e-05 0.019268751273768765 7.920333159979409e-05']
['59866.32795843987 0.03416182274043892 6.787162197758013e-05 0.014963458976006476 4.0640779180355955e-05 0.0005292241026187158 1.4373735328132972e-06 0.014963458976006476 4.0640779180355955e-05 0.019198363764432444 7.91089754847956e-05']
['59866.327989977835 0.0343822474066713 6.801948513182259e-05 0.015021365257610832 4.0660481529231264e-05 0.0005312721183861391 1.4380703608608585e-06 0.015021365257610832 4.0660481529231264e-05 0.019360882149060468 7.924597854646752e-05']
['59866.3280215158 0.0342947954520273 6.793004935307619e-05 0.015074445224679057 4.06851647216915e-05 0.0005331494381945975 1.4389433502144887e-06 0.015074445224679055 4.06851647216915e-05 0.019220350227348245 7.918190597316117e-05']
['59866.32805305376 0.03426313975263726 6.79468980325371e-05 0.014981902689358655 4.063655004325617e-05 0.000529876415540709 1.4372239576856428e-06 0.014981902689358655 4.063655004325617e-05 0.019281237063278608 7.917139730775286e-05']
['59866.328084591725 0.034146452039716016 6.782577398890512e-05 0.015129810042373019 4.073172674791823e-05 0.0005351075680633476 1.4405901450221236e-06 0.015129810042373017 4.073172674791823e-05 0.019016641997343 7.911642800999749e-05']
['59866.32811612969 0.03429820388303952 6.796387638947579e-05 0.015078207433733773 4.0697849388726245e-05 0.0005332824991208205 1.439391978538945e-06 0.015078207433733774 4.0697849388726245e-05 0.01921999644930575 7.921744403066404e-05']
['59866.32814766765 0.03428928499778175 6.797150127684034e-05 0.015089717006125616 4.069748152896826e-05 0.0005336895669739395 1.4393789681614236e-06 0.015089717006125616 4.069748152896826e-05 0.019199567991656133 7.922379685819294e-05']
['59866.328179205615 0.03425841064102269 6.792761859822801e-05 0.015074774014304487 4.068665838731265e-05 0.0005331610667488474 1.4389961778293625e-06 0.015074774014304487 4.068665838731265e-05 0.019183636626718202 7.918058814603621e-05']
['59866.32821074357 0.034226068912384895 6.789987547119763e-05 0.015037592354000403 4.0674680718607876e-05 0.0005318460345200122 1.4385725544557887e-06 0.015037592354000404 4.0674680718607876e-05 0.01918847655838449 7.915063322908311e-05']
['59866.32824228154 0.03436194468456488 6.799968898826291e-05 0.01501829592871916 4.06553908077788e-05 0.000531163563082787 1.4378903134201778e-06 0.01501829592871916 4.06553908077788e-05 0.019343648755845724 7.92263750542312e-05']
['59866.328273819505 0.0341262520489956 6.780652565619455e-05 0.014999765913743681 4.0650294834380575e-05 0.0005305081978652505 1.4377100802299129e-06 0.014999765913743681 4.0650294834380575e-05 0.01912648613525192 7.905802547297926e-05']
['59866.32830535746 0.03420209862260819 6.788682728618858e-05 0.015044967397370643 4.066172254916587e-05 0.0005321068733217657 1.4381142529624292e-06 0.015044967397370643 4.066172254916587e-05 0.019157131225237545 7.913278081585495e-05']
['59866.32833689543 0.03421262118651077 6.790965111486934e-05 0.014997731198201669 4.063946551266774e-05 0.0005304362345238511 1.4373270713230396e-06 0.014997731198201669 4.063946551266774e-05 0.0192148899883091 7.914093044498899e-05']
['59866.328368433395 0.034258304988339865 6.792849569203575e-05 0.01502233809258797 4.065053970077215e-05 0.0005313065253851222 1.4377187406069385e-06 0.015022338092587968 4.065053970077215e-05 0.019235966895751896 7.916278737479481e-05']
['59866.32839997135 0.03430675112889742 6.796285372298125e-05 0.015030243169334417 4.0670278592944526e-05 0.0005315861102828372 1.438416861109248e-06 0.015030243169334415 4.0670278592944526e-05 0.019276507959563004 7.920240556320917e-05']
['59866.32843150932 0.03413749543749472 6.785019478188166e-05 0.015002298412826435 4.065027520823795e-05 0.0005305977666980052 1.43770938609711e-06 0.015002298412826435 4.065027520823795e-05 0.01913519702466828 7.909547273039568e-05']
['59866.32846304728 0.03427214427129255 6.792505422587254e-05 0.01507191746377417 4.0682813403740706e-05 0.0005330600369406048 1.4388601893534554e-06 0.015071917463774169 4.0682813403740706e-05 0.01920022680751838 7.91764125104902e-05']
['59866.32849458524 0.034202333829672624 6.789025879348117e-05 0.015042174889751833 4.0671487757950997e-05 0.0005320081085681755 1.438459626573202e-06 0.015042174889751833 4.0671487757950997e-05 0.01916015893992079 7.914074270242227e-05']
['59866.32852612321 0.03419673610153293 6.788468356783786e-05 0.015042592914382067 4.0678001203172476e-05 0.0005320228931651169 1.4386899925739923e-06 0.015042592914382067 4.0678001203172476e-05 0.019154143187150866 7.913930783745064e-05']
['59866.32855766117 0.03423545046290121 6.791290484034173e-05 0.015048768405939435 4.068798588466628e-05 0.0005322413065000897 1.4390431284439785e-06 0.015048768405939435 4.068798588466628e-05 0.019186682056961776 7.916864808245821e-05']
['59866.32858919913 0.03418086173905674 6.786550629934735e-05 0.014981108156260898 4.062541388731391e-05 0.0005298483146807183 1.436830096737809e-06 0.014981108156260898 4.062541388731391e-05 0.01919975358279584 7.909583553375179e-05']
['59866.3286207371 0.034369403020392784 6.800202096345577e-05 0.014984141189647505 4.062815822489727e-05 0.0005299555862931719 1.436927157824899e-06 0.014984141189647505 4.062815822489727e-05 0.01938526183074528 7.921440586068652e-05']
['59866.32865227506 0.034179118462895945 6.783909883427568e-05 0.014986709113226212 4.0638464728518525e-05 0.0005300464080111794 1.4372916758243026e-06 0.014986709113226212 4.0638464728518525e-05 0.01919240934966973 7.907988458601637e-05']
['59866.32868381302 0.034289793895395125 6.795834777107297e-05 0.015079528643116976 4.0691152673124225e-05 0.0005333292273439752 1.4391551306743803e-06 0.015079528643116976 4.0691152673124225e-05 0.019210265252278147 7.920926042857365e-05']
['59866.32871535098 0.03422440068381805 6.792975578028327e-05 0.015011952131505666 4.0653327011486736e-05 0.0005309391971528981 1.4378173215576406e-06 0.015011952131505666 4.0653327011486736e-05 0.019212448552312387 7.916529995820016e-05']
['59866.32874688895 0.03440326252707096 6.801831784705671e-05 0.015061449867175628 4.0679256811871276e-05 0.0005326898214426159 1.4387344006475486e-06 0.015061449867175628 4.0679256811871276e-05 0.019341812659895333 7.925461183747864e-05']
['59866.32877842691 0.03426772231124324 6.794536189034733e-05 0.015165411100085565 4.074281076030116e-05 0.0005363666979109591 1.4409821617687983e-06 0.015165411100085565 4.074281076030116e-05 0.019102311211157675 7.922467312056249e-05']
['59866.32880996487 0.034365643632524256 6.801592610798758e-05 0.015050245115528698 4.067477086972163e-05 0.0005322935344180102 1.4385757428992063e-06 0.015050245115528698 4.067477086972163e-05 0.01931539851699556 7.925025671650271e-05']
['59866.32884150284 0.034234231613112676 6.792141723136329e-05 0.01491670995837252 4.0589573435267316e-05 0.0005275706943429082 1.435562500047617e-06 0.01491670995837252 4.0589573435267316e-05 0.019317521654740155 7.912542189697248e-05']
['59866.3288730408 0.034180779661856724 6.786435077965947e-05 0.014943483295289784 4.061003554893399e-05 0.0005285176074347854 1.4362861992778746e-06 0.014943483295289783 4.061003554893399e-05 0.01923729636656694 7.90869464199393e-05']
['59866.32890457876 0.03421113226995165 6.78805534403758e-05 0.015107813371627978 4.069394210335782e-05 0.0005343295949787614 1.4392537865877329e-06 0.015107813371627978 4.069394210335782e-05 0.019103318898323673 7.914396034621437e-05']
['59866.328936116726 0.03427230138996767 6.79079923332857e-05 0.015082724405984996 4.0690466016929756e-05 0.0005334422543345073 1.4391308451793682e-06 0.015082724405984994 4.0690466016929756e-05 0.019189576983982673 7.91657087848805e-05']
['59866.328967654685 0.034327005488387526 6.796689356924065e-05 0.015033736713105436 4.065489625299057e-05 0.0005317096691184075 1.4378728221225832e-06 0.015033736713105438 4.065489625299057e-05 0.019293268775282087 7.919797478972498e-05']
['59866.32899919265 0.03426203425039472 6.793532847134257e-05 0.01507700931061413 4.0684457369423495e-05 0.0005332401241837263 1.4389183327456085e-06 0.01507700931061413 4.0684457369423495e-05 0.019185024939780592 7.91860715400988e-05']
['59866.329030730616 0.03438765682756798 6.801153778584533e-05 0.015074329982046773 4.0682034863855476e-05 0.0005331453623202457 1.438832654137649e-06 0.015074329982046771 4.0682034863855476e-05 0.01931332684552121 7.925021913319495e-05']
['59866.329062268574 0.03429327571690576 6.794259075730643e-05 0.015043941964763078 4.0669869261284284e-05 0.0005320706060621431 1.4384023839632276e-06 0.015043941964763078 4.0669869261284284e-05 0.019249333752142682 7.918480854649317e-05']
['59866.32909380654 0.0343001690755522 6.795300480910725e-05 0.015108394066585836 4.0693374051812546e-05 0.0005343501328616441 1.439233695874097e-06 0.015108394066585838 4.0693374051812546e-05 0.019191775008966364 7.920581767968363e-05']
['59866.329125344506 0.0344001777406872 6.801079124929515e-05 0.015101029217525378 4.0710439337139986e-05 0.0005340896546098445 1.4398372568774605e-06 0.015101029217525376 4.0710439337139986e-05 0.01929914852316183 7.926416338660339e-05']
['59866.329156882464 0.03422920271397715 6.790985717951777e-05 0.015010986561126932 4.065913341410364e-05 0.000530905047086525 1.4380226810416546e-06 0.015010986561126932 4.065913341410364e-05 0.019218216152850215 7.915120865867041e-05']
['59866.32918842043 0.03430001470434867 6.796022253379111e-05 0.015048534344342177 4.066188440399741e-05 0.0005322330282644915 1.4381199774060966e-06 0.015048534344342175 4.066188440399741e-05 0.019251480360006498 7.919583758081264e-05']
['59866.32921995839 0.03427769825409918 6.792746523879161e-05 0.014942802027706124 4.0608431101623456e-05 0.0005284935125228948 1.4362294535622297e-06 0.014942802027706124 4.0608431101623456e-05 0.019334896226393058 7.91402881616092e-05']
['59866.329251496354 0.03432595770572215 6.799163165362199e-05 0.01507870855245151 4.0688726408102744e-05 0.0005333002225699323 1.4390693191029536e-06 0.01507870855245151 4.0688726408102744e-05 0.01924724915327064 7.923657256365428e-05']
['59866.32928303432 0.03430595923371608 6.793925975970568e-05 0.015057351283669121 4.067068627745345e-05 0.0005325448637037858 1.4384312799992074e-06 0.015057351283669121 4.067068627745345e-05 0.01924860795004696 7.918237012729414e-05']
['59866.32931457228 0.034235186218730965 6.79117116918383e-05 0.014992196223646283 4.0633749925610646e-05 0.0005302404748437672 1.4371249237824154e-06 0.014992196223646285 4.0633749925610646e-05 0.01924298999508468 7.913976382282442e-05']
['59866.329346110244 0.03435546410783225 6.800280412576893e-05 0.014981475430321228 4.0651758294326115e-05 0.0005298613043434229 1.4377618395375461e-06 0.014981475430321228 4.0651758294326115e-05 0.019373988677511025 7.922718486345459e-05']
['59866.32937764821 0.03427650553503871 6.791937123993579e-05 0.0150343273608012 4.066804402244725e-05 0.0005317305590073867 1.4383378293447305e-06 0.015034327360801202 4.066804402244725e-05 0.019242178174237505 7.916394882924881e-05']
['59866.32940918617 0.03426279589952628 6.795449929814811e-05 0.014951842640886396 4.061368544588063e-05 0.0005288132588064997 1.4364152879758376e-06 0.014951842640886398 4.061368544588063e-05 0.01931095325863988 7.916618861836754e-05']
['59866.329440724134 0.03432330796057173 6.795980802144617e-05 0.01502467805355135 4.06639443352034e-05 0.000531389284574892 1.438192832569177e-06 0.01502467805355135 4.06639443352034e-05 0.01929862990702038 7.919653954061591e-05']
['59866.32947226209 0.034235624352804465 6.791193917004995e-05 0.01501790092131381 4.06742353406534e-05 0.0005311495925536493 1.4385568024329002e-06 0.01501790092131381 4.06742353406534e-05 0.019217723431490655 7.91607535486078e-05']
['59866.32950380006 0.03427685301720473 6.794937245003629e-05 0.01504606754745098 4.067779402078935e-05 0.0005321457831714164 1.4386826649961265e-06 0.015046067547450978 4.067779402078935e-05 0.01923078546975375 7.919469769341579e-05']
['59866.32953533802 0.03421102871878504 6.789257306015877e-05 0.015023122021659186 4.067016091879617e-05 0.0005313342512043927 1.4384126992376066e-06 0.015023122021659185 4.067016091879617e-05 0.019187906697125858 7.914204613155873e-05']
['59866.32956687598 0.03423160150519107 6.788302642080874e-05 0.01496607747689069 4.062868309475489e-05 0.0005293167131429854 1.4369457212987478e-06 0.014966077476890688 4.062868309475489e-05 0.019265524028300382 7.911254746285345e-05']
['59866.32959841395 0.03434277868162972 6.796733345869021e-05 0.015042501855918676 4.066346430048413e-05 0.0005320196726307704 1.4381758548139708e-06 0.015042501855918676 4.066346430048413e-05 0.019300276825711046 7.920275087647863e-05']
['59866.329629951906 0.034318121759097577 6.794867444645622e-05 0.015047030209445108 4.065871695282494e-05 0.0005321798303747258 1.438007951736963e-06 0.015047030209445108 4.065871695282494e-05 0.019271091549652467 7.91843016214731e-05']
['59866.32966148987 0.03430635277811926 6.799174846201794e-05 0.014984287949506453 4.0645133141988965e-05 0.0005299607768613939 1.437527522705725e-06 0.014984287949506452 4.0645133141988965e-05 0.01932206482861281 7.921429610273848e-05']
['59866.32969302784 0.034247023868744494 6.791650017700023e-05 0.015016911726428528 4.066604389661337e-05 0.0005311146069412774 1.4382670893640042e-06 0.015016911726428528 4.066604389661337e-05 0.019230112142315965 7.916045807405209e-05']
['59866.329724565796 0.03432053505973547 6.795760746198581e-05 0.015063391243838042 4.0666686200631486e-05 0.0005327584835964441 1.43828980622166e-06 0.015063391243838042 4.0666686200631486e-05 0.01925714381589743 7.919605910964245e-05']
['59866.32975610376 0.034270485057768585 6.792490155571682e-05 0.015058627807007919 4.0696185476482403e-05 0.0005325900114814174 1.4393331296815055e-06 0.01505862780700792 4.0696185476482403e-05 0.019211857250760665 7.918315328205918e-05']
['59866.32978764173 0.03423563715531173 6.790257293220929e-05 0.015015353801688724 4.066542790732085e-05 0.0005310595066249874 1.4382453031993828e-06 0.015015353801688723 4.066542790732085e-05 0.019220283353623004 7.914819288966432e-05']
['59866.329819179686 0.03424684818188712 6.791196768565678e-05 0.014999612821731434 4.064887925531925e-05 0.0005305027833429177 1.4376600143621466e-06 0.014999612821731432 4.064887925531925e-05 0.019247235360155688 7.914775258749432e-05']
['59866.32985071765 0.03421072563359399 6.789078475211328e-05 0.015035596187963584 4.068622439969502e-05 0.0005317754345884584 1.4389808286572322e-06 0.015035596187963584 4.068622439969502e-05 0.019175129445630403 7.914876821631602e-05']
['59866.32988225561 0.034318095315970944 6.796680914391605e-05 0.015015283255077881 4.064934120950641e-05 0.0005310570115490243 1.43767635264934e-06 0.01501528325507788 4.064934120950641e-05 0.019302812060893064 7.919505089317379e-05']
['59866.329913793576 0.03419214203362988 6.78931562473538e-05 0.015063302720045567 4.068496086327305e-05 0.0005327553527077432 1.4389361401978247e-06 0.015063302720045567 4.068496086327305e-05 0.019128839313584313 7.915015290998278e-05']
['59866.32994533154 0.03425690206311301 6.79218279950368e-05 0.01501599386009918 4.0661724526946294e-05 0.0005310821440605188 1.4381143229121028e-06 0.01501599386009918 4.0661724526946294e-05 0.01924090820301383 7.916281045852673e-05']
['59866.3299768695 0.03432497789738474 6.798214258311311e-05 0.015071238621244987 4.0690833336566526e-05 0.0005330360277974713 1.4391438364540096e-06 0.015071238621244987 4.0690833336566526e-05 0.019253739276139756 7.922951235376218e-05']
['59866.330008407465 0.03428516461240278 6.792711312724987e-05 0.015073259991442461 4.069261031673845e-05 0.0005331075191438595 1.4392066842713735e-06 0.015073259991442461 4.069261031673845e-05 0.01921190462096032 7.918321307065108e-05']
['59866.33003994543 0.03421205522482148 6.788685906916896e-05 0.01500189174386399 4.065383751796325e-05 0.000530583383725655 1.4378353770308002e-06 0.01500189174386399 4.065383751796325e-05 0.01921016348095749 7.91287567146999e-05']
['59866.33007148339 0.034217969354283555 6.788799609257158e-05 0.015085502619018256 4.0695690239250084e-05 0.000533540513520553 1.4393156142473885e-06 0.015085502619018256 4.0695690239250084e-05 0.0191324667352653 7.915124267826759e-05']
['59866.330103021355 0.03423322024661842 6.789337868985077e-05 0.01499955349149922 4.064792518093741e-05 0.0005305006849651996 1.4376262708834918e-06 0.014999553491499219 4.064792518093741e-05 0.019233666755119203 7.913131296420253e-05']
['59866.33013455931 0.03422472009256678 6.788958360415082e-05 0.014997224687124054 4.0633678739204945e-05 0.0005304183203590215 1.437122406078338e-06 0.014997224687124054 4.0633678739204945e-05 0.019227495405442725 7.912073944185494e-05']
['59866.33016609728 0.03411077636137718 6.779144643958132e-05 0.014976324294585328 4.0633651943493896e-05 0.000529679120184555 1.437121458373923e-06 0.01497632429458533 4.0633651943493896e-05 0.019134452066791853 7.903653510013978e-05']
['59866.330197635245 0.034191807866264246 6.788517306261473e-05 0.014936422013449469 4.0613488473673286e-05 0.0005282678656771296 1.436408321509071e-06 0.01493642201344947 4.0613488473673286e-05 0.019255385852814777 7.91065873852636e-05']
['59866.3302291732 0.03428804129359876 6.794074454543167e-05 0.01503608675625872 4.065862901936965e-05 0.0005317927848927017 1.438004841727169e-06 0.01503608675625872 4.065862901936965e-05 0.019251954537340042 7.917745186050339e-05']
['59866.33026071117 0.03426532784092306 6.79355798980223e-05 0.015013279199030748 4.066046508015384e-05 0.0005309861325654389 1.4380697790937515e-06 0.01501327919903075 4.066046508015384e-05 0.01925204864189231 7.917396312308094e-05']
['59866.330292249135 0.034209896936172 6.789780467058471e-05 0.015012981296344673 4.065401816631614e-05 0.0005309755964132057 1.4378417661593166e-06 0.015012981296344673 4.065401816631614e-05 0.019196915639827325 7.913824026443877e-05']
['59866.33032378709 0.03417642579612764 6.786688070623317e-05 0.01500562171872319 4.06525376972146e-05 0.0005307153046004218 1.437789405275849e-06 0.015005621718723189 4.06525376972146e-05 0.01917080407740445 7.91109494192652e-05']
['59866.33035532506 0.03419206948607193 6.785217391286272e-05 0.014956042074340398 4.0634168807795403e-05 0.0005289617833825863 1.4371397387091435e-06 0.0149560420743404 4.0634168807795403e-05 0.019236027411731534 7.908889415968453e-05']
['59866.33038686302 0.03419177655534663 6.787995638198654e-05 0.015024794354593436 4.0657349386642834e-05 0.000531393397882833 1.4379595839774325e-06 0.015024794354593436 4.0657349386642834e-05 0.019166982200753194 7.912463925711093e-05']
['59866.33041840098 0.034210142084998965 6.790374483857171e-05 0.014989696538291521 4.063626999431215e-05 0.0005301520665592373 1.4372140529803654e-06 0.014989696538291521 4.063626999431215e-05 0.019220445546707446 7.913422143518244e-05']
['59866.33044993895 0.03430303901746791 6.795760923129675e-05 0.015100519830518242 4.0699550417945445e-05 0.0005340716387298151 1.4394521401408516e-06 0.015100519830518242 4.0699550417945445e-05 0.019202519186949665 7.921294121957922e-05']
['59866.33048147691 0.03433027581471756 6.797811336979164e-05 0.015080137655301466 4.0691870096177095e-05 0.0005333507667438784 1.4391805043244142e-06 0.015080137655301465 4.0691870096177095e-05 0.01925013815941609 7.922658764102109e-05']
['59866.33051301487 0.03420714683355945 6.788925883604186e-05 0.01501271289668577 4.0669871748717436e-05 0.0005309661037171083 1.438402471938179e-06 0.015012712896685772 4.0669871748717436e-05 0.01919443393687368 7.91390544128764e-05']
['59866.33054455284 0.03428714628586531 6.795334395998208e-05 0.015021759305566604 4.066094889856412e-05 0.0005312860549816894 1.4380868906696527e-06 0.015021759305566606 4.066094889856412e-05 0.019265386980298702 7.918945460523943e-05']
['59866.3305760908 0.03430926565616595 6.79542555737516e-05 0.015072986973503635 4.06951084027522e-05 0.0005330978631095224 1.439295035990786e-06 0.015072986973503635 4.06951084027522e-05 0.019236278682662318 7.92077818051642e-05']
['59866.33060762876 0.034315253565623594 6.797266578448435e-05 0.015041100090362905 4.067577327216601e-05 0.0005319700953158245 1.4386111956334264e-06 0.015041100090362905 4.067577327216601e-05 0.019274153475260687 7.921364671025988e-05']
['59866.33063916672 0.034240088285506315 6.791684983999555e-05 0.015045116601405156 4.0667697432504024e-05 0.000532112150335015 1.4383255712330215e-06 0.015045116601405156 4.0667697432504024e-05 0.01919497168410116 7.916160752947226e-05']
['59866.33067070469 0.03431666766948284 6.796198079867807e-05 0.01507012370112555 4.068454487483117e-05 0.0005329965955645467 1.438921427616315e-06 0.01507012370112555 4.068454487483117e-05 0.019246543968357288 7.920898323897383e-05']
['59866.33070224265 0.03432470430023166 6.797236265633325e-05 0.015105950947297136 4.069923791484718e-05 0.000534263725192453 1.4394410876046693e-06 0.015105950947297136 4.069923791484718e-05 0.019218753352934527 7.922543816182666e-05']
['59866.33073378061 0.034238580172090596 6.794001289925618e-05 0.015013445475321017 4.066071822463452e-05 0.0005309920133862201 1.4380787322482886e-06 0.015013445475321019 4.066071822463452e-05 0.019225134696769577 7.917789691128593e-05']
['59866.33076531858 0.03422112112520502 6.791024698040755e-05 0.014948116485805785 4.0621664036436016e-05 0.000528681473028765 1.4366974728926813e-06 0.014948116485805785 4.0621664036436016e-05 0.019273004639399235 7.913230208978526e-05']
['59866.33079685654 0.03422740035259913 6.791014827291335e-05 0.015078423242086776 4.070267393195681e-05 0.0005332901317799629 1.4395626118507905e-06 0.015078423242086776 4.070267393195681e-05 0.019148977110512354 7.917383345310667e-05']
['59866.3308283945 0.034319707709684184 6.796652844753505e-05 0.01502716757057353 4.0654661518113644e-05 0.0005314773332282235 1.4378645200745877e-06 0.015027167570573532 4.0654661518113644e-05 0.01929254013911065 7.919754094895865e-05']
['59866.33085993247 0.03419881858240914 6.790440401453392e-05 0.015041043661177336 4.067869870307247e-05 0.0005319680995416427 1.4387146615866347e-06 0.015041043661177336 4.067869870307247e-05 0.019157774921231805 7.915658287688018e-05']
['59866.330891470425 0.03438997602451373 6.801253460269276e-05 0.015127118088987944 4.0725275986070105e-05 0.0005350123596882793 1.4403619959921599e-06 0.015127118088987946 4.0725275986070105e-05 0.019262857935525783 7.927328028550388e-05']
['59866.33092300839 0.034277636565746394 6.794708393263967e-05 0.014974512560145817 4.062429537938771e-05 0.0005296150431864176 1.4367905376121772e-06 0.014974512560145816 4.062429537938771e-05 0.01930312400560058 7.916526757373413e-05']
['59866.330954546356 0.03427416195833818 6.793387278575735e-05 0.015066412355542718 4.0674263272998987e-05 0.0005328653335656511 1.4385577903375383e-06 0.015066412355542716 4.0674263272998987e-05 0.019207749602795463 7.917958552854832e-05']
['59866.330986084315 0.034471041970741134 6.811911079624151e-05 0.015034873913832842 4.065986391284851e-05 0.0005317498893666417 1.4380485171496919e-06 0.015034873913832842 4.065986391284851e-05 0.019436168056908294 7.933119051849649e-05']
['59866.33101762228 0.0343360512409496 6.79897074674553e-05 0.015014028934105148 4.066760615060161e-05 0.0005310126490194611 1.438322342796136e-06 0.015014028934105148 4.066760615060161e-05 0.019322022306844454 7.922407785219463e-05']
['59866.331049160246 0.03434616713678568 6.79837574159979e-05 0.015047057202896279 4.0700625056696736e-05 0.0005321807850727669 1.4394901477118087e-06 0.015047057202896279 4.0700625056696736e-05 0.019299109933889398 7.923592715683371e-05']
['59866.331080698204 0.034260520616308646 6.79162266657394e-05 0.015067867580073066 4.066904718175792e-05 0.0005329168016050542 1.4383733088476195e-06 0.015067867580073066 4.066904718175792e-05 0.01919265303623558 7.916176629651555e-05']
['59866.33111223617 0.0343803929533881 6.800011561258197e-05 0.015043663985240095 4.0669776748894344e-05 0.0005320607745476629 1.4383991120067483e-06 0.015043663985240097 4.0669776748894344e-05 0.019336728968148004 7.923412436652165e-05']
['59866.33114377413 0.03431974537176191 6.797013629340138e-05 0.015043751692271286 4.067115983830593e-05 0.0005320638765493424 1.4384480287882133e-06 0.015043751692271285 4.067115983830593e-05 0.01927599367949063 7.920910724365342e-05']
['59866.331175312094 0.03419603025931299 6.785002883995336e-05 0.0150870870608655 4.0673431338633656e-05 0.0005335965516876709 1.4385283666783004e-06 0.0150870870608655 4.0673431338633656e-05 0.01910894319844749 7.91072337428193e-05']
['59866.33120685006 0.03423739488803693 6.789796941280558e-05 0.014947679511442899 4.0621722877252465e-05 0.0005286660182221299 1.4366995539608576e-06 0.014947679511442899 4.0621722877252465e-05 0.019289715376594033 7.912179611142924e-05']
['59866.33123838802 0.03431085424521914 6.794515609287729e-05 0.015112065127469225 4.0693121461609994e-05 0.0005344799700807512 1.4392247623231386e-06 0.015112065127469224 4.0693121461609994e-05 0.019198789117749915 7.919895435404941e-05']
['59866.331269925984 0.03427452599664749 6.793654516599272e-05 0.015026683278921362 4.0654856967940066e-05 0.0005314602049148144 1.4378714326981436e-06 0.015026683278921362 4.0654856967940066e-05 0.019247842717726123 7.917191145964984e-05']
['59866.33130146395 0.03443682345439063 6.806671793137136e-05 0.01509502254723759 4.068759462143399e-05 0.0005338772121058835 1.4390292903378743e-06 0.01509502254723759 4.068759462143399e-05 0.01934180090715304 7.930043156267824e-05']
['59866.33133300191 0.03413302252267573 6.782758295221234e-05 0.014930997020766541 4.05982060146341e-05 0.0005280759958100795 1.4358678150871405e-06 0.014930997020766541 4.05982060146341e-05 0.019202025501909185 7.904932220295072e-05']
['59866.331364539874 0.03434742639088037 6.797448193948854e-05 0.015087474429458647 4.069248713833441e-05 0.0005336102520490928 1.43920232772651e-06 0.01508747442945865 4.069248713833441e-05 0.01925995196142172 7.922378875341273e-05']
['59866.33139607783 0.03424592621494927 6.792609811607837e-05 0.015022566116709803 4.066584583822432e-05 0.0005313145900887076 1.438260084481418e-06 0.015022566116709804 4.066584583822432e-05 0.019223360098239467 7.916859113950009e-05']
['59866.3314276158 0.034395630911461965 6.79932155988633e-05 0.015060987120232449 4.067351272353843e-05 0.0005326734551174142 1.4385312450804978e-06 0.015060987120232449 4.067351272353843e-05 0.019334643791229518 7.923012056500577e-05']
['59866.331459153764 0.034228497559252606 6.788883065870962e-05 0.014971705775956754 4.063214807093671e-05 0.000529515773502444 1.4370682697625327e-06 0.014971705775956754 4.063214807093671e-05 0.019256791783295854 7.911930728378174e-05']
['59866.33149069172 0.03421571825220977 6.78956504653368e-05 0.015117512471485201 4.0704537047698205e-05 0.000534672630464499 1.4396285060907452e-06 0.015117512471485203 4.0704537047698205e-05 0.01909820578072457 7.916235651102502e-05']
['59866.33152222969 0.03424365616524109 6.791023826345881e-05 0.014997023246728875 4.065965003285217e-05 0.0005304111958624368 1.438040952692215e-06 0.014997023246728875 4.065965003285217e-05 0.019246632918512214 7.915180100158025e-05']
['59866.33155376765 0.03420962084938482 6.788363526628878e-05 0.014935843922934441 4.060775065743279e-05 0.0005282474199075694 1.4362053877719092e-06 0.014935843922934443 4.060775065743279e-05 0.01927377692645038 7.910232202927269e-05']
['59866.33158530561 0.03434325998163319 6.797887956446327e-05 0.015072094266272767 4.069430148514852e-05 0.0005330662900498498 1.439266497118499e-06 0.015072094266272765 4.069430148514852e-05 0.019271165715360427 7.922849386555297e-05']
['59866.33161684358 0.0342388280515575 6.79102710230981e-05 0.015009118002703154 4.066070277343087e-05 0.0005308389603510583 1.4380781857737468e-06 0.015009118002703154 4.066070277343087e-05 0.019229710048854348 7.915236989793752e-05']
['59866.331648381536 0.034143710146953714 6.782902755832333e-05 0.015032288286085506 4.065418356709064e-05 0.0005316584414917563 1.4378476160150617e-06 0.015032288286085504 4.065418356709064e-05 0.01911142186086821 7.907932486443272e-05']
['59866.3316799195 0.03420293273656246 6.787178822425589e-05 0.015017334357831535 4.064350917624611e-05 0.0005311295544694762 1.4374700866667502e-06 0.015017334357831535 4.064350917624611e-05 0.019185598378730927 7.91105206335911e-05']
['59866.33171145747 0.03422932753771603 6.7878668771764e-05 0.015037748270758761 4.0671891918482577e-05 0.0005318515489473019 1.4384739208279583e-06 0.015037748270758763 4.0671891918482577e-05 0.019191579266957266 7.913100824869842e-05']
['59866.331742995426 0.034210275891237533 6.789157875900255e-05 0.014996453543983934 4.0651043775867474e-05 0.0005303910467495589 1.4377365686165188e-06 0.014996453543983934 4.0651043775867474e-05 0.0192138223472536 7.913137068481337e-05']
['59866.33177453339 0.034274539276449564 6.793021794682569e-05 0.015063009152392974 4.06663357539895e-05 0.0005327449698759561 1.438277411707135e-06 0.015063009152392972 4.06663357539895e-05 0.019211530124056592 7.917237759445805e-05']
['59866.33180607136 0.03433784172455004 6.797194362041975e-05 0.015085619405038234 4.069478158311291e-05 0.0005335446439810783 1.4392834771105433e-06 0.015085619405038234 4.069478158311291e-05 0.019252222319511805 7.922278944618642e-05']
['59866.331837609316 0.034318478726241095 6.794466035123455e-05 0.015029458793233974 4.0660371130647665e-05 0.0005315583686531421 1.438066456309683e-06 0.015029458793233976 4.0660371130647665e-05 0.01928901993300712 7.918170654088374e-05']
['59866.33186914728 0.03420385720555083 6.789804894215565e-05 0.014978028427586974 4.063072038521873e-05 0.0005297393915603101 1.4370177757093776e-06 0.014978028427586974 4.063072038521873e-05 0.019225828777963857 7.912648411987728e-05']
['59866.33190068524 0.034222947199552115 6.790011790499176e-05 0.015079375367641966 4.0689971243865135e-05 0.0005333238063329746 1.4391133461618253e-06 0.015079375367641968 4.0689971243865135e-05 0.019143571831910147 7.91586999093489e-05']
['59866.331932223206 0.03418657047976012 6.78686052108181e-05 0.015026575083025075 4.0678641697554894e-05 0.0005314563782677663 1.4387126454288779e-06 0.015026575083025075 4.0678641697554894e-05 0.019159995396735047 7.91258457371543e-05']
['59866.33196376117 0.0343603596420935 6.799883596137661e-05 0.015059908013956203 4.0670671494053634e-05 0.000532635289540084 1.4384307571433948e-06 0.015059908013956203 4.0670671494053634e-05 0.019300451628137302 7.923348542049272e-05']
['59866.33199529913 0.03427728613420311 6.793423401657374e-05 0.015069601428831214 4.0690413420773166e-05 0.0005329781239607059 1.439128984970855e-06 0.015069601428831214 4.0690413420773166e-05 0.019207684705371895 7.918819290634205e-05']
['59866.332026837095 0.0342886895042986 6.796281687897818e-05 0.015098515149396812 4.06939020202779e-05 0.0005340007376387488 1.4392523689387765e-06 0.015098515149396812 4.06939020202779e-05 0.019190174354901786 7.921450712944883e-05']
['59866.33205837506 0.034251414859893727 6.790305596224629e-05 0.01502423656779569 4.063897103716964e-05 0.0005313736702103769 1.4373095828297592e-06 0.01502423656779569 4.063897103716964e-05 0.019227178292098038 7.913501738150984e-05']
['59866.33208991302 0.03429057382144948 6.795532394815301e-05 0.015011373969021758 4.0657877783200964e-05 0.0005309187488379593 1.4379782721827967e-06 0.015011373969021758 4.0657877783200964e-05 0.019279199852427722 7.918957683137424e-05']
['59866.332121450985 0.034248144152945005 6.793943344596943e-05 0.015011277694273432 4.066806917487569e-05 0.0005309153438152724 1.4383387189299118e-06 0.015011277694273432 4.066806917487569e-05 0.01923686645867157 7.918117495574175e-05']
['59866.33215298894 0.03427249721044405 6.794755312705179e-05 0.015056490514578025 4.066847292043608e-05 0.0005325144202247394 1.4383529985080646e-06 0.015056490514578025 4.066847292043608e-05 0.019216006695866025 7.918834930489313e-05']
['59866.33218452691 0.03433688970724624 6.798054604838015e-05 0.015038159178745897 4.0674226471647815e-05 0.0005318660818444815 1.4385564887559936e-06 0.015038159178745895 4.0674226471647815e-05 0.019298730528500348 7.921961461723245e-05']
['59866.332216064875 0.034197573899401215 6.787028046061499e-05 0.01501494547357036 4.0654155272602685e-05 0.0005310450649720005 1.4378466153022572e-06 0.01501494547357036 4.0654155272602685e-05 0.019182628425830857 7.911469718536136e-05']
['59866.33224760283 0.034351068455584416 6.799805596382877e-05 0.014997155016540628 4.0636986426152805e-05 0.0005304158562661903 1.4372393915734384e-06 0.014997155016540628 4.0636986426152805e-05 0.019353913439043788 7.921553055215446e-05']
['59866.3322791408 0.034199904475215245 6.786180424318227e-05 0.015113266575971548 4.072812353627691e-05 0.000534522462629199 1.4404627074790746e-06 0.015113266575971547 4.072812353627691e-05 0.019086637899243697 7.914546431682756e-05']
['59866.332310678765 0.0342074083712099 6.790147667637177e-05 0.015096750192969651 4.070368577451798e-05 0.0005339383150743655 1.4395983984608444e-06 0.015096750192969651 4.070368577451798e-05 0.019110658178240245 7.91669158832309e-05']
['59866.33234221672 0.03425838758112116 6.794591593945704e-05 0.014988237137429956 4.064219497912354e-05 0.0005301004508123327 1.4374236064515826e-06 0.014988237137429958 4.064219497912354e-05 0.0192701504436912 7.917345202511292e-05']
['59866.33237375469 0.0341619531674276 6.782520701487148e-05 0.014991139888721434 4.0643491271996476e-05 0.0005302031146382449 1.4374694534334543e-06 0.014991139888721434 4.0643491271996476e-05 0.019170813278706168 7.907055134110945e-05']
['59866.33240529265 0.034212932954835934 6.788688532542997e-05 0.014989558793799878 4.065794988327836e-05 0.0005301471948444086 1.4379808222014e-06 0.014989558793799877 4.065794988327836e-05 0.019223374161036057 7.913089212121429e-05']
['59866.33243683061 0.03415658409146299 6.783138956214573e-05 0.015016880077548787 4.06563782869538e-05 0.000531113487591132 1.4379252383517115e-06 0.015016880077548787 4.06563782869538e-05 0.0191397040139142 7.908247912997835e-05']
['59866.33246836858 0.03421794442192209 6.790165476258723e-05 0.01506895586876534 4.0699810842690406e-05 0.0005329552919439177 1.4394613507820659e-06 0.015068955868765338 4.0699810842690406e-05 0.01914898855315675 7.916507640448763e-05']
['59866.33249990654 0.03426321382083286 6.791159452846477e-05 0.01498394489799377 4.0647922564387114e-05 0.0005299486438960654 1.4376261783419556e-06 0.014983944897993772 4.0647922564387114e-05 0.01927926892283909 7.914694106659472e-05']
['59866.3325314445 0.034311755021543884 6.797688063781151e-05 0.015039339900704244 4.0680145178105896e-05 0.00053190784134139 1.4387658201758855e-06 0.015039339900704244 4.0680145178105896e-05 0.019272415120839638 7.921950841149575e-05']
['59866.33256298247 0.03417083613911028 6.786301085988378e-05 0.015075264165727074 4.0684538355482723e-05 0.0005331784023092403 1.4389211970415303e-06 0.015075264165727072 4.0684538355482723e-05 0.01909557197338321 7.912407916789584e-05']
['59866.33259452043 0.034239567526270234 6.787827404286187e-05 0.015056549100553096 4.067018694356633e-05 0.0005325164922797457 1.4384136196755653e-06 0.015056549100553094 4.067018694356633e-05 0.019183018425717138 7.912979333387955e-05']
['59866.33262605839 0.03426211839499446 6.795818948892627e-05 0.014978872880849535 4.064481926283651e-05 0.0005297692579849649 1.4375164215015815e-06 0.014978872880849535 4.064481926283651e-05 0.019283245514144925 7.918533230037906e-05']
['59866.33265759635 0.03430570221219343 6.795793587827491e-05 0.015000151695801269 4.064860226045454e-05 0.0005305218421144552 1.4376502176728291e-06 0.015000151695801267 4.064860226045454e-05 0.019305550516392163 7.918705648377363e-05']
['59866.33268913432 0.0342953545357178 6.794700077620216e-05 0.01505439431157559 4.067869805809767e-05 0.0005324402822092814 1.4387146387753175e-06 0.01505439431157559 4.067869805809767e-05 0.019240960224142206 7.919312716507094e-05']
['59866.33272067228 0.03434954213165127 6.798667961839273e-05 0.015067712346214814 4.068699018560596e-05 0.0005329113113304151 1.4390079127934713e-06 0.015067712346214816 4.068699018560596e-05 0.019281829785436452 7.923143174206543e-05']
['59866.33275221024 0.034196173477954714 6.789060068301749e-05 0.014977840115563 4.0643456759831174e-05 0.0005297327313848747 1.4374682328152978e-06 0.014977840115563 4.0643456759831174e-05 0.019218333362391714 7.912663419158685e-05']
['59866.33278374821 0.03434817509968714 6.798971392819293e-05 0.015085323560592072 4.0683605774353114e-05 0.000533534180624191 1.4388882137311722e-06 0.015085323560592072 4.0683605774353114e-05 0.01926285153909507 7.923229757390915e-05']
['59866.33281528617 0.034244744429740626 6.790276572099807e-05 0.01503147142875486 4.0673035081246205e-05 0.0005316295510735401 1.4385143519400894e-06 0.01503147142875486 4.0673035081246205e-05 0.019213273000985763 7.915226702553146e-05']
['59866.33284682413 0.03429878280653491 6.795619965619362e-05 0.015100177667361136 4.069851027640281e-05 0.0005340595371836379 1.4394153526590682e-06 0.015100177667361136 4.069851027640281e-05 0.01919860513917377 7.921119750660834e-05']
['59866.3328783621 0.034265148923035546 6.792878571335061e-05 0.014970733041446554 4.0636662074047606e-05 0.0005294813700567519 1.437227919964362e-06 0.014970733041446554 4.0636662074047606e-05 0.01929441588158899 7.915591091643532e-05']
['59866.332909900055 0.034333709665905376 6.79877617202856e-05 0.015096839826882017 4.070317929293272e-05 0.0005339414852255259 1.4395804853390933e-06 0.015096839826882017 4.070317929293272e-05 0.01923686983902336 7.924067483487858e-05']
['59866.33294143802 0.03427708081547442 6.795122803396309e-05 0.015036950327381974 4.066255322410086e-05 0.0005318233274733634 1.4381436320784305e-06 0.015036950327381974 4.066255322410086e-05 0.019240130488092443 7.918846270781172e-05']
['59866.332972975986 0.034298941274214095 6.797032627439064e-05 0.015093038093031773 4.069941683993418e-05 0.0005338070263956179 1.4394474157851223e-06 0.015093038093031773 4.069941683993418e-05 0.019205903181182322 7.922378295031005e-05']
['59866.333004513945 0.03430018471144764 6.794654501941861e-05 0.015075675612223114 4.0692115994172197e-05 0.0005331929542522765 1.4391892011869512e-06 0.015075675612223114 4.0692115994172197e-05 0.019224509099224525 7.919962931831843e-05']
['59866.33303605191 0.034372033544345135 6.800391585517061e-05 0.01511785067360317 4.070654488481026e-05 0.0005346845919175743 1.4396995188021467e-06 0.015117850673603172 4.070654488481026e-05 0.019254182870741963 7.925626390447759e-05']
['59866.333067589876 0.034225226200966796 6.78990112356723e-05 0.015002500844866264 4.064554017370794e-05 0.0005306049262668449 1.437541918507963e-06 0.015002500844866262 4.064554017370794e-05 0.019222725356100534 7.913492062796587e-05']
['59866.333099127834 0.03432723888983533 6.798470558720145e-05 0.015098039468757866 4.0698772831081746e-05 0.0005339839138776329 1.439424638631287e-06 0.015098039468757866 4.0698772831081746e-05 0.019229199421077467 7.923578928574169e-05']
['59866.3331306658 0.034205442773268986 6.788954859285773e-05 0.014957212656965452 4.0624907820959854e-05 0.0005290031842739363 1.4368121983018577e-06 0.014957212656965452 4.0624907820959854e-05 0.019248230116303534 7.911620531600006e-05']
['59866.33316220376 0.03432875677351414 6.799938459141734e-05 0.015021220652586 4.0648238767667965e-05 0.0005312670040295839 1.4376373617453264e-06 0.015021220652586 4.0648238767667965e-05 0.019307536120928136 7.922244391411334e-05']
['59866.333193741724 0.034218221200984826 6.789988090180576e-05 0.015050585175154752 4.066632947394892e-05 0.0005323055615669951 1.4382771895961346e-06 0.01505058517515475 4.066632947394892e-05 0.019167636025830076 7.914634659517249e-05']
['59866.33322527969 0.03418301495589909 6.785231907205328e-05 0.014966005344841613 4.063270268163142e-05 0.0005293141619936152 1.4370878851033227e-06 0.014966005344841611 4.063270268163142e-05 0.019217009611057476 7.908826544228659e-05']
['59866.33325681765 0.03436553433803246 6.797296890659258e-05 0.015099836247042355 4.0702596742367486e-05 0.0005340474619099921 1.439559881827525e-06 0.015099836247042354 4.0702596742367486e-05 0.019265698090990106 7.922768382041965e-05']
['59866.333288355614 0.03421021228980636 6.788264806409471e-05 0.015036975359891973 4.0683927018052995e-05 0.0005318242128172976 1.4388995754028994e-06 0.015036975359891971 4.0683927018052995e-05 0.019173236929914392 7.914060794436699e-05']
['59866.33331989358 0.034295050308358756 6.796356225483447e-05 0.015018677971246 4.067514413735502e-05 0.0005311770750731465 1.4385889445411952e-06 0.015018677971245998 4.067514413735502e-05 0.019276372337112758 7.9205512086984e-05']
['59866.33335143154 0.0342255382946468 6.79210925470371e-05 0.015041986545717062 4.0673747470860565e-05 0.0005320014472605898 1.4385395475686522e-06 0.01504198654571706 4.0673747470860565e-05 0.019183551748929738 7.916835571177737e-05']
['59866.333382969504 0.034271550276058785 6.79289809823425e-05 0.015012688644457145 4.06587990747278e-05 0.0005309652459699823 1.4380108562051357e-06 0.015012688644457145 4.06587990747278e-05 0.01925886163160164 7.916744532633685e-05']
['59866.33341450746 0.03414488467020589 6.782855065898829e-05 0.014994482962813416 4.065572332394212e-05 0.0005303213516975474 1.4379020737737445e-06 0.014994482962813416 4.065572332394212e-05 0.019150401707392475 7.907970740646346e-05']
['59866.33344604543 0.034304039555040765 6.795045418315187e-05 0.015080513065026509 4.068824207939972e-05 0.0005333640441468618 1.4390521894791386e-06 0.015080513065026507 4.068824207939972e-05 0.019223526490014256 7.920099284231514e-05']
['59866.333477583394 0.034247606579271415 6.793574251498756e-05 0.014998424944494665 4.065372773537625e-05 0.0005304607707798027 1.4378314942660477e-06 0.014998424944494666 4.065372773537625e-05 0.01924918163477675 7.917064285355266e-05']
['59866.33350912135 0.0343425788020713 6.797755174892853e-05 0.015048011446950744 4.066494297123964e-05 0.0005322145345523633 1.4382281520939587e-06 0.015048011446950742 4.066494297123964e-05 0.019294567355120557 7.92122789006378e-05']
['59866.33354065932 0.03441124139306557 6.804152860111791e-05 0.014932378239650889 4.061139677215026e-05 0.0005281248464351763 1.4363343427008793e-06 0.014932378239650889 4.061139677215026e-05 0.01947886315341468 7.923973221914472e-05']
['59866.33357219728 0.03428731296296871 6.79454883902795e-05 0.014994006470312755 4.065260429365429e-05 0.0005303044992226971 1.4377917606430865e-06 0.014994006470312755 4.065260429365429e-05 0.019293306492655957 7.917842906025634e-05']
['59866.33360373524 0.03420404181795969 6.789891346807515e-05 0.015004085508608874 4.066262282793334e-05 0.000530660972281906 1.4381460938104302e-06 0.015004085508608874 4.066262282793334e-05 0.019199956309350816 7.914361215784836e-05']
['59866.33363527321 0.034287637277010015 6.795747801053124e-05 0.01500607837630239 4.0648647126001685e-05 0.0005307314555584284 1.437651804466963e-06 0.01500607837630239 4.0648647126001685e-05 0.019281558900707624 7.918668657499216e-05']
['59866.333666811166 0.0342502133402831 6.791637384913919e-05 0.015080495097589467 4.067472957509102e-05 0.0005333634086787685 1.4385742824004096e-06 0.015080495097589465 4.067472957509102e-05 0.01916971824269364 7.916481202417411e-05']
['59866.33369834913 0.0341745097046209 6.786602570240779e-05 0.014958531224245895 4.0618140385645345e-05 0.0005290498190518211 1.4365728492391113e-06 0.014958531224245895 4.0618140385645345e-05 0.019215978480375005 7.909254562237751e-05']
['59866.3337298871 0.03416602103653977 6.783340293857991e-05 0.015030684929036912 4.0670845240388425e-05 0.0005316017343362397 1.4384369021629561e-06 0.015030684929036912 4.0670845240388425e-05 0.019135336107502857 7.909164435511104e-05']
['59866.333761425056 0.0343346068577023 6.795935537176337e-05 0.015048538924279016 4.06653020951111e-05 0.000532233190246622 1.4382408535026977e-06 0.015048538924279016 4.06653020951111e-05 0.019286067933423287 7.919684827713959e-05']
['59866.33379296302 0.03430580614873584 6.793848236137655e-05 0.015093157857419338 4.069543078819777e-05 0.0005338112621943484 1.4393064380435072e-06 0.015093157857419338 4.069543078819777e-05 0.019212648291316498 7.919441566552574e-05']
['59866.33382450099 0.03428783708474728 6.792523346404525e-05 0.014951132146740006 4.0623555010630886e-05 0.0005287881302164029 1.4367643524238752e-06 0.014951132146740006 4.0623555010630886e-05 0.019336704938007272 7.914613422553755e-05']
['59866.333856038946 0.034224265991896985 6.79040663452543e-05 0.015036306370106537 4.067144351382218e-05 0.0005318005521436909 1.4384580617572456e-06 0.015036306370106537 4.067144351382218e-05 0.01918795962179045 7.915256498508894e-05']
['59866.33388757691 0.03435340105423542 6.79780627555073e-05 0.015070224845453747 4.0673075311579986e-05 0.0005330001728133907 1.4385157747970859e-06 0.015070224845453745 4.0673075311579986e-05 0.019283176208781675 7.921689258796476e-05']
['59866.33391911487 0.03425314651796572 6.793231001339364e-05 0.015032894943648288 4.065520339523106e-05 0.0005316798976139521 1.4378836850572065e-06 0.015032894943648288 4.065520339523106e-05 0.019220251574317428 7.916845525121372e-05']
['59866.333950652835 0.03419398395063218 6.785292100483215e-05 0.01500829259152058 4.06563665502122e-05 0.0005308097674022161 1.437924823249391e-06 0.015008292591520582 4.06563665502122e-05 0.0191856913591116 7.910094202949296e-05']
['59866.3339821908 0.034282710729349186 6.790796870323283e-05 0.01497616862195218 4.0625181646827576e-05 0.0005296736143914284 1.4368218829108341e-06 0.014976168621952179 4.0625181646827576e-05 0.019306542107397007 7.913215273981232e-05']
['59866.33401372876 0.03433465943891478 6.800453675355355e-05 0.01503779882949496 4.067598807047648e-05 0.0005318533370968091 1.4386187925696217e-06 0.015037798829494962 4.067598807047648e-05 0.01929686060941982 7.924110691159582e-05']
['59866.334045266725 0.034282579010168825 6.793199765090469e-05 0.014990685224087443 4.0655412367485214e-05 0.0005301870341662563 1.4378910759388104e-06 0.014990685224087443 4.0655412367485214e-05 0.01929189378608138 7.916829453520386e-05']
['59866.33407680469 0.03419636058369406 6.786935495279388e-05 0.015016577100908708 4.0669351418301095e-05 0.0005311027719844853 1.4383840690142231e-06 0.015016577100908706 4.0669351418301095e-05 0.019179783482785352 7.912171311652444e-05']
['59866.33410834265 0.03412307552682377 6.784186040406724e-05 0.014999008874852247 4.0646042574251216e-05 0.0005304814230915428 1.4375596872923795e-06 0.014999008874852247 4.0646042574251216e-05 0.01912406665197152 7.908614796557478e-05']
['59866.334139880615 0.03432102314999205 6.797977914740569e-05 0.015082866726439341 4.0705731445159084e-05 0.00053344728789091 1.4396707492596152e-06 0.015082866726439341 4.0705731445159084e-05 0.019238156423552713 7.923513706314558e-05']
['59866.33417141857 0.03425213571709143 6.789873624584963e-05 0.015089356729204792 4.069521472010447e-05 0.0005336768247844215 1.4392987961979309e-06 0.015089356729204792 4.069521472010447e-05 0.01916277898788664 7.916021023783895e-05']
['59866.33420295654 0.03407771693830564 6.777818273472035e-05 0.014996394374746239 4.063598709447564e-05 0.0005303889540658572 1.437204047445392e-06 0.014996394374746239 4.063598709447564e-05 0.019081322563559405 7.902635953884966e-05']
['59866.334234494505 0.03418536543973703 6.787731844834761e-05 0.014995715686843398 4.064061954215877e-05 0.0005303649503915119 1.437367886767033e-06 0.0149957156868434 4.064061954215877e-05 0.019189649752893626 7.911378082552299e-05']
['59866.33426603246 0.03426298712314156 6.792490051629464e-05 0.01496286319540305 4.062737110915111e-05 0.0005292030311902639 1.4368993193000573e-06 0.01496286319540305 4.062737110915111e-05 0.019300123927738513 7.914780725572383e-05']
['59866.33429757043 0.03430394121685907 6.796204671750067e-05 0.015043125045827208 4.06813327500091e-05 0.0005320417134650877 1.4388078219400348e-06 0.015043125045827208 4.06813327500091e-05 0.019260816171031862 7.920738998571224e-05']
['59866.334329108395 0.034115077543173195 6.781794560248026e-05 0.015005546971953214 4.064629962887764e-05 0.0005307126609742169 1.4375687787400328e-06 0.015005546971953212 4.064629962887764e-05 0.01910953057121998 7.906576641797302e-05']
['59866.33436064635 0.0343221161897588 6.799027744400866e-05 0.015083079983993214 4.070880977388911e-05 0.0005334548303339879 1.4397796228671364e-06 0.015083079983993214 4.070880977388911e-05 0.019239036205765586 7.924572556371708e-05']
['59866.33439218432 0.034246898635605906 6.791827479385015e-05 0.015015864401540097 4.066615852621731e-05 0.0005310775654006069 1.4382711435569135e-06 0.015015864401540095 4.066615852621731e-05 0.01923103423406581 7.916203951549237e-05']
['59866.33442372228 0.034253392035331974 6.792931771478453e-05 0.014999289099061964 4.06558535248929e-05 0.0005304913339955762 1.4379066786903917e-06 0.014999289099061964 4.06558535248929e-05 0.019254102936270008 7.91662215280841e-05']
['59866.33445526024 0.03422401614195773 6.790492583980854e-05 0.01496621133778063 4.06262321976974e-05 0.0005293214475035011 1.4368590385472568e-06 0.014966211337780628 4.06262321976974e-05 0.019257804804177103 7.913008085356113e-05']
['59866.33448679821 0.034294608825028 6.795119792563008e-05 0.01504843773687903 4.066161229016026e-05 0.000532229611474425 1.4381103533478152e-06 0.01504843773687903 4.066161229016026e-05 0.019246171088148974 7.918795371496517e-05']
['59866.33451833617 0.03421528371032421 6.790390016766337e-05 0.014948085746490754 4.062206169929922e-05 0.0005286803858478907 1.4367115373394285e-06 0.014948085746490754 4.062206169929922e-05 0.019267197963833454 7.912705956044156e-05']
['59866.33454987413 0.03430793178666091 6.796712553872245e-05 0.015078553657327506 4.067488969188275e-05 0.0005332947442755665 1.4385799453734933e-06 0.015078553657327505 4.067488969188275e-05 0.019229378129333403 7.920843897870533e-05']
['59866.3345814121 0.03415365648112409 6.782816192833682e-05 0.014990365275483477 4.064271624008832e-05 0.0005301757182991771 1.437442042286957e-06 0.014990365275483478 4.064271624008832e-05 0.01916329120564061 7.907268766109458e-05']
['59866.33461295006 0.03424002375599458 6.790257704042276e-05 0.01503945786120885 4.065085933996813e-05 0.0005319120133408117 1.4377300455309487e-06 0.01503945786120885 4.065085933996813e-05 0.01920056589478573 7.914071223970897e-05']
['59866.33464448802 0.03428876970647777 6.794187704648922e-05 0.015073162744994862 4.068273950905521e-05 0.0005331040797543409 1.4388575758635743e-06 0.01507316274499486 4.068273950905521e-05 0.01921560696148291 7.919080723519555e-05']
['59866.33467602598 0.034248905232518084 6.791856049346903e-05 0.015040452023057121 4.0673280217697945e-05 0.000531947174623564 1.4385230218685398e-06 0.01504045202305712 4.0673280217697945e-05 0.019208453209460963 7.916594332901232e-05']
['59866.33470756395 0.0342500282540659 6.794631062037911e-05 0.015088630377425173 4.069462142315279e-05 0.0005336511353452771 1.4392778126106905e-06 0.015088630377425173 4.069462142315279e-05 0.01916139787664073 7.92007155251439e-05']
['59866.33473910191 0.03431318097189301 6.796225829176178e-05 0.015089359511606665 4.068745100511623e-05 0.0005336769231917575 1.4390242109496784e-06 0.015089359511606667 4.068745100511623e-05 0.019223821460286342 7.921071405693725e-05']
['59866.33477063987 0.034284454823622586 6.796313181204756e-05 0.01509778667362853 4.071362726464974e-05 0.0005339749730788721 1.4399500067488818e-06 0.01509778667362853 4.071362726464974e-05 0.019186668149994056 7.922491231138463e-05']
['59866.33480217784 0.03430564352379355 6.795477491593638e-05 0.015091227568713938 4.0698671850219944e-05 0.0005337429921967797 1.439421067163884e-06 0.015091227568713938 4.0698671850219944e-05 0.01921441595507961 7.921005822651226e-05']
['59866.3348337158 0.03428336282099867 6.795087391548948e-05 0.015011623841991905 4.0651763584411115e-05 0.0005309275862864802 1.43776202663603e-06 0.015011623841991905 4.0651763584411115e-05 0.019271738979006765 7.918261897917751e-05']
['59866.33486525376 0.034330861304383835 6.797224164172309e-05 0.015098045826764356 4.0700167476279494e-05 0.0005339841387461132 1.4394739641150827e-06 0.015098045826764358 4.0700167476279494e-05 0.01923281547761948 7.922581186960468e-05']
['59866.334896791726 0.03428205232169408 6.795726456159893e-05 0.01501665464613721 4.066245695551571e-05 0.0005311055145859142 1.4381402272737214e-06 0.015016654646137212 4.066245695551571e-05 0.01926539767555687 7.919359325320653e-05']
['59866.334928329685 0.034296698393546064 6.79669547790983e-05 0.014947549200529677 4.061576942691582e-05 0.000528661409416357 1.436488993727629e-06 0.014947549200529677 4.061576942691582e-05 0.019349149193016387 7.917794938039494e-05']
['59866.33495986765 0.03425793171745766 6.792035592508041e-05 0.01501002156215202 4.063066162855537e-05 0.0005308709172294282 1.437015697617508e-06 0.01501002156215202 4.063066162855537e-05 0.019247910155305643 7.914559629798595e-05']
['59866.334991405616 0.034175083505120864 6.785017285190062e-05 0.015040044703321273 4.066701183989698e-05 0.0005319327686348132 1.4383013233547195e-06 0.015040044703321273 4.066701183989698e-05 0.019135038801799592 7.910405683666997e-05']
['59866.335022943575 0.0342473777849762 6.791736761598958e-05 0.015075367043374872 4.068863922125451e-05 0.000533182040861725 1.4390662354989826e-06 0.015075367043374874 4.068863922125451e-05 0.019172010741601325 7.917281216151716e-05']
['59866.33505448154 0.034353817579158175 6.798832741372306e-05 0.015015213926294261 4.066548198454379e-05 0.0005310545595448884 1.4382472157899028e-06 0.015015213926294263 4.066548198454379e-05 0.01933860365286391 7.92218031197906e-05']
['59866.3350860195 0.03425179701270482 6.792967755055495e-05 0.014988111744394628 4.06491128006188e-05 0.00053009601594091 1.4376682743374487e-06 0.014988111744394628 4.06491128006188e-05 0.01926368526831019 7.916306881115587e-05']
['59866.335117557464 0.03442038753606922 6.805181288558639e-05 0.01510250440769428 4.069048122885711e-05 0.0005341418287892626 1.439131383191242e-06 0.01510250440769428 4.069048122885711e-05 0.01931788312837494 7.92891196801354e-05']
['59866.33514909543 0.03422097593679538 6.790586913632643e-05 0.015001992808373346 4.064993462392831e-05 0.0005305869581514851 1.4376973403912391e-06 0.015001992808373346 4.064993462392831e-05 0.019218983128422032 7.914306190746941e-05']
['59866.33518063339 0.03421999916661094 6.788150161808966e-05 0.015032548433279802 4.066534567308013e-05 0.0005316676423166239 1.4382423947580713e-06 0.015032548433279804 4.066534567308013e-05 0.019187450733331137 7.913007393297321e-05']
['59866.335212171354 0.03418132611765452 6.785282517270927e-05 0.01498363553785005 4.0637834961086366e-05 0.0005299377025191612 1.4372694023576747e-06 0.01498363553785005 4.0637834961086366e-05 0.01919769057980447 7.909133653089155e-05']
['59866.33524370932 0.03426277917790033 6.791300839284546e-05 0.015019964423065251 4.0671036604309025e-05 0.0005312225739989428 1.4384436702771546e-06 0.015019964423065251 4.0671036604309025e-05 0.019242814754835073 7.916002733347016e-05']
['59866.33527524728 0.0342747880878074 6.792264823233667e-05 0.014945696975798485 4.0619121454664135e-05 0.0005285959003670934 1.4366075474577456e-06 0.014945696975798485 4.0619121454664135e-05 0.019329091112008916 7.914163992894324e-05']
['59866.335306785244 0.03431274674092439 6.793278127952376e-05 0.015056382993356833 4.067160475020316e-05 0.0005325106174394416 1.4384637643276988e-06 0.015056382993356831 4.067160475020316e-05 0.01925636374756756 7.917728339194494e-05']
['59866.3353383232 0.034370203375376024 6.801955323826621e-05 0.01503060774903458 4.067671772919206e-05 0.0005315990046520444 1.4386445989677005e-06 0.01503060774903458 4.067671772919206e-05 0.019339595626341445 7.92543688887477e-05']
['59866.33536986117 0.03427098447081453 6.793021354416749e-05 0.015036279769669635 4.0689057957419906e-05 0.0005317996113456862 1.4390810452613326e-06 0.015036279769669635 4.0689057957419906e-05 0.019234704701144897 7.918404731774244e-05']
['59866.335401399134 0.03427167030200454 6.793523864002295e-05 0.015018906024759807 4.06626995738898e-05 0.0005311851408162602 1.438148808143393e-06 0.015018906024759806 4.06626995738898e-05 0.019252764277244733 7.917481787609798e-05']
['59866.33543293709 0.034279244007862184 6.790004816115812e-05 0.015086965756641727 4.068921685313559e-05 0.0005335922614283751 1.4390866650476853e-06 0.015086965756641727 4.068921685313559e-05 0.019192278251220454 7.915825230769743e-05']
['59866.33546447506 0.03439523055941272 6.801647309520965e-05 0.015110757142721582 4.0721267490355704e-05 0.000534433709583401 1.4402202244572022e-06 0.015110757142721582 4.0721267490355704e-05 0.019284473416691143 7.927460020922514e-05']
['59866.335496013024 0.03421384317149624 6.786851979512123e-05 0.014953338229199399 4.0611445590692383e-05 0.0005288661544226874 1.4363360693036111e-06 0.014953338229199399 4.0611445590692383e-05 0.019260504942296842 7.909124788588514e-05']
['59866.33552755098 0.034414638743204086 6.804036751847823e-05 0.01508071919658406 4.069147577173339e-05 0.0005333713345593755 1.4391665579501036e-06 0.01508071919658406 4.069147577173339e-05 0.019333919546620025 7.927980709191435e-05']
['59866.33555908895 0.03435107040767623 6.800167509014804e-05 0.015059208171634562 4.067450248050055e-05 0.0005326105376812231 1.4385662505722714e-06 0.015059208171634562 4.067450248050055e-05 0.01929186223604167 7.923788845686327e-05']
['59866.335590626906 0.0342642419550897 6.791258327016265e-05 0.014939106308792718 4.0605917807865e-05 0.0005283628032043732 1.4361405639788742e-06 0.014939106308792718 4.0605917807865e-05 0.019325135646296985 7.912622528243e-05']
['59866.33562216487 0.03421842204924697 6.791252393085627e-05 0.01506057527962002 4.068230627418722e-05 0.0005326588892353622 1.4388422533145164e-06 0.01506057527962002 4.068230627418722e-05 0.01915784676962695 7.916540248395065e-05']
['59866.33565370284 0.034410976262442876 6.804320836471085e-05 0.014982833044699202 4.0648913554771315e-05 0.0005299093201298823 1.4376612274571116e-06 0.014982833044699202 4.0648913554771315e-05 0.019428143217743672 7.926040863979145e-05']
['59866.335685240796 0.03434697277281861 6.797423096215998e-05 0.014978534511852387 4.06362157046021e-05 0.000529757290629746 1.4372121328746512e-06 0.014978534511852387 4.06362157046021e-05 0.019368438260966223 7.919468480705015e-05']
['59866.33571677876 0.034271899722369326 6.793252340562143e-05 0.015043873618357741 4.066310740421578e-05 0.0005320681888025316 1.4381632321905755e-06 0.015043873618357741 4.066310740421578e-05 0.019228026104011586 7.917269756691438e-05']
['59866.33574831673 0.034283800089194745 6.794633014561038e-05 0.015039816663775537 4.067417320372438e-05 0.0005319247033857188 1.4385546047885885e-06 0.015039816663775537 4.067417320372438e-05 0.019243983425419206 7.919022759193746e-05']
['59866.335779854686 0.03440950878508536 6.803313822408045e-05 0.015107838941908284 4.0710060177181985e-05 0.0005343304993424297 1.4398238468371185e-06 0.015107838941908286 4.0710060177181985e-05 0.019301669843177077 7.928314383427674e-05']
['59866.33581139265 0.034170096752384305 6.784793882826661e-05 0.014974158363454894 4.0624376914950046e-05 0.0005296025160410428 1.4367934213427958e-06 0.014974158363454896 4.0624376914950046e-05 0.01919593838892941 7.90802301651439e-05']
['59866.33584293061 0.03428961365365679 6.792684078087148e-05 0.015063724509944159 4.06808405694141e-05 0.0005327702704738114 1.4387904146123485e-06 0.015063724509944157 4.06808405694141e-05 0.019225889143712635 7.917693153882609e-05']
['59866.335874468576 0.03422824262358493 6.790882507633557e-05 0.015037238157682853 4.067221002956942e-05 0.0005318335073878426 1.4384851717061635e-06 0.015037238157682853 4.067221002956942e-05 0.01919100446590208 7.915704132885305e-05']
['59866.33590600654 0.034180271616597174 6.785472604516372e-05 0.015036973468157699 4.0677796163461354e-05 0.0005318241459108841 1.4386827407776467e-06 0.015036973468157699 4.0677796163461354e-05 0.019143298148439476 7.911350673165948e-05']
['59866.3359375445 0.03433652714092597 6.800486031981743e-05 0.015016751025717498 4.066392804398009e-05 0.0005311089233162732 1.4381922563850175e-06 0.0150167510257175 4.066392804398009e-05 0.01931977611520847 7.923519464911959e-05']
['59866.335969082465 0.03417617810102607 6.787045886443679e-05 0.015065264166064102 4.0686217755495753e-05 0.000532824724669845 1.438980593666753e-06 0.015065264166064102 4.0686217755495753e-05 0.01911091393496197 7.913133072125619e-05']
['59866.33600062043 0.034313152726373336 6.794938211645058e-05 0.01496769700485906 4.06344708643097e-05 0.0005293739922277947 1.4371504217729976e-06 0.01496769700485906 4.06344708643097e-05 0.019345455721514276 7.917246208392061e-05']
['59866.33603215839 0.03424032594318983 6.790604832955634e-05 0.015010053216922465 4.065206026810556e-05 0.0005308720367879146 1.4377725196752534e-06 0.015010053216922465 4.065206026810556e-05 0.019230272726267362 7.91443074628727e-05']
['59866.336063696355 0.03433394918294062 6.796936652347784e-05 0.015061680324019451 4.0679079414922495e-05 0.0005326979721861412 1.438728126513929e-06 0.015061680324019451 4.0679079414922495e-05 0.019272268858921165 7.921251345367373e-05']
['59866.336095234314 0.034247027721156224 6.793866521997803e-05 0.014987831507802496 4.062899486576658e-05 0.0005300861045989383 1.4369567479426641e-06 0.014987831507802496 4.062899486576658e-05 0.01925919621335373 7.916045386223314e-05']
['59866.33612677228 0.0341318927224527 6.781024618012769e-05 0.015146115800987367 4.0730222585195905e-05 0.0005356842663043114 1.4405369461482411e-06 0.015146115800987368 4.0730222585195905e-05 0.01898577692146533 7.910234205666179e-05']
['59866.336158310245 0.034269615972376724 6.793540691435741e-05 0.014997193708267275 4.064349641992264e-05 0.0005304172247060909 1.4374696355040978e-06 0.014997193708267275 4.064349641992264e-05 0.019272422264109447 7.916510161589882e-05']
['59866.3361898482 0.03433727459460995 6.798425057482766e-05 0.015086068177431909 4.068202233680925e-05 0.0005335605160576953 1.4388322110840203e-06 0.015086068177431909 4.068202233680925e-05 0.019251206417178042 7.922679639890535e-05']
['59866.33622138617 0.03422238879413464 6.790683056339205e-05 0.014964157658600747 4.063125627392508e-05 0.0005292488134606115 1.4370367288952804e-06 0.014964157658600749 4.063125627392508e-05 0.01925823113553389 7.913429486362163e-05']
['59866.336252924135 0.03427647310347296 6.793307872226036e-05 0.015015591512460204 4.065979871033933e-05 0.0005310679139237224 1.4380462110826612e-06 0.015015591512460204 4.065979871033933e-05 0.019260881591012757 7.917147476111668e-05']
['59866.33628446209 0.034209126747643 6.791371014797409e-05 0.015073916580147671 4.0695736416024964e-05 0.0005331307412189734 1.4393172474167168e-06 0.015073916580147671 4.0695736416024964e-05 0.01913521016749533 7.917332245463505e-05']
['59866.33631600006 0.034264193771000824 6.788493865099484e-05 0.015110263556147323 4.0703551323367954e-05 0.0005344162525293705 1.4395936432241485e-06 0.015110263556147321 4.0703551323367954e-05 0.019153930214853503 7.915266253249717e-05']
['59866.33634753802 0.03427185863372361 6.792573004412513e-05 0.015053105855079116 4.065864223097376e-05 0.0005323947123825318 1.4380053089920804e-06 0.015053105855079116 4.065864223097376e-05 0.019218752778644495 7.916457534840748e-05']
['59866.33637907598 0.03422575330641145 6.790260624797587e-05 0.014961425812358988 4.063143392592421e-05 0.0005291521941643575 1.4370430120494607e-06 0.014961425812358988 4.063143392592421e-05 0.019264327494052463 7.913076113714815e-05']
['59866.33641061395 0.034229039507209666 6.790587986305246e-05 0.015099288997240914 4.0703453595495935e-05 0.0005340281069075465 1.439590186807724e-06 0.015099288997240914 4.0703453595495935e-05 0.019129750509968752 7.917057316058792e-05']
['59866.33644215191 0.034293163718328065 6.796722225418928e-05 0.015043508380297995 4.067734253378731e-05 0.0005320552711486174 1.4386666969098783e-06 0.015043508380297995 4.067734253378731e-05 0.01924965533803007 7.920978157122657e-05']
['59866.33647368987 0.0342512716166449 6.790742742201205e-05 0.01510909877596121 4.071741897118414e-05 0.0005343750568573182 1.4400841109350381e-06 0.015109098775961212 4.071741897118414e-05 0.01914217284068369 7.91790812446746e-05']
['59866.33650522784 0.03427082742377061 6.791393427769675e-05 0.014978172262169513 4.0643874157282764e-05 0.0005297444786680432 1.437482995230332e-06 0.014978172262169515 4.0643874157282764e-05 0.0192926551616011 7.914686965122722e-05']
['59866.3365367658 0.03437009081276986 6.802402042217264e-05 0.014955085932282145 4.061693824414735e-05 0.0005289279667748377 1.4365303321809553e-06 0.014955085932282147 4.061693824414735e-05 0.01941500488048771 7.922753957258196e-05']
['59866.33656830376 0.03428199324099161 6.794520730908922e-05 0.015055080443454286 4.0671370980135464e-05 0.0005324645491604163 1.4384554964028497e-06 0.015055080443454286 4.0671370980135464e-05 0.019226912797537327 7.918782490811903e-05']
['59866.33659984172 0.03437139165362214 6.80184353236948e-05 0.015043958683182685 4.067276489872672e-05 0.0005320711973552812 1.4385047961881977e-06 0.015043958683182687 4.067276489872672e-05 0.01932743297043945 7.925138073491685e-05']
['59866.33663137969 0.03427402987273989 6.791798144738545e-05 0.014999017357699977 4.065076287690571e-05 0.000530481723110909 1.4377266338480133e-06 0.014999017357699979 4.065076287690571e-05 0.019275012515039915 7.915388004615951e-05']
['59866.33666291765 0.03430854023555926 6.797454231378512e-05 0.01502381338052825 4.066622870357354e-05 0.0005313587030224955 1.4382736255731662e-06 0.015023813380528252 4.066622870357354e-05 0.019284726855031006 7.921035639195113e-05']
['59866.33669445561 0.03428656191425654 6.796560145390776e-05 0.014980324284705878 4.063696313013757e-05 0.0005298205908956671 1.4372385676454431e-06 0.014980324284705878 4.063696313013757e-05 0.01930623762955066 7.91876616237125e-05']
['59866.33672599358 0.03431545479157769 6.7946511841008e-05 0.015083192332867378 4.068380310877915e-05 0.0005334588038625822 1.4388951930088044e-06 0.015083192332867378 4.068380310877915e-05 0.01923226245871031 7.919533008172987e-05']
['59866.33675753154 0.034341975537447576 6.798151681718391e-05 0.01504142901077734 4.066026321019939e-05 0.0005319817284957891 1.4380626394046155e-06 0.01504142901077734 4.066026321019939e-05 0.019300546526670237 7.921327939864473e-05']
['59866.3367890695 0.03426741754583038 6.790435865773488e-05 0.01499683770128764 4.0645275320650645e-05 0.00053040463353485 1.4375325512472381e-06 0.01499683770128764 4.0645275320650645e-05 0.019270579844542744 7.913937282168584e-05']
['59866.33682060747 0.034339103791328214 6.797029437177177e-05 0.014919742184355399 4.0612592043961616e-05 0.0005276779373992964 1.4363766167935716e-06 0.014919742184355397 4.0612592043961616e-05 0.019419361606972815 7.91791863403165e-05']
['59866.336852145425 0.034262280778260865 6.79336828116712e-05 0.015050808382874948 4.068358440988992e-05 0.0005323134559252186 1.4388874581178557e-06 0.015050808382874946 4.068358440988992e-05 0.01921147239538592 7.918421118375423e-05']
['59866.33688368339 0.034326239466874686 6.79796984872958e-05 0.014994222257993328 4.063623178126417e-05 0.0005303121311507019 1.4372127014702596e-06 0.014994222257993326 4.063623178126417e-05 0.01933201720888136 7.919938598123265e-05']
['59866.336915221356 0.03416399537619586 6.785330179168522e-05 0.014980163093208522 4.064108165873491e-05 0.0005298148899126473 1.4373842307975613e-06 0.014980163093208522 4.064108165873491e-05 0.01918383228298734 7.90934136475691e-05']
['59866.336946759315 0.034315367458296525 6.798255731426944e-05 0.015016268593922967 4.066920532610201e-05 0.0005310918607818722 1.438378902059638e-06 0.015016268593922967 4.066920532610201e-05 0.01929909886437356 7.921876268185822e-05']
['59866.33697829728 0.034257352931134584 6.794806920209342e-05 0.014974590196725653 4.063726989308221e-05 0.0005296177890187389 1.4372494171652203e-06 0.014974590196725653 4.063726989308221e-05 0.01928276273440893 7.917277191469099e-05']
['59866.337009835246 0.03441096490234219 6.808966990357592e-05 0.014953718409620398 4.0623139287559656e-05 0.000528879600554525 1.4367496492279323e-06 0.014953718409620398 4.0623139287559656e-05 0.01945724649272179 7.928708970036929e-05']
['59866.337041373205 0.034296114047948516 6.79352950560124e-05 0.015096862071003723 4.0697457798471515e-05 0.000533942271950398 1.439378128866788e-06 0.015096862071003725 4.0697457798471515e-05 0.01919925197694479 7.919272305967154e-05']
['59866.33707291117 0.034315431150139776 6.794731048650111e-05 0.015066499797697527 4.0680357364568774e-05 0.000532868426199245 1.4387733247368686e-06 0.015066499797697527 4.0680357364568774e-05 0.01924893135244225 7.919424523068586e-05']
['59866.33710444913 0.03429964412286593 6.796163888097548e-05 0.015022514454923976 4.065906142654982e-05 0.0005313127629268001 1.4380201350027585e-06 0.015022514454923976 4.065906142654982e-05 0.019277129667941956 7.919560363729838e-05']
['59866.337135987094 0.03418205017214266 6.785112380995414e-05 0.015005647724152279 4.065010133191111e-05 0.0005307162243543299 1.4377032364800205e-06 0.015005647724152277 4.065010133191111e-05 0.019176402447990383 7.909618031591896e-05']
['59866.33716752506 0.034371432975931086 6.80089339624126e-05 0.015091590790792683 4.069761093255753e-05 0.0005337558385499514 1.4393835448771758e-06 0.015091590790792683 4.069761093255753e-05 0.019279842185138403 7.925598169426472e-05']
['59866.33719906302 0.03426013743840434 6.792926208219546e-05 0.015073197942132173 4.0697971497240056e-05 0.0005331053245984267 1.4393962972441822e-06 0.015073197942132173 4.0697971497240056e-05 0.019186939496272162 7.918781175800832e-05']
['59866.337230600984 0.034288208081584504 6.793241965715543e-05 0.015096290059823365 4.0679304812480406e-05 0.0005339220411933184 1.4387360983218185e-06 0.015096290059823365 4.0679304812480406e-05 0.019191918021761137 7.918092876761784e-05']
['59866.33726213895 0.034277878323804606 6.793132442705949e-05 0.01502987401904007 4.066591250963072e-05 0.0005315730542619286 1.4382624425000605e-06 0.015029874019040072 4.066591250963072e-05 0.019248004304764532 7.917310956792938e-05']
['59866.33729367691 0.034268622903246684 6.796414419968158e-05 0.015052339109586848 4.068333527924413e-05 0.0005323675943080457 1.4388786469236883e-06 0.015052339109586848 4.068333527924413e-05 0.019216283793659836 7.921021819335243e-05']
['59866.337325214874 0.034286153532238364 6.793415160961363e-05 0.015006395474467462 4.065715788249279e-05 0.0005307426706118544 1.437952810903632e-06 0.015006395474467462 4.065715788249279e-05 0.0192797580577709 7.917103916205671e-05']
['59866.33735675283 0.03421713228255988 6.788687699010232e-05 0.014995358732069171 4.0650662088087947e-05 0.0005303523256988944 1.4377230691727788e-06 0.014995358732069171 4.0650662088087947e-05 0.019221773550490713 7.912714070196897e-05']
['59866.3373882908 0.03421970887729321 6.789996956059104e-05 0.015018759624585468 4.066073807333442e-05 0.000531179962969279 1.4380794342524448e-06 0.015018759624585466 4.066073807333442e-05 0.019200949252707745 7.914354987614276e-05']
['59866.337419828764 0.034214533128419246 6.787694226237682e-05 0.014984503114235702 4.0649123878128306e-05 0.0005299683867570026 1.4376686661242033e-06 0.014984503114235704 4.0649123878128306e-05 0.019230030014183542 7.91178270868801e-05']
['59866.33745136672 0.034240891935882915 6.78990881176819e-05 0.015069240653663232 4.0687426155205314e-05 0.0005329653641492994 1.4390233320638657e-06 0.01506924065366323 4.0687426155205314e-05 0.019171651282219683 7.915650835116476e-05']
['59866.33748290469 0.03419064475086826 6.788024701162468e-05 0.014916232313418392 4.0593612613367996e-05 0.0005275538011083543 1.4357053567500062e-06 0.01491623231341839 4.0593612613367996e-05 0.019274412437449873 7.909215712928413e-05']
['59866.33751444265 0.034250858738465326 6.793755546660843e-05 0.014991933213343796 4.065030468016043e-05 0.0005302311727571617 1.437710428453142e-06 0.014991933213343796 4.065030468016043e-05 0.01925892552512153 7.917044090674479e-05']
['59866.33754598061 0.0342559870192408 6.795380620757332e-05 0.014998339145270757 4.0648801076919156e-05 0.000530457736253003 1.4376572493668538e-06 0.014998339145270757 4.0648801076919156e-05 0.01925764787397004 7.918361451138345e-05']
['59866.33757751858 0.03423429651822251 6.791144990248843e-05 0.01497322999831493 4.064711461697118e-05 0.0005295696818408161 1.4375976030475102e-06 0.014973229998314928 4.064711461697118e-05 0.019261066519907583 7.914640203157304e-05']
['59866.337609056536 0.03426007985746952 6.793061048838818e-05 0.015007374280231436 4.06449406841484e-05 0.000530777288784224 1.4375207159020224e-06 0.015007374280231437 4.06449406841484e-05 0.01925270557723808 7.916172714477026e-05']
['59866.3376405945 0.03431188690780936 6.795860969862118e-05 0.015076839686759205 4.0677916932070504e-05 0.0005332341249670645 1.4386870120934504e-06 0.015076839686759205 4.0677916932070504e-05 0.019235047221050156 7.920268655861338e-05']
['59866.33767213247 0.034148007197869555 6.787214633039438e-05 0.015017932774040703 4.067005088240597e-05 0.0005311507191134129 1.4384088074964023e-06 0.015017932774040703 4.067005088240597e-05 0.01913007442382885 7.91244670520564e-05']
['59866.337703670426 0.03413652908209269 6.783901205519954e-05 0.015043626665462238 4.068338094174531e-05 0.0005320594546305248 1.4388802619043053e-06 0.015043626665462238 4.068338094174531e-05 0.019092902416630454 7.910290159960426e-05']
['59866.33773520839 0.03426916130902918 6.793440928317996e-05 0.015034239927228039 4.066800270103176e-05 0.0005317274666773065 1.4383363678986123e-06 0.015034239927228037 4.066800270103176e-05 0.01923492138180114 7.917682999682251e-05']
['59866.33776674636 0.03440635429422539 6.803467884766102e-05 0.015033548372675943 4.0687294163897897e-05 0.0005317030079383323 1.4390186638263056e-06 0.015033548372675941 4.0687294163897897e-05 0.019372805921549448 7.927277863355071e-05']
['59866.337798284316 0.034276248141336195 6.791042191794774e-05 0.015009210262996198 4.0657682136919264e-05 0.0005308422233914336 1.4379713526110566e-06 0.015009210262996198 4.0657682136919264e-05 0.01926703787834 7.915094770007773e-05']
['59866.33782982228 0.03427805413638539 6.793637716364636e-05 0.015040908154258575 4.066792322656162e-05 0.0005319633069647662 1.4383335570642186e-06 0.015040908154258573 4.066792322656162e-05 0.019237145982126818 7.917847764186125e-05']
['59866.33786136024 0.034174842496538994 6.785133245941377e-05 0.01499987343218743 4.0654746938250936e-05 0.0005305120005523163 1.437867541193941e-06 0.014999873432187432 4.0654746938250936e-05 0.019174969064351562 7.909874692516387e-05']
['59866.337892898206 0.034210273457422044 6.786545680493108e-05 0.015028009908814349 4.0676185156116095e-05 0.000531507124849286 1.4386257630482346e-06 0.01502800990881435 4.0676185156116095e-05 0.019182263548607692 7.912188234740505e-05']
['59866.33792443617 0.034351276892393874 6.799846364132861e-05 0.015060983384969638 4.068118422608718e-05 0.0005326733230095165 1.4388025689808477e-06 0.01506098338496964 4.068118422608718e-05 0.019290293507424235 7.923856262968135e-05']
['59866.33795597413 0.03428311130266622 6.794419208189619e-05 0.015115069413938767 4.071302762780111e-05 0.0005345862249789939 1.4399287989336552e-06 0.015115069413938767 4.071302762780111e-05 0.01916804188872745 7.920835723762803e-05']
['59866.337987512095 0.03423561867454808 6.792312568679588e-05 0.015037133053806653 4.0664367144580216e-05 0.0005318297900986347 1.4382077863919117e-06 0.015037133053806651 4.0664367144580216e-05 0.019198485620741428 7.916528126858064e-05']
['59866.33801905006 0.034265480446110774 6.793571285701771e-05 0.015018891092111304 4.0659293928266564e-05 0.0005311846126818552 1.438028358068869e-06 0.015018891092111304 4.0659293928266564e-05 0.01924658935399947 7.917347576137059e-05']
['59866.33805058802 0.03430600836249634 6.795282671562592e-05 0.014982359406442713 4.062784338270213e-05 0.0005298925686032695 1.4369160225600877e-06 0.014982359406442713 4.062784338270213e-05 0.019323648956053624 7.917201725719294e-05']
['59866.338082125985 0.034395981008587435 6.804727378541702e-05 0.015028437909221 4.065978692844616e-05 0.0005315222622671446 1.4380457943834308e-06 0.015028437909221 4.065978692844616e-05 0.019367543099366436 7.92694754788635e-05']
['59866.338113663944 0.034260350099623624 6.791120972118183e-05 0.015106973955787237 4.068541307637336e-05 0.0005342999067164583 1.4389521339645459e-06 0.015106973955787235 4.068541307637336e-05 0.019153376143836387 7.916587170611763e-05']
['59866.33814520191 0.03429110030227729 6.79512496896043e-05 0.015008491161931899 4.0654663713396025e-05 0.0005308167903938857 1.4378645977168192e-06 0.015008491161931899 4.0654663713396025e-05 0.019282609140345394 7.918443038898662e-05']
['59866.338176739875 0.034198167300567316 6.788015070735416e-05 0.01504360097389487 4.068420683524743e-05 0.0005320585459772043 1.438909471911712e-06 0.01504360097389487 4.068420683524743e-05 0.019154566326672444 7.913860970390058e-05']
['59866.33820827783 0.034199722430891415 6.787602578746706e-05 0.01507879890992226 4.0686382293081885e-05 0.0005333034183117358 1.4389864129934546e-06 0.015078798909922262 4.0686382293081885e-05 0.019120923520969155 7.91361900826651e-05']
['59866.3382398158 0.03431263613185676 6.795952991578377e-05 0.015059717173437423 4.06808090460471e-05 0.0005326285399374382 1.4387892997013083e-06 0.015059717173437423 4.06808090460471e-05 0.019252918958419338 7.92049615302934e-05']
['59866.338271353765 0.03424999824300333 6.793460110096809e-05 0.015003089565219072 4.065295291199201e-05 0.0005306257479900111 1.4378040904945756e-06 0.015003089565219072 4.065295291199201e-05 0.01924690867778426 7.916926554675302e-05']
['59866.33830289172 0.034208794577908604 6.79022823745029e-05 0.015054534402742483 4.069235094661837e-05 0.000532445236920769 1.4391975109298844e-06 0.015054534402742483 4.069235094661837e-05 0.01915426017516612 7.916177977552981e-05']
['59866.33833442969 0.03426629933474649 6.791131559495304e-05 0.015086406822926843 4.070039271955633e-05 0.000533572493192023 1.4394819304663954e-06 0.015086406822926843 4.070039271955633e-05 0.019179892511819646 7.917366199288389e-05']
['59866.33836596765 0.03425745726033836 6.790557329563591e-05 0.015003679030818187 4.066014757905355e-05 0.0005306465960708738 1.4380585497894075e-06 0.015003679030818189 4.066014757905355e-05 0.019253778229520173 7.914805421335003e-05']
['59866.33839750561 0.03425370354608907 6.79252555826678e-05 0.015079491691843043 4.0681007884335456e-05 0.0005333279204599974 1.43879633216719e-06 0.015079491691843043 4.0681007884335456e-05 0.01917421185424603 7.91756575498815e-05']
['59866.33842904358 0.034191549560707926 6.787303682788675e-05 0.014975774958898957 4.064448630757796e-05 0.0005296596914090211 1.4375046456181977e-06 0.014975774958898957 4.064448630757796e-05 0.01921577460180897 7.911209386336936e-05']
['59866.33846058154 0.03425000366022175 6.792674770148781e-05 0.015027313086507855 4.065840073593225e-05 0.0005314824798016115 1.4379967678521717e-06 0.015027313086507855 4.065840073593225e-05 0.019222690573713896 7.916532450325228e-05']
['59866.3384921195 0.03428983606200115 6.798418446300377e-05 0.014984236859745658 4.063336666160818e-05 0.0005299589699307335 1.4371113685911927e-06 0.014984236859745656 4.063336666160818e-05 0.019305599202255497 7.920176654189233e-05']
['59866.33852365747 0.03430757063895925 6.797273787601168e-05 0.015105873191910457 4.070300555855325e-05 0.0005342609751581991 1.439574340742365e-06 0.015105873191910457 4.070300555855325e-05 0.01920169744704879 7.92276956364415e-05']
['59866.33855519543 0.03425864376280278 6.793422910198137e-05 0.015059011555609124 4.069243812760006e-05 0.0005326035838118143 1.4392005943263687e-06 0.015059011555609124 4.069243812760006e-05 0.019199632207193652 7.918922909366558e-05']
['59866.33858673339 0.03428836481566902 6.795248978441076e-05 0.015023030465623524 4.065567463452078e-05 0.0005313310130720271 1.4379003517377262e-06 0.015023030465623524 4.065567463452078e-05 0.019265334350045495 7.918601358755512e-05']
['59866.33861827135 0.0342487154693412 6.791351079209571e-05 0.01500574138855726 4.0649820712866885e-05 0.0005307195370550065 1.4376933116115728e-06 0.01500574138855726 4.0649820712866885e-05 0.019242974080783938 7.914956015099718e-05']
['59866.33864980932 0.034193978110462736 6.792242511569021e-05 0.014946970347588311 4.061419481483347e-05 0.0005286409366814811 1.436433303217327e-06 0.014946970347588313 4.061419481483347e-05 0.019247007762874423 7.913891997022572e-05']
['59866.33868134728 0.03429683527706151 6.798364447654624e-05 0.014984003650779757 4.0652046643282223e-05 0.000529950721850801 1.4377720377957016e-06 0.014984003650779757 4.0652046643282223e-05 0.01931283162628175 7.921088821999808e-05']
['59866.33871288524 0.034148837165184256 6.781477710186116e-05 0.015074830033698581 4.068158659741275e-05 0.0005331630480296206 1.4388167999553864e-06 0.015074830033698581 4.068158659741275e-05 0.019074007131485674 7.908119549841104e-05']
['59866.33874442321 0.034276171036745254 6.792272287876801e-05 0.015050496107074448 4.066733820220975e-05 0.0005323024114280503 1.4383128660603453e-06 0.015050496107074448 4.066733820220975e-05 0.019225674929670804 7.916646183655566e-05']
['59866.33877596117 0.034230101669550615 6.790093770061605e-05 0.015036103456032334 4.067099190178673e-05 0.0005317933755263726 1.4384420892488451e-06 0.015036103456032332 4.067099190178673e-05 0.019193998213518283 7.914964891203336e-05']
['59866.33880749913 0.03418132396583517 6.78588191050648e-05 0.015001463859987177 4.0648382613666e-05 0.0005305682504291964 1.4376424492568e-06 0.015001463859987177 4.0648382613666e-05 0.01917986010584799 7.910189845661665e-05']
['59866.3388390371 0.0341628508404537 6.787524769573283e-05 0.015054671432185088 4.06659443926492e-05 0.0005324500833459112 1.4382635701311697e-06 0.015054671432185088 4.06659443926492e-05 0.019108179408268613 7.912501679685839e-05']
['59866.338870575055 0.0343428639508446 6.796089636255111e-05 0.01513817810661322 4.070873537455858e-05 0.0005354035277940007 1.4397769915290884e-06 0.015138178106613222 4.070873537455858e-05 0.01920468584423138 7.922048074959689e-05']
['59866.33890211302 0.03426314577885926 6.791792010400824e-05 0.015061915516673866 4.068254937656764e-05 0.0005327062904247033 1.43885085130241e-06 0.015061915516673867 4.068254937656764e-05 0.01920123026218539 7.917015659344947e-05']
['59866.338933650986 0.03430052776369137 6.796306543637642e-05 0.01497376440387435 4.063531369161736e-05 0.0005295885825711268 1.4371802306912615e-06 0.01497376440387435 4.063531369161736e-05 0.01932676335981702 7.91846385501969e-05']
['59866.338965188945 0.034334847353764346 6.797471950582814e-05 0.015042559502633118 4.0668078499192455e-05 0.0005320217114662274 1.4383390487101573e-06 0.015042559502633118 4.0668078499192455e-05 0.019292287851131226 7.921145814029996e-05']
['59866.33899672691 0.034172651024193146 6.788452543089079e-05 0.014994620276797991 4.063775781112093e-05 0.0005303262081863032 1.437266673735817e-06 0.014994620276797991 4.063775781112093e-05 0.019178030747395155 7.911849437958597e-05']
['59866.339028264876 0.03416535207702765 6.788503012186861e-05 0.01503096109627413 4.0676496456291104e-05 0.0005316115017542227 1.4386367730397095e-06 0.01503096109627413 4.0676496456291104e-05 0.01913439098075352 7.913883167324163e-05']
['59866.339059802835 0.03432385263928624 6.796455325327556e-05 0.01501194609426362 4.0673709497565464e-05 0.0005309389836291393 1.4385382045380698e-06 0.01501194609426362 4.0673709497565464e-05 0.019311906545022618 7.920562570430004e-05']
['59866.3390913408 0.03418410407028357 6.788028324182044e-05 0.014975392021727514 4.063817910241085e-05 0.0005296461477770813 1.4372815738672111e-06 0.014975392021727513 4.063817910241085e-05 0.019208712048556058 7.911507096469921e-05']
['59866.33912287876 0.03421568590475034 6.787778874905052e-05 0.015010543561361537 4.0658457235281236e-05 0.0005308893791748692 1.4379987661078769e-06 0.015010543561361538 4.0658457235281236e-05 0.0192051423433888 7.912334895727002e-05']
['59866.339154416724 0.03428897415155744 6.796876546757103e-05 0.014996629994389225 4.066776229329116e-05 0.0005303972874060506 1.438327865214107e-06 0.014996629994389225 4.066776229329116e-05 0.019292344157168215 7.920618643218035e-05']
['59866.33918595469 0.03414994833668357 6.782442730723817e-05 0.01507059229633676 4.068537710082111e-05 0.0005330131687299185 1.4389508615896635e-06 0.01507059229633676 4.068537710082111e-05 0.019079356040346808 7.90914208330515e-05']
['59866.33921749265 0.03423322622367156 6.787632895208741e-05 0.01500386781667467 4.066696946845463e-05 0.000530653273004706 1.4382998247714982e-06 0.015003867816674671 4.066696946845463e-05 0.01922935840699689 7.912647115700409e-05']
['59866.339249030614 0.03421510570318015 6.789424105262447e-05 0.015018143069443851 4.066856759245064e-05 0.0005311581567918397 1.4383563468456401e-06 0.015018143069443851 4.066856759245064e-05 0.019196962633736298 7.914265827057873e-05']
['59866.33928056858 0.03422921968088709 6.789008620475083e-05 0.015093588546873324 4.0692110190336506e-05 0.0005338264947178016 1.4391889959182535e-06 0.015093588546873324 4.0692110190336506e-05 0.019135631134013766 7.91511947896618e-05']
['59866.33931210654 0.03433879777376305 6.797275900355881e-05 0.01507432064800713 4.067496652680726e-05 0.0005331450321961239 1.4385826628530573e-06 0.015074320648007128 4.067496652680726e-05 0.01926447712575592 7.921331244502263e-05']
['59866.339343644504 0.03417603068708719 6.786761869963645e-05 0.015021364722040097 4.0669861659656176e-05 0.0005312720994441991 1.43840211511063e-06 0.015021364722040098 4.0669861659656176e-05 0.019154665965047092 7.912048606634577e-05']
['59866.33937518246 0.03428476767390199 6.794431624749812e-05 0.015024511767419051 4.066665755543813e-05 0.0005313834034060202 1.4382887931051892e-06 0.015024511767419053 4.066665755543813e-05 0.019260255906482938 7.918463959046167e-05']
['59866.33940672043 0.034309944736650735 6.796645006688085e-05 0.015107798980546955 4.068562061795675e-05 0.0005343290859983878 1.4389594742465224e-06 0.015107798980546957 4.068562061795675e-05 0.01920214575610378 7.921337046081372e-05']
['59866.339438258394 0.03428458938456724 6.79586340787973e-05 0.015023015932603584 4.064643997112896e-05 0.0005313304990715912 1.4375737423318155e-06 0.015023015932603585 4.064643997112896e-05 0.019261573451963658 7.918654575230858e-05']
['59866.33946979635 0.0342876628806441 6.794861144980085e-05 0.014987579423091904 4.0660839835613915e-05 0.0005300771889261008 1.4380830333568453e-06 0.014987579423091904 4.0660839835613915e-05 0.0193000834575522 7.918533762063185e-05']
['59866.33950133432 0.03425839620034659 6.79359170555068e-05 0.015146939779469888 4.0733923898309905e-05 0.0005357134085817546 1.4406678533211352e-06 0.015146939779469888 4.0733923898309905e-05 0.0191114564208767 7.921200276679035e-05']
['59866.33953287228 0.03423794950671769 6.789997016325635e-05 0.015113013946585652 4.0702650368093965e-05 0.0005345135276924133 1.439561778449624e-06 0.015113013946585652 4.0702650368093965e-05 0.01912493556013204 7.916509139234542e-05']
['59866.33956441024 0.03433544417214871 6.794892679899885e-05 0.015054432983932484 4.0682149804855865e-05 0.0005324416499641171 1.4388367193439547e-06 0.015054432983932485 4.0682149804855865e-05 0.019281011188216228 7.919655273987902e-05']
['59866.33959594821 0.03432566379765611 6.798954531626642e-05 0.015068074269436483 4.068688989548269e-05 0.0005329241117459147 1.4390043657559466e-06 0.015068074269436483 4.068688989548269e-05 0.019257589528219626 7.923383924611868e-05']
['59866.339627486166 0.03430733625889875 6.795768696428804e-05 0.015096037223383652 4.069227326589679e-05 0.0005339130989335019 1.4391947635363685e-06 0.01509603722338365 4.069227326589679e-05 0.0192112990355151 7.920926916139666e-05']
['59866.33965902413 0.03422839594150855 6.791085910265834e-05 0.015048766848473102 4.0678576800341545e-05 0.0005322412514159861 1.4387103501594785e-06 0.0150487668484731 4.0678576800341545e-05 0.01917962909303545 7.916205779641152e-05']
['59866.3396905621 0.03427164134301496 6.792935090354096e-05 0.015076959306200845 4.068103797142142e-05 0.0005332383556393817 1.43879739628018e-06 0.015076959306200845 4.068103797142142e-05 0.01919468203681412 7.917918643563239e-05']
['59866.339722100056 0.03427417337296023 6.796809415445861e-05 0.015076636214247837 4.067547890335138e-05 0.0005332269285990718 1.4386007844663287e-06 0.015076636214247837 4.067547890335138e-05 0.01919753715871239 7.920957269804158e-05']
['59866.33975363802 0.03431744264459583 6.795313161327097e-05 0.015032861911287474 4.065172770723471e-05 0.0005316787293331731 1.4377607577404812e-06 0.015032861911287474 4.065172770723471e-05 0.019284580733308358 7.918453802121777e-05']
['59866.33978517599 0.03418290160983252 6.785710729167805e-05 0.015031172050003509 4.0656726260789624e-05 0.0005316189627161769 1.4379375454086089e-06 0.015031172050003509 4.0656726260789624e-05 0.01915172955982901 7.910471793919176e-05']
['59866.339816713946 0.03423652325023616 6.792259695730063e-05 0.015039361665584615 4.0670877305130955e-05 0.0005319086111165671 1.4384380362212388e-06 0.015039361665584615 4.0670877305130955e-05 0.019197161584651547 7.916817187603185e-05']
['59866.33984825191 0.0342225198258927 6.79192815744059e-05 0.01499991467781306 4.064734163795318e-05 0.0005305134593179163 1.4376056322722816e-06 0.01499991467781306 4.064734163795318e-05 0.019222605148079643 7.915323866915312e-05']
['59866.33987978987 0.03422809314484722 6.792406366637445e-05 0.015030040307414663 4.0672776129201055e-05 0.0005315789355101053 1.4385051933849762e-06 0.015030040307414661 4.0672776129201055e-05 0.019198052837432557 7.917040572720211e-05']
['59866.339911327836 0.034221271856491736 6.789724658172511e-05 0.015005076599901959 4.065665166157105e-05 0.0005306960249659837 1.4379349070009672e-06 0.015005076599901959 4.065665166157105e-05 0.019216195256589776 7.913911433488443e-05']
['59866.3399428658 0.03421596303543203 6.788895484285014e-05 0.015044726706916095 4.067622427109057e-05 0.0005320983606382998 1.4386271464574648e-06 0.015044726706916095 4.067622427109057e-05 0.01917123632851593 7.914205841780085e-05']
['59866.33997440376 0.03414283176175916 6.784881033969962e-05 0.015020340814972118 4.0662063187913775e-05 0.0005312358861395023 1.43812630059366e-06 0.015020340814972118 4.0662063187913775e-05 0.019122490946787044 7.910034416619451e-05']
['59866.340005941725 0.03429278628570671 6.790109438277757e-05 0.015042444658893926 4.0641364034680675e-05 0.0005320176496998329 1.43739421780369e-06 0.015042444658893926 4.0641364034680675e-05 0.01925034162681278 7.913456317550697e-05']
['59866.34003747969 0.03424660539860632 6.783862938994614e-05 0.01502484612757384 4.063319636798083e-05 0.0005313952289774441 1.4371053456861774e-06 0.01502484612757384 4.063319636798083e-05 0.01922175927103248 7.907677462178989e-05']
['59866.34006901765 0.03428028608944509 6.789707124539517e-05 0.014998658053125958 4.0619270196911156e-05 0.0005304690153111243 1.4366128081386034e-06 0.014998658053125957 4.0619270196911156e-05 0.019281628036319134 7.911976614621622e-05']
['59866.340100555615 0.034344897661847444 6.792335918227467e-05 0.015053703135772655 4.064009877574226e-05 0.0005324158368658186 1.4373494684227256e-06 0.015053703135772657 4.064009877574226e-05 0.019291194526074786 7.915301858493069e-05']
['59866.34013209357 0.034294034690688056 6.793491197853787e-05 0.015120313570163078 4.068205494411215e-05 0.0005347716990646484 1.4388333643314508e-06 0.015120313570163078 4.068205494411215e-05 0.019173721120524977 7.918447991877858e-05']
['59866.34016363154 0.03419758795995407 6.78643988399626e-05 0.015055212780594882 4.0649535315305006e-05 0.0005324692296293231 1.437683217737635e-06 0.015055212780594882 4.0649535315305006e-05 0.019142375179359187 7.910727748608054e-05']
['59866.340195169505 0.03434468822823806 6.79289100051188e-05 0.015069423164252659 4.0642642327615936e-05 0.0005329718191409603 1.4374394281679936e-06 0.015069423164252659 4.0642642327615936e-05 0.0192752650639854 7.91590878538532e-05']
['59866.34022670746 0.03423921808517689 6.788694905234513e-05 0.015081793380399517 4.0665188859286016e-05 0.0005334093260402687 1.4382368486046317e-06 0.015081793380399517 4.0665188859286016e-05 0.01915742470477737 7.913466646544423e-05']
['59866.34025824543 0.03410962068460218 6.77518284373315e-05 0.015007542414586881 4.0601859949300794e-05 0.0005307832353206179 1.4359970465902384e-06 0.01500754241458688 4.0601859949300794e-05 0.019102078270015303 7.898620947953027e-05']
['59866.340289783395 0.034239643288805785 6.784972165266014e-05 0.01496903408290231 4.0600671226138145e-05 0.0005294212816899909 1.4359550041086154e-06 0.01496903408290231 4.0600671226138145e-05 0.019270609205903476 7.906958474885536e-05']
['59866.34032132135 0.034268445730902784 6.788979307864848e-05 0.015074312624476411 4.0649432996504594e-05 0.0005331447484217739 1.4376795989503336e-06 0.015074312624476411 4.0649432996504594e-05 0.019194133106426373 7.912901116025034e-05']
['59866.34035285932 0.03420717971064894 6.784261904411254e-05 0.015007671779958131 4.0626177471202726e-05 0.0005307878106846844 1.4368571029934468e-06 0.015007671779958131 4.0626177471202726e-05 0.019199507930690807 7.90765910664227e-05']
['59866.34038439728 0.034180466609594465 6.78141276447011e-05 0.014997224725714369 4.061875540622651e-05 0.0005304183217238747 1.436594601142577e-06 0.014997224725714369 4.061875540622651e-05 0.019183241883880098 7.904833457425063e-05']
['59866.34041593524 0.034324941594065315 6.791914474283455e-05 0.015014739027207537 4.0610533193242934e-05 0.0005310377634255279 1.4363037998449124e-06 0.015014739027207537 4.0610533193242934e-05 0.019310202566857778 7.913422539481634e-05']
['59866.34044747321 0.034315686911441455 6.791349463230851e-05 0.015129464569765045 4.0689442328917976e-05 0.0005350953494692894 1.4390946396221995e-06 0.015129464569765043 4.0689442328917976e-05 0.019186222341676412 7.916990255274374e-05']
['59866.34047901117 0.034303590858090795 6.787436060580068e-05 0.01501374508493748 4.0633773375823935e-05 0.0005310026099087662 1.4371257531640511e-06 0.01501374508493748 4.0633773375823935e-05 0.019289845773153316 7.910772633822871e-05']
['59866.34051054913 0.034166616501961344 6.78229411505682e-05 0.014996355359138663 4.059817761326955e-05 0.000530387574171012 1.4358668105943499e-06 0.014996355359138664 4.059817761326955e-05 0.019170261142822678 7.904532479427241e-05']
['59866.34054208709 0.03424266800821399 6.785580800211563e-05 0.015048487587075556 4.063810296283853e-05 0.0005322313745644674 1.4372788809807e-06 0.015048487587075554 4.063810296283853e-05 0.019194180421138435 7.909403322652251e-05']
['59866.34057362506 0.03421331011992784 6.783948517980188e-05 0.014965560490156 4.058368039250706e-05 0.0005292984284775768 1.4353540762953622e-06 0.014965560490155998 4.058368039250706e-05 0.019247749629771844 7.905207690922308e-05']
['59866.34060516302 0.03433587038048723 6.791098486909455e-05 0.015069208495027511 4.064145300774401e-05 0.0005329642267702243 1.4373973645820969e-06 0.01506920849502751 4.064145300774401e-05 0.01926666188545972 7.914309551989393e-05']
['59866.34063670098 0.03424121508277698 6.786273008135877e-05 0.014937913731545526 4.05802174369226e-05 0.0005283206244123934 1.4352315992955901e-06 0.014937913731545528 4.05802174369226e-05 0.01930330135123145 7.907024839548231e-05']
['59866.34066823895 0.03417311763221763 6.780735647089509e-05 0.015048495559414041 4.064427106918758e-05 0.0005322316565282625 1.4374970331173595e-06 0.01504849555941404 4.064427106918758e-05 0.01912462207280359 7.905564092660711e-05']
['59866.34069977691 0.03428072105504974 6.786925639657994e-05 0.014961207401999577 4.059771890289141e-05 0.0005291444694780636 1.4358505870334325e-06 0.014961207401999577 4.059771890289141e-05 0.019319513653050166 7.908483257833257e-05']
['59866.34073131487 0.034270990337578744 6.785887162720944e-05 0.015114659872334475 4.066883987245394e-05 0.0005345717404077216 1.4383659767808467e-06 0.015114659872334475 4.066883987245394e-05 0.01915633046524427 7.911245790069595e-05']
['59866.34076285284 0.03423519767907277 6.787085010651457e-05 0.014978241701872553 4.059939611077574e-05 0.000529746934595151 1.4359099061279621e-06 0.014978241701872553 4.059939611077574e-05 0.01925695597720022 7.908706125998513e-05']
['59866.340794390795 0.034339958075775674 6.793367934941037e-05 0.015028281346063736 4.063179587173895e-05 0.0005315167249781703 1.4370558132640268e-06 0.015028281346063736 4.063179587173895e-05 0.019311676729711937 7.915761255691817e-05']
['59866.34082592876 0.03424790080606468 6.785152706823072e-05 0.014993518842093484 4.06238924895463e-05 0.0005302872529023664 1.4367762882988924e-06 0.014993518842093483 4.06238924895463e-05 0.019254381963971196 7.908305992115544e-05']
['59866.34085746673 0.034264063868276066 6.787162953402615e-05 0.015040671375685466 4.063147501606866e-05 0.0005319549326358044 1.4370444653160388e-06 0.015040671375685467 4.063147501606866e-05 0.0192233924925906 7.910420252796625e-05']
['59866.340889004685 0.03430721219516125 6.793056525394591e-05 0.01506037623151904 4.0648511814449825e-05 0.0005326518493488769 1.4376470187997773e-06 0.01506037623151904 4.0648511814449825e-05 0.01924683596364221 7.9163521955823e-05']
['59866.34092054265 0.03430174199896946 6.789885581279211e-05 0.015045307210571906 4.063446731110555e-05 0.0005321188917552565 1.4371502961041079e-06 0.015045307210571904 4.063446731110555e-05 0.019256434788397555 7.91291005531065e-05']
['59866.340952080616 0.034303043619055916 6.791506167218322e-05 0.014978342184701284 4.0603362362098014e-05 0.0005297504884482374 1.436050183573181e-06 0.014978342184701286 4.0603362362098014e-05 0.01932470143435463 7.912704112403223e-05']
['59866.340983618575 0.03431961104414244 6.791407816376897e-05 0.015038016675869915 4.060712032225759e-05 0.0005318610418362333 1.4361830942254785e-06 0.015038016675869917 4.060712032225759e-05 0.019281594368272523 7.91281254276937e-05']
['59866.34101515654 0.03432270452573064 6.79264427110994e-05 0.015038147767208802 4.065139370599998e-05 0.0005318656782439177 1.4377489448632575e-06 0.0150381477672088 4.065139370599998e-05 0.019284556758521844 7.916146429686912e-05']
['59866.3410466945 0.03435699353610835 6.792965028696872e-05 0.015047226761020488 4.063669055537854e-05 0.0005321867819646801 1.437228927285385e-06 0.015047226761020488 4.063669055537854e-05 0.01930976677508786 7.915666748545861e-05']
['59866.341078232464 0.03435848876675894 6.795116925178896e-05 0.015111649576740938 4.067017318120502e-05 0.000534465272980193 1.4384131329316029e-06 0.015111649576740938 4.067017318120502e-05 0.019246839190018003 7.9192325318016e-05']
['59866.34110977043 0.03428944326340286 6.791708704537756e-05 0.015020350142920838 4.0608741849522325e-05 0.0005312362160482018 1.4362404440209322e-06 0.015020350142920838 4.0608741849522325e-05 0.01926909312048202 7.913154002880608e-05']
['59866.34114130839 0.034282864513907885 6.791037576192784e-05 0.015092415812122327 4.067266802352647e-05 0.0005337850177105668 1.438501369928868e-06 0.015092415812122327 4.067266802352647e-05 0.01919044870178556 7.915860698798477e-05']
['59866.341172846354 0.03426011965635853 6.782837039464624e-05 0.015088108712276577 4.066346080280872e-05 0.0005336326852148243 1.4381757311090085e-06 0.015088108712276579 4.066346080280872e-05 0.019172010944081948 7.908353099637677e-05']
['59866.34120438432 0.03439683154665896 6.796113160009945e-05 0.015064323407095147 4.064151456103738e-05 0.0005327914521275856 1.43739954158452e-06 0.015064323407095149 4.064151456103738e-05 0.01933250813956381 7.918616112794615e-05']
['59866.34123592228 0.03428911393016774 6.791772208390328e-05 0.015052554420207158 4.064890115243668e-05 0.0005323752093634952 1.4376607888142533e-06 0.01505255442020716 4.064890115243668e-05 0.019236559509960578 7.915270139399471e-05']
['59866.341267460244 0.03417970221735909 6.780864489235588e-05 0.014964232884575174 4.058790867749386e-05 0.0005292514740352068 1.4355036212856847e-06 0.014964232884575174 4.058790867749386e-05 0.019215469332783914 7.902778405693913e-05']
['59866.3412989982 0.03425480467452576 6.790269627926587e-05 0.015096665376803967 4.067180736387932e-05 0.0005339353153161382 1.4384709303206097e-06 0.015096665376803967 4.067180736387932e-05 0.019158139297721796 7.915157658719588e-05']
['59866.34133053617 0.03431200002486346 6.794294357381889e-05 0.015016017985499166 4.0609469535329674e-05 0.0005310829973219993 1.4362661806416559e-06 0.015016017985499166 4.0609469535329674e-05 0.019295982039364293 7.915410663645953e-05']
['59866.341362074134 0.034168500937750194 6.780784568065037e-05 0.014978358239148542 4.059866381694444e-05 0.0005297510562581573 1.4358840065317295e-06 0.01497835823914854 4.059866381694444e-05 0.019190142698601656 7.903262262871054e-05']
['59866.34139361209 0.03429040915454427 6.789023496958941e-05 0.015009975636380488 4.061205119542719e-05 0.0005308692929375271 1.4363574881896342e-06 0.015009975636380487 4.061205119542719e-05 0.019280433518163782 7.911019344260295e-05']
['59866.34142515006 0.03425519884203649 6.78833189442289e-05 0.015079784842499878 4.065023364192092e-05 0.0005333382885435765 1.437707915989372e-06 0.015079784842499878 4.065023364192092e-05 0.019175413999536612 7.912386799207093e-05']
['59866.341456688024 0.034330840247587396 6.793768920624145e-05 0.01501149485245961 4.061907715902482e-05 0.0005309230242149976 1.4366059808199781e-06 0.015011494852459612 4.061907715902482e-05 0.019319345395127786 7.915452636416105e-05']
['59866.34148822598 0.03421003413929589 6.78394223001947e-05 0.01495715937912233 4.059712432196563e-05 0.000529001299955694 1.4358295580348977e-06 0.01495715937912233 4.059712432196563e-05 0.01925287476017356 7.905892562663173e-05']
['59866.34151976395 0.03426805736681878 6.786935218577091e-05 0.015033806341686305 4.064369364354181e-05 0.000531712131725702 1.4374766108627391e-06 0.015033806341686305 4.064369364354181e-05 0.019234251025132477 7.91085254514726e-05']
['59866.341551301906 0.034301914036097426 6.788898475633603e-05 0.015040641226521262 4.061242551394763e-05 0.0005319538663272459 1.4363707269991495e-06 0.015040641226521262 4.061242551394763e-05 0.019261272809576166 7.910931270951588e-05']
['59866.34158283987 0.034297150803975 6.788182764089527e-05 0.01507540862434218 4.064829618863017e-05 0.0005331835114876106 1.4376393925964312e-06 0.015075408624342179 4.064829618863017e-05 0.019221742179632823 7.912159317725358e-05']
['59866.34161437784 0.0342653341942147 6.787628515151953e-05 0.015018547078653058 4.062443808019896e-05 0.0005311724456946618 1.4367955846209535e-06 0.015018547078653056 4.062443808019896e-05 0.019246787115561645 7.910458302337678e-05']
['59866.341645915796 0.03428594383595722 6.789558344137079e-05 0.015016845135004179 4.060688599588841e-05 0.0005311122517514212 1.4361748066254891e-06 0.015016845135004177 4.060688599588841e-05 0.019269098700953044 7.911213207294581e-05']
['59866.34167745376 0.034187287089755984 6.78090184053903e-05 0.015047811895736013 4.0649284067959676e-05 0.0005322074768718691 1.4376743316805357e-06 0.015047811895736013 4.0649284067959676e-05 0.01913947519401997 7.905964376557892e-05']
['59866.34170899173 0.034504021842648516 6.80642342558721e-05 0.0150145125440618 4.060647346852985e-05 0.0005310297532228232 1.4361602164547614e-06 0.0150145125440618 4.060647346852985e-05 0.019489509298586716 7.925670742838521e-05']
['59866.341740529686 0.03425416754321305 6.786227358407061e-05 0.015055803326613361 4.063523468565588e-05 0.000532490115922204 1.4371774364269718e-06 0.01505580332661336 4.063523468565588e-05 0.019198364216599692 7.909810663952442e-05']
['59866.34177206765 0.03422252882740171 6.78438951017239e-05 0.014989643945273235 4.061633514913713e-05 0.000530150206461719 1.4365090020582818e-06 0.014989643945273237 4.061633514913713e-05 0.019232884882128473 7.907262980020803e-05']
['59866.34180360561 0.03430664284855786 6.790652878834746e-05 0.015091008705616719 4.065853518354593e-05 0.0005337352514981614 1.4380015229637948e-06 0.01509100870561672 4.065853518354593e-05 0.01921563414294114 7.914804568246966e-05']
['59866.341835143576 0.034279308938655724 6.788567501234164e-05 0.015043418330821732 4.064251246599012e-05 0.0005320520862998907 1.4374348352525122e-06 0.015043418330821734 4.064251246599012e-05 0.01923589060783399 7.912192295078165e-05']
['59866.34186668154 0.03429891108087457 6.789017356668685e-05 0.015014180447347007 4.062383736061608e-05 0.0005310180077042134 1.4367743385118364e-06 0.015014180447347005 4.062383736061608e-05 0.019284730633527567 7.91161919509316e-05']
['59866.3418982195 0.03431115690390644 6.791031111276565e-05 0.015051477512596213 4.062417012999871e-05 0.0005323371215480428 1.4367861078212042e-06 0.015051477512596213 4.062417012999871e-05 0.019259679391310226 7.913364363015077e-05']
['59866.341929757466 0.034222758753531556 6.783952354789225e-05 0.01505752807336639 4.0641092156250065e-05 0.0005325511163602765 1.4373846020712118e-06 0.015057528073366388 4.0641092156250065e-05 0.019165230680165166 7.908159916730211e-05']
['59866.34196129543 0.034160767220587515 6.77988178817181e-05 0.015082878835591292 4.065589730371062e-05 0.0005334477161645522 1.4379082270493345e-06 0.015082878835591293 4.065589730371062e-05 0.019077888384996224 7.905429584613503e-05']
['59866.34199283339 0.03417797139760576 6.780639225089681e-05 0.015040231512880026 4.064882284246536e-05 0.0005319393756714114 1.43765801916558e-06 0.015040231512880026 4.064882284246536e-05 0.019137739884725738 7.905715418961534e-05']
['59866.342024371355 0.034342385072534044 6.794513032928958e-05 0.015058072310483544 4.0637395865276226e-05 0.0005325703648108119 1.4372538725201913e-06 0.015058072310483544 4.0637395865276226e-05 0.0192843127620505 7.917031437461465e-05']
['59866.342055909314 0.034104042216170895 6.775903298338217e-05 0.015026555665994038 4.0624144815712105e-05 0.0005314556915307731 1.4367852125114612e-06 0.01502655566599404 4.0624144815712105e-05 0.019077486550176853 7.900384606366339e-05']
['59866.34208744728 0.034238384946232985 6.784188071564783e-05 0.014919493317614043 4.057235340092567e-05 0.0005276691355388391 1.4349534659174647e-06 0.014919493317614043 4.057235340092567e-05 0.01931889162861894 7.904831838518637e-05']
['59866.342118985245 0.034215319151844815 6.784887613868693e-05 0.01501549812993847 4.06175404137186e-05 0.0005310646111926263 1.4365516295729205e-06 0.01501549812993847 4.06175404137186e-05 0.019199821021906344 7.907752261257901e-05']
['59866.3421505232 0.034362757320045643 6.797073923531574e-05 0.015023468876155644 4.0634425706695566e-05 0.0005313465186727583 1.437148824649107e-06 0.015023468876155644 4.0634425706695566e-05 0.019339288443889997 7.919076931504235e-05']
['59866.34218206117 0.034221403239530414 6.785157011587194e-05 0.015046981675492555 4.0648015208026476e-05 0.0005321781138372911 1.4376294549404333e-06 0.015046981675492555 4.0648015208026476e-05 0.01917442156403786 7.909549106959914e-05']
['59866.342213599135 0.034215664127456066 6.783412580350996e-05 0.014975473437002059 4.059146075209911e-05 0.0005296490272533895 1.4356292502260526e-06 0.014975473437002057 4.059146075209911e-05 0.01924019069045401 7.905147253224078e-05']
['59866.34224513709 0.03428091141224238 6.787951835965687e-05 0.015016944478716782 4.061765181997037e-05 0.0005311157653165159 1.4365555697630674e-06 0.015016944478716782 4.061765181997037e-05 0.0192639669335256 7.910387254810814e-05']
['59866.34227667506 0.03429345164890386 6.790814171587351e-05 0.014996655697179532 4.060156292700453e-05 0.0005303981964563015 1.4359865415754254e-06 0.014996655697179534 4.060156292700453e-05 0.019296795951724323 7.912017835810703e-05']
['59866.34230821302 0.03431897240408988 6.791980699001806e-05 0.01504012140374225 4.061830142669707e-05 0.0005319354813572878 1.4365785449012052e-06 0.015040121403742251 4.061830142669707e-05 0.01927885100034763 7.913878058418216e-05']
['59866.34233975098 0.0342823314484719 6.788032482434705e-05 0.01510978085636223 4.0686735727058035e-05 0.0005343991805167424 1.4389989131633127e-06 0.01510978085636223 4.0686735727058035e-05 0.019172550592109667 7.91400591507381e-05']
['59866.34237128895 0.03428038171238342 6.7877079568282e-05 0.01504984523047259 4.063992517828086e-05 0.0005322793913772661 1.4373433286684833e-06 0.015049845230472588 4.063992517828086e-05 0.019230536481910834 7.911321918121619e-05']
['59866.34240282691 0.03432646364449313 6.79260986502925e-05 0.014993935857359092 4.0614566803829594e-05 0.0005303020018003368 1.4364464596367735e-06 0.014993935857359093 4.0614566803829594e-05 0.019332527787134034 7.914226376918975e-05']
['59866.34243436487 0.034267141593023215 6.787062405601543e-05 0.015007321221924576 4.0619763543318455e-05 0.0005307754122304887 1.4366302566984653e-06 0.015007321221924576 4.0619763543318455e-05 0.01925982037109864 7.909732486037744e-05']
['59866.34246590284 0.03417749650287069 6.779915040768729e-05 0.014953803835431052 4.058150917526468e-05 0.0005288826218745323 1.435277285193884e-06 0.01495380383543105 4.058150917526468e-05 0.01922369266743964 7.901635073164474e-05']
['59866.3424974408 0.03432746198222423 6.79442526544015e-05 0.015100158861045276 4.065573728175491e-05 0.0005340588720462756 1.437902567430389e-06 0.015100158861045276 4.065573728175491e-05 0.019227303121178953 7.917897727735703e-05']
['59866.34252897876 0.034283568465215755 6.78893283818797e-05 0.01503166179602392 4.0631386794297076e-05 0.0005316362839384009 1.437041345109142e-06 0.015031661796023919 4.0631386794297076e-05 0.019251906669191837 7.911934340583518e-05']
['59866.34256051672 0.0342320627235531 6.784722448532261e-05 0.015053906981231954 4.065870365825103e-05 0.0005324230464241462 1.4380074815375955e-06 0.015053906981231956 4.065870365825103e-05 0.019178155742321144 7.909725692798224e-05']
['59866.34259205469 0.034229494530872394 6.786001906625621e-05 0.015032150198252854 4.0633471368494796e-05 0.0005316535576337236 1.4371150718397662e-06 0.015032150198252853 4.0633471368494796e-05 0.01919734433261954 7.909526650266086e-05']
['59866.34262359265 0.03426084980531859 6.789317564849328e-05 0.01502998973097538 4.06325505166579e-05 0.0005315771467344796 1.437082503368278e-06 0.015029989730975381 4.06325505166579e-05 0.01923086007434321 7.912324223087623e-05']
['59866.34265513061 0.034160649046253065 6.780811611488588e-05 0.014985993052722794 4.0600439392796254e-05 0.0005300210825514745 1.4359468046814298e-06 0.014985993052722794 4.0600439392796254e-05 0.01917465599353027 7.903376677052643e-05']
['59866.34268666858 0.0343062688973512 6.790400396686905e-05 0.014983612059438359 4.06019649670216e-05 0.0005299368721402108 1.4360007608323224e-06 0.014983612059438357 4.06019649670216e-05 0.019322656837912844 7.911683331577305e-05']
['59866.34271820654 0.0342214942909624 6.785403687332581e-05 0.015002649840012433 4.062839467399847e-05 0.0005306101958921803 1.4369355205011757e-06 0.015002649840012433 4.062839467399847e-05 0.019218844450949964 7.908752603156104e-05']
['59866.3427497445 0.034259536703452595 6.788316203589956e-05 0.015062464366258159 4.064074837444256e-05 0.0005327257020078931 1.4373724432769875e-06 0.015062464366258159 4.064074837444256e-05 0.019197072337194435 7.911886068711398e-05']
['59866.34278128247 0.03419796952262051 6.782289569381328e-05 0.015017745227595625 4.062059444836948e-05 0.0005311440860147922 1.4366596439531566e-06 0.015017745227595627 4.062059444836948e-05 0.019180224295024882 7.905680156465212e-05']
['59866.342812820425 0.034298948363015454 6.788688896380081e-05 0.015078371491364298 4.0647137284132507e-05 0.0005332883014725649 1.437598404734348e-06 0.0150783714913643 4.0647137284132507e-05 0.019220576871651154 7.912534020513616e-05']
['59866.34284435839 0.034284424064725816 6.790130884026087e-05 0.014970024172118486 4.05992037096551e-05 0.0005294562989328479 1.4359031013303162e-06 0.014970024172118486 4.05992037096551e-05 0.01931439989260733 7.911310311243367e-05']
['59866.34287589636 0.03422564702798819 6.785635385160528e-05 0.015014297569711637 4.06286624632428e-05 0.0005310221500604974 1.4369449916082738e-06 0.015014297569711637 4.06286624632428e-05 0.019211349458276558 7.90896514822665e-05']
['59866.342907434315 0.03424012195531063 6.784786514273672e-05 0.015032602791696378 4.063543084698475e-05 0.0005316695648523342 1.4371843742147792e-06 0.015032602791696376 4.063543084698475e-05 0.019207519163614253 7.908584604432748e-05']
['59866.34293897228 0.03422167745060678 6.784942625571713e-05 0.015051378160140919 4.062455994653338e-05 0.0005323336076737388 1.4367998947608467e-06 0.015051378160140919 4.062455994653338e-05 0.01917029929046586 7.908160035102654e-05']
['59866.342970510246 0.03423978644113448 6.781089023024932e-05 0.01501495846730042 4.0619805147825776e-05 0.0005310455245311935 1.4366317281569087e-06 0.015014958467300422 4.0619805147825776e-05 0.019224827973834055 7.904609670354543e-05']
['59866.343002048205 0.034259686216283426 6.786515056293196e-05 0.015055525614939577 4.0648981782019026e-05 0.0005324802938809514 1.4376636405023842e-06 0.015055525614939579 4.0648981782019026e-05 0.019204160601343848 7.910763794251689e-05']
['59866.34303358617 0.034265287488399264 6.788098636307393e-05 0.015114922212418686 4.0685762600928994e-05 0.0005345810187902046 1.4389644958669373e-06 0.015114922212418686 4.0685762600928994e-05 0.019150365275980578 7.914012628270808e-05']
['59866.34306512413 0.03437105836568473 6.795325500614142e-05 0.015096088850310756 4.0663007738565045e-05 0.0005339149248625342 1.4381597072392488e-06 0.015096088850310755 4.0663007738565045e-05 0.019274969515373976 7.91904354343142e-05']
['59866.343096662094 0.03433957503685472 6.794954276200023e-05 0.015118217772885256 4.067512213861624e-05 0.000534697575398763 1.4385881664949687e-06 0.015118217772885256 4.067512213861624e-05 0.019221357263969462 7.919347146423274e-05']
['59866.34312820006 0.03419420003656879 6.78568038538781e-05 0.014996344196307835 4.0626205467559396e-05 0.000530387179366633 1.436858093162014e-06 0.014996344196307835 4.0626205467559396e-05 0.019197855840260958 7.908877543593679e-05']
['59866.34315973802 0.03430374414018988 6.791198208147922e-05 0.014978394194834698 4.060256207410538e-05 0.0005297523279304204 1.43602187917542e-06 0.014978394194834698 4.060256207410538e-05 0.01932534994535518 7.912398724291349e-05']
['59866.343191275984 0.034246150678281836 6.783713670926978e-05 0.015161424107659804 4.069404915085262e-05 0.0005362256868992636 1.4392575726183867e-06 0.015161424107659803 4.069404915085262e-05 0.019084726570622032 7.910678070307353e-05']
['59866.34322281395 0.03429514680839294 6.789524531759478e-05 0.01506475291523889 4.063429367986525e-05 0.0005328066428707355 1.4371441551551813e-06 0.015064752915238889 4.063429367986525e-05 0.019230393893154053 7.912591332552133e-05']
['59866.34325435191 0.03437236615049652 6.7977709119145e-05 0.014968443185147527 4.060113595085572e-05 0.0005294003829569829 1.4359714403832774e-06 0.014968443185147525 4.060113595085572e-05 0.019403922965348992 7.917967654383894e-05']
['59866.343285889874 0.03413340140823486 6.777807859011726e-05 0.015012912135318772 4.060969951599102e-05 0.0005309731503422854 1.4362743145436712e-06 0.015012912135318773 4.060969951599102e-05 0.01912048927291609 7.901275613562149e-05']
['59866.34331742783 0.03431639633689889 6.792529523994825e-05 0.015037647420229538 4.0628268546696265e-05 0.0005318479820894708 1.4369310596603745e-06 0.015037647420229536 4.0628268546696265e-05 0.019278748916669353 7.914860667463835e-05']
['59866.3433489658 0.034271653897719016 6.787991721814175e-05 0.014970425856428162 4.0584303453050214e-05 0.0005294705056091695 1.435376112554315e-06 0.014970425856428164 4.0584303453050214e-05 0.019301228041290853 7.908709659806105e-05']
['59866.343380503764 0.034355178270196164 6.794080052905773e-05 0.015121129105952879 4.067571947391492e-05 0.0005348005427429184 1.4386092929095174e-06 0.015121129105952879 4.067571947391492e-05 0.019234049164243285 7.918627741755407e-05']
['59866.34341204172 0.034280826800936706 6.788777611342001e-05 0.015039171082746843 4.06448396557776e-05 0.0005319018706275226 1.4375171427543321e-06 0.015039171082746843 4.06448396557776e-05 0.019241655718189865 7.91249210822337e-05']
['59866.34344357969 0.034292338641974354 6.789297266620971e-05 0.01506537026687501 4.065072687701526e-05 0.0005328284772184054 1.4377253606123433e-06 0.015065370266875008 4.065072687701526e-05 0.019226968375099344 7.913240381211978e-05']
['59866.343475117654 0.034189627793371535 6.779809376591728e-05 0.015019187018999137 4.060805109945477e-05 0.0005311950789545202 1.436216013734778e-06 0.015019187018999135 4.060805109945477e-05 0.0191704407743724 7.90290790303673e-05']
['59866.34350665561 0.03432684142963076 6.792804980966845e-05 0.015044129695424228 4.0625295250596234e-05 0.0005320772456760747 1.436825900822242e-06 0.01504412969542423 4.0625295250596234e-05 0.01928271173420653 7.914944450305962e-05']
['59866.34353819358 0.03419754601811526 6.783685386401033e-05 0.015007307844703633 4.061839299884259e-05 0.0005307749391080803 1.4365817836033407e-06 0.015007307844703633 4.061839299884259e-05 0.01919023817341163 7.906764567113099e-05']
['59866.343569731536 0.03440248608617567 6.799276702595509e-05 0.01506206319854664 4.064312483811268e-05 0.0005327115136024937 1.4374564934859157e-06 0.01506206319854664 4.064312483811268e-05 0.01934042288762903 7.92141399274916e-05']
['59866.3436012695 0.034352659833597914 6.793573557890484e-05 0.01506979424826185 4.0652430605168936e-05 0.0005329849435530414 1.4377856176695303e-06 0.015069794248261848 4.0652430605168936e-05 0.019282865585336068 7.916997083967477e-05']
['59866.34363280747 0.034202206182637945 6.785143370046446e-05 0.01503404796389459 4.0632054558283354e-05 0.0005317206773632152 1.437064962428972e-06 0.01503404796389459 4.0632054558283354e-05 0.019168158218743354 7.908717287168532e-05']
['59866.343664345426 0.03427641782366794 6.785984625995355e-05 0.015060985387696386 4.06457527224859e-05 0.0005326733938414857 1.4375494358832208e-06 0.015060985387696386 4.06457527224859e-05 0.019215432435971555 7.910142823490611e-05']
['59866.34369588339 0.03433566423676871 6.794617436314002e-05 0.015022155642344999 4.063250946744207e-05 0.0005313000725277806 1.4370810515492536e-06 0.015022155642344999 4.063250946744207e-05 0.01931350859442371 7.916870237794728e-05']
['59866.34372742136 0.03417509278956487 6.77967783974584e-05 0.01511218583049184 4.0659092258870063e-05 0.0005344842390769057 1.4380212254730195e-06 0.015112185830491839 4.0659092258870063e-05 0.01906290695907303 7.905418992304828e-05']
['59866.343758959316 0.03421613806648964 6.781773495242844e-05 0.015105401440919533 4.066191404581744e-05 0.0005342442903799515 1.4381210257710255e-06 0.015105401440919531 4.066191404581744e-05 0.01911073662557011 7.907361398056422e-05']
['59866.34379049728 0.03414735702231325 6.778218114914563e-05 0.015066678648356792 4.064450937356971e-05 0.0005328747517473555 1.4375054614107765e-06 0.01506667864835679 4.064450937356971e-05 0.01908067837395646 7.903417123974788e-05']
['59866.34382203524 0.03434014810543369 6.79239116285384e-05 0.015096570969993095 4.065450795973992e-05 0.0005339319763582245 1.4378590890580918e-06 0.015096570969993095 4.065450795973992e-05 0.019243577135440594 7.916089178609631e-05']
['59866.343853573206 0.03419705380504437 6.780882342782557e-05 0.01498766282642501 4.059671453228262e-05 0.0005300801387155973 1.435815064689636e-06 0.01498766282642501 4.059671453228262e-05 0.01920939097861936 7.903246020137341e-05']
['59866.34388511117 0.03422434189348226 6.784444023024899e-05 0.014987025711718182 4.059226034894383e-05 0.0005300576053922844 1.4356575301794566e-06 0.014987025711718184 4.059226034894383e-05 0.019237316181764073 7.906073406181014e-05']
['59866.34391664913 0.034391627414072125 6.797921034171546e-05 0.015078125819070247 4.065336897428915e-05 0.0005332796125925696 1.4378188056881808e-06 0.015078125819070247 4.065336897428915e-05 0.019313501595001878 7.920776128412474e-05']
['59866.343948187096 0.034292682140364725 6.790179031531548e-05 0.01498669353583406 4.0610262302076854e-05 0.0005300458570736324 1.4362942190297743e-06 0.01498669353583406 4.0610262302076854e-05 0.019305988604530665 7.911919193386997e-05']
['59866.34397972506 0.03423302047276136 6.783954284785927e-05 0.014970083304349922 4.059366796202974e-05 0.0005294583903077209 1.4357073143084751e-06 0.01497008330434992 4.059366796202974e-05 0.01926293716841144 7.905725426814452e-05']
['59866.34401126302 0.0342398535546889 6.784127390861674e-05 0.015009538117076655 4.062707750588271e-05 0.0005308538188575487 1.4368889352086187e-06 0.015009538117076655 4.062707750588271e-05 0.019230315437612243 7.907589943979747e-05']
['59866.344042800985 0.03426660747465117 6.788594550062597e-05 0.01504124054820385 4.064431417664181e-05 0.0005319750629957539 1.437498557731676e-06 0.01504124054820385 4.064431417664181e-05 0.019225366926447322 7.912308052271174e-05']
['59866.344074338944 0.03435002326659982 6.793789390162194e-05 0.015070668799523004 4.064687598018611e-05 0.0005330158744766415 1.4375891629977441e-06 0.015070668799523006 4.064687598018611e-05 0.019279354467076813 7.916897090866263e-05']
['59866.34410587691 0.03431383970877373 6.791987045749266e-05 0.014959962219497042 4.0590468640521906e-05 0.000529100430155768 1.4355941614568059e-06 0.014959962219497042 4.0590468640521906e-05 0.01935387748927669 7.912455337895928e-05']
['59866.344137414875 0.0343987382782901 6.794399364681227e-05 0.015054876827861304 4.0634100921279e-05 0.0005324573477319466 1.437137337714776e-06 0.015054876827861304 4.0634100921279e-05 0.019343861450428795 7.916764762425844e-05']
['59866.34416895283 0.034212738273475415 6.786205692933822e-05 0.014960895490264055 4.0581469397138214e-05 0.0005291334378570598 1.43527587833045e-06 0.014960895490264055 4.0581469397138214e-05 0.019251842783211362 7.907031319725253e-05']
['59866.3442004908 0.03427226461140321 6.789638718288787e-05 0.01507072758682843 4.064542036287741e-05 0.0005330179536522524 1.4375376810666486e-06 0.01507072758682843 4.064542036287741e-05 0.019201537024574777 7.913260762140744e-05']
['59866.344232028765 0.03420266997704927 6.785771149901006e-05 0.014945661650458528 4.057403407047043e-05 0.0005285946509887665 1.4350129074431877e-06 0.014945661650458526 4.057403407047043e-05 0.019257008326590747 7.906276779012089e-05']
['59866.34426356672 0.03427195059193701 6.790319256582412e-05 0.015034050087517167 4.0641534928640343e-05 0.0005317207524709997 1.437400261941118e-06 0.015034050087517167 4.0641534928640343e-05 0.01923790050441984 7.913645128502595e-05']
['59866.34429510469 0.03428478957744682 6.789055672816197e-05 0.015026955572327978 4.062622424433019e-05 0.0005314698353240664 1.4368587572544334e-06 0.015026955572327978 4.062622424433019e-05 0.019257834005118844 7.911774636079052e-05']
['59866.34432664265 0.034282657891286365 6.78766724131893e-05 0.015075216435413262 4.065529859229214e-05 0.0005331767141947117 1.4378870519645039e-06 0.01507521643541326 4.065529859229214e-05 0.019207441455873105 7.912076820605223e-05']
['59866.34435818061 0.03422800403497868 6.785759268315007e-05 0.01510012131492677 4.065578231253202e-05 0.0005340575441239746 1.4379041600683374e-06 0.015100121314926768 4.065578231253202e-05 0.019127882720051913 7.9104649169289e-05']
['59866.34438971858 0.03434685390579516 6.791338798713371e-05 0.015126200392706927 4.067323197526223e-05 0.0005349799028217502 1.438521315641404e-06 0.015126200392706925 4.067323197526223e-05 0.019220653513088232 7.916148095636192e-05']
['59866.34442125654 0.0344063639010485 6.799427569839e-05 0.015043864012288875 4.0642373298884664e-05 0.0005320678490573441 1.4374299132230123e-06 0.015043864012288875 4.0642373298884664e-05 0.019362499888759627 7.921504929692691e-05']
['59866.3444527945 0.03433858371142274 6.794928361082166e-05 0.01509998740359886 4.0682147473928774e-05 0.0005340528079795806 1.438836636904273e-06 0.015099987403598858 4.0682147473928774e-05 0.01923859630782388 7.919685767954664e-05']
['59866.34448433247 0.034278138177843205 6.79134403165891e-05 0.015062419637775002 4.0647134198001465e-05 0.0005327241200614061 1.4375982955847903e-06 0.015062419637775002 4.0647134198001465e-05 0.019215718540068205 7.914811996595528e-05']
['59866.34451587043 0.034188904253106306 6.782473646425737e-05 0.015103239293599148 4.066645155383373e-05 0.0005341678200613445 1.438281507288828e-06 0.015103239293599148 4.066645155383373e-05 0.019085664959507156 7.908195216625769e-05']
['59866.34454740839 0.0342763162544833 6.787946423298321e-05 0.015077809226430913 4.066134475055069e-05 0.0005332684154184592 1.4381008910697405e-06 0.015077809226430913 4.066134475055069e-05 0.019198507028052383 7.912627010974284e-05']
['59866.34457894635 0.0342590094405854 6.789670064625976e-05 0.015072237458250938 4.0633605336881846e-05 0.0005330713544301025 1.4371198100022144e-06 0.01507223745825094 4.0633605336881846e-05 0.019186771982334462 7.912680861327142e-05']
['59866.34461048432 0.034265830242504146 6.788540820593464e-05 0.015098018648260872 4.066205861272187e-05 0.0005339831775031852 1.4381261387793472e-06 0.015098018648260872 4.066205861272187e-05 0.019167811594243273 7.913173609817243e-05']
['59866.34464202228 0.034238348278775095 6.782649817568577e-05 0.014974946231626015 4.059544452191336e-05 0.0005296303811774736 1.435770147261181e-06 0.014974946231626016 4.059544452191336e-05 0.01926340204714908 7.904697319131233e-05']
['59866.34467356024 0.034209788398276056 6.78254617131615e-05 0.015106978426602455 4.067925603983398e-05 0.000534300064839201 1.438734373342315e-06 0.015106978426602455 4.067925603983398e-05 0.0191028099716736 7.90891593618108e-05']
['59866.34470509821 0.03434810441084739 6.7947695708955e-05 0.015070369591959024 4.065312246380397e-05 0.000533005292173793 1.4378100871632384e-06 0.015070369591959024 4.065312246380397e-05 0.019277734818888365 7.918058927675257e-05']
['59866.34473663617 0.03430934335566405 6.791291095403755e-05 0.015014219273859413 4.062657520518777e-05 0.0005310193809111852 1.4368711699556146e-06 0.015014219273859415 4.062657520518777e-05 0.019295124081804636 7.913710941874117e-05']
['59866.34476817413 0.034217038081842094 6.786128703357346e-05 0.015017413848443475 4.063156182498832e-05 0.0005311323658747694 1.4370475355535207e-06 0.015017413848443475 4.063156182498832e-05 0.01919962423339862 7.909537340572388e-05']
['59866.3447997121 0.034232561724482434 6.784393360398714e-05 0.015118704819386321 4.068071984342048e-05 0.0005347148011450208 1.4387861448037608e-06 0.015118704819386321 4.068071984342048e-05 0.019113856905096115 7.91057538605194e-05']
['59866.344831250055 0.03423474302780684 6.786068340695023e-05 0.01504255382657524 4.064211649824901e-05 0.0005320215107167455 1.437420830758445e-06 0.015042553826575239 4.064211649824901e-05 0.0191921892012316 7.91002780394328e-05']
['59866.34486278802 0.03429078005310251 6.789436810090423e-05 0.015027269133973111 4.062820857357926e-05 0.0005314809252986857 1.436928938545258e-06 0.01502726913397311 4.062820857357926e-05 0.0192635109191294 7.9122035816322e-05']
['59866.34489432599 0.03428736335058462 6.786778960419348e-05 0.01502141658547044 4.063757392351642e-05 0.0005312739337378224 1.4372601700422103e-06 0.01502141658547044 4.063757392351642e-05 0.01926594676511418 7.910404085853221e-05']
['59866.344925863945 0.03409754463835549 6.775562693609741e-05 0.014994795037235711 4.061372203411713e-05 0.0005303323890724187 1.4364165820199929e-06 0.014994795037235711 4.061372203411713e-05 0.019102749601119774 7.899556569180412e-05']
['59866.34495740191 0.034255987500900004 6.785443312598373e-05 0.015038215830056396 4.062696266167947e-05 0.0005318680854747256 1.4368848734258118e-06 0.015038215830056396 4.062696266167947e-05 0.019217771670843608 7.908713036874012e-05']
['59866.344988939876 0.03432561191123458 6.792097490785418e-05 0.015008695965949833 4.061202505765929e-05 0.00053082403385429 1.4363565637551983e-06 0.015008695965949833 4.061202505765929e-05 0.019316915945284747 7.913656178857723e-05']
['59866.345020477835 0.034202415371609354 6.784517160733845e-05 0.015104130733783182 4.066917125204954e-05 0.0005341993483084022 1.4383776969365536e-06 0.015104130733783182 4.066917125204954e-05 0.019098284637826174 7.910087737034106e-05']
['59866.3450520158 0.03423940665559694 6.784772828270431e-05 0.015064650939888518 4.0647552737691696e-05 0.0005328030362304944 1.4376130983982525e-06 0.015064650939888518 4.0647552737691696e-05 0.019174755715708418 7.909195772445579e-05']
['59866.34508355376 0.03430235344266658 6.79097000107227e-05 0.014933302555614703 4.0580790574706016e-05 0.0005281575374250919 1.4352518698981019e-06 0.014933302555614703 4.0580790574706016e-05 0.019369050887051875 7.911085841535598e-05']
['59866.345115091724 0.03429505095531578 6.787944761637075e-05 0.015032718171546477 4.0646562694038706e-05 0.0005316736455797734 1.4375780827668637e-06 0.015032718171546475 4.0646562694038706e-05 0.019262332783769303 7.911866067840152e-05']
['59866.34514662969 0.03429834189616845 6.788588746286556e-05 0.01502738996843041 4.0637748333983414e-05 0.0005314851989433912 1.4372663385506433e-06 0.015027389968430407 4.0637748333983414e-05 0.01927095192773804 7.911965815318604e-05']
['59866.34517816765 0.034221497284916434 6.784776780319409e-05 0.015046482492946583 4.0639174138347956e-05 0.0005321604588662474 1.4373167660645319e-06 0.015046482492946585 4.0639174138347956e-05 0.019175014791969848 7.908768596009817e-05']
['59866.345209705614 0.03432605465487434 6.792590749525918e-05 0.015022872463110577 4.0633776246781726e-05 0.000531325424876259 1.437125854703412e-06 0.015022872463110577 4.0633776246781726e-05 0.01930318219176376 7.915195942696573e-05']
['59866.34524124358 0.03416964607399769 6.783708575435336e-05 0.014960993909894546 4.058708163517203e-05 0.0005291369187394354 1.4354743706470921e-06 0.014960993909894546 4.058708163517203e-05 0.01920865216410314 7.905176404928363e-05']
['59866.34527278154 0.034212481264475084 6.783785168115774e-05 0.015054324131581977 4.0653697764602396e-05 0.0005324378000997503 1.4378304342667572e-06 0.015054324131581977 4.0653697764602396e-05 0.01915815713289311 7.908664402192315e-05']
['59866.345304319504 0.03425936401466201 6.786384695490383e-05 0.015004646155401992 4.0624341048999415e-05 0.0005306808011060067 1.4367921528442778e-06 0.01500464615540199 4.0624341048999415e-05 0.01925471785926002 7.909386075533315e-05']
['59866.34533585746 0.03422547876449066 6.782959726499793e-05 0.015070497527085098 4.0626411293907556e-05 0.0005330098169532841 1.4368653727799536e-06 0.015070497527085098 4.0626411293907556e-05 0.019154981237405562 7.906553964751998e-05']
['59866.34536739543 0.03431246471728015 6.788183058206394e-05 0.015128069920741826 4.0670180787618886e-05 0.0005350460238501953 1.438413401953462e-06 0.015128069920741826 4.0670180787618886e-05 0.01918439479653833 7.913284102362075e-05']
['59866.345398933394 0.03435615161536807 6.793684182633855e-05 0.015136711256036793 4.068922093161836e-05 0.0005353516485673306 1.439086809294506e-06 0.015136711256036795 4.068922093161836e-05 0.019219440359331277 7.918981738430132e-05']
['59866.34543047135 0.03428704800484438 6.788494251212214e-05 0.015027327576004026 4.063953747138515e-05 0.000531482992262709 1.4373296163420559e-06 0.015027327576004026 4.063953747138515e-05 0.019259720428840357 7.911976634041739e-05']
['59866.34546200932 0.034352365889489325 6.79452220541079e-05 0.015039734080204814 4.0635306846657e-05 0.0005319217825893859 1.437179988600311e-06 0.015039734080204816 4.0635306846657e-05 0.01931263180928451 7.916932084149768e-05']
['59866.345493547284 0.034167126631455685 6.781805893478258e-05 0.014990753840947342 4.060318244952449e-05 0.0005301894609912413 1.4360438204675364e-06 0.014990753840947342 4.060318244952449e-05 0.019176372790508343 7.904370653449279e-05']
['59866.34552508524 0.03425093488155274 6.7885175190645e-05 0.015066854336847823 4.0651940582502504e-05 0.0005328809654566426 1.4377682866629549e-06 0.015066854336847822 4.0651940582502504e-05 0.019184080544704916 7.912633748498585e-05']
['59866.34555662321 0.03426391199705961 6.789345169615643e-05 0.015043707111526203 4.065158690822922e-05 0.000532062299828021 1.4377557779943242e-06 0.015043707111526205 4.065158690822922e-05 0.019220204885533405 7.913325660792458e-05']
['59866.345588161166 0.034271918126231656 6.788662793692955e-05 0.01505103230790209 4.063735498287867e-05 0.0005323213756529856 1.4372524266011564e-06 0.015051032307902088 4.063735498287867e-05 0.019220885818329567 7.91200914600811e-05']
['59866.34561969913 0.034357399551147846 6.793968491163476e-05 0.015109471013962634 4.067686317540681e-05 0.0005343882220835256 1.4386497430752631e-06 0.015109471013962634 4.067686317540681e-05 0.01924792853718521 7.91859077341605e-05']
['59866.3456512371 0.03421524205522565 6.784053014122881e-05 0.014990486048521153 4.061061229305786e-05 0.0005301799897716079 1.4363065974285887e-06 0.014990486048521155 4.061061229305786e-05 0.019224756006704494 7.906680315189199e-05']
['59866.345682775056 0.03421298314202178 6.781213850727658e-05 0.015082684437842764 4.0650688366557534e-05 0.0005334408407506402 1.4377239985835191e-06 0.015082684437842764 4.0650688366557534e-05 0.019130298704179014 7.906304189445939e-05']
['59866.34571431302 0.034236507650477414 6.786388614340685e-05 0.015098494377381028 4.065648085748723e-05 0.0005340000029789732 1.4379288660422472e-06 0.015098494377381028 4.065648085748723e-05 0.019138013273096388 7.911040688936262e-05']
['59866.34574585098 0.034313231941146945 6.789878775373492e-05 0.015049150293199363 4.0635585007645624e-05 0.0005322548129990055 1.4371898265328256e-06 0.015049150293199363 4.0635585007645624e-05 0.01926408164794758 7.912961612026395e-05']
['59866.345777388946 0.03435029928993667 6.793663735641982e-05 0.015020127068843675 4.062677369337549e-05 0.0005312283264166338 1.4368781900392191e-06 0.015020127068843675 4.062677369337549e-05 0.019330172221092998 7.915757345971669e-05']
['59866.34580892691 0.034273373374947694 6.788292059352314e-05 0.015099014133405267 4.067186213691179e-05 0.0005340183855879642 1.4384728675203576e-06 0.015099014133405267 4.067186213691179e-05 0.019174359241542427 7.913464018993532e-05']
['59866.34584046487 0.03429683002629218 6.788163779377226e-05 0.01510580564390791 4.0666960829701257e-05 0.00053425858613631 1.438299519238098e-06 0.01510580564390791 4.0666960829701257e-05 0.019191024382384268 7.913102079898468e-05']
['59866.345872002836 0.034109518231007316 6.777630942828846e-05 0.014991896025614038 4.061949052126639e-05 0.0005302298575102698 1.4366206005186522e-06 0.014991896025614038 4.061949052126639e-05 0.01911762220539328 7.901627129855188e-05']
['59866.3459035408 0.03416560448393177 6.778522780669047e-05 0.015014871773969722 4.062113418143677e-05 0.0005310424583818349 1.4366787331055142e-06 0.015014871773969724 4.062113418143677e-05 0.019150732709962048 7.902476606097112e-05']
['59866.34593507876 0.034283440857938455 6.789300355436983e-05 0.01510081134649973 4.066311843751199e-05 0.0005340819489985805 1.4381636224136045e-06 0.015100811346499732 4.066311843751199e-05 0.019182629511438724 7.913879663412126e-05']
['59866.345966616725 0.03423249926940685 6.782964163252785e-05 0.01503783719260478 4.063607857918617e-05 0.0005318546939142669 1.4372072830551472e-06 0.01503783719260478 4.063607857918617e-05 0.019194662076802073 7.90705455039419e-05']
['59866.345998154684 0.0343052373053676 6.790926577411162e-05 0.015040912547570846 4.062990175236345e-05 0.0005319634623464028 1.436988822494823e-06 0.015040912547570846 4.062990175236345e-05 0.019264324757796755 7.913568913193108e-05']
['59866.34602969265 0.03419391230911737 6.779094555181707e-05 0.014984307676396661 4.0596846254424353e-05 0.0005299614745574136 1.4358197234074071e-06 0.014984307676396661 4.0596846254424353e-05 0.019209604632720707 7.9017189424927e-05']
['59866.346061230615 0.03431407021481945 6.790409205824183e-05 0.015058277952991413 4.063432193823033e-05 0.0005325776379267313 1.4371451545904007e-06 0.015058277952991415 4.063432193823033e-05 0.019255792261828032 7.913351905250977e-05']
['59866.346092768574 0.03422347807371281 6.783269319447866e-05 0.015008029916757735 4.0618456738771644e-05 0.0005308004771828978 1.436584037942181e-06 0.015008029916757735 4.0618456738771644e-05 0.019215448156955073 7.906410875900477e-05']
['59866.34612430654 0.03437464587123121 6.79594944220593e-05 0.015105013200449581 4.067932937213533e-05 0.0005342305591821958 1.4387369669419256e-06 0.015105013200449581 4.067932937213533e-05 0.019269632670781627 7.920417110398025e-05']
['59866.346155844505 0.03431597172354663 6.79134159873513e-05 0.015133304088544042 4.069128440048471e-05 0.0005352311446676832 1.4391597895767272e-06 0.015133304088544042 4.069128440048471e-05 0.019182667635002593 7.917078184047542e-05']
['59866.34618738246 0.03429612453383462 6.790206661271964e-05 0.01509183569533772 4.0667340844149687e-05 0.0005337645002763798 1.4383129594998565e-06 0.015091835695337718 4.0667340844149687e-05 0.019204288838496904 7.914874137731099e-05']
['59866.34621892043 0.03432333445184526 6.791990594052198e-05 0.014988840009241201 4.060508376483415e-05 0.0005301217730409572 1.4361110657408494e-06 0.014988840009241203 4.060508376483415e-05 0.019334494442604058 7.913208230874852e-05']
['59866.34625045839 0.03425053252494176 6.78602346291383e-05 0.015066720590579789 4.062775329161032e-05 0.0005328762351500476 1.436912836239512e-06 0.01506672059057979 4.062775329161032e-05 0.019183811934361965 7.909251406704464e-05']
['59866.34628199635 0.034298760720793055 6.791252602684301e-05 0.01508494652790326 4.0668308950346965e-05 0.0005335208458206062 1.4383471992524644e-06 0.015084946527903261 4.0668308950346965e-05 0.019213814192889794 7.915821210858354e-05']
['59866.34631353432 0.03436761689266776 6.794231931502324e-05 0.015094723066665218 4.0643652131548114e-05 0.0005338666201473383 1.4374751426762957e-06 0.015094723066665218 4.0643652131548114e-05 0.019272893826002543 7.917111349788429e-05']
['59866.34634507228 0.034228091071706525 6.783868769090608e-05 0.015126982754706832 4.068822346865777e-05 0.0005350075732172107 1.4390515312587884e-06 0.015126982754706832 4.068822346865777e-05 0.019101108316999692 7.910511409927757e-05']
['59866.34637661024 0.03422608015755779 6.787127486534912e-05 0.014996598556343886 4.061637107654281e-05 0.0005303961755126469 1.4365102727303278e-06 0.014996598556343886 4.061637107654281e-05 0.019229481601213905 7.909614119080143e-05']
['59866.34640814821 0.034212424101057605 6.78547172580312e-05 0.01503339932511882 4.063314465679223e-05 0.0005316977364593386 1.437103516777004e-06 0.015033399325118822 4.063314465679223e-05 0.01917902477593878 7.909054999724784e-05']
['59866.34643968617 0.03421106484443753 6.7856931809544e-05 0.015011639195251891 4.062598572474138e-05 0.0005309281292969734 1.436850321349637e-06 0.01501163919525189 4.062598572474138e-05 0.019199425649185642 7.908877234293117e-05']
['59866.34647122413 0.03428722225897642 6.788040782407244e-05 0.015062347677117375 4.063265144849408e-05 0.0005327215749737684 1.4370860731017542e-06 0.015062347677117373 4.063265144849408e-05 0.01922487458185905 7.911233867164591e-05']
['59866.34650276209 0.03448139331316141 6.805868417149366e-05 0.015115287685425118 4.067388968451833e-05 0.000534593944753658 1.4385445773478988e-06 0.015115287685425118 4.067388968451833e-05 0.019366105627736295 7.928650448357204e-05']
['59866.34653430006 0.03428615216652648 6.78809855933202e-05 0.015064831328281616 4.063173523404053e-05 0.000532809416164814 1.437053668644151e-06 0.015064831328281616 4.063173523404053e-05 0.019221320838244862 7.911236384567025e-05']
['59866.34656583802 0.034224650091824495 6.785518675267834e-05 0.01500065032033583 4.062148547152859e-05 0.0005305394773498824 1.4366911574509747e-06 0.015000650320335832 4.062148547152859e-05 0.019223999771488663 7.908496349594189e-05']
['59866.34659737598 0.03423971871189173 6.783169194774706e-05 0.01497061492183957 4.060245058645221e-05 0.0005294771924302347 1.4360179361062878e-06 0.014970614921839572 4.060245058645221e-05 0.01926910379005216 7.905502783580148e-05']
['59866.34662891395 0.034221805062183315 6.784385576880389e-05 0.01500135530924038 4.060543043780902e-05 0.0005305644112318788 1.4361233267892022e-06 0.015001355309240379 4.060543043780902e-05 0.019220449752942938 7.906699530536122e-05']
['59866.34666045191 0.03434495662681678 6.79184945264726e-05 0.015042163161760616 4.063622505293786e-05 0.0005320076937753368 1.437212463504395e-06 0.015042163161760618 4.063622505293786e-05 0.019302793465056166 7.914685518260029e-05']
['59866.34669198987 0.03427036146951357 6.786790752927567e-05 0.015111235252663066 4.066229124890865e-05 0.0005344506192635185 1.4381343666013622e-06 0.015111235252663068 4.066229124890865e-05 0.019159126216850505 7.91168427202033e-05']
['59866.34672352784 0.03441595703485392 6.801726132260733e-05 0.014984803238862017 4.0608544177300526e-05 0.0005299790014942963 1.4362334527962185e-06 0.014984803238862017 4.0608544177300526e-05 0.019431153795991904 7.921743304366549e-05']
['59866.346755065795 0.03423092042759691 6.787510990658941e-05 0.015046997747387712 4.062324543195964e-05 0.0005321786822643042 1.436753403318141e-06 0.015046997747387714 4.062324543195964e-05 0.019183922680209194 7.910296210798191e-05']
['59866.34678660376 0.034267121387807964 6.788400268187389e-05 0.014966880485533667 4.060313250028819e-05 0.0005293451137640689 1.4360420538746785e-06 0.014966880485533669 4.060313250028819e-05 0.019300240902274293 7.910026668064161e-05']
['59866.34681814173 0.03438661036075821 6.796534904394281e-05 0.015063820458231092 4.063923235882246e-05 0.0005327736639502885 1.4373188251926e-06 0.01506382045823109 4.063923235882246e-05 0.019322789902527122 7.918860951790567e-05']
['59866.346849679685 0.034351055396985956 6.794037453245155e-05 0.015117983137280131 4.0692418707764074e-05 0.0005346892768617895 1.4391999074901709e-06 0.015117983137280133 4.0692418707764074e-05 0.019233072259705823 7.919449117140521e-05']
['59866.34688121765 0.0342666542429125 6.787962625248834e-05 0.015115625443972547 4.0674267634934475e-05 0.0005346058905186347 1.4385579446094482e-06 0.015115625443972549 4.0674267634934475e-05 0.019151028798939956 7.913305066668277e-05']
['59866.346912755616 0.034258359729616404 6.784748184160968e-05 0.014996011301652158 4.06168608445293e-05 0.0005303754056266375 1.4365275947294428e-06 0.014996011301652158 4.06168608445293e-05 0.019262348427964246 7.907597724411259e-05']
['59866.346944293575 0.03419436386637847 6.786435905146079e-05 0.015027421710700237 4.063387252340044e-05 0.0005314863215965353 1.4371292597922506e-06 0.015027421710700237 4.063387252340044e-05 0.01916694215567823 7.909919611294128e-05']
['59866.34697583154 0.034119422035003094 6.778094298441934e-05 0.014964004913284496 4.059885513538608e-05 0.0005292434112001414 1.4358907730374388e-06 0.014964004913284496 4.059885513538608e-05 0.019155417121718598 7.900964036218093e-05']
['59866.3470073695 0.03418673931495758 6.785241644722043e-05 0.015016193786391905 4.063891329040313e-05 0.0005310892150066836 1.4373075404556843e-06 0.015016193786391905 4.063891329040313e-05 0.019170545528565675 7.909153994677266e-05']
['59866.347038907465 0.03427580574975567 6.788747537704522e-05 0.015030615153002304 4.0625111386293253e-05 0.0005315992665138359 1.4368193979527582e-06 0.015030615153002302 4.0625111386293253e-05 0.019245190596753364 7.911453082852514e-05']
['59866.34707044543 0.034292488420787595 6.790604820169917e-05 0.014962017610776876 4.058366651190619e-05 0.0005291731247518066 1.4353535853695308e-06 0.014962017610776876 4.058366651190619e-05 0.01933047081001072 7.91091990221182e-05']
['59866.34710198339 0.03414481426187857 6.779244303831433e-05 0.014966369506588842 4.059054095615643e-05 0.0005293270415807611 1.435596719099183e-06 0.014966369506588842 4.059054095615643e-05 0.01917844475528973 7.901523491211366e-05']
['59866.347133521354 0.034355393871963937 6.794074785732302e-05 0.015075765277160447 4.064043408018604e-05 0.0005331961255007206 1.4373613273915408e-06 0.015075765277160447 4.064043408018604e-05 0.01927962859480349 7.916811290941757e-05']
['59866.34716505932 0.034179333983875355 6.782598391693333e-05 0.01507524550977439 4.065127809680862e-05 0.0005331777424898875 1.4377448560245304e-06 0.01507524550977439 4.065127809680862e-05 0.019104088474100965 7.907522055109408e-05']
['59866.34719659728 0.03432748764308291 6.791477729262568e-05 0.01502032672042229 4.061120900537164e-05 0.0005312353876467744 1.4363277018095536e-06 0.015020326720422292 4.061120900537164e-05 0.01930716092266062 7.913082377673648e-05']
['59866.347228135244 0.034201689695791036 6.783578320468994e-05 0.015060215703175079 4.0649136786863564e-05 0.0005326461718201108 1.43766912267732e-06 0.01506021570317508 4.0649136786863564e-05 0.019141473992615954 7.908252527904529e-05']
['59866.3472596732 0.034233754185663864 6.784622000639765e-05 0.014962014931774055 4.058087233812249e-05 0.000529173030001464 1.435254761687412e-06 0.014962014931774053 4.058087233812249e-05 0.01927173925388981 7.905641510263103e-05']
['59866.34729121117 0.034325558261392095 6.791248474577558e-05 0.015128521065915826 4.06735585843764e-05 0.0005350619798467496 1.438532867075844e-06 0.015128521065915827 4.06735585843764e-05 0.019197037195476267 7.916087387252557e-05']
['59866.347322749134 0.03419679520044745 6.784358523564344e-05 0.01499241535722252 4.060181856159186e-05 0.000530248225108624 1.4359955827994695e-06 0.014992415357222521 4.060181856159186e-05 0.01920437984322493 7.906490832306353e-05']
['59866.34735428709 0.03430234025377217 6.792782708432966e-05 0.014997170295437954 4.062369650835303e-05 0.0005304163966466424 1.4367693568820787e-06 0.014997170295437954 4.062369650835303e-05 0.019305169958334215 7.914843277286901e-05']
['59866.34738582506 0.034295164550242056 6.788914054836308e-05 0.01507535406093903 4.0654334143640214e-05 0.0005331815817019833 1.4378529415711013e-06 0.015075354060939032 4.0654334143640214e-05 0.019219810489303026 7.913096921596593e-05']
['59866.347417363024 0.034337161655706105 6.795877532851713e-05 0.01501333451953346 4.062655903188663e-05 0.0005309880891279857 1.4368705979420985e-06 0.015013334519533461 4.062655903188663e-05 0.019323827136172644 7.917646394556426e-05']
['59866.34744890098 0.03431391472132768 6.788066948387453e-05 0.01503692891923397 4.062812209263643e-05 0.0005318225703150128 1.4369258799075836e-06 0.01503692891923397 4.062812209263643e-05 0.019276985802093707 7.911023697571122e-05']
['59866.34748043895 0.034432894590961174 6.80126939296565e-05 0.015015757966461742 4.0618045726889096e-05 0.0005310738010297539 1.4365695013704526e-06 0.01501575796646174 4.0618045726889096e-05 0.019417136624499433 7.921838280500802e-05']
['59866.34751197691 0.03438027368194616 6.793627684438247e-05 0.015061057919903375 4.0652667770840674e-05 0.000532675959143547 1.4377940056893057e-06 0.015061057919903375 4.0652667770840674e-05 0.019319215762042787 7.917055708003403e-05']
['59866.34754351487 0.03430763738206861 6.78880823921108e-05 0.015056903269448163 4.063894275089002e-05 0.0005325290184420434 1.4373085824072653e-06 0.015056903269448162 4.063894275089002e-05 0.019250734112620446 7.91221549174954e-05']
['59866.34757505284 0.03434861970686278 6.795322787439946e-05 0.015056069661573955 4.0637629034733174e-05 0.0005324995355945366 1.4372621192027804e-06 0.015056069661573954 4.0637629034733174e-05 0.019292550045288827 7.917738358972623e-05']
['59866.347606590796 0.0342741901790656 6.789204148923836e-05 0.015135299174490344 4.070758150581759e-05 0.0005353017063988492 1.4397361817704644e-06 0.015135299174490345 4.070758150581759e-05 0.019138891004575255 7.916082673664573e-05']
['59866.34763812876 0.034289523320221636 6.791974795444656e-05 0.01502464912567396 4.0627837580769054e-05 0.0005313882614605188 1.4369158173586812e-06 0.015024649125673962 4.0627837580769054e-05 0.019264874194547674 7.914362481390967e-05']
['59866.34766966673 0.03415737296564777 6.778785148977462e-05 0.01503572412197133 4.0640366922710325e-05 0.0005317799593283967 1.4373589521817129e-06 0.015035724121971331 4.0640366922710325e-05 0.01912164884367644 7.903690424866265e-05']
['59866.347701204686 0.03429296175393767 6.78955226007675e-05 0.01498465035654339 4.060480392582685e-05 0.0005299735943883584 1.4361011684605645e-06 0.014984650356543392 4.060480392582685e-05 0.01930831139739428 7.911101118735731e-05']
['59866.34773274265 0.034281079233990694 6.790904482690543e-05 0.014986371324425322 4.06065527387336e-05 0.0005300344611762054 1.4361630200647095e-06 0.014986371324425322 4.06065527387336e-05 0.019294707909565372 7.912351417010118e-05']
['59866.34776428061 0.03429044065468096 6.787194474153769e-05 0.015045177120889075 4.0630912785943586e-05 0.0005321142907739081 1.4370245804930255e-06 0.015045177120889075 4.0630912785943586e-05 0.019245263533791884 7.910418419285607e-05']
['59866.347795818576 0.0343230122793331 6.790958937521377e-05 0.01500418647852752 4.060369282835711e-05 0.000530664543362274 1.4360618714262166e-06 0.01500418647852752 4.060369282835711e-05 0.01931882580080558 7.912251386558522e-05']
['59866.34782735654 0.03429483408062105 6.790282422790384e-05 0.015049008135696668 4.064401712791778e-05 0.0005322497852058385 1.437488051782172e-06 0.01504900813569667 4.064401712791778e-05 0.019245825944924376 7.913741003103449e-05']
['59866.3478588945 0.03425477990209248 6.787716332743644e-05 0.01508648408127534 4.0665774211564193e-05 0.000533575225647147 1.4382575512065254e-06 0.01508648408127534 4.0665774211564193e-05 0.019168295820817145 7.912657261379014e-05']
['59866.347890432466 0.03425774309416759 6.788166387928497e-05 0.015132518420729114 4.068061174536512e-05 0.0005352033573529333 1.438782321617128e-06 0.015132518420729112 4.068061174536512e-05 0.01912522467343848 7.913805950993086e-05']
['59866.34792197043 0.034207983505076096 6.780996441113843e-05 0.015045403776741663 4.063427981384569e-05 0.0005321223070848682 1.4371436647450582e-06 0.015045403776741665 4.063427981384569e-05 0.019162579728334433 7.905274169457861e-05']
['59866.34795350839 0.034257431233549594 6.787246816419814e-05 0.014983435743119623 4.060646053368217e-05 0.000529930636226061 1.4361597589781067e-06 0.014983435743119623 4.060646053368217e-05 0.01927399549042997 7.909207654230339e-05']
['59866.347985046355 0.03418565065825179 6.779850417913741e-05 0.015083797561655931 4.064258126517839e-05 0.0005334802094522265 1.4374372685260442e-06 0.015083797561655931 4.064258126517839e-05 0.01910185309659586 7.904717946154147e-05']
['59866.348016584314 0.03428987494513008 6.789670517785382e-05 0.015057533543950098 4.062668414231021e-05 0.0005325513098425963 1.4368750228181752e-06 0.0150575335439501 4.062668414231021e-05 0.019232341401179985 7.912325851737554e-05']
['59866.34804812228 0.034209764472845544 6.781635529609185e-05 0.01503344174554733 4.064665932274234e-05 0.0005316992367750909 1.4375815003081589e-06 0.01503344174554733 4.064665932274234e-05 0.019176322727298214 7.906458726727688e-05']
['59866.348079660245 0.034250778230605405 6.786500230371903e-05 0.015026101863359113 4.063040526167566e-05 0.000531439641545765 1.4370066304939188e-06 0.015026101863359113 4.063040526167566e-05 0.019224676367246292 7.909796691073539e-05']
['59866.348111198204 0.03414515735947046 6.78103823546125e-05 0.015068054915348749 4.065213521366437e-05 0.0005329234272350853 1.4377751703321751e-06 0.015068054915348749 4.065213521366437e-05 0.019077102444121714 7.906227958077603e-05']
['59866.34814273617 0.034265996751267944 6.788677318502133e-05 0.015091088878424749 4.064989212559691e-05 0.0005337380870312057 1.4376958373202357e-06 0.015091088878424749 4.064989212559691e-05 0.019174907872843195 7.912665608565294e-05']
['59866.348174274135 0.03438802110428786 6.796534532609262e-05 0.01505294654367709 4.063308827011271e-05 0.0005323890778942823 1.4371015225061663e-06 0.01505294654367709 4.063308827011271e-05 0.01933507456061077 7.918545338420303e-05']
['59866.34820581209 0.03434815888760888 6.795422231372802e-05 0.014975133719176404 4.060828731686988e-05 0.0005296370121931208 1.436224368216836e-06 0.014975133719176402 4.060828731686988e-05 0.01937302516843248 7.916318165077137e-05']
['59866.34823735006 0.034293105225075164 6.785074213606718e-05 0.015119946398034467 4.068126593205165e-05 0.0005347587130070408 1.4388054587382091e-06 0.015119946398034467 4.068126593205165e-05 0.019173158827040696 7.911187399025122e-05']
['59866.34826888802 0.03421030878021739 6.784867469948356e-05 0.015076481116408328 4.064090114920407e-05 0.0005332214431351116 1.4373778465788707e-06 0.015076481116408327 4.064090114920407e-05 0.019133827663809066 7.908935139888123e-05']
['59866.34830042598 0.034170712847074285 6.781390644505241e-05 0.014987475951973967 4.0614179920639674e-05 0.0005300735293839037 1.436432776442979e-06 0.014987475951973967 4.0614179920639674e-05 0.01918323689510032 7.904579380311398e-05']
['59866.34833196395 0.03430421263969868 6.7902807351469e-05 0.014945789268450312 4.0575766847165e-05 0.0005285991645519266 1.4350741918823465e-06 0.014945789268450313 4.0575766847165e-05 0.019358423371248365 7.910236470198731e-05']
['59866.34836350191 0.03420447602191441 6.783619869643563e-05 0.01498559501595263 4.059815242549173e-05 0.0005300070048804736 1.4358659197589399e-06 0.014985595015952629 4.059815242549173e-05 0.019218881005961783 7.905668747136927e-05']
['59866.34839503987 0.034176249984615895 6.783936639185884e-05 0.01504011640282951 4.062535472263797e-05 0.0005319353044861805 1.4368280042154463e-06 0.01504011640282951 4.062535472263797e-05 0.019136133581786383 7.907337781319975e-05']
['59866.34842657784 0.0343583429924344 6.79445901892667e-05 0.015038298206853474 4.062478568540267e-05 0.000531870998957937 1.4368078786401572e-06 0.015038298206853476 4.062478568540267e-05 0.01932004478558092 7.916337883120133e-05']
['59866.3484581158 0.03425047751331615 6.785356484186603e-05 0.015106074932077747 4.066309921473122e-05 0.0005342681102570534 1.4381629425468092e-06 0.015106074932077747 4.066309921473122e-05 0.019144402581238402 7.910495496172407e-05']
['59866.34848965376 0.03421858650564935 6.78311065436256e-05 0.014999827799428898 4.062132287581672e-05 0.0005305103866236302 1.436685406804026e-06 0.014999827799428898 4.062132287581672e-05 0.019218758706220453 7.906422001837518e-05']
['59866.34852119172 0.03436140644088456 6.793049599644432e-05 0.015047167834003266 4.063095679641886e-05 0.0005321846978477751 1.437026137045178e-06 0.015047167834003268 4.063095679641886e-05 0.019314238606881293 7.915444988448467e-05']
['59866.34855272969 0.03431435317292719 6.788946314009629e-05 0.015138888426115079 4.069485356438461e-05 0.0005354286502073107 1.439286022927255e-06 0.015138888426115079 4.069485356438461e-05 0.019175464746812115 7.915207080094115e-05']
['59866.34858426765 0.03433019165894179 6.789990160559207e-05 0.015077134822779576 4.064650578910431e-05 0.0005332445632685149 1.4375760701665091e-06 0.015077134822779578 4.064650578910431e-05 0.019253056836162213 7.913618054286405e-05']
['59866.34861580561 0.034273231440204215 6.787929679045451e-05 0.015054144264197504 4.066104876068182e-05 0.0005324314385923415 1.4380904225695772e-06 0.015054144264197504 4.066104876068182e-05 0.019219087176006712 7.912597436420706e-05']
['59866.34864734358 0.034232451528293906 6.785009317962437e-05 0.015096708155415245 4.064968470262297e-05 0.0005339368283000146 1.4376885012332105e-06 0.015096708155415245 4.064968470262297e-05 0.019135743372878662 7.909508209052172e-05']
['59866.34867888154 0.0342566966992474 6.786039648787314e-05 0.01497468552415895 4.0604424993847175e-05 0.0005296211605370104 1.4360877664833066e-06 0.014974685524158952 4.0604424993847175e-05 0.019282011175088445 7.908067235786697e-05']
['59866.3487104195 0.034246059721055426 6.786263298113139e-05 0.015067974971961974 4.064927623851619e-05 0.0005329205998161581 1.4376740547706172e-06 0.015067974971961976 4.064927623851619e-05 0.019178084749093452 7.910562947001268e-05']
['59866.34874195747 0.03431698599211383 6.791538925192112e-05 0.015101591918918383 4.066441819693236e-05 0.0005341095561005515 1.4382095919995118e-06 0.015101591918918383 4.066441819693236e-05 0.019215394073195446 7.915866980018655e-05']
['59866.348773495425 0.03436436885667923 6.797312328413614e-05 0.015110357524435685 4.0667647061218803e-05 0.0005344195759777232 1.4383237897132363e-06 0.015110357524435685 4.0667647061218803e-05 0.01925401133224354 7.92098668506407e-05']
['59866.34880503339 0.03424575545607365 6.785090214689909e-05 0.015033660070242632 4.062952448450597e-05 0.0005317069584316367 1.436975479373848e-06 0.015033660070242632 4.062952448450597e-05 0.019212095385831015 7.908541699950217e-05']
['59866.34883657136 0.034288773500014226 6.79031787623413e-05 0.01498654080975638 4.060032106667576e-05 0.0005300404554935875 1.435942619750991e-06 0.01498654080975638 4.060032106667576e-05 0.019302232690257846 7.911528143631694e-05']
['59866.348868109315 0.034131593308814254 6.777553359501592e-05 0.014981186627037095 4.060657724669075e-05 0.0005298510900167005 1.436163886856382e-06 0.014981186627037095 4.060657724669075e-05 0.019150406681777157 7.900896828702799e-05']
['59866.34889964728 0.03432710723531428 6.794570425419179e-05 0.014962859053562007 4.059520670895099e-05 0.0005292028847026027 1.4357617363481828e-06 0.014962859053562007 4.059520670895099e-05 0.01936424818175227 7.914916003559706e-05']
['59866.348931185246 0.0341836901115765 6.782337554839473e-05 0.014981307039839726 4.0585277028962086e-05 0.0005298553487484228 1.435410545758504e-06 0.014981307039839726 4.0585277028962086e-05 0.019202383071736773 7.903907250402289e-05']
['59866.348962723205 0.034295086135836636 6.790477874421703e-05 0.015001546256645038 4.060853556904553e-05 0.0005305711646148392 1.4362331483414776e-06 0.015001546256645036 4.060853556904553e-05 0.0192935398791916 7.912087042850011e-05']
['59866.34899426117 0.034324940018741035 6.792555639859762e-05 0.015092642044334803 4.0656658306959914e-05 0.0005337930190383227 1.4379351420335199e-06 0.015092642044334801 4.0656658306959914e-05 0.01923229797440623 7.916340743517777e-05']
['59866.34902579913 0.034187831912583594 6.78154846176943e-05 0.014990095748351157 4.0615038361553974e-05 0.0005301661857268647 1.4364631375796153e-06 0.014990095748351159 4.0615038361553974e-05 0.019197736164232433 7.90475887996796e-05']
['59866.349057337095 0.03435673699049685 6.796481602483141e-05 0.015140055400224228 4.068746271891716e-05 0.0005354699234735177 1.4390246252406389e-06 0.015140055400224228 4.068746271891716e-05 0.019216681590272622 7.921291460230745e-05']
['59866.34908887506 0.03437402037628775 6.795302346097384e-05 0.015047659491910313 4.063175639065723e-05 0.0005322020866891566 1.4370544169064015e-06 0.015047659491910313 4.063175639065723e-05 0.019326360884377437 7.917419418521021e-05']
['59866.34912041302 0.03417665668443814 6.781649804639449e-05 0.015008287326473115 4.061392324786718e-05 0.0005308095811892539 1.436423698500646e-06 0.015008287326473113 4.061392324786718e-05 0.019168369357965023 7.904788529024843e-05']
['59866.349151950984 0.03434546015626231 6.794577256815275e-05 0.015062866378803292 4.065486570131578e-05 0.0005327399202931692 1.4378717415781247e-06 0.01506286637880329 4.065486570131578e-05 0.01928259377745902 7.917983401772929e-05']
['59866.34918348895 0.03421955583379572 6.785008845876063e-05 0.01504836925399024 4.065693568969212e-05 0.0005322271893876987 1.437944952440844e-06 0.01504836925399024 4.065693568969212e-05 0.01917118657980548 7.909880481737638e-05']
['59866.34921502691 0.034268899762882166 6.787150440686288e-05 0.01501828108188529 4.061827705238706e-05 0.0005311630379834537 1.4365776828363335e-06 0.01501828108188529 4.061827705238706e-05 0.019250618680996874 7.909731690237842e-05']
['59866.349246564874 0.03426300749339284 6.789326456742626e-05 0.015023398305151483 4.062363727845018e-05 0.000531344022734058 1.4367672620527858e-06 0.015023398305151483 4.062363727845018e-05 0.019239609188241358 7.911874164414917e-05']
['59866.34927810283 0.034365385703864104 6.796127641789008e-05 0.01511494932659604 4.066493365246668e-05 0.0005345819777580609 1.4382278225097855e-06 0.015114949326596037 4.066493365246668e-05 0.019250436377268067 7.919830756593463e-05']
['59866.3493096408 0.0342113203281821 6.787326877031454e-05 0.014951615260970143 4.058967662366182e-05 0.000528805216887026 1.4355661495905181e-06 0.014951615260970141 4.058967662366182e-05 0.01925970506721196 7.908414798163278e-05']
['59866.349341178764 0.03418491761107825 6.78306635369659e-05 0.015017814243752595 4.063212451389282e-05 0.0005311465269620221 1.4370674366025373e-06 0.015017814243752595 4.063212451389282e-05 0.019167103367325657 7.906939014800585e-05']
['59866.34937271672 0.034382577541280795 6.798207512274456e-05 0.015054666827774678 4.0654813381475475e-05 0.0005324499204982053 1.437869891142301e-06 0.01505466682777468 4.0654813381475475e-05 0.019327910713506116 7.921096129373183e-05']
['59866.34940425469 0.034268817080095944 6.786671387987633e-05 0.015122885686344185 4.068129403069267e-05 0.0005348626690656327 1.4388064525243452e-06 0.015122885686344185 4.068129403069267e-05 0.01914593139375176 7.912558711860955e-05']
['59866.349435792654 0.03432343080410822 6.792498329966476e-05 0.015128831680914273 4.067459883948047e-05 0.000535072965605061 1.4385696585740413e-06 0.015128831680914273 4.067459883948047e-05 0.019194599123193948 7.917213112587285e-05']
['59866.34946733061 0.03420557806883455 6.78615813853968e-05 0.014981514212158589 4.061145128195855e-05 0.0005298626759703381 1.4363362705909761e-06 0.014981514212158587 4.061145128195855e-05 0.019224063856675962 7.908529701122533e-05']
['59866.34949886858 0.034321891077948495 6.790972598955743e-05 0.015079884961596547 4.06435959978052e-05 0.0005333418295322726 1.4374731573512605e-06 0.015079884961596547 4.06435959978052e-05 0.019242006116351948 7.914311580680646e-05']
['59866.349530406536 0.03433970687862917 6.79329170170429e-05 0.015038736903305544 4.064169660900546e-05 0.0005318865146710178 1.4374059802142977e-06 0.015038736903305544 4.064169660900546e-05 0.01930096997532362 7.916204088894425e-05']
['59866.3495619445 0.03417081983969477 6.780577243402292e-05 0.014987029458820975 4.0612778373963296e-05 0.0005300577379189358 1.436383206869308e-06 0.014987029458820975 4.0612778373963296e-05 0.019183790380873797 7.903809551492977e-05']
['59866.34959348247 0.03430152453964023 6.788377472024407e-05 0.015051852408428624 4.062650000362024e-05 0.0005323503807757923 1.4368685102442367e-06 0.015051852408428624 4.062650000362024e-05 0.019249672131211606 7.911206843973303e-05']
['59866.349625020426 0.034284869715951245 6.78938258995371e-05 0.015067309320444259 4.064506974733673e-05 0.00053289705720962 1.4375252805785544e-06 0.015067309320444257 4.064506974733673e-05 0.01921756039550699 7.913022993801119e-05']
['59866.34965655839 0.03418367766658583 6.78318943474207e-05 0.014984170979978279 4.0596011313847275e-05 0.000529956639910594 1.4357901934251783e-06 0.01498417097997828 4.0596011313847275e-05 0.01919950668660755 7.905189450831434e-05']
['59866.34968809636 0.0342664276126362 6.788654184447746e-05 0.015069739601685285 4.0649987442324166e-05 0.0005329830108257563 1.4376992084598583e-06 0.015069739601685287 4.0649987442324166e-05 0.019196688010950914 7.912650657436546e-05']
['59866.349719634316 0.034194392538413124 6.780882594542943e-05 0.015060689679295735 4.0639170928963124e-05 0.0005326629352962241 1.437316652555763e-06 0.015060689679295736 4.0639170928963124e-05 0.019133702859117387 7.90542793901192e-05']
['59866.34975117228 0.03419427477738255 6.781184987441301e-05 0.015051728041644348 4.062558579150763e-05 0.0005323459822005759 1.4368361766049576e-06 0.015051728041644348 4.062558579150763e-05 0.019142546735738203 7.904989060266355e-05']
['59866.34978271024 0.03435833665459976 6.795217178101624e-05 0.015132529100766014 4.0691180336119566e-05 0.0005352037350819701 1.4391561090527022e-06 0.015132529100766014 4.0691180336119566e-05 0.019225807553833747 7.920397595388343e-05']
['59866.349814248206 0.03427731129301685 6.788795160396465e-05 0.015047911618230983 4.0647039199826604e-05 0.0005322110038336495 1.437594935711654e-06 0.015047911618230983 4.0647039199826604e-05 0.019229399674785867 7.912620153081081e-05']
['59866.34984578617 0.03418293002638561 6.781068426299902e-05 0.015030804960468679 4.062278694575213e-05 0.0005316059795797268 1.4367371876856376e-06 0.015030804960468677 4.062278694575213e-05 0.01915212506591693 7.904745232742238e-05']
['59866.34987732413 0.034276824282644454 6.787541176775708e-05 0.015058490663210104 4.0633155713371934e-05 0.0005325851610117869 1.4371039078235183e-06 0.015058490663210102 4.0633155713371934e-05 0.01921833361943435 7.910831097849143e-05']
['59866.349908862096 0.03433428753098841 6.790919237659975e-05 0.015027083976394271 4.065470775301294e-05 0.000531474376688925 1.437866155299647e-06 0.015027083976394271 4.065470775301294e-05 0.01930720355459414 7.914836493399547e-05']
['59866.34994040006 0.03426324102907835 6.78994066306137e-05 0.015098027049712479 4.066316228994744e-05 0.0005339834746437525 1.4381651733762421e-06 0.015098027049712479 4.066316228994744e-05 0.019165213979365874 7.914431241856885e-05']
['59866.34997193802 0.03425452634379596 6.785300643517393e-05 0.015007548780482096 4.062001101950613e-05 0.0005307834604681048 1.4366390093781465e-06 0.015007548780482098 4.062001101950613e-05 0.01924697756331386 7.90823354328674e-05']
['59866.350003475985 0.034186222867674684 6.781938546597412e-05 0.014989606443314235 4.059662836339955e-05 0.000530148880101241 1.4358120170888177e-06 0.014989606443314235 4.059662836339955e-05 0.01919661642436045 7.904147822161703e-05']
['59866.350035013944 0.034356239955856176 6.791408010466052e-05 0.015089118088353202 4.064519531159283e-05 0.0005336683845908317 1.4375297215056729e-06 0.015089118088353202 4.064519531159283e-05 0.019267121867502974 7.914767323414994e-05']
['59866.35006655191 0.03431786744917814 6.792861492595258e-05 0.015077569120512144 4.064828594065048e-05 0.0005332599234087176 1.4376390301482925e-06 0.015077569120512146 4.064828594065048e-05 0.019240298328665993 7.91617323943282e-05']
['59866.350098089875 0.0342362767933179 6.785565774095001e-05 0.01501374461113031 4.062229547267624e-05 0.0005310025931512656 1.436719805381321e-06 0.01501374461113031 4.062229547267624e-05 0.019222532182187592 7.908578365879902e-05']
['59866.350129627834 0.034250537512276184 6.784236908219474e-05 0.014995156293949345 4.0614906041709216e-05 0.0005303451659150187 1.4364584577224237e-06 0.014995156293949345 4.0614906041709216e-05 0.019255381218326838 7.907058641151968e-05']
['59866.3501611658 0.034188660406812246 6.783865568445264e-05 0.015062472956153369 4.063679118528242e-05 0.0005327260058132894 1.4372324863401905e-06 0.01506247295615337 4.063679118528242e-05 0.019126187450658874 7.907864441750355e-05']
['59866.350192703765 0.03420335753886609 6.784605825638531e-05 0.015038463710279965 4.064522862523556e-05 0.0005318768524442536 1.4375308997347646e-06 0.015038463710279965 4.064522862523556e-05 0.019164893828586122 7.908933070222872e-05']
['59866.35022424172 0.03421002837175063 6.783907280851877e-05 0.015045771934868148 4.064919795285106e-05 0.0005321353280150169 1.4376712859815997e-06 0.015045771934868148 4.064919795285106e-05 0.01916425643688248 7.908537850784798e-05']
['59866.35025577969 0.03429779221135257 6.792082776782268e-05 0.01499242271700242 4.060702968474177e-05 0.0005302484854075908 1.4361798885791071e-06 0.014992422717002418 4.060702968474177e-05 0.01930536949435015 7.913387204278414e-05']
['59866.35028731765 0.034152381830858586 6.778630465510357e-05 0.01496484937873258 4.059473321916931e-05 0.0005292732780557709 1.4357449900727923e-06 0.01496484937873258 4.059473321916931e-05 0.019187532452126004 7.901212225937261e-05']
['59866.35031885561 0.034215933679866736 6.786010342273787e-05 0.015023681269677508 4.062424880045379e-05 0.000531354030556955 1.4367888902193823e-06 0.015023681269677507 4.062424880045379e-05 0.01919225241018923 7.909060138313433e-05']
['59866.35035039358 0.034260388244611126 6.78681298261004e-05 0.015005063112562143 4.062112902966072e-05 0.0005306955479489169 1.4366785508987088e-06 0.015005063112562144 4.062112902966072e-05 0.01925532513204898 7.909588592168851e-05']
['59866.35038193154 0.03425599224725785 6.787779585461898e-05 0.015068239478561916 4.064812745174009e-05 0.0005329299548234606 1.437633424749734e-06 0.015068239478561916 4.064812745174009e-05 0.019187752768695936 7.911804746967809e-05']
['59866.3504134695 0.03422148767239641 6.783070903470044e-05 0.015078234314970275 4.065735414645277e-05 0.0005332834498500795 1.4379597523212723e-06 0.015078234314970275 4.065735414645277e-05 0.019143253357426136 7.908239712059993e-05']
['59866.35044500747 0.034358306028759764 6.794170277212858e-05 0.01505919862529586 4.064827179014469e-05 0.000532610200048558 1.4376385296765275e-06 0.01505919862529586 4.064827179014469e-05 0.019299107403463904 7.917295608414364e-05']
['59866.35047654543 0.03437386748959399 6.79787519111478e-05 0.015007370740257018 4.06081975948405e-05 0.0005307771635832402 1.4362211949491736e-06 0.015007370740257018 4.06081975948405e-05 0.019366496749336975 7.918419301412997e-05']
['59866.35050808339 0.03433607616098138 6.789401070322574e-05 0.014990837526230044 4.0603501998553184e-05 0.0005301924207526649 1.4360551222025312e-06 0.014990837526230046 4.0603501998553184e-05 0.019345238634751336 7.910904539884326e-05']
['59866.35053962135 0.03427768537040173 6.789561894823091e-05 0.015020576331940792 4.0627786124882986e-05 0.0005312442158483348 1.4369139974789883e-06 0.015020576331940792 4.0627786124882986e-05 0.01925710903846094 7.912289224853075e-05']
['59866.35057115932 0.03426383801928141 6.785102789836713e-05 0.01508743815029981 4.065833984966846e-05 0.0005336089689363238 1.4379946144410945e-06 0.015087438150299812 4.065833984966846e-05 0.019176399868981595 7.91003324025641e-05']
['59866.35060269728 0.03419001338378121 6.784426603605683e-05 0.014992388364922915 4.060846462615707e-05 0.0005302472704513112 1.4362306392500608e-06 0.014992388364922914 4.060846462615707e-05 0.0191976250188583 7.906890560305677e-05']
['59866.35063423524 0.03429726142239032 6.791022204114261e-05 0.014979670645754221 4.0604548664912846e-05 0.000529797473146744 1.4360921404525108e-06 0.014979670645754221 4.0604548664912846e-05 0.019317590776636098 7.912349606759403e-05']
['59866.35066577321 0.03428652875772787 6.787907827461103e-05 0.015057909636511773 4.064390400486276e-05 0.0005325646113959853 1.437484050872531e-06 0.015057909636511773 4.064390400486276e-05 0.019228619121216095 7.911697795143132e-05']
['59866.35069731117 0.03426874922496716 6.791030869968156e-05 0.015077141470369534 4.067095959102585e-05 0.0005332447983789152 1.4384409464894431e-06 0.015077141470369532 4.067095959102585e-05 0.019191607754597627 7.915767165436906e-05']
['59866.35072884913 0.03446362109138035 6.801484939721928e-05 0.015015770223530098 4.060878388973089e-05 0.0005310742345348687 1.4362419308891548e-06 0.015015770223530097 4.060878388973089e-05 0.019447850867850253 7.921548502363213e-05']
['59866.3507603871 0.034205599706096886 6.783019419749747e-05 0.01504657286276476 4.063957481873699e-05 0.0005321636550447516 1.437330937234424e-06 0.01504657286276476 4.063957481873699e-05 0.019159026843332125 7.907281635504038e-05']
['59866.350791925055 0.03419675241429081 6.781632142934515e-05 0.014977718785816472 4.058367281307822e-05 0.000529728440222896 1.4353538082279033e-06 0.01497771878581647 4.058367281307822e-05 0.01921903362847434 7.903219566232007e-05']
['59866.35082346302 0.0343571966654659 6.795195456344868e-05 0.014988302603999998 4.0606106748078825e-05 0.0005301027662186059 1.4361472463719806e-06 0.014988302603999998 4.0606106748078825e-05 0.0193688940614659 7.916011643643133e-05']
['59866.35085500099 0.03431874142465997 6.79117221709232e-05 0.015029587240432787 4.0615921835619066e-05 0.0005315629115435015 1.4364943840828492e-06 0.015029587240432787 4.0615921835619066e-05 0.019289154184227178 7.913062058885787e-05']
['59866.350886538945 0.034269720367848186 6.789082310014361e-05 0.015037778255885344 4.0635124243512376e-05 0.0005318526094542162 1.4371735303351797e-06 0.015037778255885344 4.0635124243512376e-05 0.019231942111962844 7.912254535529478e-05']
['59866.35091807691 0.034347585267214584 6.792139375163894e-05 0.015118224437793882 4.066545730849423e-05 0.000534697811121686 1.4382463430531775e-06 0.015118224437793882 4.066545730849423e-05 0.0192293608294207 7.916435528237531e-05']
['59866.350949614876 0.03426928320028723 6.787745759731491e-05 0.01505083017554955 4.0641166352319546e-05 0.0005323142266834155 1.437387226220371e-06 0.01505083017554955 4.0641166352319546e-05 0.01921845302473768 7.91141811077647e-05']
['59866.350981152835 0.034402599365582806 6.79923955615678e-05 0.015007116041661762 4.0603070322187795e-05 0.0005307681554631438 1.4360398547742273e-06 0.01500711604166176 4.0603070322187795e-05 0.019395483323921048 7.9193277326988e-05']
['59866.3510126908 0.03421816607349544 6.783910968166544e-05 0.015032372634631041 4.0623036323681314e-05 0.000531661424711304 1.436746007625666e-06 0.01503237263463104 4.0623036323681314e-05 0.019185793438864403 7.90719664771034e-05']
['59866.35104422876 0.03425153570061942 6.785701878453839e-05 0.015066565240371785 4.064377668255854e-05 0.0005328707407603778 1.4374795477671796e-06 0.015066565240371785 4.064377668255854e-05 0.019184970460247638 7.909798721425776e-05']
['59866.351075766725 0.034244605859380634 6.788024601009123e-05 0.014967874818151303 4.059551016781544e-05 0.000529380281086552 1.4357724690100279e-06 0.014967874818151304 4.059551016781544e-05 0.01927673104122933 7.909313019583756e-05']
['59866.35110730469 0.03431884633565619 6.79038886561093e-05 0.01512430050601673 4.0674441082877454e-05 0.0005349127080755148 1.438564079075558e-06 0.01512430050601673 4.0674441082877454e-05 0.01919454582963946 7.915395285155226e-05']
['59866.35113884265 0.0342050139413004 6.780547151796846e-05 0.014960703260344441 4.0580258508853315e-05 0.0005291266391144117 1.435233051917989e-06 0.014960703260344441 4.0580258508853315e-05 0.01924431068095596 7.90211322901627e-05']
['59866.351170380614 0.03429611922831096 6.787076869447305e-05 0.015054172738024648 4.0649619857587835e-05 0.0005324324456479722 1.437686207809238e-06 0.015054172738024646 4.0649619857587835e-05 0.019241946490286314 7.911278555167339e-05']
['59866.35120191857 0.03429718552132706 6.787102353786598e-05 0.015069650467128264 4.0651789313500405e-05 0.0005329798583356784 1.4377629366164168e-06 0.015069650467128264 4.0651789313500405e-05 0.019227535054198795 7.911411890722657e-05']
['59866.35123345654 0.034385883022970465 6.795098554171495e-05 0.01507286049200779 4.064672106988406e-05 0.0005330933897416839 1.4375836841665647e-06 0.01507286049200779 4.064672106988406e-05 0.019313022530962676 7.918012610386089e-05']
['59866.351264994504 0.03433088046529436 6.793054533437447e-05 0.015015944560890903 4.0614897812173206e-05 0.0005310804004576993 1.436458166662127e-06 0.015015944560890901 4.0614897812173206e-05 0.01931493590440346 7.914625015576401e-05']
['59866.35129653246 0.0341854775314041 6.78231709029926e-05 0.014958274144696694 4.060112402051009e-05 0.0005290407267227048 1.4359710184336152e-06 0.014958274144696694 4.060112402051009e-05 0.019227203386707407 7.904703525791073e-05']
['59866.35132807043 0.03424320088027848 6.786395754407094e-05 0.015079336310743591 4.065318081280056e-05 0.0005333224249777661 1.4378121508368455e-06 0.015079336310743593 4.065318081280056e-05 0.01916386456953489 7.910877223002339e-05']
['59866.351359608394 0.0342800500012397 6.79176094830105e-05 0.01501163401111116 4.0638288869115605e-05 0.0005309279459455017 1.437285456070244e-06 0.015011634011111162 4.0638288869115605e-05 0.01926841599012854 7.914715535062775e-05']
['59866.35139114635 0.03426340185520076 6.787676470221426e-05 0.015015040169656992 4.061766156959096e-05 0.0005310484141609514 1.4365559145853585e-06 0.015015040169656994 4.061766156959096e-05 0.01924836168554377 7.910151463670962e-05']
['59866.35142268432 0.0343050579344882 6.7902964102189e-05 0.015045028904365229 4.063280269368916e-05 0.0005321090486867041 1.4370914223062911e-06 0.015045028904365229 4.063280269368916e-05 0.01926002903012297 7.913177104429952e-05']
['59866.35145422228 0.03409747844742315 6.776444755699821e-05 0.015014875352448347 4.0628711717381364e-05 0.0005310425849446264 1.4369467336170783e-06 0.015014875352448347 4.0628711717381364e-05 0.019082603094974802 7.901083829778826e-05']
['59866.35148576024 0.034323978024514305 6.790929176392788e-05 0.015065308045588479 4.062168643521057e-05 0.0005328262765905572 1.436698265087279e-06 0.01506530804558848 4.062168643521057e-05 0.019258669978925825 7.913149383601231e-05']
['59866.35151729821 0.03427581190568157 6.790402538356021e-05 0.015049372236932831 4.063657395641575e-05 0.0005322626626528432 1.4372248034406543e-06 0.015049372236932831 4.063657395641575e-05 0.019226439668748735 7.91346182540008e-05']
['59866.351548836166 0.03432488958226117 6.793752475416372e-05 0.015012155305393883 4.0615440092844705e-05 0.0005309463829592574 1.4364773459175518e-06 0.015012155305393885 4.0615440092844705e-05 0.019312734276867284 7.915251887121511e-05']
['59866.35158037413 0.03422931639892101 6.785477379541683e-05 0.015028110037230785 4.064123985591499e-05 0.0005315106661676016 1.437389825878271e-06 0.015028110037230787 4.064123985591499e-05 0.019201206361690225 7.909475775203562e-05']
['59866.3516119121 0.03422205346544824 6.7868030567474e-05 0.015082274961706716 4.066053570656575e-05 0.0005334263584948334 1.4380722769921001e-06 0.015082274961706714 4.066053570656575e-05 0.019139778503741524 7.911604601503094e-05']
['59866.351643450056 0.03433311427549319 6.793106913785179e-05 0.015001472890855084 4.062737421967791e-05 0.0005305685698308115 1.4368994293124386e-06 0.015001472890855084 4.062737421967791e-05 0.019331641384638103 7.915310284630255e-05']
['59866.35167498802 0.03434131213095546 6.790783984663828e-05 0.015105371816065099 4.066552308486131e-05 0.0005342432426150579 1.4382486694162797e-06 0.015105371816065099 4.066552308486131e-05 0.019235940314890364 7.915276040923691e-05']
['59866.35170652598 0.03425074585602884 6.78774209976739e-05 0.015037323445828404 4.063150409396801e-05 0.000531836523838943 1.4370454937363536e-06 0.015037323445828405 4.063150409396801e-05 0.01921342241020043 7.910918661087093e-05']
['59866.351738063946 0.03427214554198798 6.78948182264432e-05 0.015040156115461178 4.064745102641981e-05 0.0005319367090332101 1.4376095010978773e-06 0.015040156115461178 4.064745102641981e-05 0.0192319894265268 7.913230450926448e-05']
['59866.35176960191 0.03430892491968101 6.793742223864128e-05 0.015017403803579625 4.062275601442664e-05 0.000531132010610384 1.4367360937137825e-06 0.015017403803579627 4.062275601442664e-05 0.019291521116101384 7.915618514455497e-05']
['59866.35180113987 0.034167678713353695 6.780260049165573e-05 0.015062634565274848 4.063733022149867e-05 0.000532731721566741 1.4372515508464843e-06 0.01506263456527485 4.063733022149867e-05 0.019105044148078846 7.904799327599786e-05']
['59866.351832677836 0.034306369356422076 6.790535665431798e-05 0.015015410693064621 4.062675923720896e-05 0.0005310615187458081 1.4368776787569168e-06 0.015015410693064621 4.062675923720896e-05 0.019290958663357456 7.91307211420967e-05']
['59866.3518642158 0.03433105994392959 6.792434484305568e-05 0.0149634423476863 4.05978917243716e-05 0.0005292235145121934 1.4358566993429535e-06 0.014963442347686302 4.05978917243716e-05 0.019367617596243288 7.91322022619246e-05']
['59866.35189575376 0.034265285306137275 6.787115621585266e-05 0.015045041164224802 4.0640293395611785e-05 0.000532109482290538 1.4373563516925608e-06 0.0150450411642248 4.0640293395611785e-05 0.019220244141912472 7.910832632130502e-05']
['59866.351927291726 0.034129002633180666 6.776787464824495e-05 0.014976723607262736 4.059834940881724e-05 0.0005296932429815437 1.4358728866189314e-06 0.014976723607262737 4.059834940881724e-05 0.01915227902591793 7.899816965639553e-05']
['59866.351958829684 0.03426582117283099 6.787458944793097e-05 0.01508942994837112 4.066167171369927e-05 0.0005336794143826993 1.4381124550255863e-06 0.01508942994837112 4.066167171369927e-05 0.01917639122445987 7.912225628277946e-05']
['59866.35199036765 0.034308200759387994 6.788539431322708e-05 0.015056823364957849 4.0640171548635415e-05 0.000532526192398797 1.4373520422373186e-06 0.015056823364957849 4.0640171548635415e-05 0.019251377394430145 7.912047967855629e-05']
['59866.352021905615 0.034223829818434304 6.785181088490311e-05 0.015018451037105461 4.0626674363050306e-05 0.0005311690489197636 1.4368746769476077e-06 0.015018451037105461 4.0626674363050306e-05 0.019205378781328844 7.908473247196316e-05']
['59866.352053443574 0.03433672485459815 6.792999421469825e-05 0.015088337383142834 4.065389787922125e-05 0.0005336407727923143 1.4378375118735962e-06 0.015088337383142832 4.065389787922125e-05 0.019248387471455318 7.916579770824701e-05']
['59866.35208498154 0.034363897422278245 6.794088696882055e-05 0.015008643820685176 4.061051621900947e-05 0.0005308221895928168 1.43630319950421e-06 0.015008643820685175 4.061051621900947e-05 0.01935525360159307 7.915287834112214e-05']
['59866.352116519505 0.03421594260166948 6.78296697934994e-05 0.014989039380851653 4.0611630581375095e-05 0.0005301288243692496 1.436342612010629e-06 0.014989039380851653 4.0611630581375095e-05 0.019226903220817826 7.905800808756343e-05']
['59866.35214805746 0.03420035137957871 6.785634219180414e-05 0.015013993978471321 4.063081473887098e-05 0.0005310114127168139 1.4370211127871897e-06 0.015013993978471323 4.063081473887098e-05 0.01918635740110739 7.90907471326177e-05']
['59866.35217959543 0.03426326074567637 6.786187497951836e-05 0.015036527064981625 4.062354450927286e-05 0.0005318083576281988 1.436763981014311e-06 0.015036527064981625 4.062354450927286e-05 0.019226733680694746 7.909175964809895e-05']
['59866.35221113339 0.03420962987771537 6.783183222541393e-05 0.015044804769211129 4.064260531556678e-05 0.0005321011215272162 1.437438119134532e-06 0.01504480476921113 4.064260531556678e-05 0.01916482510850424 7.907577903437715e-05']
['59866.35224267135 0.03423323731082962 6.788154808472826e-05 0.015039891205963348 4.064251284893492e-05 0.0005319273397763098 1.4374348487964138e-06 0.01503989120596335 4.064251284893492e-05 0.01919334610486627 7.911838232076738e-05']
['59866.35227420932 0.03420254679345462 6.782500957402794e-05 0.015041064842065759 4.062907704995714e-05 0.0005319688486623297 1.4369596546138134e-06 0.015041064842065759 4.062907704995714e-05 0.019161481951388865 7.906297379714689e-05']
['59866.35230574728 0.034159458825707215 6.779999275252565e-05 0.015014147748805317 4.061483094152538e-05 0.0005310168512298708 1.4364558015967603e-06 0.015014147748805317 4.061483094152538e-05 0.0191453110769019 7.903419202883786e-05']
['59866.35233728524 0.034092723085280066 6.773643004350369e-05 0.015000986942698672 4.061828827730585e-05 0.0005305513829305493 1.436578079836625e-06 0.01500098694269867 4.061828827730585e-05 0.019091736142581396 7.89814490726575e-05']
['59866.35236882321 0.03418175986269739 6.782732230793366e-05 0.014980212801340898 4.0597104943791766e-05 0.0005298166479781983 1.4358288726721958e-06 0.014980212801340896 4.0597104943791766e-05 0.019201547061356496 7.904853307482409e-05']
['59866.35240036117 0.03433821377841311 6.79492702186659e-05 0.015097864231229469 4.06620994957879e-05 0.0005339777161178863 1.4381275847220244e-06 0.015097864231229469 4.06620994957879e-05 0.019240349547183642 7.918654973323835e-05']
['59866.35243189913 0.03416238311434057 6.780024472282619e-05 0.015021135685762988 4.0634054395007166e-05 0.0005312639989429437 1.437135692184521e-06 0.015021135685762988 4.0634054395007166e-05 0.019141247428577583 7.904428860487974e-05']
['59866.35246343709 0.034227777785999 6.78802860354408e-05 0.015022344106179026 4.063203552721953e-05 0.0005313067380723983 1.4370642893427766e-06 0.015022344106179026 4.063203552721953e-05 0.01920543367981998 7.91119178337783e-05']
['59866.35249497506 0.034218183979964886 6.784604350596497e-05 0.015053153474809983 4.063337262037195e-05 0.0005323963965859887 1.4371115793393503e-06 0.015053153474809983 4.063337262037195e-05 0.019165030505154904 7.908322571771642e-05']
['59866.35252651302 0.03416685543860241 6.781438117450298e-05 0.015014129047828756 4.0623475516837746e-05 0.0005310161898181241 1.43676154090607e-06 0.015014129047828758 4.0623475516837746e-05 0.01915272639077365 7.905097758502358e-05']
['59866.35255805098 0.03432166147301032 6.79449769194969e-05 0.014987952952676664 4.059411573344826e-05 0.0005300903998327243 1.4357231509828381e-06 0.014987952952676666 4.059411573344826e-05 0.019333708520333656 7.914797610028673e-05']
['59866.35258958895 0.03435651077155231 6.793758099903305e-05 0.015006710357023683 4.061323637930357e-05 0.0005307538073041468 1.4363994054946117e-06 0.015006710357023683 4.061323637930357e-05 0.019349800414528627 7.915143638116344e-05']
['59866.35262112691 0.034339883207480125 6.79519378600454e-05 0.015073092339209313 4.065564667447072e-05 0.0005331015896590537 1.4378993628532426e-06 0.015073092339209311 4.065564667447072e-05 0.019266790868270815 7.918552560572464e-05']
['59866.35265266487 0.03429411414376855 6.791662410217218e-05 0.014985313894115813 4.060029516989962e-05 0.0005299970622293758 1.435941703839895e-06 0.014985313894115814 4.060029516989962e-05 0.019308800249652737 7.912680833522055e-05']
['59866.35268420284 0.03425228642602303 6.78624788345896e-05 0.01500863230292039 4.06161338904653e-05 0.000530821782235217 1.436501883988846e-06 0.01500863230292039 4.06161338904653e-05 0.019243654123102638 7.908847176285129e-05']
['59866.352715740795 0.034187830363392124 6.780044145741746e-05 0.01499776460518308 4.061413896748728e-05 0.0005304374160541234 1.4364313280215037e-06 0.01499776460518308 4.061413896748728e-05 0.019190065758209043 7.903422135942798e-05']
['59866.35274727876 0.03423614137241313 6.78581698596563e-05 0.015177355606673274 4.07209846175105e-05 0.0005367891484145652 1.440210219876851e-06 0.015177355606673272 4.07209846175105e-05 0.019058785765739862 7.913867452087819e-05']
['59866.35277881673 0.03427627736198551 6.789970221332373e-05 0.015075890136640933 4.063518331750497e-05 0.0005332005415015009 1.4371756196502752e-06 0.015075890136640934 4.063518331750497e-05 0.019200387225344576 7.913019451451685e-05']
['59866.352810354685 0.03429907718284687 6.789074754312057e-05 0.015069415018899628 4.0641109851317156e-05 0.0005329715310580273 1.4373852279061888e-06 0.015069415018899626 4.0641109851317156e-05 0.01922966216394724 7.912555473366718e-05']
['59866.35284189265 0.0342531925121889 6.786197144700395e-05 0.015019998351593608 4.063896276420855e-05 0.000531223773975165 1.4373092902336147e-06 0.015019998351593608 4.063896276420855e-05 0.01923319416059529 7.909976272546403e-05']
['59866.35287343062 0.034265801861020156 6.787893709690015e-05 0.015022217245770277 4.062460972599693e-05 0.0005313022513032572 1.436801655349222e-06 0.015022217245770277 4.062460972599693e-05 0.01924358461524988 7.910694670377875e-05']
['59866.352904968575 0.03434834797542086 6.79330791940611e-05 0.01500609182461735 4.060983541058654e-05 0.0005307319311952733 1.4362791208318081e-06 0.01500609182461735 4.060983541058654e-05 0.019342256150803514 7.914582731175097e-05']
['59866.35293650654 0.03443591636876867 6.79964377762876e-05 0.015059103103047351 4.0638611999935877e-05 0.000532606821640108 1.4372968844852022e-06 0.015059103103047353 4.0638611999935877e-05 0.01937681326572132 7.921497545001124e-05']
['59866.3529680445 0.03439093582262916 6.797478066163758e-05 0.015051712359178173 4.0630901017446006e-05 0.0005323454275467955 1.437024164267567e-06 0.015051712359178173 4.0630901017446006e-05 0.01933922346345098 7.919242971071941e-05']
['59866.352999582465 0.03422326797738881 6.783332564660033e-05 0.015093164225010156 4.0663425070997586e-05 0.0005338114874018049 1.4381744673547047e-06 0.015093164225010157 4.0663425070997586e-05 0.019130103752378655 7.908776268666576e-05']
['59866.35303112043 0.03432486745461979 6.790709167700922e-05 0.015119352154656368 4.0661984991899346e-05 0.0005347376959468133 1.4381235349753873e-06 0.01511935215465637 4.0661984991899346e-05 0.019205515299963418 7.915030084283434e-05']
['59866.35306265839 0.034304204979801925 6.789729595057777e-05 0.015122569815769255 4.067489196135096e-05 0.0005348514974293267 1.438580025639512e-06 0.015122569815769257 4.067489196135096e-05 0.01918163516403267 7.914852894064372e-05']
['59866.353094196355 0.034259180256031224 6.789157177454532e-05 0.014995903415977067 4.062640818576973e-05 0.0005303715899514198 1.4368652628520651e-06 0.014995903415977068 4.062640818576973e-05 0.019263276840054154 7.911871182024525e-05']
['59866.35312573432 0.034161205070616804 6.779556243316087e-05 0.01500017459770877 4.062235511141615e-05 0.0005305226521037408 1.436721914670267e-06 0.01500017459770877 4.062235511141615e-05 0.019161030472908035 7.9034258523925e-05']
['59866.35315727228 0.03417696087054957 6.781685529565123e-05 0.015093462612947917 4.0676006036394686e-05 0.0005338220407163057 1.4386194279839973e-06 0.015093462612947918 4.0676006036394686e-05 0.019083498257601653 7.908010703877503e-05']
['59866.353188810244 0.034283229201054644 6.786765102612086e-05 0.015018761466267272 4.0626300677974076e-05 0.0005311800281054485 1.4368614605415985e-06 0.015018761466267273 4.0626300677974076e-05 0.01926446773478737 7.909813122053188e-05']
['59866.3532203482 0.034249863234927846 6.786961420998474e-05 0.014933925021777525 4.0573343491006044e-05 0.0005281795526621408 1.4349884831908866e-06 0.014933925021777523 4.0573343491006044e-05 0.01931593821315032 7.90726294937213e-05']
['59866.35325188617 0.03425500521634023 6.786332543951247e-05 0.014958156361496704 4.059589956827122e-05 0.0005290365609941512 1.43578624123389e-06 0.014958156361496704 4.059589956827122e-05 0.019296848854843524 7.907880880151359e-05']
['59866.353283424134 0.034272903200475775 6.788705136174129e-05 0.015122914157779005 4.067239646205316e-05 0.0005348636760366524 1.4384917654064614e-06 0.015122914157779006 4.067239646205316e-05 0.01914998904269677 7.913845826498096e-05']
['59866.35331496209 0.034367244066077066 6.796647737920528e-05 0.015034171411413428 4.063631348092412e-05 0.0005317250434260676 1.4372155910046442e-06 0.015034171411413428 4.063631348092412e-05 0.019333072654663636 7.918808004149336e-05']
['59866.35334650006 0.03426265319258724 6.787828169615387e-05 0.015025755308092968 4.062566618927506e-05 0.0005314273846605068 1.4368390200943131e-06 0.015025755308092968 4.062566618927506e-05 0.019236897884494272 7.910692687334545e-05']
['59866.353378038024 0.034276901218566865 6.788329593606458e-05 0.015111781598772049 4.066443986328774e-05 0.0005344699423043814 1.4382103582900803e-06 0.015111781598772047 4.066443986328774e-05 0.019165119619794817 7.913114770138411e-05']
['59866.35340957598 0.034304443725608966 6.790398975249569e-05 0.015018365247032393 4.062163280100413e-05 0.0005311660147166087 1.4366963681652626e-06 0.015018365247032392 4.062163280100413e-05 0.019286078478576572 7.912691625310982e-05']
['59866.35344111395 0.03424538513805742 6.783641175809192e-05 0.015062037990748383 4.0618432069692067e-05 0.0005327106220590055 1.4365831654519683e-06 0.015062037990748383 4.0618432069692067e-05 0.01918334714730904 7.906728643385696e-05']
['59866.35347265191 0.034181422490144296 6.780946505188737e-05 0.014987186283652369 4.0604155051086655e-05 0.0005300632844627394 1.4360782192111536e-06 0.014987186283652369 4.0604155051086655e-05 0.019194236206491928 7.90368329200748e-05']
['59866.35350418987 0.0343320294003102 6.793698220408837e-05 0.014957091384498848 4.059932649388603e-05 0.0005289988951378206 1.4359074439341576e-06 0.01495709138449885 4.059932649388603e-05 0.019374938015811353 7.91437860021605e-05']
['59866.35353572784 0.03418562802854508 6.782596497754796e-05 0.01507172796067489 4.065362475745181e-05 0.0005330533346394978 1.4378278521670023e-06 0.01507172796067489 4.065362475745181e-05 0.01911390006787019 7.907641071176196e-05']
['59866.353567265796 0.0341975043224448 6.781777034819195e-05 0.015033765957245673 4.064217409241616e-05 0.0005317107034182908 1.4374228677354216e-06 0.015033765957245673 4.064217409241616e-05 0.019163738365199124 7.906349530572479e-05']
['59866.35359880376 0.03421627575384514 6.784268194209309e-05 0.014974999904092755 4.060939346808224e-05 0.0005296322794526712 1.4362634903131144e-06 0.014974999904092755 4.060939346808224e-05 0.01924127584975239 7.906802344147428e-05']
['59866.35363034173 0.03425611214440353 6.787542992313265e-05 0.015077166369067183 4.066433458669421e-05 0.0005332456789902058 1.4382066348922463e-06 0.015077166369067184 4.066433458669421e-05 0.019178945775336347 7.912434577693964e-05']
['59866.353661879686 0.034244742597917474 6.785691648285847e-05 0.01497246141135019 4.0601170690283156e-05 0.0005295424986375641 1.4359726690391877e-06 0.01497246141135019 4.0601170690283156e-05 0.019272281186567285 7.907601517516635e-05']
['59866.35369341765 0.034280366543209026 6.789641856198924e-05 0.01499715783884845 4.061756455399521e-05 0.0005304159560849105 1.436552483360554e-06 0.01499715783884845 4.061756455399521e-05 0.019283208704360576 7.911833039089491e-05']
['59866.35372495561 0.03413804052377397 6.777669870945323e-05 0.01499091131164509 4.0614047250193376e-05 0.0005301950303778943 1.4364280841857945e-06 0.01499091131164509 4.0614047250193376e-05 0.01914712921212888 7.901380716047633e-05']
['59866.353756493576 0.034315048320076084 6.789913157490988e-05 0.015051086697016857 4.062145350752223e-05 0.0005323232992744224 1.436690026955505e-06 0.015051086697016857 4.062145350752223e-05 0.019263961623059225 7.912265512285792e-05']
['59866.35378803154 0.03423715916258437 6.784824310342742e-05 0.015047912706357783 4.0636829241081186e-05 0.0005322110423182626 1.4372338322887433e-06 0.015047912706357783 4.0636829241081186e-05 0.01918924645622659 7.908688881850504e-05']
['59866.3538195695 0.03426763626947338 6.786563920140166e-05 0.015077608366138376 4.064621367024923e-05 0.0005332613114388085 1.4375657385754522e-06 0.015077608366138376 4.064621367024923e-05 0.019190027903335002 7.910663480355096e-05']
['59866.353851107466 0.0342769666957955 6.788579489041073e-05 0.015088037075228386 4.06575612548185e-05 0.000533630151572529 1.4379670772813083e-06 0.015088037075228385 4.06575612548185e-05 0.019188929620567112 7.912975695079718e-05']
['59866.35388264543 0.03430842536347918 6.789868582918346e-05 0.014980109960532716 4.060101477503404e-05 0.0005298130107286486 1.4359671546652766e-06 0.014980109960532714 4.060101477503404e-05 0.019328315402946467 7.911178128504433e-05']
['59866.35391418339 0.03414609264301523 6.780721972804806e-05 0.014996407563210017 4.06022943389746e-05 0.0005303894205123464 1.436012409982197e-06 0.014996407563210017 4.06022943389746e-05 0.01914968507980521 7.903395063412001e-05']
['59866.353945721356 0.03431868063500247 6.792067067536564e-05 0.015050635326878985 4.062424303356369e-05 0.0005323073353213988 1.4367886862573678e-06 0.015050635326878985 4.062424303356369e-05 0.019268045308123486 7.914257152153651e-05']
['59866.353977259314 0.03429278295558902 6.790213856283623e-05 0.014990279486023479 4.0608556934123915e-05 0.0005301726841177051 1.4362339039765519e-06 0.014990279486023477 4.0608556934123915e-05 0.01930250346956554 7.911861549394425e-05']
['59866.35400879728 0.03427454453527887 6.789410187976906e-05 0.015065592501897079 4.064191807328333e-05 0.00053283633717447 1.4374138129108625e-06 0.015065592501897079 4.064191807328333e-05 0.01920895203338179 7.91288479300434e-05']
['59866.354040335245 0.03429229793645968 6.78897434908785e-05 0.01507004560654828 4.063787915186794e-05 0.0005329938335338798 1.4372709652868583e-06 0.015070045606548281 4.063787915186794e-05 0.0192222523299114 7.912303389796868e-05']
['59866.354071873204 0.03422414562613036 6.785956806067997e-05 0.014966016568435861 4.058191169512704e-05 0.0005293145589470605 1.4352915214218371e-06 0.014966016568435861 4.058191169512704e-05 0.0192581290576945 7.906840414611354e-05']
['59866.35410341117 0.03427880461802434 6.789554349197873e-05 0.01499089150278099 4.062202770970342e-05 0.0005301943297826413 1.4367103352033875e-06 0.01499089150278099 4.062202770970342e-05 0.019287913115243353 7.911987083735089e-05']
['59866.354134949135 0.034266185975184466 6.788303098587478e-05 0.015029690597474114 4.062188528417407e-05 0.0005315665670510638 1.4367052979307166e-06 0.015029690597474114 4.062188528417407e-05 0.019236495377710352 7.910906054220233e-05']
['59866.35416648709 0.03425191229278531 6.788833381525509e-05 0.015108372879453805 4.0664513201742315e-05 0.0005343493835201345 1.4382129521073168e-06 0.015108372879453805 4.0664513201742315e-05 0.01914353941333151 7.913550721481592e-05']
['59866.35419802506 0.03422178184807714 6.78547259034773e-05 0.015053296292337046 4.063300510800535e-05 0.0005324014477227426 1.4370985812482853e-06 0.015053296292337046 4.063300510800535e-05 0.0191684855557401 7.909048572074408e-05']
['59866.35422956302 0.03427232135285202 6.789499398523102e-05 0.015084800410053539 4.0659961930198444e-05 0.0005335156779588156 1.4380519838043031e-06 0.015084800410053539 4.0659961930198444e-05 0.01918752094279848 7.91388824309501e-05']
['59866.35426110098 0.03432003268181344 6.794110340018679e-05 0.015084651059505327 4.063263918774541e-05 0.0005335103957637042 1.4370856394664749e-06 0.015084651059505325 4.063263918774541e-05 0.019235381622308114 7.916441687144785e-05']
['59866.35429263895 0.03430370040369379 6.792080052211302e-05 0.015042991036314622 4.06308801863653e-05 0.0005320369738481212 1.4370234275187972e-06 0.015042991036314624 4.06308801863653e-05 0.01926070936737917 7.914609003787515e-05']
['59866.35432417691 0.03420792950454835 6.782603342336414e-05 0.015031637244247624 4.0635307965549756e-05 0.0005316354155969434 1.4371800281730473e-06 0.015031637244247624 4.0635307965549756e-05 0.01917629226030073 7.906705422236483e-05']
['59866.35435571487 0.034156027753733186 6.780675202411306e-05 0.015047984336637031 4.061143418537607e-05 0.0005322135757211553 1.4363356659230626e-06 0.015047984336637031 4.061143418537607e-05 0.019108043417096154 7.903824521491284e-05']
['59866.35438725284 0.03413121851942404 6.777476770328821e-05 0.014974273335161678 4.0602465739126934e-05 0.0005296065823333651 1.4360184720225283e-06 0.01497427333516168 4.0602465739126934e-05 0.019156945184262364 7.900619824628733e-05']
['59866.3544187908 0.0343148481290865 6.791203212203205e-05 0.015052280711861078 4.063973966141339e-05 0.0005323655289109964 1.4373367673514868e-06 0.015052280711861078 4.063973966141339e-05 0.019262567417225422 7.914311433530633e-05']
['59866.35445032876 0.034138182430779804 6.776590466161164e-05 0.014974147301536326 4.0587350792807755e-05 0.0005296021248057049 1.435483890151136e-06 0.014974147301536327 4.0587350792807755e-05 0.019164035129243476 7.899082781554495e-05']
['59866.35448186672 0.03407633218699288 6.774401655184215e-05 0.014989899504305262 4.060578391242241e-05 0.0005301592450135409 1.4361358283963086e-06 0.014989899504305262 4.060578391242241e-05 0.01908643268268762 7.898152610401122e-05']
['59866.35451340469 0.03413471948415446 6.777331732341044e-05 0.014954527945401676 4.0585020892714654e-05 0.0005289082320259027 1.435401486791863e-06 0.014954527945401676 4.0585020892714654e-05 0.019180191538752785 7.899599016331001e-05']
['59866.35454494265 0.0342699402834512 6.7870972094511e-05 0.01488804992026905 4.05405072644105e-05 0.0005265570528466039 1.4338271392408494e-06 0.01488804992026905 4.05405072644105e-05 0.01938189036318215 7.905695151161353e-05']
['59866.35457648061 0.03422185269638573 6.785379532596332e-05 0.015038743288633171 4.063226704179274e-05 0.0005318867405057857 1.4370724774958262e-06 0.015038743288633171 4.063226704179274e-05 0.019183109407752558 7.908930815915182e-05']
['59866.35460801858 0.03417946472132879 6.781908516832078e-05 0.014938716658836214 4.0590687268022124e-05 0.0005283490221562281 1.435601893822885e-06 0.014938716658836214 4.0590687268022124e-05 0.019240748062492576 7.903816929786723e-05']
['59866.35463955654 0.0342353023119125 6.782923764845395e-05 0.015004150650362728 4.0606466488814574e-05 0.0005306632762001565 1.4361599695978308e-06 0.015004150650362726 4.0606466488814574e-05 0.01923115166154977 7.905498466686122e-05']
['59866.3546710945 0.03425371879373877 6.787267747120356e-05 0.01498369144845159 4.06085255736753e-05 0.0005299396799521848 1.436232794827571e-06 0.01498369144845159 4.06085255736753e-05 0.019270027345287183 7.909331638247231e-05']
['59866.35470263247 0.03430713169479586 6.790212461204249e-05 0.015003555259450537 4.061050675569316e-05 0.0005306422185542127 1.4363028648078614e-06 0.015003555259450536 4.061050675569316e-05 0.01930357643534532 7.911960430755166e-05']
['59866.354734170425 0.03423833378623453 6.783181696854565e-05 0.015079153346033011 4.06566325531566e-05 0.0005333159539248549 1.437934231179053e-06 0.015079153346033011 4.06566325531566e-05 0.01915918044020152 7.908297644763171e-05']
['59866.35476570839 0.034377287923491456 6.796262924248652e-05 0.015071386648670235 4.064643168390405e-05 0.0005330412631966805 1.4375734492311912e-06 0.015071386648670235 4.064643168390405e-05 0.01930590127482122 7.918997021205377e-05']
['59866.35479724636 0.034227254701750975 6.785220310390747e-05 0.015019728255719601 4.0609346974372604e-05 0.0005312142212877301 1.436261845934512e-06 0.015019728255719601 4.0609346974372604e-05 0.019207526446031374 7.907616915189364e-05']
['59866.354828784315 0.03422030333082781 6.783519312571768e-05 0.014972439642196104 4.05935122825877e-05 0.0005295417287112353 1.4357018082745332e-06 0.014972439642196102 4.05935122825877e-05 0.019247863688631708 7.905344183424282e-05']
['59866.35486032228 0.034282643472605644 6.787820240703443e-05 0.01496998472129133 4.0605378975451655e-05 0.0005294549036452587 1.4361215066806337e-06 0.01496998472129133 4.0605378975451655e-05 0.019312658751314313 7.909644216872454e-05']
['59866.35489186025 0.034229736720632724 6.784686464867528e-05 0.014982901872478277 4.059368614717593e-05 0.0005299117544146072 1.4357079574764546e-06 0.014982901872478277 4.059368614717593e-05 0.019246834848154447 7.906354657913524e-05']
['59866.354923398205 0.034329372541337576 6.793783529344835e-05 0.015066216680102947 4.064201324893875e-05 0.0005328584129626553 1.4374171790610897e-06 0.015066216680102947 4.064201324893875e-05 0.01926315586123463 7.916642410319308e-05']
['59866.35495493617 0.03426392078080289 6.786786673633314e-05 0.01498463948878074 4.0610929620155884e-05 0.0005299732100198815 1.4363178205788614e-06 0.01498463948878074 4.0610929620155884e-05 0.019279281292022152 7.909042255516106e-05']
['59866.35498647413 0.03425434994861449 6.789172076136084e-05 0.015002601057833843 4.0605192934750534e-05 0.0005306084705755453 1.4361149268368116e-06 0.015002601057833843 4.0605192934750534e-05 0.019251748890780646 7.910794802803894e-05']
['59866.355018012095 0.03415944864201803 6.77958018112586e-05 0.015016807334065546 4.0605798896340976e-05 0.0005311109148167019 1.436136358344021e-06 0.015016807334065546 4.0605798896340976e-05 0.019142641307952485 7.902595552881053e-05']
['59866.35504955006 0.034208685568276734 6.780833933118277e-05 0.015083380147856979 4.0640042309691534e-05 0.0005334654464590225 1.4373474713447055e-06 0.015083380147856979 4.0640042309691534e-05 0.019125305420419757 7.905430995073163e-05']
['59866.35508108802 0.03426398103257212 6.787655256953569e-05 0.015031885767777605 4.063306471930305e-05 0.0005316442053187814 1.4371006895666617e-06 0.015031885767777604 4.063306471930305e-05 0.019232095264794514 7.91092430579892e-05']
['59866.355112625984 0.03414962983397499 6.777907584811153e-05 0.014983202575887531 4.060812461525711e-05 0.0005299223896221599 1.4362186138244087e-06 0.01498320257588753 4.060812461525711e-05 0.019166427258087457 7.901280217529502e-05']
['59866.35514416395 0.03420973148127786 6.783339070195466e-05 0.0150387214722095 4.0621543137807966e-05 0.0005318859689076372 1.4366931969783997e-06 0.0150387214722095 4.0621543137807966e-05 0.01917101000906836 7.90662928245711e-05']
['59866.35517570191 0.03424144106185465 6.787050024325341e-05 0.014929336112641935 4.056746395937028e-05 0.0005280172532016234 1.4347805372969092e-06 0.014929336112641935 4.056746395937028e-05 0.019312104949212715 7.907037330988306e-05']
['59866.355207239874 0.034261627490244306 6.788924147935175e-05 0.015101859382825223 4.065741969416408e-05 0.0005341190157011898 1.437962070597331e-06 0.015101859382825223 4.065741969416408e-05 0.01915976810741908 7.913264108336795e-05']
['59866.35523877783 0.03415548409114374 6.776383722898866e-05 0.014997100606812678 4.061645991033139e-05 0.0005304139319157112 1.4365134145828979e-06 0.014997100606812676 4.061645991033139e-05 0.019158383484331062 7.900401541468906e-05']
['59866.3552703158 0.03423385422584579 6.786527459874035e-05 0.014990458068757226 4.0620301154785274e-05 0.0005301790001898888 1.4366492708145557e-06 0.014990458068757226 4.0620301154785274e-05 0.01924339615708856 7.909301083071679e-05']
['59866.355301853764 0.03414039957564217 6.774236281394455e-05 0.015001156557811906 4.062084697894212e-05 0.000530557381838037 1.4366685753951383e-06 0.015001156557811904 4.062084697894212e-05 0.019139243017830265 7.89878530465459e-05']
['59866.35533339172 0.03430508436483614 6.793037083822628e-05 0.014965269641886167 4.060602233987707e-05 0.0005292881418242804 1.4361442610425258e-06 0.014965269641886167 4.060602233987707e-05 0.019339814722949975 7.914154618457702e-05']
['59866.35536492969 0.034227969295013184 6.785347706222583e-05 0.015029126153085758 4.063687323972259e-05 0.0005315466039145067 1.4372353884223586e-06 0.01502912615308576 4.063687323972259e-05 0.019198843141927425 7.909140165741968e-05']
['59866.355396467654 0.03415500954116987 6.782059466208797e-05 0.015010708244697595 4.0621159783583055e-05 0.0005308952036564199 1.4366796385962108e-06 0.015010708244697593 4.0621159783583055e-05 0.01914430129647228 7.905511800309087e-05']
['59866.35542800561 0.034259671663263686 6.786250085297142e-05 0.015012256969118006 4.061864829009663e-05 0.0005309499785779746 1.4365908126844535e-06 0.015012256969118006 4.061864829009663e-05 0.01924741469414568 7.908978196286874e-05']
['59866.35545954358 0.03419244278474034 6.78594238045317e-05 0.01497297302619133 4.060731103116218e-05 0.0005295605933111034 1.4361898391732248e-06 0.014972973026191331 4.060731103116218e-05 0.019219469758549008 7.90813195910677e-05']
['59866.35549108154 0.0342625121056377 6.7900512579427e-05 0.014966482595313252 4.058329675519704e-05 0.0005293310412762051 1.4353405079010859e-06 0.014966482595313253 4.058329675519704e-05 0.01929602951032445 7.910425768610252e-05']
['59866.3555226195 0.03414528928230457 6.780796454067721e-05 0.0150652019853654 4.065663587660854e-05 0.0005328225254774975 1.4379343487221207e-06 0.015065201985365399 4.065663587660854e-05 0.01908008729693917 7.90625201720314e-05']
['59866.35555415747 0.034344659499819526 6.795125129700138e-05 0.015054092755921799 4.064176501036371e-05 0.000532429616859744 1.437408399417471e-06 0.0150540927559218 4.064176501036371e-05 0.019290566743897723 7.917781012370737e-05']
['59866.355585695426 0.03429240473656025 6.789858853795198e-05 0.014957354500090435 4.058920260254603e-05 0.0005290082009482662 1.4355493845230274e-06 0.014957354500090437 4.058920260254603e-05 0.019335050236469812 7.910563629322903e-05']
['59866.35561723339 0.03424412342067876 6.783946991656817e-05 0.015086098060259102 4.066050903599685e-05 0.0005335615729465089 1.4380713337136834e-06 0.015086098060259102 4.066050903599685e-05 0.019158025360419655 7.909153351419695e-05']
['59866.35564877136 0.03424727760605926 6.786100031219505e-05 0.01497201358250485 4.057895428577983e-05 0.000529526659932143 1.435186924462647e-06 0.01497201358250485 4.057895428577983e-05 0.01927526402355441 7.906811553527215e-05']
['59866.355680309316 0.03410404464346245 6.776737140485537e-05 0.014899913823210594 4.056208675418312e-05 0.0005269766525793837 1.4345903575667858e-06 0.014899913823210594 4.056208675418312e-05 0.019204130820251856 7.897910805382324e-05']
['59866.35571184728 0.034168546567731294 6.782357055537167e-05 0.015005856396662699 4.061948691584353e-05 0.0005307236046346679 1.4366204730029032e-06 0.0150058563966627 4.061948691584353e-05 0.019162690171068593 7.905681147242065e-05']
['59866.35574338524 0.03427130517584305 6.791456178720131e-05 0.015013624916650611 4.0618548675185665e-05 0.00053099835982502 1.436587289527679e-06 0.015013624916650611 4.0618548675185665e-05 0.019257680259192438 7.913440591314255e-05']
['59866.355774923206 0.03418543441827635 6.780387827289498e-05 0.015039998065891699 4.063668550880184e-05 0.0005319311191731576 1.4372287487992455e-06 0.015039998065891697 4.063668550880184e-05 0.019145436352384654 7.904875785227004e-05']
['59866.35580646117 0.03422006765855415 6.782521977583354e-05 0.014997547923950411 4.062786833874096e-05 0.0005304297525231779 1.4369169051994076e-06 0.01499754792395041 4.062786833874096e-05 0.01922251973460374 7.906253299376507e-05']
['59866.35583799913 0.03421127840164346 6.784014669977565e-05 0.015055425496373355 4.065134808668743e-05 0.0005324767529110159 1.437747331410126e-06 0.015055425496373356 4.065134808668743e-05 0.019155852905270103 7.908740484749836e-05']
['59866.355869537096 0.03425343611753652 6.788625412495528e-05 0.014984788603839859 4.0607479911374705e-05 0.0005299784838862699 1.4361958120889166e-06 0.014984788603839857 4.0607479911374705e-05 0.01926864751369666 7.910443049457286e-05']
['59866.35590107506 0.034056940507926355 6.770691545563849e-05 0.014987720743635474 4.0620022985845345e-05 0.0005300821871178941 1.4366394326008215e-06 0.014987720743635474 4.0620022985845345e-05 0.01906921976429088 7.895703051589252e-05']
['59866.35593261302 0.03424516450829448 6.785897944906676e-05 0.015012883842480403 4.061967619630255e-05 0.000530972149687823 1.4366271674297217e-06 0.015012883842480403 4.061967619630255e-05 0.019232280665814075 7.90872883980816e-05']
['59866.355964150986 0.034386136801354696 6.796272320727603e-05 0.014968685370889136 4.0591078169539226e-05 0.0005294089485254104 1.4356157191359312e-06 0.014968685370889138 4.0591078169539226e-05 0.019417451430465558 7.916165342332398e-05']
['59866.355995688944 0.034230863737315896 6.782634586629266e-05 0.015020184611664383 4.060672299375957e-05 0.0005312303615776016 1.4361690416044806e-06 0.015020184611664383 4.060672299375957e-05 0.01921067912565151 7.905263528729373e-05']
['59866.35602722691 0.03423707768473046 6.785465197253866e-05 0.01500315512295214 4.062718871501125e-05 0.0005306280666205168 1.4368928684269575e-06 0.015003155122952139 4.062718871501125e-05 0.01923392256177832 7.908743425601492e-05']
['59866.356058764875 0.03421591372297436 6.784284635376399e-05 0.0150404709766844 4.062782346052594e-05 0.0005319478449710021 1.4369153179572393e-06 0.0150404709766844 4.062782346052594e-05 0.01917544274628996 7.907763173312722e-05']
['59866.356090302834 0.03411536331443802 6.780833524023902e-05 0.014912083333990675 4.05523683440668e-05 0.0005274070609784193 1.4342466391203401e-06 0.014912083333990675 4.05523683440668e-05 0.019203279980447345 7.900927101527714e-05']
['59866.3561218408 0.03407951105069836 6.775605390700412e-05 0.014985580142234995 4.061189614050185e-05 0.0005300064788303217 1.4363520042434526e-06 0.014985580142234996 4.061189614050185e-05 0.019093930908463366 7.899499319055453e-05']
['59866.356153378765 0.034146650511194414 6.780600055998994e-05 0.014932435388447785 4.057649729717385e-05 0.0005281268676604025 1.4351000262666999e-06 0.014932435388447783 4.057649729717385e-05 0.019214215122746632 7.901965480087162e-05']
['59866.35618491672 0.03421612832743814 6.784491824181357e-05 0.015012600219423113 4.062684212695219e-05 0.0005309621185741469 1.436880610381887e-06 0.015012600219423113 4.062684212695219e-05 0.019203528108015025 7.907890510399511e-05']
['59866.35621645469 0.03414990578951774 6.77557200920652e-05 0.015090253536132216 4.065428133474604e-05 0.000533708542841199 1.4378510738385354e-06 0.015090253536132218 4.065428133474604e-05 0.019059652253385517 7.90165058455445e-05']
['59866.35624799265 0.03417168542681224 6.782826471206786e-05 0.014989447540891324 4.060654261050544e-05 0.0005301432600776688 1.436162661851915e-06 0.014989447540891326 4.060654261050544e-05 0.01918223788592091 7.905418898849791e-05']
['59866.35627953061 0.03422820248204294 6.784875908672019e-05 0.015074441079643331 4.064000828408068e-05 0.0005331492915939475 1.4373462679348925e-06 0.01507444107964333 4.064000828408068e-05 0.019153761402399612 7.908896498840999e-05']
['59866.35631106858 0.03421197485050291 6.782447060071076e-05 0.015033949180975052 4.062093784437887e-05 0.000531717183632118 1.4366717891025638e-06 0.015033949180975052 4.062093784437887e-05 0.019178025669527858 7.905832912238641e-05']
['59866.35634260654 0.03414015038574715 6.778837533773451e-05 0.014895398448150982 4.0551845925165384e-05 0.0005268169538547946 1.4342281623313344e-06 0.01489539844815098 4.0551845925165384e-05 0.019244751937596172 7.899187324572019e-05']
['59866.3563741445 0.03419631707571197 6.782334648633346e-05 0.01500669428709035 4.062457909810119e-05 0.0005307532389465191 1.436800572108999e-06 0.01500669428709035 4.062457909810119e-05 0.019189622788621616 7.905923573816737e-05']
['59866.35640568247 0.034156029154537325 6.782534538752673e-05 0.015000665424264713 4.06181366463402e-05 0.0005305400115420916 1.4365727169882453e-06 0.015000665424264712 4.06181366463402e-05 0.019155363730272615 7.905764037433738e-05']
['59866.35643722043 0.034078043817368384 6.775845711999488e-05 0.014891308463585568 4.055161461969122e-05 0.0005266723002412935 1.4342199815736504e-06 0.014891308463585568 4.055161461969122e-05 0.019186735353782815 7.896608106995141e-05']
['59866.35646875839 0.034143919060763195 6.77648898052206e-05 0.014969324855708658 4.056387677452883e-05 0.0005294315656743124 1.4346536665859537e-06 0.014969324855708658 4.056387677452883e-05 0.01917459420505454 7.897789810632371e-05']
['59866.35650029635 0.03419470201144233 6.781714785984152e-05 0.015065536770597816 4.062276464750953e-05 0.0005328343660829672 1.4367363990466304e-06 0.015065536770597816 4.062276464750953e-05 0.01912916524084451 7.905298572129048e-05']
['59866.35653183432 0.034209574165819975 6.784947824606363e-05 0.015033064207189077 4.062426365446297e-05 0.000531685884087108 1.4367894155724903e-06 0.015033064207189077 4.062426365446297e-05 0.019176509958630898 7.908149275102477e-05']
['59866.35656337228 0.03424363250676487 6.783273710879922e-05 0.015028036966534293 4.061733660509841e-05 0.00053150808182037 1.43654442131751e-06 0.015028036966534293 4.061733660509841e-05 0.019215595540230578 7.906357098287007e-05']
['59866.35659491024 0.03400675972963626 6.76768881278695e-05 0.014879425578673694 4.054184500132447e-05 0.0005262520291586453 1.4338744520058306e-06 0.014879425578673694 4.054184500132447e-05 0.019127334150962565 7.889107923449635e-05']
['59866.35662644821 0.03413160256057821 6.782117649791006e-05 0.014923830342395614 4.0579113971452175e-05 0.0005278225264126834 1.4351925721880013e-06 0.014923830342395614 4.0579113971452175e-05 0.0192077722181826 7.903402098001071e-05']
['59866.356657986165 0.03406561570841692 6.773927442861785e-05 0.014934170299596938 4.0572651247238703e-05 0.0005281882275904498 1.4349640000759095e-06 0.014934170299596938 4.0572651247238703e-05 0.019131445408819985 7.896042888273632e-05']
['59866.35668952413 0.03402848832001113 6.769017085114463e-05 0.014929030427716417 4.0575322436395946e-05 0.0005280064418089734 1.4350584740666447e-06 0.014929030427716417 4.0575322436395946e-05 0.019099457892294714 7.891968081964503e-05']
['59866.3567210621 0.034232029092966236 6.783542019137599e-05 0.015045153553012669 4.063407767474275e-05 0.0005321134572307907 1.4371365155367415e-06 0.015045153553012669 4.063407767474275e-05 0.019186875539953567 7.907447439608795e-05']
['59866.356752600055 0.03410958508644484 6.776254391760297e-05 0.014990366518732165 4.0618326968564104e-05 0.0005301757622701047 1.4365794482599596e-06 0.014990366518732166 4.0618326968564104e-05 0.019119218567712676 7.900386600610285e-05']
['59866.35678413802 0.03412433334308148 6.777708338479928e-05 0.015088961962916701 4.065596525473105e-05 0.0005336628627830624 1.4379106303250657e-06 0.0150889619629167 4.065596525473105e-05 0.01903537138016478 7.903569157629946e-05']
['59866.35681567599 0.034224647806855205 6.783245316012215e-05 0.015080553343880712 4.065409045879792e-05 0.0005333654687199171 1.437844322982833e-06 0.015080553343880714 4.065409045879792e-05 0.019144094462974492 7.908221527468923e-05']
['59866.356847213945 0.03411429214791393 6.777550775028527e-05 0.0150143433376187 4.061250139940938e-05 0.0005310237687690849 1.4363734108983378e-06 0.0150143433376187 4.061250139940938e-05 0.01909994881029523 7.901199099330435e-05']
['59866.35687875191 0.03418362797760472 6.780576868210043e-05 0.014982623937807166 4.059051706021469e-05 0.0005299019244864374 1.4355958739531279e-06 0.014982623937807166 4.059051706021469e-05 0.019201004039797555 7.902665589398359e-05']
['59866.35691028987 0.03414932756051075 6.780237644937502e-05 0.01496364081541869 4.059752103718167e-05 0.0005292305338723387 1.435843588965483e-06 0.014963640815418691 4.059752103718167e-05 0.019185686745092058 7.902734315758801e-05']
['59866.356941827835 0.0340925237146148 6.774589598843278e-05 0.015001253917085924 4.061167844793853e-05 0.0005305608252179738 1.436344304944002e-06 0.015001253917085924 4.061167844793853e-05 0.019091269797528874 7.898616872360822e-05']
['59866.3569733658 0.03425354291631536 6.785457947473976e-05 0.01490501006297462 4.054937182627992e-05 0.0005271568951904118 1.434140658983041e-06 0.01490501006297462 4.054937182627992e-05 0.01934853285334074 7.904742570887225e-05']
['59866.35700490376 0.034166632700895684 6.780530872034565e-05 0.015013323973996667 4.060750301281121e-05 0.0005309877161559172 1.4361966291350972e-06 0.015013323973996667 4.060750301281121e-05 0.019153308726899018 7.9034987136058e-05']
['59866.357036441725 0.034296270036183 6.790608563813872e-05 0.01504622348774284 4.062575184303397e-05 0.0005321512984310335 1.4368420494763407e-06 0.01504622348774284 4.062575184303397e-05 0.019250046548440158 7.913082951357207e-05']
['59866.35706797969 0.034171242015006716 6.780050591285784e-05 0.014942529794258908 4.058392607764186e-05 0.0005284838842342727 1.4353627656295062e-06 0.014942529794258906 4.058392607764186e-05 0.01922871222074781 7.901875510228549e-05']
['59866.35709951765 0.034157220271999474 6.780195661485345e-05 0.014948406319653142 4.057561673669631e-05 0.0005286917238042055 1.4350688828105462e-06 0.014948406319653142 4.057561673669631e-05 0.019208813952346332 7.901573257501153e-05']
['59866.357131055614 0.034110153634376965 6.77709576165873e-05 0.014957195620227832 4.059259552697049e-05 0.0005290025817226015 1.4356693846771808e-06 0.014957195620227832 4.059259552697049e-05 0.01915295801414913 7.899785761579548e-05']
['59866.35716259357 0.034200609312091096 6.784939523943801e-05 0.014890470886361914 4.055225197542052e-05 0.0005266426770067677 1.4342425234213895e-06 0.014890470886361914 4.055225197542052e-05 0.019310138425729182 7.904445315539523e-05']
['59866.35719413154 0.03418601767010367 6.782801744028416e-05 0.014898255454051476 4.05612168546364e-05 0.0005269179997684627 1.4345595911639295e-06 0.014898255454051476 4.05612168546364e-05 0.019287762216052197 7.903070455594036e-05']
['59866.357225669504 0.03426562366432935 6.787368375492885e-05 0.015031331238709034 4.062465803733302e-05 0.0005316245928649255 1.4368033640132102e-06 0.015031331238709034 4.062465803733302e-05 0.019234292425620317 7.910246384983428e-05']
['59866.35725720746 0.0341129037537845 6.776909250891618e-05 0.014996155030040988 4.0612934912217904e-05 0.0005303804889785364 1.436388743277531e-06 0.01499615503004099 4.0612934912217904e-05 0.019116748723743512 7.900671099132079e-05']
['59866.35728874543 0.034229878378141315 6.784561436533851e-05 0.015000837024456152 4.0612719857178705e-05 0.000530546080657359 1.4363811372614143e-06 0.01500083702445615 4.0612719857178705e-05 0.019229041353685167 7.90722479938942e-05']
['59866.357320283394 0.03404794583502238 6.771654118163851e-05 0.015030371947307533 4.061889321889135e-05 0.0005315906648719446 1.4365994752685393e-06 0.015030371947307533 4.061889321889135e-05 0.01901757388771485 7.896470373484752e-05']
['59866.35735182135 0.03409392550495255 6.772450104627082e-05 0.01504289200870067 4.0628635473708056e-05 0.0005320334714627294 1.436944037048748e-06 0.01504289200870067 4.0628635473708056e-05 0.01905103349625188 7.897654121586856e-05']
['59866.35738335932 0.03402630415295326 6.772088514903497e-05 0.01495827113405576 4.0593516272788445e-05 0.0005290406202430634 1.435701949399016e-06 0.014958271134055762 4.0593516272788445e-05 0.0190680330188975 7.89553788462694e-05']
['59866.35741489728 0.03411516013597503 6.776541404480517e-05 0.015009002269952724 4.0610651669268406e-05 0.0005308348671423231 1.436307990077155e-06 0.015009002269952726 4.0610651669268406e-05 0.0191061578660223 7.900238205058458e-05']
['59866.35744643524 0.03406180567377195 6.774771086327183e-05 0.014919650800296565 4.056002086324118e-05 0.0005276747053493668 1.434517291621164e-06 0.014919650800296565 4.056002086324118e-05 0.019142154873475384 7.896117792713099e-05']
['59866.35747797321 0.034051617144046954 6.774057158681276e-05 0.014952337888723289 4.0574754333904e-05 0.0005288307746156768 1.4350383815511387e-06 0.014952337888723289 4.0574754333904e-05 0.019099279255323665 7.89626223485819e-05']
['59866.35750951117 0.034098018036140494 6.774459804675851e-05 0.014936607544045367 4.057562683059108e-05 0.0005282744274796701 1.4350692398090456e-06 0.014936607544045369 4.057562683059108e-05 0.019161410492095125 7.896652491538589e-05']
['59866.35754104913 0.03415821732852706 6.778388740076315e-05 0.014903141206252728 4.056472831099904e-05 0.0005270907979048075 1.434683783527833e-06 0.014903141206252728 4.056472831099904e-05 0.01925507612227433 7.899463636288545e-05']
['59866.3575725871 0.03401877387629433 6.76655354225256e-05 0.015055027789870138 4.0638049916450455e-05 0.0005324626869208189 1.4372770048485055e-06 0.01505502778987014 4.0638049916450455e-05 0.01896374608642419 7.89308291165688e-05']
['59866.357604125056 0.03418869825289922 6.781737091261101e-05 0.015010717541043656 4.0611960242309456e-05 0.0005308955324474041 1.4363542713811284e-06 0.015010717541043656 4.0611960242309456e-05 0.019177980711855565 7.904762559509034e-05']
['59866.35763566302 0.03412428884610681 6.780186285770545e-05 0.014952690459734136 4.0580430229574014e-05 0.0005288432442643806 1.435239125296107e-06 0.014952690459734136 4.0580430229574014e-05 0.019171598386372675 7.901812402602596e-05']
['59866.35766720098 0.03401770329690409 6.771688648015128e-05 0.015051434888306493 4.064351693253067e-05 0.0005323356140221751 1.437470360989201e-06 0.015051434888306493 4.064351693253067e-05 0.018966268408597595 7.89776688894437e-05']
['59866.357698738946 0.034142883372109745 6.780189460201417e-05 0.014933823424369979 4.057303417168063e-05 0.0005281759593888929 1.4349775432576346e-06 0.01493382342436998 4.057303417168063e-05 0.019209059947739762 7.901435321205257e-05']
['59866.35773027691 0.0341607322261725 6.7791645591741e-05 0.01498301414986981 4.0582871255693946e-05 0.0005299157254150205 1.4353254589345967e-06 0.01498301414986981 4.0582871255693946e-05 0.019177718076302686 7.901061100505707e-05']
['59866.35776181487 0.034110640900784736 6.77674567301223e-05 0.015018640703459771 4.060354788168121e-05 0.0005311757569948362 1.4360567449862268e-06 0.015018640703459771 4.060354788168121e-05 0.019092000197324967 7.900048286085964e-05']
['59866.357793352836 0.03416843649984402 6.78333002432966e-05 0.014955047061177763 4.059660837447726e-05 0.0005289265919907474 1.435811310125309e-06 0.014955047061177762 4.059660837447726e-05 0.019213389438666253 7.905340747499692e-05']
['59866.3578248908 0.03420406521926634 6.780290670403587e-05 0.015018545112604325 4.060857888781809e-05 0.000531172376159912 1.4362346804296512e-06 0.015018545112604325 4.060857888781809e-05 0.019185520106662017 7.903347921485133e-05']
['59866.35785642876 0.03418795139891599 6.78046785497023e-05 0.014980045342042262 4.059462656723828e-05 0.0005298107253170551 1.4357412180323447e-06 0.014980045342042262 4.059462656723828e-05 0.01920790605687373 7.902783142261962e-05']
['59866.357887966726 0.03399385625600628 6.766941285281603e-05 0.015018249285428806 4.061774924379501e-05 0.0005311619134138488 1.4365590154260157e-06 0.015018249285428808 4.061774924379501e-05 0.01897560697057747 7.892370359706058e-05']
['59866.357919504684 0.03408692544440099 6.774192118351344e-05 0.014904733710730872 4.05826135973249e-05 0.0005271471212291613 1.4353163461339162e-06 0.014904733710730872 4.05826135973249e-05 0.01918219173367012 7.896781883794895e-05']
['59866.35795104265 0.033983536844522 6.765878155565537e-05 0.014970827572243413 4.059369313226307e-05 0.0005294847133997729 1.435708204523376e-06 0.014970827572243413 4.059369313226307e-05 0.01901270927227859 7.890220937155202e-05']
['59866.357982580615 0.03422130292182207 6.784666261791116e-05 0.014986500843768936 4.05995102568628e-05 0.0005300390419859304 1.43591394321996e-06 0.014986500843768938 4.05995102568628e-05 0.019234802078053136 7.90663636541214e-05']
['59866.358014118574 0.034089383820665675 6.77673476476199e-05 0.014878783916501872 4.053986641440447e-05 0.0005262293350016585 1.4338044738083517e-06 0.014878783916501872 4.053986641440447e-05 0.0192105999041638 7.89676780467245e-05']
['59866.35804565654 0.03412784207303174 6.776708946337073e-05 0.014998154414987292 4.060845599119269e-05 0.0005304512027557248 1.4362303338506686e-06 0.014998154414987294 4.060845599119269e-05 0.019129687658044445 7.90026905385198e-05']
['59866.358077194505 0.03406886850390957 6.774074627504278e-05 0.014908639183773472 4.0548835618175246e-05 0.0005272852490824596 1.4341216945007334e-06 0.014908639183773473 4.0548835618175246e-05 0.019160229320136096 7.894945709686368e-05']
['59866.358108732464 0.034210994007612815 6.786066576040948e-05 0.014950795267152634 4.058437794027066e-05 0.0005287762155382791 1.4353787470008334e-06 0.014950795267152634 4.058437794027066e-05 0.01926019874046018 7.90706120517904e-05']
['59866.35814027043 0.03387524393548308 6.758293658875792e-05 0.014893432945367081 4.0555350781034e-05 0.0005267474384139683 1.4343521212505155e-06 0.014893432945367081 4.0555350781034e-05 0.018981810990115998 7.881744600615265e-05']
['59866.35817180839 0.03414387292537752 6.777341938142682e-05 0.014922503431706816 4.057023217033063e-05 0.0005277755965470914 1.4348784427319895e-06 0.014922503431706816 4.057023217033063e-05 0.019221369493670707 7.898848088807185e-05']
['59866.35820334635 0.034127311291493025 6.775512131015287e-05 0.014985357874219079 4.0588282686486034e-05 0.0005299986177073385 1.4355168491478768e-06 0.014985357874219079 4.0588282686486034e-05 0.019141953417273948 7.89820559063363e-05']
['59866.35823488432 0.034100659684486195 6.77386629550073e-05 0.014869848638672231 4.0540532090917315e-05 0.0005259133141939947 1.4338280172989116e-06 0.014869848638672231 4.0540532090917315e-05 0.019230811045813964 7.894340505163667e-05']
['59866.35826642228 0.03416576501460888 6.777432830325475e-05 0.014959134097422921 4.057652005061006e-05 0.0005290711413287502 1.4351008310048876e-06 0.01495913409742292 4.057652005061006e-05 0.019206630917185958 7.899249050621784e-05']
['59866.35829796024 0.03404021302677629 6.768840609854035e-05 0.014866385471023475 4.0528469782284785e-05 0.0005257908296939824 1.4334014004002522e-06 0.014866385471023475 4.0528469782284785e-05 0.019173827555752816 7.889408839104795e-05']
['59866.35832949821 0.034029556780655106 6.768816530105726e-05 0.014968389350161666 4.058337100884137e-05 0.0005293984789338472 1.4353431340865386e-06 0.014968389350161666 4.058337100884137e-05 0.01906116743049344 7.892209908678632e-05']
['59866.35836103617 0.03403851600815984 6.771596021150746e-05 0.014985038828554616 4.060202691970965e-05 0.0005299873337752116 1.4360029519604425e-06 0.014985038828554616 4.060202691970965e-05 0.019053477179605222 7.895553088514627e-05']
['59866.35839257413 0.03411788446524314 6.77800716851653e-05 0.014941934977796622 4.0573610256469536e-05 0.0005284628469053382 1.4349979180891446e-06 0.014941934977796624 4.0573610256469536e-05 0.01917594948744651 7.899592373591207e-05']
['59866.35842411209 0.03402445991787459 6.768906167315413e-05 0.014994993689348809 4.06086266832417e-05 0.0005303394149536976 1.4362363708469678e-06 0.014994993689348807 4.06086266832417e-05 0.019029466228525783 7.893585770289035e-05']
['59866.35845565006 0.03394079615265323 6.763844982138364e-05 0.014918094946339177 4.0568930478941816e-05 0.000527619678272023 1.4348324048166762e-06 0.014918094946339179 4.0568930478941816e-05 0.019022701206314052 7.887203569355267e-05']
['59866.35848718802 0.03399627867990832 6.769244194272271e-05 0.014925729024300585 4.0567185583148004e-05 0.0005278896785483578 1.4347706917520618e-06 0.014925729024300585 4.0567185583148004e-05 0.019070549655607737 7.891744574114432e-05']
['59866.35851872598 0.03396877230393164 6.765291117094765e-05 0.014924862901139764 4.0562471141464827e-05 0.000527859045707831 1.4346039524858847e-06 0.014924862901139764 4.0562471141464827e-05 0.019043909402791874 7.888111595943797e-05']
['59866.35855026395 0.0339377109681996 6.766052203768852e-05 0.014909483933116054 4.055015086809367e-05 0.000527315125978803 1.4341682119509374e-06 0.014909483933116054 4.055015086809367e-05 0.019028227035083545 7.888130943282884e-05']
['59866.35858180191 0.03413444435832528 6.779060711689144e-05 0.014934862728423861 4.058780086879134e-05 0.0005282127172505708 1.4354998083328145e-06 0.014934862728423863 4.058780086879134e-05 0.019199581629901416 7.901225216788465e-05']
['59866.35861333987 0.03403520367126834 6.771451908057684e-05 0.014883047456154779 4.054987363332357e-05 0.0005263801268707315 1.4341584067767022e-06 0.01488304745615478 4.054987363332357e-05 0.01915215621511356 7.89274878986549e-05']
['59866.35864487784 0.03413021923166543 6.775325452108438e-05 0.014923405546236152 4.054124904299376e-05 0.0005278075023218867 1.4338533742915619e-06 0.014923405546236152 4.054124904299376e-05 0.01920681368542928 7.895629406301238e-05']
['59866.358676415795 0.03401100542603836 6.771784024500213e-05 0.014858435991836283 4.052903692136824e-05 0.0005255096743811718 1.4334214588421528e-06 0.014858435991836285 4.052903692136824e-05 0.01915256943420208 7.891963457354109e-05']
['59866.35870795376 0.034059026949926095 6.773771821027278e-05 0.01494935344498597 4.057246753384671e-05 0.000528725221510527 1.43495750254381e-06 0.014949353444985969 4.057246753384671e-05 0.019109673504940125 7.895899942450744e-05']
['59866.35873949173 0.0342117865170361 6.782063582154645e-05 0.015008117731564878 4.0613027011784925e-05 0.0005308035829963719 1.4363920006333862e-06 0.01500811773156488 4.0613027011784925e-05 0.019203668785471223 7.905097473338833e-05']
['59866.358771029685 0.03406147567476623 6.773845963550744e-05 0.014966408879189545 4.059546097659579e-05 0.0005293284341016554 1.4357707292265247e-06 0.014966408879189545 4.059546097659579e-05 0.019095066795576685 7.897145285287324e-05']
['59866.35880256765 0.03405086720032677 6.770797717177609e-05 0.014871607404604067 4.054794264099579e-05 0.0005259755178143933 1.4340901118935825e-06 0.014871607404604067 4.054794264099579e-05 0.0191792597957227 7.892088332698283e-05']
['59866.35883410562 0.03389093347313459 6.759126474580297e-05 0.014911667866633128 4.0566808910073647e-05 0.0005273923668264978 1.4347573696672365e-06 0.014911667866633128 4.0566808910073647e-05 0.018979265606501462 7.883048303215995e-05']
['59866.358865643575 0.034098024521798054 6.77703759863512e-05 0.014868425304216766 4.0531303101265693e-05 0.0005258629740352702 1.4335016085605118e-06 0.014868425304216764 4.0531303101265693e-05 0.01922959921758129 7.896588119193046e-05']
['59866.35889718154 0.03394550059843524 6.764544057382809e-05 0.014978647467672572 4.059036471358957e-05 0.0005297612856246646 1.4355904857934723e-06 0.014978647467672572 4.059036471358957e-05 0.01896685313076267 7.888905714995919e-05']
['59866.3589287195 0.034005480759189646 6.767551202689193e-05 0.014966818913650884 4.061301856492437e-05 0.0005293429361041799 1.436391701886806e-06 0.014966818913650886 4.061301856492437e-05 0.019038661845538762 7.892649875078005e-05']
['59866.358960257465 0.03401802165177115 6.77123913891394e-05 0.014911197169061237 4.055979982713925e-05 0.0005273757193053271 1.4345094740682252e-06 0.014911197169061235 4.055979982713925e-05 0.01910682448270992 7.893076275859499e-05']
['59866.35899179543 0.03401801212303837 6.770459418411046e-05 0.014885470507940255 4.055049715940179e-05 0.0005264658247971818 1.4341804595005902e-06 0.014885470507940257 4.055049715940179e-05 0.019132541615098114 7.891929354416281e-05']
['59866.35902333339 0.03406836178743441 6.773790811234404e-05 0.015058901083440856 4.0648221235257146e-05 0.0005325996766581135 1.4376367416631385e-06 0.015058901083440856 4.0648221235257146e-05 0.01900946070399355 7.899811443969263e-05']
['59866.359054871355 0.03404102845620293 6.770752253108404e-05 0.01493546536806572 4.0574026279076064e-05 0.000528234031267883 1.4350126318789815e-06 0.01493546536806572 4.0574026279076064e-05 0.019105563088137212 7.893389776130663e-05']
['59866.35908640932 0.03404478940792631 6.770832621286578e-05 0.01497206430876612 4.060102115486368e-05 0.0005295284540066377 1.435967380305593e-06 0.014972064308766122 4.060102115486368e-05 0.019072725099160186 7.894846646620525e-05']
['59866.35911794728 0.03404863718616366 6.770143082347052e-05 0.014945606522484845 4.057719677319382e-05 0.0005285927012355412 1.4351247651702894e-06 0.014945606522484847 4.057719677319382e-05 0.019103030663678813 7.893030237820995e-05']
['59866.359149485244 0.0339535771472004 6.768273606629115e-05 0.014875168622974236 4.0534961353437166e-05 0.0005261014701492915 1.4336309927641043e-06 0.014875168622974238 4.0534961353437166e-05 0.019078408524226168 7.889255892252369e-05']
['59866.3591810232 0.03391143675855366 6.76278094724835e-05 0.01486583377830375 4.054315660021092e-05 0.0005257713175554464 1.4339208403271935e-06 0.01486583377830375 4.054315660021092e-05 0.01904560298024991 7.884965542826269e-05']
['59866.35921256117 0.03400649504262445 6.771770058406127e-05 0.014912465324095446 4.0580061373449645e-05 0.0005274205711147275 1.435226079679333e-06 0.014912465324095448 4.0580061373449645e-05 0.019094029718529002 7.894573043214884e-05']
['59866.359244099134 0.033946842329715544 6.764310151033279e-05 0.014885396029680545 4.054381917000239e-05 0.0005264631906675849 1.4339442739399613e-06 0.014885396029680547 4.054381917000239e-05 0.019061446300035 7.886311212998786e-05']
['59866.35927563709 0.03402337401881051 6.773196776330377e-05 0.014894876688327624 4.056612934958556e-05 0.000526798500375907 1.4347333351315011e-06 0.014894876688327624 4.056612934958556e-05 0.019128497330482885 7.895080941634815e-05']
['59866.35930717506 0.03403542167872688 6.772307765604747e-05 0.014933037283573947 4.057238644555964e-05 0.0005281481553458584 1.4349546346323177e-06 0.014933037283573947 4.057238644555964e-05 0.019102384395152938 7.894639820216543e-05']
['59866.359338713024 0.034013353826037096 6.770616140747904e-05 0.014946129668796666 4.057608346878513e-05 0.0005286112037514271 1.4350853900814428e-06 0.014946129668796666 4.057608346878513e-05 0.01906722415724043 7.893378770970909e-05']
['59866.35937025098 0.034034064716995945 6.770283727915571e-05 0.01497781889470594 4.0607602291746925e-05 0.0005297319808505864 1.4362001404091779e-06 0.01497781889470594 4.0607602291746925e-05 0.019056245822290006 7.89471439605799e-05']
['59866.35940178895 0.03407092617255398 6.77494892388572e-05 0.014845461760859553 4.051970357326305e-05 0.0005250508048272246 1.4330913591784774e-06 0.014845461760859553 4.051970357326305e-05 0.019225464411694426 7.894200193680886e-05']
['59866.35943332691 0.03406080506811206 6.772200323572884e-05 0.014867032898161192 4.0532939882313936e-05 0.000525813727744929 1.4335594978481977e-06 0.014867032898161192 4.0532939882313936e-05 0.019193772169950864 7.892521104034719e-05']
['59866.35946486487 0.0339743389659245 6.76554218012548e-05 0.014917644997035339 4.057426937510666e-05 0.0005276037645707237 1.435021229642296e-06 0.014917644997035337 4.057426937510666e-05 0.019056693968889163 7.888933663321947e-05']
['59866.35949640284 0.03390938757707343 6.763718293113496e-05 0.01497620502325898 4.060071765909914e-05 0.0005296749018242978 1.435956646338674e-06 0.01497620502325898 4.060071765909914e-05 0.018933182553814452 7.888730436067453e-05']
['59866.3595279408 0.03389946672422848 6.760410962922059e-05 0.014898442680028953 4.05457051599231e-05 0.0005269246215328606 1.4340109771885174e-06 0.014898442680028951 4.05457051599231e-05 0.019001024044199528 7.883064027188343e-05']
['59866.35955947876 0.03394803333158091 6.763490267797455e-05 0.014976366469953824 4.0593053155101634e-05 0.0005296806118330823 1.4356855699614408e-06 0.014976366469953824 4.0593053155101634e-05 0.018971666861627087 7.888140480944793e-05']
['59866.35959101673 0.034033707976638246 6.76979115270733e-05 0.014820713678310149 4.049853060773372e-05 0.0005241755204561614 1.4323425187064982e-06 0.014820713678310149 4.049853060773372e-05 0.019212994298328095 7.888686967114989e-05']
['59866.359622554686 0.03402781160566679 6.771151437330669e-05 0.014853719399824236 4.052618843109972e-05 0.0005253428590626685 1.4333207141073564e-06 0.014853719399824236 4.052618843109972e-05 0.019174092205842555 7.891274375840392e-05']
['59866.35965409265 0.034013982490856035 6.769535408959126e-05 0.01493937827436597 4.056615951127831e-05 0.0005283724220188919 1.4347344018831663e-06 0.014939378274365969 4.056615951127831e-05 0.019074604216490064 7.891941625993958e-05']
['59866.35968563061 0.03399652727769563 6.768157082859181e-05 0.015022693553640889 4.061912394750247e-05 0.0005313190972481552 1.4366076356238664e-06 0.015022693553640887 4.061912394750247e-05 0.018973833724054742 7.893483552962063e-05']
['59866.359717168576 0.03388210299749555 6.758627698202809e-05 0.014874341729881679 4.0547605949026446e-05 0.0005260722247886051 1.4340782038510892e-06 0.01487434172988168 4.0547605949026446e-05 0.019007761267613867 7.88163256215928e-05']
['59866.35974870654 0.034023876759759264 6.770785707688424e-05 0.0148560013171492 4.0525006033508493e-05 0.0005254235653786674 1.4332788953470577e-06 0.014856001317149202 4.0525006033508493e-05 0.01916787544261006 7.890899837128642e-05']
['59866.3597802445 0.033976702767063785 6.766231842614521e-05 0.014886373841538668 4.0544319708810604e-05 0.0005264977736877258 1.4339619768789694e-06 0.014886373841538666 4.0544319708810604e-05 0.01909032892552512 7.887985291220641e-05']
['59866.359811782466 0.03392723309970754 6.762552588975598e-05 0.01491311085345381 4.0559030291749946e-05 0.0005274434020454595 1.434482257321316e-06 0.014913110853453808 4.0559030291749946e-05 0.019014122246253734 7.885586021389372e-05']
['59866.35984332043 0.034060449884737956 6.770083601819043e-05 0.014843751939353342 4.0505030589000245e-05 0.0005249903322617761 1.432572408517292e-06 0.014843751939353342 4.0505030589000245e-05 0.019216697945384616 7.889271639750881e-05']
['59866.35987485839 0.033922892340569465 6.762826024867048e-05 0.014820868663935206 4.051176913261659e-05 0.0005241810019513473 1.4328107357452435e-06 0.014820868663935206 4.051176913261659e-05 0.019102023676634258 7.883390782218226e-05']
['59866.359906396356 0.03393285514338421 6.764489412583993e-05 0.014870102725571663 4.054688034804933e-05 0.0005259223006797768 1.4340525409661511e-06 0.014870102725571661 4.054688034804933e-05 0.01906275241781255 7.886622348797438e-05']
['59866.359937934314 0.033990368431222766 6.765128292712907e-05 0.014832337479849845 4.052242264248128e-05 0.000524586628338953 1.4331875265799643e-06 0.014832337479849845 4.052242264248128e-05 0.01915803095137292 7.885913275266438e-05']
['59866.35996947228 0.033931015196341 6.766636856206518e-05 0.01485461072571296 4.051528408232854e-05 0.0005253743832673564 1.4329350516611048e-06 0.014854610725712957 4.051528408232854e-05 0.01907640447062804 7.886840735458671e-05']
['59866.360001010245 0.03396157246799 6.765563488774833e-05 0.014871234488957627 4.053853366330606e-05 0.0005259623286213961 1.4337573373805243e-06 0.014871234488957627 4.053853366330606e-05 0.019090337979032375 7.887114582428296e-05']
['59866.360032548204 0.033930424073244314 6.764874057317393e-05 0.014844323666907785 4.051079226576146e-05 0.0005250105529876408 1.4327761861477466e-06 0.014844323666907785 4.051079226576146e-05 0.01908610040633653 7.88509758413697e-05']
['59866.36006408617 0.03395017739253311 6.764329386422914e-05 0.014883779564505798 4.055844687645004e-05 0.0005264060199069411 1.4344616232260149e-06 0.014883779564505798 4.055844687645004e-05 0.019066397828027312 7.887079825786145e-05']
['59866.360095624135 0.03393680661499518 6.763277464615495e-05 0.014905293515025527 4.057977352164047e-05 0.0005271669202559743 1.4352158990041534e-06 0.014905293515025527 4.057977352164047e-05 0.01903151309996965 7.887274703853806e-05']
['59866.360127162094 0.033936989955288335 6.762908557918417e-05 0.0149350214087522 4.056929290299378e-05 0.0005282183294191545 1.4348452229454242e-06 0.014935021408752202 4.056929290299378e-05 0.019001968546536133 7.886419176613374e-05']
['59866.36015870006 0.03393033309422705 6.763174149770052e-05 0.014976805342834425 4.0592758526284224e-05 0.000529696133786046 1.4356751495986255e-06 0.014976805342834425 4.0592758526284224e-05 0.018953527751392626 7.887854272731594e-05']
['59866.36019023802 0.03396071191577946 6.766779885077724e-05 0.014983932975277763 4.05988033601006e-05 0.0005299482222162459 1.4358889418613022e-06 0.014983932975277763 4.05988033601006e-05 0.018976778940501694 7.891257083368508e-05']
['59866.36022177598 0.034030687123278225 6.772216302427324e-05 0.014814857340857785 4.050797522741836e-05 0.0005239683948886153 1.4326765537972613e-06 0.014814857340857785 4.050797522741836e-05 0.019215829782420438 7.891253019458559e-05']
['59866.36025331395 0.03400389464405965 6.768417901510367e-05 0.014922859002609645 4.054904242411472e-05 0.0005277881722952702 1.4341290087646284e-06 0.014922859002609645 4.054904242411472e-05 0.019081035641450007 7.890103250567291e-05']
['59866.36028485191 0.033993166271364124 6.765280541116145e-05 0.014841598032957891 4.0537924726912944e-05 0.0005249141534062664 1.4337358006611926e-06 0.014841598032957891 4.0537924726912944e-05 0.019151568238406233 7.886840572222401e-05']
['59866.36031638987 0.03387045633204511 6.758561504710737e-05 0.014864534691711829 4.054218733382978e-05 0.0005257253717659778 1.4338865595414753e-06 0.014864534691711829 4.054218733382978e-05 0.019005921640333278 7.881297047508826e-05']
['59866.36034792784 0.033884090712356686 6.760416944887852e-05 0.014876767512075399 4.054678890738426e-05 0.0005261580192834928 1.4340493069141856e-06 0.014876767512075399 4.054678890738426e-05 0.019007323200281288 7.883124899158113e-05']
['59866.3603794658 0.03397851078490798 6.766186721931344e-05 0.014873726019367126 4.053087260021836e-05 0.0005260504484837374 1.4334863827005808e-06 0.014873726019367126 4.053087260021836e-05 0.019104784765540856 7.887255485489952e-05']
['59866.36041100376 0.03394162859942035 6.766485931658505e-05 0.01496093475157698 4.057925705698025e-05 0.0005291348264419542 1.435197632803352e-06 0.01496093475157698 4.057925705698025e-05 0.01898069384784337 7.889999549828711e-05']
['59866.36044254172 0.0338152507769146 6.754055306461642e-05 0.01489668463062358 4.056564696845648e-05 0.0005268624432544017 1.434716274389024e-06 0.01489668463062358 4.056564696845648e-05 0.01891856614629102 7.878640759828886e-05']
['59866.36047407969 0.033806153191790665 6.75500083902239e-05 0.014866929048976588 4.0537126385202496e-05 0.0005258100548313588 1.4337075650990827e-06 0.014866929048976588 4.0537126385202496e-05 0.018939224142814078 7.877983402552457e-05']
['59866.36050561765 0.033877987204314584 6.760290427014643e-05 0.014868672714218273 4.0537865553131164e-05 0.0005258717243740947 1.4337337078167766e-06 0.014868672714218273 4.0537865553131164e-05 0.01900931449009631 7.88255745894841e-05']
['59866.36053715561 0.03388024887941993 6.759364986951478e-05 0.01489454664501383 4.053774650997847e-05 0.0005267868274815015 1.4337294975265115e-06 0.01489454664501383 4.053774650997847e-05 0.0189857022344061 7.881757668686489e-05']
['59866.36056869358 0.033959870618429 6.763936978855864e-05 0.01496916670269198 4.0564266332707e-05 0.0005294259721555638 1.4346674443881042e-06 0.014969166702691982 4.0564266332707e-05 0.01899070391573702 7.887042568988813e-05']
['59866.36060023154 0.0339703329919872 6.768956627998937e-05 0.014930812243020772 4.057304281276792e-05 0.0005280694606341656 1.4349778488735804e-06 0.014930812243020772 4.057304281276792e-05 0.019039520748966428 7.891799025735369e-05']
['59866.3606317695 0.033889853242617236 6.760112408559485e-05 0.014903711815775773 4.055749949332705e-05 0.0005271109790884003 1.4344281164022313e-06 0.014903711815775773 4.055749949332705e-05 0.018986141426841463 7.883414706069455e-05']
['59866.36066330747 0.033859427590123815 6.757790375714012e-05 0.014788687657746316 4.04744000775447e-05 0.0005230428316827622 1.4314890757822735e-06 0.014788687657746316 4.04744000775447e-05 0.019070739932377498 7.877150587519858e-05']
['59866.360694845425 0.03386739329673954 6.757537359623763e-05 0.014961290941596853 4.058234229379449e-05 0.0005291474240869192 1.4353067507343733e-06 0.014961290941596853 4.058234229379449e-05 0.018906102355142687 7.88248540926134e-05']
['59866.36072638339 0.033921502624481265 6.762160884069564e-05 0.014795648857058839 4.0489305616606795e-05 0.0005232890337450813 1.4320162513869805e-06 0.014795648857058839 4.0489305616606795e-05 0.019125853767422426 7.88166597333269e-05']
['59866.36075792136 0.033900266893271906 6.762425414238364e-05 0.014947916032173814 4.0586408645927576e-05 0.0005286743834317896 1.4354505685215583e-06 0.014947916032173813 4.0586408645927576e-05 0.018952350861098095 7.886885516531805e-05']
['59866.360789459315 0.03397952224707514 6.767879899300557e-05 0.014899171304072692 4.055643010933118e-05 0.0005269503913369087 1.43439029468023e-06 0.014899171304072692 4.055643010933118e-05 0.01908035094300245 7.890021455198152e-05']
['59866.36082099728 0.0340092085760499 6.771383364158993e-05 0.014849113432716244 4.0529834609073494e-05 0.0005251799562997894 1.4334496712735605e-06 0.014849113432716244 4.0529834609073494e-05 0.01916009514333366 7.891660636317155e-05']
['59866.36085253525 0.03397181969935719 6.765668937882736e-05 0.014850656837352719 4.052063981181623e-05 0.0005252345430724752 1.4331244718437336e-06 0.014850656837352719 4.052063981181623e-05 0.019121162862004472 7.886285480796442e-05']
['59866.360884073205 0.03406240166609788 6.774138084687068e-05 0.014880554368633453 4.052979988968983e-05 0.0005262919519368249 1.4334484433265534e-06 0.014880554368633453 4.052979988968983e-05 0.019181847297464423 7.894022648902826e-05']
['59866.36091561117 0.033988203477081466 6.767893111829065e-05 0.014980445411244799 4.057653420376735e-05 0.0005298248748706468 1.4351013315704304e-06 0.014980445411244797 4.057653420376735e-05 0.01900775806583667 7.891066369828499e-05']
['59866.36094714913 0.03380920210463057 6.753687320446114e-05 0.014865848212002764 4.0538079782589576e-05 0.0005257718280431231 1.4337412846339461e-06 0.014865848212002764 4.0538079782589576e-05 0.018943353892627808 7.876906216716725e-05']
['59866.360978687095 0.03395793876158818 6.765126986485474e-05 0.014889324873455914 4.055257668567e-05 0.0005266021450914707 1.4342540076972291e-06 0.014889324873455916 4.055257668567e-05 0.019068613888132267 7.887462069750035e-05']
['59866.36101022506 0.033911707869120546 6.76192434314339e-05 0.014843584529912648 4.050613658533517e-05 0.0005249844113639968 1.432611525135902e-06 0.014843584529912648 4.050613658533517e-05 0.019068123339207897 7.882327818169797e-05']
['59866.36104176302 0.03389684996295461 6.758298309460352e-05 0.014933238766765135 4.057670283663033e-05 0.0005281552813560423 1.4351072957379219e-06 0.014933238766765134 4.057670283663033e-05 0.01896361119618948 7.8828474658956e-05']
['59866.361073300985 0.03386166756069143 6.758136880080526e-05 0.014861532912844465 4.054294757686012e-05 0.0005256192055560201 1.4339134476384154e-06 0.014861532912844465 4.054294757686012e-05 0.019000134647846965 7.880972025842042e-05']
['59866.36110483895 0.03382050334360778 6.757184939302694e-05 0.014832560991200646 4.051401856572633e-05 0.0005245945334359124 1.4328902931671477e-06 0.014832560991200647 4.051401856572633e-05 0.018987942352407135 7.878667736830849e-05']
['59866.36113637691 0.03391903863349467 6.762798317010671e-05 0.014783524579931056 4.04894700678235e-05 0.0005228602251592363 1.4320220676589886e-06 0.014783524579931057 4.04894700678235e-05 0.019135514053563615 7.882221320179617e-05']
['59866.361167914874 0.03392180153375922 6.760134822488319e-05 0.014862213250140331 4.052245263740441e-05 0.0005256432675657105 1.4331885874333606e-06 0.01486221325014033 4.052245263740441e-05 0.019059588283618888 7.88163146155198e-05']
['59866.36119945283 0.033844556638874465 6.758901047684702e-05 0.014860936860549387 4.053309309673397e-05 0.0005255981245184416 1.4335649166998202e-06 0.014860936860549385 4.053309309673397e-05 0.018983619778325078 7.881120461728674e-05']
['59866.3612309908 0.033878818927364364 6.759616324127474e-05 0.014928015002994137 4.0568219481746195e-05 0.0005279705285058871 1.4348072584348524e-06 0.014928015002994137 4.0568219481746195e-05 0.01895080392437023 7.883540902957372e-05']
['59866.361262528764 0.033866160314769224 6.758932603935466e-05 0.014869215016725326 4.053555407756072e-05 0.0005258909044017944 1.4336519560916938e-06 0.014869215016725326 4.053555407756072e-05 0.018996945298043896 7.881274096761916e-05']
['59866.36129406672 0.03398950274964362 6.769093571725104e-05 0.014920147110326454 4.0560149170499423e-05 0.0005276922587259364 1.4345218295621382e-06 0.014920147110326454 4.0560149170499423e-05 0.01906935563931717 7.891253689376726e-05']
['59866.36132560469 0.033908424053041765 6.75960969676101e-05 0.01484663826103901 4.0545747033618333e-05 0.0005250924150092489 1.4340124581675355e-06 0.014846638261039012 4.0545747033618333e-05 0.019061785792002753 7.882379036666986e-05']
['59866.361357142654 0.03374950330688151 6.751696511522013e-05 0.014793256124061955 4.04736831617693e-05 0.000523204408126425 1.43146372007351e-06 0.014793256124061955 4.04736831617693e-05 0.01895624718281956 7.871886436585033e-05']
['59866.36138868061 0.033898884562587675 6.763261668943814e-05 0.014837740687987381 4.0513807062861985e-05 0.0005247777277353181 1.4328828127835171e-06 0.01483774068798738 4.0513807062861985e-05 0.019061143874600298 7.883869229627844e-05']
['59866.36142021858 0.03392930855227142 6.76183445216788e-05 0.014871029280922763 4.0536018389344504e-05 0.0005259550708718159 1.4336683777618105e-06 0.014871029280922763 4.0536018389344504e-05 0.019058279271348656 7.883786718775265e-05']
['59866.36145175654 0.03396447484274725 6.764601540647668e-05 0.014847204611838001 4.0520077032131716e-05 0.0005251124455712896 1.4331045675840307e-06 0.014847204611838001 4.0520077032131716e-05 0.01911727023090925 7.885340856971986e-05']
['59866.3614832945 0.033896117604682204 6.759227082885127e-05 0.01493489795194462 4.056705937414576e-05 0.0005282139630277801 1.4347662280217127e-06 0.01493489795194462 4.056705937414576e-05 0.018961219652737584 7.883147456483512e-05']
['59866.36151483247 0.03388332442708127 6.76102553174692e-05 0.014903188248858732 4.055480664079965e-05 0.0005270924616966478 1.4343328762265085e-06 0.014903188248858732 4.055480664079965e-05 0.018980136178222543 7.884059211958025e-05']
['59866.36154637043 0.033921465066132535 6.764521582577866e-05 0.014826460336579918 4.051073800583201e-05 0.0005243787669161378 1.4327742670953056e-06 0.014826460336579918 4.051073800583201e-05 0.01909500472955262 7.884792399228617e-05']
['59866.36157790839 0.03385481067791786 6.757392697496312e-05 0.014832569531976553 4.050938749612222e-05 0.0005245948355040687 1.432726502585082e-06 0.014832569531976553 4.050938749612222e-05 0.019022241145941306 7.878607797148322e-05']
['59866.36160944636 0.0338829221455872 6.760458697069832e-05 0.01482944537174124 4.0522855200096905e-05 0.0005244843409386329 1.4332028251761196e-06 0.01482944537174124 4.0522855200096905e-05 0.01905347677384596 7.88192994960418e-05']
['59866.361640984316 0.03399459913510824 6.768836087577077e-05 0.014912150894550382 4.0552601757651074e-05 0.0005274094504444272 1.434254894437167e-06 0.01491215089455038 4.0552601757651074e-05 0.019082448240557857 7.890644908601084e-05']
['59866.36167252228 0.03399808326223669 6.770254913178933e-05 0.014952834846582434 4.058069774507243e-05 0.0005288483509045194 1.435248586721424e-06 0.014952834846582436 4.058069774507243e-05 0.019045248415654255 7.893306144081372e-05']
['59866.36170406024 0.03382347523655117 6.756616922102563e-05 0.014814800569333781 4.0502468599968934e-05 0.0005239663870066881 1.432481796690963e-06 0.014814800569333781 4.0502468599968934e-05 0.019008674667217392 7.877586677337001e-05']
['59866.361735598206 0.03388238143286422 6.759891637149798e-05 0.014786609290570114 4.0492151191371744e-05 0.0005229693244806173 1.4321168930069315e-06 0.014786609290570116 4.0492151191371744e-05 0.019095772142294104 7.879865355896435e-05']
['59866.36176713617 0.03386700207614727 6.756486500582151e-05 0.014799635225327913 4.048870364948809e-05 0.0005234300226817497 1.4319949611553095e-06 0.014799635225327913 4.048870364948809e-05 0.019067366850819355 7.876767170908985e-05']
['59866.36179867413 0.03385865700275736 6.758754070423136e-05 0.014845080845199261 4.053135749777631e-05 0.0005250373326916165 1.4335035324435232e-06 0.014845080845199261 4.053135749777631e-05 0.019013576157558096 7.880905150462527e-05']
['59866.361830212096 0.03398036676485443 6.769397295654677e-05 0.014894971602027181 4.05370228959461e-05 0.0005268018572613407 1.433703904915369e-06 0.014894971602027181 4.05370228959461e-05 0.019085395162827246 7.890325848726492e-05']
['59866.36186175006 0.03384288102161744 6.759458527807578e-05 0.014917903736104353 4.054788302852126e-05 0.0005276129155933469 1.4340880035335843e-06 0.014917903736104353 4.054788302852126e-05 0.018924977285513088 7.882359276897812e-05']
['59866.36189328802 0.033917624389797535 6.762593258890045e-05 0.014879537537615443 4.0532120128191036e-05 0.0005262559888962015 1.4335305049769134e-06 0.014879537537615445 4.0532120128191036e-05 0.01903808685218209 7.884237135325533e-05']
['59866.361924825986 0.03372081586571177 6.748532495643906e-05 0.014810449966921635 4.0502735515413053e-05 0.0005238125159223947 1.4324912368937007e-06 0.014810449966921635 4.0502735515413053e-05 0.01891036589879013 7.870667486755922e-05']
['59866.361956363944 0.0338784513003299 6.76038052991655e-05 0.014886601730742223 4.053135856245227e-05 0.0005265058336195532 1.4335035700987324e-06 0.014886601730742225 4.053135856245227e-05 0.018991849569587674 7.882300119790892e-05']
['59866.36198790191 0.033758513828054 6.753747831202219e-05 0.014856108635643605 4.053209408867357e-05 0.0005254273609939718 1.4335295840173755e-06 0.014856108635643605 4.053209408867357e-05 0.01890240519241039 7.876650067103371e-05']
['59866.362019439875 0.03390153363456009 6.762313748959881e-05 0.014865852929363257 4.054495903206119e-05 0.0005257719948856211 1.4339845883135394e-06 0.014865852929363259 4.054495903206119e-05 0.01903568070519683 7.88465752385524e-05']
['59866.362050977834 0.03384554226494795 6.757366863490718e-05 0.014751057243259038 4.046417099888858e-05 0.000521711928021374 1.431127296130852e-06 0.014751057243259038 4.046417099888858e-05 0.019094485021688916 7.876261694108148e-05']
['59866.3620825158 0.033813338203019495 6.757545642779418e-05 0.014808931162852411 4.050382149232539e-05 0.0005237587992167936 1.4325296454700746e-06 0.014808931162852411 4.050382149232539e-05 0.019004407040167086 7.878452809344529e-05']
['59866.36211405376 0.03373661609383329 6.751769608859587e-05 0.014807424590627748 4.048664325535397e-05 0.0005237055151241979 1.4319220896194953e-06 0.014807424590627746 4.048664325535397e-05 0.018929191503205545 7.872615554692287e-05']
['59866.362145591724 0.03381780001835769 6.75662145190505e-05 0.014818355794249595 4.051132103335377e-05 0.0005240921273665005 1.4327948874757605e-06 0.014818355794249597 4.051132103335377e-05 0.018999444224108097 7.878045745171706e-05']
['59866.36217712969 0.03388422141727802 6.760718726969962e-05 0.014825507444929765 4.051746449882207e-05 0.0005243450652680595 1.4330121681195369e-06 0.014825507444929767 4.051746449882207e-05 0.01905871397234825 7.881875855361806e-05']
['59866.36220866765 0.03375165091606076 6.75197030758942e-05 0.014762723566855615 4.046582856889794e-05 0.0005221245398142862 1.4311859206776322e-06 0.014762723566855615 4.046582856889794e-05 0.018988927349205147 7.871717465219616e-05']
['59866.36224020561 0.033773065173253604 6.749000273925065e-05 0.014853221404610024 4.0527090574682195e-05 0.0005253252460848956 1.4333526209096962e-06 0.014853221404610024 4.0527090574682195e-05 0.018919843768643578 7.872322109893976e-05']
['59866.36227174358 0.0338444847378694 6.757054201264256e-05 0.014832033998803212 4.0511545807898585e-05 0.0005245758948925738 1.432802837249069e-06 0.014832033998803212 4.0511545807898585e-05 0.019012450739066187 7.87842845472862e-05']
['59866.36230328154 0.033810555532363014 6.753730414538915e-05 0.014835440883446486 4.0519391025174794e-05 0.0005246963887884673 1.4330803050511e-06 0.014835440883446484 4.0519391025174794e-05 0.01897511464891653 7.87598152631011e-05']
['59866.3623348195 0.03384421352133681 6.758910726237988e-05 0.01479157550289246 4.049132726842294e-05 0.0005231449683116273 1.432087752693592e-06 0.014791575502892462 4.049132726842294e-05 0.01905263801844435 7.87898153601341e-05']
['59866.36236635746 0.03387386257841213 6.760141148861633e-05 0.014790695588900803 4.0483652948263714e-05 0.0005231138477202344 1.431816329140656e-06 0.014790695588900803 4.0483652948263714e-05 0.019083166989511326 7.879642752871914e-05']
['59866.36239789543 0.0338071636760492 6.756676795817387e-05 0.014892639903770752 4.055402527240458e-05 0.0005267193903050497 1.4343052409726305e-06 0.014892639903770752 4.055402527240458e-05 0.018914523772278445 7.880290031533446e-05']
['59866.36242943339 0.033837412044983015 6.756321649988729e-05 0.01477895389795206 4.048486324372645e-05 0.0005226985703525122 1.431859134586322e-06 0.01477895389795206 4.048486324372645e-05 0.019058458147030954 7.876428362953526e-05']
['59866.36246097135 0.033831981269615057 6.755039892131306e-05 0.014885402617072429 4.054338563552386e-05 0.0005264634236489138 1.4339289407943482e-06 0.014885402617072427 4.054338563552386e-05 0.01894657865254263 7.878338983072088e-05']
['59866.36249250932 0.033801000358395464 6.753235264545231e-05 0.014835984327746382 4.0534667737566915e-05 0.0005247156091988281 1.4336206082269664e-06 0.014835984327746382 4.0534667737566915e-05 0.01896501603064908 7.876343023526006e-05']
['59866.36252404728 0.03380494312153473 6.751823765191646e-05 0.014835022463589614 4.051020433549456e-05 0.0005246815902132431 1.432755392368153e-06 0.014835022463589614 4.051020433549456e-05 0.018969920657945116 7.873873932775524e-05']
['59866.36255558524 0.03390422667000395 6.75991747760052e-05 0.01481185139543484 4.049281615493667e-05 0.0005238620813168984 1.4321404112821168e-06 0.01481185139543484 4.049281615493667e-05 0.019092375274569112 7.879921694125138e-05']
['59866.36258712321 0.033709534204964996 6.747304053786443e-05 0.01485979776794454 4.052943350346151e-05 0.0005255578373587304 1.433435485064483e-06 0.01485979776794454 4.052943350346151e-05 0.018849736437020453 7.870988616136988e-05']
['59866.362618661165 0.033798778685420236 6.756171581333459e-05 0.014807604782467402 4.0509987487290995e-05 0.0005237118881068614 1.43274772293182e-06 0.0148076047824674 4.0509987487290995e-05 0.018991173902952838 7.877591338640421e-05']
['59866.36265019913 0.03387168769301828 6.758707594287135e-05 0.014816906353506121 4.0500303779926014e-05 0.0005240408638867132 1.432405231844133e-06 0.014816906353506121 4.0500303779926014e-05 0.019054781339512158 7.87926864675507e-05']
['59866.3626817371 0.03385527606985077 6.75874080584504e-05 0.014817149948641806 4.0509790452566996e-05 0.0005240494793022592 1.432740754253979e-06 0.014817149948641804 4.0509790452566996e-05 0.019038126121208962 7.879784800722906e-05']
['59866.362713275055 0.03388700285732627 6.761375331369494e-05 0.014882349666102902 4.053806295909604e-05 0.0005263554475960655 1.433740689624578e-06 0.014882349666102902 4.053806295909604e-05 0.01900465319122337 7.88349807232857e-05']
['59866.36274481302 0.03386051199020185 6.759041713385635e-05 0.014829158581105846 4.051250131877636e-05 0.0005244741977947983 1.4328366315333748e-06 0.014829158581105844 4.051250131877636e-05 0.019031353409096 7.880182264029531e-05']
['59866.36277635099 0.033832505717369024 6.755174335897106e-05 0.014855499866805717 4.0526341636427296e-05 0.0005254058302006939 1.4333261326373989e-06 0.014855499866805717 4.0526341636427296e-05 0.018977005850563305 7.877577290810108e-05']
['59866.362807888945 0.033827519117014614 6.755399635250513e-05 0.014773944938709942 4.0497937046040407e-05 0.0005225214146584835 1.432321525755938e-06 0.01477394493870994 4.0497937046040407e-05 0.019053574178304673 7.876309623281279e-05']
['59866.36283942691 0.03393437486553076 6.761922176643482e-05 0.014900735871341513 4.0546461270051426e-05 0.0005270057265846049 1.4340377191139495e-06 0.014900735871341511 4.0546461270051426e-05 0.01903363899418925 7.884398945907083e-05']
['59866.36287096487 0.03383172940286717 6.756379175489043e-05 0.014852936328835335 4.051544997074312e-05 0.0005253151635918517 1.4329409187635899e-06 0.014852936328835335 4.051544997074312e-05 0.018978793074031833 7.878050293460932e-05']
['59866.362902502835 0.03377020933758807 6.75202278586484e-05 0.014773559173707543 4.047995197751052e-05 0.0005225077710124828 1.4316854340762983e-06 0.014773559173707543 4.047995197751052e-05 0.018996650163880528 7.872488604110747e-05']
['59866.3629340408 0.03387525796731229 6.761214655854e-05 0.014882008442900963 4.0527692353076156e-05 0.000526343379294002 1.433373904466595e-06 0.014882008442900965 4.0527692353076156e-05 0.018993249524411327 7.882827037122583e-05']
['59866.36296557876 0.03373856483449805 6.750137214292471e-05 0.01474450595605371 4.046327557868185e-05 0.0005214802236341867 1.4310956271192864e-06 0.014744505956053712 4.046327557868185e-05 0.01899405887844434 7.870013921038491e-05']
['59866.362997116725 0.03389412652756679 6.761541439179798e-05 0.014771365862221523 4.0475407510620485e-05 0.0005224301984869849 1.4315247064386837e-06 0.014771365862221523 4.0475407510620485e-05 0.019122760665345268 7.880420595707666e-05']
['59866.36302865469 0.033845986562318096 6.758260382966756e-05 0.014754688812540537 4.046559518434247e-05 0.0005218403685107809 1.431177666387489e-06 0.014754688812540537 4.046559518434247e-05 0.01909129774977756 7.877101455498005e-05']
['59866.36306019265 0.03379171543682312 6.711757708946595e-05 0.014868771156307893 4.024034516867082e-05 0.0005258752060507994 1.42321107673734e-06 0.014868771156307893 4.024034516867082e-05 0.018922944280515226 7.82563386164608e-05']
['59866.363091730615 0.03374908153334352 6.711193735957191e-05 0.0147538167939362 4.017396245705621e-05 0.0005218095271615923 1.4208632685841603e-06 0.014753816793936197 4.017396245705621e-05 0.018995264739407325 7.821738550767384e-05']
['59866.36312326857 0.033699087287264035 6.705516152963842e-05 0.014779722848910815 4.019616806954539e-05 0.0005227257664294191 1.4216486314712794e-06 0.014779722848910814 4.019616806954539e-05 0.018919364438353223 7.818009091348667e-05']
['59866.36315480654 0.03379556109409124 6.713738553371803e-05 0.01485293543728504 4.022275589409463e-05 0.0005253151320597102 1.4225889834052952e-06 0.01485293543728504 4.022275589409463e-05 0.018942625656806197 7.826428705366845e-05']
['59866.363186344504 0.0338304859035789 6.714752121545322e-05 0.01475971752369532 4.017882602981421e-05 0.0005220182227858175 1.4210352822831653e-06 0.014759717523695318 4.017882602981421e-05 0.01907076837988358 7.825041639834139e-05']
['59866.36321788246 0.03376280006663365 6.710043295986144e-05 0.014797398542874695 4.019456547152164e-05 0.0005233509162220704 1.4215919511607751e-06 0.014797398542874695 4.019456547152164e-05 0.01896540152375896 7.82181001868832e-05']
['59866.36324942043 0.03374618895416149 6.710400297291374e-05 0.014753193033470858 4.016119845531674e-05 0.0005217874661479559 1.4204118343685001e-06 0.01475319303347086 4.016119845531674e-05 0.01899299592069063 7.820402212390454e-05']
['59866.363280958394 0.033869462295687665 6.720575217438459e-05 0.014798496460520779 4.019409903255563e-05 0.0005233897471155109 1.421575454256977e-06 0.014798496460520779 4.019409903255563e-05 0.019070965835166886 7.83082289568835e-05']
['59866.36331249635 0.03362938030292368 6.696061648524448e-05 0.014844999466892234 4.0212164494258676e-05 0.0005250344545227667 1.422214389263483e-06 0.014844999466892234 4.0212164494258676e-05 0.018784380836031445 7.810724891709676e-05']
['59866.36334403432 0.03377858518064537 6.712960889172055e-05 0.014786583763660875 4.019641671607332e-05 0.0005229684216508867 1.42165742554328e-06 0.014786583763660875 4.019641671607332e-05 0.01899200141698449 7.824408160856376e-05']
['59866.36337557228 0.03373208722320969 6.70825929678981e-05 0.014773563805067775 4.017274887023948e-05 0.0005225079348133437 1.4208203467306594e-06 0.014773563805067775 4.017274887023948e-05 0.018958523418141915 7.819158542380387e-05']
['59866.36340711024 0.03368298859067696 6.706170292022878e-05 0.01484374605474113 4.021553218674819e-05 0.0005249901241361934 1.4223334970204874e-06 0.01484374605474113 4.021553218674819e-05 0.018839242535935833 7.819565862389292e-05']
['59866.36343864821 0.03370863696529255 6.706551783346347e-05 0.014831739359301507 4.0224550076294024e-05 0.0005245654741518791 1.4226524396199266e-06 0.014831739359301507 4.0224550076294024e-05 0.01887689760599104 7.820356840394748e-05']
['59866.36347018617 0.033890098613828794 6.72251084073845e-05 0.014743098422087313 4.0165451976810897e-05 0.0005214304423034485 1.4205622719176874e-06 0.014743098422087311 4.0165451976810897e-05 0.01914700019174148 7.831014450814212e-05']
['59866.36350172413 0.033790421790449485 6.711500803403338e-05 0.014826744972860966 4.020193516500297e-05 0.0005243888338652739 1.421852600748914e-06 0.014826744972860966 4.020193516500297e-05 0.018963676817588516 7.823439073974736e-05']
['59866.3635332621 0.03364317805159058 6.699112090043303e-05 0.014803126326935496 4.0210863005165556e-05 0.000523553495143457 1.4221683585029164e-06 0.014803126326935496 4.0210863005165556e-05 0.018840051724655086 7.813273182934683e-05']
['59866.363564800056 0.03378594581252861 6.714700483764659e-05 0.014836126360552513 4.0217488654373026e-05 0.0005247206325817563 1.4224026929079301e-06 0.014836126360552511 4.0217488654373026e-05 0.018949819451976102 7.826983232594507e-05']
['59866.36359633802 0.033741238319484786 6.710260020730067e-05 0.014813152077195899 4.0207463932100517e-05 0.0005239080835239343 1.4220481408850872e-06 0.014813152077195899 4.0207463932100517e-05 0.018928086242288887 7.822658825765056e-05']
['59866.36362787598 0.03379384330085041 6.712425212424641e-05 0.014825482891503698 4.0205470131007135e-05 0.0005243441968682531 1.4219776245962975e-06 0.014825482891503696 4.0205470131007135e-05 0.018968360409346713 7.824413749089899e-05']
['59866.363659413946 0.03356994593437087 6.695224776671531e-05 0.014713788127408518 4.0150394184762814e-05 0.0005203938026853129 1.4200297114651315e-06 0.01471378812740852 4.0150394184762814e-05 0.01885615780696235 7.806828827512149e-05']
['59866.36369095191 0.03370465668143941 6.706285477952868e-05 0.014844978234779283 4.023494888203495e-05 0.0005250337035903826 1.4230202221390202e-06 0.014844978234779283 4.023494888203495e-05 0.01885967844666013 7.820663400709763e-05']
['59866.36372248987 0.033785193210728065 6.711726744166295e-05 0.014878886243702677 4.023080624366194e-05 0.0005262329540860632 1.4228737062780187e-06 0.014878886243702679 4.023080624366194e-05 0.018906306967025388 7.825116842482787e-05']
['59866.363754027836 0.03381578221742384 6.714389780699307e-05 0.014860382586879209 4.021645614730704e-05 0.0005255785210974562 1.4223661754405238e-06 0.014860382586879207 4.021645614730704e-05 0.01895539963054463 7.826663630030487e-05']
['59866.3637855658 0.03376302213662058 6.711899532008087e-05 0.01486023660751209 4.0219090489784234e-05 0.0005255733581334859 1.422459346246533e-06 0.014860236607512088 4.0219090489784234e-05 0.01890278552910849 7.824662786729209e-05']
['59866.36381710376 0.033745610080562045 6.710812048767081e-05 0.014825495145136591 4.020944208229886e-05 0.0005243446302518633 1.4221181036366971e-06 0.014825495145136591 4.020944208229886e-05 0.018920114935425454 7.823234029451943e-05']
['59866.363848641726 0.03378679531342237 6.713181562452219e-05 0.014826721936734582 4.021251039774172e-05 0.0005243880191289664 1.4222266230966295e-06 0.014826721936734583 4.021251039774172e-05 0.01896007337668779 7.825424372858847e-05']
['59866.363880179684 0.03366295031524568 6.704921370626694e-05 0.014841302481472212 4.021202743782338e-05 0.0005249037004107366 1.42220954188367e-06 0.014841302481472212 4.021202743782338e-05 0.01882164783377347 7.818314530184185e-05']
['59866.36391171765 0.03384402201745407 6.713899689275338e-05 0.014869815328138414 4.023536552836534e-05 0.0005259121360748583 1.4230349579885762e-06 0.014869815328138414 4.023536552836534e-05 0.018974206689315654 7.827215049406984e-05']
['59866.363943255616 0.03374384021080955 6.710111928405187e-05 0.014755688569553371 4.0166259492670266e-05 0.0005218757276819994 1.4205908319489417e-06 0.014755688569553371 4.0166259492670266e-05 0.018988151641256175 7.820414701794964e-05']
['59866.363974793574 0.033733174711157374 6.709218539270572e-05 0.014761251820903267 4.017266143422081e-05 0.0005220724874491102 1.4208172543140872e-06 0.014761251820903267 4.017266143422081e-05 0.01897192289025411 7.819977025207764e-05']
['59866.36400633154 0.033699255210314964 6.70431495010242e-05 0.014880545477667154 4.023389948652075e-05 0.0005262916374832171 1.4229831073649437e-06 0.014880545477667156 4.023389948652075e-05 0.018818709732647806 7.818919722639527e-05']
['59866.364037869505 0.033719817146860884 6.707793398843597e-05 0.014781999291807383 4.0191967456022156e-05 0.0005228062791271203 1.4215000651587814e-06 0.014781999291807383 4.0191967456022156e-05 0.018937817855053503 7.819746464012063e-05']
['59866.364069407464 0.03372378139006935 6.706441393393145e-05 0.014728424827700638 4.015396749974339e-05 0.0005209114700635453 1.4201560916301055e-06 0.01472842482770064 4.015396749974339e-05 0.018995356562368712 7.816634008492497e-05']
['59866.36410094543 0.03364810842985428 6.700718871589613e-05 0.01477707262127043 4.017245908505207e-05 0.0005226320338006889 1.4208100976762126e-06 0.01477707262127043 4.017245908505207e-05 0.01887103580858385 7.81267547549999e-05']
['59866.36413248339 0.033628047682282315 6.699129688122906e-05 0.014778105569610738 4.01856519031303e-05 0.000522668566874982 1.4212766981674265e-06 0.01477810556961074 4.01856519031303e-05 0.018849942112671575 7.811991088518042e-05']
['59866.364164021354 0.033732130219223305 6.707772074672666e-05 0.014821468880566655 4.019624052682238e-05 0.0005242022302721964 1.421651194123234e-06 0.014821468880566655 4.019624052682238e-05 0.01891066133865665 7.819947808691565e-05']
['59866.36419555932 0.03375494895527055 6.709012876494103e-05 0.014835206042049817 4.021739279405196e-05 0.0005246880829731068 1.4223993025426092e-06 0.014835206042049819 4.021739279405196e-05 0.01891974291322073 7.822099501315124e-05']
['59866.36422709728 0.03364389010675308 6.698946820719604e-05 0.014768930574595713 4.016902957340983e-05 0.0005223440678062075 1.4206888035139338e-06 0.01476893057459571 4.016902957340983e-05 0.01887495953215737 7.810979316034836e-05']
['59866.36425863524 0.033641684119489916 6.698772534646642e-05 0.01480807353584017 4.0188218502126124e-05 0.0005237284668660542 1.4213674730378974e-06 0.01480807353584017 4.0188218502126124e-05 0.018833610583649747 7.811816852351475e-05']
['59866.36429017321 0.03368147464132752 6.705187536868126e-05 0.01483582684320289 4.021534614919374e-05 0.0005247100393224821 1.422326917287956e-06 0.014835826843202891 4.021534614919374e-05 0.01884564779812463 7.818713485194759e-05']
['59866.36432171117 0.033728484800587995 6.705920781389277e-05 0.014816628211816492 4.018231567967368e-05 0.000524031026636761 1.4211587033997863e-06 0.014816628211816492 4.018231567967368e-05 0.0189118565887715 7.817644047926335e-05']
['59866.36435324913 0.03375507447157691 6.710800898353148e-05 0.014840951036061497 4.020499070920357e-05 0.0005248912705719939 1.42196066851855e-06 0.014840951036061497 4.020499070920357e-05 0.018914123435515413 7.822995684302074e-05']
['59866.36438478709 0.0336550417926916 6.69973017002794e-05 0.01476235219755394 4.017135982454988e-05 0.0005221114053120474 1.4207712192889527e-06 0.01476235219755394 4.017135982454988e-05 0.018892689595137666 7.811770980559864e-05']
['59866.36441632506 0.03377178405427137 6.713370618197442e-05 0.014790109274719217 4.0195461629084436e-05 0.0005230931110979667 1.421623646250977e-06 0.014790109274719215 4.0195461629084436e-05 0.018981674779552156 7.824710628069813e-05']
['59866.36444786302 0.03368608339357045 6.706136562877875e-05 0.014800604988966888 4.019058115372374e-05 0.0005234643210543661 1.4214510347446897e-06 0.01480060498896689 4.019058115372374e-05 0.018885478404603563 7.818254008070344e-05']
['59866.36447940098 0.033743023663621675 6.709057571681551e-05 0.014762994763495204 4.016197801946321e-05 0.0005221341314333396 1.4204394058101376e-06 0.014762994763495206 4.016197801946321e-05 0.01898002890012647 7.819290139424168e-05']
['59866.36451093895 0.03374833602743688 6.707704822510264e-05 0.014806678255935743 4.017989162012666e-05 0.0005236791189341016 1.4210729698310625e-06 0.014806678255935742 4.017989162012666e-05 0.01894165777150114 7.819049871434426e-05']
['59866.36454247691 0.03372303473778708 6.709115593924577e-05 0.014732538713325206 4.0157867715202874e-05 0.0005210569690040929 1.4202940335344389e-06 0.014732538713325204 4.0157867715202874e-05 0.018990496024461876 7.81912881636818e-05']
['59866.36457401487 0.033669475615897476 6.70496792568497e-05 0.014734641619931791 4.0160506651278076e-05 0.0005211313441110482 1.4203873668057436e-06 0.014734641619931793 4.0160506651278076e-05 0.018934833995965683 7.815705843322003e-05']
['59866.36460555284 0.03366297086942535 6.70290039568591e-05 0.014724878268192807 4.01550447913125e-05 0.0005207860361798473 1.4201941930253e-06 0.014724878268192809 4.01550447913125e-05 0.018938092601232543 7.813651511067631e-05']
['59866.364637090795 0.03367229977044559 6.705011373588576e-05 0.014793130679447136 4.018799758380516e-05 0.0005231999714307511 1.4213596596506085e-06 0.014793130679447136 4.018799758380516e-05 0.018879169090998456 7.817156069691295e-05']
['59866.36466862876 0.03370519714890204 6.704087329891517e-05 0.014844560327245987 4.0219653751871705e-05 0.0005250189231348983 1.4224792675677503e-06 0.014844560327245987 4.0219653751871705e-05 0.018860636821656056 7.81799158390545e-05']
['59866.36470016673 0.03374206294767891 6.708531786704009e-05 0.01473996223777222 4.016235232413539e-05 0.0005213195224731831 1.4204526441298706e-06 0.01473996223777222 4.016235232413539e-05 0.01900210070990669 7.818858239877349e-05']
['59866.364731704685 0.0336583125532775 6.703640460759043e-05 0.01473250894503123 4.015794580379023e-05 0.0005210559161660632 1.4202967953532558e-06 0.01473250894503123 4.015794580379023e-05 0.01892580360824627 7.814435458747307e-05']
['59866.36476324265 0.03367010744908865 6.701500734084924e-05 0.014776458017510666 4.0198864537955064e-05 0.0005226102966392645 1.4217439995326773e-06 0.014776458017510664 4.0198864537955064e-05 0.018893649431577987 7.814704037284418e-05']
['59866.36479478062 0.033734325276159806 6.7087556969942e-05 0.014828358401410882 4.0226354073070774e-05 0.0005244458972272838 1.4227162429542248e-06 0.014828358401410882 4.0226354073070774e-05 0.018905966874748922 7.822339715332792e-05']
['59866.364826318575 0.03355963020393463 6.695073887018979e-05 0.014717268829038552 4.014658174169386e-05 0.0005205169073230569 1.4198948738740913e-06 0.014717268829038553 4.014658174169386e-05 0.01884236137489608 7.806503353491145e-05']
['59866.36485785654 0.03361768203734155 6.700769236085264e-05 0.01474587246539533 4.0150636220370814e-05 0.0005215285540156312 1.4200382717236685e-06 0.01474587246539533 4.0150636220370814e-05 0.01887180957194622 7.811596779421748e-05']
['59866.3648893945 0.033594601697737383 6.696643828684788e-05 0.014696740477942293 4.0149365143704415e-05 0.0005197908654229467 1.4199933165826673e-06 0.014696740477942293 4.0149365143704415e-05 0.01889786121979509 7.807992942023394e-05']
['59866.364920932465 0.03374549286030633 6.709671298899165e-05 0.01480155672229171 4.017760910219032e-05 0.0005234979817350662 1.4209922422727815e-06 0.01480155672229171 4.017760910219032e-05 0.01894393613801462 7.820619647505899e-05']
['59866.36495247043 0.03371323020114221 6.707365038408967e-05 0.014800109454792675 4.017757400901481e-05 0.0005234467951180778 1.4209910011055923e-06 0.014800109454792675 4.017757400901481e-05 0.018913120746349536 7.818639286408444e-05']
['59866.36498400839 0.03379161936687188 6.710889441908771e-05 0.014848964843812405 4.022136909317146e-05 0.0005251747010423374 1.4225399353559604e-06 0.014848964843812406 4.022136909317146e-05 0.018942654523059474 7.82391349765665e-05']
['59866.365015546355 0.03363496369534298 6.700978904367624e-05 0.01475710286662924 4.016937928263758e-05 0.0005219257482088049 1.4207011719477652e-06 0.01475710286662924 4.016937928263758e-05 0.01887786082871374 7.812740146472546e-05']
['59866.36504708432 0.033612039434205425 6.697609078034882e-05 0.014766558744112101 4.0177654020725616e-05 0.0005222601814627313 1.4209938309409878e-06 0.014766558744112101 4.0177654020725616e-05 0.018845480690093324 7.810275679402524e-05']
['59866.36507862228 0.03374741308904537 6.708618491056226e-05 0.014722191124230486 4.0147651302486e-05 0.0005206909979033132 1.4199327018489814e-06 0.014722191124230484 4.0147651302486e-05 0.01902522196481489 7.818177607959644e-05']
['59866.365110160245 0.033673255210106216 6.704585291142167e-05 0.014753959755314846 4.0184561234359334e-05 0.0005218145833860552 1.4212381236504986e-06 0.014753959755314846 4.0184561234359334e-05 0.01891929545479137 7.81661394352949e-05']
['59866.3651416982 0.03377150145912196 6.712119613789595e-05 0.014792995637527432 4.019038542612538e-05 0.0005231951952998521 1.421444112296961e-06 0.014792995637527432 4.019038542612538e-05 0.018978505821594528 7.823376541930222e-05']
['59866.36517323617 0.03351809473976637 6.69378756499003e-05 0.014713693283268454 4.0156723630945604e-05 0.000520390448260043 1.420253569831137e-06 0.014713693283268455 4.0156723630945604e-05 0.018804401456497914 7.80592188616672e-05']
['59866.365204774134 0.03379562859000178 6.715482728761645e-05 0.01469868453635759 4.013907605558213e-05 0.0005198596224243809 1.4196294145305407e-06 0.014698684536357589 4.013907605558213e-05 0.01909694405364419 7.823628477008223e-05']
['59866.36523631209 0.0337522520572807 6.711962349421759e-05 0.01476630718332363 4.017264365223353e-05 0.0005222512843198484 1.4208166254049373e-06 0.014766307183323632 4.017264365223353e-05 0.018985944873957064 7.822330315203306e-05']
['59866.36526785006 0.03364712054686749 6.698118233762502e-05 0.014779089262533955 4.0180815406057215e-05 0.0005227033578952519 1.4211056420748861e-06 0.014779089262533957 4.0180815406057215e-05 0.018868031284333536 7.81087492797178e-05']
['59866.365299388024 0.03356070756858342 6.696891528376749e-05 0.014746647957714827 4.017853628935524e-05 0.0005215559814458485 1.4210250348106633e-06 0.014746647957714827 4.017853628935524e-05 0.018814059610868593 7.809705751588509e-05']
['59866.36533092598 0.0336837112299051 6.705709514349907e-05 0.014721742063605202 4.0152166803881645e-05 0.0005206751156325884 1.420092405041794e-06 0.014721742063605202 4.0152166803881645e-05 0.0189619691662999 7.81591357944228e-05']
['59866.36536246395 0.0337338678559638 6.706766779096386e-05 0.014772493777102708 4.017784862193007e-05 0.000522470090315591 1.4210007135506813e-06 0.014772493777102706 4.017784862193007e-05 0.018961374078861094 7.818140177053503e-05']
['59866.36539400191 0.03355348280714934 6.695977892770414e-05 0.014735739089905728 4.017148049816906e-05 0.0005211701591713253 1.4207754872451732e-06 0.014735739089905726 4.017148049816906e-05 0.018817743717243617 7.8085593033938e-05']
['59866.36542553987 0.033706444827612654 6.705559249946568e-05 0.01477262834745006 4.017119898946377e-05 0.0005224748497680298 1.420765530911402e-06 0.01477262834745006 4.017119898946377e-05 0.018933816480162596 7.816762573921184e-05']
['59866.36545707784 0.033558807308784244 6.694839066286421e-05 0.014740980691005337 4.016272393367673e-05 0.0005213555428879294 1.4204657871288497e-06 0.014740980691005337 4.016272393367673e-05 0.018817826617778907 7.80713225590563e-05']
['59866.3654886158 0.033802236449492915 6.711989552300183e-05 0.014865367824232582 4.0238465528107724e-05 0.0005257548378012953 1.4231445980513727e-06 0.014865367824232582 4.0238465528107724e-05 0.018936868625260332 7.825736056803472e-05']
['59866.36552015376 0.033639395634466204 6.701045484301096e-05 0.014770891415545736 4.017302360270027e-05 0.0005224134183683882 1.4208300634038066e-06 0.014770891415545736 4.017302360270027e-05 0.018868504218920466 7.812984630504737e-05']
['59866.36555169173 0.03367579691065047 6.704900425777094e-05 0.014768100004301909 4.0180522295381124e-05 0.000522314692391131 1.4210952754053366e-06 0.014768100004301909 4.0180522295381124e-05 0.018907696906348564 7.816676623660598e-05']
['59866.365583229686 0.03359858702258364 6.698411138359304e-05 0.014775594894117354 4.017558347447975e-05 0.0005225797698938104 1.4209206003476702e-06 0.014775594894117353 4.017558347447975e-05 0.01882299212846629 7.810856985865564e-05']
['59866.36561476765 0.03357012261594802 6.695959925212631e-05 0.014804733079180269 4.0209651705245766e-05 0.0005236103223794747 1.4221255175318495e-06 0.014804733079180267 4.0209651705245766e-05 0.018765389536767756 7.810508320373603e-05']
['59866.36564630561 0.03362378004291084 6.700396932066987e-05 0.01487911463792051 4.0244757441958014e-05 0.0005262410318791169 1.4233671289826577e-06 0.01487911463792051 4.0244757441958014e-05 0.01874466540499033 7.816119501573209e-05']
['59866.365677843576 0.033653077759087414 6.7025373323553e-05 0.014709099028619325 4.013183929157233e-05 0.0005202279597406582 1.4193734663607297e-06 0.014709099028619327 4.013183929157233e-05 0.01894397873046809 7.812147716272548e-05']
['59866.36570938154 0.03360145979728258 6.698196091250137e-05 0.014740375473342084 4.01716067073428e-05 0.0005213341376917621 1.4207799509815876e-06 0.014740375473342086 4.01716067073428e-05 0.018861084323940493 7.810468022553636e-05']
['59866.3657409195 0.03361561069436191 6.699055626127986e-05 0.014733400521323214 4.0156783678258856e-05 0.0005210874492269549 1.4202556935704088e-06 0.014733400521323214 4.0156783678258856e-05 0.018882210173038698 7.810442947476269e-05']
['59866.365772457466 0.03370659830941386 6.705120317339978e-05 0.014698174117851716 4.013398152230744e-05 0.0005198415700625464 1.4194492322742265e-06 0.014698174117851714 4.013398152230744e-05 0.019008424191562144 7.814473955317435e-05']
['59866.36580399543 0.03363586359395712 6.69863645774994e-05 0.014783677893136662 4.018524456168539e-05 0.0005228656475046837 1.4212622914108745e-06 0.014783677893136662 4.018524456168539e-05 0.018852185700820458 7.811547170562392e-05']
['59866.36583553339 0.03357809513769953 6.698774797542755e-05 0.014716810063728552 4.014256349863529e-05 0.0005205006818193223 1.4197527575973543e-06 0.01471681006372855 4.014256349863529e-05 0.018861285073970977 7.809471033982625e-05']
['59866.365867071356 0.03367389652073123 6.701977292011863e-05 0.01478639463093678 4.01860640628456e-05 0.0005229617324491223 1.4212912753354338e-06 0.01478639463093678 4.01860640628456e-05 0.01888750188979445 7.814454368110033e-05']
['59866.365898609314 0.033711838620554664 6.706283693497811e-05 0.014797512980096217 4.019547294520588e-05 0.0005233549636108435 1.4216240464769023e-06 0.014797512980096217 4.019547294520588e-05 0.018914325640458446 7.81863168531185e-05']
['59866.36593014728 0.03377059830521197 6.711921446509493e-05 0.014818103642424016 4.0199598473477284e-05 0.0005240832093199558 1.4217699571918488e-06 0.014818103642424016 4.0199598473477284e-05 0.018952494662787957 7.823679868092894e-05']
['59866.365961685246 0.03355272427629256 6.694828021105126e-05 0.014674981969474758 4.012673912369707e-05 0.0005190213156058545 1.4191930848211862e-06 0.01467498196947476 4.012673912369707e-05 0.018877742306817796 7.805272202760566e-05']
['59866.365993223204 0.03370343330151817 6.70664516810952e-05 0.014802656371708009 4.0196105366407906e-05 0.000523536873877349 1.42164641380144e-06 0.01480265637170801 4.0196105366407906e-05 0.01890077692981016 7.818974247124775e-05']
['59866.36602476117 0.03350566305156144 6.689210517767939e-05 0.014667676063795647 4.012127071187417e-05 0.0005187629220497226 1.4189996793161914e-06 0.014667676063795647 4.012127071187417e-05 0.018837986987765794 7.800173138230467e-05']
['59866.366056299135 0.0337557868252185 6.711782140474864e-05 0.014823601889887112 4.018817796361463e-05 0.0005242776700448657 1.4213660392813443e-06 0.014823601889887112 4.018817796361463e-05 0.018932184935331386 7.822973602253108e-05']
['59866.366087837094 0.033673384567058894 6.703218148740231e-05 0.014838280583768173 4.0216595655164545e-05 0.0005247968226424888 1.422371109521662e-06 0.014838280583768175 4.0216595655164545e-05 0.01883510398329072 7.817088921747687e-05']
['59866.36611937506 0.033600934691775504 6.697583941404744e-05 0.014682508367517326 4.01401955440488e-05 0.0005192875074841105 1.4196690083356973e-06 0.014682508367517326 4.01401955440488e-05 0.018918426324258178 7.808327838616119e-05']
['59866.36615091302 0.033590732029098735 6.698470109112959e-05 0.014755547200996262 4.0164936907168543e-05 0.0005218707277920746 1.4205440550555504e-06 0.01475554720099626 4.0164936907168543e-05 0.018835184828102473 7.810360002602189e-05']
['59866.36618245098 0.033587671407646735 6.69901135080498e-05 0.014723403310069702 4.0149586044219004e-05 0.0005207338702073705 1.4200011293401847e-06 0.014723403310069704 4.0149586044219004e-05 0.018864268097577033 7.810034934200705e-05']
['59866.36621398895 0.03361493062524328 6.699317051696543e-05 0.014842094700446349 4.0218067042151e-05 0.0005249317194253466 1.4224231491910165e-06 0.014842094700446347 4.0218067042151e-05 0.018772835924796935 7.813819688553197e-05']
['59866.36624552691 0.03363717590477991 6.70120477307208e-05 0.014762575434412867 4.017330601430225e-05 0.0005221193007008426 1.420840051671016e-06 0.014762575434412865 4.017330601430225e-05 0.018874600470367042 7.813135770728151e-05']
['59866.36627706487 0.0336455293922552 6.70029989640322e-05 0.014723382287167555 4.015184246264498e-05 0.000520733126674305 1.4200809338171131e-06 0.014723382287167555 4.015184246264498e-05 0.018922147105087647 7.811256187911878e-05']
['59866.36630860284 0.03361943335187412 6.699097163105477e-05 0.014710815354717325 4.015947306230013e-05 0.0005202886623589814 1.420350811073529e-06 0.014710815354717327 4.015947306230013e-05 0.01890861799715679 7.810616849336802e-05']
['59866.3663401408 0.03349053159527852 6.692581685329235e-05 0.014757639921626828 4.020022546846383e-05 0.0005219447426438224 1.4217921326032718e-06 0.01475763992162683 4.020022546846383e-05 0.018732891673651688 7.807126929412483e-05']
['59866.36637167876 0.033649127425189405 6.701955473184526e-05 0.014734165304129998 4.016499228502656e-05 0.0005211144978856419 1.420546013646626e-06 0.014734165304129998 4.016499228502656e-05 0.018914962121059406 7.8133522394111e-05']
['59866.36640321672 0.033677657040582086 6.703864744608526e-05 0.014737272413829302 4.016134092253466e-05 0.0005212243894117248 1.4204168731156025e-06 0.014737272413829302 4.016134092253466e-05 0.018940384626752786 7.814802336653544e-05']
['59866.36643475469 0.033642939689188994 6.703958724702535e-05 0.014712743759327556 4.0141972306447657e-05 0.0005203568657203146 1.4197318484509147e-06 0.014712743759327556 4.0141972306447657e-05 0.018930195929861438 7.813887764041107e-05']
['59866.36646629265 0.033620179160471206 6.699645816261898e-05 0.01470813478985971 4.0143675131285904e-05 0.0005201938567706774 1.419792073559854e-06 0.01470813478985971 4.0143675131285904e-05 0.018912044370611496 7.810275321255825e-05']
['59866.36649783061 0.03350752129000418 6.690686126480665e-05 0.014715479586593338 4.0147482415901816e-05 0.0005204536258164912 1.4199267287079384e-06 0.01471547958659334 4.0147482415901816e-05 0.01879204170341084 7.802786956365802e-05']
['59866.36652936858 0.03372509508157184 6.709416587647051e-05 0.014691544548452154 4.014706932829003e-05 0.0005196070970090995 1.419912118722306e-06 0.014691544548452153 4.014706932829003e-05 0.01903355053311969 7.818832566508804e-05']
['59866.36656090654 0.03359756831429383 6.698306017312625e-05 0.014724789468953928 4.0157116821198855e-05 0.0005207828955492227 1.420267476091666e-06 0.014724789468953926 4.0157116821198855e-05 0.018872778845339902 7.809817143536758e-05']
['59866.3665924445 0.033623013421520305 6.700875448910502e-05 0.014689137806092599 4.014319448900562e-05 0.0005195219759105946 1.4197750743165726e-06 0.014689137806092599 4.014319448900562e-05 0.018933875615427705 7.811305423527673e-05']
['59866.36662398247 0.033526436457374374 6.692308831276321e-05 0.014651498922258229 4.011038618063534e-05 0.0005181907727073277 1.4186147177717696e-06 0.01465149892225823 4.011038618063534e-05 0.018874937535116144 7.802270713630492e-05']
['59866.366655520425 0.033664542221102677 6.703712777892269e-05 0.014799447601452267 4.0180136505007864e-05 0.0005234233868445828 1.4210816308620251e-06 0.014799447601452267 4.0180136505007864e-05 0.01886509461965041 7.815638086815863e-05']
['59866.36668705839 0.033558430762530816 6.695856497527593e-05 0.01475223091132659 4.0170646799999265e-05 0.0005217534380379295 1.4207460012041135e-06 0.01475223091132659 4.0170646799999265e-05 0.018806199851204228 7.808412314855396e-05']
['59866.36671859636 0.033678670992504434 6.702104805386328e-05 0.014787131414099148 4.017887216530138e-05 0.0005229877908229617 1.4210369139922398e-06 0.014787131414099148 4.017887216530138e-05 0.018891539578405288 7.814193912819083e-05']
['59866.366750134315 0.03359169124944501 6.697693613900723e-05 0.014762450680161998 4.0164674131289715e-05 0.0005221148884217988 1.4205347612599857e-06 0.014762450680161998 4.0164674131289715e-05 0.018829240569283014 7.80968054573383e-05']
['59866.36678167228 0.033549552644588365 6.69343716841448e-05 0.014704446669039403 4.014737716736195e-05 0.000520063416179728 1.4199230063022999e-06 0.014704446669039401 4.014737716736195e-05 0.018845105975548962 7.805140617676059e-05']
['59866.36681321025 0.03361917744071065 6.698519149380753e-05 0.014742540754061204 4.015820681601726e-05 0.0005214107188316798 1.420306026772398e-06 0.014742540754061204 4.015820681601726e-05 0.018876636686649444 7.810055988365307e-05']
['59866.366844748205 0.033735631115817136 6.707746881033098e-05 0.014770004187491434 4.016537687083981e-05 0.0005223820390949455 1.4205596155873421e-06 0.014770004187491434 4.016537687083981e-05 0.0189656269283257 7.818340182658669e-05']
['59866.36687628617 0.03365321621061107 6.702120074181116e-05 0.014857369894479163 4.022795159583805e-05 0.0005254719689002378 1.42277274376425e-06 0.014857369894479163 4.022795159583805e-05 0.018795846316131907 7.816731694558307e-05']
['59866.36690782413 0.033584851407979184 6.697911188296871e-05 0.014711817456586073 4.013328007757614e-05 0.0005203241044625131 1.4194244237417172e-06 0.014711817456586075 4.013328007757614e-05 0.018873033951393108 7.808253068655247e-05']
['59866.366939362095 0.03358897813407254 6.698285104427253e-05 0.014714392714298306 4.014577877812044e-05 0.0005204151855724325 1.4198664748470174e-06 0.014714392714298306 4.014577877812044e-05 0.018874585419774235 7.809216278040318e-05']
['59866.36697090006 0.03362269547683175 6.697761813752804e-05 0.014734326124261758 4.014504342567755e-05 0.0005211201857342904 1.4198404670745284e-06 0.014734326124261756 4.014504342567755e-05 0.018888369352569993 7.808729629732394e-05']
['59866.36700243802 0.033536259061382516 6.695044194887664e-05 0.014713867514290874 4.014649745734639e-05 0.0005203966104219225 1.4198918929250857e-06 0.014713867514290872 4.014649745734639e-05 0.018822391547091644 7.806473554200143e-05']
['59866.367033975985 0.03355548821886618 6.697017835424487e-05 0.014757661520797839 4.018698361665157e-05 0.0005219455065582297 1.4213237978984693e-06 0.014757661520797839 4.018698361665157e-05 0.018797826698068336 7.810248677861922e-05']
['59866.36706551395 0.033732509155755944 6.707541917079781e-05 0.014762285171735374 4.0164576422915256e-05 0.0005221090347586387 1.4205313055331464e-06 0.014762285171735374 4.0164576422915256e-05 0.018970223984020568 7.81812321223606e-05']
['59866.36709705191 0.03365995208356651 6.701620881757532e-05 0.014826986528295644 4.020971882451767e-05 0.0005243973771411538 1.422127891390494e-06 0.014826986528295645 4.020971882451767e-05 0.018832965555270864 7.81536546312943e-05']
['59866.367128589874 0.03361519643758745 6.700115342113672e-05 0.014789976052136286 4.018203078816145e-05 0.0005230883993129435 1.4211486274236939e-06 0.014789976052136288 4.018203078816145e-05 0.018825220385451164 7.812650099693097e-05']
['59866.36716012783 0.03363758295885863 6.700071539800721e-05 0.014754784301145636 4.014554029522497e-05 0.0005218437457293388 1.4198580402399826e-06 0.014754784301145636 4.014554029522497e-05 0.018882798657712994 7.810736373377539e-05']
['59866.3671916658 0.033630569287533746 6.701718865248685e-05 0.014682792320075508 4.013201004497783e-05 0.0005192975502514968 1.419379505527071e-06 0.014682792320075508 4.013201004497783e-05 0.018947776967458238 7.811454285300025e-05']
['59866.367223203764 0.03351987523965541 6.695923722418026e-05 0.01467783193898942 4.013258312904498e-05 0.0005191221126582811 1.4193997742297583e-06 0.014677831938989421 4.013258312904498e-05 0.018842043300665988 7.806512459641471e-05']
['59866.36725474172 0.03360913652190039 6.700989232679323e-05 0.014709714445443058 4.014417036529757e-05 0.000520249725658338 1.4198095888800634e-06 0.014709714445443058 4.014417036529757e-05 0.018899422076457333 7.811453183605762e-05']
['59866.36728627969 0.033641858933185824 6.70101416296341e-05 0.01473846629629023 4.016104554602394e-05 0.0005212666143661976 1.420406426308546e-06 0.01473846629629023 4.016104554602394e-05 0.018903392636895593 7.81234194116811e-05']
['59866.36731781765 0.03357324806175838 6.69586313419134e-05 0.014719455939087396 4.014227163314349e-05 0.0005205942605175812 1.4197424349671904e-06 0.014719455939087397 4.014227163314349e-05 0.018853792122670986 7.806958615908851e-05']
['59866.36734935561 0.03353335163417331 6.691209899679976e-05 0.01474473049500646 4.0165018530444234e-05 0.0005214881650751305 1.4205469418883941e-06 0.014744730495006462 4.0165018530444234e-05 0.018788621139166843 7.8041384570678e-05']
['59866.36738089358 0.03352301404651686 6.69526158483285e-05 0.014721599915721483 4.013711657648894e-05 0.0005206700881796231 1.4195601121341925e-06 0.014721599915721483 4.013711657648894e-05 0.018801414130795373 7.806177615202278e-05']
['59866.36741243154 0.033489068919823714 6.689535440076427e-05 0.014791721438203374 4.017603155616045e-05 0.0005231501297174281 1.4209364479953128e-06 0.014791721438203375 4.017603155616045e-05 0.018697347481620337 7.803269796697698e-05']
['59866.3674439695 0.033566123566487416 6.693459350424509e-05 0.014665172213692493 4.009607698577012e-05 0.0005186743664673496 1.418108633528555e-06 0.014665172213692491 4.009607698577012e-05 0.018900951352794924 7.802522154551907e-05']
['59866.36747550747 0.03349973939953301 6.692790141370608e-05 0.014672141590191961 4.013453313734755e-05 0.0005189208577384961 1.4194687416654083e-06 0.014672141590191961 4.013453313734755e-05 0.01882759780934105 7.803925126367889e-05']
['59866.36750704543 0.033600522762377266 6.699169265952362e-05 0.014739293909369467 4.016591997860008e-05 0.0005212958851912038 1.4205788240950484e-06 0.014739293909369467 4.016591997860008e-05 0.018861228853007797 7.811010186342978e-05']
['59866.36753858339 0.033567963850227305 6.695630555389026e-05 0.014717060891782392 4.015335678054208e-05 0.0005205095530470189 1.420134491856832e-06 0.014717060891782393 4.015335678054208e-05 0.01885090295844491 7.807329193886613e-05']
['59866.36757012135 0.03370001660869523 6.707351636667607e-05 0.014704313748606559 4.015160365142252e-05 0.000520058715081078 1.4200724875978863e-06 0.014704313748606559 4.015160365142252e-05 0.018995702860088674 7.817293568474763e-05']
['59866.367601659316 0.03352127434637904 6.694685703851987e-05 0.014708332024034983 4.0145862688834746e-05 0.0005202008325026643 1.419869442581453e-06 0.014708332024034982 4.0145862688834746e-05 0.01881294232234406 7.806133459252916e-05']
['59866.36763319728 0.03368985366896324 6.705217406943608e-05 0.014762111769613624 4.0170032335555935e-05 0.0005221029019131233 1.42072426897e-06 0.014762111769613624 4.0170032335555935e-05 0.018927741899349614 7.81640937085409e-05']
['59866.36766473524 0.033633766919085296 6.701937665586823e-05 0.014796828127299566 4.01966183934923e-05 0.000523330741897982 1.4216645584228669e-06 0.014796828127299566 4.01966183934923e-05 0.01883693879178573 7.814963197362595e-05']
['59866.367696273206 0.033625449995778184 6.699450348856536e-05 0.014774985057152249 4.0176092495234294e-05 0.00052255820132326 1.420938603274164e-06 0.014774985057152249 4.0176092495234294e-05 0.018850464938625935 7.811774386056613e-05']
['59866.36772781117 0.03358076850922451 6.695713887585242e-05 0.014779425614115558 4.0173317494291725e-05 0.0005227152538989916 1.4208404576925874e-06 0.014779425614115558 4.0173317494291725e-05 0.01880134289510895 7.808427424864339e-05']
['59866.36775934913 0.03344421157443423 6.686457154857976e-05 0.014638914281536488 4.010450332767083e-05 0.0005177456820900164 1.4184066544098175e-06 0.01463891428153649 4.010450332767083e-05 0.01880529729289774 7.796949477542037e-05']
['59866.367790887096 0.03357863985346255 6.695365159088225e-05 0.014683972062747689 4.0132267517135046e-05 0.0005193392751132421 1.4193886117418552e-06 0.01468397206274769 4.0132267517135046e-05 0.01889466779071486 7.80601713898973e-05']
['59866.367822425054 0.03359321071001613 6.698770833945475e-05 0.014739799589410768 4.015890421469561e-05 0.0005213137699641362 1.4203306922050569e-06 0.014739799589410766 4.015890421469561e-05 0.01885341112060536 7.810307712438065e-05']
['59866.36785396302 0.03353835938799133 6.694495980253805e-05 0.014769046196960227 4.0187142092280724e-05 0.0005223481571108396 1.4213294028273002e-06 0.014769046196960227 4.0187142092280724e-05 0.018769313191031103 7.808094538687782e-05']
['59866.367885500986 0.033463660115403686 6.687237182922791e-05 0.014681664996131934 4.012354788795373e-05 0.0005192576793230333 1.4190802179449364e-06 0.014681664996131936 4.012354788795373e-05 0.018781995119271748 7.798598085030047e-05']
['59866.367917038944 0.033501321022050126 6.694057047588212e-05 0.014664857864079167 4.0122987253628796e-05 0.0005186632486240564 1.4190603895618074e-06 0.014664857864079167 4.0122987253628796e-05 0.01883646315797096 7.804418031981244e-05']
['59866.36794857691 0.03342788745247206 6.682971520983151e-05 0.014733365271330956 4.016226763608157e-05 0.0005210862025135078 1.4204496489026738e-06 0.014733365271330954 4.016226763608157e-05 0.018694522181141107 7.796934382627207e-05']
['59866.367980114876 0.033562255362839376 6.694720884266574e-05 0.014734215810996605 4.016132136828239e-05 0.0005211162842006376 1.420416181525401e-06 0.014734215810996605 4.016132136828239e-05 0.01882803955184277 7.806958758613983e-05']
['59866.368011652834 0.033614228043443134 6.701856427784312e-05 0.014705257901075472 4.014010399818152e-05 0.000520092107643847 1.4196657705629644e-06 0.014705257901075474 4.014010399818152e-05 0.01890897014236766 7.811988163616364e-05']
['59866.3680431908 0.03355435069773325 6.696256485795872e-05 0.014765788324986576 4.015897017637371e-05 0.000522232933460047 1.4203330251221955e-06 0.014765788324986578 4.015897017637371e-05 0.018788562372746672 7.808154697483396e-05']
['59866.36807472876 0.0335092114962623 6.694570427538529e-05 0.014812035606726968 4.019479881267369e-05 0.0005238685964586129 1.4216002039158364e-06 0.014812035606726968 4.019479881267369e-05 0.01869717588953533 7.808552473101948e-05']
['59866.368106266724 0.03363355774100951 6.699269104131298e-05 0.01476749063354052 4.0173601140918954e-05 0.0005222931403091642 1.4208504896398795e-06 0.01476749063354052 4.0173601140918954e-05 0.018866067107468992 7.811490819034777e-05']
['59866.36813780469 0.0335585649019612 6.695172075858685e-05 0.014760459987189346 4.016385026055682e-05 0.000522044482060293 1.4205056227934059e-06 0.014760459987189344 4.016385026055682e-05 0.018798104914771855 7.807475763835723e-05']
['59866.36816934265 0.03355215695413533 6.695971480124035e-05 0.014743051516957163 4.016970055553127e-05 0.0005214287833738219 1.4207125346520125e-06 0.014743051516957161 4.016970055553127e-05 0.01880910543717817 7.808462235923598e-05']
['59866.36820088061 0.03356178364962869 6.694490591068146e-05 0.014755345598946607 4.0171765755425214e-05 0.0005218635975781324 1.4207855761568112e-06 0.014755345598946607 4.0171765755425214e-05 0.018806438050682082 7.807298630959845e-05']
['59866.36823241858 0.03359084542600643 6.698409082808225e-05 0.014722188277085643 4.016059505360583e-05 0.0005206908972061632 1.4203904933985088e-06 0.014722188277085643 4.016059505360583e-05 0.01886865714892079 7.810084390788925e-05']
['59866.36826395654 0.03351882217091042 6.693492916023705e-05 0.0146486967046905 4.0107162694106757e-05 0.0005180916645345447 1.418500710257322e-06 0.0146486967046905 4.0107162694106757e-05 0.018870125466219922 7.803120684096524e-05']
['59866.3682954945 0.03360810599186462 6.698584700190844e-05 0.014745682994844805 4.0154278111394064e-05 0.0005215218528657009 1.4201670772700136e-06 0.014745682994844805 4.0154278111394064e-05 0.01886242299701981 7.809910210245869e-05']
['59866.36832703246 0.03360011013582773 6.700307418997106e-05 0.014649340143600822 4.010087485894652e-05 0.0005181144215308015 1.418278323580189e-06 0.014649340143600822 4.010087485894652e-05 0.018950769992226904 7.808644002232177e-05']
['59866.36835857043 0.03349165851485384 6.690182368592306e-05 0.01465469312956832 4.011820076465204e-05 0.0005183037446812523 1.4188911021438728e-06 0.01465469312956832 4.011820076465204e-05 0.018836965385285523 7.800848700683319e-05']
['59866.36839010839 0.03341177151865527 6.684552875379785e-05 0.014665961138024555 4.012108654488376e-05 0.0005187022689578326 1.4189931657413293e-06 0.014665961138024554 4.012108654488376e-05 0.018745810380630716 7.796169764645244e-05']
['59866.36842164635 0.03347645902927901 6.690040838956514e-05 0.014721024269240794 4.014713427795963e-05 0.0005206497288500953 1.4199144158469656e-06 0.014721024269240794 4.014713427795963e-05 0.018755434760038214 7.802215732356493e-05']
['59866.36845318432 0.033555715366397974 6.69569462258206e-05 0.014710146665654173 4.0140951983354755e-05 0.0005202650123212497 1.4196957619034065e-06 0.014710146665654171 4.0140951983354755e-05 0.018845568700743803 7.806746232597433e-05']
['59866.36848472228 0.03346102452999449 6.687921584144451e-05 0.014694347374268595 4.01382690930164e-05 0.00051970622669428 1.4196008740680459e-06 0.014694347374268595 4.01382690930164e-05 0.018766677155725896 7.799942408345024e-05']
['59866.36851626024 0.0334450542880791 6.68787821232785e-05 0.014654131182874671 4.0097645718902955e-05 0.000518283869882575 1.4181641161135512e-06 0.014654131182874671 4.0097645718902955e-05 0.018790923105204426 7.797815521344175e-05']
['59866.36854779821 0.0335080939767432 6.692321745815521e-05 0.014735740673280586 4.015032640633628e-05 0.0005211702151717554 1.4200273142936608e-06 0.014735740673280585 4.015032640633628e-05 0.018772353303462618 7.804335811257018e-05']
['59866.368579336166 0.0334920653039256 6.687542533746249e-05 0.014690977845296101 4.012183031896968e-05 0.0005195870539849769 1.419019471368511e-06 0.014690977845296101 4.012183031896968e-05 0.0188010874586295 7.798771558528121e-05']
['59866.36861087413 0.03356588891926385 6.694946430346311e-05 0.014683096963129805 4.014084140480027e-05 0.0005193083247954901 1.419691850987063e-06 0.014683096963129805 4.014084140480027e-05 0.018882791956134043 7.806098845906327e-05']
['59866.3686424121 0.03351501694829088 6.690809315220663e-05 0.014730833248263233 4.014256954503766e-05 0.000520996650516341 1.4197529714450933e-06 0.014730833248263232 4.014256954503766e-05 0.018784183700027646 7.802639821843979e-05']
['59866.368673950055 0.03349067236265456 6.690231357417852e-05 0.014708316213308249 4.012691299229977e-05 0.0005202002733125946 1.4191992341650902e-06 0.014708316213308249 4.012691299229977e-05 0.01878235614934631 7.801338800404267e-05']
['59866.36870548802 0.03352391894954307 6.69191979112637e-05 0.014645260439760414 4.01118139331611e-05 0.0005179701315235677 1.4186652141877665e-06 0.014645260439760414 4.01118139331611e-05 0.018878658509782653 7.802010424304378e-05']
['59866.36873702599 0.033565765524979925 6.698205932174266e-05 0.014675771967680603 4.013009056892218e-05 0.0005190492560768531 1.4193116179487589e-06 0.014675771967680601 4.013009056892218e-05 0.018889993557299325 7.808341975125928e-05']
['59866.368768563945 0.03352157580731778 6.692145357666942e-05 0.014713754639457993 4.0137054697290214e-05 0.000520392618291344 1.4195579236052254e-06 0.014713754639457993 4.0137054697290214e-05 0.018807821167859787 7.8035018476243e-05']
['59866.36880010191 0.033562004513275616 6.6984240526427e-05 0.014608583220585647 4.009661927984335e-05 0.0005166729402501168 1.4181278132579694e-06 0.014608583220585647 4.009661927984335e-05 0.018953421292689968 7.806809435726564e-05']
['59866.36883163987 0.03360921073875496 6.700836512346271e-05 0.014736621655607428 4.014985254566015e-05 0.0005212013735477762 1.4200105549005624e-06 0.014736621655607428 4.014985254566015e-05 0.018872589083147533 7.811614209596853e-05']
['59866.368863177835 0.03359848177436791 6.701940490291654e-05 0.014741017171155455 4.0147419737729654e-05 0.0005213568331093108 1.4199245119210664e-06 0.014741017171155455 4.0147419737729654e-05 0.018857464603212457 7.812436204628182e-05']
['59866.3688947158 0.033506168781848894 6.691260070810026e-05 0.014672383884711584 4.0129446820037846e-05 0.0005189294271541587 1.4192888499894141e-06 0.014672383884711582 4.0129446820037846e-05 0.01883378489713731 7.802351335080922e-05']
['59866.36892625376 0.033627645360808506 6.700218747307864e-05 0.014747089033540783 4.014237787010775e-05 0.000521571581312066 1.4197461923311907e-06 0.014747089033540783 4.014237787010775e-05 0.018880556327267723 7.810700114102508e-05']
['59866.368957791725 0.03344504526441749 6.686761892395952e-05 0.014708746085815067 4.014317852163436e-05 0.0005202154769424523 1.419774509586336e-06 0.014708746085815067 4.014317852163436e-05 0.018736299178602422 7.799200755449033e-05']
['59866.36898932969 0.033536823940156335 6.695487453370467e-05 0.014712414487084885 4.0147023568995734e-05 0.0005203452200969714 1.4199105003183327e-06 0.014712414487084885 4.0147023568995734e-05 0.01882440945307145 7.806880763322592e-05']
['59866.36902086765 0.03360036781579823 6.699853533134747e-05 0.014686132593134624 4.0140205620936285e-05 0.0005194156882445268 1.419669364732687e-06 0.014686132593134624 4.0140205620936285e-05 0.018914235222663604 7.810275183267783e-05']
['59866.369052405615 0.033541758231795046 6.692339490007105e-05 0.014753519290189839 4.0165858831238974e-05 0.0005217990051189653 1.4205766614495423e-06 0.014753519290189839 4.0165858831238974e-05 0.01878823894160521 7.80515022315514e-05']
['59866.36908394357 0.0335354493241865 6.695066458945634e-05 0.014700779292842584 4.012262723292899e-05 0.0005199337092797499 1.419047656434254e-06 0.014700779292842582 4.012262723292899e-05 0.01883467003134392 7.805265341448976e-05']
['59866.36911548154 0.03351639272164091 6.692445053814394e-05 0.014669653670711191 4.012103753751043e-05 0.000518832865586634 1.41899143246006e-06 0.014669653670711191 4.012103753751043e-05 0.01884673905092972 7.802935173970623e-05']
['59866.369147019504 0.033413612917100655 6.686033355742667e-05 0.014672784379465094 4.0131284696552526e-05 0.0005189435917585374 1.4193538515743261e-06 0.014672784379465096 4.0131284696552526e-05 0.01874082853763556 7.797963974529573e-05']
['59866.36917855746 0.033559918764669565 6.695408747613146e-05 0.01479268460607905 4.019492450332298e-05 0.0005231841948126373 1.4216046493131996e-06 0.014792684606079052 4.019492450332298e-05 0.018767234158590513 7.809277678242271e-05']
['59866.36921009543 0.03359583519783163 6.700191460826905e-05 0.014786661551011488 4.017436002297741e-05 0.0005229711728156333 1.4208773296022856e-06 0.014786661551011486 4.017436002297741e-05 0.018809173646820145 7.812320887181723e-05']
['59866.369241633394 0.03361006442216994 6.700966533627754e-05 0.014682781881243695 4.014310614575328e-05 0.000519297181053345 1.4197719498131727e-06 0.014682781881243697 4.014310614575328e-05 0.018927282540926245 7.811379020063697e-05']
['59866.36927317135 0.03353066983526311 6.695919985665592e-05 0.01465481216600805 4.0117599929137166e-05 0.0005183079547340948 1.4188698519345e-06 0.014654812166008049 4.0117599929137166e-05 0.018875857669255057 7.805739087055047e-05']
['59866.36930470932 0.03350569364363509 6.692262614724443e-05 0.014650410281693964 4.011074193747143e-05 0.0005181522699235381 1.4186273000959923e-06 0.014650410281693964 4.011074193747143e-05 0.01885528336194113 7.80224936106138e-05']
['59866.36933624728 0.03366029544005713 6.703432247168157e-05 0.01474661176214733 4.01491497565321e-05 0.0005215547012895183 1.4199856988197445e-06 0.01474661176214733 4.01491497565321e-05 0.0189136836779098 7.8138048448946e-05']
['59866.36936778524 0.0334888755932603 6.689255348988752e-05 0.014701330730261704 4.014577937845376e-05 0.0005199532123888741 1.4198664960794652e-06 0.014701330730261704 4.014577937845376e-05 0.0187875448629986 7.801472498381921e-05']
['59866.36939932321 0.033486660811992384 6.691731243051422e-05 0.014664990937854627 4.012630458614426e-05 0.000518667955146092 1.4191777161990775e-06 0.014664990937854627 4.012630458614426e-05 0.018821669874137758 7.802593814023048e-05']
['59866.36943086117 0.03351983806126483 6.692474911255965e-05 0.014621775850255862 4.008568287566046e-05 0.0005171395340777603 1.4177410170834453e-06 0.014621775850255862 4.008568287566046e-05 0.018898062211008967 7.801143515784767e-05']
['59866.36946239913 0.03345523902365941 6.689801713975665e-05 0.014745266316756087 4.015551638471946e-05 0.0005215071158929236 1.4202108722301548e-06 0.014745266316756085 4.015551638471946e-05 0.018709972706903326 7.802442049355219e-05']
['59866.3694939371 0.03348454960864619 6.691603332122072e-05 0.014703653599290807 4.015459002391944e-05 0.0005200353670751268 1.4201781089189526e-06 0.014703653599290807 4.015459002391944e-05 0.018780896009355383 7.803939143429922e-05']
['59866.36952547506 0.03347618285195505 6.690420588184611e-05 0.014663769534118087 4.0106017985200194e-05 0.0005186247568256073 1.4184602244615707e-06 0.014663769534118087 4.0106017985200194e-05 0.01881241331783696 7.800426554560752e-05']
['59866.36955701302 0.03345806362005546 6.68676494614561e-05 0.014706556100720887 4.014268395602584e-05 0.0005201380220639998 1.4197570179060516e-06 0.014706556100720887 4.014268395602584e-05 0.018751507519334576 7.799177918020299e-05']
['59866.36958855098 0.03352497313001664 6.689877036324278e-05 0.01476209842237032 4.0164472479234966e-05 0.000522102429850957 1.420527629277475e-06 0.014762098422370322 4.0164472479234966e-05 0.018762874707646322 7.802967592941236e-05']
['59866.369620088946 0.033584123060528784 6.696643106031138e-05 0.014784143818245915 4.0169755596808694e-05 0.0005228821262345167 1.4207144813389848e-06 0.014784143818245915 4.0169755596808694e-05 0.01879997924228287 7.809041012610179e-05']
['59866.36965162691 0.03349611617412151 6.693247153641347e-05 0.014731428700549038 4.015748824025879e-05 0.0005210177103329325 1.4202806123537431e-06 0.01473142870054904 4.015748824025879e-05 0.018764687473572468 7.805497810991509e-05']
['59866.36968316487 0.03350748371314194 6.689709625299846e-05 0.014668027155661316 4.012720286727704e-05 0.0005187753393843671 1.4192094863952038e-06 0.014668027155661316 4.012720286727704e-05 0.01883945655748062 7.800906291601347e-05']
['59866.369714702836 0.033552234549517015 6.694639138431757e-05 0.014747354158918455 4.0157080221581746e-05 0.0005215809582041539 1.4202661816450042e-06 0.014747354158918454 4.0157080221581746e-05 0.018804880390598563 7.806670488309842e-05']
['59866.3697462408 0.033544711928480034 6.693426047426638e-05 0.014735446510828748 4.015564833016005e-05 0.0005211598113032483 1.4202155388455077e-06 0.01473544651082875 4.015564833016005e-05 0.018809265417651284 7.805556558024817e-05']
['59866.36977777876 0.033397216463755104 6.682237683101316e-05 0.014678786661666771 4.0117623878337916e-05 0.0005191558790656995 1.4188706989642073e-06 0.014678786661666773 4.0117623878337916e-05 0.01871842980208833 7.794006537711983e-05']
['59866.369809316726 0.033596362311660036 6.698981646227224e-05 0.014780050867772801 4.0183856609119505e-05 0.0005227373677234886 1.4212132026305104e-06 0.014780050867772803 4.0183856609119505e-05 0.018816311443887235 7.811771784704926e-05']
['59866.369840854684 0.03359401382582646 6.69777782516686e-05 0.014746911170147665 4.015639419150972e-05 0.0005215652906813528 1.4202419182945436e-06 0.014746911170147666 4.015639419150972e-05 0.018847102655678794 7.809326970996673e-05']
['59866.36987239265 0.03357450307178107 6.69771166056908e-05 0.014767017699883913 4.0186115803368134e-05 0.0005222764137026746 1.4212931052820824e-06 0.014767017699883913 4.0186115803368134e-05 0.018807485371897158 7.810798968206783e-05']
['59866.369903930616 0.033458864697974 6.687647317692211e-05 0.014620331301042401 4.007699643739156e-05 0.0005170884436004577 1.4174337971749215e-06 0.014620331301042401 4.007699643739156e-05 0.018838533396931603 7.796555847312503e-05']
['59866.369935468574 0.03355127694264825 6.697432315624368e-05 0.014632583044607104 4.0104874419656096e-05 0.0005175217603893058 1.4184197791039944e-06 0.014632583044607104 4.0104874419656096e-05 0.018918693898041145 7.806382590197168e-05']
['59866.36996700654 0.033446531917022564 6.68575027909278e-05 0.014679762510753737 4.011566629183206e-05 0.000519190392667011 1.4188014635044437e-06 0.014679762510753735 4.011566629183206e-05 0.018766769406268827 7.796917571371747e-05']
['59866.369998544506 0.03343648384255402 6.685624940525045e-05 0.014792416548003118 4.01779093803389e-05 0.000523174714197566 1.4210028624398145e-06 0.014792416548003118 4.01779093803389e-05 0.018644067294550905 7.800014414545512e-05']
['59866.370030082464 0.033474869983125814 6.688588323149385e-05 0.01464386262455655 4.010238356395512e-05 0.0005179206939237401 1.4183316831045858e-06 0.014643862624556548 4.010238356395512e-05 0.01883100735856927 7.798668183201288e-05']
['59866.37006162043 0.03353683608761541 6.690552982446854e-05 0.014774665084887362 4.016835354143302e-05 0.0005225468846193469 1.4206648937737566e-06 0.01477466508488736 4.016835354143302e-05 0.018762171002728048 7.803746886798933e-05']
['59866.37009315839 0.03346943252814845 6.68926362415373e-05 0.01471931335886053 4.015597021589009e-05 0.0005205892177736049 1.4202269232244069e-06 0.014719313358860528 4.015597021589009e-05 0.01875011916928792 7.802004054934913e-05']
['59866.370124696354 0.03355722455818274 6.695667776947847e-05 0.014720955706938559 4.014499650758713e-05 0.000520647303954693 1.419838807686526e-06 0.014720955706938559 4.014499650758713e-05 0.018836268851244183 7.806931178459276e-05']
['59866.37015623432 0.03352895582073374 6.691315543438737e-05 0.014713731273827198 4.012590455629249e-05 0.0005203917919012019 1.4191635680372346e-06 0.014713731273827198 4.012590455629249e-05 0.01881522454690654 7.802216727730126e-05']
['59866.37018777228 0.03362094931686325 6.698523678233278e-05 0.014663668738645837 4.011685270012992e-05 0.0005186211919150184 1.4188434241144723e-06 0.014663668738645837 4.011685270012992e-05 0.01895728057821741 7.807934308989228e-05']
['59866.37021931024 0.033450358181959135 6.685627121207688e-05 0.014675060554753743 4.0122977331246e-05 0.0005190240949915445 1.4190600386293031e-06 0.014675060554753743 4.0122977331246e-05 0.01877529762720539 7.797188153627216e-05']
['59866.37025084821 0.033635494309182216 6.702780432624515e-05 0.014644357959068181 4.011669476290931e-05 0.0005179382127984091 1.4188378382279483e-06 0.014644357959068181 4.011669476290931e-05 0.018991136350114034 7.811578426603579e-05']
['59866.37028238617 0.03341078082577217 6.685586968753943e-05 0.014652881399579602 4.011147763990259e-05 0.0005182396678405296 1.4186533202467843e-06 0.014652881399579602 4.011147763990259e-05 0.018757899426192565 7.796562030878519e-05']
['59866.37031392413 0.03367870783623914 6.70190934986672e-05 0.014724194477984509 4.012930272569189e-05 0.0005207618520483609 1.4192837536944295e-06 0.014724194477984509 4.012930272569189e-05 0.018954513358254634 7.811478624840062e-05']
['59866.37034546209 0.03349541492489514 6.69231796964252e-05 0.014635270921647762 4.010172082468508e-05 0.0005176168245931823 1.4183082434977396e-06 0.014635270921647762 4.010172082468508e-05 0.018860144003247377 7.801833113942518e-05']
['59866.37037700006 0.03353421830658081 6.693315381598412e-05 0.014648047979380515 4.012333817171134e-05 0.0005180687205701463 1.4190728007501312e-06 0.014648047979380515 4.012333817171134e-05 0.018886170327200292 7.803799937079178e-05']
['59866.37040853802 0.033498717589401414 6.693381302354137e-05 0.014647987267256492 4.010710405011551e-05 0.0005180665733180033 1.4184986361504131e-06 0.014647987267256494 4.010710405011551e-05 0.018850730322144918 7.803021928174487e-05']
['59866.37044007598 0.03349873972842205 6.692994843737659e-05 0.014730237565952405 4.014953490811131e-05 0.0005209755825642786 1.4199993207703382e-06 0.014730237565952405 4.014953490811131e-05 0.018768502162469648 7.804872293104826e-05']
['59866.37047161395 0.033496433791775554 6.690187237859403e-05 0.014650014341173228 4.0113202501552304e-05 0.0005181382663921946 1.4187143247484956e-06 0.014650014341173226 4.0113202501552304e-05 0.01884641945060233 7.800595837942269e-05']
['59866.37050315191 0.03353877410463217 6.691584037809112e-05 0.014706747911001596 4.014187816118994e-05 0.0005201448059649577 1.4197285187435514e-06 0.014706747911001596 4.014187816118994e-05 0.018832026193630575 7.80326859451473e-05']
['59866.37053468987 0.03359396674209881 6.697661185194296e-05 0.014806628507873142 4.018908171968365e-05 0.0005236773594563078 1.4213980031137295e-06 0.014806628507873142 4.018908171968365e-05 0.018787338234225667 7.810908285620332e-05']
['59866.37056622784 0.033548251391557586 6.69320988943332e-05 0.01470196353063117 4.0134738302946156e-05 0.0005199755931237166 1.4194759979141129e-06 0.014701963530631171 4.0134738302946156e-05 0.018846287860926417 7.804295663957621e-05']
['59866.370597765796 0.03351732372568972 6.695134074127075e-05 0.014637569357031036 4.012014262806173e-05 0.000517698115115988 1.418959781512864e-06 0.014637569357031036 4.012014262806173e-05 0.018879754368658682 7.805195623140881e-05']
['59866.37062930376 0.033497548706702865 6.69162923389941e-05 0.014801504814165251 4.019093012322403e-05 0.0005234961458606412 1.421463377016014e-06 0.014801504814165251 4.019093012322403e-05 0.018696043892537616 7.805831822789674e-05']
['59866.37066084173 0.033402588208393695 6.685394614010137e-05 0.014691870639213655 4.013950101502087e-05 0.0005196186301105639 1.4196444443961605e-06 0.014691870639213657 4.013950101502087e-05 0.018710717569180038 7.797839223937895e-05']
['59866.370692379685 0.03356248728172006 6.698893831480467e-05 0.014705417236980758 4.014070752310594e-05 0.0005200977429987221 1.4196871158907425e-06 0.014705417236980758 4.014070752310594e-05 0.0188570700447393 7.809477739900562e-05']
['59866.37072391765 0.033474105958110095 6.692289243099367e-05 0.014792269851284534 4.018201380379623e-05 0.0005231695258624776 1.4211480267246538e-06 0.014792269851284533 4.018201380379623e-05 0.018681836106825563 7.805938614067382e-05']
['59866.37075545562 0.03351082948686133 6.692263646876328e-05 0.014689652599957068 4.0130073031288025e-05 0.0005195401830190843 1.4193109976818332e-06 0.014689652599957068 4.0130073031288025e-05 0.01882117688690426 7.803244218545741e-05']
['59866.370786993575 0.03337722100256001 6.683785360290276e-05 0.014657572506776562 4.012070390066513e-05 0.0005184055818180785 1.4189796324704759e-06 0.01465757250677656 4.012070390066513e-05 0.018719648495783454 7.795492002258682e-05']
['59866.37081853154 0.033450895294433854 6.688308573087901e-05 0.014626545884375081 4.009352845388972e-05 0.0005173082395241583 1.418018497651579e-06 0.014626545884375083 4.009352845388972e-05 0.01882434941005877 7.797972929400933e-05']
['59866.3708500695 0.03358335046450138 6.698135519924846e-05 0.014773568687195525 4.0178459324293e-05 0.0005225081074832912 1.4210223127284186e-06 0.014773568687195524 4.0178459324293e-05 0.018809781777305856 7.810768552454845e-05']
['59866.370881607465 0.03353643373079299 6.694417931173453e-05 0.01469229234208063 4.0136244314548156e-05 0.0005196335447985183 1.4195292621787377e-06 0.014692292342080629 4.0136244314548156e-05 0.018844141388712363 7.805409182995318e-05']
['59866.37091314543 0.0335350771457089 6.693799660551732e-05 0.014739925268422528 4.015012199149802e-05 0.0005213182149499062 1.4200200845976717e-06 0.01473992526842253 4.015012199149802e-05 0.01879515187728637 7.805592665193605e-05']
['59866.37094468339 0.033351432274999836 6.680766056351369e-05 0.014639773669517107 4.010862295838712e-05 0.0005177760767222717 1.4185523565414199e-06 0.014639773669517105 4.010862295838712e-05 0.018711658605482732 7.792281530840452e-05']
['59866.370976221355 0.03346598150311387 6.688708452300841e-05 0.014635162789122878 4.010079594484137e-05 0.0005176130001874391 1.4182755325646523e-06 0.014635162789122878 4.010079594484137e-05 0.01883081871399099 7.798689576716e-05']
['59866.37100775932 0.033475545855284984 6.68744243744153e-05 0.014659972272396668 4.009958730027892e-05 0.0005184904561649011 1.4182327855076402e-06 0.014659972272396666 4.009958730027892e-05 0.018815573582888316 7.79754162352602e-05']
['59866.37103929728 0.03356061614744646 6.693223900486417e-05 0.014749244927321763 4.017016737373062e-05 0.0005216478304569602 1.4207290449684461e-06 0.014749244927321761 4.017016737373062e-05 0.018811371220124697 7.806130260915323e-05']
['59866.371070835245 0.03347232610719515 6.691708836091472e-05 0.01472897133388611 4.015065655364507e-05 0.0005209307987659559 1.4200389908661369e-06 0.014728971333886108 4.015065655364507e-05 0.018743354773309046 7.803827225401156e-05']
['59866.3711023732 0.03344965787866974 6.687494052598954e-05 0.01472582966196121 4.0142841143016536e-05 0.0005208196848511958 1.4197625772586204e-06 0.01472582966196121 4.0142841143016536e-05 0.01872382821670853 7.799811129372363e-05']
['59866.37113391117 0.03340161504005524 6.684720629833623e-05 0.01467517609519204 4.012837405544517e-05 0.0005190281813986293 1.4192509087032592e-06 0.01467517609519204 4.012837405544517e-05 0.0187264389448632 7.796688652387017e-05']
['59866.371165449134 0.033458186804249404 6.687817633427263e-05 0.01457971339881091 4.0070095591377025e-05 0.0005156518791741988 1.4171897296738705e-06 0.014579713398810912 4.0070095591377025e-05 0.01887847340543849 7.796347241176574e-05']
['59866.37119698709 0.03351719378316778 6.692143120640196e-05 0.014751789363039166 4.01754997612094e-05 0.0005217378214618057 1.420917639596386e-06 0.014751789363039166 4.01754997612094e-05 0.018765404420128615 7.80547803518537e-05']
['59866.37122852506 0.03346088382062404 6.688803431103672e-05 0.01462861605347342 4.0094783408083345e-05 0.0005173814567786108 1.4180628825767499e-06 0.01462861605347342 4.0094783408083345e-05 0.018832267767150617 7.798461893563077e-05']
['59866.371260063024 0.03340259090055648 6.683753760528974e-05 0.014659782640604111 4.011340537533975e-05 0.0005184837493122005 1.4187214999409615e-06 0.014659782640604111 4.011340537533975e-05 0.01874280825995237 7.795089302852698e-05']
['59866.37129160098 0.03355021862800521 6.695815896050435e-05 0.014644042850125593 4.010709611531568e-05 0.0005179270680993368 1.4184983555142764e-06 0.014644042850125593 4.010709611531568e-05 0.01890617577787962 7.805109999342314e-05']
['59866.37132313895 0.0334987332094985 6.692116739021774e-05 0.014650806270194114 4.010514412218053e-05 0.0005181662751518062 1.418429317879534e-06 0.014650806270194116 4.010514412218053e-05 0.018847926939304382 7.801836469659188e-05']
['59866.37135467691 0.03350718998639726 6.690080786991466e-05 0.014713926127190158 4.013110936155272e-05 0.0005203986834291781 1.4193476503672336e-06 0.014713926127190156 4.013110936155272e-05 0.018793263859207106 7.801425531424459e-05']
['59866.37138621487 0.03344951887080781 6.688299477558015e-05 0.014649585188364988 4.012745823644761e-05 0.0005181230882164672 1.4192185182320503e-06 0.014649585188364988 4.012745823644761e-05 0.018799933682442822 7.799710183505621e-05']
['59866.37141775284 0.033524674554239874 6.697199325929594e-05 0.014699796640628955 4.0136715813631523e-05 0.0005198989550670524 1.419545938047578e-06 0.014699796640628957 4.0136715813631523e-05 0.018824877913610916 7.807819053632967e-05']
['59866.3714492908 0.03366501515620877 6.704251865499539e-05 0.014750070441336421 4.015984018921702e-05 0.0005216770270427435 1.4203637955320992e-06 0.014750070441336421 4.015984018921702e-05 0.018914944714872345 7.81505730729395e-05']
['59866.37148082876 0.03346081060884185 6.689164464337345e-05 0.014693603090022808 4.0143999243973005e-05 0.0005196799030238839 1.4198035367012474e-06 0.014693603090022806 4.0143999243973005e-05 0.018767207518819044 7.801302967066115e-05']
['59866.37151236673 0.03355131397296667 6.696472329814717e-05 0.014732099396625795 4.015344061407107e-05 0.0005210414313542498 1.4201374568613955e-06 0.014732099396625795 4.015344061407107e-05 0.01881921457634088 7.808055429839844e-05']
['59866.37154390469 0.033436832745964526 6.688006864600549e-05 0.014721178543193558 4.015551826819992e-05 0.0005206551851750225 1.4202109388446492e-06 0.014721178543193558 4.015551826819992e-05 0.01871565420277097 7.800903299927607e-05']
['59866.37157544265 0.03351430853066579 6.694404665696506e-05 0.014725820330037977 4.013185366580258e-05 0.0005208193548019266 1.4193739747451291e-06 0.014725820330037977 4.013185366580258e-05 0.018788488200627812 7.805172042603101e-05']
['59866.37160698061 0.03363138688240207 6.70224630449472e-05 0.014748999823480253 4.0173044389722214e-05 0.0005216391616818609 1.4208307985943166e-06 0.014748999823480251 4.0173044389722214e-05 0.018882387058921816 7.814015643796667e-05']
['59866.371638518576 0.03348838621230304 6.689924216695536e-05 0.014712801029699974 4.014218191838521e-05 0.0005203588912453953 1.4197392619566908e-06 0.014712801029699974 4.014218191838521e-05 0.018775585182603062 7.80186091370621e-05']
['59866.37167005654 0.033512958026109076 6.690895339480228e-05 0.014722575317403903 4.013627427385827e-05 0.0005207045859572358 1.4195303217725812e-06 0.014722575317403903 4.013627427385827e-05 0.018790382708705172 7.802389734545564e-05']
['59866.3717015945 0.03347764039730289 6.69152635593708e-05 0.014717427541774233 4.0164615017042173e-05 0.0005205225206378158 1.4205326705211628e-06 0.014717427541774231 4.0164615017042173e-05 0.018760212855528657 7.804389019447498e-05']
['59866.371733132466 0.03354843321610727 6.694641927520438e-05 0.014671485853666231 4.0113840371000856e-05 0.0005188976658030659 1.4187368847653367e-06 0.014671485853666231 4.0113840371000856e-05 0.01887694736244104 7.804449527725574e-05']
['59866.37176467043 0.033530684691140365 6.691980539260078e-05 0.014716264715413296 4.014554934726022e-05 0.0005204813940681935 1.4198583603902394e-06 0.014716264715413298 4.014554934726022e-05 0.018814419975727067 7.803797464168882e-05']
['59866.37179620839 0.03341561888456212 6.685682564325469e-05 0.01479359889774166 4.017371050604991e-05 0.0005232165312654221 1.4208543576401449e-06 0.01479359889774166 4.017371050604991e-05 0.01862201998682046 7.799847531148582e-05']
['59866.371827746356 0.03357615192791894 6.699312785975784e-05 0.01472741424145613 4.014517786020597e-05 0.0005208757278866044 1.419845221723355e-06 0.014727414241456132 4.014517786020597e-05 0.018848737686462808 7.81006689207041e-05']
['59866.371859284314 0.03353520008055108 6.694935109865536e-05 0.014763587123259278 4.017156007157515e-05 0.0005221550818743487 1.4207783015787107e-06 0.014763587123259278 4.017156007157515e-05 0.0187716129572918 7.807669211176403e-05']
['59866.37189082228 0.0335197971520415 6.693069495555174e-05 0.014662972523340525 4.013176095193213e-05 0.0005185965683356192 1.4193706956627345e-06 0.014662972523340525 4.013176095193213e-05 0.018856824628700974 7.804022145237764e-05']
['59866.371922360246 0.03351257348511395 6.691738417627881e-05 0.014730159414124214 4.015342161279841e-05 0.0005209728185087746 1.4201367848288471e-06 0.014730159414124214 4.015342161279841e-05 0.01878241407098974 7.803994856617242e-05']
['59866.371953898204 0.033520639957441464 6.69259981590038e-05 0.014794100420765526 4.018258383984813e-05 0.0005232342690139382 1.421168187625854e-06 0.014794100420765524 4.018258383984813e-05 0.01872653953667594 7.806234222482313e-05']
['59866.37198543617 0.03353907691686525 6.695232951349775e-05 0.014653575086567661 4.0120784153074595e-05 0.0005182642019989981 1.4189824708188452e-06 0.014653575086567661 4.0120784153074595e-05 0.01888550183029759 7.805313413529007e-05']
['59866.372016974135 0.033574072520091106 6.695110618591332e-05 0.0146607820839386 4.012288373988902e-05 0.000518519097389317 1.4190567285121712e-06 0.0146607820839386 4.012288373988902e-05 0.018913290436152506 7.805316405580297e-05']
['59866.372048512094 0.03345421667122108 6.688351845755543e-05 0.014637631069780452 4.009889592103241e-05 0.0005177002977580149 1.4182083329688329e-06 0.014637631069780454 4.009889592103241e-05 0.018816585601440627 7.798286026652234e-05']
['59866.37208005006 0.033593965442415635 6.696187183413939e-05 0.014772602930249441 4.017144722137204e-05 0.000522473950818448 1.4207743103192321e-06 0.014772602930249441 4.017144722137204e-05 0.018821362512166193 7.80873706266973e-05']
['59866.37211158802 0.03359828583441805 6.69958654525423e-05 0.014701155989367746 4.013940258587735e-05 0.0005199470321939778 1.4196409631773303e-06 0.014701155989367748 4.013940258587735e-05 0.0188971298450503 7.810004883280348e-05']
['59866.372143125984 0.033612750042975245 6.700159888750628e-05 0.014692350932405352 4.013762483923371e-05 0.000519635617007362 1.4195780882515748e-06 0.01469235093240535 4.013762483923371e-05 0.018920399110569894 7.810405355176743e-05']
['59866.37217466395 0.03362477659376904 6.699781500002365e-05 0.014721340437541613 4.0142887192788605e-05 0.0005206609110163007 1.4197642059361434e-06 0.014721340437541615 4.0142887192788605e-05 0.01890343615622743 7.81035121294193e-05']
['59866.37220620191 0.0334306252841903 6.686528925614576e-05 0.014663688512962065 4.0131863956806574e-05 0.0005186218912883905 1.4193743387149413e-06 0.014663688512962066 4.0131863956806574e-05 0.018766936771228235 7.798418693527343e-05']
['59866.37223773987 0.033570026536076665 6.696496633479222e-05 0.014679322075520987 4.014844541766652e-05 0.0005191748154571435 1.4199607879281735e-06 0.014679322075520987 4.014844541766652e-05 0.018890704460555678 7.807819404721912e-05']
['59866.37226927784 0.03353066437612343 6.694219080815822e-05 0.014730412973109593 4.0144190772640544e-05 0.0005209817863234164 1.4198103106421768e-06 0.014730412973109591 4.0144190772640544e-05 0.01880025140301384 7.805647290895241e-05']
['59866.3723008158 0.033462151229599106 6.687670788304194e-05 0.014573205624062098 4.006898047936354e-05 0.0005154217137253538 1.4171502906540823e-06 0.014573205624062098 4.006898047936354e-05 0.018888945605537007 7.796163963084243e-05']
['59866.37233235376 0.033630581842088454 6.700653165253398e-05 0.014716107447826808 4.014121067355033e-05 0.0005204758318651317 1.4197049111974854e-06 0.014716107447826808 4.014121067355033e-05 0.018914474394261645 7.811012788646803e-05']
['59866.37236389172 0.0334285366969022 6.686394434580887e-05 0.014744765068298875 4.01697058326076e-05 0.0005214893878552165 1.4207127212904087e-06 0.014744765068298877 4.01697058326076e-05 0.01868377162860332 7.800251483226458e-05']
['59866.37239542969 0.03351775119211497 6.692672474991454e-05 0.014741186679324097 4.0170082389303926e-05 0.0005213628282344072 1.420726039259203e-06 0.014741186679324097 4.0170082389303926e-05 0.01877656451279087 7.805653082807542e-05']
['59866.37242696765 0.033528717750632896 6.692394175754271e-05 0.014697433880724817 4.0143285272480455e-05 0.0005198153895297006 1.4197782851251883e-06 0.014697433880724815 4.0143285272480455e-05 0.01883128386990808 7.804035707782683e-05']
['59866.37245850561 0.033452609440011244 6.686294825345301e-05 0.014675093172013888 4.012119329852868e-05 0.0005190252485911405 1.4189969413791698e-06 0.014675093172013888 4.012119329852868e-05 0.018777516267997355 7.797668882968703e-05']
['59866.37249004358 0.033530814890471175 6.692423044824612e-05 0.014707516931653833 4.014651326069959e-05 0.0005201720045067673 1.4198924518543701e-06 0.014707516931653833 4.014651326069959e-05 0.01882329795881734 7.804226513935562e-05']
['59866.37252158154 0.033453250748768246 6.688178371243559e-05 0.01464737999373237 4.01023224181146e-05 0.0005180450954106315 1.4183295205128596e-06 0.014647379993732371 4.01023224181146e-05 0.018805870755035876 7.798313443228242e-05']
['59866.3725531195 0.03343457477563706 6.684214342435339e-05 0.014620624360607931 4.009683410246928e-05 0.0005170988084623409 1.4181354110541481e-06 0.014620624360607933 4.009683410246928e-05 0.018813950415029132 7.794631641458609e-05']
['59866.37258465747 0.033482899777684025 6.68903798976039e-05 0.014694554172380855 4.01342959170283e-05 0.0005197135406813441 1.4194603517128727e-06 0.014694554172380856 4.01342959170283e-05 0.018788345605303167 7.800695245682506e-05']
['59866.372616195426 0.03354502100274142 6.693397252148095e-05 0.014776211615078983 4.016767828040681e-05 0.0005226015819359331 1.4206410113003793e-06 0.014776211615078985 4.016767828040681e-05 0.018768809387662434 7.806150815827628e-05']
['59866.37264773339 0.03356939556722839 6.69664721881796e-05 0.014724798954009691 4.01573891828892e-05 0.0005207832310144472 1.4202771089159608e-06 0.01472479895400969 4.01573891828892e-05 0.018844596613218703 7.808408482729537e-05']
['59866.37267927136 0.033545878441053174 6.69251020973546e-05 0.014713009672043496 4.01362083177478e-05 0.0005203662704587975 1.4195279890523573e-06 0.014713009672043498 4.01362083177478e-05 0.018832868769009678 7.80377120940061e-05']
['59866.372710809315 0.03350481728891589 6.691025787052504e-05 0.014742752763728379 4.016347637201946e-05 0.0005214182171397939 1.4204923991914312e-06 0.014742752763728377 4.016347637201946e-05 0.018762064525187513 7.803901231170167e-05']
['59866.37274234728 0.03351964104036374 6.691712051982576e-05 0.01468699789997803 4.014421752121788e-05 0.0005194462922137311 1.4198112566795778e-06 0.014686997899978032 4.014421752121788e-05 0.018832643140385713 7.803498714714921e-05']
['59866.37277388524 0.03356303050537887 6.698788104545326e-05 0.014747934316313379 4.0165848140201116e-05 0.000521601477074637 1.4205762833314265e-06 0.014747934316313379 4.0165848140201116e-05 0.018815096189065492 7.810679588730735e-05']
['59866.372805423205 0.03350302703821819 6.691836291586343e-05 0.014615796593071499 4.008627892583615e-05 0.0005169280611140027 1.4177620980460658e-06 0.014615796593071499 4.008627892583615e-05 0.01888723044514669 7.800626291176332e-05']
['59866.37283696117 0.033563987062792275 6.696033860179116e-05 0.014723647933733902 4.0143225734282244e-05 0.0005207425219996715 1.4197761793921776e-06 0.014723647933733902 4.0143225734282244e-05 0.018840339129058373 7.807154102501157e-05']
['59866.37286849913 0.0333005741018018 6.67859117083097e-05 0.014699787846371612 4.0135312749235704e-05 0.0005198986440338242 1.4194963147955622e-06 0.014699787846371612 4.0135312749235704e-05 0.018600786255430192 7.791791406466872e-05']
['59866.372900037095 0.03355462394085427 6.695561071192099e-05 0.01471361106712771 4.0157786008668514e-05 0.0005203875404588871 1.420291143756922e-06 0.01471361106712771 4.0157786008668514e-05 0.01884101287372656 7.807497411414442e-05']
['59866.37293157506 0.03357270167848083 6.699543225890082e-05 0.01466281882147924 4.0107019839026297e-05 0.000518591132244289 1.4184956577923884e-06 0.01466281882147924 4.0107019839026297e-05 0.01890988285700159 7.808303902849209e-05']
['59866.37296311302 0.03352529665042523 6.694470414724899e-05 0.014710218529561182 4.015152889942163e-05 0.0005202675539870342 1.4200698437866757e-06 0.01471021852956118 4.015152889942163e-05 0.01881507812086405 7.806240251442296e-05']
['59866.372994650985 0.03354131110226456 6.694421578172066e-05 0.014764644953827328 4.016091951942969e-05 0.0005221924949774285 1.4204019690295602e-06 0.014764644953827328 4.016091951942969e-05 0.018776666148437232 7.806681422522432e-05']
['59866.37302618894 0.03357590418180379 6.694303088051073e-05 0.014763544431813417 4.016615083601327e-05 0.0005221535719733183 1.420586989005817e-06 0.014763544431813417 4.016615083601327e-05 0.018812359749990376 7.8068489523305e-05']
['59866.37305772691 0.0335525221834633 6.697625095745929e-05 0.014728509907804208 4.0146319779940265e-05 0.0005209144791566657 1.4198856088723167e-06 0.014728509907804208 4.0146319779940265e-05 0.018824012275659094 7.808677982981364e-05']
['59866.373089264875 0.0334622607943563 6.686608513051671e-05 0.01477823132603371 4.01825732124987e-05 0.0005226730145986133 1.4211678117602553e-06 0.014778231326033708 4.01825732124987e-05 0.018684029468322587 7.801097698823754e-05']
['59866.37312080283 0.033488192905521824 6.691500346578284e-05 0.014665642145455871 4.01312565320749e-05 0.0005186909869035847 1.4193528554596963e-06 0.014665642145455873 4.01312565320749e-05 0.01882255076006595 7.802650472543887e-05']
['59866.3731523408 0.03365016028714361 6.703661298945314e-05 0.014696344396477169 4.013257500700246e-05 0.0005197768569067153 1.4193994869712664e-06 0.014696344396477169 4.013257500700246e-05 0.018953815890666442 7.813149849958336e-05']
['59866.373183878764 0.033503641439290015 6.690794791761823e-05 0.014727028053465544 4.0157634061396265e-05 0.0005208620692804567 1.4202857697214846e-06 0.014727028053465544 4.0157634061396265e-05 0.01877661338582447 7.803402506570917e-05']
['59866.37321541672 0.033456506044324735 6.687980377577999e-05 0.014677747204476638 4.011323999300188e-05 0.0005191191157879345 1.4187156507372787e-06 0.014677747204476638 4.011323999300188e-05 0.018778758839848097 7.79870513343273e-05']
['59866.37324695469 0.03349989508065485 6.691444032597282e-05 0.014697656012738026 4.014532152310291e-05 0.000519823245842572 1.4198503027589522e-06 0.014697656012738026 4.014532152310291e-05 0.018802239067916827 7.803325678408845e-05']
['59866.37327849265 0.03343107779927358 6.687733430524972e-05 0.014642944171657448 4.0095566171746965e-05 0.0005178882102973203 1.4180905671781584e-06 0.014642944171657447 4.0095566171746965e-05 0.018788133627616135 7.79758441468194e-05']
['59866.37331003061 0.03345688519100067 6.686666611644798e-05 0.014777876645172923 4.018024117903851e-05 0.0005226604703292324 1.4210853329485564e-06 0.014777876645172923 4.018024117903851e-05 0.018679008545827748 7.801027380245652e-05']
['59866.37334156858 0.03356099505748105 6.692217870864488e-05 0.014710308437925937 4.013979491464824e-05 0.0005202707338449623 1.4196548389691535e-06 0.014710308437925937 4.013979491464824e-05 0.018850686619555114 7.803704978343186e-05']
['59866.37337310654 0.0335379946159338 6.693575776557961e-05 0.014681073677020734 4.012970389532244e-05 0.0005192367656875905 1.419297942167701e-06 0.014681073677020732 4.012970389532244e-05 0.018856920938913065 7.804350583090567e-05']
['59866.3734046445 0.03353312939467171 6.69187652953329e-05 0.014742278157395568 4.016203252708658e-05 0.0005214014313744852 1.4204413336229587e-06 0.014742278157395568 4.016203252708658e-05 0.01879085123727614 7.804556364943885e-05']
['59866.37343618247 0.03346586604411959 6.688994158633287e-05 0.014714388966718934 4.01385033017393e-05 0.0005204150530289255 1.4196091575071493e-06 0.014714388966718936 4.01385033017393e-05 0.01875147707740065 7.800874138663411e-05']
['59866.37346772043 0.0334940773060827 6.69230706224139e-05 0.0147511268482704 4.017208539514126e-05 0.0005217143897950678 1.4207968810992151e-06 0.0147511268482704 4.017208539514126e-05 0.018742950457812296 7.805442861572379e-05']
['59866.37349925839 0.03358630710684273 6.69724368382297e-05 0.014758048666384645 4.0160951389438024e-05 0.0005219591990324156 1.4204030962005298e-06 0.014758048666384645 4.0160951389438024e-05 0.018828258440458087 7.809103221596875e-05']
['59866.37353079635 0.03352455705722655 6.694460989657933e-05 0.014665405022456243 4.013643844682272e-05 0.0005186826003930265 1.419536128203429e-06 0.014665405022456243 4.013643844682272e-05 0.01885915203477031 7.805456095194422e-05']
['59866.37356233432 0.0334026445690223 6.679983105890032e-05 0.014667477458277404 4.010921777917687e-05 0.0005187558978163995 1.418573394023407e-06 0.014667477458277404 4.010921777917687e-05 0.018735167110744893 7.791640892876841e-05']
['59866.37359387228 0.03357763174053887 6.699441384593055e-05 0.014722394171165904 4.015945943442772e-05 0.0005206981792196358 1.4203503290861383e-06 0.014722394171165902 4.015945943442772e-05 0.01885523756937297 7.810911386403802e-05']
['59866.37362541024 0.03348706755720591 6.689613513225341e-05 0.014654302637202948 4.011015488697137e-05 0.0005182899338389882 1.418606537431786e-06 0.014654302637202948 4.011015488697137e-05 0.01883276492000296 7.799947064364952e-05']
['59866.373656948206 0.03348757485693514 6.690578934697783e-05 0.014700155858988172 4.013102399284377e-05 0.0005199116598176121 1.419344631066786e-06 0.014700155858988172 4.013102399284377e-05 0.01878741899794697 7.80184832898998e-05']
['59866.37368848617 0.03342792409571397 6.686138474453827e-05 0.014679470410620357 4.0128332441428673e-05 0.0005191800617380987 1.4192494369084973e-06 0.014679470410620355 4.0128332441428673e-05 0.018748453685093612 7.79790217589769e-05']
['59866.37372002413 0.03348347965073519 6.690278612337178e-05 0.014689192102606153 4.015056677288797e-05 0.0005195238962569335 1.4200358155214063e-06 0.014689192102606153 4.015056677288797e-05 0.01879428754812904 7.802596236672613e-05']
['59866.373751562096 0.03347821164703404 6.687410648486636e-05 0.0145980586322952 4.00818563145243e-05 0.0005163007090833542 1.41760568016792e-06 0.0145980586322952 4.00818563145243e-05 0.01888015301473884 7.796602672810393e-05']
['59866.373783100054 0.033387869514542944 6.68240135305295e-05 0.014769385104196519 4.01907917388844e-05 0.0005223601435023742 1.4214584826711921e-06 0.014769385104196519 4.01907917388844e-05 0.018618484410346425 7.79791544255692e-05']
['59866.37381463802 0.033561449101422954 6.692667405468696e-05 0.014724705810842969 4.0153938658798244e-05 0.000520779936748803 1.4201550715903313e-06 0.014724705810842969 4.0153938658798244e-05 0.018836743290579987 7.804818056711406e-05']
['59866.373846175986 0.03351933961637505 6.691940892409382e-05 0.014759765598590154 4.01559518027336e-05 0.0005220199230874068 1.4202262719922128e-06 0.014759765598590156 4.01559518027336e-05 0.018759574017784893 7.804298659029877e-05']
['59866.373877713944 0.03352234044264717 6.693733892230388e-05 0.014688355726440278 4.0141309203862785e-05 0.0005194943155011373 1.4197083959944347e-06 0.01468835572644028 4.0141309203862785e-05 0.018833984716206887 7.805082989052388e-05']
['59866.37390925191 0.03359372047562431 6.699930195682197e-05 0.014693053164365534 4.01229505789285e-05 0.0005196604533823976 1.419059092459621e-06 0.014693053164365534 4.01229505789285e-05 0.01890066731125878 7.809454286863165e-05']
['59866.373940789876 0.03341787703175969 6.68302390738134e-05 0.014637715908893179 4.010538279315783e-05 0.0005177032983278277 1.4184377591386029e-06 0.014637715908893177 4.010538279315783e-05 0.018780161122866512 7.794050669355939e-05']
['59866.373972327834 0.033474207127120195 6.690800444255069e-05 0.014745636986500747 4.0167805736014906e-05 0.0005215202256533941 1.420645519120391e-06 0.014745636986500747 4.0167805736014906e-05 0.018728570140619447 7.803930853185858e-05']
['59866.3740038658 0.033593128100357646 6.697100816561751e-05 0.01472387542374217 4.0147204440916894e-05 0.0005207505678128536 1.4199168973539591e-06 0.014723875423742169 4.0147204440916894e-05 0.018869252676615475 7.808273790755537e-05']
['59866.37403540376 0.033583423270521016 6.697015748287313e-05 0.014695909235000214 4.01382602722146e-05 0.000519761466217804 1.4196005620959998e-06 0.014695909235000214 4.01382602722146e-05 0.018887514035520803 7.807740986329445e-05']
['59866.374066941724 0.033513010322740476 6.690578390822257e-05 0.014655811593703175 4.012833228790011e-05 0.000518343302258082 1.4192494314785352e-06 0.014655811593703175 4.012833228790011e-05 0.0188571987290373 7.801709410495818e-05']
['59866.37409847969 0.03345454193277572 6.689214807860215e-05 0.014668236171399 4.0123506961782574e-05 0.0005187827318038863 1.4190787704777272e-06 0.014668236171398999 4.0123506961782574e-05 0.018786305761376722 7.800291844208043e-05']
['59866.37413001765 0.03349726401945982 6.689284485065795e-05 0.014706752329272758 4.014055381196275e-05 0.0005201449622293345 1.419681679471132e-06 0.014706752329272758 4.014055381196275e-05 0.018790511690187063 7.801228590770349e-05']
['59866.374161555614 0.03342267789801648 6.688125484926153e-05 0.014642133900123295 4.01077413787059e-05 0.0005178595528040077 1.4185211770383095e-06 0.014642133900123295 4.01077413787059e-05 0.01878054399789318 7.798546767643972e-05']
['59866.37419309358 0.03346463218689141 6.690499107936771e-05 0.014637578760198847 4.0096673621284956e-05 0.0005176984476850185 1.418129735193313e-06 0.014637578760198847 4.0096673621284956e-05 0.018827053426692567 7.800013504361465e-05']
['59866.37422463154 0.03356659290141738 6.695722041955367e-05 0.014721707520208393 4.0135831844741257e-05 0.0005206738939098432 1.4195146740434835e-06 0.014721707520208393 4.0135831844741257e-05 0.018844885381208987 7.806506494061246e-05']
['59866.3742561695 0.0334254295223857 6.685940711844207e-05 0.0146436740352461 4.011006721563572e-05 0.0005179140239413019 1.4186034366925778e-06 0.014643674035246102 4.011006721563572e-05 0.018781755487139597 7.796792810042086e-05']
['59866.37428770746 0.03344099460811209 6.686230856507685e-05 0.01474299314825524 4.0152932382167904e-05 0.0005214267190032812 1.4201194818348122e-06 0.014742993148255239 4.0152932382167904e-05 0.018698001459856853 7.79924758264443e-05']
['59866.37431924543 0.033479601575938 6.689997294428511e-05 0.014703799076157651 4.013740884016408e-05 0.0005200405122667855 1.4195704488472113e-06 0.014703799076157653 4.013740884016408e-05 0.01877580249978035 7.801678004345323e-05']
['59866.37435078339 0.03360493101584751 6.700869105771404e-05 0.014683452157278449 4.014046952868889e-05 0.0005193208872187155 1.4196786985600977e-06 0.01468345215727845 4.014046952868889e-05 0.018921478858569058 7.811159946673584e-05']
['59866.37438232135 0.03353914844717602 6.691594818656525e-05 0.014741214317665311 4.015908903705692e-05 0.0005213638057407679 1.4203372289589227e-06 0.014741214317665311 4.015908903705692e-05 0.01879793412951071 7.804163346569157e-05']
['59866.37441385932 0.03349961949638182 6.693358126010814e-05 0.014664137029404039 4.010697595649e-05 0.0005186377543125678 1.4184941057651513e-06 0.014664137029404039 4.010697595649e-05 0.01883548246697778 7.80299546371646e-05']
['59866.37444539728 0.03352638953987966 6.692482183495782e-05 0.01473466832257062 4.016403458723651e-05 0.0005211322885237067 1.4205121420161205e-06 0.014734668322570619 4.016403458723651e-05 0.01879172121730904 7.805178698765056e-05']
['59866.37447693524 0.033517434501236926 6.696557477001268e-05 0.01468841744473547 4.013722597104835e-05 0.0005194964983393058 1.4195639811752763e-06 0.01468841744473547 4.013722597104835e-05 0.018829017056501456 7.807294738210642e-05']
['59866.37450847321 0.03351114227313327 6.691571789242062e-05 0.014689362957679454 4.0132174365800744e-05 0.0005195299390190376 1.4193853171873418e-06 0.014689362957679454 4.0132174365800744e-05 0.018821779315453813 7.802758948208675e-05']
['59866.374540011166 0.03343298579881898 6.688588728756678e-05 0.014677011507045519 4.012803357184197e-05 0.0005190930958139828 1.4192388665591498e-06 0.014677011507045519 4.012803357184197e-05 0.01875597429177346 7.799987818316105e-05']
['59866.37457154913 0.03354672748182497 6.696408411565387e-05 0.01474439791782935 4.015925330965971e-05 0.0005214764025636424 1.4203430389137559e-06 0.014744397917829352 4.015925330965971e-05 0.018802329563995614 7.808299551014792e-05']
['59866.3746030871 0.03340110103461132 6.686825745916323e-05 0.014687893541284842 4.014517457255767e-05 0.0005194779690451125 1.4198451054465822e-06 0.01468789354128484 4.014517457255767e-05 0.018713207493326483 7.799358240961925e-05']
['59866.374634625055 0.03349934465690852 6.693237849440139e-05 0.014689675048755518 4.014538620210778e-05 0.0005195409769829154 1.4198525903108053e-06 0.014689675048755518 4.014538620210778e-05 0.018809669608153 7.804867278970342e-05']
['59866.37466616302 0.03340002172931524 6.684707843094837e-05 0.014681105847007953 4.013020266868153e-05 0.0005192379034681428 1.419315582666719e-06 0.014681105847007953 4.013020266868153e-05 0.01871891588230729 7.796771806961403e-05']
['59866.37469770099 0.03357570371153031 6.695239108091333e-05 0.01465304640803672 4.010248311020123e-05 0.0005182455038208857 1.4183352038328379e-06 0.01465304640803672 4.010248311020123e-05 0.018922657303493594 7.804378145025738e-05']
['59866.374729238945 0.03344121718892957 6.684818547711633e-05 0.014688466201655249 4.013460653925087e-05 0.0005194982227625932 1.419471337726685e-06 0.014688466201655249 4.013460653925087e-05 0.01875275098727432 7.797093396672522e-05']
['59866.37476077691 0.03341772250464994 6.684322556174827e-05 0.014671803525678763 4.011644347532001e-05 0.000518908901152194 1.4188289507475094e-06 0.014671803525678763 4.011644347532001e-05 0.018745918978971175 7.795733346265316e-05']
['59866.37479231487 0.0335898172117956 6.699841652378001e-05 0.014698276387557486 4.013865717474358e-05 0.0005198451871134802 1.4196145996514247e-06 0.014698276387557488 4.013865717474358e-05 0.018891540824238114 7.810185411682306e-05']
['59866.374823852835 0.033588487397566966 6.70010965194563e-05 0.01469495416256871 4.014141923269982e-05 0.000519727687440363 1.4197122874685006e-06 0.014694954162568708 4.014141923269982e-05 0.018893533234998258 7.810557261056897e-05']
['59866.3748553908 0.03351108039527972 6.690267752366654e-05 0.014679639928127122 4.013821834187598e-05 0.0005191860571934637 1.4195990791136315e-06 0.01467963992812712 4.013821834187598e-05 0.0188314404671526 7.80195157091854e-05']
['59866.37488692876 0.03346710549277787 6.688457401977249e-05 0.014728961835639352 4.0163144458892265e-05 0.0005209304628341954 1.4204806601659045e-06 0.014728961835639352 4.0163144458892265e-05 0.01873814365713852 7.801682135688606e-05']
['59866.374918466725 0.03343796762737402 6.687067733070841e-05 0.014644883227266032 4.0116717881015944e-05 0.0005179567903606618 1.418838655863714e-06 0.014644883227266032 4.0116717881015944e-05 0.01879308440010799 7.798101397271483e-05']
['59866.37495000469 0.03350495020379893 6.691137881536853e-05 0.014780441726122244 4.018697029746e-05 0.0005227511915097913 1.42132332682843e-06 0.014780441726122242 4.018697029746e-05 0.018724508477676684 7.80520672158187e-05']
['59866.37498154265 0.033421255978212 6.683592057893614e-05 0.014710818026361122 4.0145151515875885e-05 0.0005202887568490517 1.419844289983276e-06 0.014710818026361122 4.0145151515875885e-05 0.01871043795185088 7.796584809944987e-05']
['59866.375013080615 0.03351873238326579 6.694000102932935e-05 0.014736850673038307 4.0139666521256274e-05 0.0005212094733824825 1.419650297981822e-06 0.014736850673038308 4.0139666521256274e-05 0.01878188171022748 7.805226816847975e-05']
['59866.37504461857 0.03344099175784757 6.68355223850416e-05 0.014655729947565721 4.011205508703604e-05 0.0005183404146166686 1.418673743261376e-06 0.014655729947565723 4.011205508703604e-05 0.01878526181028185 7.794847025944005e-05']
['59866.37507615654 0.033469079011416054 6.691495640113288e-05 0.014700570242583753 4.01461805317288e-05 0.000519926315639295 1.4198806839742785e-06 0.014700570242583753 4.01461805317288e-05 0.0187685087688323 7.803414125529719e-05']
['59866.375107694505 0.033409088089758746 6.683904900617268e-05 0.014638937993305288 4.010708916635556e-05 0.0005177465207222862 1.4184981097450869e-06 0.014638937993305288 4.010708916635556e-05 0.018770150096453456 7.794893888596272e-05']
['59866.37513923246 0.033532484323653494 6.694924550197995e-05 0.014649549250186458 4.011023058920853e-05 0.0005181218171634097 1.4186092148507296e-06 0.014649549250186458 4.011023058920853e-05 0.018882935073467035 7.804506436158448e-05']
['59866.37517077043 0.03339916743498898 6.683083136416171e-05 0.014643580203073698 4.011097911985769e-05 0.0005179107053070666 1.4186356887069228e-06 0.014643580203073697 4.011097911985769e-05 0.018755587231915286 7.794389435214717e-05']
['59866.375202308394 0.03357988160635059 6.694581187896396e-05 0.014740802707876022 4.015488103470931e-05 0.0005213492480224145 1.4201884013202195e-06 0.014740802707876024 4.015488103470931e-05 0.01883907889847456 7.806507669275224e-05']
['59866.37523384635 0.0334711489328415 6.692954217253043e-05 0.014621874774904621 4.0099237479547234e-05 0.0005171430328215033 1.4182204131301638e-06 0.01462187477490462 4.0099237479547234e-05 0.018849274157936878 7.802251253238167e-05']
['59866.37526538432 0.033508835435025364 6.692301041847566e-05 0.014741585899255007 4.0153184372151315e-05 0.0005213769477511594 1.4201283941573608e-06 0.014741585899255005 4.0153184372151315e-05 0.01876724953577036 7.804465092942232e-05']
['59866.37529692228 0.03348031574504705 6.690256415490254e-05 0.014682159583182653 4.011893384789482e-05 0.0005192751717616802 1.4189170296598252e-06 0.014682159583182653 4.011893384789482e-05 0.018798156161864393 7.800949906000302e-05']
['59866.37532846024 0.033448534538200084 6.687999572661807e-05 0.01466722479736146 4.012908173385109e-05 0.0005187469617644665 1.4192759377069085e-06 0.01466722479736146 4.012908173385109e-05 0.018781309740838623 7.799536543407276e-05']
['59866.37535999821 0.03347875703110914 6.68498356396489e-05 0.014683193510280666 4.0113683991704727e-05 0.0005193117394524458 1.4187313539791197e-06 0.014683193510280666 4.0113683991704727e-05 0.018795563520828475 7.796158136181193e-05']
['59866.37539153617 0.03358083012279546 6.69958690004325e-05 0.01461936156211265 4.010773266595061e-05 0.0005170541461017513 1.418520868887627e-06 0.01461936156211265 4.010773266595061e-05 0.018961468560682808 7.80837798952284e-05']
['59866.37542307413 0.033340170543739604 6.679140086309886e-05 0.014690780538456353 4.0124324228898725e-05 0.0005195800756830098 1.4191076753891408e-06 0.014690780538456351 4.0124324228898725e-05 0.018649390005283255 7.791695979747254e-05']
['59866.3754546121 0.03355451999308946 6.695920272571089e-05 0.014679102403790372 4.011961058364017e-05 0.0005191670461589691 1.418940964290723e-06 0.014679102403790372 4.011961058364017e-05 0.01887541758929909 7.805842672668839e-05']
['59866.37548615006 0.03352381326570021 6.695809168320231e-05 0.014735011167395127 4.0161610958489546e-05 0.0005211444141789363 1.420426423683832e-06 0.014735011167395125 4.0161610958489546e-05 0.018788802098305087 7.807906913275281e-05']
['59866.37551768802 0.033511497109562284 6.692138746098737e-05 0.014679791032940101 4.012685902405698e-05 0.0005191914014329994 1.4191973254289547e-06 0.0146797910329401 4.012685902405698e-05 0.018831706076622184 7.8029718151741e-05']
['59866.37554922598 0.033441745850377694 6.688777011028995e-05 0.01464938337653333 4.011117328427957e-05 0.0005181159505830044 1.4186425558685926e-06 0.01464938337653333 4.011117328427957e-05 0.018792362473844363 7.799282026294792e-05']
['59866.375580763946 0.033473362870306285 6.688927852027229e-05 0.014626901351691946 4.009590906194447e-05 0.0005173208116087331 1.4181026944381295e-06 0.014626901351691946 4.009590906194447e-05 0.01884646151861434 7.798626484494741e-05']
['59866.37561230191 0.03355699410966053 6.696777651598774e-05 0.014655539898338758 4.0117463861047984e-05 0.0005183336930002459 1.41886503951028e-06 0.014655539898338756 4.0117463861047984e-05 0.018901454211321774 7.806467830035407e-05']
['59866.37564383987 0.033532808380951844 6.69186686586866e-05 0.014804450871925168 4.01868307817683e-05 0.0005236003413395579 1.4213183924702137e-06 0.014804450871925168 4.01868307817683e-05 0.018728357509026676 7.805824481330314e-05']
['59866.375675377836 0.03355666855772909 6.697241273764188e-05 0.014711624976236308 4.013509057425351e-05 0.0005203172968627102 1.419488456962974e-06 0.014711624976236308 4.013509057425351e-05 0.018845043581492783 7.80777148955103e-05']
['59866.3757069158 0.033426812890657465 6.685972206345584e-05 0.014699474831902282 4.0133471394069196e-05 0.0005198875734115901 1.4194311901785094e-06 0.014699474831902282 4.0133471394069196e-05 0.018727338058755184 7.79802408340801e-05']
['59866.37573845376 0.03339185201093738 6.686414326050273e-05 0.01465364258208258 4.011427853655902e-05 0.0005182665891645172 1.4187523817018867e-06 0.01465364258208258 4.011427853655902e-05 0.018738209428854805 7.797415595227481e-05']
['59866.375769991726 0.033494580604491384 6.691742599902602e-05 0.014695388871755592 4.0141435593979785e-05 0.0005197430621327852 1.4197128661304077e-06 0.014695388871755592 4.0141435593979785e-05 0.018799191732735792 7.803381801424784e-05']
['59866.375801529684 0.03352720117258729 6.691787862665045e-05 0.014632688820508985 4.0083593000034563e-05 0.0005175255014465602 1.4176671028531545e-06 0.014632688820508985 4.0083593000034563e-05 0.018894512352078306 7.800446722902184e-05']
['59866.37583306765 0.0335268197792288 6.693322460987525e-05 0.014691699688073129 4.012009916133636e-05 0.0005196125839507768 1.4189582441919303e-06 0.014691699688073129 4.012009916133636e-05 0.01883512009115567 7.80363948000641e-05']
['59866.375864605616 0.033555094387559395 6.696858187189898e-05 0.014725773892805012 4.014866101765704e-05 0.0005208177124207777 1.4199684132180007e-06 0.01472577389280501 4.014866101765704e-05 0.018829320494754387 7.808140584956172e-05']
['59866.375896143574 0.03354545235245845 6.69486393868871e-05 0.014704349717881274 4.014284833283154e-05 0.0005200599872339381 1.4197628315463088e-06 0.014704349717881272 4.014284833283154e-05 0.018841102634577174 7.806131300476676e-05']
['59866.37592768154 0.033497988934859176 6.691033469921411e-05 0.014608212326679151 4.0088263868357475e-05 0.0005166598225615432 1.4178323010269595e-06 0.014608212326679151 4.0088263868357475e-05 0.018889776608180024 7.800039608578864e-05']
['59866.375959219506 0.03350012550955343 6.692415821475004e-05 0.014641634678789818 4.0107715328232155e-05 0.0005178418964611367 1.4185202556912726e-06 0.014641634678789818 4.0107715328232155e-05 0.018858490830763616 7.802225183627684e-05']
['59866.375990757464 0.03343754964710914 6.68555025615315e-05 0.014680219511405112 4.01307040940167e-05 0.0005192065557587138 1.4193333169602044e-06 0.014680219511405112 4.01307040940167e-05 0.018757330135704027 7.797519883806949e-05']
['59866.37602229543 0.03355229296883467 6.695987235789903e-05 0.01473568901115119 4.0156317424596434e-05 0.0005211683879976967 1.4202392032203846e-06 0.01473568901115119 4.0156317424596434e-05 0.01881660395768348 7.807787353207743e-05']
['59866.37605383339 0.03354201079344347 6.69178233612372e-05 0.014747333452828654 4.0171278312317927e-05 0.000521580225876033 1.4207683363834776e-06 0.014747333452828653 4.0171278312317927e-05 0.018794677340614817 7.804951431400101e-05']
['59866.376085371354 0.03347063415124401 6.687480497452143e-05 0.014635790613489063 4.010657063524915e-05 0.0005176352049321662 1.418479770458702e-06 0.014635790613489063 4.010657063524915e-05 0.01883484353775495 7.79793341116767e-05']
['59866.37611690932 0.033482313326279746 6.690436121901945e-05 0.014714043233690776 4.0152804628077035e-05 0.0005204028252243874 1.4201149634581317e-06 0.014714043233690776 4.0152804628077035e-05 0.018768270092588968 7.80284644833253e-05']
['59866.37614844728 0.0334663588089417 6.687468547330138e-05 0.014801094404469436 4.0200269613912496e-05 0.0005234816305869119 1.4217936939291318e-06 0.014801094404469436 4.0200269613912496e-05 0.018665264404472262 7.802746461461018e-05']
['59866.376179985244 0.03333730990585685 6.680486026889721e-05 0.014681371427686744 4.012040982108292e-05 0.0005192472964632138 1.4189692315328826e-06 0.014681371427686746 4.012040982108292e-05 0.018655938478170105 7.792648227501693e-05']
['59866.37621152321 0.03359401535896508 6.697675452704016e-05 0.014760141653430116 4.017595289380658e-05 0.0005220332233066632 1.4209336658836564e-06 0.014760141653430116 4.017595289380658e-05 0.01883387370553496 7.810245090841107e-05']
['59866.37624306117 0.033456256537225955 6.689825382588049e-05 0.014621630058194779 4.008473576382841e-05 0.0005171343777383859 1.417707519854616e-06 0.014621630058194779 4.008473576382841e-05 0.018834626479031176 7.798821966302269e-05']
['59866.37627459913 0.03340372128710716 6.684845767885075e-05 0.014636856888984424 4.0112791926365106e-05 0.0005176729167134516 1.4186998036217062e-06 0.014636856888984424 4.0112791926365106e-05 0.018766864398122737 7.795994080403705e-05']
['59866.37630613709 0.033481342662545634 6.689687727465532e-05 0.014681189880143065 4.012183281101356e-05 0.0005192408755323287 1.419019559506534e-06 0.014681189880143065 4.012183281101356e-05 0.018800152782402567 7.800611294773776e-05']
['59866.37633767506 0.03343460769585295 6.688371148657661e-05 0.014663668775997502 4.011220587090872e-05 0.0005186211932360634 1.4186790761499706e-06 0.014663668775997502 4.011220587090872e-05 0.01877093891985545 7.798987063747307e-05']
['59866.37636921302 0.033469227389059795 6.68975510508186e-05 0.014702186862413296 4.014262843257553e-05 0.0005199834918697332 1.419755054165702e-06 0.014702186862413296 4.014262843257553e-05 0.0187670405266465 7.801738879296527e-05']
['59866.37640075098 0.03345336367629621 6.689666859407812e-05 0.014646641953459123 4.011551924829014e-05 0.0005180189925755896 1.4187962629029889e-06 0.01464664195345912 4.011551924829014e-05 0.018806721722837094 7.800268683542801e-05']
['59866.37643228895 0.033466460903447896 6.688489670593268e-05 0.014744097808507077 4.0139267117746016e-05 0.0005214657883676184 1.4196361719722786e-06 0.014744097808507078 4.0139267117746016e-05 0.018722363094940818 7.800480864737155e-05']
['59866.37646382691 0.03338711532232147 6.682827826281583e-05 0.01480028978993146 4.0192561937342494e-05 0.0005234531731689114 1.421521090634494e-06 0.01480028978993146 4.0192561937342494e-05 0.01858682553239001 7.798372144659073e-05']
['59866.37649536487 0.03342721150832355 6.688036594820125e-05 0.014668958400565547 4.013145952183477e-05 0.00051880827543542 1.4193600347538475e-06 0.014668958400565547 4.013145952183477e-05 0.018758253107758 7.799690630222445e-05']
['59866.37652690284 0.03340424421261957 6.682266536125423e-05 0.01461991001895215 4.009920401379404e-05 0.0005170735437944355 1.418219229521265e-06 0.014619910018952149 4.009920401379404e-05 0.01878433419366742 7.793083323384937e-05']
['59866.376558440796 0.03347062137758985 6.691091454369915e-05 0.014711718836732193 4.013878029750679e-05 0.0005203206164986837 1.4196189542283964e-06 0.01471171883673219 4.013878029750679e-05 0.018758902540857658 7.802686824963392e-05']
['59866.37658997876 0.03347794372751523 6.689633280351053e-05 0.014667142956849734 4.011725296807416e-05 0.0005187440672484695 1.4188575806971138e-06 0.014667142956849732 4.011725296807416e-05 0.0188108007706655 7.800329049637902e-05']
['59866.37662151673 0.03342515082813833 6.685879744016784e-05 0.014675471020294394 4.0126909129556686e-05 0.0005190386122403808 1.4191990975485e-06 0.014675471020294394 4.0126909129556686e-05 0.018749679807843936 7.797607088996659e-05']
['59866.376653054685 0.03341002259411169 6.684613899728344e-05 0.014680281965803677 4.013867854463724e-05 0.0005192087646312137 1.4196153554568045e-06 0.014680281965803675 4.013867854463724e-05 0.01872974062830801 7.797127557090406e-05']
['59866.37668459265 0.033375996232176554 6.683502131145387e-05 0.014706930456878793 4.0128450587333496e-05 0.0005201512622046682 1.4192536154651103e-06 0.014706930456878793 4.0128450587333496e-05 0.018669065775297762 7.795647901388671e-05']
['59866.37671613062 0.03342988866308666 6.684462367901979e-05 0.014652354849269302 4.012097172866431e-05 0.000518221044932825 1.4189891049482468e-06 0.0146523548492693 4.012097172866431e-05 0.01877753381381736 7.796086253526224e-05']
['59866.376747668575 0.033654349160073545 6.702466612035195e-05 0.014696982920208688 4.014236329643826e-05 0.0005197994400640825 1.419745676893071e-06 0.014696982920208688 4.014236329643826e-05 0.018957366239864857 7.812627726679346e-05']
['59866.37677920654 0.03350143202883552 6.691450097079245e-05 0.014698798065743307 4.01370513120446e-05 0.0005198636377050306 1.4195578038766535e-06 0.014698798065743307 4.01370513120446e-05 0.018802633963092216 7.802905438486286e-05']
['59866.3768107445 0.03343825970453171 6.686770317626556e-05 0.014648624243213568 4.01155807669057e-05 0.0005180891017340475 1.4187984386789352e-06 0.014648624243213568 4.01155807669057e-05 0.018789635461318142 7.797787858319364e-05']
['59866.376842282465 0.03348919418090769 6.6933770988924e-05 0.014641275474523244 4.011064443831164e-05 0.0005178291922090022 1.4186238517686084e-06 0.014641275474523244 4.011064443831164e-05 0.01884791870638445 7.803200302474865e-05']
['59866.37687382043 0.03341813675956896 6.683444988719071e-05 0.014756436371559836 4.0154658983265676e-05 0.0005219021757677289 1.420180547856914e-06 0.014756436371559834 4.0154658983265676e-05 0.01866170038800912 7.796948332383488e-05']
['59866.37690535839 0.033494879484864584 6.69135480771799e-05 0.014737566534751343 4.015173598162339e-05 0.0005212347918114158 1.4200771678213505e-06 0.014737566534751341 4.015173598162339e-05 0.018757312950113243 7.803579190740014e-05']
['59866.376936896355 0.03339915383559166 6.685900840046854e-05 0.014686686162839314 4.012667676215097e-05 0.0005194352667678262 1.4191908792326704e-06 0.014686686162839314 4.012667676215097e-05 0.018712467672752343 7.797613219612826e-05']
['59866.37696843432 0.03350250389495539 6.691948306379631e-05 0.014672755220918269 4.0117233781258386e-05 0.0005189425604859016 1.41885690210232e-06 0.014672755220918269 4.0117233781258386e-05 0.01882974867403712 7.802313541370828e-05']
['59866.37699997228 0.03342756770594609 6.687290822542731e-05 0.014742948707918382 4.015409177559379e-05 0.000521425147247885 1.420160486989194e-06 0.014742948707918384 4.015409177559379e-05 0.01868461899802771 7.800215984733521e-05']
['59866.377031510245 0.03351797958711004 6.692879150696599e-05 0.014737411926220108 4.015846010483034e-05 0.0005212293236531958 1.4203149850316494e-06 0.01473741192622011 4.015846010483034e-05 0.018780567660889928 7.805232251877052e-05']
['59866.3770630482 0.03337490853202153 6.682295052277669e-05 0.014615554506534107 4.008412931896798e-05 0.0005169194990542067 1.4176860712552273e-06 0.014615554506534107 4.008412931896798e-05 0.018759354025487424 7.792332218167556e-05']
['59866.37709458617 0.033498362162322104 6.687637395302533e-05 0.014675823570427635 4.010676210774556e-05 0.0005190510811506903 1.4184865424129844e-06 0.014675823570427633 4.010676210774556e-05 0.01882253859189447 7.798077814354111e-05']
['59866.377126124135 0.03344327679323329 6.684285897820174e-05 0.014626843206250647 4.010393122647591e-05 0.0005173187551344217 1.4183864204691238e-06 0.014626843206250646 4.010393122647591e-05 0.018816433586982647 7.795058111520192e-05']
['59866.37715766209 0.03349709389353181 6.689098809851798e-05 0.01462466933234624 4.00927553867699e-05 0.0005172418700727451 1.4179911559952542e-06 0.014624669332346239 4.00927553867699e-05 0.01887242456118557 7.798610981001322e-05']
['59866.37718920006 0.03351925085858658 6.693552850320018e-05 0.014688733913399421 4.013133717613927e-05 0.000519507691128684 1.4193557076600242e-06 0.014688733913399421 4.013133717613927e-05 0.018830516945187156 7.804414904108893e-05']
['59866.377220738024 0.0335034154191574 6.691694597309355e-05 0.014741138573456119 4.015787459938552e-05 0.000521361126837367 1.4202942770125936e-06 0.014741138573456117 4.015787459938552e-05 0.01876227684570128 7.804186409040915e-05']
['59866.37725227598 0.03350240659004592 6.693060384320475e-05 0.014609037721551957 4.0077775422432464e-05 0.0005166890149335454 1.417461348134889e-06 0.014609037721551957 4.0077775422432464e-05 0.018893368868493965 7.801239525631133e-05']
['59866.37728381395 0.03344635199019589 6.688623826284554e-05 0.014669100039340324 4.012593961585441e-05 0.0005188132848823397 1.419164808015586e-06 0.014669100039340324 4.012593961585441e-05 0.018777251950855566 7.799910191155624e-05']
['59866.37731535191 0.03348037093224044 6.690969048478889e-05 0.014673481995280348 4.012100806978757e-05 0.0005189682648708432 1.418990390252559e-06 0.014673481995280346 4.012100806978757e-05 0.018806888936960094 7.801667750748046e-05']
['59866.37734688987 0.0334629026056941 6.688364165104552e-05 0.01462845262336847 4.0104804851435906e-05 0.0005173756766210435 1.4184173186315221e-06 0.01462845262336847 4.0104804851435906e-05 0.018834449982325634 7.798600446668125e-05']
['59866.37737842784 0.033521828130867466 6.694882262321862e-05 0.014685427813912568 4.0128012805580204e-05 0.0005193907617785315 1.419238132102881e-06 0.014685427813912568 4.0128012805580204e-05 0.018836400316954896 7.805384207302033e-05']
['59866.3774099658 0.03353998446427929 6.695076102432612e-05 0.01467598715284489 4.012939964199553e-05 0.0005190568666952034 1.4192871814074943e-06 0.014675987152844888 4.012939964199553e-05 0.018863997311434403 7.805621767267112e-05']
['59866.37744150376 0.03355305230765607 6.698229675574253e-05 0.014722729839476988 4.012988586300697e-05 0.0005207100510576243 1.4193043779580288e-06 0.014722729839476988 4.012988586300697e-05 0.01883032246817908 7.80835182228127e-05']
['59866.37747304173 0.03347641544260082 6.690341895680083e-05 0.014643088120665868 4.011384139169347e-05 0.0005178933014520411 1.4187369208649532e-06 0.014643088120665868 4.011384139169347e-05 0.01883332732193495 7.800761334194987e-05']
['59866.37750457969 0.03347030630531609 6.68843092844877e-05 0.014731571539524672 4.0161109729527355e-05 0.0005210227622282743 1.42040869633562e-06 0.014731571539524674 4.0161109729527355e-05 0.018738734765791416 7.801554693245536e-05']
['59866.37753611765 0.033397926750193194 6.68377820844608e-05 0.014704756802227999 4.0153159701190525e-05 0.0005200743848975018 1.420127521600614e-06 0.014704756802227999 4.0153159701190525e-05 0.018693169947965195 7.79715675612539e-05']
['59866.37756765561 0.03356198819421203 6.69703764937449e-05 0.014665319380190672 4.0126085407741306e-05 0.0005186795714174925 1.4191699643488e-06 0.014665319380190672 4.0126085407741306e-05 0.018896668814021356 7.807133954187855e-05']
['59866.377599193576 0.03349113168541412 6.688607216383626e-05 0.01466955196081658 4.012351529836288e-05 0.0005188292683349699 1.4190790653239415e-06 0.014669551960816579 4.012351529836288e-05 0.018821579724597543 7.799771233442602e-05']
['59866.37763073154 0.03347580716327139 6.690019010500985e-05 0.014648838306202134 4.011730229899323e-05 0.0005180966726635505 1.4188593254214732e-06 0.014648838306202136 4.011730229899323e-05 0.018826968857069255 7.800662394845238e-05']
['59866.3776622695 0.03357719705883314 6.695265953317364e-05 0.014728391999271027 4.0143511580899216e-05 0.0005209103089953572 1.4197862891481904e-06 0.01472839199927103 4.0143511580899216e-05 0.018848805059562115 7.806510193813146e-05']
['59866.377693807466 0.03353915145553359 6.696607750143375e-05 0.014801516206316492 4.0193486546939476e-05 0.0005234965487755707 1.4215537920095585e-06 0.014801516206316494 4.0193486546939476e-05 0.0187376352492171 7.810231684609002e-05']
['59866.37772534543 0.033409080519255695 6.68441057184029e-05 0.014644908475364118 4.010251671278704e-05 0.0005179576833294648 1.4183363922812009e-06 0.014644908475364116 4.010251671278704e-05 0.01876417204389158 7.795092248326756e-05']
['59866.37775688339 0.0334392678278228 6.688024453790036e-05 0.014681302276417332 4.013535960853738e-05 0.0005192448507373587 1.4194979721043381e-06 0.014681302276417332 4.013535960853738e-05 0.018757965551405464 7.799880896754747e-05']
['59866.377788421356 0.033529275757863734 6.695791507265188e-05 0.01470232594738376 4.01378976250635e-05 0.0005199884109943019 1.4195877360767339e-06 0.01470232594738376 4.01378976250635e-05 0.018826949810479974 7.806672285062656e-05']
['59866.377819959314 0.03351529774487899 6.69280135673752e-05 0.01469810512313786 4.0152274249877715e-05 0.0005198391298737114 1.4200962051665473e-06 0.014698105123137859 4.0152274249877715e-05 0.018817192621741134 7.80484729351712e-05']
['59866.37785149728 0.0334705337040786 6.687847536867435e-05 0.014691657653696084 4.0139549652277194e-05 0.0005196110972888019 1.4196461645872188e-06 0.014691657653696082 4.0139549652277194e-05 0.018778876050382518 7.79994481642403e-05']
['59866.377883035246 0.033447437344617525 6.688127728493067e-05 0.0147081396332242 4.015774600071038e-05 0.0005201940280696551 1.420289728764855e-06 0.014708139633224199 4.015774600071038e-05 0.018739297711393328 7.801121595720294e-05']
['59866.377914573204 0.03338062224477 6.686430173702407e-05 0.014663219521262767 4.010994241214941e-05 0.0005186053041001211 1.4185990226721864e-06 0.014663219521262769 4.010994241214941e-05 0.018717402723507234 7.797206119557018e-05']
['59866.37794611117 0.03354037687923759 6.692852117353074e-05 0.014673354079295525 4.012185467738264e-05 0.0005189637407683355 1.4190203328711399e-06 0.014673354079295525 4.012185467738264e-05 0.018867022799942065 7.803326322299206e-05']
['59866.377977649136 0.03348718213515306 6.689938213794237e-05 0.014709698374654174 4.013928456086946e-05 0.0005202491572704512 1.4196367888965716e-06 0.014709698374654172 4.013928456086946e-05 0.018777483760498887 7.80172384508507e-05']
['59866.378009187094 0.033475672689756854 6.69034823700904e-05 0.014687849455191006 4.0123696185406716e-05 0.0005194764098185002 1.419085462894423e-06 0.014687849455191007 4.0123696185406716e-05 0.018787823234565848 7.801273581168537e-05']
['59866.37804072506 0.0333913602373546 6.683788849725445e-05 0.014705967126394156 4.0160575589412e-05 0.0005201171913583434 1.4203898049934727e-06 0.014705967126394154 4.0160575589412e-05 0.01868539311096045 7.797547800715487e-05']
['59866.37807226302 0.03350118083273271 6.694666248569691e-05 0.01470267940925299 4.01459505100292e-05 0.0005200009121506758 1.419872548620832e-06 0.01470267940925299 4.01459505100292e-05 0.01879850142347972 7.806121290581854e-05']
['59866.378103800984 0.033482403697335295 6.689156218174261e-05 0.014744260222650404 4.016192389198859e-05 0.0005214715325928936 1.4204374914423282e-06 0.014744260222650405 4.016192389198859e-05 0.018738143474684887 7.802218416463244e-05']
['59866.37813533895 0.033570046145841616 6.696517248185857e-05 0.014700093718011365 4.011507510128206e-05 0.0005199094620301393 1.418780554415923e-06 0.014700093718011365 4.011507510128206e-05 0.018869952427830253 7.806121684874358e-05']
['59866.37816687691 0.03350185658222387 6.691943179477675e-05 0.014768993104066581 4.0174754253239224e-05 0.000522346279333847 1.4208912726455932e-06 0.014768993104066581 4.0174754253239224e-05 0.018732863478157287 7.805268240774265e-05']
['59866.37819841487 0.033445579596609785 6.6878505145631e-05 0.014648282713573666 4.0104994925528134e-05 0.000518077022593958 1.4184240411273738e-06 0.014648282713573666 4.0104994925528134e-05 0.01879729688303612 7.798169700956008e-05']
['59866.37822995283 0.03342546990843314 6.686600530365853e-05 0.014612580331583459 4.008440737000446e-05 0.0005168143091330922 1.41769590529898e-06 0.01461258033158346 4.008440737000446e-05 0.01881288957684968 7.796038981093771e-05']
['59866.3782614908 0.03346252719846682 6.686733263196461e-05 0.01464631180197608 4.0114797732385346e-05 0.0005180073158554796 1.4187707444979294e-06 0.01464631180197608 4.0114797732385346e-05 0.01881621539649074 7.797715800427705e-05']
['59866.37829302876 0.0333390834164291 6.678135570658776e-05 0.014643214310264427 4.010274059065326e-05 0.000517897764496125 1.4183443103409914e-06 0.014643214310264427 4.010274059065326e-05 0.01869586910616467 7.789723533535083e-05']
['59866.37832456672 0.03345286102846439 6.68915564303078e-05 0.014669405583977092 4.012317764766268e-05 0.0005188240913132902 1.4190671233732804e-06 0.014669405583977094 4.012317764766268e-05 0.0187834554444873 7.80022416742939e-05']
['59866.37835610469 0.03349906446408463 6.689869223177125e-05 0.014785361176465138 4.0186291215484207e-05 0.000522925181474095 1.421299309216605e-06 0.014785361176465136 4.0186291215484207e-05 0.01871370328761949 7.80408420250381e-05']
['59866.37838764265 0.03352818359779582 6.693180705429514e-05 0.014747873224482498 4.014768902152137e-05 0.0005215993163931109 1.4199340358869655e-06 0.014747873224482498 4.014768902152137e-05 0.018780310373313326 7.804936725766698e-05']
['59866.37841918061 0.03349280556480747 6.692386751567939e-05 0.014672589530869522 4.012495085712722e-05 0.0005189367003991729 1.419129837829151e-06 0.014672589530869522 4.012495085712722e-05 0.01882021603393795 7.803086392282917e-05']
['59866.37845071858 0.03358404566345901 6.696297125197437e-05 0.014721080701102037 4.014241518313203e-05 0.0005206517247189097 1.4197475120094697e-06 0.014721080701102037 4.014241518313203e-05 0.018862964962356975 7.807338224790632e-05']
['59866.378482256536 0.03354083032137004 6.694991151365045e-05 0.014716517059467195 4.01456814115156e-05 0.0005204903189134241 1.4198630312078058e-06 0.014716517059467195 4.01456814115156e-05 0.01882431326190285 7.806386095806774e-05']
['59866.3785137945 0.0335859418405878 6.696318801353748e-05 0.0147564658244975 4.015732970440211e-05 0.0005219032174523107 1.420275005294799e-06 0.014756465824497501 4.015732970440211e-05 0.0188294760160903 7.808123768181717e-05']
['59866.37854533247 0.033478643992348366 6.691053689185672e-05 0.01472991634083309 4.01656799231201e-05 0.0005209642215497044 1.4205703338692138e-06 0.014729916340833092 4.01656799231201e-05 0.018748727651515272 7.804038564002009e-05']
['59866.378576870426 0.03344361158432979 6.68703175085155e-05 0.014668194615696137 4.012160219857382e-05 0.0005187812620715477 1.4190114032599288e-06 0.014668194615696139 4.012160219857382e-05 0.018775416968633652 7.798321823745335e-05']
['59866.37860840839 0.033553878886747046 6.696103264478954e-05 0.014747067890234307 4.016333378749772e-05 0.0005215708335205685 1.4204873562955549e-06 0.014747067890234307 4.016333378749772e-05 0.01880681099651274 7.808247737989956e-05']
['59866.37863994636 0.03354998127544457 6.695746734504087e-05 0.014750535271321944 4.016151682696631e-05 0.0005216934670404976 1.4204230944622268e-06 0.014750535271321944 4.016151682696631e-05 0.018799446004122623 7.8078485302322e-05']
['59866.378671484315 0.03350973331645317 6.691769343666708e-05 0.014629454642023117 4.01016589602676e-05 0.0005174111157814785 1.4183060554915522e-06 0.014629454642023117 4.01016589602676e-05 0.018880278674430054 7.801359334275897e-05']
['59866.37870302228 0.033486900240308363 6.693574253448677e-05 0.01463030682556013 4.008869210377511e-05 0.0005174412556086645 1.4178474467566314e-06 0.01463030682556013 4.008869210377511e-05 0.018856593414748234 7.80224125699429e-05']
['59866.37873456024 0.033513750695696724 6.692682636102913e-05 0.014735398399806589 4.015187941010127e-05 0.0005211581097239163 1.4200822405660693e-06 0.01473539839980659 4.015187941010127e-05 0.018778352295890133 7.804725175765421e-05']
['59866.378766098205 0.033415492528394805 6.68575150171352e-05 0.014704948272474093 4.0150209451372655e-05 0.0005200811567721953 1.4200231778579763e-06 0.014704948272474093 4.0150209451372655e-05 0.01871054425592071 7.798696450853534e-05']
['59866.37879763617 0.033436305825183955 6.686668662014664e-05 0.014689111572981828 4.0130409327777365e-05 0.0005195210481040943 1.4193228917370828e-06 0.014689111572981828 4.0130409327777365e-05 0.01874719425220213 7.798463651496914e-05']
['59866.37882917413 0.03349942826797936 6.691699225969963e-05 0.014691373513214331 4.011887068148323e-05 0.000519601047874979 1.418914795605016e-06 0.014691373513214331 4.011887068148323e-05 0.018808054754765026 7.80218407745054e-05']
['59866.378860712095 0.03351898500765949 6.694320672316353e-05 0.014746451951134465 4.015383277516198e-05 0.0005215490491311499 1.4201513267227527e-06 0.014746451951134465 4.015383277516198e-05 0.01877253305652503 7.806230340513839e-05']
['59866.37889225006 0.03346815579331411 6.690289642716156e-05 0.014780296382318245 4.0171671456068554e-05 0.0005227460510242682 1.4207822409993127e-06 0.014780296382318245 4.0171671456068554e-05 0.018687859410995863 7.803691906987244e-05']
['59866.37892378802 0.033533624951750114 6.693089196438412e-05 0.01470201194326337 4.0138562880995545e-05 0.0005199773053703216 1.4196112646922907e-06 0.01470201194326337 4.0138562880995545e-05 0.018831613008486743 7.804388848141596e-05']
['59866.378955325985 0.0334742800387602 6.689364676987718e-05 0.014639003047609449 4.009627051616435e-05 0.0005177488215476365 1.418115478266084e-06 0.014639003047609449 4.009627051616435e-05 0.01883527699115075 7.799019738068709e-05']
['59866.37898686394 0.03357665560907956 6.696305975713245e-05 0.014716787362350886 4.013831538649654e-05 0.0005204998789223288 1.4196025113649787e-06 0.014716787362350884 4.013831538649654e-05 0.018859868246728678 7.807135027718655e-05']
['59866.37901840191 0.033490443071259486 6.687787077313691e-05 0.014644882984160569 4.0111794503417256e-05 0.0005179567817625648 1.4186645270011497e-06 0.014644882984160569 4.0111794503417256e-05 0.018845560087098916 7.798465013983698e-05']
['59866.379049939875 0.03352344225167973 6.68965851258425e-05 0.01469868379052743 4.012555716573098e-05 0.000519859596046035 1.419151281609446e-06 0.01469868379052743 4.012555716573098e-05 0.0188247584611523 7.800777806962224e-05']
['59866.37908147783 0.03353689543745867 6.692798120298498e-05 0.014674638844542707 4.013057696749726e-05 0.000519009180043847 1.4193288207793229e-06 0.014674638844542707 4.013057696749726e-05 0.018862256592915964 7.803728516325599e-05']
['59866.3791130158 0.03351654784576941 6.69308408757159e-05 0.014611261257867953 4.009180184084195e-05 0.000516767656443731 1.4179574312068322e-06 0.014611261257867955 4.009180184084195e-05 0.01890528658790145 7.801980540334448e-05']
['59866.379144553764 0.03354144899097551 6.695491165499753e-05 0.014688915179477853 4.013186526587737e-05 0.0005195141021047723 1.41937438501385e-06 0.014688915179477855 4.013186526587737e-05 0.01885253381149766 7.80610453712161e-05']
['59866.37917609172 0.033534268579021045 6.693196909523841e-05 0.01469851466563388 4.0146819556652935e-05 0.0005198536144765221 1.4199032848577085e-06 0.01469851466563388 4.0146819556652935e-05 0.018835753913387165 7.80490589788269e-05']
['59866.37920762969 0.0335313387727712 6.692735490780125e-05 0.014707120005951977 4.014411147460765e-05 0.0005201579661317695 1.419807506047974e-06 0.014707120005951979 4.014411147460765e-05 0.018824218766819223 7.804370904205228e-05']
['59866.37923916765 0.033519647300168355 6.693736199830469e-05 0.014749819977134291 4.01529754710972e-05 0.0005216681686836687 1.420121005793943e-06 0.014749819977134291 4.01529754710972e-05 0.018769827323034064 7.805685024694898e-05']
['59866.37927070561 0.03346242684260186 6.689254387967499e-05 0.014644026912639135 4.010317502088702e-05 0.000517926504426059 1.418359675167465e-06 0.014644026912639137 4.010317502088702e-05 0.018818399929962724 7.799280142070895e-05']
['59866.37930224358 0.03350785102948402 6.693847513704732e-05 0.014690373547651904 4.012114050785677e-05 0.0005195656813278274 1.4189950742910848e-06 0.014690373547651904 4.012114050785677e-05 0.018817477481832115 7.804143367035416e-05']
['59866.37933378154 0.033518385097927095 6.691336017491266e-05 0.014677504466942255 4.014294498691127e-05 0.0005191105307038299 1.4197662499850995e-06 0.014677504466942257 4.014294498691127e-05 0.018840880630984838 7.803110791293285e-05']
['59866.3793653195 0.03337453089584209 6.68264330957008e-05 0.01466066344537337 4.012525500019229e-05 0.0005185149014084064 1.4191405946896428e-06 0.01466066344537337 4.012525500019229e-05 0.01871386745046872 7.794747108870582e-05']
['59866.37939685747 0.033482131257802354 6.688084506950851e-05 0.014670882417399755 4.011200074136477e-05 0.0005188763236109213 1.4186718211764387e-06 0.014670882417399755 4.011200074136477e-05 0.018811248840402597 7.798730692033703e-05']
['59866.37942839543 0.033518790087334216 6.693458523767865e-05 0.014771430733192963 4.0179665032404386e-05 0.0005224324928282667 1.4210649559297193e-06 0.014771430733192963 4.0179665032404386e-05 0.018747359354141253 7.80682021251693e-05']
['59866.37945993339 0.033462458117910106 6.689921907647668e-05 0.01467762871966785 4.012820037220875e-05 0.0005191149252450456 1.419244765915346e-06 0.01467762871966785 4.012820037220875e-05 0.018784829398242255 7.801139646330244e-05']
['59866.37949147135 0.0334635824701202 6.690245498722973e-05 0.01465923300812967 4.0124062139473496e-05 0.0005184643100399358 1.419098405871906e-06 0.01465923300812967 4.0124062139473496e-05 0.018804349461990527 7.801204295421721e-05']
['59866.37952300932 0.03348843846022377 6.689981285213419e-05 0.014610549316456405 4.0078188190703795e-05 0.0005167424766670999 1.4174759468261633e-06 0.014610549316456407 4.0078188190703795e-05 0.018877889143767364 7.79861919079272e-05']
['59866.37955454728 0.033512736094672896 6.690116665096511e-05 0.014741140645870204 4.015305707436775e-05 0.0005213612001340217 1.4201238919192498e-06 0.014741140645870204 4.015305707436775e-05 0.01877159544880269 7.802585527680962e-05']
['59866.37958608524 0.03344651356175871 6.6870325831186e-05 0.014643690900472205 4.0098543917276244e-05 0.0005179146204266576 1.4181958833826592e-06 0.014643690900472203 4.0098543917276244e-05 0.01880282266128651 7.797136462224265e-05']
['59866.379617623206 0.03347912300162185 6.687866844217517e-05 0.014766634373144936 4.017711833438442e-05 0.0005222628562926017 1.4209748849122881e-06 0.014766634373144934 4.017711833438442e-05 0.018712488628476916 7.801895366033516e-05']
['59866.37964916117 0.033565767889580655 6.694672039892781e-05 0.014727138728372648 4.014627012514294e-05 0.000520865983604577 1.4198838526931074e-06 0.014727138728372648 4.014627012514294e-05 0.018838629161208008 7.80614269478413e-05']
['59866.37968069913 0.033488456826873646 6.688934744592604e-05 0.014610770378132297 4.00905628277122e-05 0.0005167502951245324 1.4179136100814645e-06 0.014610770378132297 4.00905628277122e-05 0.018877686448741347 7.798357538343925e-05']
['59866.379712237096 0.03353255983248355 6.693846892051979e-05 0.014658000533591838 4.0121642452166815e-05 0.0005184207201699512 1.4190128269395514e-06 0.014658000533591838 4.0121642452166815e-05 0.018874559298891713 7.804168638928114e-05']
['59866.379743775055 0.033434496453259646 6.685488199029717e-05 0.01467884021378453 4.012502412079899e-05 0.0005191577730844227 1.419132429001487e-06 0.014678840213784532 4.012502412079899e-05 0.018755656239475116 7.797174364236869e-05']
['59866.37977531302 0.03342812680276851 6.688809911096199e-05 0.014662251754372323 4.01230879362521e-05 0.0005185710763480377 1.4190639504811812e-06 0.014662251754372323 4.01230879362521e-05 0.018765875048396184 7.79992306899119e-05']
['59866.379806850986 0.03346685480279888 6.687751386844426e-05 0.01478040491660183 4.0177871555843126e-05 0.0005227498896393188 1.4210015246719318e-06 0.014780404916601831 4.0177871555843126e-05 0.018686449886197047 7.801835184097253e-05']
['59866.379838388944 0.03337902078380632 6.684064083098279e-05 0.014683629909886236 4.013807763931983e-05 0.0005193271739311992 1.4195941027786722e-06 0.014683629909886236 4.013807763931983e-05 0.018695390873920085 7.796625259223705e-05']
['59866.37986992691 0.03355910924595966 6.695411966206586e-05 0.014722593226111616 4.0143472789303365e-05 0.000520705219348204 1.4197849171761392e-06 0.014722593226111615 4.0143472789303365e-05 0.018836516019848044 7.806633427609992e-05']
['59866.379901464876 0.03348172504183936 6.69284658666549e-05 0.014662932158816816 4.010974801130222e-05 0.0005185951407326249 1.4185921471486817e-06 0.014662932158816814 4.010974801130222e-05 0.01881879288302255 7.802699166823077e-05']
['59866.379933002834 0.03352186790970663 6.694566381082075e-05 0.01461501090450607 4.011176297229517e-05 0.0005169002730653541 1.4186634118158293e-06 0.01461501090450607 4.011176297229517e-05 0.01890685700520056 7.804277949827918e-05']
['59866.3799645408 0.033445915511132636 6.688335475959727e-05 0.01468754492222259 4.012308404669368e-05 0.0005194656391679984 1.4190638129161925e-06 0.014687544922222589 4.012308404669368e-05 0.01875837058891005 7.799516021726083e-05']
['59866.37999607876 0.03351021492944891 6.691196166549551e-05 0.014706724536986324 4.0146832161194186e-05 0.0005201439792782754 1.4199037306521632e-06 0.014706724536986323 4.0146832161194186e-05 0.01880349039246259 7.803190851506732e-05']
['59866.380027616724 0.03349610670974181 6.692673440498285e-05 0.014688324863638554 4.012585818157452e-05 0.0005194932239528145 1.4191619278671014e-06 0.014688324863638552 4.012585818157452e-05 0.01880778184610326 7.80337893026024e-05']
['59866.38005915469 0.033573930149844514 6.696519358011054e-05 0.014730498912653413 4.0133890195509094e-05 0.0005209848258130178 1.4194460022494725e-06 0.014730498912653415 4.0133890195509094e-05 0.0188434312371911 7.807090555031918e-05']
['59866.38009069265 0.03342055848526957 6.687289582759944e-05 0.014609682170414353 4.009275966044764e-05 0.0005167118076495499 1.4179913071456847e-06 0.014609682170414353 4.009275966044764e-05 0.018810876314855215 7.797059428758629e-05']
['59866.380122230614 0.033538943167036844 6.695088336647792e-05 0.014728223432413305 4.0138725316339475e-05 0.0005209043471623243 1.419617009667384e-06 0.014728223432413305 4.0138725316339475e-05 0.01881071973462354 7.806111742456856e-05']
['59866.38015376858 0.033476708676331055 6.68919899413745e-05 0.014624159927214924 4.008540615889252e-05 0.0005172238535517038 1.417731230229789e-06 0.014624159927214922 4.008540615889252e-05 0.018852548749116134 7.798319117117693e-05']
['59866.38018530654 0.03349725231496035 6.69030427682568e-05 0.01463971617602054 4.0100961141798026e-05 0.0005177740433057887 1.4182813752118158e-06 0.014639716176020542 4.0100961141798026e-05 0.018857536138939805 7.800066804936477e-05']
['59866.3802168445 0.033437154288569595 6.6862762281425e-05 0.01468413203959445 4.013480419418831e-05 0.0005193449331367849 1.4194783283400895e-06 0.014684132039594452 4.013480419418831e-05 0.018753022248975144 7.798353343884968e-05']
['59866.38024838246 0.03351736557808557 6.69190781299395e-05 0.014719925356748518 4.015453555060964e-05 0.0005206108627711683 1.4201761823197257e-06 0.014719925356748518 4.015453555060964e-05 0.018797440221337055 7.804197423852193e-05']
['59866.38027992043 0.03351369891982193 6.691721105673929e-05 0.014760795168472712 4.0183640447631314e-05 0.0005220563366731995 1.4212055574817656e-06 0.01476079516847271 4.0183640447631314e-05 0.01875290375134922 7.805535276479572e-05']
['59866.38031145839 0.03348940882221905 6.690760741750434e-05 0.014616574443779142 4.008868326952888e-05 0.000516955571955138 1.4178471343090858e-06 0.014616574443779142 4.008868326952888e-05 0.018872834378439906 7.799827213867937e-05']
['59866.38034299635 0.03353636840757 6.694748522412784e-05 0.014645921277544098 4.01069867391929e-05 0.0005179935038790911 1.418494487125255e-06 0.014645921277544098 4.01069867391929e-05 0.018890447130025904 7.804188723456532e-05']
['59866.38037453432 0.03345303105282959 6.689786499164769e-05 0.014706848971922705 4.014089659424635e-05 0.0005201483802638795 1.4196938029144296e-06 0.014706848971922707 4.014089659424635e-05 0.018746182080906882 7.801676691475172e-05']
['59866.38040607228 0.03339728627629407 6.683650857496524e-05 0.014625167544013266 4.0107487308231196e-05 0.0005172594907059703 1.4185121911334334e-06 0.014625167544013266 4.0107487308231196e-05 0.018772118732280803 7.794696541027963e-05']
['59866.38043761024 0.03353774148550593 6.695056543014932e-05 0.014709368244498916 4.0127118007201535e-05 0.0005202374813046573 1.4192064850839842e-06 0.014709368244498918 4.0127118007201535e-05 0.018828373241007012 7.805487691989901e-05']
['59866.38046914821 0.033481109264393974 6.694351367004172e-05 0.014696705026975272 4.01359712050502e-05 0.0005197896116014715 1.419519602906159e-06 0.014696705026975274 4.01359712050502e-05 0.0187844042374187 7.805338049734734e-05']
['59866.380500686166 0.033532239799940376 6.692901343502902e-05 0.01471828449304124 4.013343838047443e-05 0.0005205528290889565 1.4194300225614435e-06 0.014718284493041241 4.013343838047443e-05 0.018813955306899135 7.803964194962477e-05']
['59866.38053222413 0.03341556126535182 6.685094877906891e-05 0.01472323643824052 4.015730021024591e-05 0.0005207279683237088 1.42027396215241e-06 0.014723236438240517 4.015730021024591e-05 0.018692324827111303 7.798498645789145e-05']
['59866.3805637621 0.0334988860863093 6.690484808163645e-05 0.014752855433054 4.016510262702922e-05 0.0005217755259757041 1.4205499161966605e-06 0.014752855433054001 4.016510262702922e-05 0.018746030653255297 7.803521106440759e-05']
['59866.380595300056 0.033574544313582144 6.698622547531047e-05 0.014773585780426392 4.018094585597916e-05 0.000522508712032666 1.4211102557970869e-06 0.014773585780426394 4.018094585597916e-05 0.01880095853315575 7.8113141105132e-05']
['59866.38062683802 0.03357633409444517 6.69811507054599e-05 0.014711124186328384 4.0151171972451486e-05 0.0005202995850428665 1.4200572200774266e-06 0.014711124186328384 4.0151171972451486e-05 0.01886520990811679 7.809347706811949e-05']
['59866.38065837599 0.03344642744114097 6.690889747385622e-05 0.014644462660382314 4.012155249045897e-05 0.0005179419158498963 1.4190096451949976e-06 0.014644462660382314 4.012155249045897e-05 0.018801964780758657 7.801627737473545e-05']
['59866.380689913945 0.03345689778459807 6.68685111976881e-05 0.014628148403290606 4.008757407225811e-05 0.0005173649170367813 1.4178079044805287e-06 0.014628148403290606 4.008757407225811e-05 0.018828749381307467 7.796416731290164e-05']
['59866.38072145191 0.033403596046026635 6.683571728451948e-05 0.014634991845019136 4.0113598328823235e-05 0.0005176069542765274 1.4187283242744466e-06 0.014634991845019136 4.0113598328823235e-05 0.018768604201007497 7.794943152982185e-05']
['59866.38075298987 0.03345412243104609 6.687860284705039e-05 0.014685011918279391 4.0138276513648405e-05 0.0005193760524794581 1.4196011365192158e-06 0.014685011918279391 4.0138276513648405e-05 0.0187691105127667 7.79989023016324e-05']
['59866.380784527835 0.033484301914944524 6.690604822633517e-05 0.014708900408076053 4.014907356373206e-05 0.0005202209349759334 1.419983004050688e-06 0.014708900408076053 4.014907356373206e-05 0.01877540150686847 7.802799111402687e-05']
['59866.3808160658 0.033512703521540545 6.691287304072028e-05 0.014683245599902929 4.012227771968126e-05 0.0005193135817459718 1.4190352949317983e-06 0.014683245599902927 4.012227771968126e-05 0.018829457921637618 7.8020059907557e-05']
['59866.38084760376 0.03359958064538446 6.698016394325253e-05 0.014656492597195647 4.0104150364080366e-05 0.0005183673878296574 1.4183941708764498e-06 0.014656492597195645 4.0104150364080366e-05 0.01894308804818881 7.806846506938479e-05']
['59866.380879141725 0.03346297257205824 6.685990094142073e-05 0.014646863892053648 4.0123237223145704e-05 0.0005180268420476744 1.4190692304249713e-06 0.014646863892053648 4.0123237223145704e-05 0.018816108680004592 7.797512756745844e-05']
['59866.38091067969 0.03337432966467826 6.681167613154181e-05 0.014720537061449296 4.0144378577648546e-05 0.0005206324973993554 1.4198169528855903e-06 0.014720537061449298 4.0144378577648546e-05 0.018653792603228962 7.794466754622538e-05']
['59866.38094221765 0.03342153272742468 6.685279000768442e-05 0.014694704191086235 4.014583086398643e-05 0.0005197188465076813 1.4198683170076922e-06 0.014694704191086237 4.014583086398643e-05 0.018726828536338443 7.798065957384148e-05']
['59866.380973755615 0.03340299709789966 6.682910088027221e-05 0.014641800137675782 4.0114669096645943e-05 0.0005178477483721544 1.4187661949393107e-06 0.014641800137675784 4.0114669096645943e-05 0.018761196960223873 7.794430961397375e-05']
['59866.38100529357 0.03350337272242052 6.689957687027668e-05 0.014718497616814433 4.0136176385895e-05 0.0005205603668005107 1.4195268596940872e-06 0.014718497616814433 4.0136176385895e-05 0.01878487510560609 7.801580634910937e-05']
['59866.38103683154 0.03345606643399537 6.685349368873551e-05 0.014666949045283529 4.0122424884778294e-05 0.0005187372090297397 1.4190404998323856e-06 0.014666949045283529 4.0122424884778294e-05 0.018789117388711838 7.796921570097057e-05']
['59866.381068369505 0.0335035801238642 6.688401188988132e-05 0.014679406377389622 4.013238324942596e-05 0.0005191777970258336 1.4193927049343382e-06 0.014679406377389624 4.013238324942596e-05 0.018824173746474576 7.80005078942733e-05']
['59866.38109990746 0.03346358183324715 6.688001493363501e-05 0.014617877781710902 4.009234945079362e-05 0.0005170016681049956 1.4179767989469868e-06 0.014617877781710904 4.009234945079362e-05 0.018845704051536245 7.797648929009176e-05']
['59866.38113144543 0.03359724402914863 6.700518276582621e-05 0.014669387237003282 4.01197467387906e-05 0.0005188234424218296 1.4189457797941048e-06 0.014669387237003282 4.01197467387906e-05 0.01892785679214535 7.809794232799269e-05']
['59866.381162983394 0.03333553678086073 6.679927059971421e-05 0.014679765751322323 4.0122620147039196e-05 0.0005191905072786797 1.419047405822168e-06 0.014679765751322323 4.0122620147039196e-05 0.018655771029538408 7.792282849151101e-05']
['59866.38119452135 0.03356058353266072 6.693630949264866e-05 0.014720364584520657 4.0136550264466306e-05 0.0005206263972758527 1.4195400829435848e-06 0.014720364584520659 4.0136550264466306e-05 0.01884021894814006 7.804749961163187e-05']
['59866.38122605932 0.0335433620635665 6.694751678029076e-05 0.014705903491338204 4.013589995629441e-05 0.0005201149407286304 1.4195170829968981e-06 0.014705903491338204 4.013589995629441e-05 0.018837458572228294 7.805677720959907e-05']
['59866.38125759728 0.03350865631223978 6.691602690922792e-05 0.014623932525146004 4.008666489430362e-05 0.0005172158108487399 1.4177757488881713e-06 0.014623932525146004 4.008666489430362e-05 0.018884723787093778 7.800445730639186e-05']
['59866.38128913524 0.033399183567543775 6.685238087015691e-05 0.014680495150551955 4.012675120066682e-05 0.0005192163044993204 1.4191935119566157e-06 0.014680495150551953 4.012675120066682e-05 0.01871868841699182 7.797048794209728e-05']
['59866.38132067321 0.03347100574035414 6.689319112814483e-05 0.01460605858087097 4.008089558588471e-05 0.0005165836493856464 1.41757170134304e-06 0.014606058580870971 4.008089558588471e-05 0.018864947159483166 7.798190309471235e-05']
['59866.38135221117 0.033596162864688396 6.697133014114616e-05 0.014787570997525952 4.01878844606549e-05 0.0005230033379063566 1.4213556587375992e-06 0.01478757099752595 4.01878844606549e-05 0.018808591867162446 7.810393791799066e-05']
['59866.38138374913 0.033570049125641224 6.695919261918123e-05 0.014748154048822055 4.016056935604177e-05 0.0005216092485223956 1.4203895845330987e-06 0.014748154048822057 4.016056935604177e-05 0.018821895076819167 7.807947750346474e-05']
['59866.3814152871 0.03344155113390113 6.687307664853695e-05 0.01466075242010332 4.012216362740694e-05 0.0005185180482457579 1.4190312597430367e-06 0.01466075242010332 4.012216362740694e-05 0.018780798713797814 7.798587304496574e-05']
['59866.38144682506 0.03346878290677663 6.689541672449195e-05 0.01464420719186469 4.009761129707256e-05 0.0005179328804993665 1.4181628986903383e-06 0.01464420719186469 4.009761129707256e-05 0.01882457571491194 7.799240482556337e-05']
['59866.38147836302 0.03352436847364413 6.692698789437167e-05 0.014752801762211516 4.017636141807999e-05 0.0005217736277579527 1.420948114474209e-06 0.014752801762211517 4.017636141807999e-05 0.01877156671143261 7.805998799263011e-05']
['59866.38150990098 0.03343967079373194 6.686161111684271e-05 0.014691720792429024 4.011718762398743e-05 0.0005196133303646793 1.4188552696228017e-06 0.014691720792429025 4.011718762398743e-05 0.018747950001302915 7.797348128689725e-05']
['59866.38154143895 0.03352933262285254 6.6960376571802e-05 0.014753632867394164 4.014839037125893e-05 0.0005218030220908522 1.4199588410597586e-06 0.014753632867394164 4.014839037125893e-05 0.018775699755458376 7.80742292952068e-05']
['59866.38157297691 0.03351389081565037 6.689624943220154e-05 0.014779531782119038 4.018401767442957e-05 0.0005227190088240031 1.4212188991505676e-06 0.014779531782119038 4.018401767442957e-05 0.018734359033531333 7.803757725963943e-05']
['59866.38160451487 0.033484323226529424 6.69026536454669e-05 0.014740557477799432 4.014350616655176e-05 0.0005213405747826625 1.419786097654821e-06 0.014740557477799433 4.014350616655176e-05 0.01874376574872999 7.802221576031588e-05']
['59866.381636052836 0.03348487638821748 6.690239849235897e-05 0.014654534346440035 4.010323893082226e-05 0.0005182981288768643 1.4183619355190441e-06 0.014654534346440035 4.010323893082226e-05 0.01883034204177745 7.800128650716611e-05']
['59866.3816675908 0.03345581914681682 6.688702771885413e-05 0.014715293472653572 4.014535953732564e-05 0.0005204470433823818 1.4198516472370534e-06 0.014715293472653572 4.014535953732564e-05 0.018740525674163247 7.800977098699818e-05']
['59866.38169912876 0.033470048933785426 6.691424887555165e-05 0.014637072951394872 4.008969087542275e-05 0.000517680558358038 1.4178827710776853e-06 0.01463707295139487 4.008969087542275e-05 0.018832975982390556 7.800448715981805e-05']
['59866.381730666726 0.03343649754961951 6.682699087706894e-05 0.0146866624534336 4.012438205365784e-05 0.0005194344282191335 1.41910972052164e-06 0.0146866624534336 4.012438205365784e-05 0.018749835096185913 7.79474999270134e-05']
['59866.381762204684 0.03346405966480551 6.688975218587902e-05 0.014721588269962624 4.0168898168454425e-05 0.000520669676295159 1.420684156014334e-06 0.014721588269962622 4.0168898168454425e-05 0.018742471394842884 7.802422269754417e-05']
['59866.38179374265 0.03339466036030477 6.685183760735572e-05 0.014674397033614945 4.0127400692945374e-05 0.0005190006277317476 1.4192164830469784e-06 0.014674397033614943 4.0127400692945374e-05 0.01872026332668983 7.797035640454937e-05']
['59866.381825280616 0.03352539135168205 6.693032896969516e-05 0.014746083994614922 4.015730581225776e-05 0.0005215360353313882 1.4202741602830495e-06 0.014746083994614922 4.015730581225776e-05 0.01877930735706713 7.805304700068285e-05']
['59866.381856818574 0.03352358742907708 6.69252884108885e-05 0.014737359699580206 4.0152731157644e-05 0.0005212274765136622 1.420112364973112e-06 0.014737359699580206 4.0152731157644e-05 0.018786227729496875 7.804637114112766e-05']
['59866.38188835654 0.03352361507521833 6.689859336972709e-05 0.014632366017362414 4.010129572869475e-05 0.0005175140846206886 1.4182932088025952e-06 0.014632366017362416 4.010129572869475e-05 0.018891249057855913 7.799702375070682e-05']
['59866.381919894506 0.03355444351349564 6.693508469750768e-05 0.01470607678592874 4.013171296252213e-05 0.0005201210697710071 1.4193689983845529e-06 0.014706076785928742 4.013171296252213e-05 0.018848366727566894 7.804396164194123e-05']
['59866.381951432464 0.033349446311273005 6.680277591824872e-05 0.014681270376684147 4.012860453145405e-05 0.0005192437225150877 1.4192590601246096e-06 0.014681270376684147 4.012860453145405e-05 0.01866817593458886 7.79289148649305e-05']
['59866.38198297043 0.03362288947271035 6.698214818934052e-05 0.014706833789601841 4.014019553139615e-05 0.0005201478432991211 1.4196690078882011e-06 0.014706833789601843 4.014019553139615e-05 0.01891605568310851 7.8088689791528e-05']
['59866.38201450839 0.03343156633606501 6.689699340381268e-05 0.014626959115285387 4.0088195974915223e-05 0.0005173228545779391 1.41782989978764e-06 0.014626959115285389 4.0088195974915223e-05 0.018804607220779625 7.798891705231562e-05']
['59866.382046046354 0.03343601628419055 6.690339997881315e-05 0.01462754400963272 4.009164557961654e-05 0.0005173435409838422 1.4179519045965128e-06 0.01462754400963272 4.009164557961654e-05 0.018808472274557834 7.799618563754668e-05']
['59866.38207758432 0.03345208589843534 6.686858877523153e-05 0.01459848651875848 4.007535479898074e-05 0.0005163158424712905 1.4173757360931766e-06 0.01459848651875848 4.007535479898074e-05 0.018853599379676858 7.795795166020725e-05']
['59866.38210912228 0.03356034717866854 6.696936303140245e-05 0.014761025550371681 4.017526059081354e-05 0.0005220644847660929 1.4209091806739988e-06 0.014761025550371681 4.017526059081354e-05 0.01879932162829686 7.809575627632752e-05']
['59866.382140660244 0.033439478671495534 6.6863345005509e-05 0.014631679949994857 4.010397929255474e-05 0.0005174898199511684 1.418388120458911e-06 0.014631679949994857 4.010397929255474e-05 0.01880779872150068 7.796817338134442e-05']
['59866.38217219821 0.03351330626855295 6.691887779439393e-05 0.014646075284209636 4.01113743200662e-05 0.0005179989507506665 1.4186496660550773e-06 0.014646075284209636 4.01113743200662e-05 0.018867230984343314 7.80196036589875e-05']
['59866.38220373617 0.03343456750061058 6.684701527950046e-05 0.014668310441106468 4.012614793406528e-05 0.0005187853585574565 1.4191721757651408e-06 0.01466831044110647 4.012614793406528e-05 0.01876625705950411 7.796557701834996e-05']
['59866.38223527413 0.033576120730663434 6.694947564808301e-05 0.01471533790975844 4.01377262082076e-05 0.0005204486150234699 1.4195816734456349e-06 0.01471533790975844 4.01377262082076e-05 0.018860782820904993 7.805939632560769e-05']
['59866.38226681209 0.03347458467437312 6.688097994361198e-05 0.014782590869952443 4.0175445721476574e-05 0.0005228272019240117 1.4209157283318077e-06 0.014782590869952443 4.0175445721476574e-05 0.01869199380442068 7.802007380884191e-05']
['59866.38229835006 0.033523685592025905 6.692426454820134e-05 0.014661745390414713 4.012246938443877e-05 0.0005185531673865139 1.4190420736859255e-06 0.014661745390414713 4.012246938443877e-05 0.018861940201611194 7.802992845583586e-05']
['59866.38232988802 0.03348809591308349 6.690118417491848e-05 0.014667622481590563 4.0124353252155714e-05 0.0005187610269668779 1.4191087018768775e-06 0.014667622481590563 4.0124353252155714e-05 0.01882047343149293 7.801110285023627e-05']
['59866.38236142598 0.033530546452707324 6.694512348535323e-05 0.014648743302526315 4.0117973496884655e-05 0.0005180933125958575 1.418883064190854e-06 0.014648743302526315 4.0117973496884655e-05 0.01888180315018101 7.804550823696346e-05']
['59866.38239296395 0.033447199628232956 6.68645755762029e-05 0.014645261433277034 4.0116940695119375e-05 0.0005179701666620302 1.4188465363005922e-06 0.014645261433277034 4.0116940695119375e-05 0.018801938194955924 7.797589626109773e-05']
['59866.38242450191 0.03347781668118373 6.690404458277097e-05 0.014645596668839935 4.009688505257081e-05 0.0005179820231946827 1.4181372130453726e-06 0.014645596668839935 4.009688505257081e-05 0.018832220012343793 7.799943187262636e-05']
['59866.38245603987 0.03355747815153905 6.699020166710792e-05 0.014743693639927486 4.016467617033544e-05 0.0005214514938282218 1.420534833376476e-06 0.014743693639927486 4.016467617033544e-05 0.01881378451161156 7.810818351022959e-05']
['59866.38248757784 0.03347537794979686 6.689375106741426e-05 0.014718701932299403 4.0147722432079775e-05 0.0005205675929825959 1.4199352175437483e-06 0.014718701932299402 4.0147722432079775e-05 0.018756676017497458 7.801675171623404e-05']
['59866.382519115796 0.03334698028281925 6.680942244986657e-05 0.014635142299237042 4.011528978062501e-05 0.0005176122755059693 1.4187881471445031e-06 0.014635142299237042 4.011528978062501e-05 0.01871183798358221 7.792775758526773e-05']
['59866.38255065376 0.03358404329632533 6.696424196623019e-05 0.014725778148734511 4.0146886289667984e-05 0.0005208178629434926 1.4199056450553115e-06 0.01472577814873451 4.0146886289667984e-05 0.018858265147590824 7.807677107096167e-05']
['59866.38258219173 0.03349956782408208 6.69028395374402e-05 0.014690983854959892 4.013923575276919e-05 0.0005195872665333544 1.4196350626631447e-06 0.01469098385495989 4.013923575276919e-05 0.01880858396912219 7.802017806304248e-05']
['59866.382613729686 0.03350122377987022 6.69252397127601e-05 0.01470596023167688 4.013038480027143e-05 0.0005201169475076022 1.4193220242540137e-06 0.01470596023167688 4.013038480027143e-05 0.01879526354819334 7.80348351368045e-05']
['59866.38264526765 0.03348315330353438 6.688867828319438e-05 0.014632700040384222 4.010202039387715e-05 0.0005175258982684723 1.4183188385905653e-06 0.014632700040384222 4.010202039387715e-05 0.018850453263150158 7.798889229976035e-05']
['59866.38267680562 0.03342121991705872 6.688738988797104e-05 0.014669185167999348 4.011499266110339e-05 0.0005188162956927581 1.4187776386910466e-06 0.014669185167999348 4.011499266110339e-05 0.018752034749059374 7.79944585353718e-05']
['59866.382708343575 0.03344168171466504 6.686429857100454e-05 0.01461055378965649 4.008588161804458e-05 0.0005167426348741898 1.4177480461574086e-06 0.014610553789656488 4.008588161804458e-05 0.018831127925008555 7.795968399428209e-05']
['59866.38273988154 0.03348111805751266 6.692288099681603e-05 0.014764592717059261 4.018180509718253e-05 0.0005221906474796842 1.4211406452381592e-06 0.01476459271705926 4.018180509718253e-05 0.0187165253404534 7.805926890371164e-05']
['59866.3827714195 0.03347024859316928 6.688845916101357e-05 0.014749518962396277 4.015293815781495e-05 0.0005216575224651135 1.4201196861065402e-06 0.014749518962396277 4.015293815781495e-05 0.018720729630773 7.801489865173121e-05']
['59866.382802957465 0.03343792620324823 6.687162814548161e-05 0.014641627934840473 4.010771615135299e-05 0.0005178416579427202 1.4185202848032171e-06 0.014641627934840473 4.010771615135299e-05 0.018796298268407757 7.797719888342405e-05']
['59866.38283449543 0.0333530857262402 6.679437125210361e-05 0.014645398829487077 4.0104685823949193e-05 0.000517975026058917 1.418413108895328e-06 0.014645398829487078 4.0104685823949193e-05 0.018707686896753117 7.790939517158067e-05']
['59866.38286603339 0.033482276553663586 6.691555673634788e-05 0.014727037494064612 4.014492772715045e-05 0.0005208624031733472 1.419836375076196e-06 0.014727037494064614 4.014492772715045e-05 0.01875523905959897 7.803401153057252e-05']
['59866.382897571355 0.03348208516024095 6.691753624401029e-05 0.01461796744395471 4.0094167655674485e-05 0.0005170048392581757 1.4180411047901742e-06 0.01461796744395471 4.0094167655674485e-05 0.01886411771628624 7.80096079785674e-05']
['59866.38292910932 0.033562859644187114 6.697675216671771e-05 0.014651373057459659 4.010932404593233e-05 0.0005181863211506935 1.4185771524410555e-06 0.014651373057459659 4.010932404593233e-05 0.018911486586727456 7.806819586889101e-05']
['59866.38296064728 0.033556987993498356 6.69732434840638e-05 0.014668486396054156 4.0126006382961374e-05 0.00051879158169072 1.4191671694189437e-06 0.014668486396054154 4.0126006382961374e-05 0.0188885015974442 7.807375827396265e-05']
['59866.382992185245 0.03341604710975739 6.684197185512033e-05 0.014687904918327504 4.014156764027171e-05 0.0005194783714256852 1.4197175363126469e-06 0.014687904918327502 4.014156764027171e-05 0.018728142191429886 7.796919041582518e-05']
['59866.3830237232 0.03334651728342492 6.680567559175278e-05 0.01463940304819737 4.009902501419473e-05 0.0005177629686744826 1.4182128987054779e-06 0.01463940304819737 4.009902501419473e-05 0.01870711423522755 7.791617353514948e-05']
['59866.38305526117 0.03354713917418737 6.6948058424817e-05 0.014670466054985214 4.011968306950534e-05 0.0005188615978028343 1.4189435279537778e-06 0.014670466054985214 4.011968306950534e-05 0.018876673119202155 7.80489045179384e-05']
['59866.383086799135 0.033532758907085916 6.692310307395895e-05 0.014764269267285222 4.017435361942448e-05 0.0005221792077840442 1.4208771031229295e-06 0.014764269267285222 4.017435361942448e-05 0.018768489639800694 7.80556238447064e-05']
['59866.38311833709 0.03358827949649786 6.698330203189981e-05 0.014705228148554511 4.015054809236751e-05 0.0005200910553636735 1.4200351548331463e-06 0.014705228148554511 4.015054809236751e-05 0.018883051347943353 7.809500152515671e-05']
['59866.38314987506 0.03350826841773957 6.688993171281498e-05 0.014749646010363542 4.015723532669428e-05 0.0005216620158677802 1.4202716673661948e-06 0.014749646010363543 4.015723532669428e-05 0.01875862240737603 7.801837292348869e-05']
['59866.383181413024 0.0334530944566656 6.689768635451159e-05 0.014654829026030063 4.0110416081159836e-05 0.0005183085510353935 1.4186157752864973e-06 0.014654829026030063 4.0110416081159836e-05 0.018798265430635536 7.800093536484272e-05']
['59866.38321295098 0.033493504428534805 6.689605013920489e-05 0.01464700894876463 4.0116315486090804e-05 0.0005180319723793593 1.4188244240545116e-06 0.014647008948764632 4.0116315486090804e-05 0.018846495479770173 7.800256593476001e-05']
['59866.38324448895 0.03352151378054937 6.692983822994412e-05 0.014625466881942726 4.009557895777065e-05 0.0005172700776195544 1.4180910193912409e-06 0.014625466881942726 4.009557895777065e-05 0.018896046898606647 7.802088628979621e-05']
['59866.38327602691 0.03342159980162904 6.683875320256661e-05 0.014703640833289126 4.014608019543269e-05 0.0005200349155701777 1.4198771353037237e-06 0.014703640833289126 4.014608019543269e-05 0.01871795896833991 7.796875454136562e-05']
['59866.38330756487 0.03352217938136995 6.694659677277695e-05 0.014640322729604837 4.0102620474062324e-05 0.0005177954957504978 1.4183400620856148e-06 0.014640322729604839 4.0102620474062324e-05 0.01888185665176511 7.803888126019921e-05']
['59866.38333910284 0.03344371582390481 6.687683110323123e-05 0.014675635908283746 4.012118810812837e-05 0.0005190444439600612 1.4189967578063109e-06 0.014675635908283746 4.012118810812837e-05 0.018768079915621065 7.798859066310877e-05']
['59866.3833706408 0.03355769364807729 6.694938726592598e-05 0.014634570679731515 4.009238339547369e-05 0.0005175920586015532 1.4179779994944588e-06 0.014634570679731514 4.009238339547369e-05 0.01892312296834578 7.803601515718614e-05']
['59866.38340217876 0.033489101195405775 6.690126654900833e-05 0.01475938547061532 4.0171785608259136e-05 0.0005220064788104729 1.4207862783071784e-06 0.01475938547061532 4.0171785608259136e-05 0.018729715724790458 7.803558050541687e-05']
['59866.38343371672 0.033552178218616106 6.69582316784137e-05 0.014749309897623875 4.0176006960154515e-05 0.0005216501283113459 1.4209355780895518e-06 0.014749309897623877 4.0176006960154515e-05 0.01880286832099223 7.808659503885739e-05']
['59866.38346525469 0.033396942779012256 6.682730564218915e-05 0.014715280340834448 4.014334398730246e-05 0.0005204465789392873 1.4197803617372227e-06 0.014715280340834448 4.014334398730246e-05 0.018681662438177808 7.795753232290936e-05']
['59866.38349679265 0.03345554882901135 6.690962005568463e-05 0.014628195320885011 4.01020436762411e-05 0.0005173665764072408 1.4183196620357452e-06 0.014628195320885011 4.01020436762411e-05 0.018827353508126338 7.800686612733026e-05']
['59866.38352833061 0.03346518228622221 6.688103512468463e-05 0.01468787807988248 4.012767627607771e-05 0.0005194774222098651 1.419226229806477e-06 0.014687878079882479 4.012767627607771e-05 0.01877730420633973 7.799553360716875e-05']
['59866.38355986858 0.033432107158596014 6.68343026336057e-05 0.014629190505093766 4.009640917402752e-05 0.0005174017738485986 1.4181203822848223e-06 0.014629190505093764 4.009640917402752e-05 0.018802916653502248 7.793937411329033e-05']
['59866.38359140654 0.03351847577214747 6.691691317184079e-05 0.014714653764609375 4.0142343632651796e-05 0.0005204244183385219 1.4197449814288898e-06 0.014714653764609375 4.0142343632651796e-05 0.018803822007538093 7.803384535424088e-05']
['59866.3836229445 0.03347840549148188 6.688717089048502e-05 0.014796339551449314 4.019731240949942e-05 0.0005233134620620613 1.4216891042180042e-06 0.014796339551449315 4.019731240949942e-05 0.018682065940032563 7.803664238471465e-05']
['59866.383654482466 0.03347091706678015 6.692216601436254e-05 0.014695424138403553 4.0138431115536954e-05 0.0005197443094353073 1.4196066044424989e-06 0.014695424138403555 4.0138431115536954e-05 0.018775492928376592 7.803633741066149e-05']
['59866.383686020425 0.03354266067009864 6.694923109149117e-05 0.0147224653752131 4.013861948938357e-05 0.0005207006975476535 1.419613266804463e-06 0.0147224653752131 4.013861948938357e-05 0.018820195294885537 7.805964590142214e-05']
['59866.38371755839 0.033538546310322645 6.696403019415951e-05 0.01466768115290296 4.013674005553805e-05 0.0005187631020400747 1.4195467954296343e-06 0.01466768115290296 4.013674005553805e-05 0.018870865157419685 7.807137274398432e-05']
['59866.383749096356 0.0334008953382709 6.684895621798238e-05 0.014624066161473583 4.010396434153008e-05 0.0005172205372669867 1.4183875916745822e-06 0.014624066161473583 4.010396434153008e-05 0.018776829176797315 7.795582661572156e-05']
['59866.383780634314 0.03360958117068524 6.699629107256147e-05 0.014743122265298775 4.014729297593205e-05 0.0005214312855845515 1.419920028639581e-06 0.014743122265298775 4.014729297593205e-05 0.01886645890538647 7.810446946734037e-05']
['59866.38381217228 0.03346689303121504 6.686059314052111e-05 0.014730146194642255 4.016426284764384e-05 0.0005209723509652415 1.420520215076596e-06 0.014730146194642255 4.016426284764384e-05 0.01873674683657279 7.799683920004016e-05']
['59866.383843710246 0.03348201600058186 6.690858977820947e-05 0.014634631187991463 4.010478839804811e-05 0.0005175941986434796 1.418416736711967e-06 0.014634631187991465 4.010478839804811e-05 0.018847384812590393 7.800739348652108e-05']
['59866.383875248204 0.03349137953804229 6.69095334805848e-05 0.014691160776675455 4.013623388139997e-05 0.0005195935238590371 1.419528893181603e-06 0.014691160776675457 4.013623388139997e-05 0.018800218761366838 7.802437401717451e-05']
['59866.38390678617 0.03357933687124282 6.697213760772365e-05 0.014772524498313882 4.017434208314279e-05 0.0005224711768561723 1.4208766951104282e-06 0.01477252449831388 4.017434208314279e-05 0.018806812372928944 7.809766307362371e-05']
['59866.38393832413 0.0334710653393287 6.688077513445917e-05 0.01467741902999463 4.013931061701329e-05 0.0005191075089899327 1.4196377104441467e-06 0.014677419029994629 4.013931061701329e-05 0.01879364630933407 7.800129703662091e-05']
['59866.383969862094 0.03359331844466321 6.697165733944914e-05 0.014660623348223833 4.012189593655421e-05 0.0005185134832618391 1.4190217921158294e-06 0.014660623348223833 4.012189593655421e-05 0.01893269509643938 7.807028513036363e-05']
['59866.38400140006 0.033388509862780656 6.68384032006617e-05 0.014671765497156711 4.010703815338396e-05 0.0005189075561683578 1.4184963055302889e-06 0.014671765497156711 4.010703815338396e-05 0.018716744365623945 7.794835887849866e-05']
['59866.38403293802 0.033517887874805904 6.693095770537548e-05 0.014696824515548091 4.013899234416667e-05 0.0005197938376452509 1.41962645384486e-06 0.014696824515548091 4.013899234416667e-05 0.018821063359257813 7.804416573815004e-05']
['59866.384064475984 0.03348549756419737 6.691378472955803e-05 0.01469816121459794 4.01330340794978e-05 0.0005198411137032974 1.4194157233394598e-06 0.014698161214597938 4.01330340794978e-05 0.018787336349599434 7.802637381847093e-05']
['59866.38409601395 0.03462478991795037 6.784163094882544e-05 0.014700405195805259 4.014338793736909e-05 0.0005199204783035975 1.4197819161528568e-06 0.014700405195805259 4.014338793736909e-05 0.01992438472214511 7.882879223283039e-05']
['59866.38412755191 0.033334123835502924 6.678447901129701e-05 0.014608795799948157 4.0088494202883735e-05 0.0005166804587070819 1.417840447444386e-06 0.014608795799948157 4.0088494202883735e-05 0.018725328035554767 7.789257990505265e-05']
['59866.384159089874 0.033545172349557895 6.694523815207231e-05 0.014677777545171918 4.012275371727591e-05 0.000519120188870519 1.4190521299029288e-06 0.014677777545171916 4.012275371727591e-05 0.018867394804385977 7.804806389075168e-05']
['59866.38419062783 0.03347615607255794 6.688867600689522e-05 0.014618730658296485 4.008579649380748e-05 0.0005170318324437607 1.4177450355033838e-06 0.014618730658296487 4.008579649380748e-05 0.018857425414261452 7.798054923183312e-05']
['59866.3842221658 0.03342878330022391 6.685951378218487e-05 0.014694313664232872 4.013042702195485e-05 0.000519705034445654 1.4193235175405963e-06 0.014694313664232872 4.013042702195485e-05 0.01873446963599104 7.797849547249942e-05']
['59866.38425370376 0.0335536407831298 6.694552883555628e-05 0.014736022033333676 4.014201910464503e-05 0.0005211801662480304 1.4197335035985677e-06 0.014736022033333674 4.014201910464503e-05 0.018817618749796126 7.805821884254076e-05']
['59866.38428524172 0.033572220042449884 6.697344349119438e-05 0.014713949288199045 4.0142173166300136e-05 0.0005203995025823007 1.4197389524150015e-06 0.014713949288199047 4.0142173166300136e-05 0.01885827075425084 7.808223997543509e-05']
['59866.38431677969 0.03332540375887283 6.678822825746353e-05 0.014591058117916474 4.007306288198996e-05 0.0005160531165350076 1.4172946761113458e-06 0.014591058117916476 4.007306288198996e-05 0.018734345640956353 7.788785401148868e-05']
['59866.38434831765 0.03354844769149238 6.697566316994602e-05 0.014638132436523574 4.0098646625449306e-05 0.0005177180299792304 1.4181995159412013e-06 0.014638132436523574 4.0098646625449306e-05 0.018910315254968807 7.806177629446259e-05']
['59866.38437985561 0.03346030954236599 6.686314757334692e-05 0.014643870714438494 4.0111954721495284e-05 0.0005179209800447847 1.4186701935565032e-06 0.014643870714438494 4.0111954721495284e-05 0.0188164388279275 7.79721066471495e-05']
['59866.38441139358 0.033477212190516956 6.688116905410405e-05 0.014716109699819038 4.0137173668930445e-05 0.000520475911513064 1.4195621313662544e-06 0.014716109699819038 4.0137173668930445e-05 0.018761102490697918 7.800053515312269e-05']
['59866.384442931536 0.033451689853653946 6.68635896814857e-05 0.014681094540461733 4.012610969485922e-05 0.0005192375035808716 1.4191708233298821e-06 0.014681094540461731 4.012610969485922e-05 0.018770595313192216 7.79797685578635e-05']
['59866.3844744695 0.03358818838274505 6.697792987852221e-05 0.014695178153390323 4.013301631384399e-05 0.0005197356094951334 1.4194150950079883e-06 0.014695178153390321 4.013301631384399e-05 0.018893010229354728 7.808138119461967e-05']
['59866.38450600747 0.033442655642960416 6.689475180468764e-05 0.01470793497261996 4.0129519253336226e-05 0.0005201867896814726 1.419291411793299e-06 0.01470793497261996 4.0129519253336226e-05 0.018734720670340457 7.800824401635152e-05']
['59866.384537545426 0.033414335474333735 6.684438075932228e-05 0.014642990799812456 4.0101874220729676e-05 0.0005178898594309552 1.418313668773017e-06 0.014642990799812456 4.0101874220729676e-05 0.01877134467452128 7.795082780261206e-05']
['59866.38456908339 0.03353883491690254 6.695366973671771e-05 0.014725316749914445 4.015379213147868e-05 0.0005208015442983926 1.4201498892465078e-06 0.014725316749914443 4.015379213147868e-05 0.01881351816698809 7.807125536169806e-05']
['59866.38460062136 0.033443649427912885 6.684607327682165e-05 0.014654930644336334 4.010543370556153e-05 0.0005183121450477828 1.4184395597965393e-06 0.014654930644336334 4.010543370556153e-05 0.01878871878357655 7.79541103806682e-05']
['59866.384632159316 0.0334139971095046 6.685521759379106e-05 0.014627726904290095 4.0106599184686675e-05 0.0005173500095591281 1.4184807801885032e-06 0.014627726904290095 4.0106599184686675e-05 0.018786270205214506 7.79625513799687e-05']
['59866.38466369728 0.03343518695859771 6.68563871797285e-05 0.01475734897963936 4.01654448105784e-05 0.0005219344526759427 1.4205620184640596e-06 0.01475734897963936 4.01654448105784e-05 0.018677837978958348 7.79938424720656e-05']
['59866.38469523524 0.033472735059780497 6.690987027469497e-05 0.014646835103644557 4.01178049699039e-05 0.0005180258238659832 1.4188771037681803e-06 0.014646835103644557 4.01178049699039e-05 0.01882589995613594 7.80151845205775e-05']
['59866.384726773205 0.03354010530536023 6.691930725008228e-05 0.01465449576624987 4.011900952954416e-05 0.0005182967643817598 1.418919706350624e-06 0.014654495766249869 4.011900952954416e-05 0.01888560953911036 7.80238976754082e-05']
['59866.38475831117 0.033465171295894956 6.690855500617202e-05 0.014635495563390185 4.010087744758757e-05 0.0005176247696695671 1.4182784151346376e-06 0.014635495563390185 4.010087744758757e-05 0.01882967573250477 7.800535305400767e-05']
['59866.38478984913 0.03357766734892861 6.696665216715812e-05 0.014666518948396311 4.0119424822276824e-05 0.0005187219974640488 1.4189343943264536e-06 0.014666518948396313 4.0119424822276824e-05 0.018911148400532294 7.806472154915731e-05']
['59866.384821387095 0.033471224899528154 6.688758264081137e-05 0.014703519075210404 4.015213649297304e-05 0.0005200306092590465 1.4200913330126976e-06 0.014703519075210404 4.015213649297304e-05 0.01876770582431775 7.801373453746276e-05']
['59866.38485292506 0.03345688106572365 6.685700079260257e-05 0.014787094500630059 4.018569473558835e-05 0.0005229864852760568 1.4212782130557427e-06 0.014787094500630059 4.018569473558835e-05 0.01866978656509359 7.800479867523506e-05']
['59866.38488446302 0.033572552957237975 6.697231098882917e-05 0.014641553143710998 4.010755080610817e-05 0.0005178390127476189 1.4185144369114326e-06 0.014641553143710998 4.010755080610817e-05 0.01893099981352698 7.806347462705587e-05']
['59866.384916000985 0.0334827167520539 6.688299403958402e-05 0.014680558776794026 4.011734347033714e-05 0.0005192185548173062 1.418860781559895e-06 0.014680558776794028 4.011734347033714e-05 0.018802157975259873 7.799189790494929e-05']
['59866.38494753894 0.03356427209313968 6.69484330593673e-05 0.01477500054780319 4.0160501825621424e-05 0.0005225587491929643 1.4203871961330527e-06 0.01477500054780319 4.0160501825621424e-05 0.018789271545336494 7.807021580596742e-05']
['59866.38497907691 0.03338726977651101 6.684719489644145e-05 0.014671625738808883 4.013061513707723e-05 0.0005189026132279367 1.4193301707520624e-06 0.014671625738808885 4.013061513707723e-05 0.01871564403770213 7.796803022266909e-05']
['59866.385010614875 0.03340550529721095 6.683252334199802e-05 0.014573530423611116 4.006437077932097e-05 0.0005154332011595183 1.4169872558656497e-06 0.014573530423611116 4.006437077932097e-05 0.018831974873599836 7.792137051028825e-05']
['59866.38504215283 0.03355953138227181 6.695142753269385e-05 0.0147636053210823 4.0176666678545644e-05 0.0005221557254906793 1.4209589108546622e-06 0.0147636053210823 4.0176666678545644e-05 0.01879592606118951 7.808110010792956e-05']
['59866.3850736908 0.03352518276385063 6.693429788951058e-05 0.01465348815576068 4.012147880043955e-05 0.000518261127450634 1.419007038943698e-06 0.014653488155760678 4.012147880043955e-05 0.01887169460808995 7.803802467448712e-05']
['59866.385105228765 0.033448078458257265 6.68874502222554e-05 0.014667123519700386 4.011150129945397e-05 0.0005187433797999366 1.4186541570322405e-06 0.014667123519700388 4.011150129945397e-05 0.018780954938556877 7.799271461957708e-05']
['59866.38513676672 0.03348203962231085 6.68808864885844e-05 0.014658329155850434 4.0100334758755484e-05 0.0005184323428048102 1.4182592214434849e-06 0.014658329155850434 4.0100334758755484e-05 0.018823710466460412 7.798134280238553e-05']
['59866.38516830469 0.03345762948167423 6.690501740599177e-05 0.014692503030241149 4.0146560671077346e-05 0.0005196409963678956 1.4198941286534754e-06 0.014692503030241149 4.0146560671077346e-05 0.018765126451433082 7.802581423998442e-05']
['59866.38519984265 0.033549743784947635 6.696158680983287e-05 0.01465587859560044 4.011693274142117e-05 0.0005183456719654477 1.418846254996062e-06 0.014655878595600438 4.011693274142117e-05 0.018893865189347197 7.805909556656735e-05']
['59866.38523138061 0.033475257267140394 6.69116513298479e-05 0.014656584988258649 4.011863864694163e-05 0.000518370655495074 1.4189065890618463e-06 0.01465658498825865 4.011863864694163e-05 0.018818672278881746 7.801714074849844e-05']
['59866.38526291858 0.03337448009216135 6.682579348313647e-05 0.014681450334598294 4.012647494402843e-05 0.0005192500872243287 1.4191837413767131e-06 0.014681450334598294 4.012647494402843e-05 0.01869302975756306 7.79475507382018e-05']
['59866.38529445654 0.03349527805787809 6.690644361489806e-05 0.014693107824835325 4.015181089272937e-05 0.0005196623866010552 1.4200798172597525e-06 0.014693107824835324 4.015181089272937e-05 0.018802170233042766 7.80297386587898e-05']
['59866.3853259945 0.03339352942942233 6.67992762935236e-05 0.014630716523349747 4.0103339241865196e-05 0.0005174557457038627 1.4183654832964508e-06 0.01463071652334975 4.0103339241865196e-05 0.018762812906072582 7.79129073497237e-05']
['59866.38535753247 0.033418758146812326 6.682447990339322e-05 0.014674231025067474 4.013781205530097e-05 0.0005189947563804309 1.4195847096654704e-06 0.014674231025067475 4.013781205530097e-05 0.01874452712174485 7.79522614870516e-05']
['59866.38538907043 0.033468780906434015 6.688969180189775e-05 0.014709813167670073 4.0145722234463895e-05 0.0005202532172428763 1.419864475024253e-06 0.014709813167670073 4.0145722234463895e-05 0.01875896773876394 7.801224187958962e-05']
['59866.38542060839 0.03354418672325994 6.696549655555436e-05 0.01471741889049142 4.013398517440122e-05 0.0005205222146612772 1.4194493614406218e-06 0.01471741889049142 4.013398517440122e-05 0.018826767832768522 7.80712142528283e-05']
['59866.38545214635 0.03351217495916134 6.690454442026146e-05 0.014747973308485826 4.0165923371466676e-05 0.000521602856140634 1.4205789440931574e-06 0.014747973308485825 4.0165923371466676e-05 0.018764201650675515 7.803537316092793e-05']
['59866.38548368432 0.03343698165984653 6.688393195182968e-05 0.014683449395061127 4.013968406307684e-05 0.000519320789525262 1.4196509183968116e-06 0.014683449395061129 4.013968406307684e-05 0.0187535322647854 7.800419597701528e-05']
['59866.38551522228 0.03355599280610817 6.696382274633814e-05 0.01471184934691751 4.015002581078719e-05 0.0005203252323522653 1.4200166829008809e-06 0.014711849346917511 4.015002581078719e-05 0.018844143459190662 7.807802590620406e-05']
['59866.38554676024 0.033360498050674675 6.682485325678479e-05 0.014621439076373593 4.009208875995899e-05 0.0005171276231381897 1.4179675788947757e-06 0.014621439076373591 4.009208875995899e-05 0.018739058974301084 7.792904846029657e-05']
['59866.38557829821 0.033470788425052383 6.688653884942632e-05 0.014720839684428883 4.013884555749119e-05 0.0005206432004978208 1.419621262328197e-06 0.014720839684428885 4.013884555749119e-05 0.0187499487406235 7.800599978170877e-05']
['59866.38560983617 0.03352900081507987 6.690673699526528e-05 0.014641696667286595 4.011376144382133e-05 0.0005178440888557315 1.418734093287389e-06 0.014641696667286597 4.011376144382133e-05 0.01888730414779327 7.801041797430269e-05']
['59866.38564137413 0.033418167774526455 6.687278451274851e-05 0.014645284054443104 4.011803118868086e-05 0.0005179709667221188 1.4188851046207522e-06 0.014645284054443104 4.011803118868086e-05 0.01877288372008335 7.798349655500495e-05']
['59866.385672912096 0.033517340499378115 6.693342090861016e-05 0.014746352713322308 4.016358549007761e-05 0.0005215455393115174 1.4204962584532835e-06 0.014746352713322308 4.016358549007761e-05 0.018770987786055807 7.805892923905595e-05']
['59866.385704450055 0.03354955124614481 6.694817811907339e-05 0.014639692959173885 4.010036939097832e-05 0.000517773222177809 1.418260446307808e-06 0.014639692959173885 4.010036939097832e-05 0.018909858286970924 7.80390810988705e-05']
['59866.38573598802 0.033485079347959655 6.691970672208153e-05 0.014635011718867849 4.010154753288813e-05 0.0005176076571701409 1.4183021145541659e-06 0.01463501171886785 4.010154753288813e-05 0.018850067629091805 7.80152630086055e-05']
['59866.385767525986 0.0335057237620574 6.6903374112027e-05 0.01470091859069663 4.0127127640794985e-05 0.0005199386359335353 1.4192068258026548e-06 0.014700918590696633 4.0127127640794985e-05 0.018804805171360767 7.801440790183885e-05']
['59866.385799063944 0.03351874502313177 6.691310031294032e-05 0.014742000795126777 4.015878836611222e-05 0.0005213916216909063 1.4203265948995686e-06 0.014742000795126779 4.015878836611222e-05 0.01877674422800499 7.803903687593667e-05']
['59866.38583060191 0.03343724423245399 6.688182644193932e-05 0.014642272373456519 4.010326526779226e-05 0.0005178644502963341 1.4183628669988134e-06 0.014642272373456519 4.010326526779226e-05 0.01879497185899747 7.798365593730911e-05']
['59866.385862139876 0.033463188784762656 6.687983988895264e-05 0.014645622219839175 4.011117511750167e-05 0.0005179829268764227 1.4186426207055616e-06 0.014645622219839177 4.011117511750167e-05 0.018817566564923477 7.798602024003292e-05']
['59866.385893677834 0.03356543983206281 6.694146011512677e-05 0.01472746699889583 4.014813008572169e-05 0.0005208775937993405 1.4199496353420104e-06 0.014727466998895829 4.014813008572169e-05 0.01883797283316698 7.805787232384149e-05']
['59866.3859252158 0.03344113637355505 6.685755072128668e-05 0.014706417026876669 4.013534035912125e-05 0.0005201331033329416 1.4194972912955096e-06 0.01470641702687667 4.013534035912125e-05 0.01873471934667838 7.797934107308119e-05']
['59866.38595675376 0.033534059215101136 6.692880299479306e-05 0.014668751738114692 4.0111480064962286e-05 0.0005188009662463966 1.418653406015726e-06 0.014668751738114693 4.0111480064962286e-05 0.01886530747698644 7.80281712160274e-05']
['59866.385988291724 0.033398016791531725 6.682237909715303e-05 0.014633882034230345 4.0100756474905455e-05 0.0005175677027492089 1.418274136601229e-06 0.014633882034230343 4.0100756474905455e-05 0.018764134757301383 7.79313866042643e-05']
['59866.38601982969 0.033442675709676406 6.688636535324283e-05 0.014732554096746302 4.016168525557335e-05 0.0005210575130813171 1.420429051405642e-06 0.0147325540967463 4.016168525557335e-05 0.018710121612930106 7.801760591517289e-05']
['59866.38605136765 0.033472642995391835 6.689170170715364e-05 0.014696337527843883 4.013509613788552e-05 0.0005197766139785065 1.4194886537362041e-06 0.014696337527843883 4.013509613788552e-05 0.018776305467547952 7.800849760940236e-05']
['59866.386082905614 0.03337635621429319 6.682371916301773e-05 0.01468937331886025 4.014459568426603e-05 0.0005195303054708464 1.419824631461446e-06 0.014689373318860248 4.014459568426603e-05 0.01868698289543294 7.795510249772657e-05']
['59866.38611444358 0.0334289637595856 6.683979835525003e-05 0.01469694632476419 4.011754041544695e-05 0.0005197981457649967 1.4188677470682826e-06 0.01469694632476419 4.011754041544695e-05 0.01873201743482141 7.795495938781255e-05']
['59866.38614598154 0.0334699937502392 6.685826678446028e-05 0.014662204970583572 4.01011529563823e-05 0.0005185694217099852 1.4182881592649813e-06 0.01466220497058357 4.01011529563823e-05 0.01880778877965563 7.796236467586929e-05']
['59866.386177519504 0.03355412271497208 6.692032057829696e-05 0.014750054479097595 4.013935577955482e-05 0.0005216764624940297 1.4196393077423084e-06 0.014750054479097595 4.013935577955482e-05 0.018804068235874487 7.803523043279693e-05']
['59866.38620905746 0.033413031349852074 6.68301426672823e-05 0.01465434175114222 4.0104394478030354e-05 0.0005182913172116058 1.4184028046412984e-06 0.01465434175114222 4.0104394478030354e-05 0.018758689598709855 7.79399154822404e-05']
['59866.38624059543 0.0335271255582297 6.689761916687823e-05 0.014691060149901182 4.01313193535184e-05 0.0005195899649149187 1.4193550773137553e-06 0.014691060149901182 4.01313193535184e-05 0.018836065408328523 7.801162889756087e-05']
['59866.38627213339 0.03349147924584429 6.687218295159022e-05 0.014677513117072381 4.010704189066752e-05 0.0005191108366396005 1.4184964377096558e-06 0.014677513117072381 4.010704189066752e-05 0.018813966128771904 7.797732787118774e-05']
['59866.38630367135 0.03348626847128832 6.687112373988709e-05 0.014723415797701521 4.012801575280435e-05 0.0005207343118669997 1.4192382363396125e-06 0.014723415797701521 4.012801575280435e-05 0.0187628526735868 7.798720945445223e-05']
['59866.38633520932 0.03357425948033016 6.691968234033797e-05 0.01473934987587452 4.014230148591207e-05 0.0005212978646014098 1.4197434907928982e-06 0.014739349875874521 4.014230148591207e-05 0.01883490960445564 7.80361983512626e-05']
['59866.38636674728 0.03363553613383621 6.696784912506622e-05 0.014704487783728796 4.0102914364906026e-05 0.0005200648703144059 1.418350456347949e-06 0.014704487783728796 4.0102914364906026e-05 0.01893104835010741 7.805726460103901e-05']
['59866.38639828524 0.033450096454570914 6.683866887609388e-05 0.014616828887469645 4.007059996236357e-05 0.000516964571059823 1.4172075681484617e-06 0.014616828887469646 4.007059996236357e-05 0.01883326756710127 7.792984433753151e-05']
['59866.38642982321 0.03343233767597176 6.684117737406715e-05 0.01463338437549499 4.009651866792601e-05 0.0005175501016719412 1.4181242548393073e-06 0.01463338437549499 4.009651866792601e-05 0.01879895330047677 7.794532572283502e-05']
['59866.386461361166 0.033472917310133854 6.68750981721529e-05 0.014683427453817932 4.010966314243689e-05 0.0005193200135125259 1.4185891455265855e-06 0.014683427453817932 4.010966314243689e-05 0.01878948985631592 7.798117614485465e-05']
['59866.38649289913 0.033495170026119944 6.687463781035258e-05 0.0147892943311283 4.016995598772458e-05 0.0005230642883644477 1.4207215687178324e-06 0.014789294331128298 4.016995598772458e-05 0.018705875694991644 7.801181030024602e-05']
['59866.3865244371 0.03342610006323633 6.684512702317926e-05 0.014724489970836635 4.0131818765000486e-05 0.000520772302970153 1.4193727403817579e-06 0.014724489970836634 4.0131818765000486e-05 0.0187016100923997 7.796687683966708e-05']
['59866.386555975056 0.03356287655375822 6.69068519325372e-05 0.014738064417487517 4.0143559849505146e-05 0.0005212524008110919 1.419787996300908e-06 0.014738064417487519 4.0143559849505146e-05 0.0188248121362707 7.802584336560073e-05']
['59866.38658751302 0.033479378021975835 6.6860712799983e-05 0.01464776355316869 4.008500241301216e-05 0.0005180586610506893 1.4177169506403195e-06 0.01464776355316869 4.008500241301216e-05 0.018831614468807142 7.795615648922797e-05']
['59866.38661905099 0.033425715431009265 6.684656099423284e-05 0.01475169007883353 4.01379943374087e-05 0.0005217343100013394 1.4195911565762444e-06 0.01475169007883353 4.01379943374087e-05 0.018674025352175737 7.79712851387326e-05']
['59866.386650588945 0.03344230057876274 6.683332502958749e-05 0.014622840797331874 4.007868651998124e-05 0.0005171771988758222 1.4174935716190062e-06 0.014622840797331876 4.007868651998124e-05 0.018819459781430865 7.792941965443739e-05']
['59866.38668212691 0.03336233089939935 6.680417729337676e-05 0.014702182267579196 4.012187872622549e-05 0.0005199833293607199 1.4190211834249653e-06 0.014702182267579194 4.012187872622549e-05 0.018660148631820153 7.792665305508032e-05']
['59866.38671366487 0.03347291834980077 6.689086876771504e-05 0.014653785514355002 4.008087065531201e-05 0.000518271644359558 1.4175708196044003e-06 0.014653785514355002 4.008087065531201e-05 0.018819132835445767 7.797989815963809e-05']
['59866.386745202835 0.03348375377227102 6.687867309048014e-05 0.014725189977889814 4.0124000695269774e-05 0.0005207970606552002 1.41909623272774e-06 0.014725189977889814 4.0124000695269774e-05 0.01875856379438121 7.799161715298204e-05']
['59866.3867767408 0.033337678533920244 6.67667938105613e-05 0.014633006015959259 4.009607567610636e-05 0.0005175367199407462 1.418108587208675e-06 0.014633006015959259 4.009607567610636e-05 0.018704672517960985 7.788132022742073e-05']
['59866.38680827876 0.03343724431903388 6.685061658179117e-05 0.014683706613601105 4.011214333930851e-05 0.0005193298867701714 1.418676864547021e-06 0.014683706613601107 4.011214333930851e-05 0.018753537705432775 7.796145830241302e-05']
['59866.386839816725 0.03348585003953033 6.685481165403457e-05 0.014681333061381805 4.010866747127622e-05 0.0005192459395327517 1.4185539308628267e-06 0.014681333061381805 4.010866747127622e-05 0.01880451697814852 7.796326729696394e-05']
['59866.38687135469 0.033367586410170055 6.676942130770052e-05 0.014718737917620085 4.0130371848272955e-05 0.0005205688657029659 1.4193215661707735e-06 0.014718737917620085 4.0130371848272955e-05 0.01864884849254997 7.790123469140826e-05']
['59866.38690289265 0.03345551912362949 6.686395147922877e-05 0.014734747653422385 4.013002532710108e-05 0.0005211350942786396 1.4193093104913534e-06 0.014734747653422387 4.013002532710108e-05 0.018720771470207107 7.798209371497045e-05']
['59866.386934430615 0.033406936833243556 6.682559997685615e-05 0.014683750200899372 4.0107367163313554e-05 0.0005193314283554992 1.4185079418762045e-06 0.014683750200899372 4.0107367163313554e-05 0.018723186632344183 7.793755008363836e-05']
['59866.38696596857 0.0335875555818033 6.694852070071323e-05 0.01468843811078124 4.010219891712339e-05 0.0005194972292511589 1.418325152558809e-06 0.014688438110781242 4.010219891712339e-05 0.018899117471022055 7.804031510701606e-05']
['59866.38699750654 0.03348597583128883 6.686270505646015e-05 0.014758576866061525 4.014499133235585e-05 0.00052197788027453 1.4198386246501616e-06 0.014758576866061524 4.014499133235585e-05 0.018727398965227307 7.798872775306767e-05']
['59866.387029044505 0.03349660634787254 6.691149551421755e-05 0.014700403318949642 4.011417256428915e-05 0.0005199204119234088 1.4187486336995353e-06 0.014700403318949642 4.011417256428915e-05 0.0187962030289229 7.801471061579811e-05']
['59866.38706058246 0.03337656121920326 6.680377709149246e-05 0.014694539615385756 4.011595090719208e-05 0.0005197130258329603 1.4188115297136497e-06 0.014694539615385754 4.011595090719208e-05 0.018682021603817503 7.792325808690277e-05']
['59866.38709212043 0.033596365344809254 6.696040858443805e-05 0.014688326713992849 4.009927414007377e-05 0.0005194932893957106 1.4182217097310558e-06 0.014688326713992847 4.009927414007377e-05 0.018908038630816408 7.804901091209084e-05']
['59866.387123658395 0.03349217239949723 6.687502793141608e-05 0.01471618062992532 4.0120231807995395e-05 0.0005204784201524038 1.4189629356078126e-06 0.01471618062992532 4.0120231807995395e-05 0.018775991769571905 7.798655243793616e-05']
['59866.38715519635 0.033450394892274755 6.684416384454984e-05 0.014716617017252388 4.015161096407847e-05 0.0005204938541968939 1.4200727462301846e-06 0.014716617017252388 4.015161096407847e-05 0.018733777875022367 7.79762406319241e-05']
['59866.38718673432 0.03355195419221884 6.694266261299595e-05 0.014735724790437178 4.013429334389305e-05 0.0005211696534310801 1.4194602607068295e-06 0.014735724790437178 4.013429334389305e-05 0.01881622940178166 7.805178780739788e-05']
['59866.38721827228 0.03351663987874444 6.689370839280031e-05 0.014701094774575658 4.0118808512848344e-05 0.0005199448671635886 1.4189125968393387e-06 0.014701094774575657 4.0118808512848344e-05 0.01881554510416878 7.800183984388827e-05']
['59866.38724981024 0.033434241716625034 6.685733301273051e-05 0.014663569699728254 4.010326163589158e-05 0.0005186176891298425 1.418362738546603e-06 0.014663569699728254 4.010326163589158e-05 0.018770672016896778 7.796264856591211e-05']
['59866.38728134821 0.033476131286804704 6.685717876313488e-05 0.014656374569134748 4.0081596372415506e-05 0.0005183632134409206 1.4175964865964687e-06 0.014656374569134748 4.0081596372415506e-05 0.018819756717669958 7.79513740733735e-05']
['59866.38731288617 0.03343088528382587 6.683677752710648e-05 0.014640902923639315 4.008716895677227e-05 0.0005178160159168398 1.4177935764511742e-06 0.014640902923639315 4.008716895677227e-05 0.018789982360186558 7.793674322921592e-05']
['59866.38734442413 0.0335349735833284 6.693232913274469e-05 0.014704790131283464 4.011876036086141e-05 0.0005200755636717076 1.4189108938111743e-06 0.014704790131283464 4.011876036086141e-05 0.018830183452044937 7.803493843161721e-05']
['59866.3873759621 0.033503414676808056 6.689166697723495e-05 0.014689705156675045 4.010768222464309e-05 0.0005195420418327418 1.4185190848913097e-06 0.014689705156675044 4.010768222464309e-05 0.01881370952013301 7.799436700445909e-05']
['59866.38740750006 0.0334947034170792 6.688290801894573e-05 0.014664590217463223 4.010082835912199e-05 0.0005186537825614054 1.4182766789853163e-06 0.014664590217463223 4.010082835912199e-05 0.018830113199615976 7.798333039924953e-05']
['59866.38743903802 0.03338178447000351 6.679168975107824e-05 0.014646093490996527 4.007772599547153e-05 0.0005179995946840291 1.4174596000137435e-06 0.014646093490996527 4.007772599547153e-05 0.018735690979006986 7.789322140451237e-05']
['59866.38747057598 0.03343766697072755 6.683248010443337e-05 0.014624095371877855 4.008664620313504e-05 0.0005172215703737044 1.4177750878233109e-06 0.014624095371877855 4.008664620313504e-05 0.018813571598849697 7.793278899619084e-05']
['59866.38750211395 0.03344075673777781 6.683072413591656e-05 0.014631909994797599 4.007797033288806e-05 0.0005174979561217214 1.417468241682104e-06 0.014631909994797597 4.007797033288806e-05 0.018808846742980216 7.792682076496408e-05']
['59866.38753365191 0.03347005635351628 6.688159019025135e-05 0.014720850359271134 4.0136012424645585e-05 0.0005206435780431343 1.4195210607511273e-06 0.014720850359271133 4.0136012424645585e-05 0.018749205994245143 7.800029871563334e-05']
['59866.38756518987 0.03343713328682069 6.684086883710242e-05 0.014691537334122904 4.010982671950933e-05 0.000519606841854397 1.4185949308820646e-06 0.014691537334122904 4.010982671950933e-05 0.01874559595269779 7.795190790716924e-05']
['59866.387596727836 0.03342375699582094 6.68338448820328e-05 0.01468716410723509 4.010229850458511e-05 0.0005194521705929618 1.418328674744765e-06 0.014687164107235088 4.010229850458511e-05 0.01873659288858585 7.794201156671844e-05']
['59866.3876282658 0.033492301329160944 6.6883646177156e-05 0.014693777483879239 4.012903170624958e-05 0.0005196860709448385 1.419274168342448e-06 0.014693777483879239 4.012903170624958e-05 0.018798523845281703 7.799846993135301e-05']
['59866.38765980376 0.033564395599298906 6.691495543190455e-05 0.014661461691445107 4.009571392358482e-05 0.0005185431335879888 1.4180957928304574e-06 0.014661461691445105 4.009571392358482e-05 0.018902933907853803 7.800818890024128e-05']
['59866.387691341726 0.03353398864728886 6.689221112893941e-05 0.014664638306080086 4.0092765769676756e-05 0.0005186554833483121 1.4179915232154654e-06 0.014664638306080086 4.0092765769676756e-05 0.018869350341208777 7.798716417963131e-05']
['59866.387722879685 0.03347399536066977 6.687845775853082e-05 0.014624268555466719 4.008039675028956e-05 0.0005172276954902 1.4175540586428715e-06 0.014624268555466719 4.008039675028956e-05 0.018849726805203054 7.796900868819747e-05']
['59866.38775441765 0.0335347641804732 6.690328213662275e-05 0.014658022289797646 4.011102716650745e-05 0.0005184214896383284 1.4186373880095469e-06 0.014658022289797646 4.011102716650745e-05 0.018876741890675557 7.800604887446128e-05']
['59866.387785955616 0.03344244379251731 6.684412051668853e-05 0.014638193914813575 4.0083424221916956e-05 0.0005177202043289518 1.4176611335483316e-06 0.014638193914813575 4.0083424221916956e-05 0.018804249877703738 7.79411145994445e-05']
['59866.387817493574 0.03351631949070275 6.6885924142838e-05 0.014746158921302904 4.0138519941935956e-05 0.0005215386853208907 1.4196097460337163e-06 0.014746158921302903 4.0138519941935956e-05 0.018770160569399848 7.8005305150167e-05']
['59866.38784903154 0.033390208538104545 6.680708972465674e-05 0.014633671181341045 4.008367971477839e-05 0.0005175602453537429 1.4176701697598475e-06 0.014633671181341045 4.008367971477839e-05 0.018756537356763497 7.79094899030617e-05']
['59866.387880569506 0.03339232322859849 6.679780643323405e-05 0.01464483345443169 4.008609036781747e-05 0.0005179550300067468 1.4177554291703474e-06 0.01464483345443169 4.008609036781747e-05 0.0187474897741668 7.79027700744244e-05']
['59866.387912107464 0.03343570068908362 6.684220536687525e-05 0.014665863403508964 4.011061036998778e-05 0.0005186988123064399 1.4186226468481316e-06 0.014665863403508964 4.011061036998778e-05 0.01876983728557466 7.795345715592412e-05']
['59866.38794364543 0.03348644477910638 6.686771873344935e-05 0.014743659470591744 4.0137645540341314e-05 0.0005214502853351806 1.4195788204034864e-06 0.014743659470591744 4.0137645540341314e-05 0.018742785308514635 7.798924540048951e-05']
['59866.38797518339 0.03337994233853593 6.679563102217047e-05 0.014653380944545477 4.009685513843122e-05 0.0005182573356295553 1.4181361550491095e-06 0.014653380944545477 4.009685513843122e-05 0.018726561393990454 7.790644463484572e-05']
['59866.388006721354 0.03348086616512656 6.688640582045266e-05 0.014699913641240993 4.011538283869575e-05 0.0005199030931172192 1.4187914384004926e-06 0.014699913641240993 4.011538283869575e-05 0.01878095252388557 7.799381529245387e-05']
['59866.38803825932 0.03346946392528175 6.688742940106025e-05 0.014606683322386087 4.006419186336669e-05 0.000516605745096821 1.4169809280082003e-06 0.014606683322386087 4.006419186336669e-05 0.018862780602895667 7.796837616332969e-05']
['59866.38806979728 0.033543754588918916 6.691702260699025e-05 0.01463325478907346 4.008992867060058e-05 0.0005175455184898203 1.4178911813616842e-06 0.01463325478907346 4.008992867060058e-05 0.018910499799845458 7.800698875997129e-05']
['59866.388101335244 0.033455372083864066 6.685764165032417e-05 0.014609742363241873 4.005598478103674e-05 0.0005167139365353362 1.4166906618479397e-06 0.014609742363241873 4.005598478103674e-05 0.018845629720622193 7.793860509286657e-05']
['59866.38813287321 0.033488479085886945 6.687708642969216e-05 0.014571968665751894 4.004669889049529e-05 0.0005153779652743611 1.4163622406522325e-06 0.014571968665751896 4.004669889049529e-05 0.01891651042013505 7.795051495243961e-05']
['59866.38816441117 0.03340532712284581 6.6811984389737e-05 0.014617579880466604 4.005710863260175e-05 0.0005169911320037548 1.4167304099661334e-06 0.014617579880466603 4.005710863260175e-05 0.018787747242379207 7.790002060396723e-05']
['59866.388195949134 0.03346925796942261 6.68337411679107e-05 0.01474713449146539 4.0140631018576156e-05 0.0005215731890572669 1.4196844100965015e-06 0.01474713449146539 4.0140631018576156e-05 0.018722123477957216 7.796165222126042e-05']
['59866.38822748709 0.03343649947337544 6.68299878854331e-05 0.01471946084068771 4.013080829964009e-05 0.0005205944338762298 1.4193370024802176e-06 0.014719460840687709 4.013080829964009e-05 0.018717038632687727 7.795337744799513e-05']
['59866.38825902506 0.033509822624962625 6.686428835624627e-05 0.014716617119699566 4.0130440161287955e-05 0.0005204938578202216 1.4193239822494434e-06 0.014716617119699566 4.0130440161287955e-05 0.01879320550526306 7.798259603864162e-05']
['59866.38829056302 0.03350939750272648 6.687356177912004e-05 0.014643893561634504 4.008371018973614e-05 0.0005179217880990471 1.4176712475909956e-06 0.014643893561634504 4.008371018973614e-05 0.018865503941091977 7.796651260381307e-05']
['59866.38832210098 0.03344962556912252 6.684768557858009e-05 0.014620715305249355 4.007323674220725e-05 0.0005171020249710587 1.4173008251586767e-06 0.014620715305249355 4.007323674220725e-05 0.018828910263873164 7.793893359682113e-05']
['59866.38835363895 0.03331658999978524 6.676549964591766e-05 0.014623390590299627 4.009190479708737e-05 0.0005171966438243767 1.4179610725391393e-06 0.014623390590299627 4.009190479708737e-05 0.018693199409485613 7.787806349176736e-05']
['59866.38838517691 0.03350553485979358 6.68575472933876e-05 0.014629251924958939 4.009258982837e-05 0.0005174039461319645 1.4179853005646509e-06 0.014629251924958939 4.009258982837e-05 0.01887628293483464 7.795734339517655e-05']
['59866.38841671487 0.03331173918096383 6.674133090545823e-05 0.014592424173978921 4.0064959385231694e-05 0.0005161014308849807 1.4170080735412552e-06 0.014592424173978923 4.0064959385231694e-05 0.018719315006984906 7.784347256881684e-05']
['59866.38844825284 0.033501238834188436 6.687199754237367e-05 0.014678545203656803 4.011976042039466e-05 0.0005191473392355137 1.418946263681864e-06 0.014678545203656801 4.011976042039466e-05 0.018822693630531635 7.798371132164138e-05']
['59866.388479790796 0.033556702211637 6.692841683351715e-05 0.014690827605434663 4.011634108745832e-05 0.0005195817403368442 1.4188253295176648e-06 0.014690827605434663 4.011634108745832e-05 0.018865874606202336 7.803033898482255e-05']
['59866.38851132876 0.03349414616973629 6.689822929573197e-05 0.014625972035022765 4.0069595048287024e-05 0.0005172879437550447 1.417172026583425e-06 0.014625972035022765 4.0069595048287024e-05 0.018868174134713527 7.798041760748682e-05']
['59866.38854286673 0.03349471845526608 6.685698931825645e-05 0.01470711871862987 4.012054804757526e-05 0.0005201579206020635 1.4189741202949985e-06 0.014707118718629869 4.012054804757526e-05 0.018787599736636212 7.797124724114173e-05']
['59866.388574404686 0.03349510968367969 6.687756950935378e-05 0.014657149173755555 4.008619767641045e-05 0.0005183906094752192 1.4177592244354606e-06 0.014657149173755556 4.008619767641045e-05 0.018837960509924135 7.797122897345341e-05']
['59866.38860594265 0.033536445381101246 6.687883807080151e-05 0.014736091608310778 4.014033135367619e-05 0.0005211826269594797 1.4196738116187016e-06 0.01473609160831078 4.014033135367619e-05 0.018800353772790466 7.800016142857276e-05']
['59866.38863748062 0.03346123103746011 6.686110787171245e-05 0.014669750297020867 4.0104428702725365e-05 0.0005188362830432602 1.4184040150922733e-06 0.014669750297020868 4.0104428702725365e-05 0.018791480740439244 7.796648605269286e-05']
['59866.388669018575 0.0334816014849864 6.688156676697505e-05 0.014718889241750232 4.01439603349308e-05 0.0005205742176992597 1.4198021605753812e-06 0.01471888924175023 4.01439603349308e-05 0.018762712243236168 7.800436862495484e-05']
['59866.38870055654 0.03350286970805644 6.68847228813806e-05 0.014629392329522725 4.00792859104186e-05 0.0005174089119275999 1.4175147707192165e-06 0.014629392329522723 4.00792859104186e-05 0.018873477378533714 7.797381171911603e-05']
['59866.3887320945 0.033462774522334794 6.686819587924372e-05 0.014690903089878648 4.012425820720167e-05 0.0005195844100529301 1.419105340349266e-06 0.014690903089878646 4.012425820720167e-05 0.01877187143245615 7.798276551150964e-05']
['59866.388763632465 0.033453032616378914 6.683902425381779e-05 0.014763630940614161 4.015016996026803e-05 0.000522156631596265 1.420021781145863e-06 0.014763630940614163 4.015016996026803e-05 0.01868940167576475 7.79710927911162e-05']
['59866.38879517043 0.033439141136885106 6.68311896579517e-05 0.014618939871223294 4.00863664868537e-05 0.0005170392318374185 1.417765194883569e-06 0.014618939871223294 4.00863664868537e-05 0.018820201265661814 7.793153847586647e-05']
['59866.38882670839 0.0334299598911435 6.686477204520153e-05 0.014663155077391268 4.010547071867072e-05 0.0005186030248644097 1.4184408688674918e-06 0.014663155077391268 4.010547071867072e-05 0.018766804813752234 7.797016430804105e-05']
['59866.388858246355 0.03348739475262131 6.688318352637052e-05 0.014659355181518785 4.010576169761345e-05 0.0005184686310396674 1.4184511601423965e-06 0.014659355181518783 4.010576169761345e-05 0.018828039571102524 7.798610363371104e-05']
['59866.38888978431 0.033435697098779915 6.682146352516475e-05 0.014656988999677236 4.010598765604715e-05 0.000518384944476037 1.4184591517872093e-06 0.014656988999677234 4.010598765604715e-05 0.018778708099102683 7.793329348559528e-05']
['59866.38892132228 0.0335505196429768 6.688851517188096e-05 0.01475167319090465 4.0134996457388634e-05 0.0005217337127130373 1.4194851282598021e-06 0.01475167319090465 4.0134996457388634e-05 0.018798846452072148 7.800571390951786e-05']
['59866.388952860245 0.033508058912276865 6.690313138736882e-05 0.01469524660957269 4.0107758715462216e-05 0.0005197380306373132 1.4185217902006351e-06 0.01469524660957269 4.0107758715462216e-05 0.018812812302704176 7.800423897848931e-05']
['59866.3889843982 0.03353734594836797 6.687491120387608e-05 0.014687562336343642 4.0108684313982876e-05 0.0005194662550665417 1.41855452655172e-06 0.01468756233634364 4.0108684313982876e-05 0.01884978361202433 7.798051234715661e-05']
['59866.38901593617 0.03339683983881719 6.679598310837569e-05 0.014621010114892587 4.0071031258430485e-05 0.0005171124517292791 1.4172228221264586e-06 0.014621010114892587 4.0071031258430485e-05 0.0187758297239246 7.789345868253973e-05']
['59866.389047474135 0.033444061092002604 6.685481785378668e-05 0.01463899312387664 4.007979622053242e-05 0.0005177484705673852 1.4175328192474665e-06 0.014638993123876638 4.007979622053242e-05 0.018805067968125967 7.794842355905859e-05']
['59866.38907901209 0.03351995389141447 6.689132633538678e-05 0.014734164357430444 4.013232832973619e-05 0.0005211144644029944 1.4193907625476494e-06 0.014734164357430442 4.013232832973619e-05 0.018785789533984028 7.80067517338913e-05']
['59866.38911055006 0.0334877745535315 6.687320886223596e-05 0.014674039140768586 4.0111282620655675e-05 0.0005189879698616153 1.4186464228518633e-06 0.014674039140768586 4.0111282620655675e-05 0.01881373541276292 7.798038892571868e-05']
['59866.38914208802 0.03348001005653611 6.684943282394186e-05 0.01471827152431074 4.013535232158046e-05 0.0005205523704139421 1.4194977143809572e-06 0.01471827152431074 4.013535232158046e-05 0.018761738532225368 7.797238725895283e-05']
['59866.38917362598 0.03339533503461095 6.681426848934121e-05 0.01474608870938677 4.0163115550019444e-05 0.0005215362020823315 1.4204796377236803e-06 0.01474608870938677 4.0163115550019444e-05 0.018649246325224182 7.795654125504791e-05']
['59866.38920516395 0.033583585766388126 6.695001650696118e-05 0.014700833642784943 4.0113237438804024e-05 0.0005199356315157463 1.4187155604010089e-06 0.014700833642784945 4.0113237438804024e-05 0.01888275212360318 7.804727111247544e-05']
['59866.38923670191 0.03347786163304698 6.687618687473472e-05 0.014673550993196694 4.011098334631864e-05 0.0005189707051729432 1.418635838187401e-06 0.014673550993196694 4.011098334631864e-05 0.01880431063985029 7.798278884416158e-05']
['59866.38926823987 0.03351544611557415 6.688841714395648e-05 0.014739575996154426 4.014174770051804e-05 0.000521305861970361 1.4197239046411487e-06 0.014739575996154428 4.014174770051804e-05 0.018775870119419724 7.800910367691694e-05']
['59866.38929977784 0.033393732778052396 6.67852138265872e-05 0.014775596755864519 4.0159629339624596e-05 0.0005225798357396469 1.4203563382532362e-06 0.014775596755864519 4.0159629339624596e-05 0.018618136022187877 7.792984418410582e-05']
['59866.3893313158 0.03349537620121354 6.69034702815559e-05 0.01471775217886898 4.013798027834311e-05 0.0005205340023263358 1.4195906593385144e-06 0.014717752178868978 4.013798027834311e-05 0.018777624022344563 7.802007303598026e-05']
['59866.38936285376 0.03350767176546944 6.69114445435356e-05 0.014702292334835785 4.011469790758e-05 0.0005199872221935996 1.4187672139176597e-06 0.014702292334835785 4.011469790758e-05 0.018805379430633658 7.801493702566865e-05']
['59866.38939439172 0.03340848981027729 6.680634534498323e-05 0.014622774575429423 4.007132562809037e-05 0.0005171748567551298 1.4172332333234513e-06 0.014622774575429423 4.007132562809037e-05 0.018785715234847865 7.790249621126151e-05']
['59866.38942592969 0.03346956946152261 6.683202481954159e-05 0.014590026745966354 4.00519735976264e-05 0.0005160166392141124 1.4165487952551833e-06 0.014590026745966354 4.00519735976264e-05 0.018879542715556256 7.791456943694668e-05']
['59866.38945746765 0.03345459719787476 6.683131699542188e-05 0.014636074846025623 4.008864739000856e-05 0.000517645257601762 1.4178458653306379e-06 0.014636074846025625 4.008864739000856e-05 0.018818522351849137 7.79328209479357e-05']
['59866.38948900561 0.03351676967737334 6.686584251280906e-05 0.014686891133673845 4.011362563172551e-05 0.0005194425161281607 1.4187292899170818e-06 0.014686891133673845 4.011362563172551e-05 0.018829878543699496 7.797527721188306e-05']
['59866.38952054358 0.03351449776118459 6.691005071663015e-05 0.014713959482700774 4.012263024491969e-05 0.0005203998631390435 1.4190477629616337e-06 0.014713959482700776 4.012263024491969e-05 0.018800538278483818 7.801782068651086e-05']
['59866.38955208154 0.033503259199539843 6.689267292998914e-05 0.014680494174894702 4.012729493121119e-05 0.0005192162699925038 1.4192127424908039e-06 0.0146804941748947 4.012729493121119e-05 0.018822765024645145 7.800531706374194e-05']
['59866.3895836195 0.03354175287948597 6.691030750687326e-05 0.014718470868406195 4.0121496610642004e-05 0.0005205594207690906 1.4190076688507556e-06 0.014718470868406195 4.0121496610642004e-05 0.018823282011079776 7.801745792412169e-05']
['59866.389615157466 0.03351937578265916 6.689344748372707e-05 0.014707252428934225 4.0129569263091596e-05 0.0005201626496367036 1.4192931805265813e-06 0.014707252428934225 4.0129569263091596e-05 0.01881212335372493 7.800715124589167e-05']
['59866.389646695425 0.033315939565570246 6.674914208522689e-05 0.014673188241658272 4.01064303873382e-05 0.0005189578754617311 1.4184748102035274e-06 0.014673188241658272 4.01064303873382e-05 0.018642751323911973 7.787152064476596e-05']
['59866.38967823339 0.03349613779385833 6.687248166569513e-05 0.01468641596923558 4.01141381961375e-05 0.0005194257106239092 1.4187474181748197e-06 0.014686415969235578 4.01141381961375e-05 0.01880972182462275 7.798123419995062e-05']
['59866.389709771356 0.03348231352760316 6.68671655682306e-05 0.01472134597564922 4.012999877424011e-05 0.0005206611068867898 1.4193083713760033e-06 0.014721345975649221 4.012999877424011e-05 0.01876096755195394 7.798483591538599e-05']
['59866.389741309315 0.0334682762772057 6.684042264003182e-05 0.014661814854324239 4.01147281394399e-05 0.0005185556241697511 1.41876828315098e-06 0.014661814854324239 4.01147281394399e-05 0.018806461422881462 7.795404744077918e-05']
['59866.38977284728 0.0335231744093498 6.690780098173758e-05 0.014701125109725148 4.0103309187773724e-05 0.000519945940050031 1.4183644203504024e-06 0.014701125109725148 4.0103309187773724e-05 0.018822049299624652 7.800595643937698e-05']
['59866.389804385246 0.03359416992788528 6.695568090145588e-05 0.014733765678457909 4.013178619190048e-05 0.000521100364018731 1.4193715883440072e-06 0.01473376567845791 4.013178619190048e-05 0.018860404249427372 7.806166452190216e-05']
['59866.389835923204 0.03338702077597301 6.681848259229529e-05 0.014644039310172332 4.008721799565855e-05 0.0005179269428991013 1.4177953108469865e-06 0.014644039310172332 4.008721799565855e-05 0.01874298146580068 7.792107970612522e-05']
['59866.38986746117 0.03354309651303599 6.689050411258875e-05 0.014729927743026568 4.0115482345689226e-05 0.0005209646248198053 1.418794957740467e-06 0.01472992774302657 4.0115482345689226e-05 0.018813168770009422 7.799738113721228e-05']
['59866.38989899913 0.03344725175857344 6.684225530991447e-05 0.014652675303321459 4.009865186493661e-05 0.0005182323786764771 1.4181997012501575e-06 0.014652675303321457 4.009865186493661e-05 0.018794576455251982 7.794734746161137e-05']
['59866.389930537094 0.033498365814568824 6.686263754642335e-05 0.014698977952088394 4.010867242780645e-05 0.000519869999883034 1.418554106164224e-06 0.014698977952088394 4.010867242780645e-05 0.018799387862480428 7.79699807848217e-05']
['59866.38996207506 0.033388733129804726 6.681284369613899e-05 0.014686425751471485 4.012871277142683e-05 0.0005194260565997312 1.4192628883305446e-06 0.014686425751471485 4.012871277142683e-05 0.01870230737833324 7.793760113999131e-05']
['59866.38999361302 0.03347476821203356 6.688241589805719e-05 0.014645604735263693 4.009854037602637e-05 0.0005179823084860636 1.4181957581365655e-06 0.014645604735263693 4.009854037602637e-05 0.018829163476769866 7.798173181360177e-05']
['59866.390025150984 0.03361832039681991 6.696621227922519e-05 0.014749564602975109 4.013910571433256e-05 0.0005216591366703861 1.41963046349426e-06 0.014749564602975109 4.013910571433256e-05 0.018868755793844803 7.807446057817252e-05']
['59866.39005668895 0.03341601363240564 6.685190269527335e-05 0.014676823162771841 4.009601676396564e-05 0.0005190864344979475 1.4181065036179184e-06 0.01467682316277184 4.009601676396564e-05 0.018739190469633803 7.795426514511255e-05']
['59866.39008822691 0.03357812209738379 6.696263547163412e-05 0.014718022547312947 4.012147664717151e-05 0.000520543564653961 1.41900696278742e-06 0.014718022547312946 4.012147664717151e-05 0.018860099550070845 7.806233046518969e-05']
['59866.390119764874 0.033461293757254616 6.68427207546544e-05 0.01468149850959127 4.012030634008376e-05 0.0005192517910661655 1.4189655716412086e-06 0.014681498509591268 4.012030634008376e-05 0.01877979524766335 7.7958888516364e-05']
['59866.39015130283 0.03363208060249695 6.696183114207507e-05 0.01472797268914598 4.0125215291556534e-05 0.0005208954789333372 1.4191391902839398e-06 0.01472797268914598 4.0125215291556534e-05 0.018904107913350968 7.8063562127881e-05']
['59866.3901828408 0.0336080142761867 6.696224512654183e-05 0.014680850973848034 4.009746977328916e-05 0.0005192288891740845 1.4181578933104067e-06 0.014680850973848034 4.009746977328916e-05 0.018927163302338665 7.804965954190263e-05']
['59866.39021437876 0.03341313846010415 6.684018102588915e-05 0.014721739651920338 4.0136150192628255e-05 0.0005206750303366846 1.419525933296781e-06 0.01472173965192034 4.0136150192628255e-05 0.01869139880818381 7.796486613763179e-05']
['59866.39024591672 0.033423748479151534 6.682437452977264e-05 0.014666189694756438 4.0094492893443026e-05 0.0005187103524986451 1.4180526077231838e-06 0.01466618969475644 4.0094492893443026e-05 0.018757558784395095 7.792987483422311e-05']
['59866.39027745469 0.0334324651302135 6.683911493633404e-05 0.014574177640046652 4.004604614985794e-05 0.0005154560917583997 1.4163391546746787e-06 0.014574177640046652 4.004604614985794e-05 0.01885828749016685 7.791760454293384e-05']
['59866.39030899265 0.033577745107486845 6.694508714357833e-05 0.014619180353858072 4.007628177931691e-05 0.0005170477371707635 1.4174085213159876e-06 0.014619180353858072 4.007628177931691e-05 0.018958564753628775 7.802405432888312e-05']
['59866.39034053061 0.03344216612363051 6.684568498866883e-05 0.01472059727932493 4.013081116038125e-05 0.0005206346271710375 1.4193371036582392e-06 0.014720597279324931 4.013081116038125e-05 0.018721568844305578 7.796683657808956e-05']
['59866.39037206858 0.033611152254393664 6.696723416133466e-05 0.01469685961569137 4.0100351157453876e-05 0.0005197950790588744 1.418259801428798e-06 0.01469685961569137 4.0100351157453876e-05 0.01891429263870229 7.805542014600998e-05']
['59866.390403606536 0.03350375897151815 6.687648427897628e-05 0.01467780044734022 4.012312167905043e-05 0.0005191209988690286 1.4190651438885475e-06 0.01467780044734022 4.012312167905043e-05 0.018825958524177934 7.798928800026353e-05']
['59866.3904351445 0.03346273894208793 6.685460470195647e-05 0.014677573878152628 4.010451412952025e-05 0.0005191129856232158 1.4184070364470906e-06 0.014677573878152628 4.010451412952025e-05 0.0187851650639353 7.7960953197224e-05']
['59866.39046668247 0.033471623803688365 6.687810186763964e-05 0.014684835822068748 4.0121754797020903e-05 0.0005193698243500395 1.4190168003259646e-06 0.014684835822068748 4.0121754797020903e-05 0.018786787981619618 7.79899719028713e-05']
['59866.390498220426 0.03356576205426076 6.693834829545929e-05 0.014749332867226551 4.015180826771466e-05 0.0005216509406948585 1.4200797244188488e-06 0.014749332867226551 4.015180826771466e-05 0.01881642918703421 7.805709563961202e-05']
['59866.39052975839 0.033536511428448226 6.69159822830057e-05 0.014655548645222737 4.0096926367058736e-05 0.0005183340023579841 1.418138674246478e-06 0.014655548645222735 4.0096926367058736e-05 0.018880962783225493 7.800969291687324e-05']
['59866.39056129636 0.033363624105571824 6.677325553964005e-05 0.01466135689153637 4.00975485023064e-05 0.0005185394270494308 1.4181606777797974e-06 0.014661356891536371 4.00975485023064e-05 0.01870226721403545 7.788761808693911e-05']
['59866.390592834316 0.03345868941698115 6.682520292234365e-05 0.014662258185558186 4.0102191009055954e-05 0.0005185713038047088 1.4183248728681373e-06 0.014662258185558186 4.0102191009055954e-05 0.018796431231422966 7.793454605846636e-05']
['59866.39062437228 0.03346200136830981 6.6838345077389e-05 0.014645821525407344 4.0101517874353055e-05 0.000517989975868947 1.4183010655980633e-06 0.014645821525407344 4.0101517874353055e-05 0.018816179842902465 7.794546881321061e-05']
['59866.39065591024 0.03353800898135641 6.691174424939578e-05 0.014675964948396897 4.0112045111486024e-05 0.000519056081373502 1.418673390448466e-06 0.014675964948396897 4.0112045111486024e-05 0.01886204403295951 7.801383006571617e-05']
['59866.390687448205 0.033470209445204235 6.685467990932014e-05 0.014688418446673342 4.0118903669559014e-05 0.0005194965337756093 1.4189159623195326e-06 0.014688418446673342 4.0118903669559014e-05 0.018781790998530893 7.796842089862414e-05']
['59866.39071898617 0.03352243862401167 6.688488642822338e-05 0.014692161109382556 4.010229746947852e-05 0.0005196289033912753 1.4183286381353581e-06 0.014692161109382556 4.010229746947852e-05 0.018830277514629117 7.798578264560075e-05']
['59866.39075052413 0.03338280179779889 6.682493348623243e-05 0.014672702369693683 4.01144908441713e-05 0.0005189406912562036 1.4187598905476532e-06 0.014672702369693685 4.01144908441713e-05 0.01871009942810521 7.794064479542424e-05']
['59866.390782062095 0.03349402421044663 6.688272200415663e-05 0.014788219842894296 4.01554447876522e-05 0.0005230262861169509 1.420208340001896e-06 0.014788219842894294 4.01554447876522e-05 0.018705804367552335 7.801127001132261e-05']
['59866.39081360006 0.0334687843568437 6.683711916020691e-05 0.014660724854056626 4.010257639097409e-05 0.0005185170732962929 1.4183385029653037e-06 0.014660724854056626 4.010257639097409e-05 0.018808059502787078 7.794496219018655e-05']
['59866.39084513802 0.03343871668554691 6.682641227653743e-05 0.014667242643744565 4.009502379975168e-05 0.0005187475929511527 1.4180713846928151e-06 0.014667242643744565 4.009502379975168e-05 0.018771474041802346 7.793189533981838e-05']
['59866.390876675985 0.03336738808351421 6.680186282994219e-05 0.014685117745143977 4.012345135078546e-05 0.0005193797953391494 1.4190768036410425e-06 0.014685117745143979 4.012345135078546e-05 0.01868227033837023 7.792547866936243e-05']
['59866.39090821394 0.03344949875775089 6.685267414236078e-05 0.014653484762062824 4.010096077084579e-05 0.0005182610074231254 1.4182813620920642e-06 0.014653484762062824 4.010096077084579e-05 0.018796013995688067 7.795746978147499e-05']
['59866.39093975191 0.03354382892997647 6.690541812845835e-05 0.014634124817600834 4.008151567375723e-05 0.0005175762894544342 1.4175936324652764e-06 0.014634124817600834 4.008151567375723e-05 0.018909704112375636 7.799271038789132e-05']
['59866.390971289875 0.03343970390631037 6.681702818125565e-05 0.014614800371520225 4.006619887036987e-05 0.0005168928269841583 1.4170519113605062e-06 0.014614800371520223 4.006619887036987e-05 0.018824903534790147 7.790902095967282e-05']
['59866.39100282783 0.033407933358980776 6.680911666371965e-05 0.014674223483823898 4.01048029671553e-05 0.0005189944896634993 1.4184172519887283e-06 0.014674223483823898 4.01048029671553e-05 0.01873370987515688 7.792209757457028e-05']
['59866.3910343658 0.03358361515156054 6.695787852109962e-05 0.014691265987466558 4.013346940676065e-05 0.0005195972449295862 1.4194311198918476e-06 0.014691265987466558 4.013346940676065e-05 0.01889234916409398 7.806441482948378e-05']
['59866.391065903765 0.03343570952249374 6.684571605640747e-05 0.014653016830991105 4.0111105691631326e-05 0.0005182444577468831 1.418640165267685e-06 0.014653016830991105 4.0111105691631326e-05 0.01878269269150263 7.795672232013781e-05']
['59866.39109744172 0.033463665594051874 6.686981267175171e-05 0.01465524625836572 4.009583729596987e-05 0.0005183233076106463 1.4181001562359954e-06 0.01465524625836572 4.009583729596987e-05 0.018808419335686152 7.796953260870592e-05']
['59866.39112897969 0.03336607813370845 6.680096745161702e-05 0.014660533740673085 4.0093019060810876e-05 0.0005185103140430303 1.4180004815568068e-06 0.014660533740673085 4.0093019060810876e-05 0.018705544393035362 7.790904587968294e-05']
['59866.39116051765 0.033438695010835275 6.684172150794358e-05 0.014667445783765616 4.0084165283119234e-05 0.0005187547775597059 1.417687343226882e-06 0.014667445783765614 4.0084165283119234e-05 0.01877124922706966 7.793943828762118e-05']
['59866.39119205561 0.033402592515096516 6.682588349256022e-05 0.014675351852215053 4.0120032389605214e-05 0.0005190343975317395 1.4189558826250258e-06 0.014675351852215055 4.0120032389605214e-05 0.01872724066288146 7.794431155321217e-05']
['59866.39122359358 0.033558781055606064 6.691729109251691e-05 0.014715051795482242 4.0115891807020624e-05 0.0005204384958009486 1.4188094394726663e-06 0.014715051795482242 4.0115891807020624e-05 0.018843729260123822 7.802056538268117e-05']
['59866.39125513154 0.033397695995027434 6.677769238116723e-05 0.01466247112450246 4.0122457300848854e-05 0.0005185788349792772 1.4190416463163556e-06 0.014662471124502459 4.0122457300848854e-05 0.018735224870524973 7.790424750687371e-05']
['59866.3912866695 0.03342031236765407 6.684912668433077e-05 0.014657993183334099 4.0102059015063666e-05 0.0005184204602077619 1.4183202045356192e-06 0.014657993183334099 4.0102059015063666e-05 0.01876231918431997 7.795499262847347e-05']
['59866.39131820747 0.0334753300955599 6.689368808664937e-05 0.014736092416472139 4.0115933912584804e-05 0.0005211826555423408 1.418810928652371e-06 0.014736092416472139 4.0115933912584804e-05 0.018739237679087757 7.80003439704775e-05']
['59866.39134974543 0.0334075655097515 6.681982336350838e-05 0.014734681158254695 4.014737845734989e-05 0.0005211327424931663 1.4199230519262905e-06 0.014734681158254695 4.014737845734989e-05 0.018672884351496805 7.795319615851644e-05']
['59866.39138128339 0.033391394713530136 6.6787541917543e-05 0.014677369879569113 4.011026011722264e-05 0.0005191057706492269 1.4186102591905976e-06 0.014677369879569113 4.011026011722264e-05 0.01871402483396102 7.790641001906598e-05']
['59866.39141282135 0.03354760662149244 6.691827872131416e-05 0.014735417188306186 4.013770312375689e-05 0.0005211587742311572 1.419580857000204e-06 0.014735417188306187 4.013770312375689e-05 0.018812189433186254 7.803262932308721e-05']
['59866.39144435932 0.033460876923289175 6.683706589913983e-05 0.014676068813629832 4.011862180097112e-05 0.0005190597548546657 1.418905993257518e-06 0.014676068813629832 4.011862180097112e-05 0.018784808109659344 7.795317307983888e-05']
['59866.39147589728 0.03350319414606134 6.687866187778936e-05 0.01470442401038332 4.0120992218053605e-05 0.0005200626147937015 1.4189898296121549e-06 0.01470442401038332 4.0120992218053605e-05 0.018798770135678017 7.799005982254914e-05']
['59866.39150743524 0.0334935052737202 6.687657497981578e-05 0.014702499109360407 4.0121728944507075e-05 0.0005199945353464217 1.4190158859803276e-06 0.014702499109360407 4.0121728944507075e-05 0.018791006164359792 7.798864926723259e-05']
['59866.39153897321 0.033458788521383 6.68675535770269e-05 0.01468007169093803 4.0108399746192266e-05 0.0005192013276791524 1.4185444620249377e-06 0.01468007169093803 4.0108399746192266e-05 0.01877871683044497 7.797405627243538e-05']
['59866.39157051117 0.03347966484620431 6.687847864336972e-05 0.014616782577170105 4.007815520869299e-05 0.0005169629331680256 1.4174747803261515e-06 0.014616782577170105 4.007815520869299e-05 0.018862882269034202 7.796787434952774e-05']
['59866.39160204913 0.03355897748810669 6.692706003436423e-05 0.014707529412277631 4.013065118599021e-05 0.0005201724459185385 1.4193314457215498e-06 0.014707529412277631 4.013065118599021e-05 0.018851448075829058 7.803653329982702e-05']
['59866.391633587096 0.03351100035799161 6.689088817861597e-05 0.014673617028542462 4.0126253253856486e-05 0.0005189730406955427 1.4191759006907799e-06 0.014673617028542463 4.0126253253856486e-05 0.018837383329449144 7.800325071121545e-05']
['59866.391665125055 0.03354743626009022 6.690826467701283e-05 0.014715471166817633 4.0132075942141235e-05 0.0005204533280278416 1.419381836162469e-06 0.014715471166817633 4.0132075942141235e-05 0.018831965093272587 7.80211471430342e-05']
['59866.39169666302 0.033355831548822934 6.6769565205364e-05 0.014703323167806061 4.0127899493800574e-05 0.0005200236804519822 1.4192341245184725e-06 0.01470332316780606 4.0127899493800574e-05 0.018652508381016876 7.79000844383234e-05']
['59866.391728200986 0.033459825023715035 6.686978248877098e-05 0.01468441395239098 4.0116715135175246e-05 0.0005193549037623601 1.418838558749465e-06 0.014684413952390979 4.0116715135175246e-05 0.018775411071324057 7.798024521205572e-05']
['59866.391759738945 0.03346371714770394 6.686594487517381e-05 0.014701069611536985 4.013021213285882e-05 0.0005199439772031469 1.4193159173935185e-06 0.014701069611536987 4.013021213285882e-05 0.01876264753616696 7.798389904254615e-05']
['59866.39179127691 0.03348860459783805 6.687148541740529e-05 0.014679237887882833 4.0095351886064044e-05 0.0005191718379285303 1.4180829883724537e-06 0.014679237887882833 4.0095351886064044e-05 0.018809366709955214 7.797071761114905e-05']
['59866.391822814876 0.033442967232250126 6.683626969840625e-05 0.014688603448649706 4.011481153251635e-05 0.0005195030768820582 1.4187712325777213e-06 0.014688603448649707 4.011481153251635e-05 0.018754363783600417 7.795052951383592e-05']
['59866.391854352834 0.03352969833546435 6.690919507924608e-05 0.014669906404616708 4.0107934347845575e-05 0.0005188418042200452 1.4185280019255193e-06 0.01466990640461671 4.0107934347845575e-05 0.018859791930847636 7.800953008321291e-05']
['59866.3918858908 0.033446901084820256 6.687762970983911e-05 0.014650647321168052 4.0091472304527905e-05 0.0005181606534799845 1.4179457762438748e-06 0.014650647321168052 4.0091472304527905e-05 0.018796253763652203 7.797399250488e-05']
['59866.39191742876 0.03344944133656991 6.687119594694459e-05 0.014663293507691393 4.009518974174883e-05 0.0005186079208347516 1.4180772536903958e-06 0.014663293507691393 4.009518974174883e-05 0.018786147828878514 7.797038596673419e-05']
['59866.391948966724 0.0333378786266245 6.674188767582554e-05 0.014634923483804971 4.0087926404095395e-05 0.0005176045364931606 1.417820365670198e-06 0.014634923483804971 4.0087926404095395e-05 0.018702955142819527 7.785577315724686e-05']
['59866.39198050469 0.033453318597703854 6.684590321131875e-05 0.014668318021289038 4.009861575805343e-05 0.0005187856266515733 1.4181984242303936e-06 0.01466831802128904 4.009861575805343e-05 0.018785000576414815 7.795045709839684e-05']
['59866.39201204265 0.033501782954971686 6.686195150149899e-05 0.014728770398788534 4.011596819824146e-05 0.0005209236921406182 1.4188121412594229e-06 0.014728770398788536 4.011596819824146e-05 0.01877301255618315 7.797314578155177e-05']
['59866.392043580614 0.03340840959035255 6.683465248999298e-05 0.0146235385884842 4.007758658282162e-05 0.0005172018781894086 1.417454669299885e-06 0.0146235385884842 4.007758658282162e-05 0.01878487100186835 7.792999242757365e-05']
['59866.39207511858 0.033510267884090304 6.688154325493306e-05 0.01477744540351106 4.015685728660387e-05 0.0005226452182754207 1.420258296933067e-06 0.01477744540351106 4.015685728660387e-05 0.018732822480579246 7.801098650381338e-05']
['59866.39210665654 0.03350959170725321 6.688460513202894e-05 0.014760840128763176 4.015156664090009e-05 0.000522057926818193 1.4200711786184215e-06 0.014760840128763176 4.015156664090009e-05 0.018748751578490035 7.801088838992973e-05']
['59866.392138194504 0.033401245378249886 6.678071513454383e-05 0.01464427483402624 4.010089977232755e-05 0.0005179352728514492 1.4182792047107979e-06 0.014644274834026241 4.010089977232755e-05 0.018756970544223643 7.789573849981366e-05']
['59866.39216973246 0.03350288578325268 6.685781616103928e-05 0.014760465207765108 4.014287510137268e-05 0.0005220446667003904 1.4197637782897848e-06 0.014760465207765106 4.014287510137268e-05 0.018742420575487577 7.798344698221368e-05']
['59866.39220127043 0.03357888982494854 6.69441279127371e-05 0.014730425639288535 4.0153467781085636e-05 0.0005209822342978585 1.4201384176979862e-06 0.014730425639288537 4.0153467781085636e-05 0.018848464185660004 7.80629056392573e-05']
['59866.39223280839 0.0335423016091791 6.691928140706664e-05 0.014704779692020789 4.011846015197477e-05 0.0005200751944583171 1.4189002760937812e-06 0.014704779692020789 4.011846015197477e-05 0.01883752191715831 7.80235930280307e-05']
['59866.39226434635 0.03330256606863663 6.675139995534202e-05 0.01467265332322889 4.0098716252936344e-05 0.0005189389565923563 1.4182019785098094e-06 0.01467265332322889 4.0098716252936344e-05 0.01862991274540774 7.786948337527055e-05']
['59866.39229588432 0.03350892723241582 6.690740757065455e-05 0.014675813358772037 4.011780363342249e-05 0.0005190507199872536 1.4188770564998198e-06 0.014675813358772037 4.011780363342249e-05 0.01883311387364378 7.801307170080877e-05']
['59866.39232742228 0.03352019751040948 6.691625546820977e-05 0.014723253635742223 4.0123906068711604e-05 0.0005207285765609099 1.4190928859978554e-06 0.014723253635742223 4.0123906068711604e-05 0.01879694387466726 7.802379819066427e-05']
['59866.39235896024 0.03353144135850864 6.69255689055138e-05 0.014686622295052604 4.012402664438133e-05 0.0005194330079069463 1.419097150489823e-06 0.014686622295052602 4.012402664438133e-05 0.018844819063456038 7.803184790510667e-05']
['59866.39239049821 0.03351397333748726 6.691616124535182e-05 0.014727207101683678 4.0119098359340834e-05 0.0005208684018157829 1.4189228480620093e-06 0.01472720710168368 4.0119098359340834e-05 0.01878676623580358 7.802124511298438e-05']
['59866.392422036166 0.03349211385931318 6.687370187149125e-05 0.014717825463287015 4.0114155377093484e-05 0.0005205365942324207 1.4187480258268358e-06 0.014717825463287015 4.0114155377093484e-05 0.018774288396026163 7.798228942275734e-05']
['59866.39245357413 0.033537505953828754 6.69401926204183e-05 0.014657075946570447 4.010477683033701e-05 0.000518388019593335 1.4184163275878778e-06 0.014657075946570447 4.010477683033701e-05 0.01888043000725831 7.803449565845762e-05']
['59866.3924851121 0.033518420894655565 6.691303832247818e-05 0.014735418793062251 4.01281996204289e-05 0.0005211588309877929 1.419244739326573e-06 0.014735418793062253 4.01281996204289e-05 0.01878300210159331 7.80232471916058e-05']
['59866.392516650056 0.033468734159968684 6.6846029319412e-05 0.014702942575306934 4.011481532116767e-05 0.0005200102197458622 1.4187713665738517e-06 0.014702942575306932 4.011481532116767e-05 0.018765791584661753 7.795889971018752e-05']
['59866.39254818802 0.033534242122162106 6.687900346551114e-05 0.014694426559085658 4.011487806197049e-05 0.0005197090272842918 1.41877358557583e-06 0.014694426559085656 4.011487806197049e-05 0.01883981556307645 7.798720758218373e-05']
['59866.39257972599 0.03355022584826311 6.692936794881547e-05 0.014723424139755007 4.013742530508181e-05 0.0005207346069067881 1.4195710311745544e-06 0.014723424139755008 4.013742530508181e-05 0.0188268017085081 7.804199641314251e-05']
['59866.392611263946 0.03347473609238653 6.686385499420621e-05 0.014987550569032372 4.0249246635434623e-05 0.0005300761684225002 1.4235259017231684e-06 0.014987550569032372 4.0249246635434623e-05 0.018487185523354155 7.804342995669962e-05']
['59866.39264280191 0.03354220500079745 6.687103106077986e-05 0.01472916538520465 4.0126293674209254e-05 0.0005209376619274136 1.4191773302683231e-06 0.014729165385204652 4.0126293674209254e-05 0.0188130396155928 7.798624390981187e-05']
['59866.39267433987 0.033487743324706526 6.688366428229367e-05 0.014639027174965076 4.009058564099382e-05 0.0005177496748782835 1.4179144169362507e-06 0.014639027174965074 4.009058564099382e-05 0.01884871614974145 7.797871251094382e-05']
['59866.392705877835 0.033391133214347946 6.678009793922428e-05 0.014629191273788868 4.0078915262745705e-05 0.0005174018010356265 1.4175016617393752e-06 0.014629191273788868 4.0078915262745705e-05 0.01876194194055908 7.788389390246701e-05']
['59866.3927374158 0.033487876823234855 6.689187610245479e-05 0.014748232840979886 4.013841940242421e-05 0.000521612035224928 1.4196061901758785e-06 0.014748232840979886 4.013841940242421e-05 0.01873964398225497 7.801035700873997e-05']
['59866.39276895376 0.033492761583177905 6.69086623101885e-05 0.014727692687212314 4.014489576814454e-05 0.0005208855758907109 1.419835244757581e-06 0.014727692687212314 4.014489576814454e-05 0.01876506889596559 7.802808307509565e-05']
['59866.392800491725 0.033447532213209785 6.68571312618501e-05 0.01461287168107869 4.00743610915386e-05 0.0005168246135136106 1.4173405908817535e-06 0.01461287168107869 4.00743610915386e-05 0.018834660532131096 7.794761328904996e-05']
['59866.39283202969 0.0334413743144026 6.683235207544885e-05 0.01466525288334269 4.0091354848390444e-05 0.0005186772195725912 1.417941622082792e-06 0.014665252883342693 4.0091354848390444e-05 0.018776121431059903 7.793510131844515e-05']
['59866.39286356765 0.0335698781157118 6.69250350642963e-05 0.014757523782954057 4.014900095560809e-05 0.0005219406350785212 1.4199804360636127e-06 0.014757523782954059 4.014900095560809e-05 0.01881235433275774 7.804423486773836e-05']
['59866.392895105615 0.0335644771061566 6.692324573374708e-05 0.0146338246181404 4.008780381366725e-05 0.000517565672070425 1.417816029920728e-06 0.014633824618140402 4.008780381366725e-05 0.018930652488016196 7.801123530711824e-05']
['59866.39292664357 0.03356890689564123 6.694408389949758e-05 0.014734615804278619 4.0144644203708655e-05 0.0005211304310690901 1.419826347485697e-06 0.01473461580427862 4.0144644203708655e-05 0.018834291091362608 7.80583296476765e-05']
['59866.39295818154 0.03340772817495581 6.683031812622147e-05 0.01466850495789718 4.010291354437032e-05 0.0005187922381816245 1.418350427327435e-06 0.014668504957897179 4.010291354437032e-05 0.018739223217058634 7.79393039204175e-05']
['59866.392989719505 0.03339912575174074 6.68124782872367e-05 0.0146999626151625 4.011426357277688e-05 0.0005199048252153726 1.4187518524663544e-06 0.0146999626151625 4.011426357277688e-05 0.01869916313657824 7.792984920342583e-05']
['59866.39302125746 0.0334126223425589 6.683302321705176e-05 0.014727231493830996 4.0139100337772125e-05 0.0005208692645115202 1.4196302733373331e-06 0.014727231493830996 4.0139100337772125e-05 0.018685390848727904 7.796024864157835e-05']
['59866.39305279543 0.03340012918762036 6.68290161034119e-05 0.014644236802656141 4.009783114047236e-05 0.0005179339277668839 1.4181706740600684e-06 0.014644236802656141 4.009783114047236e-05 0.018755892384964216 7.793557246546614e-05']
['59866.393084333395 0.033609590377887126 6.694812446679407e-05 0.014724714968125274 4.0118895303567324e-05 0.0005207802606214128 1.4189156664331034e-06 0.014724714968125274 4.0118895303567324e-05 0.018884875409761852 7.804855623264243e-05']
['59866.39311587135 0.03339761023741821 6.681210498623818e-05 0.014682226523826563 4.0131739393369826e-05 0.0005192775393026518 1.4193699331845666e-06 0.014682226523826562 4.0131739393369826e-05 0.01871538371359165 7.793852628469096e-05']
['59866.39314740932 0.03346159835756762 6.685190831998538e-05 0.01461177880988187 4.008225044366794e-05 0.0005167859611018025 1.417619619634904e-06 0.01461177880988187 4.008225044366794e-05 0.018849819547685755 7.794719011390115e-05']
['59866.39317894728 0.033506020538165725 6.689366853929765e-05 0.014709426554380841 4.0134391131769536e-05 0.000520239543594866 1.4194637192454777e-06 0.014709426554380841 4.0134391131769536e-05 0.018796593983784884 7.800982144681067e-05']
['59866.39321048524 0.033420382469588936 6.681061832393819e-05 0.014603664250029376 4.007642567390303e-05 0.0005164989672547937 1.4174136105459134e-06 0.014603664250029376 4.007642567390303e-05 0.01881671821955956 7.790878394393548e-05']
['59866.39324202321 0.03340427516749841 6.680743721459965e-05 0.014581119413594369 4.004243808657714e-05 0.0005157016067748316 1.4162115455399839e-06 0.014581119413594369 4.004243808657714e-05 0.018823155753904038 7.788857756500652e-05']
['59866.39327356117 0.03348332765174174 6.68867266610012e-05 0.014625643154388728 4.007564160495927e-05 0.0005172763119820238 1.4173858797796636e-06 0.01462564315438873 4.007564160495927e-05 0.018857684497353006 7.797365743296021e-05']
['59866.39330509913 0.033564136462894356 6.691810526408159e-05 0.014771748321699831 4.01497436847309e-05 0.000522443725223986 1.4200067047327846e-06 0.014771748321699831 4.01497436847309e-05 0.018792388141194525 7.803867457923855e-05']
['59866.3933366371 0.03352564858378845 6.690750694298758e-05 0.014726117668480001 4.0140263323400443e-05 0.0005208298709981087 1.419671405539887e-06 0.014726117668480001 4.0140263323400443e-05 0.018799530915308452 7.80247090670504e-05']
['59866.39336817506 0.03355530345468686 6.691666413319287e-05 0.014699855066245488 4.012508951387153e-05 0.0005199010214505356 1.4191347418083176e-06 0.01469985506624549 4.012508951387153e-05 0.01885544838844137 7.802475727107867e-05']
['59866.39339971302 0.03363478330364084 6.699888559988943e-05 0.014745007245620365 4.01547754625194e-05 0.000521497953125843 1.4201846674678025e-06 0.014745007245620364 4.01547754625194e-05 0.01888977605802048 7.81105413121201e-05']
['59866.39343125098 0.03341827916188892 6.68270494764615e-05 0.014701002908874513 4.0118379087487385e-05 0.0005199416180790469 1.4188974090240309e-06 0.014701002908874513 4.0118379087487385e-05 0.018717276253014406 7.79444602414872e-05']
['59866.39346278895 0.03346339084974894 6.684722885650149e-05 0.014666958160053017 4.010128124839164e-05 0.0005187375313987662 1.418292696666636e-06 0.014666958160053015 4.010128124839164e-05 0.018796432689695927 7.795296507225426e-05']
['59866.39349432691 0.03339498706784093 6.680533473350237e-05 0.014677860189532401 4.010626147589108e-05 0.0005191231118168501 1.4184688361831377e-06 0.0146778601895324 4.010626147589108e-05 0.01871712687830853 7.791960573840094e-05']
['59866.39352586487 0.03361497697789084 6.6929201366435e-05 0.01473263006491116 4.0125754822575036e-05 0.0005210601999055294 1.4191582722902832e-06 0.01473263006491116 4.0125754822575036e-05 0.018882346912979683 7.803585198887886e-05']
['59866.39355740284 0.033406420909302376 6.683288288828464e-05 0.014652704146385653 4.009132782982355e-05 0.0005182333987911972 1.4179406664964637e-06 0.014652704146385653 4.009132782982355e-05 0.018753716762916723 7.79355426125818e-05']
['59866.3935889408 0.033459963530245995 6.685033653924946e-05 0.014692303274447755 4.0103830997330855e-05 0.0005196339314519111 1.4183828755882623e-06 0.014692303274447753 4.0103830997330855e-05 0.018767660255798242 7.795694167983622e-05']
['59866.39362047876 0.0335639680713345 6.69295974386586e-05 0.014701218460666762 4.01153494952456e-05 0.0005199492416642088 1.4187902591171792e-06 0.014701218460666762 4.01153494952456e-05 0.018862749610667737 7.803084184107332e-05']
['59866.393652016726 0.03355535809763727 6.693993844883441e-05 0.014635547855666087 4.008986975912446e-05 0.0005176266191304993 1.4178890977944332e-06 0.014635547855666087 4.008986975912446e-05 0.01891981024197118 7.802661736123962e-05']
['59866.393683554685 0.03360268094487844 6.696361261959207e-05 0.0147701641259448 4.016045266972474e-05 0.0005223876957605998 1.4203854575988437e-06 0.014770164125944802 4.016045266972474e-05 0.01883251681893364 7.808320801365676e-05']
['59866.39371509265 0.03349244479205579 6.686487693544078e-05 0.014696661135380205 4.0101929515373086e-05 0.0005197880592538458 1.418315624420978e-06 0.014696661135380203 4.0101929515373086e-05 0.01879578365667559 7.796843283308695e-05']
['59866.393746630616 0.033560723400537604 6.692517719161624e-05 0.01466042915763444 4.010470253649542e-05 0.0005185066151746827 1.4184136999807376e-06 0.01466042915763444 4.010470253649542e-05 0.018900294242903164 7.802157719291512e-05']
['59866.393778168574 0.03346774587533025 6.689310006799077e-05 0.014730964676576612 4.013749555574594e-05 0.0005210012988420603 1.419573515783544e-06 0.014730964676576612 4.013749555574594e-05 0.01873678119875364 7.80109311968121e-05']
['59866.39380970654 0.03343269932474366 6.681598655556968e-05 0.014765212193675607 4.01549576218287e-05 0.0005222125569831556 1.4201911100354703e-06 0.014765212193675607 4.01549576218287e-05 0.018667487131068052 7.795381120256358e-05']
['59866.393841244506 0.03346670104952154 6.685860084100373e-05 0.014694173754802949 4.013150183621848e-05 0.0005197000861617968 1.4193615313190324e-06 0.014694173754802949 4.013150183621848e-05 0.018772527294718594 7.797826585688522e-05']
['59866.393872782464 0.03342222964821984 6.684560221583045e-05 0.014716953448487731 4.014384693730067e-05 0.0005205057530178084 1.4197981499546323e-06 0.014716953448487731 4.014384693730067e-05 0.018705276199732106 7.797347614748531e-05']
['59866.39390432043 0.03350225900656942 6.685536104401056e-05 0.014720088540512872 4.0120065062420894e-05 0.0005206166342162193 1.4189570381894968e-06 0.01472008854051287 4.0120065062420894e-05 0.01878217046605655 7.796960254443965e-05']
['59866.39393585839 0.03353807477850517 6.691473362998292e-05 0.014721427006620933 4.013938065661834e-05 0.0005206639727711658 1.419640187588448e-06 0.014721427006620935 4.013938065661834e-05 0.018816647771884236 7.803045210857409e-05']
['59866.393967396354 0.03339027437985033 6.680199731793379e-05 0.014689032144934843 4.012151666610051e-05 0.0005195182389115836 1.4190083781675016e-06 0.014689032144934843 4.012151666610051e-05 0.018701242234915486 7.79245978190033e-05']
['59866.39399893432 0.03347605273954469 6.686669847417914e-05 0.014760696460238658 4.0156445816009577e-05 0.000522052845583561 1.4202437441377295e-06 0.014760696460238658 4.0156445816009577e-05 0.018715356279306032 7.799804808718551e-05']
['59866.39403047228 0.03347163324185607 6.687588111858997e-05 0.01466328373981387 4.009622327769372e-05 0.0005186075753667535 1.4181138075469497e-06 0.01466328373981387 4.009622327769372e-05 0.0188083495020422 7.797493569425015e-05']
['59866.394062010244 0.033454221187366476 6.686794461702559e-05 0.01463997998195544 4.009249617314345e-05 0.0005177833735321344 1.4179819881885952e-06 0.01463997998195544 4.009249617314345e-05 0.018814241205411038 7.796621234034089e-05']
['59866.39409354821 0.033464992906215005 6.68472811406125e-05 0.014725967393762425 4.013247103661139e-05 0.0005208245561171923 1.419395809770894e-06 0.014725967393762425 4.013247103661139e-05 0.01873902551245258 7.796905942357225e-05']
['59866.39412508617 0.033434375029029996 6.684940603053776e-05 0.014738289793960503 4.0141646487530305e-05 0.0005212603718732546 1.4197203249639703e-06 0.014738289793960501 4.0141646487530305e-05 0.018696085235069493 7.797560432190027e-05']
['59866.394156624134 0.03342116448236716 6.682136306272167e-05 0.01461941077338399 4.0073678482102e-05 0.0005170558865944379 1.4173164485115231e-06 0.01461941077338399 4.0073678482102e-05 0.018801753708983175 7.791658532460819e-05']
['59866.39418816209 0.03356266830977594 6.692569978550176e-05 0.014722048521721627 4.012958650103272e-05 0.0005206859543712728 1.4192937901940341e-06 0.014722048521721627 4.012958650103272e-05 0.018840619788054312 7.803481918043367e-05']
['59866.39421970006 0.03354307469645704 6.690349145305123e-05 0.014677645738566643 4.009996477415343e-05 0.0005191155271654609 1.4182461359149773e-06 0.014677645738566643 4.009996477415343e-05 0.018865428957890396 7.80005406615675e-05']
['59866.39425123802 0.033563977644390515 6.693447115019749e-05 0.014644947110140834 4.006785495965948e-05 0.0005179590497551737 1.417110483537538e-06 0.014644947110140836 4.006785495965948e-05 0.01891903053424968 7.801061741343244e-05']
['59866.39428277598 0.033512304040247444 6.688028090492754e-05 0.014701944086930497 4.010342349593171e-05 0.0005199749054434779 1.4183684631744866e-06 0.014701944086930497 4.010342349593171e-05 0.018810359953316945 7.798241179917472e-05']
['59866.39431431395 0.033493305484713215 6.686235302911386e-05 0.014715421645819442 4.012829929642775e-05 0.0005204515765808085 1.4192482646438893e-06 0.014715421645819442 4.012829929642775e-05 0.018777883838893773 7.797983493835784e-05']
['59866.394345851906 0.03351304037226594 6.689391993836516e-05 0.01469331388635939 4.011018510167307e-05 0.0005196696745366409 1.418607606058259e-06 0.014693313886359388 4.011018510167307e-05 0.018819726485906553 7.799758633195572e-05']
['59866.39437738987 0.03355846744771285 6.690901809825364e-05 0.014612570708449237 4.008171250837184e-05 0.0005168139687843411 1.4176005940656955e-06 0.014612570708449237 4.008171250837184e-05 0.018945896739263612 7.799589976707881e-05']
['59866.39440892784 0.03349669858769282 6.688824997602974e-05 0.01469104663286619 4.012402513968947e-05 0.0005195894868475998 1.4190970972722345e-06 0.01469104663286619 4.012402513968947e-05 0.018805651954826634 7.799984216821388e-05']
['59866.394440465796 0.03342544049165326 6.683562888593121e-05 0.01463198032467383 4.007867044475337e-05 0.0005175004435322658 1.4174930030741223e-06 0.01463198032467383 4.007867044475337e-05 0.018793460166979428 7.793138721463305e-05']
['59866.39447200376 0.03357836524620672 6.695035018395146e-05 0.014683348039161213 4.0108235481477867e-05 0.0005193172047935991 1.4185386523490994e-06 0.014683348039161213 4.0108235481477867e-05 0.018895017207045506 7.804498666276656e-05']
['59866.39450354173 0.03342690792871277 6.684856587282578e-05 0.014758074315280067 4.014074198444928e-05 0.0005219601061765247 1.4196883347114399e-06 0.014758074315280067 4.014074198444928e-05 0.018668833613432703 7.797441840960186e-05']
['59866.394535079686 0.03353352841687177 6.688993343706156e-05 0.014709472968870752 4.0109166117140414e-05 0.0005202411851716438 1.4185715668526355e-06 0.01470947296887075 4.0109166117140414e-05 0.018824055448001024 7.799364334243459e-05']
['59866.39456661765 0.0335382529739583 6.689693677204691e-05 0.014724650834231107 4.0134866157348873e-05 0.0005207779923489069 1.4194805198385991e-06 0.014724650834231105 4.0134866157348873e-05 0.018813602139727194 7.801286836767093e-05']
['59866.39459815561 0.033523665809919063 6.692123335944903e-05 0.014648283535193183 4.010421799364349e-05 0.0005180770516528041 1.4183965627829543e-06 0.014648283535193183 4.010421799364349e-05 0.01887538227472588 7.801794521282595e-05']
['59866.394629693576 0.03345042663283258 6.685976043714242e-05 0.014673112747953975 4.010950820889415e-05 0.0005189552054181287 1.418583665873435e-06 0.014673112747953975 4.010950820889415e-05 0.018777313884878608 7.796794350546525e-05']
['59866.39466123154 0.033562244897307796 6.694045477253324e-05 0.014678728308608332 4.012382854714575e-05 0.0005191538152484338 1.4190901442333217e-06 0.014678728308608332 4.012382854714575e-05 0.018883516588699464 7.804451359598775e-05']
['59866.3946927695 0.03356608970941029 6.691934890699435e-05 0.014746149471444807 4.013976622942951e-05 0.0005215383511005291 1.4196538244370747e-06 0.014746149471444807 4.013976622942951e-05 0.01881994023796548 7.803460829074043e-05']
['59866.394724307465 0.033512096861344674 6.688695179078355e-05 0.014686642889743085 4.009692492114953e-05 0.0005194337362951222 1.4181386231079006e-06 0.014686642889743085 4.009692492114953e-05 0.01882545397160159 7.79847915172882e-05']
['59866.39475584543 0.03339456101549745 6.681989986785308e-05 0.014625207196843907 4.0096728344233765e-05 0.0005172608931379712 1.4181316706217136e-06 0.014625207196843909 4.0096728344233765e-05 0.018769353818653536 7.792718808131852e-05']
['59866.39478738339 0.03350681867520288 6.689021135251834e-05 0.014704215888186843 4.0124171137348146e-05 0.0005200552539767378 1.4191022608831365e-06 0.014704215888186841 4.0124171137348146e-05 0.018802602787016037 7.800159924157821e-05']
['59866.394818921355 0.03350199826729982 6.688509260043277e-05 0.014706476879204063 4.013832861306987e-05 0.0005201352201759994 1.4196029791593176e-06 0.014706476879204063 4.013832861306987e-05 0.018795521388095756 7.800449369119224e-05']
['59866.39485045931 0.03340217638148917 6.680242676360238e-05 0.014741352944775554 4.0134607280894305e-05 0.0005213687086718438 1.419471363956956e-06 0.014741352944775554 4.0134607280894305e-05 0.018660823436713617 7.79317067893298e-05']
['59866.39488199728 0.033534783618512885 6.691732328883035e-05 0.01470401137137159 4.013444037856512e-05 0.0005200480206740505 1.4194654609945774e-06 0.01470401137137159 4.013444037856512e-05 0.018830772247141296 7.803013174820632e-05']
['59866.394913535245 0.03359366059662712 6.693416542080155e-05 0.01476008438086015 4.0143925166269866e-05 0.0005220311977038601 1.4198009167384413e-06 0.014760084380860149 4.0143925166269866e-05 0.01883357621576697 7.804945373501535e-05']
['59866.3949450732 0.03343775594256227 6.682700557274851e-05 0.014661829511257166 4.011847942987265e-05 0.0005185561425527125 1.4189009579099457e-06 0.014661829511257166 4.011847942987265e-05 0.018775926431305105 7.794447424664097e-05']
['59866.39497661117 0.033469423956194885 6.686720272437109e-05 0.014718753384400547 4.013739577534849e-05 0.0005205694127284247 1.419569986773882e-06 0.014718753384400547 4.013739577534849e-05 0.018750670571794338 7.798867443295278e-05']
['59866.395008149135 0.03351595362041895 6.686552915057164e-05 0.014660782960771373 4.0089124407548115e-05 0.0005185191284009326 1.4178627363749406e-06 0.014660782960771373 4.0089124407548115e-05 0.01885517065964758 7.796240686606472e-05']
['59866.39503968709 0.03358458071597174 6.695596113560411e-05 0.01474694735061639 4.0132148788567954e-05 0.000521566570303673 1.41938441257778e-06 0.014746947350616392 4.0132148788567954e-05 0.01883763336535535 7.806209129904402e-05']
['59866.39507122506 0.033436311718482804 6.682798511450011e-05 0.014695366270063943 4.012566690322828e-05 0.0005197422627614634 1.4191551627794767e-06 0.014695366270063945 4.012566690322828e-05 0.01874094544841886 7.794901371340549e-05']
['59866.39510276302 0.033421835639930175 6.685480684380415e-05 0.01465429072038496 4.008600598215825e-05 0.0005182895123677686 1.4177524446381719e-06 0.014654290720384962 4.008600598215825e-05 0.018767544919545215 7.795160725555304e-05']
['59866.39513430098 0.033601631432340275 6.697311545458456e-05 0.014712814871113068 4.01140116218274e-05 0.0005203593807852426 1.4187429415243484e-06 0.014712814871113067 4.01140116218274e-05 0.018888816561227206 7.806748440989511e-05']
['59866.39516583895 0.033446364370748785 6.683277422494089e-05 0.0146539135533761 4.009167069288575e-05 0.0005182761728135838 1.41795279279672e-06 0.0146539135533761 4.009167069288575e-05 0.018792450817372686 7.793562580456204e-05']
['59866.39519737691 0.03358219030780821 6.693243063639036e-05 0.014773690474985796 4.014635625351556e-05 0.0005225124148452535 1.419886898861161e-06 0.014773690474985796 4.014635625351556e-05 0.01880849983282241 7.804921646838868e-05']
['59866.39522891487 0.03342746801833171 6.682445270632373e-05 0.014671462101347885 4.010721749370011e-05 0.0005188968257366493 1.418502648396469e-06 0.014671462101347886 4.010721749370011e-05 0.01875600591698383 7.793648936529448e-05']
['59866.39526045284 0.033506233864553626 6.692610059723641e-05 0.014697309892197346 4.012513060730672e-05 0.000519811004332582 1.419136195191282e-06 0.014697309892197348 4.012513060730672e-05 0.018808923972356277 7.803287158246088e-05']
['59866.3952919908 0.03351634747342354 6.691173133069244e-05 0.01469400302490258 4.0119149317326685e-05 0.0005196940478267796 1.4189246503320845e-06 0.014694003024902579 4.0119149317326685e-05 0.01882234444852096 7.801747196376414e-05']
['59866.39532352876 0.03346398514856527 6.684857557897093e-05 0.014676776132741072 4.0112613868327134e-05 0.0005190847711508651 1.4186935061068392e-06 0.014676776132741072 4.0112613868327134e-05 0.018787209015824202 7.795995028402019e-05']
['59866.39535506672 0.03347656699893832 6.686526447832809e-05 0.014650524274449617 4.010301046844384e-05 0.0005181563015925467 1.4183538553153028e-06 0.014650524274449617 4.010301046844384e-05 0.018826042724488703 7.796932116152404e-05']
['59866.39538660469 0.033495317691679655 6.690897719312663e-05 0.014777523518573237 4.016530256878461e-05 0.000522647981030593 1.420556987689705e-06 0.014777523518573237 4.016530256878461e-05 0.018717794173106417 7.80388541655524e-05']
['59866.39541814265 0.03351426654837315 6.690315459338065e-05 0.014641399261905622 4.007900798496523e-05 0.0005178335702920683 1.4175049411170578e-06 0.01464139926190562 4.007900798496523e-05 0.018872867286467532 7.798947990341195e-05']
['59866.39544968061 0.03343527022686264 6.684942121007246e-05 0.014711651101063077 4.0112457481415236e-05 0.0005203182208394474 1.4186879750512696e-06 0.014711651101063076 4.0112457481415236e-05 0.01872361912579957 7.796059492666812e-05']
['59866.39548121858 0.03346896707097599 6.685154754640016e-05 0.014606692672229945 4.006272902341149e-05 0.0005166060757799026 1.4169291906282398e-06 0.014606692672229946 4.006272902341149e-05 0.018862274398746045 7.793684408642616e-05']
['59866.39551275654 0.03346138818288082 6.686039976705601e-05 0.01466110305905997 4.010062398869615e-05 0.0005185304495620227 1.4182694508600952e-06 0.01466110305905997 4.010062398869615e-05 0.018800285123820853 7.796392179266853e-05']
['59866.3955442945 0.033466415333507804 6.6880684697806e-05 0.014651455422077067 4.009453599645779e-05 0.0005181892342031371 1.4180541321804863e-06 0.014651455422077067 4.009453599645779e-05 0.018814959911430736 7.797818799137738e-05']
['59866.39557583247 0.03354528263753793 6.69361311555973e-05 0.014684957235676293 4.0120317259521194e-05 0.000519374118477995 1.418965957837307e-06 0.014684957235676295 4.0120317259521194e-05 0.01886032540186163 7.80389999364674e-05']
['59866.395607370425 0.03349142792366544 6.689449576437351e-05 0.0147816367188337 4.015918029744063e-05 0.0005227934557313441 1.4203404566347396e-06 0.014781636718833702 4.015918029744063e-05 0.01870979120483174 7.802328707336117e-05']
['59866.39563890839 0.03355368770717946 6.694375145296044e-05 0.014662623722057415 4.010393178166858e-05 0.0005185842320137606 1.418386440105048e-06 0.014662623722057417 4.010393178166858e-05 0.018891063985122043 7.803711426587012e-05']
['59866.395670446356 0.033490005571680054 6.690490299970835e-05 0.014710774945925447 4.0117927264599816e-05 0.0005202872331903209 1.4188814290582623e-06 0.014710774945925447 4.0117927264599816e-05 0.01877923062575461 7.801098726082182e-05']
['59866.395701984315 0.03355721064660929 6.691978349592968e-05 0.01473060587357376 4.0137238923263835e-05 0.0005209886087817269 1.4195644392661917e-06 0.01473060587357376 4.0137238923263835e-05 0.01882660477303553 7.80336810071476e-05']
['59866.39573352228 0.03348525289320643 6.686091809147176e-05 0.014683493021976048 4.011287582643147e-05 0.0005193223325117423 1.4187027709795478e-06 0.01468349302197605 4.011287582643147e-05 0.01880175987123038 7.797066868445599e-05']
['59866.395765060246 0.03349148523432245 6.691054467146583e-05 0.01468207527804467 4.011300157306599e-05 0.0005192721900773606 1.4187072183569835e-06 0.01468207527804467 4.011300157306599e-05 0.018809409956277782 7.801329299185505e-05']
['59866.395796598204 0.03352213742218533 6.690520270408657e-05 0.014701862707687837 4.012712040833233e-05 0.0005199720272415369 1.4192065700066143e-06 0.014701862707687837 4.012712040833233e-05 0.018820274714497494 7.801597234630684e-05']
['59866.39582813617 0.03344269563002173 6.683600415674519e-05 0.014674084128962164 4.0100988559096445e-05 0.0005189895609934795 1.4182823449003869e-06 0.014674084128962164 4.0100988559096445e-05 0.018768611501059566 7.794318915118398e-05']
['59866.39585967413 0.033591463258235005 6.696313719708623e-05 0.014664456545513845 4.010254108026426e-05 0.0005186490548832951 1.418337254104412e-06 0.014664456545513843 4.010254108026426e-05 0.018927006712721163 7.805303033431871e-05']
['59866.395891212094 0.03352119518337318 6.689236512760901e-05 0.014667900298831171 4.011169845547964e-05 0.0005187708527417933 1.4186611300002508e-06 0.014667900298831173 4.011169845547964e-05 0.01885329488454201 7.799703113163147e-05']
['59866.39592275006 0.03347435186179492 6.684783857460509e-05 0.01473772095254188 4.013780921812499e-05 0.0005212402532235636 1.4195846093208966e-06 0.014737720952541878 4.013780921812499e-05 0.01873663090925304 7.797228514624321e-05']
['59866.39595428802 0.033429006633142085 6.68490137991641e-05 0.014751972244999302 4.0138699912747586e-05 0.0005217442895880186 1.4196161111991125e-06 0.014751972244999302 4.0138699912747586e-05 0.018677034388142784 7.797375120260943e-05']
['59866.395985825984 0.0334458374853316 6.68641383886093e-05 0.014606687232300377 4.0065438138832225e-05 0.0005166058833817513 1.4170250059861546e-06 0.014606687232300377 4.0065438138832225e-05 0.018839150253031223 7.794903678498976e-05']
['59866.39601736395 0.033557219071289356 6.69280472990229e-05 0.01475565792852045 4.014837424232126e-05 0.0005218746439771437 1.4199582706152792e-06 0.014755657928520452 4.014837424232126e-05 0.018801561142768902 7.804649556233599e-05']
['59866.39604890191 0.033447776061730536 6.684315229774e-05 0.014717217360644309 4.012897081061092e-05 0.0005205150870009776 1.4192720145998025e-06 0.01471721736064431 4.012897081061092e-05 0.018730558701086225 7.796371789119428e-05']
['59866.396080439874 0.03329948576118189 6.673806853376274e-05 0.014678603561522282 4.010646616554357e-05 0.0005191494032227936 1.4184760755986918e-06 0.014678603561522282 4.010646616554357e-05 0.01862088219965961 7.786204736522861e-05']
['59866.39611197783 0.033439545020446236 6.682955816780059e-05 0.01469967902998582 4.0106999281126174e-05 0.000519894795441449 1.4184949307054053e-06 0.014699679029985818 4.0106999281126174e-05 0.018739865990460416 7.794075465531301e-05']
['59866.3961435158 0.03345607535551757 6.684111365921533e-05 0.01463602066044937 4.0094617941887383e-05 0.0005176433411790276 1.418057030407194e-06 0.01463602066044937 4.0094617941887383e-05 0.0188200546950682 7.794429333254655e-05']
['59866.396175053764 0.03339689487971955 6.682466073042297e-05 0.014606834630420371 4.006285619154905e-05 0.0005166110965238401 1.4169336882810614e-06 0.014606834630420371 4.006285619154905e-05 0.01879006024929918 7.791384811418875e-05']
['59866.39620659172 0.03338923783799918 6.678320935198422e-05 0.014614234191272939 4.0065929486311354e-05 0.0005168728024541501 1.4170423838483944e-06 0.014614234191272939 4.0065929486311354e-05 0.01877500364672624 7.787988030905688e-05']
['59866.39623812969 0.033534190813466404 6.688986251982652e-05 0.014669307192832682 4.010406712552412e-05 0.0005188206114384036 1.4183912269147426e-06 0.01466930719283268 4.010406712552412e-05 0.018864883620633724 7.799096042446097e-05']
['59866.39626966765 0.03356470090593089 6.693503209410584e-05 0.014760534871827656 4.0161671625827995e-05 0.0005220471305625927 1.4204285693520095e-06 0.014760534871827656 4.0161671625827995e-05 0.01880416603410323 7.805932608740493e-05']
['59866.39630120561 0.03353329656254663 6.69011622301224e-05 0.014740213933170933 4.014436719416178e-05 0.0005213284243769295 1.4198165502771041e-06 0.014740213933170933 4.014436719416178e-05 0.0187930826293757 7.802137992345976e-05']
['59866.39633274358 0.03344905601453647 6.68616879940445e-05 0.014645123726721741 4.009839950748246e-05 0.0005179652962889256 1.4181907759309901e-06 0.014645123726721743 4.009839950748246e-05 0.018803932287814726 7.796388243587299e-05']
['59866.396364281536 0.033478689758576104 6.686119939950248e-05 0.014687364298812636 4.010956933697118e-05 0.0005194592509216579 1.4185858278369065e-06 0.014687364298812637 4.010956933697118e-05 0.018791325459763468 7.796920890670451e-05']
['59866.3963958195 0.03341160217237583 6.682138594139645e-05 0.014631678473971926 4.0073041931777075e-05 0.000517489767747536 1.417293935149137e-06 0.014631678473971926 4.0073041931777075e-05 0.0187799236984039 7.791627755992337e-05']
['59866.39642735747 0.03353186403434393 6.690247082988829e-05 0.014675162906631812 4.010266831504635e-05 0.0005190277149487287 1.4183417541143015e-06 0.01467516290663181 4.010266831504635e-05 0.018856701127712122 7.80010551795979e-05']
['59866.396458895426 0.03348763035558514 6.68470391274183e-05 0.014797485387011264 4.019721381646055e-05 0.0005233539877050957 1.421685617202562e-06 0.014797485387011264 4.019721381646055e-05 0.01869014496857388 7.800219637105637e-05']
['59866.39649043339 0.033437435226594994 6.683831475193953e-05 0.014674240571566207 4.011499438032481e-05 0.0005189950940187558 1.4187776994960659e-06 0.014674240571566206 4.011499438032481e-05 0.01876319465502879 7.795237708378641e-05']
['59866.39652197136 0.033399017973827626 6.68170723215183e-05 0.014704875050349507 4.014052570252083e-05 0.0005200785670692905 1.419680685302992e-06 0.014704875050349505 4.014052570252083e-05 0.01869414292347812 7.794730885215821e-05']
['59866.396553509316 0.0335100980921669 6.690487973031755e-05 0.014657829251645613 4.009379793681974e-05 0.0005184146623103059 1.4180280286605547e-06 0.014657829251645615 4.009379793681974e-05 0.018852268840521286 7.799856129908285e-05']
['59866.39658504728 0.03348582156130306 6.687023275923925e-05 0.01463367005405713 4.008488324996861e-05 0.0005175602054842301 1.417712736109783e-06 0.01463367005405713 4.008488324996861e-05 0.01885215150724593 7.796426036613474e-05']
['59866.39661658524 0.033471801530962804 6.683408975089701e-05 0.014744802827988462 4.013119789665871e-05 0.0005214907233310491 1.419350781656068e-06 0.014744802827988462 4.013119789665871e-05 0.01872699870297434 7.795709459344762e-05']
['59866.396648123206 0.03350983906667871 6.688923255718866e-05 0.014737454130765963 4.012643949889747e-05 0.0005212308163336611 1.4191824877616463e-06 0.014737454130765963 4.012643949889747e-05 0.018772384935912746 7.800192676433287e-05']
['59866.39667966117 0.03346696743900866 6.686995772986742e-05 0.014679910794928292 4.01211414664518e-05 0.0005191956371468694 1.4189951081944484e-06 0.01467991079492829 4.01211414664518e-05 0.018787056644080372 7.798267268672761e-05']
['59866.39671119913 0.03357409530841253 6.694353340298054e-05 0.014781264295627145 4.016996373115778e-05 0.000522780283954845 1.4207218425857591e-06 0.014781264295627145 4.016996373115778e-05 0.018792831012785387 7.807088222018824e-05']
['59866.396742737095 0.03354086464179864 6.691840721244237e-05 0.014707839394416871 4.013226495021498e-05 0.0005201834092940341 1.4193885209556291e-06 0.014707839394416871 4.013226495021498e-05 0.018833025247381768 7.802994241882095e-05']
['59866.39677427506 0.03335486320435749 6.677258615210711e-05 0.014642826816250138 4.0077750280720435e-05 0.0005178840596988377 1.417460458928723e-06 0.014642826816250138 4.0077750280720435e-05 0.01871203638810735 7.787685361520682e-05']
['59866.39680581302 0.033484839137793564 6.688518234029307e-05 0.014737441068152609 4.012772457312171e-05 0.0005212303543382199 1.4192279379649858e-06 0.014737441068152607 4.012772457312171e-05 0.018747398069640958 7.799911471363357e-05']
['59866.396837350985 0.03347310781536142 6.687682276092356e-05 0.014724679822303108 4.014798683540041e-05 0.0005207790175922291 1.4199445688982925e-06 0.014724679822303108 4.014798683540041e-05 0.01874842799305831 7.800237348652583e-05']
['59866.39686888894 0.033520498109676 6.688124138966574e-05 0.014700162543916203 4.009973360671024e-05 0.0005199118962485766 1.4182379600391404e-06 0.014700162543916203 4.009973360671024e-05 0.018820335565759797 7.79813380569471e-05']
['59866.39690042691 0.03341109689615355 6.685173818059905e-05 0.014658875973052307 4.0086138687388595e-05 0.000518451682507176 1.4177571381255902e-06 0.014658875973052307 4.0086138687388595e-05 0.01875222092310124 7.794904369286333e-05']
['59866.396931964875 0.03350366969968485 6.689702273820685e-05 0.014705526335311796 4.0126910221812244e-05 0.0005201016015628705 1.419199136179138e-06 0.014705526335311797 4.0126910221812244e-05 0.018798143364373056 7.800884933894067e-05']
['59866.39696350283 0.03342901285073429 6.684221977595187e-05 0.014635562624850343 4.007125347066462e-05 0.0005176271414835393 1.4172306812765647e-06 0.014635562624850343 4.007125347066462e-05 0.018793450225883947 7.793322590068309e-05']
['59866.3969950408 0.03349941265167246 6.688859644500198e-05 0.014754983223138998 4.015707764631812e-05 0.0005218507811556794 1.4202660905636852e-06 0.014754983223138996 4.015707764631812e-05 0.018744429428533462 7.801714695805501e-05']
['59866.397026578765 0.03345986429840716 6.68723928070727e-05 0.014603652134438632 4.005039355813514e-05 0.0005164985387534259 1.4164929127895578e-06 0.014603652134438632 4.005039355813514e-05 0.018856212163968527 7.794838640988626e-05']
['59866.39705811672 0.03337501687479445 6.680677756992466e-05 0.014636410104674747 4.008831592058689e-05 0.0005176571149509225 1.4178341419979842e-06 0.014636410104674747 4.008831592058689e-05 0.018738606770119706 7.791160762444946e-05']
['59866.39708965469 0.03345376548472767 6.684377605732605e-05 0.014688594858233425 4.011946201325794e-05 0.0005195027730582327 1.4189357096883387e-06 0.014688594858233425 4.011946201325794e-05 0.018765170626494247 7.795935883417206e-05']
['59866.39712119265 0.033534483186467616 6.692587989142002e-05 0.014609665034778367 4.007789080026543e-05 0.000516711201600401 1.4174654287909868e-06 0.014609665034778369 4.007789080026543e-05 0.018924818151689247 7.80084016644283e-05']
['59866.39715273061 0.03348540079236902 6.688471275668259e-05 0.014681111773783102 4.011282845102163e-05 0.0005192381130849343 1.4187010954171795e-06 0.014681111773783102 4.011282845102163e-05 0.01880428901858592 7.799104953060338e-05']
['59866.39718426858 0.0335137848909535 6.691798677442925e-05 0.014701603283565921 4.011781834895685e-05 0.0005199628519901235 1.4188775769553827e-06 0.014701603283565921 4.011781834895685e-05 0.018812181607387582 7.802215264283977e-05']
['59866.39721580654 0.033597349991965744 6.695894482166035e-05 0.014745605377589774 4.0136970605771635e-05 0.0005215191077168548 1.4195549494761467e-06 0.014745605377589774 4.0136970605771635e-05 0.01885174461437597 7.806712945304657e-05']
['59866.3972473445 0.033479461797957175 6.68761360946282e-05 0.014671126013438786 4.01184665701158e-05 0.0005188849390584168 1.4189005030890857e-06 0.014671126013438788 4.01184665701158e-05 0.018808335784518387 7.798659461012983e-05']
['59866.39727888247 0.03336515544073717 6.679098475654431e-05 0.014715654796838007 4.013005909915922e-05 0.0005204598226112733 1.4193105049335738e-06 0.014715654796838007 4.013005909915922e-05 0.018649500643899163 7.791955651857205e-05']
['59866.39731042043 0.03352601974390579 6.689510308008589e-05 0.014708910195150094 4.0122819678578e-05 0.0005202212811228694 1.4190544628067691e-06 0.014708910195150094 4.0122819678578e-05 0.018817109548755692 7.800509903240302e-05']
['59866.39734195839 0.03339398617477471 6.680172677279391e-05 0.014681971065732222 4.0123762278810164e-05 0.0005192685043207702 1.419087800470393e-06 0.014681971065732222 4.0123762278810164e-05 0.01871201510904249 7.792552213000232e-05']
['59866.39737349635 0.03350939897941509 6.689303049451991e-05 0.01473781770625083 4.0134377105588495e-05 0.0005212436751860175 1.4194632231708008e-06 0.01473781770625083 4.0134377105588495e-05 0.018771581273164265 7.800926710586606e-05']
['59866.39740503432 0.03350763074383462 6.688090875607797e-05 0.014661066669088217 4.009238941620077e-05 0.0005185291625300487 1.4179782124341202e-06 0.014661066669088217 4.009238941620077e-05 0.018846564074746407 7.797727646653936e-05']
['59866.39743657228 0.03352873451017581 6.689487101345365e-05 0.014709252208402628 4.012368970630726e-05 0.000520233377367257 1.4190852337431554e-06 0.01470925220840263 4.012368970630726e-05 0.01881948230177318 7.800534753178546e-05']
['59866.39746811024 0.033416137666983106 6.681128189979983e-05 0.014610726283877735 4.0080989141413595e-05 0.0005167487356092935 1.4175750101930125e-06 0.014610726283877737 4.0080989141413595e-05 0.018805411383105368 7.79117005311053e-05']
['59866.39749964821 0.03349945942311666 6.688413779943354e-05 0.01460391836537642 4.006657818698651e-05 0.0005165079547467044 1.417065326941514e-06 0.014603918365376422 4.006657818698651e-05 0.018895541057740238 7.796677867391673e-05']
['59866.39753118617 0.03343271638702829 6.681540204749549e-05 0.014680719957282049 4.011027245997978e-05 0.0005192242554109504 1.418610695726333e-06 0.014680719957282049 4.011027245997978e-05 0.018751996429746245 7.793030160073986e-05']
['59866.39756272413 0.03329619713207523 6.673588389124784e-05 0.014661516089088195 4.0098692174104235e-05 0.0005185450575110532 1.4182011268953309e-06 0.014661516089088195 4.0098692174104235e-05 0.018634681042987038 7.785617067914193e-05']
['59866.3975942621 0.03347548778719506 6.688506372834653e-05 0.014717817588046135 4.0141355499080735e-05 0.0005205363157027509 1.4197100333528299e-06 0.014717817588046135 4.0141355499080735e-05 0.018757670199148924 7.800602650596013e-05']
['59866.397625800055 0.033566077326061435 6.694993490479212e-05 0.01473217142354656 4.013140392861622e-05 0.0005210439787854665 1.4193580685459511e-06 0.01473217142354656 4.013140392861622e-05 0.018833905902514873 7.80565395405001e-05']
['59866.39765733802 0.033383301628925464 6.678488743972113e-05 0.014650298405924847 4.010980472626416e-05 0.000518148313127612 1.418594153030135e-06 0.014650298405924847 4.010980472626416e-05 0.018733003223000616 7.79038999377776e-05']
['59866.397688875986 0.033544700467032285 6.689709586656305e-05 0.01473050976654059 4.011864810410373e-05 0.0005209852096907503 1.4189069235405342e-06 0.01473050976654059 4.011864810410373e-05 0.018814190700491694 7.800466243168438e-05']
['59866.397720413945 0.03339748146797907 6.680337717232778e-05 0.014649908502139014 4.009397344535501e-05 0.0005181345231020908 1.4180342360052087e-06 0.014649908502139014 4.009397344535501e-05 0.018747572965840058 7.791160316836715e-05']
['59866.39775195191 0.0334982090350251 6.688766767877257e-05 0.014701422107548196 4.0117669111941685e-05 0.0005199564441992812 1.4188722987756814e-06 0.014701422107548198 4.0117669111941685e-05 0.018796786927476904 7.799607337860769e-05']
['59866.397783489876 0.03347240705803403 6.688000994854884e-05 0.014733599275656727 4.0149296460956246e-05 0.0005210944787235415 1.4199908874273614e-06 0.014733599275656728 4.0149296460956246e-05 0.018738807782377305 7.800578015139484e-05']
['59866.397815027834 0.03355940600254844 6.694932544936853e-05 0.014676367196386028 4.011654310032952e-05 0.0005190703079859061 1.418832474261447e-06 0.014676367196386026 4.011654310032952e-05 0.018883038806162412 7.804837735946892e-05']
['59866.3978465658 0.03341799673989797 6.68038043766795e-05 0.014666170424622075 4.008833918658138e-05 0.0005187096709570588 1.4178349648642129e-06 0.014666170424622073 4.008833918658138e-05 0.018751826315275895 7.790907019042173e-05']
['59866.39787810376 0.03351527098924241 6.690291814278241e-05 0.014710493739032519 4.011200920679051e-05 0.0005202772875309785 1.418672120579628e-06 0.014710493739032519 4.011200920679051e-05 0.01880477725020989 7.800624166453278e-05']
['59866.397909641724 0.03348585107395527 6.688889660562202e-05 0.014607643346502741 4.007630713064919e-05 0.0005166396990042995 1.4174094179359536e-06 0.014607643346502743 4.007630713064919e-05 0.018878207727452526 7.797586089520087e-05']
['59866.39794117969 0.03344275495768603 6.682629536069887e-05 0.014694049252807168 4.011333595542576e-05 0.0005196956828044516 1.418719044713748e-06 0.014694049252807168 4.011333595542576e-05 0.018748705704878865 7.79412180627697e-05']
['59866.39797271765 0.033382378159901895 6.681956881280065e-05 0.014653061878693967 4.010312515988719e-05 0.0005182460509834577 1.4183579116953337e-06 0.014653061878693968 4.010312515988719e-05 0.018729316281207928 7.793019584165163e-05']
['59866.398004255614 0.03350274372782306 6.68981702933853e-05 0.014727181862917584 4.013149026314244e-05 0.0005208675091770314 1.419361122005197e-06 0.014727181862917585 4.013149026314244e-05 0.018775561864905477 7.801218942795719e-05']
['59866.39803579358 0.03344768301222799 6.684775031737104e-05 0.014683527112913361 4.0136797662314974e-05 0.0005193235382320063 1.4195488328525906e-06 0.014683527112913361 4.0136797662314974e-05 0.018764155899314627 7.797168876636694e-05']
['59866.39806733154 0.03359602461962188 6.695381512135424e-05 0.014702785255670113 4.010296376943991e-05 0.0005200046557018967 1.4183522036758999e-06 0.014702785255670115 4.010296376943991e-05 0.018893239363951764 7.804525009504098e-05']
['59866.398098869504 0.033450548052023785 6.686822227996526e-05 0.014571281937352095 4.003438062592023e-05 0.0005153536772256078 1.4159265711639138e-06 0.014571281937352095 4.003438062592023e-05 0.018879266114671688 7.793658180202606e-05']
['59866.39813040746 0.03349195737566717 6.689397462670799e-05 0.014652117873403639 4.0097636784822835e-05 0.0005182126636260664 1.4181638001351039e-06 0.01465211787340364 4.0097636784822835e-05 0.018839839502263526 7.799118102122976e-05']
['59866.39816194543 0.03355548339951225 6.69285484236002e-05 0.014647041546568129 4.008417918672318e-05 0.0005180331252908172 1.417687834966281e-06 0.01464704154656813 4.008417918672318e-05 0.018908441852944116 7.801392193168812e-05']
['59866.398193483394 0.03349471559181983 6.68624900601895e-05 0.014657039776663333 4.009599464989961e-05 0.0005183867403445553 1.4181057214928249e-06 0.014657039776663331 4.009599464989961e-05 0.0188376758151565 7.796333345883639e-05']
['59866.39822502135 0.03346621350886681 6.684613750956374e-05 0.014653644568793457 4.0089400119718914e-05 0.0005182666594300408 1.4178724876982413e-06 0.014653644568793455 4.0089400119718914e-05 0.018812568940073354 7.794591780142449e-05']
['59866.39825655932 0.033469585848796946 6.685978053763534e-05 0.01470473475987012 4.013282830755824e-05 0.0005200736053085654 1.4194084456458306e-06 0.014704734759870122 4.013282830755824e-05 0.018764851088926823 7.797995999937874e-05']
['59866.39828809728 0.03338986968334771 6.680059085844042e-05 0.014705164970284061 4.0125615472399946e-05 0.0005200888208894428 1.4191533437860196e-06 0.014705164970284061 4.0125615472399946e-05 0.018684704713063646 7.792550260393355e-05']
['59866.39831963524 0.033483654228539037 6.687310333971636e-05 0.014762903503833656 4.0158922312351917e-05 0.000522130903783064 1.4203313322787146e-06 0.014762903503833656 4.0158922312351917e-05 0.01872075072470538 7.800481390000171e-05']
['59866.39835117321 0.03337536215041973 6.681136669216994e-05 0.014662948133023244 4.009062205380622e-05 0.0005185957057046061 1.4179157047760474e-06 0.014662948133023245 4.009062205380622e-05 0.018712414017396484 7.791672924306261e-05']
['59866.398382711166 0.0335633053578283 6.693467455727674e-05 0.014722512040369399 4.014263683941922e-05 0.0005207023479899413 1.419755351496975e-06 0.014722512040369399 4.014263683941922e-05 0.018840793317458904 7.804922773807598e-05']
['59866.39841424913 0.033522504483686294 6.68958324052738e-05 0.014678277213385433 4.01011995754095e-05 0.0005191378610185384 1.4182898080757859e-06 0.014678277213385433 4.01011995754095e-05 0.018844227270300863 7.799460622749052e-05']
['59866.3984457871 0.033460680196384936 6.684840227988655e-05 0.014637344865551499 4.0093833481101964e-05 0.0005176901753540656 1.4180292857823802e-06 0.014637344865551499 4.0093833481101964e-05 0.018823335330833437 7.795014028585114e-05']
['59866.398477325056 0.03346832301409089 6.68572162854068e-05 0.014730086962079605 4.012852196906474e-05 0.0005209702560418775 1.4192561400774157e-06 0.014730086962079603 4.012852196906474e-05 0.018738236052011286 7.797554517190229e-05']
['59866.39850886302 0.033473963020051664 6.68572222064598e-05 0.014689841731625696 4.012037353370067e-05 0.0005195468721835194 1.4189679481292698e-06 0.014689841731625698 4.012037353370067e-05 0.018784121288425965 7.797135713611512e-05']
['59866.39854040099 0.03342087819496453 6.68417420147045e-05 0.014676526219612551 4.009862742054888e-05 0.0005190759322820323 1.4181988367067936e-06 0.014676526219612551 4.009862742054888e-05 0.01874435197535198 7.794689472052307e-05']
['59866.398571938946 0.033468232591221926 6.685250688249536e-05 0.014692431995014622 4.0108935004050844e-05 0.0005196384840106876 1.4185633928991647e-06 0.014692431995014622 4.0108935004050844e-05 0.018775800596207304 7.796142856331755e-05']
['59866.39860347691 0.03346035749170477 6.685595389787491e-05 0.014681290604991603 4.010507329735262e-05 0.0005192444379451147 1.418426812963655e-06 0.014681290604991603 4.010507329735262e-05 0.018779066886713165 7.796239783242176e-05']
['59866.39863501487 0.03358790406670899 6.694435831627373e-05 0.014659341218223381 4.009248974145808e-05 0.0005184681371891151 1.4179817607142575e-06 0.014659341218223381 4.009248974145808e-05 0.018928562848485604 7.803175535669161e-05']
['59866.398666552835 0.03350703916474092 6.690799984915558e-05 0.014665919426855184 4.009122095067224e-05 0.0005187007937269909 1.417936886419743e-06 0.014665919426855183 4.009122095067224e-05 0.018841119737885735 7.799991308411968e-05']
['59866.3986980908 0.03347412611023687 6.685813100353571e-05 0.014660604576589964 4.0103983268047365e-05 0.0005185128193511013 1.4183882610632002e-06 0.014660604576589964 4.0103983268047365e-05 0.018813521533646904 7.796370408882435e-05']
['59866.39872962876 0.033479294243391786 6.68897844579286e-05 0.014684089540690788 4.009948761021633e-05 0.0005193434300455417 1.4182292596929204e-06 0.014684089540690786 4.009948761021633e-05 0.018795204702700997 7.798853871839143e-05']
['59866.398761166725 0.03347864882430514 6.68662582036042e-05 0.014675495749087221 4.010057412967643e-05 0.0005190394868425175 1.4182676874579963e-06 0.014675495749087221 4.010057412967643e-05 0.018803153075217918 7.796892029315746e-05']
['59866.39879270469 0.03349271631313108 6.686747330871897e-05 0.014669408246383131 4.0105523615087497e-05 0.0005188241854766416 1.4184427396955366e-06 0.01466940824638313 4.0105523615087497e-05 0.01882330806674795 7.797250804695579e-05']
['59866.39882424265 0.03341984611392729 6.683450195709966e-05 0.014662615810053058 4.0101600305214366e-05 0.0005185839521838488 1.4183039809934056e-06 0.01466261581005306 4.0101600305214366e-05 0.018757230303874228 7.794221576843146e-05']
['59866.398855780615 0.03343880139201261 6.684187628929578e-05 0.014677337080124503 4.0111421800968966e-05 0.0005191046106061734 1.4186513453484946e-06 0.014677337080124501 4.0111421800968966e-05 0.018761464311888104 7.795359250713703e-05']
['59866.39888731857 0.03341648330561957 6.684263569810044e-05 0.014688489520922367 4.011416986160966e-05 0.0005194990475129557 1.4187485381118017e-06 0.014688489520922368 4.011416986160966e-05 0.0187279937846972 7.795565772126513e-05']
['59866.39891885654 0.033475210021918396 6.68638661913466e-05 0.014656572515933499 4.010427501039383e-05 0.0005183702143768074 1.418398579337989e-06 0.014656572515933499 4.010427501039383e-05 0.0188186375059849 7.796877244232848e-05']
['59866.398950394505 0.03358477877512672 6.695839087800243e-05 0.014694970316681055 4.009932106221477e-05 0.0005197282587752144 1.418223369262318e-06 0.014694970316681056 4.009932106221477e-05 0.018889808458445664 7.804730398048314e-05']
['59866.39898193246 0.033496649062891744 6.687377998370917e-05 0.014650230136634329 4.008168313252562e-05 0.0005181458985953793 1.417599555107666e-06 0.01465023013663433 4.008168313252562e-05 0.018846418926257415 7.796565764518202e-05']
['59866.39901347043 0.03359403893671587 6.693457874537409e-05 0.014698360454695768 4.0119734272504046e-05 0.0005198481603802822 1.41894533888941e-06 0.01469836045469577 4.0119734272504046e-05 0.018895678482020103 7.803736867627598e-05']
['59866.399045008395 0.03350142306946881 6.689960304722129e-05 0.014723640178635915 4.013549586723431e-05 0.0005207422477191873 1.4195027912699284e-06 0.014723640178635916 4.013549586723431e-05 0.018777782890832893 7.801547869740057e-05']
['59866.39907654635 0.03351591945768521 6.687552766215242e-05 0.014703173492845702 4.011487393297664e-05 0.0005200183867831382 1.4187734395425451e-06 0.014703173492845703 4.011487393297664e-05 0.018812745964839506 7.798422475571532e-05']
['59866.39910808432 0.033641915260941783 6.696115009195129e-05 0.01470194883333543 4.01032625266564e-05 0.0005199750733132128 1.418362770050964e-06 0.014701948833335431 4.01032625266564e-05 0.018939966427606352 7.805169624626201e-05']
['59866.39913962228 0.033409579698203296 6.684715463599108e-05 0.014651448688024083 4.010277832997394e-05 0.0005181889960347328 1.4183456450964215e-06 0.014651448688024083 4.010277832997394e-05 0.018758131010179212 7.795367157941396e-05']
['59866.39917116024 0.03347669720380934 6.684342585315806e-05 0.01469914996440288 4.013024182249532e-05 0.0005198760835741724 1.419316967449609e-06 0.01469914996440288 4.013024182249532e-05 0.01877754723940646 7.796460663992727e-05']
['59866.39920269821 0.03346270235072417 6.682244009257414e-05 0.014724486409277373 4.012309770170747e-05 0.0005207721770057615 1.419064295863513e-06 0.014724486409277373 4.012309770170747e-05 0.018738215941446798 7.794293726250264e-05']
['59866.39923423617 0.03345181820076283 6.686401975183784e-05 0.014670334224061263 4.0106970150020166e-05 0.0005188569352376789 1.41849390040329e-06 0.014670334224061264 4.0106970150020166e-05 0.01878148397670157 7.797029044442998e-05']
['59866.39926577413 0.03347607185925099 6.685221085243903e-05 0.01472924688386401 4.0149672368186814e-05 0.0005209405443528563 1.4200041824260035e-06 0.014729246883864011 4.0149672368186814e-05 0.01874682497538698 7.798214082167602e-05']
['59866.3992973121 0.033386126083501465 6.682377767385215e-05 0.014599518166866029 4.007745403623155e-05 0.0005163523295592567 1.4174499814232184e-06 0.01459951816686603 4.007745403623155e-05 0.018786607916635435 7.792059794836454e-05']
['59866.39932885006 0.03341038131177162 6.68498378633684e-05 0.014683713322932439 4.0113375218566524e-05 0.0005193301240642262 1.4187204333632888e-06 0.014683713322932439 4.0113375218566524e-05 0.01872666798883918 7.796142439555701e-05']
['59866.39936038802 0.033451459203521536 6.686423168221294e-05 0.014638300220601004 4.008003507967545e-05 0.0005177239641270737 1.4175412671615367e-06 0.014638300220601004 4.008003507967545e-05 0.018813158982920533 7.795662056836907e-05']
['59866.39939192598 0.03357404179950818 6.693570037824412e-05 0.014656455778307828 4.0103451127447626e-05 0.0005183660856278807 1.4183694404394519e-06 0.014656455778307828 4.0103451127447626e-05 0.018917586021200354 7.802996076801302e-05']
['59866.39942346395 0.033392365522092446 6.679346708850846e-05 0.014766679253231989 4.015621663065642e-05 0.0005222644436009798 1.4202356383639875e-06 0.01476667925323199 4.015621663065642e-05 0.018625686268860457 7.793515881674887e-05']
['59866.39945500191 0.03337280131658795 6.680124030411104e-05 0.014615293460466125 4.008526577810343e-05 0.0005169102664381858 1.4177262652750114e-06 0.014615293460466125 4.008526577810343e-05 0.018757507856121826 7.790529018409968e-05']
['59866.39948653987 0.03353409030886032 6.69077093030144e-05 0.014648805380909659 4.008796951996211e-05 0.0005180955081695393 1.4178218905820457e-06 0.014648805380909659 4.008796951996211e-05 0.018885284927950663 7.799799269474882e-05']
['59866.39951807784 0.03349375750736803 6.68888085734749e-05 0.014711974389522138 4.013253017278612e-05 0.0005203296548297372 1.4193979012852329e-06 0.014711974389522138 4.013253017278612e-05 0.01878178311784589 7.80046965922473e-05']
['59866.3995496158 0.03352594054766789 6.690111592567648e-05 0.014695022067494266 4.012155870933603e-05 0.0005197300890858213 1.4190098651427807e-06 0.014695022067494266 4.012155870933603e-05 0.01883091848017362 7.800960700687768e-05']
['59866.39958115376 0.033462382485691076 6.68710923924486e-05 0.014651621458869429 4.008770454561179e-05 0.0005181951065534125 1.4178125190314575e-06 0.014651621458869427 4.008770454561179e-05 0.01881076102682165 7.796644825497478e-05']
['59866.399612691726 0.033469652551522275 6.688062941426485e-05 0.014636608681092692 4.007376695134311e-05 0.000517664138155033 1.4173195774708643e-06 0.014636608681092692 4.007376695134311e-05 0.018833043870429583 7.796746365323672e-05']
['59866.399644229685 0.03350364408616383 6.687585997130485e-05 0.01469575842444787 4.01222838754019e-05 0.0005197561323856094 1.4190355126458797e-06 0.01469575842444787 4.01222838754019e-05 0.018807885661715963 7.798832162753542e-05']
['59866.39967576765 0.03344540695903369 6.685642134853892e-05 0.01461273306042085 4.007594143859812e-05 0.0005168197108107418 1.4173964842253808e-06 0.014612733060420852 4.007594143859812e-05 0.018832673898612838 7.79478168887578e-05']
['59866.399707305616 0.03347649769244744 6.686072391385354e-05 0.01469750931988594 4.0116579651863035e-05 0.0005198180576442329 1.4188337670074995e-06 0.01469750931988594 4.0116579651863035e-05 0.0187789883725615 7.79724077174023e-05']
['59866.399738843575 0.033534977005937126 6.689488427646367e-05 0.014680903776791559 4.0114494266036535e-05 0.0005192307566961893 1.4187600115713794e-06 0.014680903776791559 4.0114494266036535e-05 0.01885407322914557 7.800062943708432e-05']
['59866.39977038154 0.033493347814875785 6.686997992357617e-05 0.014676233689030586 4.0119932550610694e-05 0.0005190655861291156 1.4189523515429165e-06 0.014676233689030586 4.0119932550610694e-05 0.018817114125845198 7.798206975225158e-05']
['59866.3998019195 0.03338493045514498 6.680329693080522e-05 0.01469392004953892 4.0115115839004274e-05 0.000519691113173606 1.4187819952181145e-06 0.01469392004953892 4.0115115839004274e-05 0.018691010405606057 7.792241654108311e-05']
['59866.399833457464 0.03343118313600849 6.683516174795293e-05 0.014676077810577122 4.010386308620056e-05 0.0005190600730565844 1.4183840104998694e-06 0.014676077810577124 4.010386308620056e-05 0.01875510532543137 7.794394575790829e-05']
['59866.39986499543 0.03349637795362772 6.688670021002978e-05 0.014635637989859989 4.008821015044657e-05 0.0005176298069754996 1.4178304011445035e-06 0.014635637989859989 4.008821015044657e-05 0.01886073996376773 7.798009526829757e-05']
['59866.39989653339 0.03329439930418058 6.671838365839152e-05 0.014674622862342673 4.010134825920341e-05 0.0005190086147891499 1.4182950666892878e-06 0.014674622862342673 4.010134825920341e-05 0.018619776441837904 7.784253882161245e-05']
['59866.399928071354 0.03355328376490004 6.692873612858102e-05 0.014760817427551379 4.0142568880934055e-05 0.0005220571239270659 1.419752947957233e-06 0.014760817427551379 4.0142568880934055e-05 0.018792466337348664 7.804410007252157e-05']
['59866.39995960932 0.03349605989662846 6.688196839004191e-05 0.014685093032247656 4.0108229223656864e-05 0.0005193789212992366 1.418538431023956e-06 0.014685093032247657 4.0108229223656864e-05 0.0188109668643808 7.798633051493043e-05']
['59866.39999114728 0.0334592589866979 6.685962639134684e-05 0.014662218810664044 4.0102065389117044e-05 0.0005185699112027007 1.418320429971642e-06 0.014662218810664044 4.0102065389117044e-05 0.01879704017603386 7.796399995936267e-05']
['59866.400022685244 0.03345263939224092 6.683984545808383e-05 0.014722388687621156 4.013752127182272e-05 0.000520697985278913 1.4195744253037077e-06 0.014722388687621154 4.013752127182272e-05 0.018730250704619766 7.796528429183435e-05']
['59866.4000542232 0.03370696650639008 6.702123978538592e-05 0.014683732664481051 4.0097522901437305e-05 0.0005193308081315748 1.418159772334272e-06 0.014683732664481053 4.0097522901437305e-05 0.01902323384190903 7.810030681886906e-05']
['59866.40008576117 0.03362626537473989 6.698052694251372e-05 0.01477301004208803 4.014869105158672e-05 0.0005224883494543375 1.4199694754509714e-06 0.01477301004208803 4.014869105158672e-05 0.018853255332651857 7.809166653781033e-05']
['59866.400117299134 0.03347627505722282 6.683872960810713e-05 0.01472066415219495 4.013058848218985e-05 0.0005206369923149981 1.4193292280282658e-06 0.014720664152194952 4.013058848218985e-05 0.018755610905027864 7.796075876716777e-05']
['59866.40014883709 0.033401709592926564 6.682770779559979e-05 0.014609634648518891 4.005542909332246e-05 0.0005167101269063126 1.4166710084153746e-06 0.014609634648518891 4.005542909332246e-05 0.018792074944407672 7.791264293466274e-05']
['59866.40018037506 0.0335253750688729 6.690318716589298e-05 0.014687130717765767 4.011641805678814e-05 0.000519450989682053 1.4188280517508444e-06 0.014687130717765765 4.011641805678814e-05 0.018838244351107133 7.800873957872608e-05']
['59866.400211913024 0.03343880498742333 6.682430293271069e-05 0.014613223661525905 4.006883785988585e-05 0.0005168370622753986 1.4171452465218921e-06 0.014613223661525905 4.006883785988585e-05 0.018825581325897428 7.791661716145348e-05']
['59866.40024345098 0.033454739040197544 6.682516526394719e-05 0.014757140588772531 4.015009017017257e-05 0.0005219270823567092 1.4200189591485071e-06 0.014757140588772533 4.015009017017257e-05 0.01869759845142501 7.795917170690593e-05']
['59866.40027498895 0.03342475414544279 6.683510205039014e-05 0.014688009485568653 4.011027678758173e-05 0.0005194820697353107 1.4186108487839426e-06 0.014688009485568653 4.011027678758173e-05 0.018736744659874138 7.794719475428531e-05']
['59866.400306526906 0.033424696931972746 6.683774690103319e-05 0.014727044694969433 4.0132978308019076e-05 0.0005208626578532576 1.4194137508268992e-06 0.014727044694969433 4.0132978308019076e-05 0.018697652237003315 7.796114646847173e-05']
['59866.40033806487 0.03348835388852743 6.686555543993083e-05 0.01477575449655082 4.01643415747664e-05 0.0005225854146751916 1.420522999478976e-06 0.01477575449655082 4.01643415747664e-05 0.01871259939197661 7.800113357141017e-05']
['59866.40036960284 0.03354960129375705 6.691547146944395e-05 0.01475579211486849 4.014043722683256e-05 0.000521879389848385 1.4196775561156296e-06 0.014755792114868488 4.014043722683256e-05 0.018793809178888565 7.803162834863343e-05']
['59866.400401140796 0.033403196049427174 6.68121954697228e-05 0.014707024496038064 4.011153763533109e-05 0.0005201545881595664 1.4186554421510084e-06 0.014707024496038064 4.011153763533109e-05 0.01869617155338911 7.792820359122254e-05']
['59866.40043267876 0.03350342107996048 6.688190841453177e-05 0.014784476787737116 4.0152225904021134e-05 0.0005228939026212774 1.4200944952816465e-06 0.014784476787737115 4.0152225904021134e-05 0.018718944292223365 7.800891563287726e-05']
['59866.40046421673 0.033499569459788506 6.688396560103831e-05 0.014759662895923472 4.015593040739886e-05 0.0005220162907236132 1.420225515287039e-06 0.014759662895923472 4.015593040739886e-05 0.01873990656386503 7.801258617303196e-05']
['59866.400495754686 0.03359509818997334 6.697537221796666e-05 0.014701023405476962 4.011194258832964e-05 0.0005199423429980683 1.4186697644335503e-06 0.014701023405476963 4.011194258832964e-05 0.018894074784496374 7.806835736676309e-05']
['59866.40052729265 0.033445422300594725 6.682127025559704e-05 0.014685129664424378 4.0116215054218845e-05 0.0005193802168974591 1.4188208720036524e-06 0.014685129664424378 4.0116215054218845e-05 0.018760292636170347 7.793839149512821e-05']
['59866.40055883061 0.03349882418479223 6.68864833808689e-05 0.014710179753529659 4.012018489571565e-05 0.0005202661825654587 1.4189612764253207e-06 0.014710179753529659 4.012018489571565e-05 0.018788644431262568 7.799635180651503e-05']
['59866.400590368576 0.033535779741511 6.690809150434789e-05 0.014638487880025213 4.00848960258843e-05 0.0005177306012215139 1.4177131879653684e-06 0.014638487880025213 4.00848960258843e-05 0.01889729186148579 7.799674094576097e-05']
['59866.40062190654 0.03352278473741518 6.688436163058139e-05 0.014689988031606106 4.011838890279602e-05 0.0005195520464868652 1.4188977561695614e-06 0.014689988031606106 4.011838890279602e-05 0.01883279670580907 7.799360844893879e-05']
['59866.4006534445 0.03343797603593571 6.683587268285887e-05 0.014670662169248717 4.011340099883118e-05 0.0005188685339260448 1.4187213451536343e-06 0.014670662169248717 4.011340099883118e-05 0.01876731386668699 7.794946322440169e-05']
['59866.400684982465 0.0334880680847443 6.687038003848742e-05 0.01473787067944417 4.014072770659086e-05 0.0005212455487294777 1.4196878297354966e-06 0.01473787067944417 4.014072770659086e-05 0.01875019740530013 7.799311346078196e-05']
['59866.40071652043 0.033526630420854936 6.69008367527112e-05 0.014760833602079627 4.015076568313873e-05 0.0005220576959839821 1.4200428505324377e-06 0.014760833602079625 4.015076568313873e-05 0.018765796818775313 7.80243932572066e-05']
['59866.40074805839 0.03347911893175824 6.688812296993789e-05 0.014745267373981819 4.0156679508369704e-05 0.000521507153284635 1.4202520093142355e-06 0.01474526737398182 4.0156679508369704e-05 0.01873385155777642 7.801653609062281e-05']
['59866.400779596355 0.03349389682264921 6.68875001956741e-05 0.014639836674765466 4.008124953730257e-05 0.0005177783050770978 1.4175842198136548e-06 0.014639836674765466 4.008124953730257e-05 0.018854060147883742 7.797720337956357e-05']
['59866.400811134314 0.03352556388166855 6.688338753638057e-05 0.014705163485960532 4.0118103812262204e-05 0.0005200887683922368 1.4188876731545201e-06 0.01470516348596053 4.0118103812262204e-05 0.018820400395708023 7.799262645810252e-05']
['59866.40084267228 0.033410623495368254 6.68535159572531e-05 0.014680758426601048 4.010229491516913e-05 0.0005192256159847895 1.4183285477951439e-06 0.014680758426601048 4.010229491516913e-05 0.018729865068767206 7.795887796338461e-05']
['59866.400874210245 0.03347633188413343 6.689579673147839e-05 0.014676164480754988 4.011642841690776e-05 0.0005190631383870791 1.4188284181651217e-06 0.014676164480754988 4.011642841690776e-05 0.01880016740337844 7.800240668894876e-05']
['59866.4009057482 0.033444627226801055 6.6882537748339e-05 0.014666865535203346 4.010989991530976e-05 0.0005187342554648377 1.4185975196539427e-06 0.014666865535203346 4.010989991530976e-05 0.018777761691597707 7.798767804515119e-05']
['59866.40093728617 0.03344746263434072 6.68633375644945e-05 0.014705098958815069 4.0134274231858466e-05 0.0005200864862113115 1.419459584756879e-06 0.014705098958815067 4.0134274231858466e-05 0.018742363675525654 7.798375393876316e-05']
['59866.400968824135 0.033494875522051396 6.690979216432492e-05 0.014649248145552532 4.008917291548095e-05 0.000518111167765437 1.417864451992116e-06 0.01464924814555253 4.008917291548095e-05 0.018845627376498864 7.800039789975745e-05']
['59866.40100036209 0.03346936759896418 6.68568658337662e-05 0.01458064654488455 4.0056582352255466e-05 0.0005156848824653646 1.4167117966064529e-06 0.01458064654488455 4.0056582352255466e-05 0.018888721054079627 7.793824670120081e-05']
['59866.40103190006 0.033437844900196904 6.68480204525544e-05 0.014651415891891851 4.009853240267623e-05 0.0005181878361088309 1.4181954761369904e-06 0.014651415891891853 4.009853240267623e-05 0.01878642900830505 7.795222985440254e-05']
['59866.40106343802 0.03351559034410089 6.6890788596347e-05 0.01471765706278394 4.0131177129436646e-05 0.0005205306382829799 1.4193500471658358e-06 0.01471765706278394 4.0131177129436646e-05 0.01879793328131695 7.800569836130823e-05']
['59866.40109497598 0.033524859769612794 6.68886612376005e-05 0.014672552219176736 4.0102853311340434e-05 0.0005189353807679858 1.4183482970197808e-06 0.014672552219176736 4.0102853311340434e-05 0.018852307550436057 7.798930597119946e-05']
['59866.40112651395 0.033488343860384996 6.684393930037368e-05 0.014722958777203692 4.011639896885446e-05 0.0005207181480733721 1.418827376653289e-06 0.014722958777203692 4.011639896885446e-05 0.018765385083181305 7.79579225442825e-05']
['59866.40115805191 0.03354563611275545 6.692204618073016e-05 0.01471667604833666 4.0125326196372796e-05 0.0005204959419944178 1.4191431127394333e-06 0.014716676048336659 4.0125326196372796e-05 0.01882896006441879 7.802949485535006e-05']
['59866.40118958987 0.033565789540609806 6.692503600739498e-05 0.014707298469587042 4.0111836244347656e-05 0.0005201642779916989 1.4186660032845725e-06 0.014707298469587042 4.0111836244347656e-05 0.018858491071022762 7.80251232071086e-05']
['59866.40122112784 0.03345012871935862 6.683525830651846e-05 0.01464558870560287 4.0099494442227175e-05 0.0005179817415527845 1.4182295013258754e-06 0.014645588705602872 4.0099494442227175e-05 0.018804540013755745 7.79417808843322e-05']
['59866.4012526658 0.03358772387117406 6.694281351530996e-05 0.014695627397377956 4.010640503782074e-05 0.0005197514982509748 1.4184739136477477e-06 0.014695627397377956 4.010640503782074e-05 0.018892096473796107 7.803758073135852e-05']
['59866.40128420376 0.03337868017365582 6.679494231155326e-05 0.014605762372254501 4.005948701522121e-05 0.0005165731731488693 1.4168145280440117e-06 0.014605762372254503 4.005948701522121e-05 0.018772917801401317 7.788662798148605e-05']
['59866.40131574172 0.03348981159527375 6.68899284678287e-05 0.014719625158700145 4.012192229852145e-05 0.0005206002454371005 1.419022724479695e-06 0.014719625158700143 4.012192229852145e-05 0.018770186436573605 7.800019986743517e-05']
['59866.40134727969 0.03356046331335845 6.695058377811821e-05 0.014680017280965338 4.009626852763249e-05 0.0005191994033200175 1.4181154079361564e-06 0.01468001728096534 4.009626852763249e-05 0.01888044603239311 7.803903778283557e-05']
['59866.40137881765 0.03350659268226528 6.68834515911703e-05 0.014714611894436118 4.01149326269618e-05 0.0005204229374840681 1.418775515417627e-06 0.014714611894436118 4.01149326269618e-05 0.018791980787829163 7.799105023279342e-05']
['59866.40141035561 0.03340378087850916 6.683295133582045e-05 0.014759046088435904 4.014705720425902e-05 0.0005219944756212616 1.4199116899224247e-06 0.014759046088435906 4.014705720425902e-05 0.018644734790073256 7.796428404351694e-05']
['59866.40144189358 0.03339253933379787 6.681628575893021e-05 0.01466493786321737 4.0104621445164074e-05 0.0005186660780147871 1.4184108319615764e-06 0.01466493786321737 4.0104621445164074e-05 0.0187276014705805 7.792815090760805e-05']
['59866.40147343154 0.03345347109475777 6.684143481928293e-05 0.014787446157046163 4.01631718243961e-05 0.0005229989225775885 1.4204816280226169e-06 0.014787446157046162 4.01631718243961e-05 0.018666024937711606 7.797985496072953e-05']
['59866.4015049695 0.033355873574285655 6.676663421465259e-05 0.014648714274073776 4.0106850565953274e-05 0.0005180922859243659 1.4184896709820986e-06 0.014648714274073776 4.0106850565953274e-05 0.018707159300211877 7.788673126196094e-05']
['59866.40153650747 0.033484320630098666 6.686072645732635e-05 0.01465286881357109 4.010610397984538e-05 0.0005182392227015367 1.4184632658999843e-06 0.01465286881357109 4.010610397984538e-05 0.018831451816527574 7.796702071288596e-05']
['59866.401568045425 0.03356151433880945 6.69147309512001e-05 0.014778922071867864 4.015666712603227e-05 0.0005226974447350414 1.4202515713786334e-06 0.014778922071867866 4.015666712603227e-05 0.018782592266941588 7.803934349379457e-05']
['59866.40159958339 0.03348939315186987 6.688963119890292e-05 0.014566344326500306 4.004325783839164e-05 0.0005151790449646909 1.4162405383296252e-06 0.014566344326500306 4.004325783839164e-05 0.018923048825369562 7.795951038992716e-05']
['59866.401631121356 0.03357022393639675 6.693447826917147e-05 0.014698499009610955 4.010448509719846e-05 0.0005198530607579804 1.4184060096387523e-06 0.014698499009610956 4.010448509719846e-05 0.018871724926785793 7.802944384062724e-05']
['59866.401662659315 0.033495887062618766 6.689350877025001e-05 0.014711921451798525 4.013357940753333e-05 0.0005203277825407619 1.41943501037334e-06 0.014711921451798525 4.013357940753333e-05 0.01878396561082024 7.800926683193669e-05']
['59866.40169419728 0.03346974073051642 6.685284085099569e-05 0.014748791731583645 4.013702670829232e-05 0.0005216318019365359 1.4195569336969216e-06 0.014748791731583645 4.013702670829232e-05 0.018720948998932778 7.797617099364862e-05']
['59866.401725735246 0.03352006390168778 6.690308763064395e-05 0.014726301709299379 4.0131404772299045e-05 0.0005208363801105831 1.419358098385127e-06 0.01472630170929938 4.0131404772299045e-05 0.018793762192388402 7.80163622806891e-05']
['59866.401757273205 0.03348243076723061 6.688669919600168e-05 0.014698440319857935 4.0131905752730094e-05 0.0005198509850325799 1.4193758169433479e-06 0.014698440319857934 4.0131905752730094e-05 0.01878399044737268 7.800256655189253e-05']
['59866.40178881117 0.033489879967138286 6.687220821195037e-05 0.014726594649507966 4.0127875601334145e-05 0.0005208467407510779 1.4192332794953313e-06 0.014726594649507966 4.0127875601334145e-05 0.018763285317630322 7.798806723735747e-05']
['59866.40182034913 0.033563967270009584 6.690423609047961e-05 0.01474123717232121 4.013780125372085e-05 0.0005213646140588699 1.4195843276377215e-06 0.014741237172321212 4.013780125372085e-05 0.018822730097688374 7.802063763091038e-05']
['59866.401851887094 0.033530124232661315 6.691332264576955e-05 0.014775703149094734 4.0165995415193685e-05 0.0005225835986304247 1.4205814921187733e-06 0.014775703149094734 4.0165995415193685e-05 0.01875442108356658 7.804293648492614e-05']
['59866.40188342506 0.033663771546510506 6.697881962726468e-05 0.01472278168045585 4.013580564906937e-05 0.0005207118845571889 1.4195137475611127e-06 0.014722781680455849 4.013580564906937e-05 0.018940989866054657 7.808357813113795e-05']
['59866.40191496302 0.033430819925739715 6.68284428956883e-05 0.014637665753920984 4.00867512570115e-05 0.000517701524458551 1.4177788033441398e-06 0.014637665753920984 4.00867512570115e-05 0.018793154171818732 7.792938089195745e-05']
['59866.401946500984 0.03340602263911913 6.679033158953804e-05 0.01463701009151693 4.009069191322558e-05 0.0005176783351446389 1.4179181755475835e-06 0.01463701009151693 4.009069191322558e-05 0.0187690125476022 7.789872894933276e-05']
['59866.40197803895 0.033360000025788435 6.677366312036775e-05 0.014690997182396415 4.011180710987246e-05 0.0005195877378949992 1.4186649728632967e-06 0.014690997182396415 4.011180710987246e-05 0.01866900284339202 7.78953089481772e-05']
['59866.40200957691 0.03357854691748677 6.695128962037417e-05 0.014642676155418111 4.0072150930646465e-05 0.0005178787311619161 1.4172624224304175e-06 0.014642676155418113 4.0072150930646465e-05 0.018935870762068655 7.802725461042271e-05']
['59866.402041114874 0.03352274063414618 6.689580698727432e-05 0.014743660072967889 4.013539249592888e-05 0.0005214503066398787 1.4194991352578765e-06 0.014743660072967889 4.013539249592888e-05 0.018779080561178295 7.801217035361164e-05']
['59866.40207265283 0.033430023590699874 6.683311141715766e-05 0.014739611517405087 4.015038453007069e-05 0.0005213071182776115 1.420029370000248e-06 0.014739611517405087 4.015038453007069e-05 0.018690412073294787 7.796613469712828e-05']
['59866.4021041908 0.03346035856641462 6.684436778657484e-05 0.01465108547266823 4.0096957717366685e-05 0.0005181761499193348 1.4181397830368064e-06 0.01465108547266823 4.0096957717366685e-05 0.018809273093746387 7.79482874922546e-05']
['59866.402135728764 0.033464872702560725 6.685379014311578e-05 0.01469532466585766 4.011137369083195e-05 0.000519740791313667 1.4186496438004682e-06 0.014695324665857658 4.011137369083195e-05 0.018769548036703068 7.796378361691619e-05']
['59866.40216726672 0.03354297317526333 6.690802876720256e-05 0.014750748374442102 4.0140782223549374e-05 0.0005217010040216001 1.419689757878481e-06 0.014750748374442102 4.0140782223549374e-05 0.018792224800821225 7.802542349152117e-05']
['59866.40219880469 0.03350179468725845 6.6898232734408e-05 0.014702582908099334 4.0131521963547856e-05 0.0005199974991205383 1.4193622431776904e-06 0.014702582908099332 4.0131521963547856e-05 0.018799211779159122 7.801225928081908e-05']
['59866.402230342654 0.03340883099966522 6.681358290843155e-05 0.014764611497263132 4.014954712882704e-05 0.0005221913116935238 1.4199997529897416e-06 0.01476461149726313 4.014954712882704e-05 0.01864421950240209 7.79489640451479e-05']
['59866.40226188061 0.033395604923111805 6.681326072650729e-05 0.014714067987465227 4.012605343599674e-05 0.0005204037007100682 1.4191688335796471e-06 0.014714067987465225 4.012605343599674e-05 0.01868153693564658 7.79365894381882e-05']
['59866.40229341858 0.03335956392800609 6.681819956160534e-05 0.014722752332417712 4.013314330930305e-05 0.000520710846582669 1.419419586553557e-06 0.014722752332417712 4.013314330930305e-05 0.01863681159558838 7.794447372674712e-05']
['59866.402324956536 0.03338593193870805 6.681091012022335e-05 0.01464221408327623 4.00843203566404e-05 0.0005178623887029283 1.4176928278307567e-06 0.014642214083276232 4.00843203566404e-05 0.018743717855431816 7.791309549457228e-05']
['59866.4023564945 0.03347892226440406 6.686025237801105e-05 0.01472094973444846 4.012127659590686e-05 0.0005206470927210659 1.4189998874212776e-06 0.014720949734448461 4.012127659590686e-05 0.0187579725299556 7.797442006027744e-05']
['59866.40238803247 0.03350334674162889 6.68790958404903e-05 0.014661351007751957 4.00876949730415e-05 0.0005185392189531255 1.4178121804710398e-06 0.014661351007751955 4.00876949730415e-05 0.01884199573387693 7.797330792452699e-05']
['59866.402419570426 0.033600676032338 6.695557834898349e-05 0.014707065025102413 4.011384634712353e-05 0.0005201560215819953 1.4187370961274399e-06 0.014707065025102413 4.011384634712353e-05 0.01889361100723559 7.805235512659117e-05']
['59866.40245110839 0.033475039487128135 6.683656898972534e-05 0.014704875664744661 4.0120153013521235e-05 0.000520078588799074 1.4189601488233568e-06 0.014704875664744661 4.0120153013521235e-05 0.018770163822383473 7.795353508434798e-05']
['59866.40248264636 0.03348890052865693 6.689672149530265e-05 0.014740012402049814 4.013645217101414e-05 0.000521321296671571 1.4195366135974077e-06 0.014740012402049814 4.013645217101414e-05 0.01874888812660712 7.801349972726639e-05']
['59866.402514184316 0.0334243377988746 6.683832252382015e-05 0.014640985696308015 4.010081407445205e-05 0.0005178189434011458 1.4182761737684648e-06 0.014640985696308017 4.010081407445205e-05 0.01878335210256658 7.79450873835675e-05']
['59866.40254572228 0.03346498047169963 6.684636955900836e-05 0.014749413530961706 4.013856134094884e-05 0.0005216537935908981 1.4196112102242807e-06 0.014749413530961708 4.013856134094884e-05 0.01871556694073792 7.79714129007589e-05']
['59866.40257726024 0.03351164543627243 6.688404062205065e-05 0.014741696030623704 4.0134772420505235e-05 0.0005213808428515411 1.4194772045759293e-06 0.014741696030623702 4.0134772420505235e-05 0.018769949405648724 7.800176182098626e-05']
['59866.402608798206 0.03355816118388395 6.694434692379044e-05 0.01466496436609088 4.010615740096178e-05 0.0005186670153621927 1.4184651552854823e-06 0.014664964366090882 4.010615740096178e-05 0.01889319681779307 7.803876886857924e-05']
['59866.40264033617 0.033546585470426 6.6924613302032e-05 0.014705746066998236 4.011449189730683e-05 0.0005201093729815485 1.4187599277947035e-06 0.014705746066998237 4.011449189730683e-05 0.01884083940342776 7.802612591821802e-05']
['59866.40267187413 0.03345035044833877 6.685840094342483e-05 0.014649034664614003 4.007929603383666e-05 0.0005181036174217431 1.417515128761889e-06 0.014649034664614003 4.007929603383666e-05 0.01880131578372477 7.79512395493469e-05']
['59866.402703412095 0.03343331568660379 6.683101542061505e-05 0.014635797895537896 4.00817038489143e-05 0.000517635462481959 1.4176002878000352e-06 0.014635797895537896 4.00817038489143e-05 0.018797517791065897 7.792899079022233e-05']
['59866.40273495006 0.03353550230935042 6.689465473240897e-05 0.014689174840754375 4.011583010258266e-05 0.0005195232857438141 1.4188072571245967e-06 0.014689174840754375 4.011583010258266e-05 0.018846327468596047 7.800111958547443e-05']
['59866.40276648802 0.03357611157388675 6.695285038874169e-05 0.014731765489543868 4.0127548402765586e-05 0.0005210296218070004 1.4192217072132073e-06 0.014731765489543866 4.0127548402765586e-05 0.018844346084342885 7.805705807928917e-05']
['59866.402798025985 0.03349288600567907 6.688397733855545e-05 0.014784857083487346 4.0162158984358196e-05 0.0005229073528320521 1.4204458061340403e-06 0.014784857083487346 4.0162158984358196e-05 0.01870802892219172 7.80158024948104e-05']
['59866.402829563944 0.03343897562250806 6.684291795632872e-05 0.014719573904393476 4.013669691781217e-05 0.0005205984326868203 1.4195452697446772e-06 0.014719573904393476 4.013669691781217e-05 0.018719401718114585 7.796749399838887e-05']
['59866.40286110191 0.03348784006215069 6.686865693374301e-05 0.014672583882018028 4.008690410737204e-05 0.00051893650061192 1.4177842093197918e-06 0.014672583882018028 4.008690410737204e-05 0.018815256180132665 7.796394782870002e-05']
['59866.402892639875 0.03352012656899746 6.69147741857246e-05 0.014600218301829183 4.006188309777505e-05 0.0005163770917681939 1.4168992721290116e-06 0.014600218301829183 4.006188309777505e-05 0.018919908267168273 7.799064996309692e-05']
['59866.40292417783 0.03357622054704876 6.693268151507071e-05 0.014705661552409696 4.0123889154834465e-05 0.0005201063838894308 1.4190922877918214e-06 0.014705661552409696 4.0123889154834465e-05 0.01887055899463906 7.803787757049349e-05']
['59866.4029557158 0.03361950417784008 6.696176132048987e-05 0.014765652414109686 4.01526943485435e-05 0.0005222281265960742 1.4201110631174908e-06 0.014765652414109686 4.01526943485435e-05 0.01885385176373039 7.807763023164708e-05']
['59866.402987253765 0.03336645761773885 6.680841090650216e-05 0.014644588390071307 4.008951407027752e-05 0.0005179463626280066 1.4178765178748347e-06 0.014644588390071305 4.008951407027752e-05 0.018721869227667543 7.79136246509108e-05']
['59866.40301879172 0.033490450017444266 6.689121365652445e-05 0.014641049083288008 4.0085059716165525e-05 0.0005178211852569666 1.417718977324789e-06 0.01464104908328801 4.0085059716165525e-05 0.018849400934156255 7.798234721327231e-05']
['59866.40305032969 0.033516588654166936 6.688978969614977e-05 0.01460582144744125 4.0064778216616184e-05 0.0005165752625061993 1.4170016660122126e-06 0.014605821447441252 4.0064778216616184e-05 0.018910767206725684 7.797070231273915e-05']
['59866.40308186765 0.03347724543064426 6.689586964924236e-05 0.014756997380304332 4.0168263252239695e-05 0.000521922017393241 1.4206617004467732e-06 0.014756997380304332 4.0168263252239695e-05 0.01872024805033993 7.802914038248567e-05']
['59866.40311340561 0.03357709537467512 6.692514860699624e-05 0.014710306149235266 4.011680780579283e-05 0.0005202706528990882 1.4188418363021024e-06 0.014710306149235266 4.011680780579283e-05 0.018866789225439853 7.802777572502918e-05']
['59866.40314494358 0.033493707685439175 6.686908156292494e-05 0.014734504956746249 4.012357795016247e-05 0.0005211265106395998 1.4190812811780743e-06 0.01473450495674625 4.012357795016247e-05 0.018759202728692925 7.798317495839645e-05']
['59866.40317648154 0.033517863778651964 6.690882052416577e-05 0.01467401608738937 4.010882745810117e-05 0.0005189871545151138 1.418559589239276e-06 0.01467401608738937 4.010882745810117e-05 0.018843847691262593 7.800966801620654e-05']
['59866.4032080195 0.03353529294064364 6.691668751430343e-05 0.014694029915724972 4.012536800195425e-05 0.0005196949988950702 1.4191445913094192e-06 0.014694029915724974 4.012536800195425e-05 0.01884126302491867 7.802492053939681e-05']
['59866.40323955747 0.033391211518103175 6.678634692772882e-05 0.014620618745223002 4.007969841425361e-05 0.0005170986098587256 1.4175293600579692e-06 0.014620618745223002 4.007969841425361e-05 0.018770592772880172 7.788965503151542e-05']
['59866.40327109543 0.03338024287502095 6.67967272524905e-05 0.014644546658926793 4.009764851722609e-05 0.0005179448866906889 1.4181642150839866e-06 0.014644546658926793 4.009764851722609e-05 0.018735696216094156 7.790779285960174e-05']
['59866.40330263339 0.03348820041912015 6.686088310494424e-05 0.014682318629526445 4.01084271884956e-05 0.0005192807968754124 1.4185454325978766e-06 0.014682318629526445 4.01084271884956e-05 0.018805881789593706 7.796835012431564e-05']
['59866.40333417135 0.033508310828856455 6.688913735394638e-05 0.01472232293708483 4.012384454872595e-05 0.000520695659829387 1.419090710173452e-06 0.014722322937084831 4.012384454872595e-05 0.018785987891771626 7.80005102375967e-05']
['59866.40336570932 0.03346504979605614 6.68714388247666e-05 0.014647879467145908 4.0090683924988736e-05 0.000518062760669011 1.417917893021499e-06 0.01464787946714591 4.0090683924988736e-05 0.018817170328910234 7.7968277318842e-05']
['59866.40339724728 0.03351110345442004 6.689122875823258e-05 0.014659769757247974 4.0101367406502806e-05 0.0005184832936566866 1.4182957438864756e-06 0.014659769757247972 4.0101367406502806e-05 0.018851333697172065 7.799074401913042e-05']
['59866.40342878524 0.03345484768191594 6.68742769020416e-05 0.014756714628786596 4.0133587466989575e-05 0.0005219120171039712 1.4194352954182955e-06 0.014756714628786596 4.0133587466989575e-05 0.018698133053129347 7.799278014112228e-05']
['59866.40346032321 0.033534804714625305 6.690473504094351e-05 0.01469857448578912 4.012268377772963e-05 0.0005198557301817228 1.4190496562974824e-06 0.014698574485789121 4.012268377772963e-05 0.01883623022883618 7.80132894090907e-05']
['59866.40349186117 0.03352598271609613 6.689419575334454e-05 0.014745674565179102 4.014415612742278e-05 0.0005215215547272641 1.419809085318252e-06 0.0147456745651791 4.014415612742278e-05 0.01878030815091703 7.801529783747334e-05']
['59866.40352339913 0.033487775556027714 6.687891481865149e-05 0.014812522791222346 4.018673351225622e-05 0.0005238858270854212 1.421314952264956e-06 0.014812522791222346 4.018673351225622e-05 0.018675252764805368 7.802411676978816e-05']
['59866.4035549371 0.033427427041773886 6.684247017542479e-05 0.014691452134589786 4.0116411644216964e-05 0.0005196038285373203 1.418827824952533e-06 0.014691452134589784 4.0116411644216964e-05 0.0187359749071841 7.795666938986566e-05']
['59866.403586475055 0.033452718543499446 6.687942932618866e-05 0.014676166330697125 4.0102463959273205e-05 0.0005190632038153981 1.4183345265073136e-06 0.014676166330697125 4.0102463959273205e-05 0.01877655221280232 7.79811880045532e-05']
['59866.40361801302 0.0334569570576926 6.68368658739058e-05 0.014692886564270586 4.012718167508293e-05 0.0005196545611093686 1.4192087368746598e-06 0.014692886564270587 4.012718167508293e-05 0.018764070493422016 7.795740727494459e-05']
['59866.403649550986 0.03353989783106919 6.691229359368315e-05 0.014608740351328274 4.007165836827158e-05 0.000516678497613317 1.41724500160003e-06 0.014608740351328274 4.007165836827158e-05 0.018931157479740918 7.799354356836673e-05']
['59866.403681088945 0.033553739150133655 6.692643800330995e-05 0.014741918801517697 4.01441953436093e-05 0.0005213887217601981 1.4198104723071261e-06 0.014741918801517699 4.01441953436093e-05 0.018811820348615955 7.80429658816011e-05']
['59866.40371262691 0.033481119323079706 6.687064676329372e-05 0.014707114240336671 4.0132299063416455e-05 0.0005201577622148414 1.4193897274633268e-06 0.014707114240336671 4.0132299063416455e-05 0.018774005082743035 7.798900452407828e-05']
['59866.403744164876 0.03346411095555882 6.6873298179948e-05 0.014666066235809001 4.009952911014705e-05 0.0005187059860315887 1.4182307274527232e-06 0.014666066235809 4.009952911014705e-05 0.01879804471974982 7.79744204487585e-05']
['59866.403775702835 0.033607093663986135 6.692983612904214e-05 0.014638410168960357 4.0085087545276245e-05 0.000517727852754824 1.4177199615782407e-06 0.014638410168960357 4.0085087545276245e-05 0.018968683495025777 7.801549338287169e-05']
['59866.4038072408 0.03331708125474894 6.677130258063812e-05 0.014640376546574005 4.00922601865469e-05 0.0005177973991364233 1.417973641870074e-06 0.014640376546574005 4.00922601865469e-05 0.018676704708174938 7.788322139704356e-05']
['59866.40383877876 0.033436679926591356 6.686387516990885e-05 0.014668620485721751 4.0096794219940645e-05 0.0005187963241425901 1.4181340004982425e-06 0.014668620485721751 4.0096794219940645e-05 0.018768059440869605 7.796493256236048e-05']
['59866.403870316724 0.03356442110080407 6.69443933781852e-05 0.0147550395376644 4.015857422468637e-05 0.0005218527728745874 1.4203190211959143e-06 0.0147550395376644 4.015857422468637e-05 0.01880938156313967 7.806576002661378e-05']
['59866.40390185469 0.03353926845566519 6.691073408860762e-05 0.014774634826635411 4.0158104592460605e-05 0.0005225458144525986 1.4203024113536553e-06 0.01477463482663541 4.0158104592460605e-05 0.018764633629029782 7.803665613502005e-05']
['59866.40393339265 0.03362115941311671 6.69690595296591e-05 0.01472112282467769 4.013810069535015e-05 0.0005206532145356398 1.4195949182189374e-06 0.014721122824677689 4.013810069535015e-05 0.01890003658843902 7.807638606977843e-05']
['59866.403964930614 0.033452899454869366 6.685896777125512e-05 0.014692009801512135 4.012144539293548e-05 0.0005196235519700517 1.4190058573949408e-06 0.014692009801512135 4.012144539293548e-05 0.018760889653357232 7.797340541400019e-05']
['59866.40399646858 0.0335413666795616 6.690152936923386e-05 0.01473599805678701 4.0124345752067104e-05 0.0005211793182511592 1.419108436615505e-06 0.014735998056787008 4.0124345752067104e-05 0.01880536862277459 7.801139502645679e-05']
['59866.40402800654 0.03346633114799528 6.68532095301245e-05 0.01467296111899801 4.010956997934583e-05 0.0005189498426408269 1.4185858505562622e-06 0.01467296111899801 4.010956997934583e-05 0.018793370028997267 7.796235776582677e-05']
['59866.404059544504 0.03355723972943453 6.69437642210864e-05 0.014696258571645346 4.01189519570594e-05 0.000519773821474221 1.418917670140505e-06 0.014696258571645348 4.01189519570594e-05 0.018860981157789183 7.804484527642584e-05']
['59866.40409108246 0.03354393878863763 6.692715966026653e-05 0.014756624913729042 4.0159723921639884e-05 0.0005219088440828868 1.4203596834077385e-06 0.014756624913729042 4.0159723921639884e-05 0.01878731387490859 7.805157349889329e-05']
['59866.40412262043 0.03348582398965755 6.688559566243594e-05 0.01463472992244553 4.007808636850171e-05 0.0005175976906604614 1.4174723456024347e-06 0.01463472992244553 4.007808636850171e-05 0.01885109406721202 7.797394381509732e-05']
['59866.404154158394 0.033434473210257644 6.685401476036084e-05 0.014596128192183387 4.005682803899805e-05 0.0005162324337308792 1.4167204859974605e-06 0.014596128192183387 4.005682803899805e-05 0.018838345018074257 7.793592728725568e-05']
['59866.40418569635 0.03347319964787795 6.689516158706559e-05 0.014626426370935032 4.0089788568879204e-05 0.0005173040126008805 1.417886226276908e-06 0.014626426370935032 4.0089788568879204e-05 0.018846773276942917 7.798816443061763e-05']
['59866.40421723432 0.03356462825863195 6.69578498754858e-05 0.014765977433505459 4.015926497805351e-05 0.0005222396218057271 1.4203434515987671e-06 0.014765977433505459 4.015926497805351e-05 0.018798650825126488 7.807765508470147e-05']
['59866.40424877228 0.03360795823012462 6.69653944286341e-05 0.01471936429290778 4.0129166222573644e-05 0.0005205910191970253 1.4192789258842037e-06 0.014719364292907778 4.0129166222573644e-05 0.01888859393721684 7.806864948685538e-05']
['59866.40428031024 0.03342871364756285 6.684645206269131e-05 0.01464769342950407 4.009217694818377e-05 0.0005180561809333887 1.4179706979151968e-06 0.01464769342950407 4.009217694818377e-05 0.018781020218058782 7.794761578017742e-05']
['59866.40431184821 0.03349214826014841 6.689814885776166e-05 0.01463717166017938 4.009073427122184e-05 0.000517684049467145 1.4179196736552466e-06 0.01463717166017938 4.009073427122184e-05 0.01885497659996903 7.799121293454128e-05']
['59866.404343386166 0.03339547900631581 6.680835582309449e-05 0.014770932226947994 4.015350228240898e-05 0.000522414861776478 1.4201396379326867e-06 0.014770932226947994 4.015350228240898e-05 0.018624546779367812 7.794652111113508e-05']
['59866.40437492413 0.033491044466623064 6.685511868736493e-05 0.014640959517159857 4.008995956564126e-05 0.0005178180175031824 1.4178922740502267e-06 0.014640959517159857 4.008995956564126e-05 0.018850084949463206 7.795390787302714e-05']
['59866.4044064621 0.03341641257963534 6.681985421143436e-05 0.014698493954541262 4.011884251284771e-05 0.0005198528819714628 1.4189137993433307e-06 0.014698493954541264 4.011884251284771e-05 0.018717918625094074 7.793852988995891e-05']
['59866.404438000056 0.03352951923350174 6.690631516400119e-05 0.014703304359469817 4.0125530399971935e-05 0.0005200230152431634 1.4191503349643666e-06 0.014703304359469815 4.0125530399971935e-05 0.018826214874031924 7.80161085847258e-05']
['59866.40446953802 0.033490781103173335 6.686161623735746e-05 0.014717234759612393 4.0124828507545736e-05 0.0005205157023635943 1.4191255105978893e-06 0.014717234759612393 4.0124828507545736e-05 0.018773546343560942 7.797741717081695e-05']
['59866.40450107599 0.033438037512335594 6.68331968879525e-05 0.014667586307845279 4.0108400526060976e-05 0.0005187597475823508 1.418544489607151e-06 0.014667586307845277 4.0108400526060976e-05 0.018770451204490318 7.794459570119505e-05']
['59866.404532613946 0.03347381625097054 6.68371067547341e-05 0.014746034658848198 4.014015773564558e-05 0.0005215342904355781 1.4196676711369723e-06 0.014746034658848198 4.014015773564558e-05 0.018727781592122343 7.796429376571195e-05']
['59866.40456415191 0.03349874036410332 6.689353377293401e-05 0.014641832560732747 4.008163100802801e-05 0.0005178488951032179 1.417597711580677e-06 0.014641832560732747 4.008163100802801e-05 0.018856907803370578 7.798257500810278e-05']
['59866.40459568987 0.03345419703098536 6.683027074832709e-05 0.014596920684294095 4.0074009863052645e-05 0.0005162604624057192 1.4173281687151547e-06 0.014596920684294095 4.0074009863052645e-05 0.018857276346691265 7.792439511987721e-05']
['59866.404627227836 0.03339162104015834 6.678572800760394e-05 0.014675152935680362 4.010672362872045e-05 0.0005190273622984597 1.4184851814958615e-06 0.014675152935680362 4.010672362872045e-05 0.018716468104477975 7.7903034252436e-05']
['59866.4046587658 0.033455948841900576 6.684448969431831e-05 0.014688029686323583 4.012145844078098e-05 0.0005194827841908665 1.4190063188680757e-06 0.014688029686323583 4.012145844078098e-05 0.018767919155576993 7.79609981330995e-05']
['59866.40469030376 0.03341739296794479 6.679127475384196e-05 0.014666395231796239 4.0107502289654965e-05 0.0005187176218843946 1.4185127209929107e-06 0.014666395231796239 4.0107502289654965e-05 0.01875099773614855 7.790819034708664e-05']
['59866.404721841725 0.033501808724081435 6.687708725201971e-05 0.014611933820021671 4.0071214696800834e-05 0.00051679144346402 1.4172293099316571e-06 0.014611933820021671 4.0071214696800834e-05 0.018889874904059765 7.79631133715898e-05']
['59866.40475337969 0.03352905187394356 6.690595940065057e-05 0.014723450957706018 4.01257250154943e-05 0.0005207355553977808 1.4191572180804526e-06 0.01472345095770602 4.01257250154943e-05 0.018805600916237543 7.801590357959438e-05']
['59866.40478491765 0.03351809158325166 6.688364543978285e-05 0.014658278112451897 4.010083264425967e-05 0.0005184305375138793 1.4182768305410593e-06 0.014658278112451897 4.010083264425967e-05 0.018859813470799763 7.798396505742387e-05']
['59866.404816455615 0.03352240121800686 6.69054260277463e-05 0.014765654890726884 4.0148729882469746e-05 0.0005222282141884897 1.4199708488125224e-06 0.014765654890726884 4.0148729882469746e-05 0.01875674632727998 7.80272807621139e-05']
['59866.404847993574 0.03354129495256628 6.688912910760802e-05 0.01472849997690112 4.0128987665107495e-05 0.0005209141279228177 1.4192726107056785e-06 0.01472849997690112 4.0128987665107495e-05 0.01881279497566516 7.800314893515904e-05']
['59866.40487953154 0.03345751012015919 6.686667735347907e-05 0.014667206014517016 4.010028614241852e-05 0.0005187462974572358 1.4182575019922975e-06 0.014667206014517016 4.010028614241852e-05 0.018790304105642176 7.796913164193964e-05']
['59866.404911069505 0.03353068968320145 6.689463928798594e-05 0.01475142002971531 4.015455298928554e-05 0.0005217247589675522 1.4201767990867192e-06 0.014751420029715308 4.015455298928554e-05 0.01877926965348614 7.802102851949013e-05']
['59866.40494260746 0.033466220002656234 6.683770836183337e-05 0.01473102938104 4.014775146441141e-05 0.0005210035872943243 1.4199362443524347e-06 0.01473102938104 4.014775146441141e-05 0.018735190621616236 7.796871941175922e-05']
['59866.40497414543 0.03336624683659184 6.679118414742417e-05 0.014725734708476776 4.014885236393601e-05 0.0005208163265586599 1.4199751807082541e-06 0.014725734708476778 4.014885236393601e-05 0.01864051212811506 7.792940796616036e-05']
['59866.40500568339 0.03350291875075572 6.688658482998404e-05 0.014744476186622715 4.014284821104049e-05 0.0005214791707559432 1.4197628272388316e-06 0.014744476186622715 4.014284821104049e-05 0.018758442564133004 7.800809889180282e-05']
['59866.40503722135 0.03340403427063531 6.677642673417495e-05 0.014691420797614629 4.009467469729308e-05 0.0005196027202185431 1.4180590377190524e-06 0.014691420797614629 4.009467469729308e-05 0.01871261347302068 7.78888573960768e-05']
['59866.40506875932 0.033510542983811197 6.690752252161205e-05 0.014755467072906682 4.0145039078228334e-05 0.0005218678938406219 1.4198403133149656e-06 0.014755467072906684 4.0145039078228334e-05 0.018755075910904515 7.802717944775721e-05']
['59866.40510029728 0.03341682617225765 6.683409623030121e-05 0.014692879900064367 4.0110536446579954e-05 0.0005196543254112883 1.418620032342406e-06 0.01469287990006437 4.0110536446579954e-05 0.01872394627219328 7.794646594268133e-05']
['59866.40513183524 0.03334443360123194 6.676323603831422e-05 0.014668750894587655 4.011249357715972e-05 0.0005188009364127305 1.4186892516770827e-06 0.014668750894587655 4.011249357715972e-05 0.018675682706644284 7.78867243327471e-05']
['59866.40516337321 0.033373997504524425 6.680175259547304e-05 0.014674214135813915 4.011765778912736e-05 0.0005189941590452778 1.418871898313044e-06 0.014674214135813915 4.011765778912736e-05 0.01869978336871051 7.792240124837222e-05']
['59866.40519491117 0.0334005471545021 6.67781753787461e-05 0.014593030384956402 4.0057666485128486e-05 0.0005161228712124524 1.4167501399632772e-06 0.014593030384956402 4.0057666485128486e-05 0.0188075167695457 7.787131276117257e-05']
['59866.40522644913 0.033566424076550895 6.692633871915486e-05 0.014704454986913142 4.012382452934339e-05 0.0005200637103643329 1.4190900021326314e-06 0.014704454986913142 4.012382452934339e-05 0.018861969089637755 7.803240422550484e-05']
['59866.40525798709 0.0335673095852211 6.692653103926518e-05 0.014638401622800116 4.009153576588373e-05 0.0005177275504962358 1.4179480207302027e-06 0.014638401622800118 4.009153576588373e-05 0.018928907962420978 7.801597142263153e-05']
['59866.40528952506 0.033500373444145 6.687227993801017e-05 0.014641799458029757 4.009712815973378e-05 0.0005178477243345934 1.4181458112024143e-06 0.014641799458029759 4.009712815973378e-05 0.01885857398611524 7.797231246260248e-05']
['59866.40532106302 0.03343712542611032 6.684864790105492e-05 0.014663659749343935 4.010392101058863e-05 0.0005186208739835001 1.418386059156022e-06 0.014663659749343935 4.010392101058863e-05 0.018773465676766382 7.795553993541926e-05']
['59866.40535260098 0.03350449012701675 6.689175859833495e-05 0.01465139488425625 4.009643250046902e-05 0.0005181870931157089 1.4181212072889267e-06 0.01465139488425625 4.009643250046902e-05 0.0188530952427605 7.798866114790397e-05']
['59866.40538413895 0.03360253951245884 6.693635867246466e-05 0.014626109337306799 4.0086247905401525e-05 0.0005172927998299783 1.4177610009226196e-06 0.014626109337306797 4.0086247905401525e-05 0.01897643017515204 7.802168534107773e-05']
['59866.40541567691 0.0334014331951434 6.680861946744262e-05 0.014706298027263157 4.013276003427208e-05 0.0005201288945825601 1.419406030972281e-06 0.014706298027263157 4.013276003427208e-05 0.018695135167880246 7.793606394419736e-05']
['59866.40544721487 0.033440083472415456 6.682815318836635e-05 0.014767353993926636 4.015540685287989e-05 0.0005222883076713927 1.4202069983337784e-06 0.014767353993926636 4.015540685287989e-05 0.01867272947848882 7.79644711268413e-05']
['59866.40547875284 0.033481588622121555 6.688659315231722e-05 0.014682149724336657 4.0106624875779686e-05 0.0005192748230763305 1.4184816888250466e-06 0.014682149724336655 4.0106624875779686e-05 0.0187994388977849 7.798947174106334e-05']
['59866.405510290795 0.033365265141130786 6.678577241421404e-05 0.014669595078195145 4.011325004776092e-05 0.000518830793300288 1.418716006351635e-06 0.014669595078195145 4.011325004776092e-05 0.01869567006293564 7.790643250950068e-05']
['59866.40554182876 0.033511954360414827 6.690157322489275e-05 0.014646523628516879 4.00972048114382e-05 0.0005180148076868231 1.4181485222018931e-06 0.014646523628516877 4.00972048114382e-05 0.018865430731897948 7.799747645697333e-05']
['59866.40557336673 0.033433854129765905 6.68325422214427e-05 0.014686265612470892 4.010220293862111e-05 0.0005194203928411699 1.4183252947901959e-06 0.014686265612470894 4.010220293862111e-05 0.01874758851729501 7.794084539130476e-05']
['59866.405604904685 0.033429058362260046 6.681623590210058e-05 0.01465523221258721 4.009510243376747e-05 0.0005183228108428509 1.4180741658022169e-06 0.01465523221258721 4.009510243376747e-05 0.018773826149672837 7.792320975999038e-05']
['59866.40563644265 0.033507072953818495 6.690703023713371e-05 0.014687525133879633 4.013272310924716e-05 0.0005194649392985324 1.4194047250166722e-06 0.014687525133879635 4.013272310924716e-05 0.01881954781993886 7.802042142488224e-05']
['59866.405667980616 0.033648830858742575 6.698748344059452e-05 0.014710183961448861 4.011604465405629e-05 0.0005202663313901567 1.4188148453307247e-06 0.01471018396144886 4.011604465405629e-05 0.018938646897293715 7.808085537691146e-05']
['59866.405699518575 0.033506362866925724 6.686621985545945e-05 0.01462929700651224 4.0068401345752324e-05 0.0005174055405657534 1.417129807992541e-06 0.014629297006512238 4.0068401345752324e-05 0.018877065860413485 7.795234534100257e-05']
['59866.40573105654 0.03341526755074915 6.682328067730209e-05 0.014653386951506307 4.00804754536619e-05 0.0005182575480823351 1.4175568422052595e-06 0.014653386951506307 4.00804754536619e-05 0.018761880599242844 7.792172580910339e-05']
['59866.4057625945 0.03360536594454219 6.693400942602247e-05 0.01471616565719288 4.0114089158973914e-05 0.0005204778906003194 1.4187456838399353e-06 0.014716165657192878 4.0114089158973914e-05 0.018889200287349313 7.803397828444333e-05']
['59866.405794132465 0.03349637643529538 6.68892404275101e-05 0.014655138507220175 4.0083326942689436e-05 0.0005183194966934381 1.4176576929994606e-06 0.014655138507220177 4.0083326942689436e-05 0.0188412379280752 7.797976393759976e-05']
['59866.40582567043 0.03341462550099769 6.680917193309701e-05 0.014630571902606571 4.008951738022631e-05 0.0005174506307913849 1.4178766349403262e-06 0.014630571902606571 4.008951738022631e-05 0.01878405359839112 7.791427891064375e-05']
['59866.40585720839 0.03346688915952414 6.686321384528523e-05 0.014650997315566839 4.0101965098863674e-05 0.0005181730319996781 1.4183168829295158e-06 0.014650997315566837 4.0101965098863674e-05 0.0188158918439573 7.796702489200689e-05']
['59866.405888746354 0.03353321745125355 6.691254316688702e-05 0.0147453696109913 4.014897600354902e-05 0.0005215107691791741 1.419979553565048e-06 0.014745369610991302 4.014897600354902e-05 0.018787847840262252 7.803351015553558e-05']
['59866.40592028432 0.033414594327455006 6.68248547679017e-05 0.014645577375701269 4.007754680727734e-05 0.0005179813408394856 1.417453262527777e-06 0.014645577375701267 4.007754680727734e-05 0.018769016951753738 7.792156936844035e-05']
['59866.40595182228 0.03366861977265725 6.69983174688364e-05 0.014721916099741031 4.012286640751247e-05 0.0005206812709017648 1.4190561155047482e-06 0.014721916099741031 4.012286640751247e-05 0.018946703672916218 7.809365500736971e-05']
['59866.405983360244 0.033391917130799934 6.679469262877261e-05 0.014659213327372257 4.011195823834623e-05 0.0005184636139755301 1.4186703179396616e-06 0.014659213327372257 4.011195823834623e-05 0.018732703803427675 7.791341448741059e-05']
['59866.4060148982 0.03344848315347301 6.687496645029239e-05 0.014738494179114676 4.01306540281314e-05 0.0005212676005193837 1.419331546241732e-06 0.014738494179114674 4.01306540281314e-05 0.01870998897435834 7.799186195016319e-05']
['59866.40604643617 0.0334668666962075 6.68623606356451e-05 0.014687486290155686 4.0127041127563734e-05 0.000519463565482827 1.4192037660230111e-06 0.014687486290155687 4.0127041127563734e-05 0.018779380406051812 7.797919401625188e-05']
['59866.406077974134 0.03352402994056148 6.688667268217493e-05 0.01465422039043114 4.0093440513931346e-05 0.0005182870249544801 1.4180153874117855e-06 0.01465422039043114 4.0093440513931346e-05 0.01886980955013034 7.798276062525972e-05']
['59866.40610951209 0.033541622733819804 6.689644574065331e-05 0.014725733751155245 4.0119028558382127e-05 0.0005208162927003367 1.4189203793580959e-06 0.014725733751155243 4.0119028558382127e-05 0.01881588898266456 7.800430055580559e-05']
['59866.40614105006 0.033467903277785496 6.687954631765929e-05 0.014731471032329574 4.014133166788768e-05 0.000521019207513404 1.4197091904967912e-06 0.014731471032329573 4.014133166788768e-05 0.018736432245455924 7.800128347487172e-05']
['59866.406172588024 0.03355286913456277 6.693405540464672e-05 0.014651901779768613 4.0082790898017325e-05 0.0005182050208771364 1.4176387342973974e-06 0.014651901779768613 4.0082790898017325e-05 0.018900967354794157 7.80179331890207e-05']
['59866.40620412598 0.03352920837339193 6.690451206794643e-05 0.014633718323916604 4.00769898769761e-05 0.0005175619126812829 1.4174335651476883e-06 0.014633718323916604 4.00769898769761e-05 0.018895490049475328 7.798960733744744e-05']
['59866.40623566395 0.03342084112131389 6.682009877786292e-05 0.01466689779233324 4.011937878748276e-05 0.0005187353963274316 1.4189327661786693e-06 0.014666897792333239 4.011937878748276e-05 0.01875394332898065 7.793901561462578e-05']
['59866.406267201906 0.03350481848112127 6.691157427834974e-05 0.014652110982116485 4.009313456676847e-05 0.0005182124198966409 1.4180045667443862e-06 0.014652110982116485 4.009313456676847e-05 0.018852707499004782 7.800396279546392e-05']
['59866.40629873987 0.03348288815877708 6.688160307662435e-05 0.014694053718694419 4.013033328382351e-05 0.000519695840752903 1.4193202022323832e-06 0.014694053718694419 4.013033328382351e-05 0.01878883444008266 7.79973876458044e-05']
['59866.40633027784 0.033584902713172604 6.695852604247383e-05 0.01464158763196899 4.0093899558442706e-05 0.0005178402325202275 1.4180316227902482e-06 0.014641587631968992 4.0093899558442706e-05 0.018943315081203612 7.80446346111194e-05']
['59866.406361815796 0.03358603728091268 6.693349234549553e-05 0.014781433911793835 4.0168847147087437e-05 0.000522786282899591 1.4206823515026097e-06 0.014781433911793835 4.0168847147087437e-05 0.018804603369118846 7.806169789782042e-05']
['59866.40639335376 0.03358976668770368 6.693926172041607e-05 0.014655936171546115 4.0085218513003095e-05 0.0005183477082979717 1.4177245936140438e-06 0.014655936171546115 4.0085218513003095e-05 0.018933830516157563 7.802364707516284e-05']
['59866.40642489173 0.03354454175520479 6.690701756002275e-05 0.014699550860754878 4.0112332643717426e-05 0.0005198902623821919 1.418683559820894e-06 0.014699550860754876 4.0112332643717426e-05 0.018844990894449916 7.800992391290631e-05']
['59866.406456429686 0.03349311630681969 6.688615446499254e-05 0.014673904015143556 4.0099349893906936e-05 0.000518983190770246 1.4182243889748352e-06 0.014673904015143556 4.0099349893906936e-05 0.018819212291676136 7.798535452909614e-05']
['59866.40648796765 0.03345270912386102 6.685603669576265e-05 0.014613836909381875 4.0068599394855605e-05 0.000516858751481536 1.4171368125467103e-06 0.014613836909381875 4.0068599394855605e-05 0.01883887221447915 7.794371238355653e-05']
['59866.40651950561 0.03358529698570772 6.694051263640813e-05 0.014788163090749007 4.015844935756632e-05 0.0005230242789204056 1.4203146049249397e-06 0.014788163090749007 4.015844935756632e-05 0.018797133894958712 7.806236792994007e-05']
['59866.406551043576 0.03345613702865619 6.684797606368298e-05 0.014612144434812931 4.006583504574889e-05 0.0005167988924384905 1.4170390436967623e-06 0.01461214443481293 4.006583504574889e-05 0.018843992593843263 7.79353773438218e-05']
['59866.40658258154 0.03362559613299874 6.697669264686516e-05 0.014696485407163897 4.01083364901415e-05 0.0005197818441395645 1.418542224799791e-06 0.014696485407163897 4.01083364901415e-05 0.018929110725834843 7.806763743010966e-05']
['59866.4066141195 0.033499450221506744 6.68757968803245e-05 0.01471391736705301 4.0144510451166084e-05 0.0005203983736027049 1.4198216169571858e-06 0.014713917367053008 4.0144510451166084e-05 0.018785532854453738 7.7999704664455e-05']
['59866.406645657466 0.03352018916707993 6.690382830089718e-05 0.014682035820353394 4.0105994213630676e-05 0.000519270794547003 1.4184593837142832e-06 0.014682035820353396 4.0105994213630676e-05 0.018838153346726536 7.80039294726856e-05']
['59866.40667719543 0.03352229731004943 6.691058378160701e-05 0.014640326178139552 4.008742406633315e-05 0.0005177956177174636 1.4178025991062063e-06 0.014640326178139552 4.008742406633315e-05 0.018881971131909876 7.800017814254963e-05']
['59866.40670873339 0.03352597657017305 6.689876100778544e-05 0.01473572312239463 4.01274602765977e-05 0.000521169594436143 1.4192185903875997e-06 0.01473572312239463 4.01274602765977e-05 0.01879025344777842 7.801062294730583e-05']
['59866.406740271355 0.03334756413000691 6.677897786139882e-05 0.014658408966144768 4.0094647100326745e-05 0.0005184351655165554 1.418058061676029e-06 0.014658408966144768 4.0094647100326745e-05 0.018689155163862145 7.789103035852673e-05']
['59866.406771809314 0.03342121108117182 6.680343972012735e-05 0.014680854994172578 4.0113023742361715e-05 0.0005192290313639786 1.418708002435428e-06 0.014680854994172576 4.0113023742361715e-05 0.01874035608699924 7.792146194852842e-05']
['59866.40680334728 0.03355536105846593 6.694615122234712e-05 0.014721044257205705 4.013657383704233e-05 0.0005206504357797438 1.4195409166529172e-06 0.014721044257205707 4.013657383704233e-05 0.018834316801260225 7.80559525139609e-05']
['59866.406834885245 0.03340479215380691 6.683101350240442e-05 0.014734099736923766 4.0136820407279475e-05 0.0005211121789200915 1.419549637291153e-06 0.014734099736923764 4.0136820407279475e-05 0.018670692416883142 7.795735191862772e-05']
['59866.4068664232 0.03351709470316354 6.690020117861564e-05 0.014690282216759155 4.011677490506261e-05 0.0005195624511582634 1.4188406726768033e-06 0.014690282216759155 4.011677490506261e-05 0.018826812486404384 7.800636221823644e-05']
['59866.40689796117 0.033432719172002995 6.683100312151829e-05 0.014662639835625694 4.0112988813520415e-05 0.0005185848019146589 1.4187067670803724e-06 0.014662639835625695 4.0112988813520415e-05 0.0187700793363773 7.794507585333406e-05']
['59866.406929499135 0.03349102607391267 6.684896151129206e-05 0.014639700305738306 4.009052923296942e-05 0.0005177734820093741 1.417912421910492e-06 0.014639700305738308 4.009052923296942e-05 0.01885132576817436 7.794892038583846e-05']
['59866.40696103709 0.03357196444563872 6.690536605459248e-05 0.014756309336949321 4.0151129335641706e-05 0.0005218976828374607 1.4200557121087523e-06 0.014756309336949323 4.0151129335641706e-05 0.0188156551086894 7.802846399761079e-05']
['59866.40699257506 0.03341549128647362 6.683275123975214e-05 0.01466427254253728 4.0108825485286026e-05 0.0005186425471092365 1.418559519465213e-06 0.014664272542537281 4.0108825485286026e-05 0.01875121874393634 7.794443225839624e-05']
['59866.40702411302 0.03342102097760963 6.68449151381789e-05 0.014671606585192593 4.0108549165236854e-05 0.0005189019358073342 1.4185497466426129e-06 0.01467160658519259 4.0108549165236854e-05 0.018749414392417035 7.7954720164789e-05']
['59866.40705565098 0.03346893074343785 6.683317385708692e-05 0.014665264490172004 4.00884425329576e-05 0.0005186776300802042 1.417838619994574e-06 0.014665264490172004 4.00884425329576e-05 0.018803666253265842 7.793430793001148e-05']
['59866.40708718895 0.03344757802181081 6.684401957843719e-05 0.014658507042007201 4.009485690508894e-05 0.0005184386342406229 1.4180654820015816e-06 0.0146585070420072 4.009485690508894e-05 0.01878907097980361 7.794690823658147e-05']
['59866.40711872691 0.03338303088519081 6.678555072980547e-05 0.01464908260510813 4.01083818114617e-05 0.0005181053129698797 1.4185438277135993e-06 0.014649082605108131 4.01083818114617e-05 0.01873394828008268 7.790373596829239e-05']
['59866.40715026487 0.03353931433784225 6.68998817774922e-05 0.014745941363464278 4.0145405005914645e-05 0.0005215309907863517 1.41985325535943e-06 0.014745941363464278 4.0145405005914645e-05 0.01879337297437797 7.802081597196576e-05']
['59866.40718180284 0.033466565769087964 6.684170225588004e-05 0.01466418423018876 4.0094420848135074e-05 0.0005186394236988359 1.4180500596416533e-06 0.014664184230188762 4.0094420848135074e-05 0.018802381538899203 7.794469669971837e-05']
['59866.4072133408 0.03337382491619933 6.680171320506029e-05 0.014589932446197025 4.006467600907313e-05 0.0005160133040420188 1.4169980511598353e-06 0.014589932446197024 4.006467600907313e-05 0.018783892470002304 7.789510351006106e-05']
['59866.40724487876 0.033585253229556564 6.694518626205721e-05 0.014742218702518005 4.012012766924162e-05 0.0005213993285883397 1.418959252452828e-06 0.014742218702518007 4.012012766924162e-05 0.018843034527038557 7.804666942194126e-05']
['59866.40727641672 0.033454999868931024 6.685601347471827e-05 0.014683217067711609 4.009997499162097e-05 0.0005193125726261306 1.4182464972839693e-06 0.01468321706771161 4.009997499162097e-05 0.01877178280121941 7.79598263983466e-05']
['59866.40730795469 0.03344708794956404 6.681705673103664e-05 0.014750461586992608 4.0148565365466475e-05 0.0005216908609904438 1.4199650302137904e-06 0.014750461586992608 4.0148565365466475e-05 0.018696626362571432 7.795143597845843e-05']
['59866.40733949265 0.03347392331944988 6.686748075833883e-05 0.014628714718937267 4.006261085392101e-05 0.0005173849463555628 1.416925011237455e-06 0.014628714718937267 4.006261085392101e-05 0.018845208600512614 7.795045074532618e-05']
['59866.40737103061 0.03360499974625327 6.69446294830887e-05 0.01466303758517144 4.009775627739931e-05 0.000518598869427174 1.4181680263204837e-06 0.014663037585171441 4.009775627739931e-05 0.018941962161081828 7.803469404764617e-05']
['59866.40740256858 0.03348247394242507 6.686776310153916e-05 0.014710874550452117 4.012045500083492e-05 0.0005202907559798262 1.4189708294397397e-06 0.014710874550452117 4.012045500083492e-05 0.01877159939197295 7.798043762173678e-05']
['59866.40743410654 0.033437004037854545 6.684543451937725e-05 0.014643905337934398 4.008529054976532e-05 0.0005179222046004559 1.417727141393331e-06 0.014643905337934398 4.008529054976532e-05 0.018793098699920147 7.794320133625162e-05']
['59866.4074656445 0.03347667945737673 6.688143173858466e-05 0.014732482648669623 4.01306959767706e-05 0.0005210549861225221 1.4193330298713506e-06 0.014732482648669625 4.01306959767706e-05 0.018744196808707106 7.79974273356689e-05']
['59866.40749718247 0.03351313884367268 6.688458690382969e-05 0.014697183137632675 4.011496406018455e-05 0.0005198065213069094 1.4187766271404665e-06 0.014697183137632675 4.011496406018455e-05 0.018815955706040003 7.799204002233718e-05']
['59866.407528720425 0.03351821991890416 6.690480829504249e-05 0.0146791976261845 4.01199241604341e-05 0.0005191704139622398 1.4189520548011212e-06 0.0146791976261845 4.01199241604341e-05 0.018839022292719665 7.801193298230323e-05']
['59866.40756025839 0.03345983148236096 6.687166830589344e-05 0.014621992194455657 4.0075595015034245e-05 0.0005171471856886062 1.4173842319981377e-06 0.014621992194455657 4.0075595015034245e-05 0.018837839287905302 7.796071663230445e-05']
['59866.40759179636 0.03353315989357502 6.691316050045573e-05 0.014668399565823642 4.0100540568394835e-05 0.0005187885106995209 1.4182665004704712e-06 0.014668399565823642 4.0100540568394835e-05 0.018864760327751376 7.80091302479218e-05']
['59866.407623334315 0.03356929403616618 6.691989876386753e-05 0.014709648605708576 4.012259213492085e-05 0.0005202473970540725 1.4190464150961457e-06 0.014709648605708578 4.012259213492085e-05 0.0188596454304576 7.802624718767071e-05']
['59866.40765487228 0.033564560510172925 6.695629705809937e-05 0.014777975366806856 4.016023186446602e-05 0.0005226639618927947 1.4203776482103136e-06 0.014777975366806856 4.016023186446602e-05 0.01878658514336607 7.807682075456273e-05']
['59866.407686410246 0.033453419159605126 6.684407723025129e-05 0.014712561865039917 4.0123688158252925e-05 0.0005203504325258706 1.419085178991933e-06 0.014712561865039919 4.0123688158252925e-05 0.018740857294565205 7.796179200213733e-05']
['59866.407717948205 0.03335149200213338 6.677582033609316e-05 0.014657745407996142 4.009372483958122e-05 0.0005184116969478036 1.418025443374591e-06 0.014657745407996142 4.009372483958122e-05 0.018693746594137237 7.788784855848983e-05']
['59866.40774948617 0.03350993603060292 6.688448457788607e-05 0.014761012646049647 4.014141191810005e-05 0.000522064028369062 1.419712028767454e-06 0.014761012646049647 4.014141191810005e-05 0.018748923384553272 7.800555895593637e-05']
['59866.40778102413 0.03349081456634267 6.689187198700981e-05 0.0146617962682825 4.008921994936718e-05 0.0005185549668229922 1.4178661154755576e-06 0.0146617962682825 4.008921994936718e-05 0.01882901829806017 7.798505045247613e-05']
['59866.407812562094 0.033469367340232564 6.68592556419217e-05 0.014641607928559385 4.008928903480686e-05 0.0005178409503652694 1.417868558873162e-06 0.014641607928559385 4.008928903480686e-05 0.01882775941167318 7.795711103105428e-05']
['59866.40784410006 0.03351582278455509 6.690732643392826e-05 0.014661959681572443 4.0105759781184314e-05 0.0005185607463858502 1.418451092362581e-06 0.014661959681572441 4.0105759781184314e-05 0.01885386310298265 7.800680930638232e-05']
['59866.40787563802 0.033598781193834804 6.69451268011587e-05 0.014775023383438148 4.015619171913825e-05 0.000522559556838338 1.4202347572992639e-06 0.014775023383438148 4.015619171913825e-05 0.018823757810396656 7.806516339448348e-05']
['59866.407907175984 0.03353669451903233 6.690510432894931e-05 0.014709917908282378 4.0121456470648306e-05 0.000520256921684252 1.419006249188886e-06 0.014709917908282378 4.0121456470648306e-05 0.018826776610749954 7.801297491182936e-05']
['59866.40793871395 0.033583946921568714 6.696601307369475e-05 0.014684335264174047 4.011980528967704e-05 0.000519352120735985 1.4189478506081045e-06 0.014684335264174047 4.011980528967704e-05 0.018899611657394667 7.806436884691922e-05']
['59866.40797025191 0.0334558412560438 6.686401885056087e-05 0.014716428831437707 4.0114222299900766e-05 0.0005204871984851991 1.4187503927369656e-06 0.014716428831437707 4.0114222299900766e-05 0.01873941242460609 7.797402033737914e-05']
['59866.408001789874 0.033598472483405646 6.697229917241162e-05 0.014657317955593063 4.0100700252336957e-05 0.0005183965789116065 1.4182721481346315e-06 0.01465731795559306 4.0100700252336957e-05 0.018941154527812587 7.805994502410813e-05']
['59866.40803332783 0.033405796431940124 6.67948645669646e-05 0.01466061311413879 4.009882725546489e-05 0.000518513121305123 1.4182059044211681e-06 0.01466061311413879 4.009882725546489e-05 0.018745183317801332 7.790680252572785e-05']
['59866.4080648658 0.03352726204899588 6.689995724159278e-05 0.014670253194765535 4.009346712145806e-05 0.0005188540694125788 1.418016328460541e-06 0.014670253194765535 4.009346712145806e-05 0.018857008854230344 7.799416891503096e-05']
['59866.408096403764 0.03352264441438644 6.688449135523344e-05 0.014739043476410585 4.015137505272979e-05 0.0005212870279371329 1.4200644025730123e-06 0.014739043476410587 4.015137505272979e-05 0.018783600937975854 7.801069223172724e-05']
['59866.40812794172 0.03350827026843652 6.687722324691855e-05 0.014682761794864331 4.01028096997665e-05 0.0005192964706429973 1.418346754575877e-06 0.014682761794864331 4.01028096997665e-05 0.018825508473572193 7.797947380582835e-05']
['59866.40815947969 0.03336873338911676 6.678941339533302e-05 0.01462675007895497 4.00753902516657e-05 0.0005173154614301009 1.4173769899754114e-06 0.01462675007895497 4.00753902516657e-05 0.01874198331016179 7.789006769489928e-05']
['59866.408191017654 0.03361296629169878 6.697424810422067e-05 0.014691728773525944 4.011377524632358e-05 0.0005196136126382406 1.4187345814510466e-06 0.014691728773525944 4.011377524632358e-05 0.01892123751817283 7.806833464112237e-05']
['59866.40822255561 0.033573722073366855 6.695349180420369e-05 0.014783998006483827 4.017853325541408e-05 0.0005228769691983617 1.4210249275069451e-06 0.014783998006483827 4.017853325541408e-05 0.018789724066883028 7.808383058823373e-05']
['59866.40825409358 0.03345912649811441 6.68461691572371e-05 0.014679180360148812 4.010430383907161e-05 0.0005191698033011449 1.418399598943894e-06 0.014679180360148812 4.010430383907161e-05 0.018779946137965596 7.795361131733751e-05']
['59866.408285631536 0.033607197146299124 6.694928762307827e-05 0.014728725869479943 4.0133029436211976e-05 0.0005209221172384905 1.4194155591168172e-06 0.014728725869479943 4.0133029436211976e-05 0.01887847127681918 7.805682010539192e-05']
['59866.4083171695 0.03341103875465439 6.681087163347398e-05 0.014749184965942738 4.012253979031036e-05 0.0005216457097569899 1.4190445637842558e-06 0.014749184965942736 4.012253979031036e-05 0.018661853788711658 7.79327323250608e-05']
['59866.40834870747 0.03346682640271937 6.687419065579367e-05 0.014686638790398594 4.012219362464232e-05 0.000519433591310469 1.419032320678212e-06 0.014686638790398592 4.012219362464232e-05 0.018780187612320778 7.798684374380546e-05']
['59866.408380245426 0.03346772225248228 6.685752905052325e-05 0.014733818531658805 4.0133987426948234e-05 0.0005211022333183266 1.4194494411081754e-06 0.014733818531658803 4.0133987426948234e-05 0.01873390372082348 7.797862615824928e-05']
['59866.40841178339 0.0334671430038706 6.685396937913787e-05 0.014702947539153775 4.012524311822745e-05 0.0005200103953060315 1.419140174451101e-06 0.014702947539153775 4.012524311822745e-05 0.01876419546471683 7.797107384821349e-05']
['59866.40844332136 0.03343978333546965 6.685249796188729e-05 0.014685122885061845 4.010620876037635e-05 0.0005193799771265573 1.4184669717531938e-06 0.014685122885061845 4.010620876037635e-05 0.018754660450407808 7.796001837400394e-05']
['59866.408474859316 0.03350446468399743 6.687664240044665e-05 0.014701875826518147 4.010864039274833e-05 0.0005199724912252461 1.4185529731558122e-06 0.014701875826518147 4.010864039274833e-05 0.018802588857479284 7.798197441019317e-05']
['59866.40850639728 0.033575491085354056 6.695214295914733e-05 0.014717634045727568 4.014401180450922e-05 0.0005205298242211362 1.4198039809393422e-06 0.01471763404572757 4.014401180450922e-05 0.01885785703962649 7.806491613127294e-05']
['59866.40853793524 0.033470895179034156 6.684953952636756e-05 0.014656252034918861 4.009958194179111e-05 0.0005183588796795526 1.418232595989902e-06 0.014656252034918863 4.009958194179111e-05 0.018814643144115295 7.795407241955868e-05']
['59866.408569473206 0.03347021267943853 6.68517857444366e-05 0.014668334097893714 4.008673931015875e-05 0.0005187861952451516 1.4177783808106577e-06 0.014668334097893714 4.008673931015875e-05 0.01880187858154482 7.79493933635194e-05']
['59866.40860101117 0.033478516245326655 6.68674152719884e-05 0.014639116670648366 4.0091885272738585e-05 0.0005177528401405905 1.417960382006557e-06 0.014639116670648366 4.0091885272738585e-05 0.01883939957467829 7.79654442036918e-05']
['59866.40863254913 0.0333566639129819 6.676599752521296e-05 0.014714342704814178 4.013418707346519e-05 0.0005204134168487435 1.4194565021592965e-06 0.014714342704814178 4.013418707346519e-05 0.018642321208167723 7.790026570933275e-05']
['59866.408664087096 0.033522997541914304 6.691752789103752e-05 0.014651665110350296 4.008762723651755e-05 0.0005181966504087355 1.41780978478157e-06 0.014651665110350296 4.008762723651755e-05 0.018871332431564008 7.800623947160745e-05']
['59866.40869562506 0.033488163242184246 6.68722021748528e-05 0.014739071389563365 4.013279996104633e-05 0.0005212880151629645 1.419407443093055e-06 0.014739071389563365 4.013279996104633e-05 0.01874909185262088 7.799059594866389e-05']
['59866.40872716302 0.03352177251419302 6.687512472694805e-05 0.01475185197655893 4.013927361955437e-05 0.0005217400359620668 1.4196364019267093e-06 0.01475185197655893 4.013927361955437e-05 0.01876992053763409 7.799643321300219e-05']
['59866.408758700985 0.03347244885244927 6.683385694004466e-05 0.014722878524660726 4.013904254217645e-05 0.0005207153097202814 1.4196282292362798e-06 0.014722878524660728 4.013904254217645e-05 0.018749570327788546 7.796093361219454e-05']
['59866.408790238944 0.033472366093879456 6.687584572736389e-05 0.01466421543393588 4.0109388519061424e-05 0.0005186405273056351 1.4185794327115426e-06 0.014664215433935878 4.0109388519061424e-05 0.018808150659943578 7.798167598303585e-05']
['59866.40882177691 0.0336264242300077 6.696501882608745e-05 0.014758080607864155 4.015673662904771e-05 0.0005219603287311608 1.4202540295449594e-06 0.014758080607864155 4.015673662904771e-05 0.018868343622143548 7.808250279718849e-05']
['59866.408853314875 0.033549497584530505 6.691366863971157e-05 0.014763148660312132 4.013341072342075e-05 0.0005221395744198151 1.419429044393265e-06 0.01476314866031213 4.013341072342075e-05 0.018786348924218377 7.802646799080362e-05']
['59866.40888485283 0.0335405512804383 6.692698800649331e-05 0.014756402299226009 4.015275597349117e-05 0.0005219009707054286 1.4201132426541662e-06 0.014756402299226009 4.015275597349117e-05 0.018784148981212292 7.804784132753468e-05']
['59866.4089163908 0.03341459859365865 6.684106624635106e-05 0.014702649806368559 4.0128075731530557e-05 0.000519999865162812 1.419240357653114e-06 0.014702649806368559 4.0128075731530557e-05 0.018711948787290086 7.796146868078194e-05']
['59866.408947928765 0.03341308724439698 6.67982389647756e-05 0.014666310095490558 4.011161088675262e-05 0.0005187146108035311 1.4186580328900805e-06 0.014666310095490558 4.011161088675262e-05 0.018746777148906425 7.791627594235698e-05']
['59866.40897946672 0.033545252996835105 6.691822012500336e-05 0.01470841149794327 4.011999466954245e-05 0.0005202036433171867 1.4189545485507052e-06 0.014708411497943271 4.011999466954245e-05 0.018836841498891834 7.802347183368937e-05']
['59866.40901100469 0.03342468331291517 6.682392535669891e-05 0.014641897872790405 4.009258411083336e-05 0.0005178512050447334 1.417985098348158e-06 0.014641897872790405 4.009258411083336e-05 0.018782785440124766 7.792850762565594e-05']
['59866.40904254265 0.03341319194450527 6.682030597377762e-05 0.014674658256426576 4.011330133415885e-05 0.0005190098665987964 1.4187178202369114e-06 0.014674658256426575 4.011330133415885e-05 0.018738533688078693 7.79360650427919e-05']
['59866.40907408061 0.0334679396494942 6.684708956309813e-05 0.0146432336670242 4.008351854337612e-05 0.0005178984491014583 1.4176644694875462e-06 0.0146432336670242 4.008351854337612e-05 0.01882470598247 7.794370944389315e-05']
['59866.40910561858 0.033421027813611594 6.685266402577029e-05 0.014744634250605486 4.01426678961869e-05 0.0005214847611257616 1.4197564499054401e-06 0.014744634250605487 4.01426678961869e-05 0.018676393563006106 7.797892326241799e-05']
['59866.40913715654 0.03339117954315484 6.677490530405608e-05 0.014645668157023665 4.007963418913597e-05 0.0005179845515719745 1.4175270885590928e-06 0.014645668157023665 4.007963418913597e-05 0.018745511386131175 7.787981160159938e-05']
['59866.4091686945 0.03357932633007215 6.719174988222713e-05 0.014799296907117804 4.03518786553476e-05 0.0005234180571227549 1.427155766898425e-06 0.014799296907117804 4.03518786553476e-05 0.018780029422954345 7.837732684425813e-05']
['59866.40920023247 0.033554044364758805 6.71598218653484e-05 0.01463305565461455 4.0248894473162136e-05 0.0005175384755490481 1.4235134465306268e-06 0.01463305565461455 4.0248894473162136e-05 0.018920988710144256 7.82969678806087e-05']
['59866.40923177043 0.033543677286209155 6.717581300154825e-05 0.014733815819237528 4.030091717486398e-05 0.000521102137386048 1.4253533732259254e-06 0.014733815819237528 4.030091717486398e-05 0.018809861466971625 7.833743535216242e-05']
['59866.40926330839 0.03348740813294522 6.710108108081769e-05 0.014719490343946224 4.0294952180933856e-05 0.0005205954773405476 1.4251424047215937e-06 0.014719490343946224 4.0294952180933856e-05 0.018767917788998997 7.827028972399563e-05']
['59866.40929484635 0.03351600166463609 6.711779760689503e-05 0.014729704202039392 4.0304309168298444e-05 0.0005209567186746735 1.4254733404530432e-06 0.01472970420203939 4.0304309168298444e-05 0.018786297462596704 7.828943794110358e-05']
['59866.40932638432 0.03342898855463976 6.707922386079523e-05 0.014678732246371172 4.0279855684680005e-05 0.0005191539545183051 1.4246084753877785e-06 0.014678732246371172 4.0279855684680005e-05 0.018750256308268584 7.824377961055644e-05']
['59866.40935792228 0.03350316741439546 6.710013516442257e-05 0.014638161407895454 4.0240223828622806e-05 0.0005177190546319066 1.4232067852110208e-06 0.014638161407895454 4.0240223828622806e-05 0.01886500600650001 7.824131742795134e-05']
['59866.40938946024 0.033450328251530256 6.707794701654039e-05 0.014683251612793791 4.028145237315864e-05 0.0005193137944084836 1.4246649466908792e-06 0.014683251612793791 4.028145237315864e-05 0.018767076638736467 7.824350695901129e-05']
['59866.40942099821 0.03353338156864178 6.714010476423094e-05 0.014679054939505628 4.0272416502464445e-05 0.0005191653674532941 1.4243453681384078e-06 0.014679054939505626 4.0272416502464445e-05 0.018854326629136154 7.829215285518642e-05']
['59866.40945253617 0.03344549808812599 6.705633437686413e-05 0.014741565740961025 4.029720243659808e-05 0.0005213762347973524 1.425221991235412e-06 0.014741565740961023 4.029720243659808e-05 0.018703932347164966 7.823309085213224e-05']
['59866.40948407413 0.033526615169643365 6.710715397967786e-05 0.014698499434998935 4.027289256214246e-05 0.0005198530758030025 1.4243622053052885e-06 0.014698499434998933 4.027289256214246e-05 0.01882811573464443 7.826414243172964e-05']
['59866.4095156121 0.033442603668142244 6.705459429923409e-05 0.014713743395060097 4.0301847049185146e-05 0.0005203922206021202 1.4253862608025183e-06 0.014713743395060097 4.0301847049185146e-05 0.018728860273082147 7.823399192301765e-05']
['59866.409547150055 0.033538208697006563 6.714778288322624e-05 0.014746781619568066 4.031738972493576e-05 0.0005215607087668808 1.4259359705079816e-06 0.014746781619568066 4.031738972493576e-05 0.0187914270774385 7.83218785548792e-05']
['59866.40957868802 0.03359339447174401 6.720490752864731e-05 0.014667604060597823 4.027583525001774e-05 0.0005187603754575332 1.424466281598917e-06 0.014667604060597821 4.027583525001774e-05 0.01892579041114619 7.834948947517532e-05']
['59866.40961022599 0.0334637066543092 6.708632668472898e-05 0.01474162464660412 4.0316128344583975e-05 0.0005213783181583023 1.4258913583039582e-06 0.01474162464660412 4.0316128344583975e-05 0.01872208200770508 7.826854689303454e-05']
['59866.409641763945 0.03351575383902825 6.713897112619947e-05 0.014755709608466042 4.0309315231067815e-05 0.0005218764717813214 1.4256503937053041e-06 0.014755709608466042 4.0309315231067815e-05 0.01876004423056221 7.831016752812013e-05']
['59866.40967330191 0.03349996318369053 6.7121601832482e-05 0.014743014083728424 4.0292391483633644e-05 0.0005214274594441797 1.425051838580907e-06 0.014743014083728424 4.0292391483633644e-05 0.018756949099962103 7.828656490119261e-05']
['59866.409704839876 0.03346825806178238 6.707879318820138e-05 0.014648961459536418 4.026931228553237e-05 0.0005181010283217526 1.424235578923037e-06 0.014648961459536418 4.026931228553237e-05 0.01881929660224596 7.8237983150994e-05']
['59866.409736377835 0.03348950943515632 6.710664072714707e-05 0.014650766354206946 4.0254677935978843e-05 0.000518164863412547 1.423717994685175e-06 0.014650766354206946 4.0254677935978843e-05 0.018838743080949377 7.825433103293246e-05']
['59866.4097679158 0.03348777873457797 6.711745154715754e-05 0.014681235941803122 4.029194311971947e-05 0.0005192425046303032 1.425035980951297e-06 0.014681235941803122 4.029194311971947e-05 0.018806542792774848 7.82827757718628e-05']
['59866.40979945376 0.03350202673746618 6.708004479696634e-05 0.014778754449239302 4.032716055029874e-05 0.0005226915162972836 1.4262815427645605e-06 0.014778754449239302 4.032716055029874e-05 0.01872327228822688 7.82688462161835e-05']
['59866.409830991724 0.03354238570309991 6.717207791034473e-05 0.014707128571767689 4.028989456739275e-05 0.0005201582690855277 1.424963528233746e-06 0.014707128571767689 4.028989456739275e-05 0.018835257131332224 7.832856219186617e-05']
['59866.40986252969 0.033516106833665515 6.71432406167601e-05 0.014789893687009266 4.032799271677859e-05 0.0005230854862424759 1.4263109746331703e-06 0.014789893687009264 4.032799271677859e-05 0.01872621314665625 7.832344321520019e-05']
['59866.40989406765 0.03361643978696001 6.719409139275812e-05 0.014711200442793261 4.0290226279087416e-05 0.000520302282063606 1.4249752601350543e-06 0.014711200442793261 4.0290226279087416e-05 0.018905239344166748 7.834761165293041e-05']
['59866.409925605614 0.033531893322542305 6.713161597316622e-05 0.014703809630989623 4.02782986671638e-05 0.0005200408855676036 1.4245534071579595e-06 0.014703809630989622 4.02782986671638e-05 0.018828083691552686 7.828789949085309e-05']
['59866.40995714358 0.0334874716662112 6.70996172795096e-05 0.014658141250760854 4.026406564785113e-05 0.000518425697021735 1.4240500170737966e-06 0.014658141250760856 4.026406564785113e-05 0.018829330415450346 7.825313809395204e-05']
['59866.40998868154 0.03358128712208081 6.718426171623557e-05 0.0147282447250823 4.031284949942624e-05 0.0005209051002364402 1.4257753928785166e-06 0.0147282447250823 4.031284949942624e-05 0.01885304239699851 7.83508191221957e-05']
['59866.410020219504 0.033461641541638616 6.708111741397117e-05 0.014720146738071907 4.0315512684805026e-05 0.0005206186925338185 1.4258695837934952e-06 0.014720146738071907 4.0315512684805026e-05 0.01874149480356671 7.826376477365283e-05']
['59866.41005175746 0.03347306344832688 6.71178023150071e-05 0.014762344398944758 4.0322089708460256e-05 0.0005221111294926695 1.426102198421398e-06 0.014762344398944758 4.0322089708460256e-05 0.018710719049382124 7.829859708866749e-05']
['59866.41008329543 0.03357206179378108 6.71350257014641e-05 0.014776777142398556 4.033466313469619e-05 0.0005226215833733472 1.4265468924074092e-06 0.014776777142398556 4.033466313469619e-05 0.018795284651382527 7.831983609613637e-05']
['59866.410114833394 0.03343764178458468 6.705671685128804e-05 0.014722469995027875 4.030964246532499e-05 0.0005207008609401774 1.4256619672496549e-06 0.014722469995027875 4.030964246532499e-05 0.018715171789556805 7.823982713782124e-05']
['59866.41014637135 0.033398890310859165 6.705261313981954e-05 0.014638233344673323 4.0273369728275765e-05 0.0005177215988749706 1.42437908160502e-06 0.014638233344673325 4.0273369728275765e-05 0.01876065696618584 7.821762741319055e-05']
['59866.41017790932 0.03341943028596209 6.707362189549746e-05 0.014716863510820783 4.029777913752941e-05 0.0005205025721235273 1.4252423878585022e-06 0.014716863510820783 4.029777913752941e-05 0.018702566775141302 7.824820609826947e-05']
['59866.410209447284 0.033462217396322866 6.70963300020533e-05 0.014722037862751332 4.030266869748238e-05 0.0005206855773873148 1.4254153206665154e-06 0.014722037862751332 4.030266869748238e-05 0.018740179533571533 7.827018975244319e-05']
['59866.41024098524 0.033490598150300255 6.709789363326249e-05 0.014648459325334316 4.0252765112067846e-05 0.0005180832689572281 1.423650342378353e-06 0.014648459325334316 4.0252765112067846e-05 0.018842138824965937 7.824584608263824e-05']
['59866.41027252321 0.03349955296456816 6.713571258076233e-05 0.014710115951192704 4.0293137387907415e-05 0.0005202639260193904 1.4250782195480722e-06 0.014710115951192704 4.0293137387907415e-05 0.01878943701337546 7.829904740344874e-05']
['59866.410304061166 0.03346020723295623 6.707986678966218e-05 0.014691250635001638 4.0291634560413354e-05 0.0005195967019472127 1.4250250678982292e-06 0.01469125063500164 4.0291634560413354e-05 0.018768956597954592 7.825039516877035e-05']
['59866.41033559913 0.033608728856097135 6.719807553550388e-05 0.014723021162436192 4.0289004582265726e-05 0.0005207203544996229 1.4249320514488028e-06 0.014723021162436194 4.0289004582265726e-05 0.018885707693660943 7.835040041955825e-05']
['59866.4103671371 0.03346600389089734 6.710573178510013e-05 0.014617985995772735 4.025015479910325e-05 0.0005170054953945183 1.4235580214425013e-06 0.014617985995772733 4.025015479910325e-05 0.018848017895124608 7.825122490904262e-05']
['59866.410398675056 0.03337753131846804 6.702833606859057e-05 0.014677901296457636 4.028115210293583e-05 0.0005191245656769271 1.424654326804163e-06 0.014677901296457636 4.028115210293583e-05 0.018699630022010402 7.820082512904689e-05']
['59866.41043021302 0.033546791194744005 6.715989251580073e-05 0.014688962541888655 4.028436920702324e-05 0.0005195157772073936 1.42476810858593e-06 0.014688962541888655 4.028436920702324e-05 0.01885782865285535 7.831527031902316e-05']
['59866.41046175098 0.03350128575022163 6.713134636612809e-05 0.01465641568061273 4.027199148796916e-05 0.0005183646674620182 1.4243303363255611e-06 0.01465641568061273 4.027199148796916e-05 0.018844870069608895 7.828442350388817e-05']
['59866.410493288946 0.033502689022147356 6.713271876101675e-05 0.014702168789478422 4.029565522345934e-05 0.0005199828526704173 1.4251672697645126e-06 0.014702168789478422 4.029565522345934e-05 0.018800520232668934 7.82977762017139e-05']
['59866.41052482691 0.0335449365619828 6.713745633017596e-05 0.014732949375884387 4.0309148682568126e-05 0.0005210714932210343 1.425644503257084e-06 0.014732949375884387 4.0309148682568126e-05 0.01881198718609841 7.830878309614871e-05']
['59866.41055636487 0.033516348157329415 6.713250211343908e-05 0.014646515121685216 4.025289413705607e-05 0.0005180145068191989 1.4236549057038325e-06 0.014646515121685216 4.025289413705607e-05 0.0188698330356442 7.827559214991571e-05']
['59866.410587902836 0.03343786822942266 6.706934932592367e-05 0.014746219105552598 4.030557036302475e-05 0.0005215408139032985 1.4255179460919084e-06 0.014746219105552596 4.030557036302475e-05 0.01869164912387006 7.824855667225765e-05']
['59866.4106194408 0.033463779627516475 6.709800311878365e-05 0.01466499290937483 4.0263718828082355e-05 0.0005186680248743555 1.4240377508336716e-06 0.01466499290937483 4.0263718828082355e-05 0.018798786718141645 7.825157555215852e-05']
['59866.41065097876 0.033508524633149246 6.710352608453586e-05 0.014738141987096788 4.030735231369503e-05 0.0005212551442748139 1.4255809697046908e-06 0.014738141987096786 4.030735231369503e-05 0.01877038264605246 7.82787701967674e-05']
['59866.410682516726 0.033411911590642156 6.704591010669901e-05 0.01466997176791174 4.028109761230023e-05 0.000518844115973712 1.424652399592161e-06 0.01466997176791174 4.028109761230023e-05 0.018741939822730418 7.821586083964827e-05']
['59866.410714054684 0.033527165901670826 6.712209096330027e-05 0.014722964939441835 4.029351882661113e-05 0.0005207183660179634 1.4250917101825573e-06 0.014722964939441833 4.029351882661113e-05 0.01880420096222899 7.828756449600423e-05']
['59866.41074559265 0.03347424336138777 6.709295197387056e-05 0.014776684259214114 4.031447836217592e-05 0.0005226182983026951 1.4258330021136788e-06 0.014776684259214114 4.031447836217592e-05 0.018697559102173654 7.827337587061422e-05']
['59866.410777130615 0.03359964349443913 6.720366175693515e-05 0.014764529055296991 4.032878348163981e-05 0.0005221883959054284 1.4263389422190563e-06 0.01476452905529699 4.032878348163981e-05 0.01883511443914214 7.83756526649031e-05']
['59866.410808668574 0.03356814840342975 6.717171416559725e-05 0.014703725678439973 4.028380836889741e-05 0.0005200379163535453 1.4247482729948187e-06 0.014703725678439972 4.028380836889741e-05 0.018864422724989775 7.832511985721277e-05']
['59866.41084020654 0.03356661663344056 6.71648616263474e-05 0.01474208157399917 4.0303749931912444e-05 0.0005213944786590926 1.4254535615118901e-06 0.01474208157399917 4.0303749931912444e-05 0.018824535059441386 7.832950207846675e-05']
['59866.410871744505 0.03348360310634683 6.712509446922672e-05 0.014628560122758325 4.025885396698093e-05 0.0005173794786342157 1.423865691568839e-06 0.014628560122758325 4.025885396698093e-05 0.018855042983588505 7.827230436263716e-05']
['59866.41090328246 0.033406391046119255 6.707363467465386e-05 0.01473111074460501 4.0310946238453523e-05 0.0005210064649417819 1.4257080787914496e-06 0.01473111074460501 4.0310946238453523e-05 0.018675280301514247 7.825499891450015e-05']
['59866.41093482043 0.033456068632528604 6.708388077672867e-05 0.014709273055487368 4.0305919490266405e-05 0.0005202341146820537 1.4255302939421923e-06 0.01470927305548737 4.0305919490266405e-05 0.018746795577041234 7.826119220930758e-05']
['59866.41096635839 0.033526287370249756 6.716003584711495e-05 0.014686045737161426 4.0289195677809934e-05 0.0005194126163428664 1.424938810071128e-06 0.014686045737161426 4.0289195677809934e-05 0.018840241633088332 7.831787601404053e-05']
['59866.41099789635 0.03350016640238698 6.710274448436768e-05 0.014672441087802341 4.027237980806847e-05 0.0005189314502996375 1.4243440703396293e-06 0.014672441087802341 4.027237980806847e-05 0.01882772531458464 7.82600977046391e-05']
['59866.41102943432 0.0335105901195835 6.71113826535365e-05 0.014764453971237507 4.032445379417722e-05 0.0005221857403500475 1.4261858108497864e-06 0.014764453971237509 4.032445379417722e-05 0.018746136148345992 7.829431176955408e-05']
['59866.41106097228 0.03350222984845905 6.712884389867997e-05 0.014652781509430493 4.02606141950554e-05 0.0005182361349491969 1.4239279469019548e-06 0.014652781509430491 4.02606141950554e-05 0.018849448339028557 7.827642517729358e-05']
['59866.41109251024 0.033523158876102147 6.714944918963326e-05 0.014725599557040569 4.0295444232345414e-05 0.0005208115465544069 1.4251598074803504e-06 0.014725599557040569 4.0295444232345414e-05 0.018797559319061578 7.831201282276685e-05']
['59866.41112404821 0.03349001778957632 6.709427246228471e-05 0.014680958135536605 4.028034376241659e-05 0.000519232679243517 1.424625737606532e-06 0.014680958135536607 4.028034376241659e-05 0.01880905965403971 7.825693254186334e-05']
['59866.41115558617 0.03347651704106623 6.711055229753016e-05 0.014683468596075474 4.026772375179745e-05 0.0005193214686222276 1.424179396034997e-06 0.014683468596075472 4.026772375179745e-05 0.01879304844499076 7.826439679592889e-05']
['59866.41118712413 0.033529285074169725 6.71430504923923e-05 0.014700227402772208 4.028389608103119e-05 0.0005199141901613625 1.4247513751769655e-06 0.014700227402772208 4.028389608103119e-05 0.018829057671397517 7.830058437132677e-05']
['59866.41121866209 0.03347293813452388 6.710718543878239e-05 0.014668698517762204 4.0275362206191814e-05 0.0005187990839614695 1.4244495510959846e-06 0.014668698517762202 4.0275362206191814e-05 0.018804239616761677 7.826544025529448e-05']
['59866.41125020006 0.03348212267894749 6.711422952225772e-05 0.014674275380630954 4.0270623214315826e-05 0.0005189963251375823 1.4242819435443543e-06 0.014674275380630954 4.0270623214315826e-05 0.018807847298316537 7.826904176260038e-05']
['59866.41128173802 0.03357885506353193 6.719158797093321e-05 0.014736613903610415 4.030534200812795e-05 0.0005212010993769665 1.4255098696895516e-06 0.014736613903610415 4.030534200812795e-05 0.018842241159921513 7.835323917010592e-05']
['59866.41131327598 0.033621729610879766 6.721002663852002e-05 0.014806842949850617 4.0337643675082395e-05 0.0005236849437898015 1.4266523074597535e-06 0.014806842949850617 4.0337643675082395e-05 0.01881488666102915 7.838566946839508e-05']
['59866.41134481395 0.03356082919341691 6.717030212776205e-05 0.014649075705100925 4.027085982142793e-05 0.0005181050689320454 1.4242903118091237e-06 0.014649075705100927 4.027085982142793e-05 0.01891175348831598 7.831724994336774e-05']
['59866.41137635191 0.0334288475225284 6.705446179059422e-05 0.01463752196757873 4.025064015670848e-05 0.0005176964390569691 1.4235751874562879e-06 0.01463752196757873 4.025064015670848e-05 0.01879132555494967 7.820751165361991e-05']
['59866.41140788987 0.033509154295223435 6.711222577763581e-05 0.014602280417466775 4.023578825060622e-05 0.0005164500241897383 1.4230499087295077e-06 0.014602280417466775 4.023578825060622e-05 0.01890687387775666 7.824940578033795e-05']
['59866.41143942784 0.033410966410646774 6.703169567964444e-05 0.01468141438310323 4.028446832327544e-05 0.0005192488157002952 1.4247716141062584e-06 0.014681414383103232 4.028446832327544e-05 0.01872955202754354 7.820541294422942e-05']
['59866.411470965795 0.03354724798417036 6.716520789181014e-05 0.014690944400621964 4.027026214834236e-05 0.0005195858711215971 1.4242691734478078e-06 0.014690944400621962 4.027026214834236e-05 0.018856303583548395 7.831257347735605e-05']
['59866.41150250376 0.03353043333147115 6.713630748915575e-05 0.014600874701098627 4.0239772984955855e-05 0.0005164003071433881 1.423190839878097e-06 0.014600874701098627 4.0239772984955855e-05 0.01892955863037252 7.827210942065668e-05']
['59866.41153404173 0.033512911789214166 6.712697470480875e-05 0.01467198468480776 4.028411953577386e-05 0.0005189153083457198 1.4247592782718217e-06 0.014671984684807762 4.028411953577386e-05 0.018840927104406404 7.828691474181717e-05']
['59866.411565579685 0.03344816512279788 6.706666159886357e-05 0.01477184197678247 4.03262192693186e-05 0.0005224470375949522 1.4262482517599321e-06 0.014771841976782472 4.03262192693186e-05 0.018676323146015406 7.825689144461109e-05']
['59866.41159711765 0.03354483068781367 6.714529391154412e-05 0.01474116212412007 4.0324750400343625e-05 0.0005213619597717184 1.4261963011470164e-06 0.01474116212412007 4.0324750400343625e-05 0.0188036685636936 7.832353407065885e-05']
['59866.41162865562 0.03352202579227871 6.715669403591785e-05 0.014678479705103968 4.028469373338531e-05 0.0005191450226980807 1.4247795863580825e-06 0.01467847970510397 4.028469373338531e-05 0.018843546087174742 7.83126943925858e-05']
['59866.411660193575 0.03355247842265009 6.714433244900185e-05 0.014787739709989953 4.0328607488604286e-05 0.0005230093048891583 1.426332717738711e-06 0.014787739709989955 4.0328607488604286e-05 0.018764738712660135 7.832469573507446e-05']
['59866.41169173154 0.03349536374960558 6.713209050497119e-05 0.014692424248285176 4.0282836933825715e-05 0.00051963821002618 1.4247139155073626e-06 0.014692424248285174 4.0282836933825715e-05 0.018802939501320406 7.829064137561294e-05']
['59866.4117232695 0.033534790768270845 6.715788904493161e-05 0.014774591275706916 4.0319958331909446e-05 0.0005225442741535884 1.4260268163961421e-06 0.014774591275706917 4.0319958331909446e-05 0.018760199492563925 7.833186516902466e-05']
['59866.411754807465 0.033504118340770536 6.712575633263598e-05 0.01467133797917934 4.028419137185784e-05 0.0005188924358129446 1.4247618189535678e-06 0.014671337979179341 4.028419137185784e-05 0.018832780361591195 7.828590701852337e-05']
['59866.41178634543 0.03342712205683404 6.70780429729085e-05 0.014712420299865006 4.031361435282569e-05 0.0005203454256820136 1.4258024440339084e-06 0.014712420299865008 4.031361435282569e-05 0.018714701756969033 7.826015174572377e-05']
['59866.41181788339 0.033536225623735476 6.713632842207555e-05 0.014756636281025666 4.0326722379069465e-05 0.000521909246118764 1.4262660456274362e-06 0.014756636281025666 4.0326722379069465e-05 0.01877958934270981 7.831686364912304e-05']
['59866.411849421354 0.03345476015401784 6.709143261245293e-05 0.014643164644689587 4.024985255673251e-05 0.0005178960079357389 1.42354733180532e-06 0.014643164644689587 4.024985255673251e-05 0.018811595509328254 7.823880725592651e-05']
['59866.41188095932 0.03360405469745852 6.719726051256737e-05 0.014685936211818136 4.0277177256961985e-05 0.000519408742676249 1.4245137453853257e-06 0.014685936211818136 4.0277177256961985e-05 0.018918118485640387 7.834362021366247e-05']
['59866.41191249728 0.033482293014721894 6.711940985711905e-05 0.014661935071569952 4.0263206282033356e-05 0.0005185598759850623 1.4240196232253914e-06 0.014661935071569952 4.0263206282033356e-05 0.01882035794315194 7.826966819705767e-05']
['59866.411944035244 0.03349249645345601 6.709230365108351e-05 0.014667040270927287 4.027633319188642e-05 0.0005187404354768822 1.4244838926899775e-06 0.014667040270927289 4.027633319188642e-05 0.018825456182528726 7.825318028420983e-05']
['59866.4119755732 0.03352817013790124 6.712772547369141e-05 0.014721163707348052 4.031843673057699e-05 0.0005206546604643232 1.425973000757592e-06 0.014721163707348052 4.031843673057699e-05 0.01880700643055319 7.830522248016934e-05']
['59866.41200711117 0.03352832530135217 6.712651141317241e-05 0.014699508354673754 4.0296245894784333e-05 0.0005198887590370981 1.425188160489205e-06 0.014699508354673754 4.0296245894784333e-05 0.018828816946678414 7.82927580796314e-05']
['59866.412038649134 0.03346589849104164 6.707982714591311e-05 0.014655925937621321 4.028194890006323e-05 0.0005183473463469232 1.424682507737822e-06 0.014655925937621323 4.028194890006323e-05 0.018809972553420318 7.824537441352611e-05']
['59866.41207018709 0.03351854855699379 6.7134178585882e-05 0.014620937225130005 4.024031815067485e-05 0.0005171098737812756 1.4232101211712044e-06 0.014620937225130005 4.024031815067485e-05 0.01889761133186378 7.827056368308989e-05']
['59866.41210172506 0.033523820514464224 6.713436633653096e-05 0.014711639019519919 4.028131250211463e-05 0.0005203177935422666 1.4246599997646458e-06 0.014711639019519919 4.028131250211463e-05 0.018812181494944305 7.829180851341064e-05']
['59866.412133263024 0.033510373944276105 6.71202924023027e-05 0.014636024785412226 4.0248162278392314e-05 0.000517643487069745 1.4234875504379772e-06 0.014636024785412226 4.0248162278392314e-05 0.01887434915886388 7.826268727151154e-05']
['59866.41216480098 0.03345095550796647 6.709155517304195e-05 0.01473068021633769 4.0301643618220466e-05 0.0005209912381191408 1.4253790659039389e-06 0.014730680216337689 4.0301643618220466e-05 0.018720275291628785 7.826556876345678e-05']
['59866.41219633895 0.03352341081440133 6.714918195735672e-05 0.014695259873986895 4.027910158594556e-05 0.0005197384997699994 1.4245818046008527e-06 0.014695259873986895 4.027910158594556e-05 0.018828150940414432 7.830337580279105e-05']
['59866.41222787691 0.033498542784476774 6.712511575025486e-05 0.01468510897227563 4.029357588008192e-05 0.0005193794850624022 1.4250937280363121e-06 0.014685108972275632 4.029357588008192e-05 0.018813433812201144 7.829018726308573e-05']
['59866.41225941487 0.0335165535148904 6.713540629366016e-05 0.014648743134458683 4.025369656278266e-05 0.0005180933066516809 1.4236832857084663e-06 0.01464874313445868 4.025369656278266e-05 0.01886781038043172 7.827849554752189e-05']
['59866.41229095284 0.033600443505101794 6.718661868831315e-05 0.014673600607743321 4.028135477252247e-05 0.0005189724599285754 1.4246614947745023e-06 0.014673600607743321 4.028135477252247e-05 0.01892684289735847 7.833664068032665e-05']
['59866.412322490796 0.03350755893090716 6.714336484776237e-05 0.014762049049511256 4.0322825256839805e-05 0.0005221006836432737 1.4261282131237288e-06 0.014762049049511256 4.0322825256839805e-05 0.0187455098813959 7.832088916613096e-05']
['59866.41235402876 0.03355679049558527 6.71606498473395e-05 0.014640674083392442 4.025243635289483e-05 0.0005178079223487358 1.4236387149011368e-06 0.014640674083392442 4.025243635289483e-05 0.01891611641219283 7.829949885063629e-05']
['59866.41238556673 0.03356128683974554 6.716406710313895e-05 0.014726407101169495 4.030231810548363e-05 0.0005208401075854921 1.4254029210110468e-06 0.014726407101169495 4.030231810548363e-05 0.018834879738576046 7.832808407276757e-05']
['59866.412417104686 0.03356230021850957 6.718051980488587e-05 0.014723608368122126 4.0295654540910614e-05 0.0005207411226524069 1.4251672456242895e-06 0.014723608368122127 4.0295654540910614e-05 0.01883869185038744 7.833876445371776e-05']
['59866.41244864265 0.0335530744565123 6.71521825232093e-05 0.014752494140309212 4.03046679683194e-05 0.0005217627478587627 1.4254860304079136e-06 0.014752494140309212 4.03046679683194e-05 0.01880058031620309 7.831910289110115e-05']
['59866.41248018061 0.03367286214560401 6.725567950430122e-05 0.014768182903105935 4.03161003329615e-05 0.0005223176243365615 1.4258903675954736e-06 0.014768182903105935 4.03161003329615e-05 0.018904679242498078 7.841373841134411e-05']
['59866.412511718576 0.03352049319198656 6.716795303757503e-05 0.014673868185975176 4.026824169646134e-05 0.0005189819235726339 1.4241977145802206e-06 0.014673868185975176 4.026824169646134e-05 0.01884662500601138 7.831388896346875e-05']
['59866.41254325654 0.033584848441377824 6.71829472962912e-05 0.014736879747007709 4.0306899447627195e-05 0.0005212105016638037 1.4255649528439676e-06 0.014736879747007709 4.0306899447627195e-05 0.018847968694370117 7.834663075396013e-05']
['59866.4125747945 0.03346203281455336 6.709254449074995e-05 0.014728859910246209 4.0292564774711176e-05 0.0005209268579608298 1.4250579674990365e-06 0.014728859910246209 4.0292564774711176e-05 0.01873317290430715 7.826174226509116e-05']
['59866.412606332466 0.033529634990211866 6.713820727163908e-05 0.014750619944333014 4.030899890708075e-05 0.0005216964617356661 1.425639206032824e-06 0.014750619944333014 4.030899890708075e-05 0.018779015045878852 7.830934981559103e-05']
['59866.41263787043 0.033401446524248125 6.70449645224728e-05 0.014695949707028796 4.0293039534203265e-05 0.0005197628976230053 1.4250747586812466e-06 0.014695949707028796 4.0293039534203265e-05 0.01870549681721933 7.822120110765689e-05']
['59866.41266940839 0.033385145188751915 6.704266469861326e-05 0.014583424760523302 4.02344133935999e-05 0.0005157831417435608 1.4230012831098185e-06 0.014583424760523302 4.02344133935999e-05 0.018801720428228613 7.81890459784347e-05']
['59866.412700946355 0.03348240730993466 6.71290246194201e-05 0.01474195214489557 4.0317420540666364e-05 0.0005213899010409553 1.4259370603915039e-06 0.01474195214489557 4.0317420540666364e-05 0.01874045516503909 7.830581297328861e-05']
['59866.412732484314 0.033521098665507565 6.713529934269037e-05 0.014755858094327903 4.0329145500250296e-05 0.000521881723394409 1.4263517460082451e-06 0.014755858094327903 4.0329145500250296e-05 0.01876524057117966 7.831722923222577e-05']
['59866.41276402228 0.03347896801724687 6.712539195240709e-05 0.014687735187691191 4.028968870502214e-05 0.0005194723684324045 1.4249562473417728e-06 0.014687735187691191 4.028968870502214e-05 0.01879123282955568 7.828842354212957e-05']
['59866.412795560245 0.03352454868341638 6.710947682440595e-05 0.014782394294055742 4.03264954834985e-05 0.0005228202494738667 1.426258020838173e-06 0.014782394294055742 4.03264954834985e-05 0.018742154389360638 7.829372974655189e-05']
['59866.412827098204 0.033557459988320555 6.713988228811522e-05 0.014751621883105994 4.02944916394534e-05 0.000521731898070865 1.4251261163986798e-06 0.014751621883105992 4.02944916394534e-05 0.018805838105214565 7.830331953464008e-05']
['59866.41285863617 0.03351790124900594 6.712212802597627e-05 0.014692925170760573 4.0286856787583244e-05 0.000519655926534639 1.4248560887509219e-06 0.014692925170760571 4.0286856787583244e-05 0.018824976078245365 7.828416762384838e-05']
['59866.412890174135 0.03351731629405562 6.713619351418314e-05 0.014687391409944312 4.029568181821494e-05 0.0005194602097817955 1.4251682103615823e-06 0.014687391409944312 4.029568181821494e-05 0.018829924884111306 7.830076917099004e-05']
['59866.41292171209 0.03349978136791522 6.714189593480333e-05 0.01472063522858386 4.0312713235864916e-05 0.0005206359693515142 1.4257705735408837e-06 0.01472063522858386 4.0312713235864916e-05 0.01877914613933136 7.831442420242287e-05']
['59866.41295325006 0.03349235016482863 6.712991785817538e-05 0.014641909948177545 4.0249433257524875e-05 0.0005178516321241896 1.4235325021294247e-06 0.014641909948177545 4.0249433257524875e-05 0.018850440216651082 7.827159605627909e-05']
['59866.41298478802 0.03341816621912539 6.702869877273317e-05 0.014711847643254635 4.029365131721225e-05 0.0005203251720975169 1.4250963960790199e-06 0.014711847643254634 4.029365131721225e-05 0.018706318575870757 7.820757505279704e-05']
['59866.41301632598 0.03354253739399676 6.712137762008854e-05 0.014757391276803039 4.0314463103071394e-05 0.0005219359486320934 1.4258324624332537e-06 0.014757391276803039 4.0314463103071394e-05 0.018785146117193723 7.829773476229965e-05']
['59866.41304786395 0.03346701853100702 6.707350691256607e-05 0.014661361550177639 4.02736012413901e-05 0.000518539591815161 1.4243872697064727e-06 0.014661361550177639 4.02736012413901e-05 0.01880565698082938 7.823565866342882e-05']
['59866.41307940191 0.03354770520298737 6.719098367236226e-05 0.014677607391214629 4.029135005883117e-05 0.0005191141709053215 1.4250150057130908e-06 0.014677607391214627 4.029135005883117e-05 0.01887009781177274 7.834552429094419e-05']
['59866.41311093987 0.03352663891673765 6.71510854166638e-05 0.014761082410347872 4.031658419039069e-05 0.0005220664957763762 1.425907480551386e-06 0.014761082410347872 4.031658419039069e-05 0.018765556506389777 7.832429529473557e-05']
['59866.41314247784 0.03348828061899756 6.710528046069989e-05 0.014710088853770299 4.0293178199930617e-05 0.0005202629676441191 1.4250796629781234e-06 0.014710088853770299 4.0293178199930617e-05 0.018778191765227256 7.827297665964004e-05']
['59866.4131740158 0.03348963006205845 6.712624174380551e-05 0.01474464838826897 4.030547992491466e-05 0.0005214852611433231 1.4255147474980717e-06 0.014744648388268968 4.030547992491466e-05 0.01874498167378948 7.829727991843342e-05']
['59866.41320555376 0.03353076723669722 6.712126367211394e-05 0.014670489040741195 4.027863458188564e-05 0.0005188624107576532 1.424565287710946e-06 0.014670489040741195 4.027863458188564e-05 0.018860278195956023 7.827919545270324e-05']
['59866.41323709172 0.03343938263134635 6.705755510492114e-05 0.014693896793845354 4.0295117292792435e-05 0.0005196902906716979 1.4251482443590285e-06 0.014693896793845354 4.0295117292792435e-05 0.01874548583750099 7.82330631784889e-05']
['59866.41326862969 0.03351596775545763 6.709995190624018e-05 0.014727929057422902 4.030498578360533e-05 0.0005208939357768031 1.4254972708243015e-06 0.014727929057422902 4.030498578360533e-05 0.018788038698034727 7.82744877008874e-05']
['59866.41330016765 0.033520463488340924 6.714168438041643e-05 0.01463667216081649 4.0254044488267194e-05 0.0005176663832909949 1.4236955910552863e-06 0.01463667216081649 4.0254044488267194e-05 0.018883791327524435 7.828405890794658e-05']
['59866.41333170561 0.0335656995772503 6.715072662399034e-05 0.014646815372348703 4.0254235174429136e-05 0.0005180251260141457 1.4237023351986757e-06 0.014646815372348703 4.0254235174429136e-05 0.0189188842049016 7.829191232565553e-05']
['59866.41336324358 0.03370330672047831 6.726357442463944e-05 0.014771888757586754 4.0311267001545325e-05 0.0005224486921274507 1.4257194234651433e-06 0.014771888757586754 4.0311267001545325e-05 0.018931417962891557 7.84180252980709e-05']
['59866.41339478154 0.033547462277904866 6.71598550018713e-05 0.014723509974933394 4.030097494995811e-05 0.0005207376427052172 1.425355416601885e-06 0.014723509974933394 4.030097494995811e-05 0.018823952302971472 7.832378122760373e-05']
['59866.4134263195 0.0334630756348463 6.71163965131611e-05 0.01467905163549747 4.027732544421235e-05 0.0005191652505979095 1.4245189864371922e-06 0.01467905163549747 4.027732544421235e-05 0.018784023999348833 7.827434845369753e-05']
['59866.41345785747 0.03354923780097497 6.714752771219275e-05 0.01470167070484486 4.029749025106006e-05 0.0005199652365300819 1.4252321705897047e-06 0.014701670704844861 4.029749025106006e-05 0.018847567096130106 7.831141805888828e-05']
['59866.413489395425 0.0336874442410393 6.723240655984838e-05 0.014756453181505069 4.031399760519705e-05 0.0005219027702979238 1.4258159988137649e-06 0.014756453181505069 4.031399760519705e-05 0.018930991059534226 7.839269669261657e-05']
['59866.41352093339 0.03352701240021259 6.713387423541013e-05 0.014729319942195547 4.030535404484206e-05 0.000520943128262767 1.4255102954012295e-06 0.014729319942195547 4.030535404484206e-05 0.01879769245801704 7.830375875100716e-05']
['59866.41355247136 0.033481239882182795 6.708605054387776e-05 0.0146587083976932 4.0279811535435415e-05 0.0005184457557412332 1.424606913927665e-06 0.014658708397693199 4.0279811535435415e-05 0.018822531484489598 7.824960955114036e-05']
['59866.413584009315 0.03354316685893463 6.717626794278201e-05 0.014740352078940814 4.0305818076703304e-05 0.0005213333102840725 1.4255267071711114e-06 0.014740352078940814 4.0305818076703304e-05 0.018802814779993817 7.834034685621927e-05']
['59866.41361554728 0.03351705864262764 6.715082152961049e-05 0.014646898542546742 4.026509312251756e-05 0.0005180280675581759 1.4240863565564775e-06 0.01464689854254674 4.026509312251756e-05 0.0188701601000809 7.829757695016245e-05']
['59866.413647085246 0.03354600049053111 6.714817710734371e-05 0.01471507150139522 4.030051847116481e-05 0.0005204391927550505 1.425339271967136e-06 0.014715071501395218 4.030051847116481e-05 0.018830928989135888 7.831353317201245e-05']
['59866.413678623205 0.03353211093012998 6.715349305185183e-05 0.014707558249897367 4.0284310677183546e-05 0.0005201734658407003 1.4247660385163065e-06 0.014707558249897367 4.0284310677183546e-05 0.018824552680232608 7.83097523671283e-05']
['59866.41371016117 0.033573935883473245 6.716957404821273e-05 0.014707293135707936 4.0300067116511754e-05 0.0005201640893443154 1.4253233085617757e-06 0.014707293135707934 4.0300067116511754e-05 0.01886664274776531 7.833164805756155e-05']
['59866.41374169913 0.03342319452543054 6.705537207707698e-05 0.014651588811118822 4.026209553028846e-05 0.000518193951875437 1.4239803384185587e-06 0.014651588811118822 4.026209553028846e-05 0.01877160571431172 7.821418836045868e-05']
['59866.413773237095 0.03342219467985738 6.706085044918898e-05 0.014664788332449278 4.0267657676175766e-05 0.0005186607894457013 1.4241770590879281e-06 0.01466478833244928 4.0267657676175766e-05 0.0187574063474081 7.822174836766413e-05']
['59866.41380477506 0.03353506306983701 6.712686214587122e-05 0.014772431559064677 4.031416951725593e-05 0.000522467889802635 1.4258220789590865e-06 0.014772431559064677 4.031416951725593e-05 0.01876263151077233 7.830228531413912e-05']
['59866.41383631302 0.03348452753861126 6.708740021850159e-05 0.014664632523517088 4.026982838169955e-05 0.0005186552788319822 1.4242538320910631e-06 0.014664632523517088 4.026982838169955e-05 0.018819895015094172 7.82456282866266e-05']
['59866.413867850984 0.03349348138349823 6.708215639852306e-05 0.014703249105314712 4.02681284772209e-05 0.0005200210610271832 1.4241937102687162e-06 0.014703249105314713 4.02681284772209e-05 0.01879023227818352 7.824025740073889e-05']
['59866.41389938895 0.03346974366164673 6.707760505617268e-05 0.014756886507579661 4.031912178367812e-05 0.0005219180960727553 1.4259972295547752e-06 0.014756886507579661 4.031912178367812e-05 0.018712857154067064 7.826261356151448e-05']
['59866.41393092691 0.03344993168912309 6.709403221930397e-05 0.01467861639203462 4.0283374920509874e-05 0.0005191498570093404 1.4247329428940517e-06 0.01467861639203462 4.0283374920509874e-05 0.01877131529708847 7.825828680996897e-05']
['59866.413962464874 0.03356959589653025 6.716620512845831e-05 0.01477156580003604 4.032713169522474e-05 0.0005224372698406497 1.4262805222250807e-06 0.01477156580003604 4.032713169522474e-05 0.01879803009649421 7.83426873557586e-05']
['59866.41399400283 0.033530951002455005 6.712541101120386e-05 0.014720616886707323 4.029164078206827e-05 0.0005206353206403328 1.425025287944259e-06 0.014720616886707324 4.029164078206827e-05 0.01881033411574768 7.828944450137755e-05']
['59866.4140255408 0.03357679503559446 6.716716951083486e-05 0.014622343355225088 4.025103572414013e-05 0.0005171596054602229 1.423589177792304e-06 0.014622343355225088 4.025103572414013e-05 0.01895445168036937 7.830437112296624e-05']
['59866.414057078764 0.03352250269867568 6.712210619989347e-05 0.014671926736966172 4.02788173785506e-05 0.0005189132588600687 1.424571752820459e-06 0.014671926736966172 4.02788173785506e-05 0.018850575961709512 7.828001194509621e-05']
['59866.41408861672 0.033543824593762685 6.713688557849769e-05 0.014772770764144322 4.033162604412194e-05 0.0005224798867282232 1.426439477301296e-06 0.01477277076414432 4.033162604412194e-05 0.018771053829618363 7.831986634656105e-05']
['59866.41412015469 0.033479818247410024 6.710205055069526e-05 0.014697453579391204 4.0288971358016806e-05 0.0005198160862275068 1.4249308763813703e-06 0.014697453579391204 4.0288971358016806e-05 0.01878236466801882 7.826804201712957e-05']
['59866.414151692654 0.033505658452769226 6.711215986679866e-05 0.014721661790671258 4.0312766680335066e-05 0.0005206722765583142 1.4257724637523515e-06 0.014721661790671258 4.0312766680335066e-05 0.018783996662097967 7.828895937110081e-05']
['59866.41418323061 0.033548852164332364 6.715577172987583e-05 0.014686987468482203 4.02923985862911e-05 0.0005194459232750367 1.4250520897860276e-06 0.014686987468482205 4.02923985862911e-05 0.01886186469585016 7.831586723309488e-05']
['59866.41421476858 0.03358438970866679 6.720621942896453e-05 0.014682890324673193 4.0269994105029676e-05 0.0005193010164550895 1.4242596933548798e-06 0.014682890324673192 4.0269994105029676e-05 0.0189014993839936 7.834761231303258e-05']
['59866.41424630654 0.033463044022795374 6.708536722640595e-05 0.01471823685900257 4.030208194499067e-05 0.0005205511443794645 1.4253945685421984e-06 0.014718236859002568 4.030208194499067e-05 0.018744807163792808 7.826049006364888e-05']
['59866.4142778445 0.033500569104346824 6.711756874995833e-05 0.01471249111240049 4.030266753345627e-05 0.0005203479301631368 1.4254152794975135e-06 0.01471249111240049 4.030266753345627e-05 0.018788077991946334 7.828839661928e-05']
['59866.41430938247 0.03354515358432406 6.716536846145725e-05 0.014749151695446876 4.032394879595953e-05 0.0005216445330539065 1.4261679501914313e-06 0.014749151695446876 4.032394879595953e-05 0.018796001888877187 7.834033167572424e-05']
['59866.414340920426 0.033531894759726316 6.714507119639552e-05 0.014712806335455247 4.028888529781939e-05 0.0005203590788981016 1.4249278326245208e-06 0.014712806335455247 4.028888529781939e-05 0.018819088424271067 7.830488403994907e-05']
['59866.41437245839 0.03355800771205246 6.715341126591241e-05 0.014714773166007371 4.0299264123170975e-05 0.0005204286412991226 1.4252949084818968e-06 0.014714773166007371 4.0299264123170975e-05 0.018843234546045088 7.83173756807381e-05']
['59866.41440399636 0.03357298087347951 6.716956193857383e-05 0.014694136267904943 4.02850601139062e-05 0.0005196987603339926 1.4247925444182943e-06 0.014694136267904943 4.02850601139062e-05 0.01887884460557457 7.832391792677982e-05']
['59866.414435534316 0.03355071361543343 6.714994386417604e-05 0.014777562634467695 4.03227999258979e-05 0.0005226493644723611 1.4261273172249248e-06 0.014777562634467693 4.03227999258979e-05 0.018773150980965735 7.832651629445795e-05']
['59866.41446707228 0.033637647390973274 6.721974442432959e-05 0.014726004170954604 4.0310722806548554e-05 0.0005208258568442874 1.4257001765043117e-06 0.014726004170954604 4.0310722806548554e-05 0.01891164322001867 7.838015318726152e-05']
['59866.41449861024 0.033305859566417656 6.698274947880412e-05 0.014707133979200574 4.0286520465687536e-05 0.0005201584603343439 1.4248441937971059e-06 0.014707133979200574 4.0286520465687536e-05 0.018598725587217084 7.816452174082878e-05']
['59866.414530148206 0.03353990627398732 6.716438759495015e-05 0.014648221783054636 4.0249813270777545e-05 0.0005180748676176716 1.423545942348892e-06 0.014648221783054634 4.0249813270777545e-05 0.018891684490932686 7.8301356497427e-05']
['59866.41456168617 0.033607836702610874 6.71774702433742e-05 0.01476628050436447 4.0325273356207635e-05 0.0005222503407446868 1.4262147969271888e-06 0.01476628050436447 4.0325273356207635e-05 0.018841556198246404 7.835138913607273e-05']
['59866.41459322413 0.03347368315615235 6.709532429456572e-05 0.01466277738296493 4.027069739920552e-05 0.0005185896666566475 1.4242845672981095e-06 0.01466277738296493 4.027069739920552e-05 0.01881090577318742 7.825286966758038e-05']
['59866.414624762096 0.033606182907397864 6.719655279575067e-05 0.01468823010682151 4.028821425708144e-05 0.0005194898726159648 1.4249040994133075e-06 0.014688230106821512 4.028821425708144e-05 0.01891795280057635 7.834868802766647e-05']
['59866.41465630006 0.03343670497375502 6.707314776722727e-05 0.014657909341328658 4.027219250726633e-05 0.0005184174949034052 1.4243374459288505e-06 0.014657909341328657 4.027219250726633e-05 0.018778795632426362 7.823462558705464e-05']
['59866.41468783802 0.033595329878729735 6.720016197558403e-05 0.01467185382060559 4.0287158276852876e-05 0.0005189106799713533 1.4248667517525999e-06 0.01467185382060559 4.0287158276852876e-05 0.018923476058124146 7.835124052348453e-05']
['59866.414719375985 0.033582277449635656 6.720051156214932e-05 0.014766769567633965 4.0333280765451044e-05 0.0005222676378195369 1.4264980010966218e-06 0.014766769567633967 4.0333280765451044e-05 0.01881550788200169 7.837526581466418e-05']
['59866.414750913944 0.03347991548788259 6.710121507924518e-05 0.014644048603248442 4.0262838943445274e-05 0.0005179272715744345 1.4240066312804844e-06 0.014644048603248444 4.0262838943445274e-05 0.018835866884634143 7.825387699594784e-05']
['59866.41478245191 0.03350446738819864 6.7125556108793e-05 0.014726594256638718 4.031744081038724e-05 0.0005208467268561707 1.4259377772862312e-06 0.014726594256638718 4.031744081038724e-05 0.018777873131559923 7.830284998908913e-05']
['59866.414813989875 0.0334375875535382 6.706863182859388e-05 0.01467169838465209 4.027862199741805e-05 0.000518905182549057 1.424564842626452e-06 0.014671698384652092 4.027862199741805e-05 0.018765889168886107 7.823406397069224e-05']
['59866.414845527834 0.03351480356952163 6.713099459600544e-05 0.014702123564940004 4.0291310112392374e-05 0.0005199812531795644 1.4250135928968257e-06 0.014702123564940005 4.0291310112392374e-05 0.01881268000458162 7.829406175452824e-05']
['59866.4148770658 0.03357887353944196 6.717894051092616e-05 0.014742062734803668 4.030553768236377e-05 0.0005213938123588509 1.4255167902499665e-06 0.014742062734803668 4.030553768236377e-05 0.01883681080463829 7.834249431844127e-05']
['59866.414908603765 0.03351139864559432 6.71281984802184e-05 0.014728135890976737 4.031114141131323e-05 0.0005209012510173564 1.4257149816193117e-06 0.014728135890976735 4.031114141131323e-05 0.018783262754617586 7.830187196410114e-05']
['59866.41494014172 0.03348829709675342 6.712003678841186e-05 0.01470252784919886 4.0295578369501095e-05 0.000519995551810278 1.4251645516117678e-06 0.01470252784919886 4.0295578369501095e-05 0.018785769247554557 7.828686335912536e-05']
['59866.41497167969 0.03360864402220918 6.718288431677804e-05 0.014708547640142514 4.030409464723606e-05 0.000520208458362514 1.425465753322493e-06 0.014708547640142513 4.030409464723606e-05 0.018900096382066668 7.834513380201059e-05']
['59866.41500321765 0.03360603976205781 6.721973276132713e-05 0.014753539982406716 4.032972199240224e-05 0.0005217997369564318 1.4263721352472752e-06 0.014753539982406715 4.032972199240224e-05 0.018852499779651095 7.83899161148211e-05']
['59866.41503475561 0.033495062393613106 6.709874354875657e-05 0.014699728415712406 4.0273518415390855e-05 0.0005198965421042278 1.4243843403359845e-06 0.014699728415712406 4.0273518415390855e-05 0.018795333977900702 7.825725315506945e-05']
['59866.41506629358 0.03362597647421904 6.721678646919904e-05 0.014803148398904386 4.035517060921571e-05 0.0005235542757796687 1.4272721959496564e-06 0.014803148398904386 4.035517060921571e-05 0.018822828075314657 7.840048582849985e-05']
['59866.41509783154 0.033458612493368595 6.707363036330309e-05 0.014626659191610044 4.024160566920582e-05 0.0005173122469478321 1.42325565782421e-06 0.014626659191610044 4.024160566920582e-05 0.01883195330175855 7.82192988778912e-05']
['59866.4151293695 0.03359014220423265 6.718485704158207e-05 0.014735963632557577 4.0307199415586134e-05 0.0005211781007430979 1.4255755620402864e-06 0.014735963632557575 4.0307199415586134e-05 0.018854178571675075 7.834842270541027e-05']
['59866.41516090747 0.03358123845896906 6.720332409749174e-05 0.014666546282791298 4.027240134663345e-05 0.0005187229642205107 1.4243448321105368e-06 0.014666546282791298 4.027240134663345e-05 0.018914692176177757 7.834636609299016e-05']
['59866.41519244543 0.033482216307700395 6.709271844866803e-05 0.014657025067265106 4.0272805801005514e-05 0.0005183862201060136 1.4243591367577746e-06 0.014657025067265106 4.0272805801005514e-05 0.018825191240435288 7.825172046618364e-05']
['59866.41522398339 0.0335248925256339 6.713609028019685e-05 0.014671830722854579 4.027571145344226e-05 0.0005189098630555205 1.424461903190711e-06 0.01467183072285458 4.027571145344226e-05 0.01885306180277932 7.829040523072851e-05']
['59866.41525552135 0.03367206122137717 6.724507072020665e-05 0.014784770616839788 4.032585884740346e-05 0.0005229042946999695 1.4262355044422893e-06 0.014784770616839788 4.032585884740346e-05 0.01888729060453738 7.840965774664688e-05']
['59866.41528705932 0.03356053299806132 6.71481010147468e-05 0.014754423174367204 4.0338942124385056e-05 0.0005218309734822564 1.4266982307097253e-06 0.014754423174367202 4.0338942124385056e-05 0.018806109823694114 7.833324786832936e-05']
['59866.41531859728 0.03368720029551555 6.725507204367736e-05 0.014698481565611604 4.029657781416665e-05 0.0005198524438027084 1.4251998997359614e-06 0.014698481565611604 4.029657781416665e-05 0.018988718729903944 7.84031816901165e-05']
['59866.41535013524 0.033582912187342225 6.716396630880898e-05 0.014770759066435206 4.031839639307773e-05 0.0005224087374761316 1.425971574110392e-06 0.014770759066435206 4.031839639307773e-05 0.01881215312090702 7.833627166287766e-05']
['59866.41538167321 0.03351673668120523 6.712766490399872e-05 0.01465345436842809 4.02648808258394e-05 0.0005182599324681906 1.424078848097426e-06 0.01465345436842809 4.02648808258394e-05 0.01886328231277714 7.827760869739564e-05']
['59866.41541321117 0.03363740325957105 6.72239810022585e-05 0.01468631031455632 4.0282909138936725e-05 0.0005194219738540282 1.42471646924077e-06 0.014686310314556321 4.0282909138936725e-05 0.01895109294501473 7.836948634824554e-05']
['59866.41544474913 0.033511667971639035 6.714661733893659e-05 0.014660833685679948 4.026363547069647e-05 0.0005185209224275854 1.4240348026692256e-06 0.014660833685679948 4.026363547069647e-05 0.018850834285959087 7.82932216822038e-05']
['59866.4154762871 0.03358867268079624 6.721481921208766e-05 0.014694084751881165 4.029115737757671e-05 0.0005196969383273631 1.4250081910077377e-06 0.014694084751881166 4.029115737757671e-05 0.018894587928915074 7.836586810938983e-05']
['59866.415507825055 0.033497642543807916 6.710461936126123e-05 0.014757951732770185 4.03148561051555e-05 0.000521955770707106 1.4258463620386605e-06 0.014757951732770187 4.03148561051555e-05 0.01873969081103773 7.828357147191963e-05']
['59866.41553936302 0.033630602833997617 6.721066907679695e-05 0.014808451291551348 4.033046576640945e-05 0.0005237418272413241 1.4263984408716732e-06 0.014808451291551348 4.033046576640945e-05 0.01882215154244627 7.838252679447273e-05']
['59866.41557090099 0.033610763324228486 6.719493135280211e-05 0.014684792405362126 4.0287036311155325e-05 0.0005193682887981569 1.4248624380984549e-06 0.014684792405362126 4.0287036311155325e-05 0.01892597091886636 7.834669166112974e-05']
['59866.415602438945 0.03356131107831726 6.714739481215535e-05 0.014713754235763366 4.0300601002125505e-05 0.0005203926040135672 1.4253421909027701e-06 0.014713754235763364 4.0300601002125505e-05 0.018847556842553896 7.831290488286069e-05']
['59866.41563397691 0.03353705255089127 6.716160598683546e-05 0.014747805913998303 4.0314582856351834e-05 0.000521596935771715 1.4258366978391502e-06 0.014747805913998303 4.0314582856351834e-05 0.018789246636892964 7.833228523165012e-05']
['59866.415665514876 0.03343857129984621 6.705774917982581e-05 0.014659799113651582 4.026865938609059e-05 0.0005184843319270745 1.4242124873289257e-06 0.014659799113651582 4.026865938609059e-05 0.01877877218619463 7.821960530338548e-05']
['59866.415697052835 0.03352406082548726 6.712107821225447e-05 0.014761414989069603 4.033863788633327e-05 0.0005220782583424941 1.4266874704897656e-06 0.014761414989069603 4.033863788633327e-05 0.01876264583641766 7.830992815026907e-05']
['59866.4157285908 0.03354681073901377 6.715654758382341e-05 0.014776784453087647 4.0321402874413655e-05 0.0005226218419360819 1.4260779066361534e-06 0.014776784453087647 4.0321402874413655e-05 0.018770026285926125 7.833145864299421e-05']
['59866.41576012876 0.03360971083993173 6.717858135761514e-05 0.01469121850602014 4.028562738655996e-05 0.0005195955656169412 1.424812607584278e-06 0.014691218506020141 4.028562738655996e-05 0.018918492333911588 7.833194474255358e-05']
['59866.415791666725 0.03355120557314113 6.715622033733446e-05 0.01475490284173782 4.032172665439134e-05 0.0005218479382451617 1.4260893580103585e-06 0.014754902841737819 4.032172665439134e-05 0.018796302731403314 7.833134475028541e-05']
['59866.41582320469 0.03365907674563949 6.727185529584565e-05 0.014694116592941757 4.029237939239678e-05 0.0005196980644745156 1.4250514109408813e-06 0.014694116592941757 4.029237939239678e-05 0.018964960152697732 7.841542164680387e-05']
['59866.41585474265 0.03355054446277479 6.714918976103783e-05 0.014669317482243135 4.028186247167116e-05 0.0005188209753518559 1.4246794509587505e-06 0.014669317482243135 4.028186247167116e-05 0.018881226980531657 7.830480272467646e-05']
['59866.415886280614 0.033610596073498 6.721241122075316e-05 0.014715319059890711 4.0295487545464476e-05 0.0005204479483457753 1.4251613393685726e-06 0.014715319059890711 4.0295487545464476e-05 0.018895277013607287 7.836602923865868e-05']
['59866.41591781857 0.033527229816188005 6.713057911970379e-05 0.014742978675892037 4.0317980936028295e-05 0.0005214262071481386 1.4259568803230455e-06 0.014742978675892035 4.0317980936028295e-05 0.01878425114029597 7.830743412795972e-05']
['59866.41594935654 0.03366024320135849 6.725076266024318e-05 0.014768967669341064 4.031616909317342e-05 0.0005223453797644487 1.425892799490499e-06 0.014768967669341064 4.031616909317342e-05 0.01889127553201743 7.840955661610203e-05']
['59866.415980894504 0.03347794281496401 6.709277171015203e-05 0.014733333055795841 4.030896502186944e-05 0.0005210850631220283 1.425638007588629e-06 0.014733333055795841 4.030896502186944e-05 0.018744609759168168 7.827038186239332e-05']
['59866.41601243246 0.03371567479459773 6.7280505260035e-05 0.014751945075338588 4.030475192942721e-05 0.0005217433286578397 1.4254889999246548e-06 0.014751945075338588 4.030475192942721e-05 0.01896372971925914 7.842920002230204e-05']
['59866.41604397043 0.03360596606392556 6.718695531772914e-05 0.014726256173366878 4.03035871068837e-05 0.0005208347696064173 1.4254478027545161e-06 0.014726256173366878 4.03035871068837e-05 0.018879709890558684 7.834836372604532e-05']
['59866.416075508394 0.033657522688987244 6.72456488067201e-05 0.014724760699640833 4.031134762546058e-05 0.0005207818780429142 1.4257222749528418e-06 0.014724760699640833 4.031134762546058e-05 0.01893276198934641 7.840269147687127e-05']
['59866.41610704635 0.03356540562881558 6.718832591998667e-05 0.014763798668395443 4.0342885410774207e-05 0.0005221625637530393 1.426837695936583e-06 0.014763798668395443 4.0342885410774207e-05 0.018801606960420138 7.83697616635218e-05']
['59866.41613858432 0.03361242664088617 6.718781247628577e-05 0.014743704446816724 4.029869871947769e-05 0.0005214518760437422 1.4252749114168682e-06 0.014743704446816724 4.029869871947769e-05 0.018868722194069446 7.834658425120891e-05']
['59866.41617012228 0.033708033265337646 6.727542213245931e-05 0.014796054168676435 4.034388960643588e-05 0.0005233033687111775 1.4268732120928912e-06 0.014796054168676435 4.034388960643588e-05 0.01891197909666121 7.844496065189199e-05']
['59866.41620166024 0.033557654402165966 6.716038324260772e-05 0.01470551340196469 4.0298010635476386e-05 0.0005201011441392877 1.4252505754235193e-06 0.01470551340196469 4.0298010635476386e-05 0.018852141000201276 7.832270895768935e-05']
['59866.41623319821 0.03363474487207213 6.72021618238037e-05 0.014790088482494086 4.033105837523909e-05 0.0005230923757234318 1.4264194001215747e-06 0.014790088482494088 4.033105837523909e-05 0.018844656389578045 7.8375537149417e-05']
['59866.416264736166 0.03359570039380514 6.718754288752369e-05 0.014696517159003988 4.028901749641071e-05 0.0005197829671311874 1.4249325081932496e-06 0.01469651715900399 4.028901749641071e-05 0.01889918323480115 7.83413738077711e-05']
['59866.41629627413 0.033640196938122105 6.723993090400206e-05 0.01476879821295518 4.0331084894165574e-05 0.0005223393864707927 1.4264203380367382e-06 0.01476879821295518 4.0331084894165574e-05 0.018871398725166924 7.840793784251287e-05']
['59866.4163278121 0.03361616362989398 6.722621573490204e-05 0.014737026998936165 4.031265950809271e-05 0.0005212157096354245 1.4257686733096555e-06 0.014737026998936165 4.031265950809271e-05 0.01887913663095782 7.838669911822419e-05']
['59866.416359350056 0.03369716632102412 6.725935457584526e-05 0.014792543584660095 4.0327753167397944e-05 0.0005231792072002131 1.4263025023069382e-06 0.014792543584660095 4.0327753167397944e-05 0.01890462273636402 7.842288220595983e-05']
['59866.41639088802 0.03365652164767218 6.723102995262859e-05 0.014828392867231224 4.033590361053774e-05 0.0005244471162063227 1.4265907652656243e-06 0.014828392867231224 4.033590361053774e-05 0.018828128780440958 7.840278380625163e-05']
['59866.41642242598 0.03355347569140916 6.715315882532121e-05 0.014702099957634676 4.029000108899775e-05 0.0005199804182419342 1.4249672956648529e-06 0.014702099957634678 4.029000108899775e-05 0.018851375733774482 7.831239319526799e-05']
['59866.416453963946 0.03360385090043777 6.721201035052584e-05 0.014646510702465608 4.025152706191281e-05 0.0005180143505212777 1.4236065553112486e-06 0.014646510702465606 4.025152706191281e-05 0.018957340197972163 7.834309009845789e-05']
['59866.41648550191 0.03367783194461425 6.726656308892457e-05 0.014790935766026931 4.03371533232786e-05 0.0005231223422484212 1.426634964812325e-06 0.014790935766026931 4.03371533232786e-05 0.018886896178587322 7.843389858997164e-05']
['59866.41651703987 0.0337698084278937 6.732247557461619e-05 0.0147902386762704 4.033784609412737e-05 0.0005230976877416367 1.4266594665689941e-06 0.0147902386762704 4.033784609412737e-05 0.0189795697516233 7.848221164702419e-05']
['59866.416548577836 0.033630749427876395 6.724420555753705e-05 0.014801543181843726 4.034588701101071e-05 0.0005234975028396822 1.4269438558287665e-06 0.014801543181843726 4.034588701101071e-05 0.018829206246032668 7.841921817877005e-05']
['59866.4165801158 0.033596337805702654 6.719846646111755e-05 0.014752493391378057 4.031712560733316e-05 0.0005217627213707415 1.4259266292586459e-06 0.014752493391378057 4.031712560733316e-05 0.018843844414324597 7.836519962306878e-05']
['59866.41661165376 0.03366334929971864 6.725925332025244e-05 0.01484497579997828 4.038039161499982e-05 0.0005250336174769125 1.4281642065586097e-06 0.014844975799978278 4.038039161499982e-05 0.018818373499740363 7.844987689078063e-05']
['59866.416643191726 0.03371918750386914 6.727083809557716e-05 0.01476076746814283 4.0315508996371665e-05 0.0005220553569744383 1.4258694533418505e-06 0.014760767468142831 4.0315508996371665e-05 0.018958420035726307 7.842643638287973e-05']
['59866.416674729684 0.03362744364899875 6.719853279140277e-05 0.014801147482826444 4.034484617633991e-05 0.0005234835078497762 1.426907043832589e-06 0.014801147482826444 4.034484617633991e-05 0.018826296166172304 7.837952170248146e-05']
['59866.41670626765 0.033649491483532905 6.722893039717083e-05 0.014738060105577728 4.030807557513662e-05 0.0005212522483084792 1.4256065498454855e-06 0.014738060105577728 4.030807557513662e-05 0.018911431377955177 7.838667003335813e-05']
['59866.416737805615 0.03357596438233007 6.719059490059588e-05 0.014727368886938567 4.0306031303641364e-05 0.0005208741237986795 1.4255342485313763e-06 0.014727368886938567 4.0306031303641364e-05 0.0188485954953915 7.835274215077669e-05']
['59866.416769343574 0.0337374592619473 6.728966871844997e-05 0.014704172750797077 4.0279447977839874e-05 0.0005200537283036683 1.4245940557080143e-06 0.014704172750797079 4.0279447977839874e-05 0.019033286511150223 7.84240616497147e-05']
['59866.41680088154 0.03367526604515396 6.725943421653445e-05 0.014767737426327088 4.032824313355887e-05 0.0005223018688184757 1.4263198313150402e-06 0.014767737426327088 4.032824313355887e-05 0.01890752861882687 7.842320246819663e-05']
['59866.416832419505 0.03363604873386172 6.723920858187921e-05 0.014773017879457232 4.0333298097769635e-05 0.0005224886266445707 1.426498614101995e-06 0.014773017879457234 4.0333298097769635e-05 0.018863030854404488 7.840845685358823e-05']
['59866.416863957464 0.03362962882946578 6.719976978869429e-05 0.01475137062820581 4.030951441423163e-05 0.0005217230117465671 1.42565743836866e-06 0.01475137062820581 4.030951441423163e-05 0.018878258201259972 7.83624017751157e-05']
['59866.41689549543 0.033691844884974884 6.724772995568356e-05 0.01475915938906638 4.033506384194547e-05 0.0005219984828113495 1.4265610645272882e-06 0.01475915938906638 4.033506384194547e-05 0.018932685495908503 7.841667271267225e-05']
['59866.41692703339 0.03359663497525355 6.718786502918945e-05 0.014870736580372898 4.038051782612822e-05 0.0005259447187075144 1.428168670364156e-06 0.014870736580372896 4.038051782612822e-05 0.018725898394880654 7.838874553841794e-05']
['59866.41695857135 0.0335819908865253 6.717742843187336e-05 0.014694350869195735 4.029255193668768e-05 0.0005197063503020422 1.4250575134468366e-06 0.014694350869195735 4.029255193668768e-05 0.018887640017329562 7.833451750212126e-05']
['59866.41699010932 0.033591944306508706 6.717481962348149e-05 0.014642325634738593 4.025992853301254e-05 0.0005178663340288491 1.423903696567863e-06 0.014642325634738593 4.025992853301254e-05 0.018949618671770113 7.831550444790962e-05']
['59866.41702164728 0.03358866740100785 6.722316105769713e-05 0.014793215037424316 4.034750424705418e-05 0.0005232029549838749 1.427001053853314e-06 0.014793215037424314 4.034750424705418e-05 0.018795452363583535 7.840200559650973e-05']
['59866.41705318524 0.03363896808115317 6.721807182143807e-05 0.014711236426058033 4.029305560217852e-05 0.0005203035547112631 1.4250753269696215e-06 0.014711236426058032 4.029305560217852e-05 0.01892773165509514 7.836963384597543e-05']
['59866.41708472321 0.03370490942456666 6.727919455975451e-05 0.014820957641107139 4.0358352161945996e-05 0.0005241841488750663 1.4273847203593748e-06 0.014820957641107139 4.0358352161945996e-05 0.01888395178345952 7.845563465957657e-05']
['59866.41711626117 0.033632094020989566 6.720016478033215e-05 0.014711452779228421 4.028250762450423e-05 0.0005203112066393789 1.4247022685726246e-06 0.014711452779228421 4.028250762450423e-05 0.018920641241761144 7.834885172752716e-05']
['59866.41714779913 0.03350022265934914 6.712858778899754e-05 0.014738715050420965 4.031348035696804e-05 0.0005212754122438689 1.4257977048998864e-06 0.014738715050420965 4.031348035696804e-05 0.018761507608928175 7.830340986851593e-05']
['59866.41717933709 0.03382862210675387 6.733960379499921e-05 0.014834167677468727 4.03577174248454e-05 0.0005246513583384819 1.4273622711266807e-06 0.014834167677468727 4.03577174248454e-05 0.018994454429285143 7.850711811683792e-05']
['59866.41721087506 0.03344731326997508 6.706892063984469e-05 0.014690526243514487 4.027856800931786e-05 0.0005195710818392318 1.4245629331880045e-06 0.014690526243514487 4.027856800931786e-05 0.018756787026460595 7.823428376789187e-05']
['59866.41724241302 0.03370741021321818 6.728008115869646e-05 0.014757129449303717 4.030522802751763e-05 0.0005219266883785924 1.4255058384500963e-06 0.014757129449303717 4.030522802751763e-05 0.018950280763914463 7.842908087610727e-05']
['59866.41727395098 0.03354305669726265 6.713401883729701e-05 0.01474955788862827 4.032374033892602e-05 0.0005216588991989441 1.4261605775320301e-06 0.01474955788862827 4.032374033892602e-05 0.01879349880863438 7.831334828857517e-05']
['59866.41730548895 0.033744085036965896 6.73003169942079e-05 0.014775606978632765 4.032402380044726e-05 0.0005225801972961132 1.426170602932537e-06 0.014775606978632765 4.032402380044726e-05 0.01896847805833313 7.84560995906622e-05']
['59866.41733702691 0.033564608608766075 6.712718931420996e-05 0.014760287880930577 4.033164420599369e-05 0.0005220383950465552 1.4264401196461101e-06 0.014760287880930577 4.033164420599369e-05 0.0188043207278355 7.831156408592954e-05']
['59866.41736856487 0.033695805397973316 6.726032593747505e-05 0.014715768822647681 4.029149640920002e-05 0.0005204638554493288 1.4250201817985631e-06 0.014715768822647681 4.029149640920002e-05 0.018980036575325633 7.84050771832281e-05']
['59866.41740010284 0.03367373205222807 6.722592614829173e-05 0.01476723372515677 4.032442367870129e-05 0.0005222840540337875 1.4261847457327068e-06 0.01476723372515677 4.032442367870129e-05 0.018906498327071294 7.839250150055795e-05']
['59866.417431640795 0.03366478502244243 6.722407593965709e-05 0.014831203952832826 4.035285527963999e-05 0.0005245465380216448 1.42719030791702e-06 0.014831203952832826 4.035285527963999e-05 0.018833581069609605 7.840554390577462e-05']
['59866.41746317876 0.033676429151577 6.723599785440406e-05 0.014810612906503814 4.03547395970698e-05 0.0005238182787312678 1.427256952013311e-06 0.014810612906503814 4.03547395970698e-05 0.018865816245073188 7.841673555705274e-05']
['59866.41749471673 0.03362781661761698 6.724590532442068e-05 0.014735455541942439 4.031348819878117e-05 0.0005211601307135562 1.4257979822472915e-06 0.01473545554194244 4.031348819878117e-05 0.018892361075674543 7.840401210176823e-05']
['59866.417526254685 0.033542594521325325 6.71618538097674e-05 0.014733973263463858 4.032132515456874e-05 0.0005211077058364661 1.4260751578589325e-06 0.014733973263463858 4.032132515456874e-05 0.018808621257861466 7.833596791630921e-05']
['59866.41755779265 0.03356568060599792 6.714080000165033e-05 0.014809000540276455 4.035852601218547e-05 0.0005237612529412326 1.4273908690538125e-06 0.014809000540276457 4.035852601218547e-05 0.01875668006572146 7.833707708829748e-05']
['59866.41758933062 0.03361258450346607 6.720445905330691e-05 0.014763512227013744 4.032773997460002e-05 0.0005221524329615274 1.42630203570716e-06 0.014763512227013744 4.032773997460002e-05 0.018849072276452324 7.837579937778343e-05']
['59866.417620868575 0.03365499784006225 6.721707182550562e-05 0.014749913122578407 4.030129249408675e-05 0.0005216714630298593 1.4253666474280457e-06 0.014749913122578407 4.030129249408675e-05 0.01890508471748384 7.837301143562823e-05']
['59866.41765240654 0.03372940644367013 6.727771029230917e-05 0.014841689811010248 4.0358146745742825e-05 0.0005249173993908665 1.4273774552473467e-06 0.014841689811010248 4.0358146745742825e-05 0.01888771663265988 7.845425616833541e-05']
['59866.4176839445 0.033662898196009795 6.722504208160512e-05 0.014783080493662608 4.0322983469987554e-05 0.0005228445188203957 1.426133808769179e-06 0.014783080493662608 4.0322983469987554e-05 0.018879817702347187 7.839100253724575e-05']
['59866.417715482465 0.03375577578371462 6.72919675140174e-05 0.014852823399037247 4.0374842017842254e-05 0.0005253111695172766 1.4279679297097663e-06 0.014852823399037249 4.0374842017842254e-05 0.018902952384677374 7.847507094532183e-05']
['59866.41774702043 0.03364377351256244 6.722027372975453e-05 0.014830476618073782 4.0376827667674795e-05 0.000524520813816715 1.4280381577066772e-06 0.014830476618073782 4.0376827667674795e-05 0.018813296894488657 7.841462499309829e-05']
['59866.41777855839 0.03366920137804002 6.723868499928137e-05 0.014755480268134636 4.0322225329985584e-05 0.000521868360526345 1.4261069950516526e-06 0.014755480268134634 4.0322225329985584e-05 0.018913721109905385 7.840231256790018e-05']
['59866.417810096355 0.03360122666976882 6.721593075518289e-05 0.01485278645316438 4.037263319273549e-05 0.0005253098628243225 1.4278898085021736e-06 0.01485278645316438 4.037263319273549e-05 0.01874844021660444 7.840874223070223e-05']
['59866.41784163432 0.03363203972545971 6.72098267883496e-05 0.014735832726970485 4.032503429040678e-05 0.0005211734709050392 1.4262063417040932e-06 0.014735832726970486 4.032503429040678e-05 0.01889620699848922 7.837900999274257e-05']
['59866.41787317228 0.033827156463737 6.73688301410394e-05 0.014775050012911059 4.032624007600319e-05 0.0005225604986632816 1.4262489876458662e-06 0.014775050012911059 4.032624007600319e-05 0.01905210645082594 7.851601692164259e-05']
['59866.417904710244 0.03367975538467567 6.725181574797516e-05 0.014746655699517263 4.031938463604896e-05 0.0005215562552560987 1.4260065260556915e-06 0.014746655699517263 4.031938463604896e-05 0.01893309968515841 7.84121132149189e-05']
['59866.4179362482 0.033576727675377796 6.716250334683099e-05 0.014695259242604921 4.028545712505909e-05 0.0005197384774394301 1.4248065858155042e-06 0.014695259242604921 4.028545712505909e-05 0.018881468432772875 7.831806887039579e-05']
['59866.41796778617 0.03374885930234199 6.727457880561401e-05 0.014775440948946911 4.034279366967088e-05 0.000522574325197179 1.4268344512587876e-06 0.01477544094894691 4.034279366967088e-05 0.018973418353395083 7.844367377007789e-05']
['59866.417999324134 0.03360361819992386 6.71845885706394e-05 0.014760067697338725 4.032918297424526e-05 0.0005220306076449927 1.4263530713796975e-06 0.014760067697338723 4.032918297424526e-05 0.018843550502585134 7.835950446995082e-05']
['59866.41803086209 0.03373683794743972 6.730517624245475e-05 0.014846750363592431 4.036071533750541e-05 0.0005250963798260289 1.4274683005975247e-06 0.014846750363592431 4.036071533750541e-05 0.01889008758384729 7.847913156746218e-05']
['59866.41806240006 0.03381568956939062 6.735697873185534e-05 0.014775623819270731 4.033576687961333e-05 0.0005225807929118415 1.4265859293984038e-06 0.014775623819270731 4.033576687961333e-05 0.01904006575011989 7.851074240924056e-05']
['59866.418093938024 0.03373082815176748 6.7304273744314e-05 0.014741109087208378 4.031659793956643e-05 0.0005213600839746824 1.4259079668290046e-06 0.014741109087208378 4.031659793956643e-05 0.0189897190645591 7.84556775107462e-05']
['59866.41812547598 0.03375382065551553 6.732405747726654e-05 0.014843579337136602 4.0366524050633854e-05 0.0005249842277071132 1.427673741799168e-06 0.0148435793371366 4.0366524050633854e-05 0.01891024131837893 7.849831195084828e-05']
['59866.41815701395 0.03374618891348455 6.729139666477982e-05 0.014815583572225944 4.035808551837674e-05 0.0005239940800690755 1.4273752897722435e-06 0.014815583572225944 4.035808551837674e-05 0.018930605341258604 7.846596161269772e-05']
['59866.41818855191 0.033797207482284757 6.732186117394989e-05 0.014882446782403486 4.0393704410085143e-05 0.0005263588823825751 1.4286350503684319e-06 0.014882446782403486 4.0393704410085143e-05 0.01891476069988127 7.851040916906441e-05']
['59866.41822008987 0.03366413631030912 6.727253459139845e-05 0.01477605322489451 4.032500383444914e-05 0.0005225959800290894 1.4262052645449366e-06 0.01477605322489451 4.032500383444914e-05 0.018888083085414613 7.843277277133099e-05']
['59866.41825162784 0.03363919276927498 6.720933010316975e-05 0.014825790350502348 4.0361764257094786e-05 0.0005243550710059049 1.4275053985392036e-06 0.014825790350502348 4.0361764257094786e-05 0.018813402418772635 7.839748763105954e-05']
['59866.418283165796 0.03362993825532329 6.721722757587411e-05 0.014664561595340832 4.026567955791585e-05 0.0005186527702609031 1.424107097465909e-06 0.014664561595340832 4.026567955791585e-05 0.018965376659982457 7.83548379696341e-05']
['59866.41831470376 0.03369463929327869 6.726861827162943e-05 0.014747658504632336 4.0314618504223715e-05 0.0005215917222318812 1.4258379586247103e-06 0.014747658504632334 4.0314618504223715e-05 0.01894698078864636 7.842407455185744e-05']
['59866.41834624173 0.03363396426123132 6.723522802393985e-05 0.014874836864776317 4.03913048838519e-05 0.0005260897366032671 1.4285501844881875e-06 0.014874836864776319 4.03913048838519e-05 0.018759127396454998 7.843489910525456e-05']
['59866.418377779686 0.03360845279218066 6.720755873779539e-05 0.014745756367808538 4.031904017711361e-05 0.0005215244479034491 1.4259943433129684e-06 0.014745756367808538 4.031904017711361e-05 0.01886269642437212 7.83739813477529e-05']
['59866.41840931765 0.03376626940564564 6.729756334336722e-05 0.01473441303813785 4.0307063267902363e-05 0.0005211232596838468 1.4255707468009835e-06 0.01473441303813785 4.0307063267902363e-05 0.019031856367507788 7.844502139229237e-05']
['59866.41844085561 0.03378875294475256 6.73408452383793e-05 0.014836364678116236 4.03717060547705e-05 0.0005247290613413768 1.4278570177043834e-06 0.014836364678116234 4.03717060547705e-05 0.018952388266636325 7.851537484589974e-05']
['59866.418472393576 0.033713319464786055 6.727925959869579e-05 0.01475030766297537 4.0325332107015226e-05 0.000521685417041954 1.4262168748119529e-06 0.01475030766297537 4.0325332107015226e-05 0.018963011801810686 7.843870971459036e-05']
['59866.41850393154 0.03370537434134012 6.726526456854973e-05 0.014810304409642604 4.034511453951202e-05 0.0005238073678867367 1.42691653523823e-06 0.014810304409642604 4.034511453951202e-05 0.018895069931697515 7.843687962102608e-05']
['59866.4185354695 0.03371986473736013 6.728484295733337e-05 0.014764490105831102 4.032221170431706e-05 0.0005221870183498669 1.4261065131422084e-06 0.014764490105831102 4.032221170431706e-05 0.01895537463152903 7.844189472801366e-05']
['59866.418567007466 0.033756422642527845 6.7310165857981e-05 0.014760517149012801 4.0341236920274766e-05 0.0005220465037462395 1.4267793925117773e-06 0.014760517149012801 4.0341236920274766e-05 0.018995905493515042 7.847339564519081e-05']
['59866.41859854543 0.033745177199429544 6.732991364079464e-05 0.01482318002765654 4.0350002097855084e-05 0.0005242627497205769 1.427089397253774e-06 0.014823180027656539 4.0350002097855084e-05 0.018921997171773005 7.849484021369668e-05']
['59866.41863008339 0.033772906392837684 6.734863429273207e-05 0.014887095091551868 4.038149260662559e-05 0.0005265232826887938 1.4282031461718417e-06 0.014887095091551868 4.038149260662559e-05 0.018885811301285818 7.852708759552415e-05']
['59866.418661621356 0.033838134876407445 6.739310645090017e-05 0.014789983766693203 4.035768651793162e-05 0.0005230886721595806 1.4273611780182132e-06 0.014789983766693203 4.035768651793162e-05 0.019048151109714244 7.855299904002394e-05']
['59866.418693159314 0.033869665957805425 6.741316643708026e-05 0.014774937450171909 4.032849561130185e-05 0.0005225565175707607 1.426328760888555e-06 0.014774937450171909 4.032849561130185e-05 0.019094728507633517 7.855521986058137e-05']
['59866.41872469728 0.03372134663567413 6.727783275884597e-05 0.014822987727112217 4.033698081947494e-05 0.0005242559484800906 1.426628863738313e-06 0.014822987727112217 4.033698081947494e-05 0.018898358908561914 7.844347520576799e-05']
['59866.418756235245 0.03379019917019367 6.730314621306272e-05 0.014822143193297003 4.03544873585073e-05 0.0005242260792064686 1.4272480308990753e-06 0.014822143193297005 4.03544873585073e-05 0.018968055976896665 7.847418773166642e-05']
['59866.418787773204 0.0337526026416726 6.729600968559772e-05 0.01479098151122819 4.034667020596507e-05 0.0005231239601539553 1.4269715556839644e-06 0.01479098151122819 4.034667020596507e-05 0.018961621130444407 7.846404728481045e-05']
['59866.41881931117 0.03367305166159901 6.724397098079232e-05 0.014719314748808224 4.029490676930667e-05 0.0005205892669329486 1.4251407986138292e-06 0.014719314748808224 4.029490676930667e-05 0.018953736912790783 7.839280033786748e-05']
['59866.418850849135 0.03382742034556965 6.734824653686393e-05 0.01484671182376532 4.036184612378772e-05 0.0005250950167584754 1.4275082939811714e-06 0.01484671182376532 4.036184612378772e-05 0.018980708521804335 7.851665386470899e-05']
['59866.41888238709 0.03370703970589151 6.72487212835793e-05 0.014979959939131357 4.046134529591525e-05 0.0005298077048069607 1.4310273573317597e-06 0.014979959939131357 4.046134529591525e-05 0.018727079766760156 7.848255205733191e-05']
['59866.41891392506 0.0336978003037558 6.724199144321586e-05 0.014793297331026344 4.033566111235453e-05 0.0005232058655246633 1.4265821886468359e-06 0.014793297331026344 4.033566111235453e-05 0.018904502972729456 7.841205883421392e-05']
['59866.41894546302 0.033735300285031536 6.728273873775937e-05 0.014826812646031653 4.03562309598664e-05 0.0005243912273140805 1.427309698182427e-06 0.014826812646031653 4.03562309598664e-05 0.018908487638999882 7.845758286704776e-05']
['59866.41897700098 0.033709652269577776 6.727104243978911e-05 0.01472657176245518 4.0306704463258896e-05 0.0005208459312871705 1.4255580566826252e-06 0.01472657176245518 4.0306704463258896e-05 0.018983080507122597 7.84220860193377e-05']
['59866.41900853895 0.03388757639097554 6.738012089401107e-05 0.01483029335400233 4.035409126457009e-05 0.0005245143321760788 1.4272340219417343e-06 0.014830293354002329 4.035409126457009e-05 0.01905728303697321 7.85400112903022e-05']
['59866.41904007691 0.03376857894016851 6.732865618703824e-05 0.014851523550753642 4.0369639816566806e-05 0.0005252651967884754 1.4277839394768895e-06 0.014851523550753642 4.0369639816566806e-05 0.01891705538941487 7.850385826742363e-05']
['59866.41907161487 0.033792955480091605 6.73178480852018e-05 0.014873266931727264 4.0382186732003064e-05 0.0005260342115799159 1.4282276958351642e-06 0.014873266931727264 4.0382186732003064e-05 0.01891968854836434 7.850104251588429e-05']
['59866.41910315284 0.03382606550978634 6.734539241943083e-05 0.014899983187778998 4.0396349894562946e-05 0.0005269791058491475 1.4287286152421018e-06 0.014899983187778998 4.0396349894562946e-05 0.01892608232200734 7.853194868925058e-05']
['59866.4191346908 0.033824319894996034 6.736470971316974e-05 0.014863653662983397 4.037992564708746e-05 0.0005256942117488365 1.4281477263149265e-06 0.014863653662983397 4.037992564708746e-05 0.01896066623201264 7.854006945504911e-05']
['59866.41916622876 0.03375577673714971 6.731127442137884e-05 0.014745146417196608 4.031873194627888e-05 0.0005215028753134646 1.4259834418771996e-06 0.014745146417196608 4.031873194627888e-05 0.019010630319953103 7.846277977478276e-05']
['59866.41919776672 0.03377796102502241 6.732087453399963e-05 0.014828815287948861 4.0361323226732545e-05 0.0005244620562830508 1.427489800280936e-06 0.01482881528794886 4.0361323226732545e-05 0.01894914573707355 7.849290770913829e-05']
['59866.41922930469 0.033764455325785786 6.730490419892562e-05 0.014820185254419778 4.036396550496442e-05 0.000524156831284117 1.427583251756853e-06 0.014820185254419778 4.036396550496442e-05 0.01894427007136601 7.848056982790399e-05']
['59866.41926084265 0.033754464014498796 6.729914760626163e-05 0.014746841969661344 4.0326139127680405e-05 0.0005215628432148055 1.4262454173292954e-06 0.014746841969661343 4.0326139127680405e-05 0.019007622044837455 7.845618372999305e-05']
['59866.41929238061 0.033715836008218224 6.725225337709333e-05 0.014799136336065456 4.034556740258975e-05 0.0005234123780834885 1.4269325519932e-06 0.014799136336065456 4.034556740258975e-05 0.018916699672152766 7.842595484489604e-05']
['59866.41932391858 0.0338091973853946 6.733928740705498e-05 0.014848040845005085 4.035923901245501e-05 0.0005251420212695382 1.4274160862798842e-06 0.014848040845005087 4.035923901245501e-05 0.01896115654038951 7.850762894238001e-05']
['59866.41935545654 0.03365344872690337 6.724484387540175e-05 0.014793590706585352 4.0353226123809386e-05 0.0005232162415625297 1.4272034238465039e-06 0.014793590706585353 4.0353226123809386e-05 0.01885985802031802 7.842354165954537e-05']
['59866.4193869945 0.03380803244457037 6.735343167613527e-05 0.014761320616968918 4.033312968247779e-05 0.0005220749206122021 1.4264926576295083e-06 0.014761320616968918 4.033312968247779e-05 0.01904671182760145 7.85063443839757e-05']
['59866.41941853247 0.03380172472964769 6.733567728928498e-05 0.014820180007021974 4.0377097280459326e-05 0.0005241566456953839 1.4280476933083168e-06 0.014820180007021976 4.0377097280459326e-05 0.018981544722625712 7.851371485799411e-05']
['59866.419450070425 0.033748481639842044 6.727745871436006e-05 0.014786723348577105 4.034873218523414e-05 0.0005229733584574198 1.427044483282459e-06 0.014786723348577105 4.034873218523414e-05 0.018961758291264938 7.844919782902927e-05']
['59866.41948160839 0.033752138627382695 6.729321380316508e-05 0.014790011288122344 4.03445056152775e-05 0.0005230896455310225 1.4268949989489208e-06 0.014790011288122344 4.03445056152775e-05 0.01896212733926035 7.846053630520025e-05']
['59866.41951314636 0.033777768929290554 6.731003211263944e-05 0.014855143616716804 4.037006689186861e-05 0.0005253932304312212 1.4277990441758572e-06 0.014855143616716804 4.037006689186861e-05 0.01892262531257375 7.848810562026899e-05']
['59866.419544684315 0.033858247389843915 6.737911213981655e-05 0.014748387156837954 4.032887750250424e-05 0.0005216174930319521 1.4263422675269067e-06 0.014748387156837952 4.032887750250424e-05 0.01910986023300596 7.852619380411842e-05']
['59866.41957622228 0.033772460488626754 6.732652071543198e-05 0.0148321316174908 4.0391425210447615e-05 0.0005245793474473888 1.4285544401709637e-06 0.0148321316174908 4.0391425210447615e-05 0.018940328871135954 7.85132321470507e-05']
['59866.41960776025 0.03370746172560498 6.727139440951683e-05 0.0147981483382065 4.035101071060933e-05 0.0005233774348072625 1.427125069632775e-06 0.0147981483382065 4.035101071060933e-05 0.01890931338739848 7.844516920224267e-05']
['59866.419639298205 0.03375091000122336 6.727727273990327e-05 0.01482763727645875 4.035584098537362e-05 0.0005244203926493462 1.427295905656159e-06 0.014827637276458748 4.035584098537362e-05 0.018923272724764607 7.845269484827206e-05']
['59866.41967083617 0.03374730504877974 6.7326020781854e-05 0.01482445743978129 4.038105900256331e-05 0.0005243079289325813 1.428187810565207e-06 0.014824457439781289 4.038105900256331e-05 0.018922847608998455 7.85074709851689e-05']
['59866.41970237413 0.03379525888165239 6.735763504900829e-05 0.014796528599780848 4.035627274298554e-05 0.0005233201482790495 1.4273111759579715e-06 0.014796528599780848 4.035627274298554e-05 0.018998730281871545 7.852184249685962e-05']
['59866.419733912095 0.03377064367019598 6.731639812506334e-05 0.0148295013160819 4.0362426538778945e-05 0.0005244863195649338 1.4275288219622599e-06 0.0148295013160819 4.0362426538778945e-05 0.01894114235411408 7.848963582939062e-05']
['59866.41976545006 0.03380724370737351 6.736199521631818e-05 0.01483312020947549 4.037362931202183e-05 0.0005246143117365143 1.4279250390151358e-06 0.014833120209475489 4.037362931202183e-05 0.018974123497898017 7.85345041580312e-05']
['59866.41979698802 0.033778715524145166 6.731753367867296e-05 0.014859915364783958 4.0377168219117574e-05 0.0005255619964961272 1.4280502022501205e-06 0.01485991536478396 4.0377168219117574e-05 0.018918800159361204 7.849819140575269e-05']
['59866.419828525984 0.03382006313267917 6.734711823386255e-05 0.014871953827861602 4.03876752620691e-05 0.0005259877700308018 1.428421812877457e-06 0.0148719538278616 4.03876752620691e-05 0.01894810930481757 7.852896693246519e-05']
['59866.41986006395 0.033807643777316536 6.733802117492806e-05 0.014847948310282369 4.037787719480343e-05 0.0005251387485231987 1.428075277135662e-06 0.014847948310282369 4.037787719480343e-05 0.018959695467034167 7.851612613032871e-05']
['59866.41989160191 0.03367953776223448 6.72231779545764e-05 0.014811172215729352 4.034638431938288e-05 0.0005238380602485926 1.4269614445144713e-06 0.014811172215729352 4.034638431938288e-05 0.018868365546505127 7.84014437492065e-05']
['59866.419923139874 0.03377289717074081 6.732465824301154e-05 0.014857272524667928 4.036571007143796e-05 0.0005254685251476232 1.4276449531741455e-06 0.014857272524667927 4.036571007143796e-05 0.01891562464607288 7.849840862788041e-05']
['59866.41995467783 0.033809026697463856 6.73278600666582e-05 0.014856462574896728 4.038110055713608e-05 0.0005254398790343471 1.428189280257577e-06 0.01485646257489673 4.038110055713608e-05 0.018952564122567128 7.850906968854645e-05']
['59866.4199862158 0.03377162589977418 6.732368414277302e-05 0.014849070211015749 4.037486810791379e-05 0.0005251784276448378 1.4279688524572887e-06 0.01484907021101575 4.037486810791379e-05 0.018922555688758426 7.850228290494043e-05']
['59866.420017753764 0.03382091058113314 6.734735671537823e-05 0.014891798594500561 4.0378607121609095e-05 0.0005266896350763786 1.428101093015488e-06 0.014891798594500561 4.0378607121609095e-05 0.018929111986632576 7.852450808269774e-05']
['59866.42004929172 0.03394230940031381 6.74586813935233e-05 0.014881006701234059 4.037255166261538e-05 0.0005263079499300044 1.4278869249640346e-06 0.014881006701234059 4.037255166261538e-05 0.019061302699079748 7.861689782167339e-05']
['59866.42008082969 0.033774494075537495 6.731790049418739e-05 0.014796481661755552 4.035038972444791e-05 0.000523318488185995 1.4271031067400678e-06 0.01479648166175555 4.035038972444791e-05 0.018978012413781945 7.848473531751346e-05']
['59866.420112367654 0.03383068523711548 6.735922908862627e-05 0.014777577109541721 4.0322250342796736e-05 0.0005226498764233795 1.4261078796988827e-06 0.014777577109541721 4.0322250342796736e-05 0.019053108127573756 7.850572982987425e-05']
['59866.42014390561 0.03383410820454948 6.734503583040308e-05 0.01478898498282007 4.034254891549936e-05 0.0005230533474061385 1.4268257948507343e-06 0.01478898498282007 4.034254891549936e-05 0.019045123221729413 7.850398145315773e-05']
['59866.42017544358 0.033866612791604904 6.73772162512092e-05 0.014743276132945543 4.0317260812972226e-05 0.0005214367275393437 1.4259314111799326e-06 0.014743276132945541 4.0317260812972226e-05 0.01912333665865936 7.851860154908157e-05']
['59866.42020698154 0.033783624694861965 6.73103970618311e-05 0.014789773739188196 4.035005729668383e-05 0.0005230812439561124 1.4270913495129847e-06 0.014789773739188198 4.035005729668383e-05 0.01899385095567377 7.847812865038915e-05']
['59866.4202385195 0.03384416537635047 6.737058274765158e-05 0.014870123923668982 4.0390341824824296e-05 0.0005259230504091041 1.4285161232426914e-06 0.014870123923668982 4.0390341824824296e-05 0.018974041452681487 7.855046233144855e-05']
['59866.42027005747 0.03379808250255933 6.732955371843415e-05 0.014777490458590592 4.034073302506811e-05 0.0005226468117728915 1.4267615708644575e-06 0.01477749045859059 4.034073302506811e-05 0.019020592043968738 7.848976713510705e-05']
['59866.420301595426 0.03372322365898817 6.728050730104394e-05 0.01480033017596644 4.0357232635290114e-05 0.0005234546015327111 1.427345125203551e-06 0.01480033017596644 4.0357232635290114e-05 0.018922893483021733 7.845618451508302e-05']
['59866.42033313339 0.03379606575948555 6.734066238675352e-05 0.014825554556170325 4.035796927507824e-05 0.0005243467314873506 1.4273711785065642e-06 0.014825554556170325 4.035796927507824e-05 0.018970511203315228 7.850815559351067e-05']
['59866.42036467136 0.03385022196103926 6.736903510375788e-05 0.014821074945447071 4.0356596995278304e-05 0.0005241882976674099 1.427322644036905e-06 0.014821074945447071 4.0356596995278304e-05 0.01902914701559219 7.853178854356157e-05']
['59866.420396209316 0.03374796025498721 6.730170306916908e-05 0.014754660747215941 4.032553996563203e-05 0.0005218393759029722 1.4262242263066928e-06 0.014754660747215941 4.032553996563203e-05 0.01899329950777127 7.845806784219447e-05']
['59866.42042774728 0.033731019889339006 6.730878639801199e-05 0.014787623619845779 4.035551206371343e-05 0.000523005199040205 1.4272842724321348e-06 0.01478762361984578 4.035551206371343e-05 0.018943396269493228 7.847955198838563e-05']
['59866.42045928524 0.03386764117460003 6.738821835980016e-05 0.014916196166240177 4.040286820596726e-05 0.0005275525226634451 1.4289591533489038e-06 0.014916196166240177 4.040286820596726e-05 0.018951445008359855 7.857202894781874e-05']
['59866.420490823206 0.033881297128587 6.739247862740441e-05 0.01489119015356606 4.038718465173869e-05 0.0005266681158803108 1.42840446108652e-06 0.01489119015356606 4.038718465173869e-05 0.01899010697502094 7.856761966382078e-05']
['59866.42052236117 0.033935758909640526 6.743908725507491e-05 0.014933724870877825 4.041470563285113e-05 0.0005281724737721294 1.4293778166826942e-06 0.014933724870877825 4.041470563285113e-05 0.019002034038762702 7.862174585436028e-05']
['59866.42055389913 0.03388326270981759 6.740263081976096e-05 0.014871212688490676 4.038739717266734e-05 0.0005259615575876012 1.42841197747681e-06 0.014871212688490676 4.038739717266734e-05 0.019012050021326915 7.857643725575605e-05']
['59866.420585437096 0.03380302770018345 6.735252496465965e-05 0.014856094626913719 4.039878689762968e-05 0.0005254268655365033 1.4288148065941908e-06 0.014856094626913717 4.039878689762968e-05 0.018946933073269737 7.853931882767508e-05']
['59866.42061697506 0.03388888000693373 6.740049830842283e-05 0.01480453177014959 4.036362655348531e-05 0.0005236032025289588 1.427571263800549e-06 0.01480453177014959 4.036362655348531e-05 0.01908434823678414 7.856239253467866e-05']
['59866.42064851302 0.033795032267837574 6.731585365132891e-05 0.0148804197161474 4.037752131753646e-05 0.0005262871895793238 1.428062690552068e-06 0.0148804197161474 4.037752131753646e-05 0.018914612551690173 7.849693230028319e-05']
['59866.420680050986 0.03382173373153218 6.736346521040118e-05 0.014863631905309682 4.040370202051259e-05 0.0005256934422285428 1.4289886435059063e-06 0.014863631905309684 4.040370202051259e-05 0.018958101826222498 7.855122902994773e-05']
['59866.420711588944 0.03377943204348755 6.735003465553987e-05 0.014773015490742766 4.0332735945067345e-05 0.0005224885421610785 1.4264787320172521e-06 0.014773015490742766 4.0332735945067345e-05 0.019006416552744786 7.8503227684707e-05']
['59866.42074312691 0.033938353601541627 6.742414047285578e-05 0.014972621181224015 4.043193567605271e-05 0.0005295481493409367 1.4299872048038538e-06 0.014972621181224015 4.043193567605271e-05 0.018965732420317613 7.86177851444306e-05']
['59866.420774664875 0.0338555553568917 6.738243976199418e-05 0.014786115705207756 4.0350954134783604e-05 0.0005229518674694489 1.4271230686722586e-06 0.014786115705207756 4.0350954134783604e-05 0.019069439651683943 7.854038889556242e-05']
['59866.420806202834 0.0338148352775663 6.733581995448807e-05 0.014810119020930136 4.036247225776631e-05 0.0005238008111022962 1.4275304389406671e-06 0.014810119020930138 4.036247225776631e-05 0.01900471625663616 7.850631704329397e-05']
['59866.4208377408 0.033715705403186316 6.726178135456345e-05 0.014783392408718307 4.0341055336659224e-05 0.0005228555505588266 1.426772970305111e-06 0.014783392408718307 4.0341055336659224e-05 0.018932312994468008 7.843180462455586e-05']
['59866.420869278765 0.033798602563777064 6.73414378484236e-05 0.014799583592031124 4.034643876701815e-05 0.0005234281965274359 1.4269633702056475e-06 0.014799583592031122 4.034643876701815e-05 0.01899901897174594 7.850289404011705e-05']
['59866.42090081672 0.03388617894298548 6.741131054799258e-05 0.01493016595917199 4.042198635453498e-05 0.0005280466030187937 1.4296353195371967e-06 0.014930165959171992 4.042198635453498e-05 0.018956012983813483 7.860166519002066e-05']
['59866.42093235469 0.033799379156446686 6.735764061022268e-05 0.014805194908922504 4.034073384938322e-05 0.0005236266562653289 1.4267616000186405e-06 0.014805194908922506 4.034073384938322e-05 0.01899418424752418 7.85138621905883e-05']
['59866.42096389265 0.0337649744241242 6.730311786804031e-05 0.014784590947724559 4.034801733267157e-05 0.0005228979402049007 1.4270192005449222e-06 0.014784590947724559 4.034801733267157e-05 0.01898038347639964 7.847083647723459e-05']
['59866.42099543061 0.03382968117772419 6.736530807765498e-05 0.014909890080101894 4.042053060054892e-05 0.0005273294904900071 1.4295838327721284e-06 0.014909890080101896 4.042053060054892e-05 0.018919791097622294 7.856146654962139e-05']
['59866.42102696858 0.033867023083193566 6.739426585093411e-05 0.01480070552570494 4.034253030478355e-05 0.0005234678768141046 1.4268251366313089e-06 0.01480070552570494 4.034253030478355e-05 0.019066317557488624 7.854620818969406e-05']
['59866.42105850654 0.03382469923276637 6.734137993173527e-05 0.014859484982534168 4.0382675463590856e-05 0.0005255467748377997 1.4282449811791737e-06 0.014859484982534166 4.0382675463590856e-05 0.018965214250232204 7.852147431568017e-05']
['59866.4210900445 0.03390731147813553 6.741444630489734e-05 0.014801682627678815 4.035128874074629e-05 0.0005235024347272261 1.4271349029373585e-06 0.014801682627678813 4.035128874074629e-05 0.01910562885045671 7.856802195317739e-05']
['59866.42112158247 0.03372704864842139 6.728462526914519e-05 0.014859440217016533 4.038484896221572e-05 0.000525545191581486 1.4283218529680513e-06 0.014859440217016531 4.038484896221572e-05 0.018867608431404857 7.847392448011165e-05']
['59866.42115312043 0.03385314304458458 6.737309773900928e-05 0.014886438761932002 4.039514944045746e-05 0.0005265000697769495 1.4286861578632478e-06 0.014886438761932002 4.039514944045746e-05 0.01896670428265258 7.8555091478955e-05']
['59866.42118465839 0.03389177082797536 6.741701052953362e-05 0.014832545538864296 4.0373578245693306e-05 0.0005245939869213096 1.4279232329132226e-06 0.014832545538864296 4.0373578245693306e-05 0.01905922528911106 7.858167171230431e-05']
['59866.42121619635 0.033786219187778126 6.73343419727006e-05 0.014863207216063965 4.0403300763209435e-05 0.0005256784219190464 1.428974451931851e-06 0.014863207216063965 4.0403300763209435e-05 0.01892301197171416 7.8526048681052e-05']
['59866.42124773432 0.03377269867566261 6.731898568142566e-05 0.014739178744897505 4.031258040693197e-05 0.000521291812081208 1.4257658756783806e-06 0.014739178744897505 4.031258040693197e-05 0.01903351993076511 7.846623459961201e-05']
['59866.42127927228 0.03382838684638057 6.736364324262499e-05 0.01477943215191721 4.0336793805832035e-05 0.0005227154851264249 1.4266222494837142e-06 0.014779432151917212 4.0336793805832035e-05 0.01904895469446336 7.851698775076553e-05']
['59866.42131081024 0.03382209141659236 6.735215379688929e-05 0.014774515298499975 4.034385184177668e-05 0.000522541587009578 1.4268718764412943e-06 0.014774515298499975 4.034385184177668e-05 0.019047576118092387 7.851075724071865e-05']
['59866.42134234821 0.0337593879675849 6.729354083554065e-05 0.014821408365822884 4.037496568844667e-05 0.0005242000900009517 1.427972303662657e-06 0.014821408365822885 4.037496568844667e-05 0.018937979601762016 7.847648369115313e-05']
['59866.421373886165 0.03384491109320786 6.73886172504145e-05 0.014818228090291768 4.035764696288312e-05 0.0005240876107629137 1.427359779044548e-06 0.01481822809029177 4.035764696288312e-05 0.019026683002916094 7.854912732362831e-05']
['59866.42140542413 0.033819976682640196 6.735736819827426e-05 0.01484867166615379 4.0385041202534874e-05 0.0005251643320037656 1.4283286520785082e-06 0.01484867166615379 4.0385041202534874e-05 0.018971305016486407 7.853640304679308e-05']
['59866.4214369621 0.033805011639472485 6.732503539407828e-05 0.014891345937072713 4.038223901022761e-05 0.0005266736255947855 1.4282295447991315e-06 0.014891345937072713 4.038223901022761e-05 0.018913665702399773 7.850723290431935e-05']
['59866.421468500055 0.03383169561488026 6.737496795931898e-05 0.014788664068715207 4.033778338946037e-05 0.0005230419973914503 1.4266572488450591e-06 0.014788664068715207 4.033778338946037e-05 0.019043031546165053 7.85272123298305e-05']
['59866.42150003802 0.03395376185504452 6.745116269161757e-05 0.014888544684759746 4.039244899431052e-05 0.0005265745515609062 1.4285906491181724e-06 0.014888544684759746 4.039244899431052e-05 0.019065217170284775 7.862066702978956e-05']
['59866.42153157599 0.03399118899905923 6.749331743399826e-05 0.014805218025363205 4.035793189733661e-05 0.0005236274738421742 1.4273698565393768e-06 0.014805218025363205 4.035793189733661e-05 0.019185970973696023 7.863911600009574e-05']
['59866.421563113945 0.03383674072545086 6.736543512002869e-05 0.014798941139638564 4.034453218606707e-05 0.0005234054744221076 1.4268959386983655e-06 0.014798941139638562 4.034453218606707e-05 0.019037799585812303 7.85225007639428e-05']
['59866.42159465191 0.033847219421961346 6.737499216543946e-05 0.014891021951333707 4.041871777498739e-05 0.0005266621669432623 1.4295197171834437e-06 0.014891021951333705 4.041871777498739e-05 0.018956197470627642 7.856883807125513e-05']
['59866.42162618987 0.03377205297140732 6.730388634043856e-05 0.014944525935696153 4.041857545242242e-05 0.0005285544832957945 1.429514683552393e-06 0.014944525935696154 4.041857545242242e-05 0.018827527035711167 7.850779807210132e-05']
['59866.421657727835 0.033881056393529486 6.737718865051836e-05 0.014805490995022359 4.0358979403537684e-05 0.0005236371281689672 1.4274069044926703e-06 0.014805490995022357 4.0358979403537684e-05 0.01907556539850713 7.854000744170272e-05']
['59866.4216892658 0.033821766112930376 6.735208423429145e-05 0.0148470486813214 4.037330824894137e-05 0.0005251069306574016 1.4279136837315139e-06 0.0148470486813214 4.037330824894137e-05 0.018974717431608976 7.852583822963705e-05']
['59866.42172080376 0.033972186144803976 6.74636411111396e-05 0.014819737600771467 4.0376447288451816e-05 0.0005241409987750232 1.428024704543658e-06 0.014819737600771465 4.0376447288451816e-05 0.01915244854403251 7.86231541443726e-05']
['59866.421752341725 0.03390440255192602 6.743500558222222e-05 0.014829987318716797 4.035293665504437e-05 0.0005245035083919781 1.4271931859832098e-06 0.014829987318716797 4.035293665504437e-05 0.01907441523320922 7.858650949469868e-05']
['59866.42178387969 0.03395465898793929 6.744400193380107e-05 0.014863138509363773 4.040350746448733e-05 0.000525675991916611 1.4289817624940998e-06 0.014863138509363773 4.040350746448733e-05 0.01909152047857552 7.862020613226251e-05']
['59866.42181541765 0.033968946706610194 6.742810041362879e-05 0.014878899034498488 4.0378906716275215e-05 0.0005262334064679253 1.4281116890092738e-06 0.01487889903449849 4.0378906716275215e-05 0.019090047672111705 7.859392363912151e-05']
['59866.421846955614 0.03398088580338112 6.747846018090569e-05 0.014806005741284932 4.0361693700241586e-05 0.0005236553335938842 1.4275029031009912e-06 0.014806005741284932 4.0361693700241586e-05 0.019174880062096188 7.86282958402266e-05']
['59866.42187849357 0.03383093252737615 6.73458896593876e-05 0.014834688151179078 4.035916967753587e-05 0.0005246697663304267 1.4274136340587487e-06 0.014834688151179077 4.035916967753587e-05 0.018996244376197076 7.851325640345419e-05']
['59866.42191003154 0.03398110100516681 6.746172516721145e-05 0.014815374867565796 4.035020534542589e-05 0.0005239866986516735 1.427096585666122e-06 0.014815374867565794 4.035020534542589e-05 0.019165726137601015 7.860803670080055e-05']
['59866.421941569504 0.03393151759530818 6.74253373180393e-05 0.01489778425703396 4.0382556011812174e-05 0.0005269013345830165 1.4282407564367206e-06 0.01489778425703396 4.0382556011812174e-05 0.019033733338274218 7.859342811265157e-05']
['59866.42197310746 0.03379079595699874 6.732554022656003e-05 0.01487838305038718 4.03973575615423e-05 0.0005262151572630649 1.4287642541711584e-06 0.01487838305038718 4.03973575615423e-05 0.01891241290661156 7.851544347931336e-05']
['59866.42200464543 0.033886020798831636 6.739882498617597e-05 0.01485084130454271 4.0396460057333725e-05 0.0005252410672647253 1.4287325114531049e-06 0.01485084130454271 4.0396460057333725e-05 0.019035179494288925 7.857783144552245e-05']
['59866.422036183394 0.03394601209535393 6.744941233945564e-05 0.014914221634933863 4.0395147561644255e-05 0.0005274826879039585 1.4286860914138237e-06 0.014914221634933864 4.0395147561644255e-05 0.019031790460420066 7.86205518389748e-05']
['59866.42206772135 0.03389673107409445 6.74007416997247e-05 0.014961624594022028 4.042953427087288e-05 0.0005291592246275283 1.4299022724694678e-06 0.014961624594022028 4.042953427087288e-05 0.018935106480072426 7.85964835284168e-05']
['59866.42209925932 0.033989307910192564 6.749219180201035e-05 0.014966490893444819 4.044427947572581e-05 0.0005293313347625733 1.4304237774115225e-06 0.014966490893444819 4.044427947572581e-05 0.019022817016747746 7.868249930289435e-05']
['59866.42213079728 0.033896207490363074 6.740859128287877e-05 0.014858379711073967 4.038122274597047e-05 0.0005255076838563888 1.4281936018035733e-06 0.014858379711073967 4.038122274597047e-05 0.019037827779289106 7.857837698248725e-05']
['59866.42216233524 0.03391430586921335 6.742948197779883e-05 0.014903074990003167 4.0397201890330625e-05 0.000527088455984045 1.428758748428306e-06 0.014903074990003165 4.0397201890330625e-05 0.019011230879210188 7.860450979659137e-05']
['59866.42219387321 0.03405597416758288 6.75291016091132e-05 0.014910101740396312 4.0407804618822526e-05 0.0005273369764415877 1.429133743239361e-06 0.014910101740396312 4.0407804618822526e-05 0.01914587242718657 7.869542704787153e-05']
['59866.42222541117 0.03390525159112003 6.741058750272847e-05 0.014898312619814263 4.0411128973021326e-05 0.0005269200215937345 1.4292513182178783e-06 0.014898312619814261 4.0411128973021326e-05 0.019006938971305773 7.859546203399516e-05']
['59866.42225694913 0.03391493948268608 6.740605118509255e-05 0.01488777669255454 4.040031412238278e-05 0.0005265473893929697 1.4288688211205617e-06 0.01488777669255454 4.040031412238278e-05 0.019027162790131537 7.858601095331483e-05']
['59866.4222884871 0.033896956235038446 6.739794945397743e-05 0.014956496085187076 4.043709255023558e-05 0.0005289778407315788 1.4301695919187665e-06 0.014956496085187076 4.043709255023558e-05 0.01894046014985137 7.85979773564003e-05']
['59866.422320025056 0.0339201612328697 6.74339257566923e-05 0.01492615424091791 4.041105787282616e-05 0.0005279047175098094 1.4292488035628747e-06 0.014926154240917911 4.041105787282616e-05 0.01899400699195179 7.861544340242566e-05']
['59866.42235156302 0.033961528421916826 6.745543121667287e-05 0.014810960512553404 4.036024890792033e-05 0.000523830572780388 1.4274518040255092e-06 0.014810960512553402 4.036024890792033e-05 0.019150567909363425 7.860779155107061e-05']
['59866.42238310098 0.0339811891937897 6.747645003894051e-05 0.014878444942947485 4.039415281505346e-05 0.0005262173462646011 1.4286509094500348e-06 0.014878444942947485 4.039415281505346e-05 0.019102744250842216 7.864323805327147e-05']
['59866.422414638946 0.03382725130705834 6.733603948851767e-05 0.014869978906083216 4.038941315097175e-05 0.0005259179214611908 1.4284832781239907e-06 0.014869978906083216 4.038941315097175e-05 0.018957272400975125 7.852035983538984e-05']
['59866.42244617691 0.03400834010993415 6.74849330495126e-05 0.014767324881818415 4.032428693020984e-05 0.0005222872780411866 1.4261799092441791e-06 0.014767324881818414 4.032428693020984e-05 0.019241015228115735 7.861465706296181e-05']
['59866.42247771487 0.03394878603504667 6.742982203454744e-05 0.014855191388967888 4.038656685106143e-05 0.0005253949200289773 1.4283826108572685e-06 0.014855191388967886 4.038656685106143e-05 0.019093594646078783 7.859933639431056e-05']
['59866.422509252836 0.03391333629540199 6.742517151372298e-05 0.014891382691591036 4.03875011418139e-05 0.000526674925519957 1.4284156546331664e-06 0.014891382691591034 4.03875011418139e-05 0.019021953603810954 7.85958268748092e-05']
['59866.4225407908 0.033865874802889544 6.739771154558275e-05 0.01492236401674903 4.0430890545099866e-05 0.0005277706657516086 1.429950240857782e-06 0.01492236401674903 4.0430890545099866e-05 0.018943510786140514 7.85945827131325e-05']
['59866.42257232876 0.0339021101407664 6.742345688087613e-05 0.014821124413538186 4.0359297191662065e-05 0.000524190047243238 1.427418143948415e-06 0.014821124413538188 4.0359297191662065e-05 0.01908098572722821 7.857986642628164e-05']
['59866.422603866726 0.03385305426861125 6.739495958244409e-05 0.01486597454372798 4.039984152151528e-05 0.0005257762961139093 1.428852106284079e-06 0.014865974543727982 4.039984152151528e-05 0.01898707972488327 7.857625450530728e-05']
['59866.422635404684 0.033924174291356746 6.740399228204247e-05 0.014859648622185962 4.038670367656116e-05 0.0005255525624065706 1.4283874500694071e-06 0.014859648622185962 4.038670367656116e-05 0.019064525669170784 7.857724867552949e-05']
['59866.42266694265 0.03401259388505458 6.749059122681396e-05 0.014943437152259438 4.041859171531647e-05 0.0005285159754589257 1.4295152587346102e-06 0.014943437152259438 4.041859171531647e-05 0.01906915673279514 7.866792523255172e-05']
['59866.422698480616 0.03394342459274789 6.741977993067999e-05 0.01492666375567907 4.042532352765217e-05 0.0005279227379082132 1.4297533478922087e-06 0.014926663755679071 4.042532352765217e-05 0.01901676083706882 7.861064500572851e-05']
['59866.422730018574 0.03396693510501521 6.745118631698943e-05 0.014919237624420852 4.040314248419975e-05 0.0005276600922420366 1.4289688539570113e-06 0.014919237624420854 4.040314248419975e-05 0.019047697480594355 7.86261817600713e-05']
['59866.42276155654 0.03402825695347775 6.750522432014603e-05 0.014925243813944116 4.041817466373895e-05 0.0005278725177424308 1.4295005085523686e-06 0.014925243813944116 4.041817466373895e-05 0.01910301313953363 7.868026533802327e-05']
['59866.422793094505 0.033878358187316104 6.738792894856776e-05 0.014908761535144149 4.0407322310416036e-05 0.0005272895763770012 1.4291166850689193e-06 0.014908761535144149 4.0407322310416036e-05 0.018969596652171954 7.857407119575174e-05']
['59866.422824632464 0.03397472104544339 6.746012612037507e-05 0.014923946410614527 4.040048732564831e-05 0.0005278266314861891 1.4288749469329769e-06 0.014923946410614527 4.040048732564831e-05 0.019050774634828863 7.863248687614287e-05']
['59866.42285617043 0.03395912613125625 6.745334711230485e-05 0.014969812640312032 4.042977443270634e-05 0.0005294488175255994 1.4299107664567872e-06 0.014969812640312033 4.042977443270634e-05 0.018989313490944217 7.864172364166874e-05']
['59866.42288770839 0.034013472904286295 6.75091601612355e-05 0.014875236323765391 4.040240713439029e-05 0.0005261038645749723 1.4289428462776608e-06 0.01487523632376539 4.040240713439029e-05 0.019138236580520905 7.867554389979378e-05']
['59866.42291924635 0.03395807078872287 6.747321098795724e-05 0.014919218280437406 4.0412867186368916e-05 0.0005276594080885733 1.4293127949393043e-06 0.014919218280437406 4.0412867186368916e-05 0.019038852508285464 7.865007333275976e-05']
['59866.42295078432 0.03382770667365801 6.733734296226161e-05 0.014896166792671965 4.0396753342609734e-05 0.0005268441284833528 1.4287428842978633e-06 0.014896166792671965 4.0396753342609734e-05 0.018931539880986045 7.852525350383081e-05']
['59866.42298232228 0.033842868840199165 6.736311577808898e-05 0.014883951474322268 4.0383334439241684e-05 0.0005264120999729538 1.4282682876752195e-06 0.014883951474322267 4.0383334439241684e-05 0.018958917365876897 7.854045497553388e-05']
['59866.42301386024 0.03392103252925915 6.743619071729097e-05 0.014856916019753384 4.0370168407336146e-05 0.0005254559163655374 1.42780263455107e-06 0.014856916019753384 4.0370168407336146e-05 0.019064116509505763 7.859637597049575e-05']
['59866.42304539821 0.033936987745766554 6.744821811712905e-05 0.014852477974900035 4.0384167495514574e-05 0.000525298952637521 1.4282977510138203e-06 0.014852477974900037 4.0384167495514574e-05 0.019084509770866516 7.861388625097726e-05']
['59866.42307693617 0.033887311096255215 6.740113703408686e-05 0.014877525533377407 4.0405752427249606e-05 0.0005261848288028669 1.429061161809805e-06 0.014877525533377407 4.0405752427249606e-05 0.019009785562877808 7.858459201840997e-05']
['59866.42310847413 0.03394650237311133 6.745577091359563e-05 0.014886885974335544 4.040291624930591e-05 0.0005265158866802019 1.4289608525344213e-06 0.014886885974335544 4.040291624930591e-05 0.019059616398775785 7.862999854378684e-05']
['59866.42314001209 0.03392907429950988 6.742353430790597e-05 0.014919558044804465 4.0424193512100236e-05 0.0005276714247949075 1.4297133817675728e-06 0.014919558044804465 4.0424193512100236e-05 0.019009516254705414 7.861328386267234e-05']
['59866.42317155006 0.033987456047370086 6.745894207978635e-05 0.014948166140533048 4.042831833124309e-05 0.0005286832292054964 1.4298592674022276e-06 0.014948166140533048 4.042831833124309e-05 0.019039289906837037 7.864577413705263e-05']
['59866.42320308802 0.03388677354150715 6.738893151693504e-05 0.014891063908830703 4.039110690135818e-05 0.0005266636508861616 1.4285431822898495e-06 0.014891063908830703 4.039110690135818e-05 0.018995709632676445 7.856659345874114e-05']
['59866.42323462598 0.0340020934019399 6.75037077030618e-05 0.014941299605832611 4.043722742724807e-05 0.0005284403752189439 1.4301743622172657e-06 0.014941299605832613 4.043722742724807e-05 0.01906079379610729 7.868875342552701e-05']
['59866.42326616395 0.033981885765556226 6.748618311265298e-05 0.014853012546684068 4.036858809789397e-05 0.0005253178592468245 1.427746742537884e-06 0.014853012546684067 4.036858809789397e-05 0.01912887321887216 7.863846270198797e-05']
['59866.42329770191 0.034113570997690044 6.755631215787453e-05 0.015015972116395928 4.046492970633048e-05 0.0005310813750343292 1.4311541299174607e-06 0.01501597211639593 4.046492970633048e-05 0.019097598881294114 7.874811647595422e-05']
['59866.42332923987 0.03409925272106838 6.75686176965057e-05 0.014982982444904012 4.0445454785337986e-05 0.0005299146040812367 1.430465345485843e-06 0.014982982444904012 4.0445454785337986e-05 0.01911627027616437 7.874866925992694e-05']
['59866.42336077784 0.0339969809887913 6.75106379768406e-05 0.014889050242599886 4.040060557321076e-05 0.0005265924320118567 1.428879129084993e-06 0.014889050242599886 4.040060557321076e-05 0.019107930746191416 7.86758868442052e-05']
['59866.423392315795 0.03397460684184606 6.747034411560126e-05 0.01488191785487808 4.040342631679847e-05 0.0005263401753980849 1.4289788924816995e-06 0.01488191785487808 4.040342631679847e-05 0.019092688986967983 7.86427631331365e-05']
['59866.42342385376 0.03422021737061336 6.766478913586663e-05 0.014998666150023831 4.045321450017063e-05 0.0005304693016803066 1.4307397892575316e-06 0.014998666150023831 4.045321450017063e-05 0.019221551220589526 7.883518410074344e-05']
['59866.42345539173 0.033886973503418086 6.738306141600325e-05 0.014876084809931075 4.039246072549707e-05 0.0005261338736343976 1.428591064024023e-06 0.014876084809931077 4.039246072549707e-05 0.019010888693487007 7.856225460902767e-05']
['59866.423486929685 0.0340070836598984 6.749825442302972e-05 0.014852099311141839 4.038591125366412e-05 0.0005252855601466571 1.4283594238424997e-06 0.014852099311141837 4.038591125366412e-05 0.019154984348756565 7.865771531099085e-05']
['59866.42351846765 0.03391653592535253 6.742561351822094e-05 0.01484792653009751 4.038518056260494e-05 0.0005251379782067361 1.4283335809327349e-06 0.01484792653009751 4.038518056260494e-05 0.019068609395255016 7.85950136292545e-05']
['59866.42355000562 0.03399444069724884 6.747471783865456e-05 0.01490679075749114 4.040781903702875e-05 0.0005272198743758431 1.4291342531790925e-06 0.01490679075749114 4.040781903702875e-05 0.0190876499397577 7.864877231549969e-05']
['59866.423581543575 0.033996985171441826 6.747482566134933e-05 0.014880720539786934 4.0403309378119503e-05 0.0005262978290391528 1.4289747566219669e-06 0.014880720539786932 4.0403309378119503e-05 0.019116264631654896 7.864654796450716e-05']
['59866.42361308154 0.03398486215890805 6.743602495808246e-05 0.0149794910050107 4.044686062200765e-05 0.0005297911196551191 1.430515066786989e-06 0.014979491005010698 4.044686062200765e-05 0.019005371153897353 7.863565346789733e-05']
['59866.4236446195 0.03402285108645027 6.751623782269782e-05 0.014914281319858638 4.041360890702167e-05 0.0005274847988263598 1.429339027941144e-06 0.014914281319858638 4.041360890702167e-05 0.019108569766591633 7.868736972742699e-05']
['59866.423676157465 0.03385726653677487 6.740422172129931e-05 0.014838333263272552 4.0359801447898346e-05 0.0005247986857988268 1.427435978364546e-06 0.014838333263272552 4.0359801447898346e-05 0.01901893327350232 7.856362185367892e-05']
['59866.42370769543 0.0339484381505427 6.746074118964659e-05 0.01486351506361844 4.039566938180633e-05 0.0005256893097990493 1.4287045470267568e-06 0.014863515063618441 4.039566938180633e-05 0.01908492308692426 7.863053927489424e-05']
['59866.42373923339 0.033995301307080505 6.748854743200802e-05 0.01488723679097981 4.0400760050004026e-05 0.0005265282942808804 1.4288845925839354e-06 0.014887236790979808 4.0400760050004026e-05 0.019108064516100698 7.865701143000793e-05']
['59866.423770771355 0.03411431578294636 6.755278015285607e-05 0.01497327685024573 4.0438345207804983e-05 0.0005295713388889007 1.4302138956174713e-06 0.01497327685024573 4.0438345207804983e-05 0.01914103893270063 7.873142872783213e-05']
['59866.42380230932 0.03409591862018223 6.757420552172164e-05 0.014855835813351526 4.0378131194735873e-05 0.0005254177118792229 1.428084260545616e-06 0.014855835813351528 4.0378131194735873e-05 0.019240082806830698 7.871890961307314e-05']
['59866.42383384728 0.03392144914689425 6.743172281082496e-05 0.014876250195585161 4.0398226815560246e-05 0.0005261397229553675 1.4287949977431047e-06 0.014876250195585163 4.0398226815560246e-05 0.01904519895130909 7.860695879549966e-05']
['59866.423865385244 0.034029728834509956 6.749825392534951e-05 0.01497573790036063 4.0451651248279096e-05 0.0005296583807313413 1.4306845005317904e-06 0.014975737900360627 4.0451651248279096e-05 0.019053990934149327 7.869148855933125e-05']
['59866.4238969232 0.034015757570075036 6.748925531674477e-05 0.014910093107610795 4.0399279856358476e-05 0.0005273366711192571 1.4288322414427305e-06 0.014910093107610793 4.0399279856358476e-05 0.019105664462464242 7.865685854470121e-05']
['59866.42392846117 0.034007071778775294 6.747428281564921e-05 0.014896301035238955 4.04055199203135e-05 0.0005268488763429328 1.4290529385590974e-06 0.014896301035238955 4.04055199203135e-05 0.01911077074353634 7.864721788796515e-05']
['59866.423959999134 0.03406687947406022 6.75234172142416e-05 0.01489632111212073 4.041162488367815e-05 0.0005268495864173719 1.429268857469515e-06 0.014896321112120728 4.041162488367815e-05 0.019170558361939496 7.869251106698562e-05']
['59866.42399153709 0.03390579845870848 6.741488522998392e-05 0.01490587199630431 4.0421380204782566e-05 0.0005271873798459752 1.4296138813751186e-06 0.014905871996304308 4.0421380204782566e-05 0.018999926462404174 7.860441926654945e-05']
['59866.42402307506 0.034094782696492326 6.757291363833306e-05 0.014899995381353951 4.040436798348482e-05 0.0005269795371086425 1.4290121971278942e-06 0.01489999538135395 4.040436798348482e-05 0.01919478731513838 7.873126195939241e-05']
['59866.424054613024 0.034022955641435884 6.751004751348758e-05 0.014857469401563225 4.038359047333549e-05 0.0005254754882434159 1.428277343028915e-06 0.014857469401563227 4.038359047333549e-05 0.01916548623987266 7.866664410530949e-05']
['59866.42408615098 0.03418339931586774 6.76008340756551e-05 0.014983510117361053 4.04327977350843e-05 0.0005299332666767637 1.4300176939052124e-06 0.014983510117361053 4.04327977350843e-05 0.019199889198506685 7.876981592215695e-05']
['59866.42411768895 0.033989972785449594 6.746319766967883e-05 0.014895084288601236 4.038849492026959e-05 0.0005268058427336254 1.4284508023561801e-06 0.014895084288601236 4.038849492026959e-05 0.01909488849684836 7.8628961342134e-05']
['59866.42414922691 0.03415087965391167 6.759073975527803e-05 0.01494823377591507 4.042261084171039e-05 0.0005286856213178024 1.4296574062529443e-06 0.01494823377591507 4.042261084171039e-05 0.0192026458779966 7.875592401798156e-05']
['59866.42418076487 0.034084124547421386 6.751887590108438e-05 0.014914098950459162 4.04048915286412e-05 0.000527478348828272 1.4290307137500211e-06 0.014914098950459162 4.04048915286412e-05 0.019170025596962223 7.868515655692181e-05']
['59866.42421230284 0.033977720181667836 6.745368127335435e-05 0.014915833642485592 4.041911033301806e-05 0.0005275397010084383 1.429533601083673e-06 0.014915833642485592 4.041911033301806e-05 0.019061886539182244 7.86365283913269e-05']
['59866.4242438408 0.034037164028158096 6.752336521643556e-05 0.01490715721664805 4.0414066277578237e-05 0.000527232835217235 1.4293552041155668e-06 0.014907157216648051 4.0414066277578237e-05 0.019130006811510045 7.869372022747828e-05']
['59866.42427537876 0.03413636437605716 6.756033271043692e-05 0.014970346963818201 4.045430560534563e-05 0.0005294677153538698 1.430778379209095e-06 0.014970346963818203 4.045430560534563e-05 0.01916601741223896 7.874610719239162e-05']
['59866.42430691673 0.03398641404567552 6.747398604563625e-05 0.014976656681021876 4.0442909087087926e-05 0.0005296908759499757 1.430375309828039e-06 0.014976656681021876 4.0442909087087926e-05 0.019009757364653643 7.866617880838738e-05']
['59866.424338454686 0.03409908129735342 6.753706777251034e-05 0.014875677864623037 4.039924089517634e-05 0.0005261194808883215 1.4288308634727916e-06 0.014875677864623037 4.039924089517634e-05 0.019223403432730386 7.869786647816536e-05']
['59866.42436999265 0.03403171459068656 6.748667779930423e-05 0.014869723652696839 4.039140623752597e-05 0.0005259088937193723 1.4285537691411272e-06 0.014869723652696839 4.039140623752597e-05 0.01916199093798972 7.865060316508675e-05']
['59866.42440153061 0.03392310058986874 6.743698348405977e-05 0.014931823060584921 4.0417350789108464e-05 0.0005281052109923652 1.4294713699479398e-06 0.014931823060584921 4.0417350789108464e-05 0.01899127752928382 7.862130109734381e-05']
['59866.424433068576 0.034001908199425654 6.748606935583821e-05 0.014915978773467689 4.042527790956784e-05 0.0005275448339669265 1.4297517344825164e-06 0.014915978773467689 4.042527790956784e-05 0.019085929425957965 7.866748153568155e-05']
['59866.42446460654 0.034128629927933724 6.757946604872728e-05 0.01490494345301524 4.041028610792594e-05 0.000527154539345013 1.429221507963147e-06 0.01490494345301524 4.041028610792594e-05 0.019223686474918483 7.87399228775055e-05']
['59866.4244961445 0.03408709895967801 6.753959553614077e-05 0.01491445974549737 4.041119662159729e-05 0.000527491109342444 1.4292537107968245e-06 0.014914459745497372 4.041119662159729e-05 0.019172639214180637 7.870617369415745e-05']
['59866.424527682466 0.03413523928141055 6.757699131098322e-05 0.015017610180396716 4.045946658337994e-05 0.0005311393096971794 1.4309609114680612e-06 0.015017610180396714 4.045946658337994e-05 0.01911762910101384 7.876305092399823e-05']
['59866.42455922043 0.03413484073420629 6.758414411036415e-05 0.014950238792709328 4.041922567872741e-05 0.0005287565342808665 1.4295376806036301e-06 0.01495023879270933 4.041922567872741e-05 0.019184601941496963 7.874852595190825e-05']
['59866.42459075839 0.0340038268615902 6.750011295167293e-05 0.014908864204822335 4.0408686442543104e-05 0.0005272932075740654 1.4291649313735978e-06 0.014908864204822337 4.0408686442543104e-05 0.019094962656767866 7.867100602191617e-05']
['59866.424622296356 0.034080999534030966 6.752525222931706e-05 0.014914263894969748 4.042082430079299e-05 0.0005274841825469821 1.4295942202933796e-06 0.014914263894969748 4.042082430079299e-05 0.019166735639061218 7.869881019296586e-05']
['59866.424653834314 0.03398330995569426 6.747946354130931e-05 0.01491627606012965 4.0414900044569334e-05 0.0005275553483317634 1.4293846925906824e-06 0.014916276060129649 4.0414900044569334e-05 0.019067033895564613 7.865648190349873e-05']
['59866.42468537228 0.03405821568083821 6.752608007408356e-05 0.014917846681975919 4.041745366397533e-05 0.0005276108977163327 1.4294750084020692e-06 0.014917846681975919 4.041745366397533e-05 0.01914036899886229 7.86977893644487e-05']
['59866.424716910245 0.03410844672238875 6.757194638051828e-05 0.015005858209464281 4.046827853238147e-05 0.0005307236687494085 1.4312725704106985e-06 0.015005858209464281 4.046827853238147e-05 0.019102588512924464 7.876324971092829e-05']
['59866.424748448204 0.034058779858773154 6.75088633747297e-05 0.01489411902577215 4.03981644839095e-05 0.000526771703544596 1.4287927932119209e-06 0.01489411902577215 4.03981644839095e-05 0.019164660833001 7.867311057672074e-05']
['59866.42477998617 0.033997325702236625 6.751640090626792e-05 0.014934840950501136 4.042877876043726e-05 0.0005282119470141148 1.4298755517538265e-06 0.014934840950501137 4.042877876043726e-05 0.019062484751735487 7.869530191438545e-05']
['59866.424811524135 0.03402259561825657 6.748473763440433e-05 0.014963783663067352 4.043775608918568e-05 0.0005292355860744262 1.430193059808509e-06 0.014963783663067352 4.043775608918568e-05 0.019058811955189214 7.867275215163673e-05']
['59866.424843062094 0.03405719712015889 6.751574540170444e-05 0.014928060686260394 4.042352028246717e-05 0.0005279721442209184 1.429689571140031e-06 0.014928060686260394 4.042352028246717e-05 0.01912913643389849 7.869203815618711e-05']
['59866.42487460006 0.03408936151451 6.754646280940669e-05 0.014983444290582838 4.044583118766622e-05 0.0005299309385307324 1.4304786579949828e-06 0.014983444290582838 4.044583118766622e-05 0.019105917223927165 7.872985392164623e-05']
['59866.42490613802 0.03413274487517216 6.756175025866855e-05 0.014992798000526067 4.0457228569256115e-05 0.0005302617583471129 1.4308817579101688e-06 0.014992798000526065 4.0457228569256115e-05 0.01913994687464609 7.874882501675649e-05']
['59866.42493767598 0.034013655420599004 6.750722402119141e-05 0.014896078302925738 4.041283178981992e-05 0.0005268409987987917 1.429311543042473e-06 0.014896078302925737 4.041283178981992e-05 0.019117577117673267 7.867923657687334e-05']
['59866.42496921395 0.034101163609118926 6.755785000176355e-05 0.014886954667971885 4.04113746952062e-05 0.000526518316220598 1.4292600088624005e-06 0.014886954667971885 4.04113746952062e-05 0.01921420894114704 7.872193024575257e-05']
['59866.42500075191 0.034051615845071756 6.751324465780218e-05 0.014995544527198671 4.044305140923542e-05 0.0005303588968573971 1.4303803434443247e-06 0.014995544527198671 4.044305140923542e-05 0.019056071317873083 7.869992764618221e-05']
['59866.42503228987 0.034033378395806786 6.74956847685773e-05 0.014986831609564445 4.043967422389658e-05 0.0005300507404328995 1.430260899946455e-06 0.014986831609564445 4.043967422389658e-05 0.01904654678624234 7.868312852012204e-05']
['59866.42506382784 0.03396821100661344 6.747163358054327e-05 0.014918677517539478 4.042948366554919e-05 0.0005276402825134075 1.4299004826722652e-06 0.014918677517539477 4.042948366554919e-05 0.019049533489073962 7.865725959814519e-05']
['59866.4250953658 0.03401540414961623 6.751214931728929e-05 0.014777910126865666 4.0342959299527985e-05 0.0005226616545018775 1.4268403092166726e-06 0.014777910126865666 4.0342959299527985e-05 0.019237494022750563 7.864759799563707e-05']
['59866.42512690376 0.03403108332189006 6.75094653981963e-05 0.01497405869259745 4.045689002658328e-05 0.0005295989909055662 1.4308697844124288e-06 0.01497405869259745 4.045689002658328e-05 0.01905702462929261 7.870379831350782e-05']
['59866.42515844172 0.03403779073701209 6.75319351743332e-05 0.014921424285435993 4.0423672175301885e-05 0.0005277374295552424 1.4296949432501344e-06 0.014921424285435995 4.0423672175301885e-05 0.01911636645157609 7.870600701678758e-05']
['59866.42518997969 0.03408457160298456 6.755699223538861e-05 0.0149163366534186 4.0429152489492545e-05 0.0005275574913809755 1.4298887697152766e-06 0.0149163366534186 4.0429152489492545e-05 0.01916823494956596 7.87303218011396e-05']
['59866.42522151765 0.034065744291329414 6.754533348287282e-05 0.014950041284143767 4.0438790756282226e-05 0.0005287495488443082 1.430229653671369e-06 0.014950041284143767 4.0438790756282226e-05 0.019115703007185646 7.872526832690299e-05']
['59866.42525305561 0.0342076245243941 6.76271158636062e-05 0.014995108771977085 4.045137574714805e-05 0.0005303434851690653 1.4306747566724942e-06 0.014995108771977085 4.045137574714805e-05 0.01921251575241701 7.880190733647617e-05']
['59866.42528459358 0.034053244359889476 6.751355106420778e-05 0.01493227523191578 4.043525804261863e-05 0.0005281212032817943 1.4301047094842383e-06 0.01493227523191578 4.043525804261863e-05 0.019120969127973696 7.869618586864642e-05']
['59866.42531613154 0.034165055121094405 6.759701904254708e-05 0.014963884660779383 4.045730822080468e-05 0.000529239158137784 1.4308845750074308e-06 0.014963884660779383 4.045730822080468e-05 0.019201170460315022 7.87791264987856e-05']
['59866.4253476695 0.03411071095848848 6.755324566744556e-05 0.014989983766553064 4.046201245643662e-05 0.0005301622251809307 1.4310509533083846e-06 0.014989983766553066 4.046201245643662e-05 0.019120727191935413 7.874398676871196e-05']
['59866.42537920747 0.03409825352622092 6.754486939272956e-05 0.014931759125977644 4.041913262376912e-05 0.0005281029497681913 1.4295343894577209e-06 0.014931759125977644 4.041913262376912e-05 0.01916649440024328 7.871477411095538e-05']
['59866.425410745425 0.03404038695094193 6.751014143147056e-05 0.015015254160498167 4.047160295190574e-05 0.0005310559825387624 1.4313901476996315e-06 0.015015254160498167 4.047160295190574e-05 0.01902513279044376 7.871194217902302e-05']
['59866.42544228339 0.034038672610663546 6.750443813576211e-05 0.014970135733988265 4.045092094443495e-05 0.0005294602446268558 1.430658671316956e-06 0.014970135733988265 4.045092094443495e-05 0.01906853687667528 7.869641779190371e-05']
['59866.42547382136 0.03413454603698509 6.759896569606088e-05 0.014979800925184335 4.043943925191339e-05 0.0005298020808390298 1.4302525895125409e-06 0.014979800925184335 4.043943925191339e-05 0.019154745111800757 7.87716218582962e-05']
['59866.425505359315 0.03416513048576756 6.761703342728965e-05 0.014957677204600492 4.043479916681055e-05 0.0005290196142855848 1.4300884800724334e-06 0.014957677204600492 4.043479916681055e-05 0.019207453281167068 7.878474594213977e-05']
['59866.42553689728 0.03402589721780648 6.752426420590177e-05 0.01493402400970187 4.043451593736343e-05 0.0005281830536438 1.4300784628798693e-06 0.014934024009701872 4.043451593736343e-05 0.01909187320810461 7.870499562059147e-05']
['59866.42556843525 0.03406029081481356 6.751081479978111e-05 0.015035605614004058 4.0477094665970455e-05 0.000531775767966444 1.431584377352842e-06 0.015035605614004058 4.0477094665970455e-05 0.0190246852008095 7.871534353306398e-05']
['59866.425599973205 0.03422901364902445 6.7671207843918e-05 0.015018132900409032 4.04548317862921e-05 0.0005311577971358046 1.4307969890532262e-06 0.015018132900409032 4.04548317862921e-05 0.019210880748615416 7.884152323434612e-05']
['59866.42563151117 0.03414030220158324 6.759439653736926e-05 0.014991847390900197 4.044693842410112e-05 0.0005302281374091334 1.4305178184731576e-06 0.014991847390900197 4.044693842410112e-05 0.019148454810683044 7.877155115353604e-05']
['59866.42566304913 0.0341708047400549 6.760566630279461e-05 0.014976887449478827 4.0430892505897445e-05 0.000529699037714561 1.4299503102068101e-06 0.014976887449478827 4.0430892505897445e-05 0.01919391729057607 7.877298512223751e-05']
['59866.425694587095 0.03406591769532215 6.750959974016845e-05 0.01495875511284147 4.044429818985743e-05 0.000529057737491085 1.4304244392885345e-06 0.01495875511284147 4.044429818985743e-05 0.01910716258248068 7.869744159213727e-05']
['59866.42572612506 0.03417512882377876 6.762513750751605e-05 0.014968630511549804 4.044430670290942e-05 0.0005294070082731816 1.4304247403761579e-06 0.014968630511549803 4.044430670290942e-05 0.019206498312228957 7.879658093844845e-05']
['59866.42575766302 0.034189335756976906 6.76367000008738e-05 0.014850564156179568 4.0370132413463564e-05 0.0005252312651465111 1.4278013615282384e-06 0.014850564156179568 4.0370132413463564e-05 0.01933877160079734 7.876846309335217e-05']
['59866.425789200985 0.03421868820767876 6.765384201603213e-05 0.014893577178213583 4.0401241703887436e-05 0.0005267525396074076 1.4289016276053586e-06 0.014893577178213584 4.0401241703887436e-05 0.019325111029465176 7.879912861666788e-05']
['59866.42582073895 0.034071787386965445 6.753930779404916e-05 0.015000392611381958 4.0461509153369745e-05 0.0005305303627601295 1.4310331526037254e-06 0.015000392611381958 4.0461509153369745e-05 0.019071394775583485 7.873177135227895e-05']
['59866.42585227691 0.03405116410312867 6.751040185527166e-05 0.01498349378014566 4.045318632004775e-05 0.0005299326888659668 1.4307387925895642e-06 0.01498349378014566 4.045318632004775e-05 0.019067670322983007 7.870269780703051e-05']
['59866.425883814874 0.034205511030013756 6.7642449299406e-05 0.014989821960983219 4.0470370204883524e-05 0.0005301565024795394 1.4313465481924832e-06 0.014989821960983219 4.0470370204883524e-05 0.01921568906903054 7.88248172325381e-05']
['59866.42591535283 0.03423761808420387 6.766682184113109e-05 0.014958410722243484 4.045001662768722e-05 0.000529045557165302 1.4306266876546176e-06 0.014958410722243484 4.045001662768722e-05 0.019279207361960385 7.883528793160807e-05']
['59866.4259468908 0.034113972880674755 6.754197388565139e-05 0.01492717714771582 4.0429067292449616e-05 0.0005279408954371893 1.4298857564862724e-06 0.01492717714771582 4.0429067292449616e-05 0.019186795732958936 7.871739146152795e-05']
['59866.425978428764 0.034071644074725974 6.75109525270688e-05 0.01488602224927828 4.039633928400881e-05 0.0005264853386552383 1.4287282399705151e-06 0.014886022249278279 4.039633928400881e-05 0.019185621825447696 7.867396607938925e-05']
['59866.42600996672 0.03412767516332065 6.758278447759724e-05 0.014950504650640543 4.042924835795792e-05 0.000528765937081736 1.4298921603686436e-06 0.014950504650640543 4.042924835795792e-05 0.019177170512680107 7.87525039635871e-05']
['59866.42604150469 0.03423044273277515 6.766530621422684e-05 0.01493596118321997 4.043878735382846e-05 0.0005282515671418071 1.4302295333341835e-06 0.01493596118321997 4.043878735382846e-05 0.01929448154955518 7.882822583131782e-05']
['59866.426073042654 0.03412562794114794 6.760335516499551e-05 0.014939621470128584 4.0434563476462056e-05 0.000528381023309505 1.4300801442315441e-06 0.014939621470128584 4.0434563476462056e-05 0.01918600647101936 7.877288590052141e-05']
['59866.42610458061 0.03412161912131621 6.75798061530797e-05 0.014983271266829011 4.044232269105539e-05 0.0005299248190672449 1.4303545703108863e-06 0.014983271266829011 4.044232269105539e-05 0.019138347854487203 7.875666107914481e-05']
['59866.42613611858 0.034236880912602435 6.76652435254743e-05 0.015038170701656093 4.0484069456120645e-05 0.000531866489384063 1.4318310600927154e-06 0.015038170701656094 4.0484069456120645e-05 0.01919871021094634 7.885141128153473e-05']
['59866.42616765654 0.034163519352266004 6.760286292733882e-05 0.015042462135161926 4.046611186161617e-05 0.0005320182677963749 1.431195940107954e-06 0.015042462135161928 4.046611186161617e-05 0.019121057217104075 7.878866216131224e-05']
['59866.4261991945 0.03403367756092225 6.750743163884888e-05 0.014894402214070807 4.038981204732657e-05 0.000526781719281831 1.4284973861965796e-06 0.014894402214070807 4.038981204732657e-05 0.019139275346851444 7.866759335134272e-05']
['59866.42623073247 0.03426656107341688 6.76805270979944e-05 0.015050009921873584 4.049177519004488e-05 0.0005322852161440556 1.432103594680314e-06 0.015050009921873582 4.049177519004488e-05 0.019216551151543297 7.886848297199262e-05']
['59866.42626227043 0.03403106886090549 6.751043063398268e-05 0.015015996750487348 4.047859918447122e-05 0.0005310822462870887 1.431637588809813e-06 0.015015996750487348 4.047859918447122e-05 0.01901507211041814 7.87157877196364e-05']
['59866.42629380839 0.03427320295356902 6.768108708929277e-05 0.01499537406324289 4.046567225896966e-05 0.0005303528679282458 1.431180392344801e-06 0.014995374063242892 4.046567225896966e-05 0.019277828890326126 7.885556531379875e-05']
['59866.42632534636 0.03413753412077898 6.757960193682475e-05 0.014942928537665358 4.044003883252854e-05 0.0005284979868974197 1.430273795338915e-06 0.014942928537665358 4.044003883252854e-05 0.019194605583113623 7.875531308245879e-05']
['59866.426356884316 0.034119166595660486 6.758514749435978e-05 0.014987387120856415 4.04616072786979e-05 0.0005300703876258018 1.431036623077285e-06 0.014987387120856416 4.04616072786979e-05 0.01913177947480407 7.877114843272215e-05']
['59866.42638842228 0.03414549929055894 6.758104030124261e-05 0.014919593778917906 4.041763979071059e-05 0.0005276726886306389 1.4294815912887265e-06 0.014919593778917906 4.041763979071059e-05 0.019225905511641037 7.874504819002786e-05']
['59866.42641996024 0.03428566687072999 6.7711330197948e-05 0.01506856651236397 4.0493313733256225e-05 0.0005329415212781617 1.4321580095152574e-06 0.015068566512363971 4.0493313733256225e-05 0.019217100358366018 7.889570770501689e-05']
['59866.426451498206 0.03417344257007804 6.761394887077394e-05 0.01505060086065525 4.049660573220447e-05 0.0005323061163280927 1.4322744401608724e-06 0.01505060086065525 4.049660573220447e-05 0.01912284170942279 7.881383861815924e-05']
['59866.42648303617 0.03407212941200419 6.75488010530386e-05 0.014999601441283933 4.0453992454915145e-05 0.0005305023808419235 1.4307673037782185e-06 0.014999601441283933 4.0453992454915145e-05 0.019072527970720253 7.873605291888412e-05']
['59866.42651457413 0.03413744245440957 6.758459694987942e-05 0.014903447728983782 4.041007807671639e-05 0.0005271016389287668 1.4292141503641878e-06 0.01490344772898378 4.041007807671639e-05 0.01923399472542579 7.874421981989513e-05']
['59866.426546112096 0.03417172195161357 6.762052080249237e-05 0.014922525846989958 4.0432474552241085e-05 0.0005277763893255609 1.4300062636503193e-06 0.014922525846989958 4.0432474552241085e-05 0.01924919610462361 7.878654600893433e-05']
['59866.426577650054 0.034138793568965764 6.757830855424637e-05 0.014960715365719803 4.043186528502066e-05 0.0005291270672544843 1.4299847152303648e-06 0.014960715365719803 4.043186528502066e-05 0.019178078203245963 7.875000646018378e-05']
['59866.42660918802 0.034113087347081475 6.759533273525465e-05 0.014933279912893102 4.04304294826404e-05 0.0005281567366026323 1.4299339341090046e-06 0.0149332799128931 4.04304294826404e-05 0.019179807434188373 7.876387900389713e-05']
['59866.426640725986 0.03413268355648951 6.75978235531336e-05 0.014914992294110016 4.041964004077988e-05 0.0005275099443966971 1.4295523356633812e-06 0.014914992294110016 4.041964004077988e-05 0.019217691262379495 7.876047898627077e-05']
['59866.426672263944 0.03422112838424628 6.762882398975118e-05 0.015068435902574784 4.048415732134852e-05 0.0005329369019018139 1.4318341676894583e-06 0.015068435902574786 4.048415732134852e-05 0.019152692481671493 7.882020571056918e-05']
['59866.42670380191 0.034157378431771857 6.760484419097441e-05 0.014987898200490018 4.0450607196236366e-05 0.0005300884633702465 1.430647574744358e-06 0.014987898200490018 4.0450607196236366e-05 0.019169480231281837 7.878240019592025e-05']
['59866.426735339875 0.034218395275266614 6.76315866036857e-05 0.01494697019220124 4.043398016844131e-05 0.0005286409311857876 1.430059513930467e-06 0.014946970192201238 4.043398016844131e-05 0.019271425083065376 7.879681629859004e-05']
['59866.426766877834 0.03406688330921459 6.753211994667705e-05 0.014992820161490329 4.044709291879267e-05 0.000530262542130892 1.4305232826051223e-06 0.014992820161490327 4.044709291879267e-05 0.019074063147724266 7.871819707077788e-05']
['59866.4267984158 0.034044919711064756 6.752557441815046e-05 0.014926608055245257 4.0418413307491914e-05 0.0005279207679083523 1.4295089488485736e-06 0.014926608055245257 4.0418413307491914e-05 0.0191183116558195 7.869784834921737e-05']
['59866.42682995376 0.0343003406533302 6.77046499882254e-05 0.015020588439641854 4.048225365356205e-05 0.0005312446440706623 1.431766839214298e-06 0.015020588439641854 4.048225365356205e-05 0.01927975221368835 7.888429812642974e-05']
['59866.426861491724 0.03418570572088553 6.761790000525697e-05 0.015043424773103503 4.0469122140752666e-05 0.0005320523141489992 1.4313024069534338e-06 0.015043424773103503 4.0469122140752666e-05 0.019142280947782024 7.880311064903522e-05']
['59866.42689302969 0.034227347403310335 6.76756626293737e-05 0.01495560019301166 4.0447165152464e-05 0.0005289461550275355 1.4305258373486444e-06 0.01495560019301166 4.0447165152464e-05 0.019271747210298673 7.884141349059837e-05']
['59866.42692456765 0.03428110342359795 6.770348016754104e-05 0.015003238922768686 4.0456665227232505e-05 0.0005306310304327465 1.430861833761789e-06 0.015003238922768686 4.0456665227232505e-05 0.019277864500829262 7.887016538657052e-05']
['59866.42695610561 0.03421642146058702 6.763443327029762e-05 0.015095900416811154 4.052486344259382e-05 0.0005339082603907774 1.4332738522250775e-06 0.015095900416811154 4.052486344259382e-05 0.019120521043775863 7.884593281099043e-05']
['59866.42698764358 0.03413425438010894 6.757126610697465e-05 0.01493765302527018 4.043638752311582e-05 0.0005283114038140786 1.4301446566851834e-06 0.014937653025270179 4.043638752311582e-05 0.019196601354838763 7.874628524076027e-05']
['59866.42701918154 0.0340548851860634 6.753872945999985e-05 0.014887854452889572 4.039977883755804e-05 0.0005265501396022357 1.4288498892926018e-06 0.014887854452889572 4.039977883755804e-05 0.01916703073317383 7.869956865952097e-05']
['59866.4270507195 0.03420944188169669 6.765355726087118e-05 0.015027141277614873 4.047863071511804e-05 0.0005314764033050371 1.4316387039783242e-06 0.015027141277614875 4.047863071511804e-05 0.01918230060408181 7.883859051645249e-05']
['59866.42708225746 0.034124733148885374 6.75638326854698e-05 0.014942452719279912 4.043610064597586e-05 0.000528481158264518 1.4301345104818757e-06 0.014942452719279912 4.043610064597586e-05 0.019182280429605462 7.873975947767206e-05']
['59866.42711379543 0.03400646134117945 6.750964083021797e-05 0.0149708142896542 4.046768794711056e-05 0.0005294842436242773 1.4312516827295465e-06 0.0149708142896542 4.046768794711056e-05 0.019035647051525245 7.870949988921128e-05']
['59866.42714533339 0.03420882949705499 6.762665651176954e-05 0.01500341304804007 4.04667212717768e-05 0.0005306371888544483 1.4312174935833838e-06 0.015003413048040069 4.04667212717768e-05 0.019205416449014922 7.88093915815148e-05']
['59866.42717687135 0.034236331348423354 6.765215158756589e-05 0.015002596856526317 4.046334998666094e-05 0.0005306083219846875 1.4310982587632146e-06 0.015002596856526317 4.046334998666094e-05 0.01923373449189704 7.882953955574019e-05']
['59866.42720840932 0.03423868723162919 6.767003175896366e-05 0.015049340079619541 4.04881403102251e-05 0.0005322615253205395 1.4319750371045664e-06 0.01504934007961954 4.04881403102251e-05 0.01918934715200965 7.885761031149514e-05']
['59866.42723994728 0.034239872713001565 6.764760790851549e-05 0.015117387025333108 4.052533953849145e-05 0.000534668193714455 1.4332906906729651e-06 0.015117387025333107 4.052533953849145e-05 0.01912248568766846 7.885747903943078e-05']
['59866.42727148524 0.03422264817194476 6.761237083484566e-05 0.015047999069801948 4.049828851698415e-05 0.0005322140968002718 1.432333956497727e-06 0.015047999069801948 4.049828851698415e-05 0.01917464910214281 7.881334952096364e-05']
['59866.42730302321 0.034221723879993705 6.764283703560787e-05 0.015016550306315362 4.0465764102756606e-05 0.0005311018243196012 1.4311836406542865e-06 0.015016550306315364 4.0465764102756606e-05 0.01920517357367834 7.882278519974887e-05']
['59866.427334561165 0.03425469036753169 6.768913563112865e-05 0.015069267462415187 4.0501299097331094e-05 0.0005329663123149421 1.4324404339963471e-06 0.015069267462415189 4.0501299097331094e-05 0.019185422905116503 7.888076008166252e-05']
['59866.42736609913 0.03414809204604189 6.758064737157768e-05 0.014943754343235879 4.0423246083902105e-05 0.0005285271937948823 1.4296798733495823e-06 0.014943754343235879 4.0423246083902105e-05 0.01920433770280601 7.874758868131288e-05']
['59866.4273976371 0.03421111078597155 6.763524281360693e-05 0.015036481018030916 4.047961671981826e-05 0.0005318067290504611 1.4316735767609802e-06 0.015036481018030914 4.047961671981826e-05 0.019174629767940633 7.882338130427392e-05']
['59866.427429175055 0.03435549942364955 6.77081944734319e-05 0.01501901039936291 4.0465985331475076e-05 0.0005311888323127085 1.4311914650196416e-06 0.01501901039936291 4.0465985331475076e-05 0.01933648902428664 7.887899319653637e-05']
['59866.42746071302 0.03415350415792231 6.761750358235489e-05 0.015038851065839132 4.049027460784575e-05 0.0005318905523446926 1.4320505224415345e-06 0.015038851065839132 4.049027460784575e-05 0.019114653092083177 7.881363542261285e-05']
['59866.42749225099 0.034094431045211204 6.755354387808777e-05 0.014964766357813004 4.044889930236094e-05 0.0005292703417913864 1.4305871703549025e-06 0.014964766357813006 4.044889930236094e-05 0.0191296646873982 7.873750532790118e-05']
['59866.427523788945 0.03409607933895209 6.756713826585317e-05 0.014958760342937381 4.043612471585526e-05 0.0005290579224678888 1.430135361779717e-06 0.014958760342937381 4.043612471585526e-05 0.01913731899601471 7.874260825927167e-05']
['59866.42755532691 0.034061312714443154 6.751605748209722e-05 0.014982331817553384 4.045388568705193e-05 0.0005298915928459115 1.4307635276375088e-06 0.014982331817553382 4.045388568705193e-05 0.019078980896889773 7.870790865667134e-05']
['59866.42758686487 0.034329237479667166 6.773567542273204e-05 0.014979345181507201 4.044255269742262e-05 0.0005297859622036968 1.4303627051220613e-06 0.014979345181507203 4.044255269742262e-05 0.019349892298159962 7.889056847087306e-05']
['59866.427618402835 0.03418224183741215 6.761144176139838e-05 0.015005563611398856 4.04776530791586e-05 0.0005307132494742224 1.4316041271793266e-06 0.015005563611398856 4.04776530791586e-05 0.019176678226013294 7.880195083785479e-05']
['59866.4276499408 0.03417990237847865 6.759451750074885e-05 0.015016756077217608 4.046186366061641e-05 0.0005311091019765426 1.4310456907327628e-06 0.015016756077217608 4.046186366061641e-05 0.019163146301261043 7.877931966607325e-05']
['59866.42768147876 0.03418488346804907 6.76148385273795e-05 0.014998504183349373 4.045625264914812e-05 0.0005304635732810052 1.430847241797002e-06 0.014998504183349373 4.045625264914812e-05 0.019186379284699698 7.879387519024119e-05']
['59866.427713016725 0.03419533798706026 6.764390033994389e-05 0.015060828638005027 4.0493057550626225e-05 0.0005326678499552173 1.432148948908169e-06 0.015060828638005029 4.0493057550626225e-05 0.01913450934905523 7.883771282196478e-05']
['59866.42774455469 0.03427630667155238 6.770757530912856e-05 0.014958686634254599 4.045324926705911e-05 0.0005290553155565081 1.4307410188846777e-06 0.014958686634254599 4.045324926705911e-05 0.019317620037297784 7.88719286597211e-05']
['59866.42777609265 0.0341381089078194 6.759959607676175e-05 0.014948007541713446 4.042297443956301e-05 0.0005286776199196946 1.4296702658963979e-06 0.014948007541713446 4.042297443956301e-05 0.01919010136610596 7.876371151921998e-05']
['59866.427807630615 0.03425269579065532 6.767207225714726e-05 0.015068774739505846 4.0496994781109964e-05 0.0005329488858068095 1.4322881999511866e-06 0.015068774739505846 4.0496994781109964e-05 0.019183921051149473 7.886390777711821e-05']
['59866.42783916857 0.03423580331308848 6.766822682216186e-05 0.015007990519997533 4.046040897900214e-05 0.0005307990838075361 1.4309942418950882e-06 0.015007990519997535 4.046040897900214e-05 0.019227812793090944 7.884182656435392e-05']
['59866.42787070654 0.0342609578366244 6.767978882291271e-05 0.015056866326207185 4.048950303696384e-05 0.0005325277118421733 1.4320232337038008e-06 0.015056866326207185 4.048950303696384e-05 0.01920409151041722 7.88666828977507e-05']
['59866.427902244504 0.03420809986124416 6.76120912414315e-05 0.015042216451252545 4.049234168178651e-05 0.0005320095785055712 1.4321236302271808e-06 0.015042216451252543 4.049234168178651e-05 0.019165883409991615 7.881005403445809e-05']
['59866.42793378246 0.03420402379230743 6.761750743140622e-05 0.014908806169714394 4.040906246139898e-05 0.0005272911550019984 1.4291782303201776e-06 0.014908806169714395 4.040906246139898e-05 0.019295217622593033 7.877194703855884e-05']
['59866.42796532043 0.034146229569354945 6.75948798430526e-05 0.014992188038750406 4.045857729579963e-05 0.0005302401853622922 1.4309294593537864e-06 0.014992188038750406 4.045857729579963e-05 0.01915404153060454 7.877794271112259e-05']
['59866.427996858394 0.0343437192783386 6.775564493687764e-05 0.015061126644921355 4.048253794688239e-05 0.0005326783897938415 1.43177689403368e-06 0.015061126644921354 4.048253794688239e-05 0.019282592633417243 7.892821611713397e-05']
['59866.42802839635 0.034172994186018074 6.760677031336312e-05 0.014977869634136368 4.044881329414754e-05 0.0005297337753908446 1.4305841284366113e-06 0.014977869634136368 4.044881329414754e-05 0.019195124551881708 7.878313200875326e-05']
['59866.42805993432 0.03432734344236255 6.770691831498778e-05 0.01504859193382983 4.048196324265215e-05 0.0005322350650759648 1.431756568029445e-06 0.01504859193382983 4.048196324265215e-05 0.019278751508532723 7.888609595924916e-05']
['59866.42809147228 0.034145378727135425 6.757856805958433e-05 0.015031529233856875 4.046625620906155e-05 0.0005316315955108116 1.4312010453544994e-06 0.015031529233856877 4.046625620906155e-05 0.01911384949327855 7.876789163460758e-05']
['59866.42812301024 0.034283762619630155 6.767760673754743e-05 0.015009492294268598 4.046944306204541e-05 0.0005308521982072356 1.4313137572223413e-06 0.015009492294268598 4.046944306204541e-05 0.019274270325361557 7.885451334878849e-05']
['59866.42815454821 0.03425674235850778 6.76633717884946e-05 0.015011475105254489 4.047252670029835e-05 0.0005309223258004849 1.431422818615822e-06 0.015011475105254489 4.047252670029835e-05 0.01924526725325329 7.884387927603771e-05']
['59866.42818608617 0.03425287691503743 6.766065117157369e-05 0.01505074729387702 4.0481490521277094e-05 0.0005323112953438877 1.4317398489308792e-06 0.01505074729387702 4.0481490521277094e-05 0.01920212962116041 7.884614633440004e-05']
['59866.42821762413 0.034164494181260274 6.761233482005211e-05 0.015010999476993242 4.048067027111912e-05 0.0005309055038918511 1.4317108385159427e-06 0.01501099947699324 4.048067027111912e-05 0.019153494704267034 7.88042669239293e-05']
['59866.4282491621 0.034269832553671685 6.770037040026208e-05 0.014961546615725444 4.04462994196583e-05 0.0005291564667094494 1.430495218314106e-06 0.014961546615725444 4.04462994196583e-05 0.019308285937946243 7.886217907893069e-05']
['59866.428280700056 0.0342078670359783 6.761301806070601e-05 0.015067195950634837 4.0492293103175504e-05 0.0005328930475728274 1.4321219121102764e-06 0.015067195950634837 4.0492293103175504e-05 0.019140671085343463 7.88108242060114e-05']
['59866.42831223802 0.034325429015430335 6.77341082665921e-05 0.015000348841405782 4.045224411091919e-05 0.0005305288147138923 1.4307054687584003e-06 0.015000348841405782 4.045224411091919e-05 0.019325080174024553 7.889419165109569e-05']
['59866.42834377598 0.034191898700294945 6.763487909548381e-05 0.014986390523235887 4.0447750907385236e-05 0.0005300351401952282 1.4305465541911235e-06 0.014986390523235886 4.0447750907385236e-05 0.019205508177059058 7.880670925578986e-05']
['59866.428375313946 0.03416747299812864 6.76071537369654e-05 0.01501643133236449 4.047625906865278e-05 0.0005310976164768499 1.4315548241431657e-06 0.015016431332364492 4.047625906865278e-05 0.019151041665764146 7.879755570197829e-05']
['59866.42840685191 0.03427775787734172 6.766556075439018e-05 0.015007772896176457 4.0480299616435434e-05 0.0005307913869393452 1.4316977292881455e-06 0.015007772896176459 4.0480299616435434e-05 0.01926998498116526 7.884974806074177e-05']
['59866.42843838987 0.03425175140048191 6.769782416699043e-05 0.015013256421290347 4.0480292094915806e-05 0.0005309853269676661 1.4316974632688057e-06 0.015013256421290347 4.0480292094915806e-05 0.019238494979191563 7.88774330530251e-05']
['59866.428469927836 0.034162144132793996 6.760502029305694e-05 0.014967243510366374 4.0444401517593324e-05 0.0005293579531410889 1.4304280937596291e-06 0.014967243510366374 4.0444401517593324e-05 0.019194900622427624 7.87793652103198e-05']
['59866.4285014658 0.03424430610918246 6.764671125157381e-05 0.015023199320698103 4.048085048314397e-05 0.0005313369850986461 1.4317172122125118e-06 0.015023199320698103 4.048085048314397e-05 0.019221106788484356 7.883385566488843e-05']
['59866.42853300376 0.03427130916841344 6.769730288470091e-05 0.014950370015887329 4.043885192564118e-05 0.0005287611753514058 1.4302318170948897e-06 0.014950370015887327 4.043885192564118e-05 0.019320939152526116 7.885572625324598e-05']
['59866.428564541726 0.034236198266206934 6.764091679086014e-05 0.015084525726973644 4.050258341557351e-05 0.0005335059630321603 1.432485857462299e-06 0.015084525726973642 4.050258341557351e-05 0.01915167253923329 7.884004621791869e-05']
['59866.428596079684 0.03432373679056226 6.772760596057429e-05 0.015036811437279007 4.048144063145756e-05 0.0005318184152408225 1.4317380844394594e-06 0.015036811437279007 4.048144063145756e-05 0.019286925353283253 7.890358448606147e-05']
['59866.42862761765 0.03418804472478504 6.763093237279639e-05 0.014994064153712058 4.0458435199479635e-05 0.0005303065393556156 1.4309244337245149e-06 0.014994064153712058 4.0458435199479635e-05 0.01919398057107298 7.880880656629849e-05']
['59866.428659155616 0.034215590778605205 6.76526020810627e-05 0.015042557658469 4.049023719134772e-05 0.0005320216462422641 1.4320491991036202e-06 0.015042557658469001 4.049023719134772e-05 0.019173033120136206 7.884373073460061e-05']
['59866.428690693574 0.0342788705707487 6.768751864262827e-05 0.015108635316627487 4.053734642097351e-05 0.0005343586653364551 1.4337153472725526e-06 0.015108635316627487 4.053734642097351e-05 0.019170235254121214 7.88978873915529e-05']
['59866.42872223154 0.03417920709322298 6.761453077932526e-05 0.01501417694229639 4.0467352408190436e-05 0.0005310178837384065 1.4312398154678274e-06 0.01501417694229639 4.0467352408190436e-05 0.01916503015092659 7.879931080559651e-05']
['59866.428753769505 0.034261035054353406 6.763772797579732e-05 0.015019923517369858 4.048298334729931e-05 0.0005312211272559156 1.4317926468510153e-06 0.015019923517369856 4.048298334729931e-05 0.01924111153698355 7.882724266664203e-05']
['59866.428785307464 0.03413248069612599 6.75821884686376e-05 0.01496948451534468 4.044540289950763e-05 0.0005294372124788202 1.4304635103999813e-06 0.01496948451534468 4.044540289950763e-05 0.019162996180781308 7.876028703549749e-05']
['59866.42881684543 0.03424065090205298 6.76688447583129e-05 0.015007691014176377 4.0479746822193236e-05 0.0005307884909559979 1.4316781781912213e-06 0.015007691014176377 4.0479746822193236e-05 0.0192329598878766 7.885228248892682e-05']
['59866.42884838339 0.034283604576656725 6.769761338912039e-05 0.015059307584202526 4.047555224135858e-05 0.000532614053681578 1.431529825241436e-06 0.015059307584202526 4.047555224135858e-05 0.019224296992454197 7.887481973244542e-05']
['59866.428879921354 0.03432093047839066 6.772346538762963e-05 0.015114095428533342 4.052893600107148e-05 0.0005345517772919333 1.4334178895167999e-06 0.015114095428533342 4.052893600107148e-05 0.019206835049857318 7.892440951624798e-05']
['59866.42891145932 0.03424747171967504 6.766265311204312e-05 0.014986852603381503 4.046567858936211e-05 0.0005300514829372903 1.4311806162366343e-06 0.014986852603381501 4.046567858936211e-05 0.019260619116293544 7.883974739849334e-05']
['59866.42894299728 0.03424769373137627 6.768811495846185e-05 0.015012672325218924 4.047601696029415e-05 0.0005309646687949978 1.4315462613116014e-06 0.015012672325218924 4.047601696029415e-05 0.019235021406157342 7.886690595934372e-05']
['59866.42897453524 0.03439428572820174 6.776656877386232e-05 0.015055403086752963 4.0489309499499256e-05 0.0005324759603328251 1.4320163887162093e-06 0.015055403086752961 4.0489309499499256e-05 0.019338882641448778 7.894106679750947e-05']
['59866.42900607321 0.03407297477089843 6.755087698262626e-05 0.01501261232175051 4.047499630552895e-05 0.0005309625466064198 1.4315101630335854e-06 0.01501261232175051 4.047499630552895e-05 0.019060362449147918 7.874862733441446e-05']
['59866.42903761117 0.03430181424884844 6.769529779492614e-05 0.01505843616798118 4.0486617496665615e-05 0.0005325832336373296 1.4319211785922556e-06 0.01505843616798118 4.0486617496665615e-05 0.019243378080867263 7.88785112680573e-05']
['59866.42906914913 0.03428206793750927 6.767702527164575e-05 0.014988019088079228 4.046386537678621e-05 0.000530092738894109 1.4311164869601163e-06 0.014988019088079228 4.046386537678621e-05 0.01929404884943004 7.885115186761482e-05']
['59866.42910068709 0.03429023145134589 6.769908484226862e-05 0.015077396220652774 4.0506501883965636e-05 0.0005332538083271 1.4326244449320672e-06 0.015077396220652774 4.0506501883965636e-05 0.019212835230693115 7.889196906755717e-05']
['59866.42913222506 0.03419030966734858 6.764754161019275e-05 0.014940567758937495 4.044860494289557e-05 0.0005284144914298452 1.430576759518467e-06 0.014940567758937496 4.044860494289557e-05 0.019249741908411083 7.881801524860415e-05']
['59866.42916376302 0.03421744274662262 6.764542140647797e-05 0.015004221035730316 4.0461649090771106e-05 0.0005306657655733061 1.4310381018768699e-06 0.015004221035730316 4.0461649090771106e-05 0.019213221710892302 7.882289061183107e-05']
['59866.42919530098 0.03428945092858056 6.769865260664521e-05 0.015043776621701527 4.04972121949324e-05 0.000532064758247576 1.4322958893921945e-06 0.015043776621701527 4.04972121949324e-05 0.019245674306879033 7.888682881391933e-05']
['59866.42922683895 0.03422218917433446 6.763347550519057e-05 0.015108460100275948 4.0529585107063634e-05 0.0005343524683256866 1.433440846945076e-06 0.015108460100275946 4.0529585107063634e-05 0.019113729074058512 7.884753818517054e-05']
['59866.42925837691 0.034368798437190914 6.773387451548766e-05 0.01503694134500976 4.049463112291808e-05 0.0005318230097869326 1.4322046026434047e-06 0.015036941345009762 4.049463112291808e-05 0.019331857092181153 7.891573294762607e-05']
['59866.42928991487 0.03429297524549838 6.769803497899125e-05 0.01495347225752377 4.04383621346958e-05 0.0005288708947049848 1.4302144942837702e-06 0.01495347225752377 4.04383621346958e-05 0.019339502987974613 7.885610358211673e-05']
['59866.42932145284 0.03430924237464259 6.771849364174702e-05 0.014998894808542232 4.046933616136924e-05 0.0005304773888210807 1.431309976384334e-06 0.01499889480854223 4.046933616136924e-05 0.01931034756610036 7.888955285999053e-05']
['59866.429352990795 0.034248932568665555 6.765231134445339e-05 0.015015240661241264 4.0469339545478724e-05 0.0005310555051002147 1.4313100960727237e-06 0.015015240661241262 4.0469339545478724e-05 0.019233691907424293 7.883275127441706e-05']
['59866.42938452876 0.034223629493488845 6.765861111772462e-05 0.015048489539434554 4.049758813806476e-05 0.0005322314436150419 1.432309185660603e-06 0.015048489539434553 4.049758813806476e-05 0.019175139954054295 7.885266199298419e-05']
['59866.42941606673 0.0342439604658886 6.763246901111938e-05 0.015081366451792953 4.05068595795572e-05 0.0005333942265295838 1.4326370958257382e-06 0.015081366451792954 4.05068595795572e-05 0.019162594014095646 7.883499563986789e-05']
['59866.429447604685 0.03413341240939307 6.758493169659388e-05 0.015030456285746093 4.048157108562279e-05 0.0005315936477340311 1.4317426983117357e-06 0.015030456285746093 4.048157108562279e-05 0.01910295612364698 7.87812197798028e-05']
['59866.42947914265 0.03426689817776898 6.770002977282356e-05 0.01492387767810867 4.041060269033813e-05 0.000527824200571065 1.4292327047755462e-06 0.01492387767810867 4.041060269033813e-05 0.01934302049966031 7.884358465365182e-05']
['59866.42951068062 0.034274517506882075 6.765764123295721e-05 0.014959479805079768 4.044440191618653e-05 0.0005290833682359618 1.43042810785698e-06 0.014959479805079766 4.044440191618653e-05 0.01931503770180231 7.882452704308213e-05']
['59866.429542218575 0.03423737429688759 6.764044898348945e-05 0.015003514044952258 4.047195661810761e-05 0.0005306407608895176 1.4314026560827942e-06 0.015003514044952258 4.047195661810761e-05 0.019233860251935332 7.882391522365546e-05']
['59866.42957375654 0.034218637272017155 6.764901440371893e-05 0.015025105212708726 4.0475856104158506e-05 0.0005314043922396438 1.431540572189576e-06 0.015025105212708726 4.0475856104158506e-05 0.01919353205930843 7.88332675788535e-05']
['59866.4296052945 0.03433538851049969 6.772909952059801e-05 0.015084909098773 4.0508643803270846e-05 0.0005335195220359181 1.4327001998309845e-06 0.015084909098773 4.0508643803270846e-05 0.019250479411726692 7.891882630051807e-05']
['59866.429636832465 0.03421342934520413 6.764764668127507e-05 0.015058351607698405 4.0491276511903986e-05 0.000532580242929109 1.4320859575489506e-06 0.015058351607698405 4.0491276511903986e-05 0.01915507773750573 7.88400125258621e-05']
['59866.42966837043 0.03435499219040257 6.774378064181934e-05 0.015106322749872872 4.0529953367499804e-05 0.0005342768750186269 1.4334538714936895e-06 0.015106322749872872 4.0529953367499804e-05 0.0192486694405297 7.894236464420511e-05']
['59866.42969990839 0.034212856337270725 6.763246066128447e-05 0.01506175859521171 4.0493275788493605e-05 0.0005327007404632856 1.4321566674938052e-06 0.015061758595211711 4.0493275788493605e-05 0.019151097742059014 7.882800973754947e-05']
['59866.429731446355 0.03416253013439856 6.75977302504204e-05 0.015019478751878812 4.047573407585597e-05 0.0005312053968944897 1.4315362563212324e-06 0.015019478751878812 4.047573407585597e-05 0.019143051382519746 7.878920093507745e-05']
['59866.42976298432 0.034175909275573076 6.759744719436967e-05 0.014990256976820394 4.046150415302019e-05 0.0005301718880174971 1.4310329757525367e-06 0.014990256976820392 4.046150415302019e-05 0.019185652298752683 7.878164878650652e-05']
['59866.42979452228 0.03426192753018507 6.76703558968212e-05 0.015061513915930356 4.0500342406749007e-05 0.0005326920867039301 1.4324065979885363e-06 0.015061513915930356 4.0500342406749007e-05 0.01920041361425471 7.886415410226851e-05']
['59866.429826060245 0.03414786053844191 6.761096201605693e-05 0.01500230666668155 4.046995257386265e-05 0.0005305980586184142 1.4313317775166252e-06 0.015002306666681548 4.046995257386265e-05 0.01914555387176036 7.879758401161412e-05']
['59866.4298575982 0.03433633361426255 6.774358800214118e-05 0.01506492847246147 4.051548579365094e-05 0.0005328128519373509 1.4329421857397798e-06 0.01506492847246147 4.051548579365094e-05 0.019271405141801076 7.893477246752141e-05']
['59866.42988913617 0.034350288404612135 6.771582776063575e-05 0.015107305770398812 4.052169754781067e-05 0.0005343116422577078 1.433161881601956e-06 0.015107305770398814 4.052169754781067e-05 0.01924298263421332 7.891413879314867e-05']
['59866.429920674134 0.03430006165725857 6.76967507046623e-05 0.015037798700988857 4.0482567687787345e-05 0.0005318533325518353 1.4317779459030213e-06 0.015037798700988855 4.0482567687787345e-05 0.01926226295626971 7.887767962209258e-05']
['59866.42995221209 0.034131275905113195 6.759111940875496e-05 0.015021259291769276 4.047698960311695e-05 0.0005312683706111429 1.4315806615145152e-06 0.015021259291769274 4.047698960311695e-05 0.01911001661334392 7.878417423733913e-05']
['59866.42998375006 0.03418773425562866 6.76342809430775e-05 0.015077331479397021 4.048745340696583e-05 0.0005332515185735722 1.4319507428714246e-06 0.01507733147939702 4.048745340696583e-05 0.01911040277623164 7.882658080919384e-05']
['59866.430015288024 0.03433518617164611 6.771983087079227e-05 0.015127124793447362 4.052985289449721e-05 0.0005350125968100253 1.433450317988132e-06 0.015127124793447362 4.052985289449721e-05 0.01920806137819875 7.89217616935804e-05']
['59866.43004682598 0.03431096148162388 6.771843480966641e-05 0.015023091054372162 4.0481485285612836e-05 0.0005313331559606585 1.4317396637571354e-06 0.01502309105437216 4.0481485285612836e-05 0.01928787042725172 7.889573539805766e-05']
['59866.43007836395 0.034336295279922005 6.773432819635472e-05 0.014944701488255887 4.0418663603607664e-05 0.0005285606921974954 1.4295178012628088e-06 0.014944701488255887 4.0418663603607664e-05 0.01939159379166612 7.887716769581102e-05']
['59866.43010990191 0.034257847686916594 6.771316181364417e-05 0.014953407107918669 4.0447538697152865e-05 0.0005288685905090532 1.4305390487894663e-06 0.01495340710791867 4.0447538697152865e-05 0.019304440578997925 7.887379583523566e-05']
['59866.43014143987 0.03421032076145803 6.764458925066033e-05 0.015017988005207481 4.047157174082546e-05 0.0005311526725163474 1.4313890438334746e-06 0.01501798800520748 4.047157174082546e-05 0.01919233275625055 7.882727049735601e-05']
['59866.43017297784 0.03420627788606078 6.764645233426428e-05 0.015038987623601464 4.049651591519885e-05 0.0005318953820875577 1.4322712635341126e-06 0.015038987623601464 4.049651591519885e-05 0.019167290262459315 7.884167879162546e-05']
['59866.4302045158 0.034187635205103706 6.762165897789182e-05 0.014995872459281195 4.046753933670797e-05 0.0005303704950822709 1.4312464267117317e-06 0.014995872459281195 4.046753933670797e-05 0.01919176274582251 7.880552330192538e-05']
['59866.43023605376 0.03423540913313796 6.764154197476261e-05 0.015008032331628616 4.0466239071160684e-05 0.0005308005625914839 1.4312004392252468e-06 0.015008032331628616 4.0466239071160684e-05 0.019227376801509342 7.88219176707082e-05']
['59866.43026759173 0.034317535004197895 6.770506405573163e-05 0.015043499467609835 4.045732764040682e-05 0.0005320549559267558 1.4308852618353582e-06 0.015043499467609836 4.045732764040682e-05 0.01927403553658806 7.88718648099178e-05']
['59866.430299129686 0.03427166679367466 6.767619552044289e-05 0.01497829242386825 4.047043772951617e-05 0.0005297487285187819 1.4313489363878312e-06 0.01497829242386825 4.047043772951617e-05 0.01929337436980641 7.885381265442947e-05']
['59866.43033066765 0.034253589500551955 6.767967710764997e-05 0.014994854813550196 4.047436090092959e-05 0.0005303345032270699 1.4314876901929518e-06 0.014994854813550196 4.047436090092959e-05 0.01925873468700176 7.885881424250847e-05']
['59866.43036220561 0.0342120610713315 6.764645610104599e-05 0.014986131976933574 4.045223604984665e-05 0.0005300259959903325 1.4307051836562803e-06 0.014986131976933574 4.045223604984665e-05 0.019225929094397923 7.881894711592675e-05']
['59866.430393743576 0.0342952882639032 6.768992406065786e-05 0.015017839192928786 4.047856733355801e-05 0.0005311474093586258 1.4316364623141953e-06 0.015017839192928784 4.047856733355801e-05 0.019277449070974416 7.886976754571436e-05']
['59866.43042528154 0.034334462343222814 6.775071261494076e-05 0.01513280321055738 4.052532736404731e-05 0.0005352134297326914 1.4332902600900842e-06 0.01513280321055738 4.052532736404731e-05 0.019201659132665434 7.894593857694957e-05']
['59866.4304568195 0.0341971544619688 6.760503703233868e-05 0.015062530062205074 4.050885672239949e-05 0.0005327280255267137 1.4327077303047183e-06 0.015062530062205075 4.050885672239949e-05 0.01913462439976372 7.881248952481943e-05']
['59866.430488357466 0.034267491165494594 6.769266340847547e-05 0.015007014639410541 4.0477606102651235e-05 0.0005307645690921388 1.4316024657252473e-06 0.01500701463941054 4.0477606102651235e-05 0.019260476526084057 7.887162528523513e-05']
['59866.43051989543 0.03440718064507578 6.778833966050516e-05 0.01507548751769932 4.050062054306352e-05 0.0005331863017693364 1.4324164350483826e-06 0.015075487517699318 4.050062054306352e-05 0.01933169312737646 7.896555741778333e-05']
['59866.43055143339 0.03428179281269011 6.768533107008168e-05 0.015041584038392408 4.049330727565806e-05 0.0005319872114760677 1.4321577811244421e-06 0.015041584038392406 4.049330727565806e-05 0.019240208774297704 7.887339206720746e-05']
['59866.430582971356 0.03423387277458934 6.768182989617193e-05 0.014992402413966977 4.0456373071930404e-05 0.0005302477673346019 1.4308515008816823e-06 0.014992402413966975 4.0456373071930404e-05 0.01924147036062237 7.885143131376607e-05']
['59866.430614509314 0.03421331540447857 6.761807621910885e-05 0.01501891915399826 4.0485373803348094e-05 0.0005311856051680822 1.4318771919391058e-06 0.015018919153998259 4.0485373803348094e-05 0.019194396250480313 7.881160906598747e-05']
['59866.43064604728 0.03426419082315541 6.766018489363191e-05 0.014962056593001781 4.0453044461728773e-05 0.0005291745034659813 1.4307337753778567e-06 0.014962056593001781 4.0453044461728773e-05 0.01930213423015363 7.883114502570072e-05']
['59866.430677585246 0.03422923541439916 6.765165178209148e-05 0.015009210340057758 4.048085441522472e-05 0.0005308422261169288 1.43171735128142e-06 0.015009210340057758 4.048085441522472e-05 0.0192200250743414 7.883809715506824e-05']
['59866.430709123204 0.03437639814841656 6.775517261781395e-05 0.015080725846768974 4.050788329065882e-05 0.0005333715697615536 1.4326733021995427e-06 0.015080725846768974 4.050788329065882e-05 0.019295672301647585 7.894081343107254e-05']
['59866.43074066117 0.03425532795876313 6.7668034688197e-05 0.015055436533059586 4.0500828902054066e-05 0.0005324771432539423 1.4324238042402234e-06 0.015055436533059584 4.0500828902054066e-05 0.01919989142570355 7.886241221466974e-05']
['59866.430772199135 0.03427993069404233 6.769090412050575e-05 0.015019001768049012 4.0487882772787446e-05 0.0005311885270424258 1.431965928580959e-06 0.015019001768049012 4.0487882772787446e-05 0.01926092892599332 7.887539002803398e-05']
['59866.430803737094 0.03416579924671646 6.76480786727938e-05 0.015059728123835032 4.04967564350819e-05 0.0005326289272285289 1.4322797701848458e-06 0.01505972812383503 4.04967564350819e-05 0.019106071122881433 7.884319774008946e-05']
['59866.43083527506 0.034190372182161144 6.761916819426025e-05 0.01500318570662124 4.046520496750728e-05 0.0005306291482965425 1.4311638652901116e-06 0.015003185706621241 4.046520496750728e-05 0.0191871864755399 7.880218728148372e-05']
['59866.43086681302 0.034327990225109975 6.771961357934469e-05 0.014997101682208702 4.046368511766023e-05 0.0005304139699500653 1.4311101115976858e-06 0.014997101682208703 4.046368511766023e-05 0.01933088854290127 7.88876154832742e-05']
['59866.43089835098 0.03429316519445841 6.770404377932554e-05 0.015077822258543741 4.05041928191952e-05 0.0005332688763351649 1.4325427784715928e-06 0.01507782225854374 4.05041928191952e-05 0.01921534293591467 7.889503900757877e-05']
['59866.43092988895 0.03428437933607878 6.768462008448003e-05 0.015060561551104936 4.0504216396799545e-05 0.0005326584036884651 1.4325436123587657e-06 0.015060561551104936 4.0504216396799545e-05 0.019223817784973844 7.887838323583441e-05']
['59866.43096142691 0.03426816365676642 6.767681602231537e-05 0.014956962122249043 4.0438218265063366e-05 0.000528994323420929 1.4302094059364006e-06 0.014956962122249043 4.0438218265063366e-05 0.019311201534517382 7.883781404485558e-05']
['59866.43099296487 0.034426916892612 6.77718210183725e-05 0.01508296722393226 4.052233047180604e-05 0.0005334508422626359 1.4331842667091703e-06 0.01508296722393226 4.052233047180604e-05 0.01934394966867974 7.896251636702427e-05']
['59866.43102450284 0.03431981472603241 6.76811031499455e-05 0.015133406540389477 4.052119278798465e-05 0.0005352347681604897 1.4331440293749817e-06 0.015133406540389477 4.052119278798465e-05 0.019186408185642934 7.888408450729832e-05']
['59866.4310560408 0.03423039299604221 6.766004356973538e-05 0.015085827080784226 4.0518078348410896e-05 0.000533551989008086 1.4330338786076207e-06 0.015085827080784224 4.0518078348410896e-05 0.01914456591525799 7.886441636699314e-05']
['59866.43108757876 0.03433169073459454 6.772506951776576e-05 0.015044182259041996 4.048081851345858e-05 0.0005320791047337623 1.4317160815161876e-06 0.015044182259041996 4.048081851345858e-05 0.019287508475552547 7.890108813385134e-05']
['59866.43111911672 0.034270981969625386 6.767511920942222e-05 0.014963272032309268 4.044613464136915e-05 0.0005292174908379402 1.4304893904742766e-06 0.01496327203230927 4.044613464136915e-05 0.019307709937316116 7.88404183616327e-05']
['59866.43115065469 0.03425370218736609 6.76653271752341e-05 0.014997932880522879 4.046818877412405e-05 0.0005304433675768188 1.4312693958617313e-06 0.014997932880522879 4.046818877412405e-05 0.019255769306843213 7.884333075403153e-05']
['59866.43118219265 0.03415383746332699 6.759452781242594e-05 0.014977134736476607 4.045139362935869e-05 0.0005297077837030185 1.43067538912632e-06 0.014977134736476607 4.045139362935869e-05 0.019176702726850382 7.877395151153803e-05']
['59866.43121373061 0.03427602055980461 6.769456750835238e-05 0.014965513144754718 4.0436318988515815e-05 0.0005292967539765442 1.430142232769547e-06 0.01496551314475472 4.0436318988515815e-05 0.019310507415049888 7.885207900546365e-05']
['59866.43124526858 0.0344428109972967 6.782609360824186e-05 0.015021682068922734 4.047804692322423e-05 0.0005312833232942095 1.4316180565637382e-06 0.015021682068922735 4.047804692322423e-05 0.019421128928373964 7.898639918918149e-05']
['59866.43127680654 0.03428223482230543 6.769114916747695e-05 0.014982144857150043 4.0451024651536735e-05 0.0005298849804742773 1.4306623392053743e-06 0.014982144857150045 4.0451024651536735e-05 0.019300089965155382 7.88566869134942e-05']
['59866.4313083445 0.034254342873468374 6.769388698882766e-05 0.01500260331480268 4.046673691749668e-05 0.0005306085503994891 1.4312180469375297e-06 0.01500260331480268 4.046673691749668e-05 0.019251739558665694 7.886709790784786e-05']
['59866.43133988247 0.0342208606430307 6.761292349799184e-05 0.01503761932038248 4.049611827684651e-05 0.0005318469882606799 1.4322571999542598e-06 0.01503761932038248 4.049611827684651e-05 0.019183241322648217 7.881270848941583e-05']
['59866.431371420425 0.034238381981786456 6.765268908377152e-05 0.01499911743836743 4.0488125961022065e-05 0.0005304852627404497 1.4319745296053239e-06 0.01499911743836743 4.0488125961022065e-05 0.019239264543419024 7.884272118655626e-05']
['59866.43140295839 0.034336728730577463 6.772875199861438e-05 0.015039548380979328 4.0470526594439e-05 0.0005319152148227937 1.43135207934155e-06 0.015039548380979326 4.0470526594439e-05 0.01929718034959814 7.889896938567072e-05']
['59866.43143449636 0.0343084307606274 6.770152782583448e-05 0.0150928180118352 4.05096057071597e-05 0.0005337992426155476 1.4327342202218048e-06 0.0150928180118352 4.05096057071597e-05 0.019215612748792202 7.88956590979617e-05']
['59866.431466034315 0.03435151726522276 6.772303263721326e-05 0.015057752858634789 4.0506809669222464e-05 0.0005325590665128543 1.4326353306087415e-06 0.015057752858634789 4.0506809669222464e-05 0.01929376440658797 7.891267819026083e-05']
['59866.43149757228 0.03420124966222095 6.763127352003054e-05 0.014933998233568987 4.0441158176493294e-05 0.0005281821419995862 1.4303133840333618e-06 0.01493399823356899 4.0441158176493294e-05 0.01926725142865196 7.880023117096379e-05']
['59866.43152911025 0.03431657488762023 6.769285394398195e-05 0.015102000367444296 4.052042081653185e-05 0.0005341240020120844 1.4331167264699506e-06 0.015102000367444298 4.052042081653185e-05 0.01921457452017593 7.889377021178605e-05']
['59866.431560648205 0.034286625643112204 6.768618879285802e-05 0.014984089970842317 4.0469933717026076e-05 0.0005299537747984997 1.4313311105924582e-06 0.014984089970842315 4.0469933717026076e-05 0.019302535672269888 7.886213088905791e-05']
['59866.43159218617 0.0342995866354422 6.770476233196413e-05 0.015002700856369691 4.045838156019322e-05 0.0005306120002267217 1.430922536622831e-06 0.015002700856369691 4.045838156019322e-05 0.019296885779072508 7.887214642000008e-05']
['59866.43162372413 0.034213084215884385 6.766681193638656e-05 0.01503776953102383 4.048226947603983e-05 0.0005318523008753634 1.4317673988199756e-06 0.01503776953102383 4.048226947603983e-05 0.019175314684860556 7.885183307675867e-05']
['59866.431655262095 0.034281521010141335 6.768409505533125e-05 0.01511349677062171 4.051005325828681e-05 0.0005345306040995205 1.4327500491049525e-06 0.01511349677062171 4.051005325828681e-05 0.019168024239519625 7.888093013173939e-05']
['59866.43168680006 0.0342398476854106 6.767043688824747e-05 0.015027350810413662 4.048831307113818e-05 0.000531483814011852 1.4319811472719644e-06 0.015027350810413663 4.048831307113818e-05 0.01921249687499694 7.885804666609985e-05']
['59866.43171833802 0.03411997468428052 6.755459228849235e-05 0.015003261390786015 4.0460432557919546e-05 0.0005306318250763064 1.430995075828701e-06 0.015003261390786015 4.0460432557919546e-05 0.019116713293494503 7.874433022153649e-05']
['59866.431749875985 0.03422751163630843 6.764613561168645e-05 0.014971038594275544 4.044401875283165e-05 0.000529492176777443 1.4304145562254378e-06 0.014971038594275546 4.044401875283165e-05 0.019256473042032887 7.881445499446198e-05']
['59866.43178141395 0.03428170123539708 6.766811768486201e-05 0.015053869460792959 4.0513552394268995e-05 0.0005324217194100721 1.4328738057245338e-06 0.015053869460792959 4.0513552394268995e-05 0.019227831774604125 7.886901849659036e-05']
['59866.43181295191 0.034237216883292995 6.764302164266545e-05 0.014999442690032448 4.046623660835143e-05 0.0005304967661649466 1.4312003521211875e-06 0.014999442690032446 4.046623660835143e-05 0.01923777419326055 7.882318619665908e-05']
['59866.431844489874 0.03423502893490375 6.76543725224095e-05 0.01500122576025072 4.046175695214425e-05 0.0005305598293736395 1.4310419166925822e-06 0.01500122576025072 4.046175695214425e-05 0.019233803174653032 7.883062791234986e-05']
['59866.43187602783 0.0341790928505363 6.764967016759876e-05 0.015007214531079107 4.0471543605642345e-05 0.0005307716388137244 1.4313880487549262e-06 0.015007214531079106 4.0471543605642345e-05 0.019171878319457197 7.883161621842033e-05']
['59866.4319075658 0.03416509667338648 6.760760687781301e-05 0.014996216481131227 4.046226485900306e-05 0.000530382662366263 1.4310598802230732e-06 0.014996216481131227 4.046226485900306e-05 0.019168880192255253 7.879075697862676e-05']
['59866.431939103764 0.03435608006508777 6.772846305472773e-05 0.015070014850914783 4.051452878005889e-05 0.0005329927457758578 1.4329083383078285e-06 0.015070014850914783 4.051452878005889e-05 0.01928606521417299 7.892130099045402e-05']
['59866.43197064172 0.03436320562893116 6.77508176840417e-05 0.015043858758106602 4.048648709502254e-05 0.0005320676632286595 1.4319165665775705e-06 0.015043858758106602 4.048648709502254e-05 0.019319346870824556 7.892609792807247e-05']
['59866.43200217969 0.034261033773205794 6.766512660750188e-05 0.015051738586495686 4.0486990346080044e-05 0.0005323463551484013 1.4319343654427744e-06 0.015051738586495684 4.0486990346080044e-05 0.01920929518671011 7.885281064168123e-05']
['59866.43203371765 0.03420853703108993 6.764503224702853e-05 0.014957753196411088 4.044739044774993e-05 0.0005290223019460939 1.4305338055394027e-06 0.014957753196411088 4.044739044774993e-05 0.019250783834678847 7.881523825843744e-05']
['59866.43206525561 0.03431027622416108 6.776258055467769e-05 0.015015021991601847 4.04740421555373e-05 0.0005310477712437664 1.4314764168807804e-06 0.015015021991601846 4.04740421555373e-05 0.019295254232559234 7.89298132003199e-05']
['59866.43209679358 0.03433122891361296 6.771375241426997e-05 0.015101072597253828 4.051902628034342e-05 0.0005340911888538918 1.4330674048415707e-06 0.015101072597253828 4.051902628034342e-05 0.01923015631635913 7.891098628662687e-05']
['59866.43212833154 0.03428191308394855 6.768898654609663e-05 0.015077888410490927 4.0502089082533755e-05 0.0005332712159816959 1.4324683740074523e-06 0.015077888410490927 4.0502089082533755e-05 0.01920402467345762 7.888103777009497e-05']
['59866.4321598695 0.03430660778959675 6.767884148830476e-05 0.01508568432135185 4.0506079208939756e-05 0.0005335469399260115 1.432609495861025e-06 0.01508568432135185 4.0506079208939756e-05 0.019220923468244902 7.887438138001454e-05']
['59866.43219140747 0.03429949504012391 6.770959221841986e-05 0.015088664754188142 4.0512766651050784e-05 0.0005336523511745557 1.4328460157429383e-06 0.015088664754188142 4.0512766651050784e-05 0.019210830285935766 7.890420229688148e-05']
['59866.43222294543 0.03426228548471411 6.792958296675798e-05 0.015048566271607689 4.0659690037159104e-05 0.0005322341574605194 1.438042367555147e-06 0.015048566271607687 4.0659690037159104e-05 0.019213719213106425 7.916841943575425e-05']
['59866.43225448339 0.034222884493708784 6.788987265894427e-05 0.01504217727296222 4.068018244567709e-05 0.0005320081928570008 1.4387671382465907e-06 0.01504217727296222 4.068018244567709e-05 0.019180707220746565 7.914488014686258e-05']
['59866.43228602135 0.034154145581442925 6.782461365069117e-05 0.015030283006528821 4.065139752528226e-05 0.0005315875192353725 1.4377490799427363e-06 0.015030283006528821 4.065139752528226e-05 0.019123862574914104 7.907410661919645e-05']
['59866.432317559316 0.03429717958963774 6.79615676802975e-05 0.01498736137594184 4.064082501319463e-05 0.0005300694770857097 1.4373751538183708e-06 0.014987361375941838 4.064082501319463e-05 0.0193098182136959 7.918618149220711e-05']
['59866.43234909728 0.034431188821701555 6.805686233103354e-05 0.01508999623446466 4.069509083565586e-05 0.0005336994426562529 1.4392944146818488e-06 0.01508999623446466 4.069509083565586e-05 0.019341192587236895 7.929581911089344e-05']
['59866.43238063524 0.03422672710665472 6.787904282192264e-05 0.014968099283868436 4.0633148708342104e-05 0.0005293882199373156 1.4371036600712684e-06 0.014968099283868436 4.0633148708342104e-05 0.019258627822786284 7.91114228691069e-05']
['59866.432412173206 0.03424634485794145 6.788276282859976e-05 0.015091877796541265 4.068070439115408e-05 0.0005337659893018587 1.4387855982916321e-06 0.015091877796541267 4.068070439115408e-05 0.019154467061400185 7.913904977319597e-05']
['59866.43244371117 0.03431038250357487 6.796703986944365e-05 0.01501177603483371 4.065295028059506e-05 0.0005309329690071639 1.4378039974279463e-06 0.015011776034833712 4.065295028059506e-05 0.01929860646874116 7.919710143137233e-05']
['59866.43247524913 0.034230597605403146 6.790558070220447e-05 0.015076170196070918 4.069140262498943e-05 0.0005332104465776435 1.4391639709132428e-06 0.015076170196070918 4.069140262498943e-05 0.01915442740933223 7.916412153300636e-05']
['59866.432506787096 0.03424993413545525 6.792037591795775e-05 0.015128342998305545 4.0720985576361825e-05 0.0005350556819933317 1.4402102537892793e-06 0.015128342998305547 4.0720985576361825e-05 0.0191215911371497 7.919202062800875e-05']
['59866.432538325054 0.03427812149245792 6.793717220856996e-05 0.015024795509228958 4.064364520736475e-05 0.000531393438719711 1.437474897783405e-06 0.015024795509228956 4.064364520736475e-05 0.019253325983228965 7.916669289189132e-05']
['59866.43256986302 0.03430415640851211 6.797883619736849e-05 0.0150807482789097 4.0687863830720955e-05 0.0005333723631362383 1.4390388116687069e-06 0.0150807482789097 4.0687863830720955e-05 0.01922340812960241 7.922515026086064e-05']
['59866.432601400986 0.03422369686126254 6.78949118752985e-05 0.015028486648623666 4.066703572305881e-05 0.0005315239860708907 1.4383021680487778e-06 0.015028486648623664 4.066703572305881e-05 0.019195210212638876 7.914244659507999e-05']
['59866.432632938944 0.03424615244852213 6.790387789619335e-05 0.015030248233512612 4.066428630414371e-05 0.0005315862893915023 1.4382049272463403e-06 0.015030248233512613 4.066428630414371e-05 0.019215904215009516 7.914872591499188e-05']
['59866.43266447691 0.03423882023153618 6.793636919262845e-05 0.014971479500753185 4.062554941811561e-05 0.000529507770654189 1.4368348901593715e-06 0.014971479500753183 4.062554941811561e-05 0.019267340730782997 7.9156714968478e-05']
['59866.432696014876 0.0343810027403671 6.802076685464851e-05 0.015126499940939831 4.0697211961905676e-05 0.0005349904971732972 1.4393694341768666e-06 0.015126499940939833 4.0697211961905676e-05 0.019254502799427267 7.926593079606602e-05']
['59866.432727552834 0.034382524888296025 6.803998068674255e-05 0.01507428120912836 4.067833435126571e-05 0.0005331436373311226 1.4387017752775078e-06 0.01507428120912836 4.067833435126571e-05 0.019308243679167662 7.927273085649102e-05']
['59866.4327590908 0.03438133150717938 6.799024839165363e-05 0.015046272175609793 4.0670854408923646e-05 0.0005321530204120767 1.4384372264335564e-06 0.015046272175609795 4.0670854408923646e-05 0.019335059331569586 7.922620951876104e-05']
['59866.43279062876 0.03412306374171819 6.781700240808589e-05 0.015055389583137992 4.068152055906223e-05 0.0005324754827401425 1.4388144643265156e-06 0.015055389583137993 4.068152055906223e-05 0.019067674158580197 7.908306981026804e-05']
['59866.432822166724 0.034346056182708466 6.798049380199795e-05 0.015014652969375422 4.065414688846842e-05 0.0005310347197523339 1.4378463187741656e-06 0.015014652969375422 4.065414688846842e-05 0.019331403213333043 7.920926206443693e-05']
['59866.43285370469 0.0341576832265119 6.783903791933717e-05 0.015016385777921951 4.0641217962157796e-05 0.0005310960053180255 1.4373890515450087e-06 0.015016385777921953 4.0641217962157796e-05 0.019141297448589948 7.90812472288398e-05']
['59866.43288524265 0.03413544593881818 6.783795770572391e-05 0.015011987101478422 4.064912894160888e-05 0.0005309404339626811 1.437668845208195e-06 0.015011987101478422 4.064912894160888e-05 0.019123458837339763 7.9084386508306e-05']
['59866.43291678061 0.034306510554188825 6.798410666652792e-05 0.014991585286747744 4.0649067600875754e-05 0.0005302188673710294 1.4376666757235526e-06 0.014991585286747742 4.0649067600875754e-05 0.019314925267441083 7.920975606619688e-05']
['59866.43294831858 0.03426252770051409 6.790617893330601e-05 0.015110915673363803 4.069575211243497e-05 0.0005344393164579212 1.4393178025636595e-06 0.015110915673363803 4.069575211243497e-05 0.019151612027150287 7.916687045298006e-05']
['59866.43297985654 0.03431514449863233 6.795792508176652e-05 0.014984602413604312 4.063660460793634e-05 0.0005299718987537493 1.4372258875164355e-06 0.014984602413604314 4.063660460793634e-05 0.019330542085028015 7.918088920617615e-05']
['59866.4330113945 0.03425459079195418 6.793072870212508e-05 0.014909877079158832 4.059152122572621e-05 0.0005273290306757064 1.4356313890430927e-06 0.014909877079158834 4.059152122572621e-05 0.019344713712795343 7.91344141156065e-05']
['59866.43304293246 0.034255503095231205 6.79369681572833e-05 0.01504202507042272 4.066756965048932e-05 0.0005320028097933313 1.4383210518687372e-06 0.015042025070422719 4.066756965048932e-05 0.019213478024808488 7.91788031210445e-05']
['59866.43307447043 0.03433236660285805 6.798382128138362e-05 0.015028736593804302 4.065453746546191e-05 0.0005315328260733353 1.437860132609537e-06 0.015028736593804303 4.065453746546191e-05 0.019303630009053746 7.921231831318759e-05']
['59866.43310600839 0.03421579674001971 6.78804766667637e-05 0.014964783245154982 4.062692577372362e-05 0.0005292709390589311 1.436883568781253e-06 0.01496478324515498 4.062692577372362e-05 0.01925101349486473 7.910945714850216e-05']
['59866.43313754635 0.034151643181678334 6.785149999001045e-05 0.014958675335961723 4.061946848635628e-05 0.0005290549159611392 1.4366198211931266e-06 0.014958675335961723 4.061946848635628e-05 0.019192967845716613 7.908076422878373e-05']
['59866.43316908432 0.034313226236016126 6.798515073193437e-05 0.015089407402580498 4.069712523161047e-05 0.0005336786169884719 1.439366366720156e-06 0.0150894074025805 4.069712523161047e-05 0.019223818833435626 7.923532496406652e-05']
['59866.43320062228 0.03424193661591719 6.790453625042572e-05 0.015047000106421071 4.066968931005485e-05 0.000532178765698042 1.4383960194904098e-06 0.015047000106421073 4.066968931005485e-05 0.01919493650949612 7.915206675736124e-05']
['59866.43323216024 0.03422856956857714 6.788981109561413e-05 0.015029055908306638 4.0665343230119976e-05 0.000531544119513657 1.4382423083560302e-06 0.015029055908306638 4.0665343230119976e-05 0.0191995136602705 7.913720105374991e-05']
['59866.43326369821 0.034327887847175345 6.795541053392913e-05 0.015056496374031152 4.065822484408625e-05 0.0005325146274605015 1.4379905469506738e-06 0.015056496374031154 4.065822484408625e-05 0.01927139147314419 7.918982932363927e-05']
['59866.433295236166 0.03418402263751332 6.785760237061953e-05 0.015042678323706447 4.066740447173864e-05 0.0005320259139020416 1.4383152098654786e-06 0.015042678323706447 4.066740447173864e-05 0.019141344313806874 7.91106313080429e-05']
['59866.43332677413 0.034251472372944326 6.79205463310171e-05 0.015091481871031777 4.0687915065573105e-05 0.0005337519863014295 1.4390406237309242e-06 0.015091481871031777 4.0687915065573105e-05 0.019159990501912548 7.917516685354778e-05']
['59866.4333583121 0.03425013868299263 6.794539694895092e-05 0.015005809385127486 4.065289260816735e-05 0.000530721941941732 1.4378019576830684e-06 0.015005809385127486 4.065289260816735e-05 0.01924432929786514 7.917849862154307e-05']
['59866.433389850055 0.034225709140253364 6.789962081048347e-05 0.015035066375525525 4.0675930061334974e-05 0.0005317566963065854 1.4386167409159296e-06 0.015035066375525527 4.0675930061334974e-05 0.019190642764727837 7.915105680003302e-05']
['59866.43342138802 0.03428116414957069 6.791994931042043e-05 0.015057423513902124 4.06845897309606e-05 0.0005325474183257021 1.4389230140773652e-06 0.015057423513902124 4.06845897309606e-05 0.01922374063566857 7.917294585846017e-05']
['59866.43345292599 0.03424086898386489 6.790431047538587e-05 0.015064835544121942 4.0665875759693664e-05 0.0005328095652696644 1.4382611427369182e-06 0.01506483554412194 4.0665875759693664e-05 0.019176033439742952 7.914991366034735e-05']
['59866.433484463945 0.03434146413067119 6.799856704846021e-05 0.015080473924548914 4.068184635483245e-05 0.000533362659835643 1.4388259869947973e-06 0.015080473924548912 4.068184635483245e-05 0.019260990206122278 7.923899130782858e-05']
['59866.43351600191 0.0343795485650448 6.802071235563616e-05 0.015103777751913761 4.070745649002036e-05 0.0005341868641285487 1.4397317602411102e-06 0.01510377775191376 4.070745649002036e-05 0.01927577081313104 7.927114432916366e-05']
['59866.43354753987 0.03438395343884257 6.799925353282563e-05 0.01507974152690849 4.066612160339723e-05 0.0005333367565679137 1.4382698376792849e-06 0.01507974152690849 4.066612160339723e-05 0.01930421191193408 7.923150842489237e-05']
['59866.433579077835 0.03426224459459055 6.793392034089796e-05 0.015050872311856088 4.066378859930464e-05 0.0005323157169504087 1.4381873245384872e-06 0.015050872311856088 4.066378859930464e-05 0.019211372282734458 7.917424604082068e-05']
['59866.4336106158 0.03426764425915649 6.792476195669447e-05 0.015085977530230188 4.068445387251757e-05 0.000533557310068755 1.438918209067861e-06 0.015085977530230188 4.068445387251757e-05 0.0191816667289263 7.917700470325092e-05']
['59866.43364215376 0.03434435953053352 6.797879766635116e-05 0.014965728049121708 4.062114508435714e-05 0.0005293043546637216 1.4366791187174411e-06 0.014965728049121708 4.062114508435714e-05 0.01937863148141181 7.919087295974898e-05']
['59866.433673691725 0.03416003635305211 6.783443890338613e-05 0.015014160855585532 4.0649286649318096e-05 0.0005310173147873951 1.437674422977414e-06 0.015014160855585532 4.0649286649318096e-05 0.01914587549746658 7.908144919281422e-05']
['59866.43370522969 0.03424785699448857 6.79006878096165e-05 0.015008331227700546 4.0669815141187005e-05 0.0005308111338775547 1.438400469856338e-06 0.015008331227700547 4.0669815141187005e-05 0.019239525766788022 7.914882986271702e-05']
['59866.43373676765 0.034300658407569434 6.795747633037834e-05 0.014994471237055045 4.063362884872929e-05 0.0005303209369836794 1.4371206415637127e-06 0.014994471237055045 4.063362884872929e-05 0.01930618717051439 7.9178976897976e-05']
['59866.433768305615 0.034321206340013406 6.795940042925858e-05 0.015056067824140854 4.067277418833006e-05 0.0005324994706086343 1.4385051247407068e-06 0.015056067824140856 4.067277418833006e-05 0.01926513851587255 7.920072390375733e-05']
['59866.43379984357 0.034258519780196735 6.79435734362553e-05 0.014985905196204873 4.064435035307956e-05 0.0005300179752627833 1.4374998372114297e-06 0.01498590519620487 4.064435035307956e-05 0.019272614583991862 7.91725481900873e-05']
['59866.43383138154 0.03430824659849573 6.798519913053489e-05 0.015056331623068386 4.067070176293478e-05 0.0005325088005871452 1.4384318276860738e-06 0.015056331623068388 4.067070176293478e-05 0.019251914975427345 7.92217980274878e-05']
['59866.433862919504 0.03425185379012799 6.792381307552028e-05 0.015035410064845503 4.0633325611718024e-05 0.0005317688518297326 1.437109916748319e-06 0.015035410064845503 4.0633325611718024e-05 0.019216443725282487 7.91499307200336e-05']
['59866.43389445746 0.03433277688986528 6.798588732923498e-05 0.015021059892779973 4.064925249521659e-05 0.0005312613183145218 1.4376732150231737e-06 0.015021059892779971 4.064925249521659e-05 0.01931171699708531 7.921137926057913e-05']
['59866.43392599543 0.034267495676664296 6.794717648199794e-05 0.015019089509314201 4.064935299214548e-05 0.0005311916302548854 1.437676769374951e-06 0.015019089509314201 4.064935299214548e-05 0.019248406167350095 7.91782084323447e-05']
['59866.433957533394 0.03425062618794657 6.790684759155302e-05 0.015072747198363783 4.0678394680926775e-05 0.0005330893827986918 1.438703909002791e-06 0.015072747198363785 4.0678394680926775e-05 0.019177878989582783 7.915852287429107e-05']
['59866.43398907135 0.034330834404367634 6.799292375673488e-05 0.014983937590180888 4.06429968444163e-05 0.0005299483854350556 1.437451966634924e-06 0.014983937590180886 4.06429968444163e-05 0.019346896814186748 7.92142087853208e-05']
['59866.43402060932 0.03435030722575841 6.798464794014195e-05 0.015093554326404954 4.06995327571967e-05 0.0005338252844163136 1.4394515155196381e-06 0.015093554326404954 4.06995327571967e-05 0.019256752899353455 7.923613015663482e-05']
['59866.43405214728 0.03425812563018967 6.791877912994831e-05 0.01494955611174113 4.0621302548827845e-05 0.0005287323893807235 1.4366846878838575e-06 0.01494955611174113 4.0621302548827845e-05 0.019308569518448542 7.913943883593129e-05']
['59866.43408368524 0.03426049273689419 6.790044466645181e-05 0.0149767333203086 4.064660543033779e-05 0.0005296935865102684 1.4375795942542523e-06 0.0149767333203086 4.064660543033779e-05 0.01928375941658559 7.913669767504486e-05']
['59866.43411522321 0.034352487314913596 6.798726727202694e-05 0.015022675854072331 4.0670145221475174e-05 0.0005313184712539716 1.4384121440584445e-06 0.015022675854072333 4.0670145221475174e-05 0.019329811460841263 7.922328712855776e-05']
['59866.43414676117 0.03431021695606529 6.798098822527648e-05 0.015014727009071808 4.064784822606156e-05 0.0005310373383709262 1.4376235491615169e-06 0.01501472700907181 4.064784822606156e-05 0.019295489946993476 7.920645381213652e-05']
['59866.43417829913 0.03430698571391629 6.794556136653457e-05 0.014976405613251448 4.0635335152872374e-05 0.0005296819962440391 1.4371809897278882e-06 0.014976405613251448 4.0635335152872374e-05 0.019330580100664845 7.916962657736729e-05']
['59866.4342098371 0.03420230589696964 6.78831517404168e-05 0.015053500095699082 4.068707594452888e-05 0.0005324086557921841 1.4390109458949152e-06 0.015053500095699082 4.068707594452888e-05 0.019148805801270558 7.914265878227944e-05']
['59866.43424137506 0.034274598181918615 6.795670193174602e-05 0.015032757373855237 4.06608923704255e-05 0.0005316750320778223 1.4380848913957225e-06 0.015032757373855237 4.06608923704255e-05 0.019241840808063376 7.919230711249357e-05']
['59866.43427291302 0.034238710568127446 6.793983774355357e-05 0.015008766518265904 4.065133780044417e-05 0.0005308265291320343 1.4377469676086902e-06 0.015008766518265904 4.065133780044417e-05 0.019229944049861544 7.917292982823237e-05']
['59866.43430445098 0.03414107279574759 6.788114327332281e-05 0.014966956247221521 4.063238579657651e-05 0.0005293477932856508 1.4370766775871268e-06 0.014966956247221521 4.063238579657651e-05 0.019174116548526066 7.9112833267525e-05']
['59866.434335988946 0.034298975558920704 6.794749227142746e-05 0.014999771740346134 4.0643121135128394e-05 0.0005305084039391575 1.4374563625196374e-06 0.014999771740346132 4.0643121135128394e-05 0.01929920381857457 7.917528024314416e-05']
['59866.43436752691 0.034325702451208036 6.797287935678538e-05 0.015084034881672101 4.0673373489739714e-05 0.0005334886029308195 1.4385263206922064e-06 0.015084034881672101 4.0673373489739714e-05 0.019241667569535936 7.921259772970434e-05']
['59866.43439906487 0.03432130592215103 6.796377709972646e-05 0.01508133635138462 4.0685990176528045e-05 0.0005333931619454115 1.4389725447072742e-06 0.015081336351384618 4.0685990176528045e-05 0.019239969570766416 7.921126683942025e-05']
['59866.434430602836 0.03431072576738659 6.796459528700369e-05 0.014983897066534574 4.064158050825987e-05 0.0005299469522042506 1.4374018739903961e-06 0.014983897066534572 4.064158050825987e-05 0.01932682870085202 7.91891676855842e-05']
['59866.4344621408 0.03428802277468634 6.794728056698819e-05 0.015044591039530153 4.0665455057747836e-05 0.0005320935623860578 1.4382462634493076e-06 0.015044591039530155 4.0665455057747836e-05 0.019243431735156184 7.918656559987128e-05']
['59866.43449367876 0.03427093069648369 6.792128813244366e-05 0.015022121516040106 4.066055878778661e-05 0.0005312988655566444 1.4380730933232985e-06 0.015022121516040108 4.066055878778661e-05 0.019248809180443582 7.916174848059815e-05']
['59866.434525216726 0.034273229018674405 6.792682125687098e-05 0.015010666970240215 4.064695331185745e-05 0.0005308937438711055 1.4375918980461333e-06 0.015010666970240217 4.064695331185745e-05 0.019262562048434188 7.915950896512193e-05']
['59866.434556754684 0.034287396897260146 6.795169098584408e-05 0.015049755629669275 4.067691572042111e-05 0.0005322762223970989 1.4386516014749877e-06 0.015049755629669277 4.067691572042111e-05 0.01923764126759087 7.919623589768574e-05']
['59866.43458829265 0.03420175612562339 6.789738236299475e-05 0.015062747949985775 4.066643703779786e-05 0.0005327357317305665 1.4382809938890808e-06 0.015062747949985777 4.066643703779786e-05 0.019139008175637615 7.91442583710018e-05']
['59866.434619830616 0.03423452080404379 6.790806998398442e-05 0.01503570862742598 4.0667593215986996e-05 0.0005317794113209559 1.4383218853277244e-06 0.015035708627425981 4.0667593215986996e-05 0.019198812176617806 7.91540214198288e-05']
['59866.434651368574 0.03421535502064252 6.789269922643908e-05 0.014994496349611123 4.0640653230751016e-05 0.0005303218251586646 1.4373690782572512e-06 0.014994496349611124 4.0640653230751016e-05 0.019220858671031394 7.91269947822731e-05']
['59866.43468290654 0.034240421330612246 6.791260816144675e-05 0.015095833002870979 4.068360405388924e-05 0.0005339058761103747 1.43888815288221e-06 0.015095833002870977 4.068360405388924e-05 0.01914458832774127 7.916614166487992e-05']
['59866.434714444506 0.03430584409319421 6.798430165886125e-05 0.015064163998392235 4.0664215993815026e-05 0.0005327858141980211 1.438202440527149e-06 0.015064163998392235 4.0664215993815026e-05 0.019241680094801976 7.921769836617753e-05']
['59866.434745982464 0.03418899562176449 6.788519436734464e-05 0.014947406240429695 4.0616703052817724e-05 0.0005286563532371177 1.4365220139892481e-06 0.014947406240429697 4.0616703052817724e-05 0.01924158938133479 7.910825608729428e-05']
['59866.43477752043 0.03428715830779621 6.795919793014868e-05 0.014970756882523252 4.063233314919341e-05 0.000529482213262353 1.4370748155668467e-06 0.014970756882523252 4.063233314919341e-05 0.01931640142527296 7.917978959593266e-05']
['59866.43480905839 0.034200273014754666 6.78873314143639e-05 0.015037133954933236 4.0675328239674955e-05 0.0005318298219694681 1.438595455828807e-06 0.015037133954933238 4.0675328239674955e-05 0.019163139059821428 7.91402052939527e-05']
['59866.434840596354 0.03415201719411871 6.784992209468703e-05 0.014983334281729275 4.064419658493337e-05 0.0005299270477634372 1.4374943987757505e-06 0.014983334281729276 4.064419658493337e-05 0.01916868291238943 7.909211493119784e-05']
['59866.43487213432 0.034286958949266935 6.792617883173332e-05 0.015096157868102264 4.0698656093070324e-05 0.0005339173658675743 1.439420509868717e-06 0.015096157868102266 4.0698656093070324e-05 0.01919080108116467 7.918551874214518e-05']
['59866.43490367228 0.03415591088092958 6.786036470848945e-05 0.014988900608202632 4.0642986401562164e-05 0.0005301239162907923 1.4374515972945117e-06 0.014988900608202634 4.0642986401562164e-05 0.019167010272726943 7.910045159167403e-05']
['59866.43493521024 0.034243808113332073 6.791480690107356e-05 0.01503834254439685 4.0672539618608884e-05 0.0005318725670777577 1.4384968285339012e-06 0.015038342544396852 4.0672539618608884e-05 0.019205465568935223 7.916234253379202e-05']
['59866.43496674821 0.03429840354765318 6.792925956757912e-05 0.015057129824359949 4.0667604629879627e-05 0.0005325370311829528 1.4383222890115981e-06 0.015057129824359949 4.0667604629879627e-05 0.019241273723293227 7.917220706619051e-05']
['59866.43499828617 0.03434105264469273 6.799239814314666e-05 0.015048521701051655 4.066054662460607e-05 0.0005322325810995618 1.4380726631387858e-06 0.015048521701051655 4.066054662460607e-05 0.01929253094364107 7.922276350309889e-05']
['59866.43502982413 0.03426700660761388 6.793934719758992e-05 0.0150275486801109 4.065548027224265e-05 0.0005314908122208305 1.437893477578323e-06 0.015027548680110902 4.065548027224265e-05 0.01923945792750298 7.917463592465317e-05']
['59866.43506136209 0.03438141531080856 6.799877770537316e-05 0.01506708444209619 4.067577236585754e-05 0.0005328891037650223 1.4386111635793214e-06 0.015067084442096187 4.067577236585754e-05 0.01931433086871237 7.923605383273333e-05']
['59866.43509290006 0.034299471360314984 6.79757302637403e-05 0.015036872889123544 4.0662493835726026e-05 0.000531820588655227 1.438141531644338e-06 0.015036872889123544 4.0662493835726026e-05 0.01926259847119144 7.920945846191121e-05']
['59866.43512443802 0.03425846008954809 6.789897131264217e-05 0.015042760860252136 4.065733930535857e-05 0.0005320288330352043 1.4379592274249385e-06 0.015042760860252137 4.065733930535857e-05 0.019215699229295953 7.914094733262964e-05']
['59866.43515597598 0.03437271175083418 6.799930069814145e-05 0.015079818602615789 4.069497631527803e-05 0.0005333394825634268 1.4392903643520232e-06 0.015079818602615789 4.069497631527803e-05 0.01929289314821839 7.924636264673162e-05']
['59866.43518751395 0.034253098415665935 6.789548709745577e-05 0.01504497789148171 4.067951763049524e-05 0.0005321072444750212 1.4387436252193829e-06 0.01504497789148171 4.067951763049524e-05 0.019208120524184226 7.914935453211578e-05']
['59866.43521905191 0.034298126758659814 6.79848917993215e-05 0.015025537943564475 4.064810553071057e-05 0.0005314196969629151 1.4376326494519105e-06 0.015025537943564473 4.064810553071057e-05 0.01927258881509534 7.920993622141881e-05']
['59866.43525058987 0.03418850887387054 6.787964763485596e-05 0.015004306949230885 4.0643986017693286e-05 0.0005306688041418158 1.4374869514830589e-06 0.015004306949230885 4.0643986017693286e-05 0.019184201924639654 7.911750857072443e-05']
['59866.43528212784 0.03430740024022486 6.798107026955536e-05 0.01501977268523433 4.0652100114373426e-05 0.0005312157926603719 1.4377739289486967e-06 0.015019772685234328 4.0652100114373426e-05 0.019287627554990534 7.920870633145869e-05']
['59866.435313665796 0.03422265485236049 6.793028577562567e-05 0.015021443377718918 4.0671561586555854e-05 0.0005312748813197739 1.4384622377259585e-06 0.015021443377718918 4.0671561586555854e-05 0.019201211474641575 7.917512012903534e-05']
['59866.43534520376 0.034201790112978456 6.78519482606999e-05 0.01499416619807134 4.0649946972412944e-05 0.0005303101484365478 1.4376977771295434e-06 0.01499416619807134 4.0649946972412944e-05 0.019207623914907115 7.909680822658194e-05']
['59866.43537674173 0.03427472414037555 6.794817380265995e-05 0.015055711062991714 4.0682928036225844e-05 0.0005324868527641035 1.4388642436482662e-06 0.015055711062991715 4.0682928036225844e-05 0.019219013077383836 7.919630645880662e-05']
['59866.435408279685 0.0342536818277608 6.79129555247737e-05 0.014936533313432719 4.060538188651151e-05 0.0005282718021087963 1.436121609638315e-06 0.01493653331343272 4.060538188651151e-05 0.01931714851432808 7.912626976080274e-05']
['59866.43543981765 0.03423622191175308 6.794209359218268e-05 0.014994661877535951 4.064059453348144e-05 0.0005303276795114326 1.4373670022660068e-06 0.014994661877535951 4.064059453348144e-05 0.019241560034217127 7.916935016610754e-05']
['59866.43547135562 0.034170841144642985 6.784502713306222e-05 0.014949483986404331 4.0616134516715304e-05 0.0005287298384687516 1.4365019061379089e-06 0.014949483986404333 4.0616134516715304e-05 0.019221357158238653 7.907349802409062e-05']
['59866.435502893575 0.03435957700407146 6.800025419583825e-05 0.015010106279612257 4.0643975076406374e-05 0.0005308739134966643 1.4374865645141932e-06 0.015010106279612256 4.0643975076406374e-05 0.019349470724459205 7.922100277521209e-05']
['59866.43553443154 0.034191930727387757 6.785443819013417e-05 0.014954137325629382 4.061966658413746e-05 0.0005288944166775405 1.4366268274689246e-06 0.01495413732562938 4.061966658413746e-05 0.019237793401758376 7.90833869754276e-05']
['59866.4355659695 0.034133634751570066 6.783946661011658e-05 0.015015335481991559 4.065419929515056e-05 0.0005310588586982408 1.437848172281391e-06 0.01501533548199156 4.065419929515056e-05 0.019118299269578504 7.908828706120106e-05']
['59866.435597507465 0.034319767169199246 6.796386810103329e-05 0.015046103574377107 4.066737958589898e-05 0.0005321470573632781 1.4383143297089463e-06 0.015046103574377108 4.066737958589898e-05 0.01927366359482214 7.920178741441536e-05']
['59866.43562904543 0.034197624635416486 6.788403079396716e-05 0.015055228978994332 4.067659166022458e-05 0.0005324698025305103 1.4386401401900683e-06 0.01505522897899433 4.067659166022458e-05 0.019142395656422156 7.913802338906965e-05']
['59866.43566058339 0.034311680571681644 6.797631797204865e-05 0.01497673588509062 4.061991437080731e-05 0.0005296936772208765 1.4366355911296665e-06 0.014976735885090619 4.061991437080731e-05 0.019334944686591027 7.918811305068951e-05']
['59866.435692121355 0.03421749021794719 6.789169269306934e-05 0.015118925261434882 4.070294353414403e-05 0.0005347225976876195 1.4395721470776272e-06 0.015118925261434884 4.070294353414403e-05 0.019098564956512305 7.915814265806066e-05']
['59866.43572365932 0.03431592607824048 6.799969728052675e-05 0.015091791335772561 4.069510889663445e-05 0.0005337629313776981 1.4392950534582976e-06 0.015091791335772563 4.069510889663445e-05 0.019224134742467917 7.9246771027924e-05']
['59866.43575519728 0.03434594569187603 6.801351903842078e-05 0.014982465451917164 4.062878476281125e-05 0.0005298963191947032 1.4369493170706864e-06 0.014982465451917164 4.062878476281125e-05 0.019363480239958868 7.922459796863895e-05']
['59866.435786735245 0.03429122576732296 6.798912416689759e-05 0.015025042508851736 4.0665420263932695e-05 0.000531402174544357 1.4382450328698257e-06 0.015025042508851736 4.0665420263932695e-05 0.019266183258471223 7.922245521456707e-05']
['59866.4358182732 0.0342938916129118 6.79357122400107e-05 0.015020753931896405 4.064279682986603e-05 0.0005312504971618523 1.4374448925672872e-06 0.015020753931896403 4.064279682986603e-05 0.019273137681015393 7.916500446353367e-05']
['59866.43584981117 0.03424738996894561 6.797265516547292e-05 0.015008103468266979 4.065334533721267e-05 0.0005308030785354019 1.4378179696976113e-06 0.01500810346826698 4.065334533721267e-05 0.019239286500678625 7.920212331339964e-05']
['59866.435881349134 0.03415873961266138 6.785897982859943e-05 0.015110973351808128 4.070621986676554e-05 0.0005344413564155932 1.4396880236402775e-06 0.015110973351808126 4.070621986676554e-05 0.019047766260853256 7.913177288055488e-05']
['59866.43591288709 0.03428877328624164 6.797034480992045e-05 0.015013294259627703 4.064969119344264e-05 0.0005309866652250947 1.4376887307989962e-06 0.015013294259627705 4.064969119344264e-05 0.01927547902661394 7.91982649286064e-05']
['59866.43594442506 0.034280344078419636 6.796521608900345e-05 0.015077673149392389 4.068312171640115e-05 0.000533263602677721 1.438871093683217e-06 0.01507767314939239 4.068312171640115e-05 0.019202670929027246 7.9211028213352e-05']
['59866.435975963024 0.03433483544321582 6.798351692688189e-05 0.01503533539698544 4.0653539636114045e-05 0.000531766210994395 1.4378248416155207e-06 0.01503533539698544 4.0653539636114045e-05 0.019299500046230378 7.921154498362428e-05']
['59866.43600750098 0.034237879589062103 6.790471199707072e-05 0.014995808762519222 4.065380140838277e-05 0.0005303682422701538 1.4378340999156387e-06 0.014995808762519222 4.065380140838277e-05 0.019242070826542883 7.914405524331784e-05']
['59866.43603903895 0.03427326393385766 6.792069286383902e-05 0.015041051892811146 4.0679559407454876e-05 0.0005319683906761339 1.4387451027770793e-06 0.015041051892811144 4.0679559407454876e-05 0.01923221204104652 7.917099893703883e-05']
['59866.43607057691 0.034344679357624606 6.798535727060613e-05 0.01501966442871885 4.0647537826936116e-05 0.0005312119638693585 1.4376125710381512e-06 0.01501966442871885 4.0647537826936116e-05 0.019325014928905756 7.92100444047607e-05']
['59866.43610211487 0.03438585026020095 6.802421703226561e-05 0.015059823334945502 4.0677698454413626e-05 0.000532632294632722 1.4386792850269956e-06 0.015059823334945502 4.0677698454413626e-05 0.019326026925255445 7.925887492515257e-05']
['59866.43613365284 0.03420208588739324 6.790787735272641e-05 0.01508205480654829 4.0686363571511225e-05 0.0005334185720988977 1.4389857508533407e-06 0.01508205480654829 4.0686363571511225e-05 0.01912003108084495 7.916350161043995e-05']
['59866.4361651908 0.03415286807050658 6.785246137236996e-05 0.014956112688323357 4.061176940750485e-05 0.0005289642808413506 1.4363475219805802e-06 0.014956112688323359 4.061176940750485e-05 0.019196755382183225 7.907763481982312e-05']
['59866.43619672876 0.03426248242630736 6.792457427650685e-05 0.01505209707334628 4.066426004099783e-05 0.000532359034027136 1.4382039983775653e-06 0.01505209707334628 4.066426004099783e-05 0.01921038535296108 7.916646913514957e-05']
['59866.43622826673 0.03426716885870392 6.793753900296057e-05 0.015044643710037634 4.067721535929981e-05 0.0005320954252241958 1.4386621990324738e-06 0.015044643710037636 4.067721535929981e-05 0.019222525148666285 7.918424751909716e-05']
['59866.43625980469 0.034340937302706626 6.799527633788424e-05 0.015099372895103252 4.07012001083369e-05 0.0005340310741874367 1.4395104860031563e-06 0.015099372895103253 4.07012001083369e-05 0.01924156440760337 7.924610586346893e-05']
['59866.43629134265 0.03425277678510636 6.795435364026005e-05 0.01501653547549499 4.0663562362781336e-05 0.0005311012997866295 1.4381793230582669e-06 0.015016535475494992 4.0663562362781336e-05 0.01923624130961137 7.919166296206522e-05']
['59866.43632288061 0.03429811952193717 6.794473008113807e-05 0.014981005236895514 4.0651233328619e-05 0.0005298446746527759 1.4377432726737146e-06 0.014981005236895514 4.0651233328619e-05 0.019317114285041653 7.917707444037404e-05']
['59866.436354418576 0.03425327055315043 6.791438233410021e-05 0.0148968120917812 4.058632431186135e-05 0.0005268669512706878 1.4354475858141115e-06 0.0148968120917812 4.058632431186135e-05 0.01935645846136923 7.911771640391253e-05']
['59866.43638595654 0.03423624904306688 6.791977937930308e-05 0.014982639082699185 4.063378634054331e-05 0.0005299024601274213 1.437126211697201e-06 0.014982639082699183 4.063378634054331e-05 0.019253609960367696 7.914670570088264e-05']
['59866.4364174945 0.03407604707130961 6.781012077247917e-05 0.014930872862586214 4.0610599064185485e-05 0.0005280716046127185 1.4363061295529376e-06 0.014930872862586212 4.0610599064185485e-05 0.019145174208723397 7.904070619326622e-05']
['59866.436449032466 0.034257331636468664 6.794695747745544e-05 0.015037468575860892 4.067122210125328e-05 0.0005318416567638455 1.4384502308895116e-06 0.015037468575860892 4.067122210125328e-05 0.019219863060607772 7.91892501394767e-05']
['59866.43648057043 0.034225289693028585 6.789726694644951e-05 0.015003756371201668 4.0653284836799226e-05 0.0005306493314273919 1.4378158299331984e-06 0.015003756371201668 4.0653284836799226e-05 0.019221533321826918 7.913740219908255e-05']
['59866.43651210839 0.03419121387248975 6.78732537429534e-05 0.015056951607121286 4.068512170958724e-05 0.0005325307280375134 1.4389418289724874e-06 0.015056951607121286 4.068512170958724e-05 0.019134262265368466 7.913316436349089e-05']
['59866.436543646356 0.03436769472358054 6.802030828731578e-05 0.014986617154556374 4.062391110705887e-05 0.0005300431556385428 1.4367769467587043e-06 0.014986617154556375 4.062391110705887e-05 0.019381077569024165 7.922792748226916e-05']
['59866.436575184314 0.03433463961669802 6.798727777753518e-05 0.015003597419432965 4.0637166725383754e-05 0.0005306437096585691 1.437245768354292e-06 0.015003597419432963 4.0637166725383754e-05 0.019331042197265058 7.920637132874076e-05']
['59866.43660672228 0.03431492676198037 6.797415266131702e-05 0.014978802007051234 4.063002629978115e-05 0.0005297667513371126 1.43699322745864e-06 0.014978802007051234 4.063002629978115e-05 0.019336124754929136 7.919144188070413e-05']
['59866.436638260246 0.034223957246113816 6.792031530231857e-05 0.01500902410823124 4.066159131788629e-05 0.0005308356395134284 1.438109611605355e-06 0.01500902410823124 4.066159131788629e-05 0.019214933137882577 7.916144414592987e-05']
['59866.436669798204 0.03430041824021651 6.794983377108799e-05 0.015090911126838944 4.06785126959451e-05 0.0005337318003548672 1.438708082930241e-06 0.015090911126838944 4.06785126959451e-05 0.01920950711337757 7.919546265205259e-05']
['59866.43670133617 0.03428918152465678 6.792762526248185e-05 0.015073739888710778 4.0686884594213536e-05 0.0005331244920377326 1.439004178261904e-06 0.015073739888710776 4.0686884594213536e-05 0.019215441635946004 7.918071009900715e-05']
['59866.436732874135 0.03422615308844682 6.790340380388476e-05 0.014930443092633552 4.0598759733049495e-05 0.0005280564046099722 1.4358873988700054e-06 0.014930443092633552 4.0598759733049495e-05 0.01929570999581327 7.911467335466482e-05']
['59866.436764412094 0.03416482619805224 6.784563691721398e-05 0.015080587260435464 4.068724823061316e-05 0.0005333666682726596 1.4390170392686793e-06 0.015080587260435464 4.068724823061316e-05 0.019084238937616772 7.911057209552944e-05']
['59866.43679595006 0.03441588754758489 6.805667088804721e-05 0.014981911584758964 4.0625703790448254e-05 0.0005298767301511379 1.4368403499637754e-06 0.014981911584758964 4.0625703790448254e-05 0.01943397596282593 7.926006725226276e-05']
['59866.43682748802 0.03433084449300668 6.796915486649238e-05 0.015080697040035194 4.068129771985556e-05 0.0005333705509317591 1.438806583001792e-06 0.015080697040035194 4.068129771985556e-05 0.01925014745297149 7.921347106039951e-05']
['59866.436859025984 0.034283560218380915 6.793919461150992e-05 0.015115109397545156 4.070142777199333e-05 0.0005345876391097937 1.4395185379578862e-06 0.015115109397545156 4.070142777199333e-05 0.019168450820835757 7.919810848208061e-05']
['59866.43689056395 0.03417841556519866 6.787526043957106e-05 0.015040362716453903 4.0672440329229255e-05 0.0005319440160485967 1.4384933168904425e-06 0.015040362716453901 4.0672440329229255e-05 0.01913805284874476 7.91283664817764e-05']
['59866.43692210191 0.034287037148938125 6.79649398637238e-05 0.01501027034223798 4.066407626174014e-05 0.0005308797160250778 1.438197498515943e-06 0.01501027034223798 4.066407626174014e-05 0.019276766806700145 7.920101103458345e-05']
['59866.43695363987 0.034337639243899064 6.798985927589748e-05 0.015012307535512776 4.064963248112349e-05 0.0005309517669983483 1.437686654275482e-06 0.015012307535512776 4.064963248112349e-05 0.01932533170838629 7.921498333779256e-05']
['59866.43698517784 0.03428290193811213 6.794858844529676e-05 0.01506010733283066 4.067853485098982e-05 0.0005326423390032221 1.4387088665046591e-06 0.015060107332830662 4.067853485098982e-05 0.019222794605281465 7.919440554314117e-05']
['59866.4370167158 0.03439334878787974 6.80519371248126e-05 0.015034256035014801 4.0685814442487404e-05 0.0005317280363737255 1.4389663293869992e-06 0.015034256035014801 4.0685814442487404e-05 0.01935909275286494 7.928683146202755e-05']
['59866.43704825376 0.0342703850798535 6.794506701110551e-05 0.014962838996127792 4.0620824271408765e-05 0.0005292021753159803 1.4366677722804318e-06 0.014962838996127792 4.0620824271408765e-05 0.01930754608372571 7.916175525866194e-05']
['59866.43707979172 0.03421414756779329 6.792181329523243e-05 0.014986441399994437 4.064326769630797e-05 0.0005300369395924753 1.437461546061014e-06 0.014986441399994437 4.064326769630797e-05 0.019227706167798855 7.915331913663611e-05']
['59866.43711132969 0.03428586107381062 6.793793854208884e-05 0.015046063446972138 4.066418401706007e-05 0.0005321456381466439 1.4382013095807902e-06 0.015046063446972138 4.066418401706007e-05 0.01923979762683848 7.917789688493857e-05']
['59866.43714286765 0.034341785160907336 6.796845995656038e-05 0.015019058412368865 4.066657838769006e-05 0.0005311905304254264 1.4382859931188694e-06 0.015019058412368867 4.066657838769006e-05 0.01932272674853847 7.920531640381656e-05']
['59866.43717440561 0.03421829800125389 6.791457360798819e-05 0.014986224284494355 4.0630048693600844e-05 0.000530029260702462 1.4369940194779953e-06 0.014986224284494355 4.0630048693600844e-05 0.019232073716759533 7.914031946611803e-05']
['59866.43720594358 0.03429625409540641 6.798326257502032e-05 0.014959911417070754 4.0627976765397144e-05 0.000529098633387487 1.4369207400079174e-06 0.014959911417070754 4.0627976765397144e-05 0.019336342678335658 7.91982101211499e-05']
['59866.43723748154 0.03417472100249509 6.78672946646583e-05 0.015044006277841077 4.0652922788899536e-05 0.0005320728806719806 1.4378030251081158e-06 0.015044006277841077 4.0652922788899536e-05 0.019130714724654017 7.911150242777458e-05']
['59866.4372690195 0.03423026717440812 6.792126716392999e-05 0.01503066277608985 4.067283579576904e-05 0.0005316009508360111 1.4385073036581389e-06 0.01503066277608985 4.067283579576904e-05 0.01919960439831827 7.91680371414092e-05']
['59866.43730055747 0.03424138679431165 6.790792134219866e-05 0.015008701887098895 4.0653895898669926e-05 0.0005308242432720993 1.4378374418259221e-06 0.015008701887098897 4.0653895898669926e-05 0.019232684907212753 7.914685737765038e-05']
['59866.437332095426 0.034319676677472925 6.797947761819885e-05 0.015016612195510558 4.065935776681037e-05 0.0005311040132021209 1.4380306158954928e-06 0.015016612195510558 4.065935776681037e-05 0.019303064481962368 7.921106457593334e-05']
['59866.43736363339 0.0343233845491116 6.798152823433312e-05 0.015027959034771094 4.065390359845627e-05 0.0005315053255480729 1.4378377141501572e-06 0.015027959034771094 4.065390359845627e-05 0.019295425514340506 7.921002498969438e-05']
['59866.43739517136 0.03427934347167169 6.794116120542132e-05 0.015127158246143139 4.071122633954476e-05 0.0005350137799571125 1.4398650913936705e-06 0.015127158246143139 4.071122633954476e-05 0.019152185225528553 7.920483151936307e-05']
['59866.437426709315 0.03430035068779856 6.798045093573422e-05 0.015018336043693159 4.0650422481452795e-05 0.0005311649818597656 1.4377145948215828e-06 0.015018336043693157 4.0650422481452795e-05 0.019282014644105405 7.92073137869627e-05']
['59866.43745824728 0.03431228928980693 6.7994257566469e-05 0.015045371027576427 4.0665973646458106e-05 0.0005321211488200838 1.4382646047730124e-06 0.015045371027576427 4.0665973646458106e-05 0.019266918262230502 7.92271448092745e-05']
['59866.43748978524 0.034288747378865995 6.796735929971069e-05 0.015096998377484062 4.069847592618141e-05 0.0005339470928059805 1.4394141377685054e-06 0.015096998377484062 4.069847592618141e-05 0.019191749001381934 7.922075405403521e-05']
['59866.437521323205 0.03424300399407585 6.790015215410725e-05 0.014999853085743631 4.0657880877534313e-05 0.0005305112809440707 1.437978381622452e-06 0.014999853085743631 4.0657880877534313e-05 0.01924315090833222 7.91422386592816e-05']
['59866.43755286117 0.03436579503032206 6.801701708315856e-05 0.01509677686145362 4.0686326509481124e-05 0.0005339392582790429 1.4389844400521647e-06 0.015096776861453618 4.0686326509481124e-05 0.019269018168868446 7.925712446037132e-05']
['59866.43758439913 0.0341920870633294 6.78622177260505e-05 0.01504136829546337 4.0677788678494545e-05 0.0005319795811308248 1.4386824760510986e-06 0.01504136829546337 4.0677788678494545e-05 0.019150718767866032 7.911992850394989e-05']
['59866.437615937095 0.034273028502156175 6.793567793097856e-05 0.015022393931410753 4.066146710079433e-05 0.0005313085002794916 1.4381052183244214e-06 0.015022393931410753 4.066146710079433e-05 0.019250634570745422 7.91745618411029e-05']
['59866.43764747506 0.034280483558788606 6.794712506839376e-05 0.014976250239352984 4.063857733954208e-05 0.0005296765010164906 1.4372956586245349e-06 0.014976250239352982 4.063857733954208e-05 0.019304233319435624 7.917263272900483e-05']
['59866.43767901302 0.03422803481450433 6.790102896203512e-05 0.015029520546217442 4.067313594929553e-05 0.0005315605527181575 1.4385179194175673e-06 0.015029520546217442 4.067313594929553e-05 0.019198514268286886 7.915082894103516e-05']
['59866.437710550985 0.03421567324069729 6.789153963567114e-05 0.01504818852062103 4.066956741970935e-05 0.000532220797252345 1.4383917085012983e-06 0.015048188520621028 4.066956741970935e-05 0.01916748472007626 7.914085460878086e-05']
['59866.43774208894 0.03425144515066358 6.792981045619908e-05 0.014968377299144716 4.063881668911194e-05 0.0005293980527163101 1.4373041238839062e-06 0.014968377299144716 4.063881668911194e-05 0.019283067851518863 7.91578964507419e-05']
['59866.43777362691 0.034192896287350394 6.789072869859733e-05 0.015059533307820155 4.0684956854690295e-05 0.0005326220370214709 1.4389359984232114e-06 0.015059533307820155 4.0684956854690295e-05 0.01913336297953024 7.914806856452378e-05']
['59866.437805164875 0.0341878774252783 6.789451292439173e-05 0.015000898861394166 4.063574154154098e-05 0.0005305482676916591 1.4371953627868717e-06 0.015000898861394166 4.063574154154098e-05 0.01918697856388413 7.912602843484132e-05']
['59866.43783670283 0.0342316566562812 6.791555632974035e-05 0.015029154933119359 4.0661007196819356e-05 0.0005315476217999755 1.4380889525486514e-06 0.015029154933119359 4.0661007196819356e-05 0.019202501723161843 7.915706094744757e-05']
['59866.4378682408 0.034229523190253894 6.789909849718499e-05 0.014985739657626056 4.063743626404095e-05 0.0005300121205332076 1.4372553013342135e-06 0.014985739657626057 4.063743626404095e-05 0.019243783532627838 7.91308334522291e-05']
['59866.437899778764 0.03430622295372382 6.797173651437895e-05 0.015029710127771932 4.066133870399133e-05 0.0005315672577940499 1.4381006772164492e-06 0.01502971012777193 4.066133870399133e-05 0.01927651282595189 7.92054381338861e-05']
['59866.43793131672 0.0342519569651487 6.789888390442762e-05 0.015082210977155255 4.069094865957008e-05 0.0005334240955042453 1.4391479151709136e-06 0.015082210977155253 4.069094865957008e-05 0.019169745987993446 7.915814385319244e-05']
['59866.43796285469 0.03437140700498942 6.800869783275075e-05 0.015031512338879756 4.0637523286039694e-05 0.000531630997973229 1.4372583791078265e-06 0.015031512338879756 4.0637523286039694e-05 0.019339894666109664 7.922494102067741e-05']
['59866.43799439265 0.0342614625825268 6.792070679263848e-05 0.015113944722167854 4.070671399895446e-05 0.0005345464471445948 1.4397054999914793e-06 0.015113944722167852 4.070671399895446e-05 0.019147517860358947 7.918496685485347e-05']
['59866.43802593061 0.03436159651982149 6.799710921790963e-05 0.015047322623032261 4.066318864034868e-05 0.0005321901723897975 1.4381661053310444e-06 0.015047322623032261 4.066318864034868e-05 0.019314273896789233 7.922816274780649e-05']
['59866.43805746858 0.0342367630653626 6.791704651935954e-05 0.01502226510470406 4.066376752990532e-05 0.0005313039439667866 1.4381865793609207e-06 0.015022265104704058 4.066376752990532e-05 0.019214497960658543 7.915975743797495e-05']
['59866.43808900654 0.03424538320704142 6.791340215362763e-05 0.014983333181821948 4.0637293121598036e-05 0.0005299270088621732 1.4372502387059123e-06 0.014983333181821948 4.0637293121598036e-05 0.019262050025219475 7.9143033706897e-05']
['59866.4381205445 0.03421146553516612 6.790882402231744e-05 0.015010290344410834 4.065418644019453e-05 0.0005308804234572294 1.4378477176303253e-06 0.015010290344410834 4.065418644019453e-05 0.019201175190755287 7.914778111361161e-05']
['59866.43815208247 0.03428644201867554 6.793253700542796e-05 0.01506629570418369 4.068597673690298e-05 0.0005328612078677827 1.4389720693777715e-06 0.015066295704183687 4.068597673690298e-05 0.019220146314491853 7.918445735767626e-05']
['59866.43818362043 0.034175688636109536 6.786482025638331e-05 0.015016926325800603 4.068030368016434e-05 0.00053111512328844 1.4387714260394614e-06 0.015016926325800602 4.068030368016434e-05 0.019158762310308934 7.912345376651355e-05']
['59866.43821515839 0.034316962398202124 6.795483817036975e-05 0.015079376911226617 4.069158186600113e-05 0.000533323860926114 1.4391703102672467e-06 0.015079376911226617 4.069158186600113e-05 0.019237585486975507 7.920646984633649e-05']
['59866.43824669635 0.0342806454263522 6.79487703931024e-05 0.015077512719791254 4.067923400379872e-05 0.0005332579286412678 1.4387335939769954e-06 0.015077512719791254 4.067923400379872e-05 0.019203132706560946 7.91949207782315e-05']
['59866.43827823432 0.03424505910125969 6.793195099105839e-05 0.01503696180196798 4.06774645221431e-05 0.0005318237333038261 1.4386710113653948e-06 0.015036961801967978 4.06774645221431e-05 0.01920809729929171 7.917958124037894e-05']
['59866.43830977228 0.03444614361112806 6.807309263706841e-05 0.01507498033484882 4.0687383729987535e-05 0.0005331683638454012 1.4390218315787276e-06 0.015074980334848819 4.0687383729987535e-05 0.019371163276279246 7.930579509699245e-05']
['59866.43834131024 0.034213607754486966 6.791142300219566e-05 0.014995684493620674 4.0647179923991524e-05 0.0005303638471569369 1.437599912810867e-06 0.014995684493620676 4.0647179923991524e-05 0.01921792326086629 7.914641248948994e-05']
['59866.438372848206 0.03420682126666188 6.788827908359055e-05 0.014951609412684577 4.06040960913104e-05 0.0005288050100462357 1.4360761339356347e-06 0.014951609412684577 4.06040960913104e-05 0.0192552118539773 7.910443133177715e-05']
['59866.43840438617 0.03413547466560685 6.785874995575308e-05 0.014993710037115637 4.0648395526433655e-05 0.0005302940150430042 1.4376429059525338e-06 0.014993710037115636 4.0648395526433655e-05 0.019141764628491216 7.910184577132705e-05']
['59866.43843592413 0.03429822209345372 6.797294678452877e-05 0.015086030159535788 4.0689822173304017e-05 0.0005335591714496745 1.4391080738692316e-06 0.01508603015953579 4.0689822173304017e-05 0.019212191933917933 7.922110276351549e-05']
['59866.438467462096 0.034264790540334 6.79215512721154e-05 0.015005899529172662 4.065609344798896e-05 0.0005307251301351498 1.4379151642341027e-06 0.015005899529172664 4.065609344798896e-05 0.01925889101116134 7.915968078297317e-05']
['59866.438499000054 0.034192753898167054 6.786774963837205e-05 0.015020656353642378 4.0675574285037953e-05 0.000531247046037082 1.4386041579034172e-06 0.01502065635364238 4.0675574285037953e-05 0.019172097544524674 7.91235349589134e-05']
['59866.43853053802 0.03426436711725067 6.792285922587848e-05 0.014992356329376812 4.065190634968859e-05 0.0005302461374256408 1.4377670759248326e-06 0.014992356329376812 4.065190634968859e-05 0.01927201078787386 7.915865268738697e-05']
['59866.438562075986 0.03432516559821949 6.799909403963034e-05 0.015025087240790505 4.065806828521111e-05 0.0005314037566130612 1.4379850098131489e-06 0.015025087240790503 4.065806828521111e-05 0.019300078357428987 7.922723841517753e-05']
['59866.438593613944 0.03426446156623031 6.792418403994787e-05 0.015060222397498805 4.06782329014014e-05 0.0005326464085833799 1.4386981872225342e-06 0.015060222397498803 4.06782329014014e-05 0.019204239168731506 7.91733124826375e-05']
['59866.43862515191 0.03420070660495134 6.789662325596885e-05 0.014997138037319831 4.0653418508884664e-05 0.000530415255749097 1.4378205576161207e-06 0.014997138037319831 4.0653418508884664e-05 0.019203568567631512 7.913691860327577e-05']
['59866.438656689876 0.034204548435852494 6.789292433473217e-05 0.015057113860441562 4.069035989685964e-05 0.0005325364665748367 1.4391270919496525e-06 0.01505711386044156 4.069035989685964e-05 0.019147434575410932 7.915272934812565e-05']
['59866.438688227834 0.03431008863690778 6.794415968775134e-05 0.015023916161666906 4.063933756298662e-05 0.0005313623381616674 1.4373225460287689e-06 0.015023916161666906 4.063933756298662e-05 0.01928617247524087 7.917047804095306e-05']
['59866.4387197658 0.03418923403194959 6.785624118959722e-05 0.015023719417577765 4.0674000935457634e-05 0.0005313553797629317 1.4385485120449907e-06 0.015023719417577767 4.0674000935457634e-05 0.01916551461437182 7.911285496351651e-05']
['59866.43875130376 0.03430138484108971 6.793832287235952e-05 0.015037397432254452 4.067926358468993e-05 0.0005318391405734823 1.4387346401870081e-06 0.015037397432254452 4.067926358468993e-05 0.019263987408835257 7.91859722457308e-05']
['59866.438782841724 0.034171764737325416 6.786999196345128e-05 0.014961297583665453 4.062029370826443e-05 0.0005291476590020414 1.4366490074477555e-06 0.014961297583665453 4.062029370826443e-05 0.01921046715365996 7.909705474962141e-05']
['59866.43881437969 0.034140948600088546 6.786148606719872e-05 0.01505080335212448 4.0686069839679514e-05 0.0005323132779988176 1.438975362214905e-06 0.01505080335212448 4.0686069839679514e-05 0.019090145247964065 7.912355888259757e-05']
['59866.43884591765 0.03425930202534889 6.795162312542061e-05 0.015060864944972127 4.066766626944619e-05 0.0005326691340515023 1.4383244690653113e-06 0.015060864944972125 4.066766626944619e-05 0.019198437080376763 7.919142734653952e-05']
['59866.438877455614 0.034300908914874195 6.797133522920909e-05 0.014968328136702671 4.0628290558593425e-05 0.0005293963139506065 1.4369318381719835e-06 0.01496832813670267 4.0628290558593425e-05 0.019332580778171526 7.918813299071404e-05']
['59866.43890899358 0.034114134762730106 6.781442883380305e-05 0.014948075982285309 4.062972103659751e-05 0.0005286800405097657 1.4369824309820576e-06 0.014948075982285307 4.062972103659751e-05 0.0191660587804448 7.905422815742795e-05']
['59866.43894053154 0.0342705749674304 6.792869111958939e-05 0.015066325758876117 4.0674334412410704e-05 0.0005328622708350856 1.4385603063795435e-06 0.015066325758876117 4.0674334412410704e-05 0.01920424920855428 7.917517639458215e-05']
['59866.4389720695 0.03428360425801991 6.79436536957753e-05 0.015006386306332054 4.064484225641443e-05 0.0005307423463553945 1.437517234733045e-06 0.015006386306332052 4.064484225641443e-05 0.01927721795168786 7.917286959293728e-05']
['59866.43900360746 0.0343336037143976 6.797137412903163e-05 0.015089511810089924 4.0677534077470966e-05 0.0005336823096487432 1.4386734713818944e-06 0.015089511810089924 4.0677534077470966e-05 0.019244091904307675 7.921344254362767e-05']
['59866.43903514543 0.03418442670375523 6.785873002371471e-05 0.01497214530102431 4.0624334643681976e-05 0.0005295313185218028 1.436791926302515e-06 0.01497214530102431 4.0624334643681976e-05 0.019212281402730923 7.908946709691032e-05']
['59866.43906668339 0.03429371120761734 6.796855206299833e-05 0.015031230987932366 4.0677780936743214e-05 0.0005316210472190021 1.4386822022426558e-06 0.015031230987932364 4.0677780936743214e-05 0.019262480219684974 7.921114777276103e-05']
['59866.43909822135 0.034236607519487046 6.794018791424472e-05 0.01503327607271631 4.067556357506437e-05 0.0005316933772973148 1.4386037791155869e-06 0.015033276072716312 4.067556357506437e-05 0.019203331446770736 7.918567172141679e-05']
['59866.43912975932 0.03427582274790004 6.792839362667309e-05 0.014972141989968192 4.0626780712014175e-05 0.0005295312014171476 1.4368784382727839e-06 0.01497214198996819 4.0626780712014175e-05 0.019303680757931846 7.915050203076623e-05']
['59866.43916129728 0.03422329529733083 6.790917206528202e-05 0.014957417069414166 4.062223368006592e-05 0.0005290104138854124 1.4367176199147922e-06 0.014957417069414168 4.062223368006592e-05 0.019265878227916658 7.913167203939242e-05']
['59866.43919283524 0.03424421764637984 6.793523059752273e-05 0.015017354653721218 4.065830432503931e-05 0.0005311302722897356 1.4379933580143543e-06 0.015017354653721218 4.065830432503931e-05 0.01922686299265862 7.917255374765992e-05']
['59866.43922437321 0.03420100329937977 6.788642336124396e-05 0.015050185803328788 4.066508448808955e-05 0.0005322914366780543 1.4382331572286686e-06 0.015050185803328788 4.066508448808955e-05 0.019150817496050986 7.91341618594998e-05']
['59866.439255911166 0.03434737298832083 6.799292444030905e-05 0.015059599481040997 4.067799432816585e-05 0.0005326243774204036 1.4386897494203728e-06 0.015059599481040995 4.067799432816585e-05 0.019287773507279834 7.923217147414217e-05']
['59866.43928744913 0.03428664257103821 6.795791096371921e-05 0.015032349327944786 4.0659367408998216e-05 0.0005316606004058986 1.438030956918128e-06 0.015032349327944786 4.0659367408998216e-05 0.019254293243093423 7.919256164977046e-05']
['59866.4393189871 0.0342689256974165 6.792281999537148e-05 0.01509814839268442 4.0701852700895084e-05 0.0005339877662734844 1.4395335667434808e-06 0.01509814839268442 4.0701852700895084e-05 0.01917077730473208 7.918428057012955e-05']
['59866.439350525055 0.0342045044650549 6.78715795393491e-05 0.015042451751400085 4.067194438240274e-05 0.0005320179005459249 1.4384757763595645e-06 0.015042451751400086 4.067194438240274e-05 0.019162052713654815 7.91249541485583e-05']
['59866.43938206302 0.03423674462610824 6.791398879948595e-05 0.01502649328166924 4.066471871354278e-05 0.0005314534851366257 1.4382202206004072e-06 0.015026493281669242 4.066471871354278e-05 0.019210251344439 7.915762264436861e-05']
['59866.43941360099 0.03420857709120886 6.79163797157159e-05 0.014982498578522243 4.062993212582414e-05 0.0005298974908086912 1.436989896736247e-06 0.014982498578522243 4.062993212582414e-05 0.019226078512686616 7.914180954614561e-05']
['59866.439445138945 0.03425408224279152 6.791105639301386e-05 0.015083793398764174 4.0687609072982715e-05 0.0005334800622200486 1.4390298014568552e-06 0.015083793398764173 4.0687609072982715e-05 0.01917028884402735 7.916686878038675e-05']
['59866.43947667691 0.03430237305479229 6.793668060296779e-05 0.01506539172547507 4.067488910485468e-05 0.0005328292361611324 1.4385799246116223e-06 0.01506539172547507 4.067488910485468e-05 0.019236981329317223 7.918231604999873e-05']
['59866.43950821487 0.034285413973210575 6.791410539023486e-05 0.015125557171887277 4.072244260902304e-05 0.0005349571535388731 1.4402617857782303e-06 0.015125557171887277 4.072244260902304e-05 0.0191598568013233 7.918739194468462e-05']
['59866.439539752835 0.0342776199948835 6.795497668021884e-05 0.0149968451341768 4.0645999691141576e-05 0.0005304048964195281 1.4375581706126296e-06 0.014996845134176802 4.0645999691141576e-05 0.019280774860706694 7.918318095720433e-05']
['59866.4395712908 0.034219176575719844 6.791348757115765e-05 0.015002284268827049 4.0653367887323786e-05 0.0005305972664563568 1.4378187672446452e-06 0.015002284268827049 4.0653367887323786e-05 0.019216892306892795 7.915136205183e-05']
['59866.43960282876 0.034340780285603986 6.797036820971024e-05 0.015009715555196123 4.064082053552816e-05 0.0005308600944472834 1.4373749954533145e-06 0.015009715555196123 4.064082053552816e-05 0.01933106473040786 7.919373238056529e-05']
['59866.439634366725 0.03433116003027636 6.798502691264618e-05 0.015050124789282042 4.067514212923403e-05 0.0005322892787475793 1.4385888735184435e-06 0.015050124789282042 4.067514212923403e-05 0.019281035240994317 7.922392991733378e-05']
['59866.43966590469 0.034429430349391034 6.805240993293946e-05 0.01508219068367729 4.068904437572815e-05 0.000533423377769283 1.4390805649072484e-06 0.01508219068367729 4.068904437572815e-05 0.019347239665713743 7.928889474504492e-05']
['59866.43969744265 0.034225054363532334 6.789795850296223e-05 0.015005362648978945 4.065641063478513e-05 0.0005307061418825547 1.4379263824222125e-06 0.015005362648978946 4.065641063478513e-05 0.019219691714553386 7.91396013041148e-05']
['59866.439728980615 0.03419135352501185 6.788534643692588e-05 0.01502722667438914 4.065466112982882e-05 0.0005314794235980922 1.4378645063418212e-06 0.015027226674389138 4.065466112982882e-05 0.019164126850622708 7.912788214303893e-05']
['59866.43976051857 0.03422925284120326 6.788803413605356e-05 0.015057414903936238 4.06705391846987e-05 0.0005325471138104508 1.4384260776572047e-06 0.015057414903936238 4.06705391846987e-05 0.019171837937267025 7.913834681386822e-05']
['59866.43979205654 0.03422642910334281 6.790383582854647e-05 0.01505967415335675 4.0677189306745915e-05 0.0005326270184133291 1.4386612776118667e-06 0.01505967415335675 4.0677189306745915e-05 0.01916675494998606 7.915531978412465e-05']
['59866.439823594505 0.03435434917063931 6.797896897209164e-05 0.015019927163136772 4.06545862549253e-05 0.0005312212561985435 1.4378618581838194e-06 0.01501992716313677 4.06545862549253e-05 0.019334422007502537 7.920817890892177e-05']
['59866.43985513246 0.03434468314472545 6.800653512154832e-05 0.01507350850140592 4.068792798218954e-05 0.0005331163083858799 1.4390410805627804e-06 0.015073508501405918 4.068792798218954e-05 0.01927117464331953 7.92489514297964e-05']
['59866.43988667043 0.03428952606104505 6.796132604526606e-05 0.015038243369977255 4.067777739893198e-05 0.0005318690595001784 1.438682077118179e-06 0.015038243369977255 4.067777739893198e-05 0.019251282691067795 7.920494562808575e-05']
['59866.439918208394 0.034231476748969966 6.791809492891976e-05 0.014976477449332897 4.063948845675554e-05 0.0005296845369256958 1.437327882804148e-06 0.014976477449332897 4.063948845675554e-05 0.019254999299637067 7.914818785544318e-05']
['59866.43994974635 0.03436489354572881 6.801244231245249e-05 0.01498536917039676 4.0638409132405105e-05 0.0005299990172278976 1.437289709514021e-06 0.01498536917039676 4.0638409132405105e-05 0.019379524375332052 7.92286097701924e-05']
['59866.43998128432 0.034332484463979 6.797505639154729e-05 0.015021948270681472 4.065797754486851e-05 0.0005312927382554901 1.4379818005300238e-06 0.015021948270681472 4.065797754486851e-05 0.019310536193297527 7.920656178292975e-05']
['59866.44001282228 0.03431984945000697 6.800708149196915e-05 0.015041655501253347 4.066968936396473e-05 0.0005319897389577491 1.4383960213970818e-06 0.015041655501253347 4.066968936396473e-05 0.019278193948753623 7.924005783703542e-05']
['59866.44004436024 0.03435498563873334 6.796751088183115e-05 0.015124367147868086 4.070969389249137e-05 0.0005349150650488614 1.4398108921662098e-06 0.015124367147868084 4.070969389249137e-05 0.019230618490865256 7.922664774109899e-05']
['59866.44007589821 0.034249396726178 6.793538710380941e-05 0.015042088755340324 4.0673705335987176e-05 0.0005320050621865396 1.4385380573523464e-06 0.015042088755340324 4.0673705335987176e-05 0.019207307970837677 7.918059817091018e-05']
['59866.44010743617 0.03430433931070823 6.795587371086006e-05 0.01500720671760306 4.0665339958728036e-05 0.0005307713624685388 1.4382421926542084e-06 0.01500720671760306 4.0665339958728036e-05 0.01929713259310517 7.919388010298071e-05']
['59866.44013897413 0.034283864714990356 6.794623222396867e-05 0.014976792938516998 4.063926373259412e-05 0.0005296956950730606 1.4373199348127875e-06 0.014976792938516996 4.063926373259412e-05 0.01930707177647336 7.917221880281504e-05']
['59866.4401705121 0.03439294907696768 6.80330606835394e-05 0.015087128007909284 4.06945196969915e-05 0.0005335979998930984 1.4392742147837104e-06 0.015087128007909284 4.06945196969915e-05 0.0193058210690584 7.927509873433766e-05']
['59866.44020205006 0.03427977566411882 6.794050452153363e-05 0.015056536210050422 4.068539540327763e-05 0.0005325160363714748 1.438951508906647e-06 0.015056536210050422 4.068539540327763e-05 0.019223239454068397 7.919099414555659e-05']
['59866.44023358802 0.034282898936915565 6.79360696990958e-05 0.014989095639452442 4.0644687284141564e-05 0.0005301308141102289 1.4375117537100963e-06 0.014989095639452442 4.0644687284141564e-05 0.019293803297463122 7.916628177820443e-05']
['59866.44026512598 0.03417388396866005 6.790344496942612e-05 0.015003654042739095 4.064686600239211e-05 0.0005306457122983614 1.4375888101054692e-06 0.015003654042739097 4.064686600239211e-05 0.019170229925920955 7.913940582625258e-05']
['59866.440296663946 0.03429126890164441 6.796637788944491e-05 0.01504839125272147 4.067534439920678e-05 0.0005322279674336581 1.438596027355333e-06 0.01504839125272147 4.067534439920678e-05 0.01924287764892294 7.92080309400815e-05']
['59866.44032820191 0.0341903845964172 6.78701384620596e-05 0.014988841438721355 4.064589713340727e-05 0.0005301218235984756 1.4375545433747703e-06 0.014988841438721357 4.064589713340727e-05 0.01920154315769584 7.911033212317256e-05']
['59866.44035973987 0.03425163834319282 6.793865194114862e-05 0.015103955188450572 4.071269984599164e-05 0.0005341931396623085 1.4399172060236033e-06 0.015103955188450572 4.071269984599164e-05 0.019147683154742252 7.920343651843867e-05']
['59866.440391277836 0.034302648239652504 6.800544530731997e-05 0.015044195264202432 4.067005956222876e-05 0.0005320795646972221 1.438409114482336e-06 0.015044195264202432 4.067005956222876e-05 0.01925845297545007 7.923884360742604e-05']
['59866.4404228158 0.034329502691911394 6.79981980418243e-05 0.015088681299403944 4.067352819689455e-05 0.0005336529363418622 1.4385317923385229e-06 0.015088681299403944 4.067352819689455e-05 0.01924082139250745 7.923440435138471e-05']
['59866.44045435376 0.03431239466209953 6.79758296220035e-05 0.015052289732176509 4.0675385596501295e-05 0.000532365847939394 1.4385974844115696e-06 0.015052289732176509 4.0675385596501295e-05 0.01926010492992302 7.921616253154222e-05']
['59866.440485891726 0.03430699243114143 6.798312179734635e-05 0.01500765087171078 4.064436305024828e-05 0.0005307870712067029 1.4375002862819108e-06 0.01500765087171078 4.064436305024828e-05 0.01929934155943065 7.920649655850975e-05']
['59866.440517429684 0.03427382524175877 6.79346491876593e-05 0.015128177002377433 4.071551012930626e-05 0.0005350498110883333 1.440016599463828e-06 0.015128177002377431 4.071551012930626e-05 0.019145648239381335 7.920144774775256e-05']
['59866.44054896765 0.03427276203597867 6.79437057781322e-05 0.014997682747553417 4.0647818245248114e-05 0.0005304345209327032 1.4376224888071486e-06 0.014997682747553415 4.0647818245248114e-05 0.019275079288425256 7.917444210705952e-05']
['59866.440580505616 0.03439166568510572 6.804047804135005e-05 0.01504865112856756 4.067809437428052e-05 0.000532237158661546 1.4386932878278586e-06 0.015048651128567563 4.067809437428052e-05 0.019343014556538154 7.92730345957458e-05']
['59866.440612043574 0.03425191188152183 6.79165991196788e-05 0.01508068180344023 4.0708146023618595e-05 0.0005333700120474469 1.4397561475034629e-06 0.01508068180344023 4.0708146023618595e-05 0.0191712300780816 7.918217974180434e-05']
['59866.44064358154 0.03422648062213546 6.789388351312801e-05 0.015063427459204876 4.066046183828465e-05 0.0005327597644530324 1.4380696644360836e-06 0.015063427459204876 4.066046183828465e-05 0.01916305316293058 7.913818658142728e-05']
['59866.440675119506 0.03425179697771628 6.793760998532782e-05 0.014980539833700292 4.063865242173049e-05 0.0005298282143818758 1.4372983141137402e-06 0.014980539833700292 4.063865242173049e-05 0.019271257144015987 7.916450543755538e-05']
['59866.440706657464 0.034343680417294825 6.799628186229033e-05 0.01507027911873912 4.067243496023208e-05 0.0005330020923382008 1.4384931270010114e-06 0.01507027911873912 4.067243496023208e-05 0.019273401298555703 7.923219871170017e-05']
['59866.44073819543 0.03418728536531699 6.783885112635475e-05 0.01505620860382378 4.067786038402861e-05 0.0005325044496713953 1.438685012115586e-06 0.015056208603823782 4.067786038402861e-05 0.019131076761493206 7.909992444728533e-05']
['59866.44076973339 0.03429668133574404 6.796767354768823e-05 0.014965466482996626 4.061490069202515e-05 0.0005292951036544434 1.4364582685160541e-06 0.014965466482996626 4.061490069202515e-05 0.019331214852747414 7.917812075130466e-05']
['59866.440801271354 0.034203553232551774 6.789569345528057e-05 0.014946167792143942 4.0629281910697775e-05 0.0005286125520890196 1.4369669000803728e-06 0.014946167792143942 4.0629281910697775e-05 0.01925738544040783 7.912372424470667e-05']
['59866.44083280932 0.034251648005745414 6.793534848860991e-05 0.015041694146488526 4.066864964721438e-05 0.0005319911057533503 1.438359248939252e-06 0.015041694146488524 4.066864964721438e-05 0.01920995385925689 7.9177968137587e-05']
['59866.44086434728 0.03423734102586167 6.79232631211598e-05 0.014954417203423522 4.0612024366597787e-05 0.0005289043153296292 1.4363565393138972e-06 0.014954417203423524 4.0612024366597787e-05 0.019282923822438146 7.913852536015211e-05']
['59866.440895885244 0.034265818964326934 6.792884833220006e-05 0.014959650730984918 4.062924360871196e-05 0.0005290894135032301 1.4369655454247343e-06 0.01495965073098492 4.062924360871196e-05 0.019306168233342014 7.915215645802141e-05']
['59866.44092742321 0.03425535212889219 6.79239036749249e-05 0.015016731952902386 4.0643361485491785e-05 0.0005311082487534279 1.4374648631748392e-06 0.015016731952902384 4.0643361485491785e-05 0.019238620175989807 7.915516106534578e-05']
['59866.44095896117 0.0342786222105854 6.793695816697287e-05 0.014953008724990308 4.061649235092443e-05 0.0005288545005952104 1.4365145619341735e-06 0.014953008724990308 4.061649235092443e-05 0.01932561348559509 7.915257251582998e-05']
['59866.44099049913 0.034250441695205386 6.792502339890297e-05 0.014951817803908515 4.060650185678588e-05 0.0005288123803780994 1.4361612204839333e-06 0.014951817803908515 4.060650185678588e-05 0.01929862389129687 7.913720235632968e-05']
['59866.44102203709 0.03433074445503146 6.798979785915756e-05 0.018525529771867257 5.324547941004795e-05 0.0006552065859086102 1.8831736100904149e-06 0.018525529771867257 5.324547941004795e-05 0.015805214683164204 8.635793936017085e-05']
['59866.44105357506 0.034256949907661795 6.792919799259131e-05 0.015031403426153852 4.066356753421789e-05 0.0005316271459735193 1.4381795059604203e-06 0.01503140342615385 4.066356753421789e-05 0.019225546481507944 7.917008061462721e-05']
['59866.44108511302 0.034347880976016716 6.796164361015379e-05 0.01511054170575165 4.070306942993343e-05 0.0005344260900592478 1.4395765997303377e-06 0.01511054170575165 4.070306942993343e-05 0.019237339270265066 7.921821042671652e-05']
['59866.44111665098 0.03428289976472014 6.79204337145516e-05 0.015024039637000804 4.065438934430662e-05 0.0005313667052082762 1.4378548938953058e-06 0.015024039637000806 4.065438934430662e-05 0.019258860127719334 7.9157846666842e-05']
['59866.44114818895 0.034269815125870066 6.792575641795274e-05 0.014981888873675365 4.063041073649821e-05 0.0005298759269108673 1.4370068241261568e-06 0.014981888873675365 4.063041073649821e-05 0.0192879262521947 7.915010209448625e-05']
['59866.44117972691 0.03434422266109293 6.79909863070578e-05 0.014997429978662397 4.063598740390122e-05 0.0005304255810619331 1.4372040583890834e-06 0.014997429978662397 4.063598740390122e-05 0.019346792682430534 7.920894956566802e-05']
['59866.44121126487 0.034294932668940986 6.79543197931094e-05 0.015095423748401919 4.067826608420279e-05 0.000533891401694434 1.4386993608240605e-06 0.01509542374840192 4.067826608420279e-05 0.019199508920539066 7.919918503470464e-05']
['59866.44124280284 0.03425208984158915 6.79258866260069e-05 0.015049391260534038 4.066176593691826e-05 0.0005322633354751026 1.4381157874902655e-06 0.015049391260534038 4.066176593691826e-05 0.019202698581055114 7.916631406752414e-05']
['59866.441274340796 0.03432666023325988 6.79666246559995e-05 0.01501709735893008 4.063728024588623e-05 0.000531121172347993 1.4372497833207613e-06 0.01501709735893008 4.063728024588623e-05 0.0193095628743298 7.918870255858606e-05']
['59866.44130587876 0.034261796799132244 6.792731668511486e-05 0.015114080724096339 4.069934382567617e-05 0.000534551257228859 1.439444833433994e-06 0.01511408072409634 4.069934382567617e-05 0.019147716075035903 7.918684827596366e-05']
['59866.44133741673 0.03428256536989259 6.795265063258041e-05 0.015020678261164048 4.065479678974472e-05 0.000531247820857163 1.4378693043298646e-06 0.01502067826116405 4.065479678974472e-05 0.01926188710872854 7.918570091884625e-05']
['59866.441368954685 0.034271806672624326 6.794489796822601e-05 0.014923006569155498 4.059583458320983e-05 0.0005277933913942053 1.4357839428575017e-06 0.014923006569155498 4.059583458320983e-05 0.01934880010346883 7.914878991759746e-05']
['59866.44140049265 0.03424942831527434 6.794493885649076e-05 0.015019483226716644 4.066898301434447e-05 0.0005312055551595031 1.4383710393896116e-06 0.015019483226716642 4.066898301434447e-05 0.019229945088557698 7.918636811745634e-05']
['59866.44143203062 0.0343341697249141 6.800655041311881e-05 0.015104096413443045 4.070332258584159e-05 0.000534198134474673 1.4395855532890394e-06 0.015104096413443045 4.070332258584159e-05 0.019230073311471054 7.925686953582732e-05']
['59866.441463568575 0.03440909959380471 6.802845631561594e-05 0.015031977705796066 4.066724860831148e-05 0.000531647456961025 1.4383096973243941e-06 0.015031977705796068 4.066724860831148e-05 0.019377121888008643 7.925715095848373e-05']
['59866.44149510654 0.03434051325472085 6.80173542219447e-05 0.015092645608888912 4.070524899728569e-05 0.0005337931451086352 1.4396536861565409e-06 0.01509264560888891 4.070524899728569e-05 0.019247867645831942 7.926712919795019e-05']
['59866.4415266445 0.03422737631829486 6.790254349526831e-05 0.015118630492751254 4.071613576208614e-05 0.0005347121723780488 1.4400387266970453e-06 0.015118630492751256 4.071613576208614e-05 0.019108745825543602 7.917423270561853e-05']
['59866.441558182465 0.03429074720522466 6.796246161082447e-05 0.015040912820800464 4.066507907171914e-05 0.0005319634720099238 1.438232965663752e-06 0.015040912820800464 4.066507907171914e-05 0.019249834384424194 7.91993992661053e-05']
['59866.44158972043 0.03407631642247126 6.779277691116498e-05 0.014983666156626396 4.064552545189885e-05 0.0005299387854368516 1.4375413978304768e-06 0.014983666156626396 4.064552545189885e-05 0.019092650265844866 7.904378116327647e-05']
['59866.44162125839 0.03439020997411133 6.803304665174944e-05 0.015023509038847959 4.065054013541421e-05 0.0005313479391374272 1.4377187559792569e-06 0.015023509038847959 4.065054013541421e-05 0.019366700935263374 7.925251951843574e-05']
['59866.441652796355 0.0343069789947778 6.796715043435231e-05 0.014973008319725242 4.062038510095726e-05 0.0005295618415645214 1.4366522398030504e-06 0.014973008319725242 4.062038510095726e-05 0.019333970675052554 7.91804851204888e-05']
['59866.44168433432 0.03425050950759092 6.792894847998451e-05 0.014986492703697224 4.0646849618536105e-05 0.0005300387540897859 1.4375882306450983e-06 0.014986492703697224 4.0646849618536105e-05 0.019264016803893697 7.916128110072676e-05']
['59866.44171587228 0.03426630311852151 6.793521651602274e-05 0.014986200760460243 4.0638643539614914e-05 0.0005300284287099486 1.4372979999731628e-06 0.014986200760460243 4.0638643539614914e-05 0.01928010235806127 7.916244685340881e-05']
['59866.441747410245 0.034266256616131065 6.792541747201392e-05 0.015113689453232947 4.06996290638231e-05 0.0005345374188528597 1.4394549216697811e-06 0.015113689453232947 4.06996290638231e-05 0.019152567162898117 7.918536572296783e-05']
['59866.4417789482 0.034299512779247074 6.796131691224453e-05 0.014979052612331427 4.064560935957739e-05 0.0005297756146858032 1.4375443654575442e-06 0.014979052612331428 4.064560935957739e-05 0.019320460166915646 7.918842185987734e-05']
['59866.44181048617 0.03427116680642628 6.793440515147756e-05 0.015030400075824544 4.066577132448039e-05 0.0005315916597147277 1.4382574490968237e-06 0.015030400075824544 4.066577132448039e-05 0.019240766730601735 7.917568036145968e-05']
['59866.441842024135 0.034298708411568846 6.796041407635734e-05 0.01507531222219801 4.068399421895437e-05 0.0005331801019592175 1.4389019521485958e-06 0.01507531222219801 4.068399421895437e-05 0.019223396189370835 7.92073561422035e-05']
['59866.44187356209 0.03424669548001245 6.789919282921315e-05 0.015023352372524175 4.066173325844054e-05 0.0005313423981996836 1.4381146317255405e-06 0.015023352372524177 4.066173325844054e-05 0.019223343107488272 7.914339478717879e-05']
['59866.44190510006 0.034406626404912606 6.804687481575879e-05 0.015069005448477188 4.068042450907784e-05 0.0005329570454675217 1.4387756994880953e-06 0.015069005448477188 4.068042450907784e-05 0.019337620956435417 7.927972067578398e-05']
['59866.441936638024 0.0343671708683071 6.798535316804343e-05 0.015049598032647438 4.067845429800992e-05 0.0005322706485426451 1.4387060175257855e-06 0.015049598032647438 4.067845429800992e-05 0.019317572835659665 7.922591046784425e-05']
['59866.44196817598 0.03419018339731147 6.786457974798604e-05 0.015091807179034798 4.0686525114117184e-05 0.0005337634917184758 1.438991464254287e-06 0.015091807179034798 4.0686525114117184e-05 0.019098376218276668 7.912644633896081e-05']
['59866.44199971395 0.03429037676052947 6.796124012150082e-05 0.014995312029567635 4.0627765544779996e-05 0.000530350673935789 1.4369132696067391e-06 0.014995312029567633 4.0627765544779996e-05 0.019295064730961837 7.917919860679259e-05']
['59866.44203125191 0.03423276867738376 6.789186327488992e-05 0.015040676892412662 4.0653645178954395e-05 0.0005319551277501161 1.4378285744299094e-06 0.015040676892412662 4.0653645178954395e-05 0.019192091784971096 7.91329511977954e-05']
['59866.44206278987 0.034365789016361836 6.802552880819377e-05 0.014986783080982492 4.0643920005262386e-05 0.0005300490240854107 1.437484616770907e-06 0.014986783080982492 4.0643920005262386e-05 0.019379005935379345 7.924267034261635e-05']
['59866.44209432784 0.03414706207087917 6.785547274259543e-05 0.015040963217499686 4.066481633815389e-05 0.0005319652544285452 1.438223673364724e-06 0.015040963217499684 4.066481633815389e-05 0.019106098853379487 7.910747416607927e-05']
['59866.4421258658 0.034186837270932316 6.787042240017018e-05 0.015016555894989694 4.064483849880097e-05 0.0005311020219785223 1.4375171018346545e-06 0.015016555894989694 4.064483849880097e-05 0.01917028137594262 7.911003181247708e-05']
['59866.44215740376 0.03427694824743828 6.797453805614884e-05 0.0149702445393853 4.063262178561799e-05 0.0005294640928305832 1.4370850239921195e-06 0.0149702445393853 4.063262178561799e-05 0.01930670370805298 7.919310435334572e-05']
['59866.44218894173 0.03440349823394048 6.805303944186033e-05 0.015056081143322771 4.068381174997037e-05 0.0005324999416783321 1.4388954986284261e-06 0.015056081143322773 4.068381174997037e-05 0.01934741709061771 7.928674993832467e-05']
['59866.44222047969 0.03436459744139704 6.799886284447332e-05 0.015042946752774785 4.0676579809834674e-05 0.000532035407638285 1.4386397210682614e-06 0.015042946752774785 4.0676579809834674e-05 0.019321650688622256 7.923654140084196e-05']
['59866.44225201765 0.03433347511106101 6.800726387284643e-05 0.015006072628348908 4.066464545225674e-05 0.0005307312522661598 1.4382176295124494e-06 0.01500607262834891 4.066464545225674e-05 0.0193274024827121 7.923762571675597e-05']
['59866.44228355561 0.03433038591005693 6.798113146023275e-05 0.01507361071606834 4.066683995835596e-05 0.0005331199234900534 1.4382952442887463e-06 0.01507361071606834 4.066683995835596e-05 0.019256775193988593 7.921632474946047e-05']
['59866.442315093576 0.03426032578106772 6.790997056734866e-05 0.01504862277590912 4.068022651917308e-05 0.0005322361558913814 1.4387686970276452e-06 0.01504862277590912 4.068022651917308e-05 0.0192117030051586 7.916214330164004e-05']
['59866.44234663154 0.03431426824207466 6.798570147546317e-05 0.0151008431700474 4.0690079943754767e-05 0.0005340830745263402 1.4391171906339915e-06 0.015100843170047402 4.0690079943754767e-05 0.01921342507202726 7.923217913789793e-05']
['59866.4423781695 0.03417178475000517 6.785103864506508e-05 0.015066173366827461 4.0670779499909805e-05 0.0005328568810689008 1.4384345770691486e-06 0.015066173366827461 4.0670779499909805e-05 0.019105611383177713 7.910673644099091e-05']
['59866.442409707466 0.034183418226018294 6.785458247297792e-05 0.015020233517105427 4.06611107929724e-05 0.0005312320912537541 1.438092616513061e-06 0.015020233517105429 4.06611107929724e-05 0.019163184708912866 7.910480575477408e-05']
['59866.44244124543 0.034240914121047995 6.791165083506144e-05 0.015009655936854167 4.065097968336912e-05 0.0005308579858797676 1.4377343018080902e-06 0.015009655936854169 4.065097968336912e-05 0.019231258184193828 7.91485594838023e-05']
['59866.44247278339 0.03429403582656297 6.79718962863708e-05 0.014999109500940484 4.0655151108786314e-05 0.0005304849820113977 1.4378818358025092e-06 0.014999109500940484 4.0655151108786314e-05 0.019294926325622488 7.920239893111444e-05']
['59866.442504321356 0.03422554413803149 6.790528510022311e-05 0.01501186925578488 4.0650778076318685e-05 0.0005309362660238702 1.4377271714172817e-06 0.015011869255784882 4.0650778076318685e-05 0.01921367488224661 7.914299402191388e-05']
['59866.442535859314 0.03444294216078779 6.806872481112774e-05 0.015036539741276443 4.066863390378327e-05 0.0005318088059604166 1.4383586921292781e-06 0.015036539741276441 4.066863390378327e-05 0.01940640241951135 7.929242763980043e-05']
['59866.44256739728 0.034262281860400395 6.794611690571971e-05 0.015042214372053902 4.0667784559827656e-05 0.000532009504968962 1.4383286527317401e-06 0.015042214372053902 4.0667784559827656e-05 0.019220067488346496 7.918676343663938e-05']
['59866.442598935246 0.034309372993795044 6.797686220091517e-05 0.015083672664992902 4.070549723094408e-05 0.0005334757921363828 1.4396624656262685e-06 0.015083672664992902 4.070549723094408e-05 0.019225700328802144 7.923251415612537e-05']
['59866.442630473204 0.03427195907202196 6.793254603183799e-05 0.01501521647980097 4.0659877924504224e-05 0.0005310546498567139 1.4380490127106403e-06 0.01501521647980097 4.0659877924504224e-05 0.019256742592220995 7.917105836859435e-05']
['59866.44266201117 0.034205686446623196 6.791144724390815e-05 0.015104186756304445 4.0708171654382064e-05 0.0005342013296997763 1.4397570540062854e-06 0.015104186756304445 4.0708171654382064e-05 0.01910149969031875 7.91777740669991e-05']
['59866.44269354913 0.03435005450603104 6.799908091004828e-05 0.015066681851993093 4.0674837104287374e-05 0.0005328748650528117 1.438578085467771e-06 0.01506668185199309 4.0674837104287374e-05 0.01928337265403795 7.923583392677587e-05']
['59866.442725087094 0.03436787674217618 6.803099955877354e-05 0.015008528839560576 4.0652529760296946e-05 0.0005308181229674075 1.4377891245648094e-06 0.015008528839560577 4.0652529760296946e-05 0.019359347902615603 7.925178279936468e-05']
['59866.44275662506 0.034265048269457685 6.792666398318584e-05 0.01499508150559723 4.064313536022281e-05 0.0005303425208181465 1.4374568656294356e-06 0.014995081505597228 4.064313536022281e-05 0.019269966763860457 7.915741362496649e-05']
['59866.44278816302 0.03428648865376439 6.794593539883454e-05 0.015090653145130117 4.069720720339499e-05 0.0005337226761183812 1.4393692658789785e-06 0.015090653145130117 4.069720720339499e-05 0.019195835508634268 7.920172227533099e-05']
['59866.442819700984 0.03420558789823353 6.790684544422492e-05 0.014953953434137869 4.062065447566149e-05 0.000528887912846459 1.436661766984322e-06 0.01495395343413787 4.062065447566149e-05 0.01925163446409566 7.912886469687865e-05']
['59866.44285123895 0.034145985467541 6.783417047236969e-05 0.014972396083885854 4.063755694140533e-05 0.0005295401881511489 1.4372595694228939e-06 0.014972396083885854 4.063755694140533e-05 0.019173589383655147 7.907519028014079e-05']
['59866.44288277691 0.034266308355670676 6.7925706128958e-05 0.014978850918517682 4.0627890487279695e-05 0.0005297684812263702 1.4369176885437235e-06 0.01497885091851768 4.0627890487279695e-05 0.019287457437152995 7.914876523714033e-05']
['59866.44291431487 0.034207088462846064 6.78790159987017e-05 0.015024770019972244 4.068103065581128e-05 0.0005313925372216661 1.4387971375433987e-06 0.015024770019972242 4.068103065581128e-05 0.01918231844287382 7.913600361511225e-05']
['59866.44294585283 0.03423770146452024 6.790079791913956e-05 0.015063842795709444 4.0686204093401863e-05 0.0005327744539769765 1.4389801104690252e-06 0.015063842795709445 4.0686204093401863e-05 0.019173858668810793 7.915734685792455e-05']
['59866.4429773908 0.03434393880879715 6.797817223851697e-05 0.015066775095237482 4.0685744258755355e-05 0.0005328781628579795 1.438963847145248e-06 0.015066775095237482 4.0685744258755355e-05 0.01927716371355967 7.922349201328052e-05']
['59866.44300892876 0.03428079957537649 6.794639175396065e-05 0.015090357732857721 4.06865731416893e-05 0.0005337122280465141 1.4389931628821773e-06 0.01509035773285772 4.06865731416893e-05 0.019190441842518773 7.919665009580093e-05']
['59866.44304046672 0.03421488390443724 6.787793712843749e-05 0.015096911936382303 4.0693224103546536e-05 0.0005339440355773958 1.4392283925390429e-06 0.015096911936382304 4.0693224103546536e-05 0.01911797196805494 7.914134720077473e-05']
['59866.44307200469 0.03430503996080196 6.799470398931139e-05 0.014997460810138752 4.065668884564878e-05 0.0005304266715023475 1.437936222118695e-06 0.014997460810138752 4.065668884564878e-05 0.01930757915066321 7.922276262846417e-05']
['59866.44310354265 0.034278208589895255 6.794482364081585e-05 0.014989438989639774 4.062689134152616e-05 0.0005301429576390123 1.4368823509913804e-06 0.014989438989639774 4.062689134152616e-05 0.01928876960025548 7.916465978994505e-05']
['59866.44313508061 0.03426473357321727 6.793679091640314e-05 0.015089575810043701 4.068784525806921e-05 0.0005336845731840769 1.439038154795522e-06 0.015089575810043703 4.068784525806921e-05 0.019175157763173568 7.918906687014098e-05']
['59866.44316661858 0.03429885749230868 6.793122511029847e-05 0.015109413430955667 4.070043928828311e-05 0.0005343861855012596 1.4394835774981866e-06 0.015109413430955667 4.070043928828311e-05 0.019189444061353013 7.919076400215662e-05']
['59866.443198156536 0.0343045302836996 6.796429302563434e-05 0.01496221195159363 4.0627418159188823e-05 0.000529179998152169 1.4369009833547406e-06 0.014962211951593628 4.0627418159188823e-05 0.019342318332105972 7.918164075564407e-05']
['59866.4432296945 0.03427879461525858 6.792599665310964e-05 0.015067490950442602 4.0672353666333415e-05 0.0005329034810567423 1.4384902518174969e-06 0.015067490950442602 4.0672353666333415e-05 0.01921130366481598 7.917184710537936e-05']
['59866.44326123247 0.03423636675142586 6.791235562770557e-05 0.014991278029684791 4.0637449883780746e-05 0.000530208000375392 1.437255783033972e-06 0.014991278029684791 4.0637449883780746e-05 0.01924508872174107 7.914221616786293e-05']
['59866.443292770426 0.03438079989004141 6.80274150754907e-05 0.015129558291620514 4.071093833958386e-05 0.0005350986642018614 1.4398549054786953e-06 0.015129558291620514 4.071093833958386e-05 0.0192512415984209 7.927868378285867e-05']
['59866.44332430839 0.03431313118887789 6.794810515766389e-05 0.015084429654720264 4.06991137528062e-05 0.0005335025651712671 1.4394366962707656e-06 0.015084429654720264 4.06991137528062e-05 0.019228701534157625 7.920456334568614e-05']
['59866.44335584636 0.03421182139947367 6.787722143199867e-05 0.015020695742616923 4.066061706084801e-05 0.0005312484391370825 1.4380751543112475e-06 0.015020695742616925 4.066061706084801e-05 0.019191125656856746 7.912397215191806e-05']
['59866.443387384315 0.03416562895038753 6.787070166121151e-05 0.014979940978213722 4.064839790041742e-05 0.0005298070342016791 1.437642989915034e-06 0.014979940978213722 4.064839790041742e-05 0.019185687972173807 7.911210018610199e-05']
['59866.44341892228 0.03422595274354368 6.789614384987715e-05 0.01501157001590684 4.0650664107797284e-05 0.0005309256825781457 1.4377231406053843e-06 0.01501157001590684 4.0650664107797284e-05 0.019214382727636842 7.913509235533985e-05']
['59866.44345046024 0.03413291385501951 6.785666829693115e-05 0.014977191289517605 4.0623852705001695e-05 0.00052970978385769 1.436774881208463e-06 0.014977191289517603 4.0623852705001695e-05 0.019155722565501902 7.908745059083276e-05']
['59866.443481998205 0.03419595614470313 6.787467160658302e-05 0.014947693198875052 4.061750491048967e-05 0.0005286665023160155 1.4365503739030583e-06 0.014947693198875052 4.061750491048967e-05 0.019248262945828078 7.909963812088611e-05']
['59866.44351353617 0.03424100077506431 6.792799806865283e-05 0.015063323025979784 4.068569387518886e-05 0.0005327560708832554 1.4389620651911017e-06 0.015063323025979786 4.068569387518886e-05 0.019177677749084528 7.918041808250625e-05']
['59866.44354507413 0.034323086778165916 6.795758972952732e-05 0.015043642935638646 4.067321235935656e-05 0.0005320600300703027 1.4385206218706595e-06 0.015043642935638646 4.067321235935656e-05 0.01927944384252727 7.91993952342824e-05']
['59866.443576612095 0.034362601513248665 6.798469227697607e-05 0.015073625642712748 4.068129773376256e-05 0.000533120451412107 1.4388065834936514e-06 0.015073625642712746 4.068129773376256e-05 0.01928897587053592 7.922680335150576e-05']
['59866.44360815006 0.034291669527917054 6.792276758642302e-05 0.015106392005096787 4.070785975644009e-05 0.0005342793244211204 1.4397460228731286e-06 0.015106392005096787 4.070785975644009e-05 0.019185277522820267 7.918732349656245e-05']
['59866.44363968802 0.03430730211894004 6.797514017169506e-05 0.014968843698101423 4.064073872981741e-05 0.0005294145482050684 1.4373721021681502e-06 0.014968843698101421 4.064073872981741e-05 0.019338458420838624 7.919778611720704e-05']
['59866.443671225985 0.03418925172163881 6.789577185515645e-05 0.015010279398851049 4.065477806714533e-05 0.0005308800363372418 1.4378686421533665e-06 0.01501027939885105 4.065477806714533e-05 0.019178972322787757 7.913688656686144e-05']
['59866.44370276394 0.03428932481916545 6.794710691437689e-05 0.015027660489926042 4.0654463264440014e-05 0.0005314947666841119 1.4378575082852223e-06 0.015027660489926044 4.0654463264440014e-05 0.019261664329239404 7.918077242205627e-05']
['59866.44373430191 0.034242796253013956 6.793028915145284e-05 0.015114949042937755 4.071401127513258e-05 0.0005345819677257014 1.4399635883414468e-06 0.015114949042937757 4.071401127513258e-05 0.0191278472100762 7.919693743012804e-05']
['59866.443765839875 0.03421049928075042 6.786734936376152e-05 0.015054657989678795 4.067529470907687e-05 0.0005324496079145058 1.4385942699264892e-06 0.015054657989678795 4.067529470907687e-05 0.019155841291071625 7.912304790219547e-05']
['59866.44379737783 0.03423810799053548 6.793366624809517e-05 0.014979367266348109 4.0642059933779776e-05 0.0005297867432951629 1.4374188301995823e-06 0.014979367266348109 4.0642059933779776e-05 0.019258740724187366 7.916287037221764e-05']
['59866.4438289158 0.03434538824888089 6.79847993118846e-05 0.015076738241766191 4.0687277104496865e-05 0.0005332305370843778 1.4390180604734166e-06 0.01507673824176619 4.0687277104496865e-05 0.019268650007114703 7.922996564214414e-05']
['59866.443860453765 0.03425211214870746 6.793605101582212e-05 0.015042041886815695 4.065819435416021e-05 0.0005320034045515684 1.4379894685901308e-06 0.015042041886815695 4.065819435416021e-05 0.01921007026189176 7.917320124742368e-05']
['59866.44389199172 0.03413438993446167 6.784305592502937e-05 0.014984765443521845 4.0632356281817444e-05 0.000529977664757582 1.4370756337160603e-06 0.014984765443521845 4.0632356281817444e-05 0.019149624490939824 7.908014045422031e-05']
['59866.44392352969 0.034245062404075655 6.792478272582591e-05 0.015022515455147212 4.065905071650055e-05 0.0005313127983024606 1.4380197562122516e-06 0.015022515455147212 4.065905071650055e-05 0.019222546948928443 7.916397232022672e-05']
['59866.44395506765 0.03421311553062254 6.786781953790753e-05 0.01507991009417545 4.068466600225805e-05 0.0005333427184154205 1.4389257116226998e-06 0.015079910094175452 4.068466600225805e-05 0.019133205436447087 7.912826913654357e-05']
['59866.44398660561 0.03434872312188112 6.799595554119576e-05 0.015056310891021676 4.067601357740556e-05 0.0005325080673409864 1.4386196946926986e-06 0.015056310891021676 4.067601357740556e-05 0.019292412230859445 7.923375575163372e-05']
['59866.44401814358 0.03439797109724312 6.804863336039573e-05 0.015105494969520458 4.0719998189800715e-05 0.0005342475982775422 1.440175332133292e-06 0.015105494969520458 4.0719998189800715e-05 0.019292476127722665 7.930154320563337e-05']
['59866.44404968154 0.03422326001066531 6.784975623875691e-05 0.015066856347000229 4.0688630099852585e-05 0.0005328810365512408 1.4390659128953817e-06 0.015066856347000229 4.0688630099852585e-05 0.019156403663665077 7.91148155598012e-05']
['59866.4440812195 0.03418777015003302 6.789613404527506e-05 0.015008567934972563 4.06551311283217e-05 0.0005308195056847563 1.4378811291381296e-06 0.015008567934972562 4.06551311283217e-05 0.01917920221506046 7.913737868640198e-05']
['59866.44411275747 0.03424672958886092 6.79478213572642e-05 0.015041212752353681 4.069558459249845e-05 0.0005319740799186535 1.4393118777578896e-06 0.015041212752353681 4.069558459249845e-05 0.01920551683650724 7.920250647879703e-05']
['59866.44414429543 0.034274602336261444 6.793792232178948e-05 0.01501559707743573 4.066400917176995e-05 0.0005310681107444697 1.4381951256936347e-06 0.01501559707743573 4.066400917176995e-05 0.019259005258825714 7.917779317032833e-05']
['59866.44417583339 0.03433834856628292 6.798263110452044e-05 0.015074411521912232 4.068744217251942e-05 0.0005331482462030561 1.4390238985604692e-06 0.01507441152191223 4.068744217251942e-05 0.01926393704437069 7.922818994799403e-05']
['59866.44420737135 0.03425585654735849 6.792532589334142e-05 0.015077363936437124 4.06920407642799e-05 0.0005332526665065434 1.4391865404737896e-06 0.015077363936437122 4.06920407642799e-05 0.01917849261092137 7.918138720228673e-05']
['59866.44423890932 0.03420808556853433 6.791647376841858e-05 0.015024188774406134 4.065763155662889e-05 0.0005313719798650002 1.4379695636992264e-06 0.015024188774406134 4.065763155662889e-05 0.019183896794128196 7.915611418539237e-05']
['59866.44427044728 0.03427142786693381 6.792494310169964e-05 0.015089163536822088 4.068415733932092e-05 0.0005336699920016048 1.4389077213514082e-06 0.01508916353682209 4.068415733932092e-05 0.01918226433011172 7.917700773444114e-05']
['59866.44430198524 0.03427947187666194 6.793129068732803e-05 0.01509299679715437 4.0682881550964864e-05 0.000533805565852725 1.4388625995684737e-06 0.01509299679715437 4.0682881550964864e-05 0.019186475079507576 7.918179781828712e-05']
['59866.444333523206 0.034376496369137345 6.796640784858563e-05 0.015057977117871754 4.067688109219341e-05 0.0005325669980608759 1.4386503767519635e-06 0.015057977117871754 4.067688109219341e-05 0.01931851925126559 7.920884578901983e-05']
['59866.44436506117 0.03425598719256212 6.791116665927717e-05 0.014985395937778052 4.062881671073536e-05 0.0005299999639303523 1.4369504469973629e-06 0.01498539593777805 4.062881671073536e-05 0.019270591254784072 7.913676329202912e-05']
['59866.44439659913 0.03434194702174604 6.798942763021183e-05 0.01496488118181017 4.062584640052383e-05 0.0005292744028595496 1.4368453937634337e-06 0.01496488118181017 4.062584640052383e-05 0.01937706583993587 7.92024094661442e-05']
['59866.444428137096 0.03431218199764293 6.798756392405357e-05 0.015009551774165067 4.064906807059502e-05 0.000530854301878244 1.4376666923364736e-06 0.015009551774165067 4.064906807059502e-05 0.019302630223477862 7.921272362023123e-05']
['59866.444459675055 0.034367081479654185 6.798813280269279e-05 0.015043409161057727 4.06597358281865e-05 0.0005320517619858311 1.438043987081449e-06 0.015043409161057729 4.06597358281865e-05 0.019323672318596455 7.921868668195973e-05']
['59866.44449121302 0.03419811701744484 6.785740667057254e-05 0.015009715742384995 4.064004757836463e-05 0.0005308601010677354 1.4373476576858982e-06 0.015009715742384994 4.064004757836463e-05 0.019188401275059844 7.909640388302874e-05']
['59866.444522750986 0.03426171546806125 6.794117060163542e-05 0.01498577437670416 4.063992524237669e-05 0.0005300133484694075 1.4373433309354094e-06 0.014985774376704158 4.063992524237669e-05 0.01927594109135709 7.916821449563261e-05']
['59866.444554288944 0.034258296743042725 6.793336776677283e-05 0.015038854029034508 4.06634172228212e-05 0.0005318906571462906 1.4381741897822456e-06 0.015038854029034507 4.06634172228212e-05 0.019219442714008217 7.917358117688527e-05']
['59866.44458582691 0.034270594454314615 6.795979848011992e-05 0.015043025648835947 4.0674179737349065e-05 0.0005320381980156461 1.4385548358682918e-06 0.015043025648835948 4.0674179737349065e-05 0.019227568805478667 7.920178727001485e-05']
['59866.444617364876 0.03428943125331694 6.794598837339714e-05 0.015082560755146376 4.066926018395935e-05 0.0005334364663700835 1.4383808422594524e-06 0.015082560755146378 4.066926018395935e-05 0.01920687049817056 7.918741099409931e-05']
['59866.444648902834 0.03432455003553713 6.800365307093305e-05 0.015073149417146343 4.068088993392958e-05 0.0005331036083781248 1.4387921605249377e-06 0.015073149417146344 4.068088993392958e-05 0.019251400618390785 7.924286489525928e-05']
['59866.4446804408 0.034297075551047496 6.79688432917797e-05 0.01500393014961774 4.064992077421353e-05 0.0005306554775815966 1.4376968505577797e-06 0.015003930149617742 4.064992077421353e-05 0.019293145401429755 7.919709412202157e-05']
['59866.44471197876 0.03437068824642268 6.799671834991027e-05 0.014939244290270383 4.060876689172012e-05 0.0005283676833008678 1.436241329707502e-06 0.014939244290270381 4.060876689172012e-05 0.019431443956152296 7.919990943696267e-05']
['59866.444743516724 0.03435905416979046 6.798682151063699e-05 0.015029767219302161 4.065619115244486e-05 0.0005315692769938821 1.4379186198223512e-06 0.015029767219302161 4.065619115244486e-05 0.0193292869504883 7.921574198442723e-05']
['59866.44477505469 0.034305406040200326 6.796564987022898e-05 0.015082336063784622 4.069505375606651e-05 0.0005334285195387738 1.4392931032596416e-06 0.015082336063784622 4.069505375606651e-05 0.019223069976415704 7.921752938896605e-05']
['59866.44480659265 0.034099393091038994 6.781487970497888e-05 0.015008527562868796 4.066643657793665e-05 0.0005308180778136725 1.4382809776248174e-06 0.015008527562868797 4.066643657793665e-05 0.019090865528170197 7.907349096472281e-05']
['59866.444838130614 0.0342700171703928 6.79344204453698e-05 0.015084290818947283 4.0686527514760216e-05 0.0005334976548602565 1.4389915491596658e-06 0.015084290818947283 4.0686527514760216e-05 0.019185726351445512 7.918635616353121e-05']
['59866.44486966858 0.03420298359801924 6.78980324781714e-05 0.015044852418263652 4.066596502426962e-05 0.0005321028067677146 1.438264299825475e-06 0.015044852418263654 4.066596502426962e-05 0.019158131179755584 7.914457357116746e-05']
['59866.44490120654 0.03412896420807483 6.782023556659422e-05 0.014997507867272108 4.06514215058982e-05 0.0005304283358079878 1.4377499280835285e-06 0.014997507867272107 4.06514215058982e-05 0.019131456340802724 7.907036374494893e-05']
['59866.4449327445 0.03421186366685684 6.787944029123062e-05 0.015067803076813777 4.0690301975810085e-05 0.0005329145202689294 1.4391250434115757e-06 0.015067803076813777 4.0690301975810085e-05 0.019144060590043067 7.914113398943281e-05']
['59866.44496428246 0.03426492168284086 6.790951240993286e-05 0.015036350026796697 4.0664789378254625e-05 0.000531802096183255 1.4382227198533389e-06 0.015036350026796697 4.0664789378254625e-05 0.01922857165604416 7.915381842294555e-05']
['59866.44499582043 0.034404561368649535 6.8001244260381e-05 0.015041651019479633 4.066185632219689e-05 0.000531989580447429 1.4381189842155712e-06 0.015041651019479633 4.066185632219689e-05 0.019362910349169902 7.923102789013268e-05']
['59866.44502735839 0.034269918859784955 6.794711280944717e-05 0.01497323275183346 4.063007290224822e-05 0.0005295697792266128 1.4369948756837499e-06 0.01497323275183346 4.063007290224822e-05 0.019296686107951495 7.916825729534372e-05']
['59866.44505889635 0.03425101881878629 6.794989079124015e-05 0.015003589485737578 4.064458082360157e-05 0.0005306434290614941 1.437507988438722e-06 0.015003589485737578 4.064458082360157e-05 0.01924742933304871 7.917808793389585e-05']
['59866.44509043432 0.03430362695310745 6.794483178377296e-05 0.015020249119587123 4.065094787636899e-05 0.0005312326430786621 1.43773317686558e-06 0.015020249119587123 4.065094787636899e-05 0.019283377833520327 7.917701515826718e-05']
['59866.44512197228 0.03416717862496938 6.784297195704854e-05 0.014995252796747866 4.063241751909532e-05 0.0005303485790033313 1.4370777995417216e-06 0.014995252796747864 4.063241751909532e-05 0.01917192582822152 7.908009988240378e-05']
['59866.44515351024 0.03430453028419339 6.795827564349566e-05 0.015113703886514935 4.071363327633549e-05 0.0005345379293257871 1.4399502193687716e-06 0.015113703886514935 4.071363327633549e-05 0.019190826397678454 7.922074957356354e-05']
['59866.44518504821 0.034229456778036904 6.791193688787794e-05 0.015054074925180022 4.067264877404375e-05 0.0005324289862262566 1.4385006891176844e-06 0.01505407492518002 4.067264877404375e-05 0.019175381852856884 7.91599363956278e-05']
['59866.445216586166 0.03439343114631866 6.803230153467783e-05 0.015057216688234051 4.0675486971253265e-05 0.0005325401033640505 1.4386010698099876e-06 0.01505721668823405 4.0675486971253265e-05 0.01933621445808461 7.926467871917429e-05']
['59866.44524812413 0.03427971111408209 6.79239526651423e-05 0.014987611921730652 4.063619796820237e-05 0.0005300783383303231 1.4372115055778316e-06 0.01498761192173065 4.063619796820237e-05 0.01929209919235144 7.91515251335527e-05']
['59866.4452796621 0.03427652274548093 6.79314031423916e-05 0.015088689199131661 4.06871004103048e-05 0.0005336532157375768 1.4390118111947315e-06 0.015088689199131663 4.06871004103048e-05 0.019187833546349266 7.918406198656618e-05']
['59866.445311200056 0.03432770529485984 6.797993375329022e-05 0.015055050827789603 4.0685772959172404e-05 0.0005324635017205435 1.4389648622148574e-06 0.015055050827789601 4.0685772959172404e-05 0.019272654467070237 7.922501823532167e-05']
['59866.44534273802 0.034293883430414326 6.796335345639547e-05 0.015026997893031453 4.067168817429919e-05 0.0005314713321127671 1.4384667148515333e-06 0.015026997893031453 4.067168817429919e-05 0.019266885537382872 7.92035582028129e-05']
['59866.44537427599 0.03429826966801067 6.795677740815827e-05 0.01510506571801184 4.069341539891362e-05 0.000534232416611003 1.4392351582286567e-06 0.01510506571801184 4.069341539891362e-05 0.01919320394999883 7.920907556922067e-05']
['59866.445405813945 0.034290036991387836 6.796516250383212e-05 0.014981420408895739 4.064850883277344e-05 0.0005298593583585691 1.4376469133445472e-06 0.01498142040889574 4.064850883277344e-05 0.019308616582492097 7.919321046971368e-05']
['59866.44543735191 0.034180237733150716 6.788365792519726e-05 0.014970760123588217 4.061723923425355e-05 0.0005294823278915776 1.4365409775283383e-06 0.01497076012358822 4.061723923425355e-05 0.019209477609562497 7.910721292219681e-05']
['59866.44546888987 0.03434854772489574 6.800229462060737e-05 0.015082472776556678 4.067800102305077e-05 0.0005334333547639863 1.4386899862034901e-06 0.015082472776556676 4.067800102305077e-05 0.019266074948339065 7.924021605787812e-05']
['59866.445500427835 0.034242852079035824 6.793986149018237e-05 0.014917218152954825 4.06043497039077e-05 0.0005275886680495363 1.4360851036464104e-06 0.014917218152954825 4.06043497039077e-05 0.019325633926081 7.914883444613949e-05']
['59866.4455319658 0.034371712101350566 6.800902807313486e-05 0.015034709717333505 4.066274708358681e-05 0.0005317440821034177 1.4381504884551983e-06 0.015034709717333504 4.066274708358681e-05 0.01933700238401706 7.923816567687691e-05']
['59866.44556350376 0.0342365780042081 6.792612610737591e-05 0.01508532963792976 4.068522524535282e-05 0.0005335343955660429 1.438945490801127e-06 0.01508532963792976 4.068522524535282e-05 0.019151248366278344 7.917857135121996e-05']
['59866.445595041725 0.034201218382866196 6.788452416178731e-05 0.015008067804835781 4.064853068300271e-05 0.0005308018171995434 1.437647686138324e-06 0.015008067804835781 4.064853068300271e-05 0.019193150578030414 7.912402711793238e-05']
['59866.44562657969 0.03423772382331569 6.79271264599888e-05 0.014957534672711931 4.0632062677824614e-05 0.0005290145732512264 1.4370652495990003e-06 0.014957534672711931 4.0632062677824614e-05 0.019280189150603762 7.915212584994783e-05']
['59866.44565811765 0.03417596923126865 6.788533172176047e-05 0.015001839940032591 4.0634564030290346e-05 0.0005305815515399133 1.4371537168455195e-06 0.015001839940032591 4.0634564030290346e-05 0.01917412929123606 7.911754582205659e-05']
['59866.445689655615 0.034326143089472246 6.79879616434775e-05 0.01499812963595307 4.0656109284096826e-05 0.0005304503263766622 1.4379157243218462e-06 0.014998129635953069 4.0656109284096826e-05 0.01932801345351918 7.921667848726929e-05']
['59866.44572119357 0.03426926807237008 6.795008675515872e-05 0.015022797627279325 4.067214896708094e-05 0.0005313227781001559 1.4384830120624126e-06 0.015022797627279327 4.067214896708094e-05 0.019246470445090754 7.919241119977356e-05']
['59866.44575273154 0.03435647795105787 6.79841136352498e-05 0.015082735169442092 4.068434566097121e-05 0.00053344263501393 1.438914381867305e-06 0.015082735169442094 4.068434566097121e-05 0.019273742781615776 7.922787191785441e-05']
['59866.445784269505 0.034183278772251136 6.786836058951262e-05 0.015014669883663342 4.0652275024354164e-05 0.0005310353179728964 1.4377801151238146e-06 0.01501466988366334 4.0652275024354164e-05 0.019168608888587797 7.91120839933056e-05']
['59866.44581580746 0.03431967959129851 6.794842471578157e-05 0.015046171804805487 4.06550854176758e-05 0.0005321494705210439 1.4378795124547413e-06 0.015046171804805487 4.06550854176758e-05 0.019273507786493022 7.918222269976229e-05']
['59866.44584734543 0.034312680109266365 6.79861773058739e-05 0.015080230952543763 4.0689298659284305e-05 0.0005333540664588314 1.4390895583483393e-06 0.015080230952543763 4.0689298659284305e-05 0.019232449156722602 7.923218620011794e-05']
['59866.445878883394 0.034286383980414566 6.794977660669815e-05 0.015007903149045593 4.065686005369891e-05 0.0005307959936922285 1.4379422773648008e-06 0.015007903149045591 4.065686005369891e-05 0.019278480831368974 7.918429396241556e-05']
['59866.44591042135 0.034270184788788044 6.792369777575428e-05 0.015074201537269861 4.067990704809741e-05 0.0005331408195155435 1.4387573980496746e-06 0.01507420153726986 4.067990704809741e-05 0.019195983251518185 7.917375548105479e-05']
['59866.44594195932 0.03430716288856264 6.796626016715303e-05 0.015013373483327135 4.0652176629453966e-05 0.0005309894671902891 1.4377766351160942e-06 0.015013373483327137 4.0652176629453966e-05 0.019293789405235504 7.919603516478244e-05']
['59866.44597349728 0.034177844013322405 6.788496915241548e-05 0.014998489993914236 4.06546616430358e-05 0.000530463071432396 1.4378645244928051e-06 0.014998489993914238 4.06546616430358e-05 0.019179354019408165 7.91275587272483e-05']
['59866.44600503524 0.03415263206060065 6.784582219214287e-05 0.015006206243360633 4.0662856862177916e-05 0.0005307359779305125 1.438154371078625e-06 0.015006206243360633 4.0662856862177916e-05 0.01914642581724002 7.909818908876382e-05']
['59866.44603657321 0.03433387435691308 6.797395632805549e-05 0.015130382513647357 4.0714629774084326e-05 0.000535127815092923 1.4399854632671064e-06 0.015130382513647357 4.0714629774084326e-05 0.019203491843265724 7.923471345647152e-05']
['59866.44606811117 0.03423362080800168 6.791155422958387e-05 0.015065556780200148 4.0682055793487514e-05 0.0005328350737778828 1.4388333943719592e-06 0.01506555678020015 4.0682055793487514e-05 0.01916806402780153 7.916444190078107e-05']
['59866.44609964913 0.03429940341313543 6.797030093268966e-05 0.015019716332132255 4.0654215940999125e-05 0.0005312137995770933 1.4378487610078535e-06 0.015019716332132255 4.0654215940999125e-05 0.019279687081003173 7.920054976234559e-05']
['59866.4461311871 0.03422965515380747 6.791543292082236e-05 0.015006414589448075 4.065962809814796e-05 0.0005307433466659992 1.4380401769107483e-06 0.015006414589448075 4.065962809814796e-05 0.019223240564359395 7.915624666381313e-05']
['59866.44616272506 0.03421943666993619 6.789221921510537e-05 0.015018551990923236 4.066333993157899e-05 0.0005311726194306798 1.4381714561637444e-06 0.015018551990923237 4.066333993157899e-05 0.01920088467901295 7.91382375615168e-05']
['59866.44619426302 0.03413557193201785 6.7840443672036e-05 0.015079693573430702 4.0684470757261215e-05 0.000533335060560574 1.4389188062435086e-06 0.015079693573430702 4.0684470757261215e-05 0.019055878358587144 7.910468986360501e-05']
['59866.44622580098 0.03420017182988255 6.789928690060934e-05 0.014997803516516894 4.065065901955705e-05 0.0005304387922610387 1.4377229606456988e-06 0.014997803516516894 4.065065901955705e-05 0.019202368313365657 7.91377864255474e-05']
['59866.44625733895 0.0342712249811822 6.79382886792204e-05 0.015021258965588818 4.067065012499793e-05 0.0005312683590748691 1.4384300013676516e-06 0.015021258965588818 4.067065012499793e-05 0.01924996601559338 7.918151836287987e-05']
['59866.44628887691 0.03433037402393265 6.800157126026734e-05 0.015045276823073857 4.065863176949779e-05 0.0005321178170173626 1.4380049389930552e-06 0.015045276823073859 4.065863176949779e-05 0.019285097200858792 7.922965373667129e-05']
['59866.44632041487 0.034275264689063625 6.79289807140824e-05 0.015105599829400298 4.069730446391277e-05 0.0005342513069371441 1.4393727057661277e-06 0.0151055998294003 4.069730446391277e-05 0.019169664859663326 7.918722757795346e-05']
['59866.446351952836 0.034206854363225084 6.787804303961396e-05 0.014922563563412154 4.059532409991272e-05 0.0005277777232711227 1.435765888204146e-06 0.014922563563412152 4.059532409991272e-05 0.019284290799812934 7.909114404068662e-05']
['59866.4463834908 0.03442139353322865 6.801746795709691e-05 0.015089746640815594 4.0684293223742256e-05 0.0005336906150866944 1.4389125272797071e-06 0.015089746640815594 4.0684293223742256e-05 0.019331646892413054 7.925646763772749e-05']
['59866.44641502876 0.03427655368887955 6.794296061905942e-05 0.01498455613356312 4.064469192625469e-05 0.0005299702619321222 1.4375119178912628e-06 0.014984556133563122 4.064469192625469e-05 0.01929199755531643 7.917219764199558e-05']
['59866.446446566726 0.03428883766600434 6.7954564673179e-05 0.014994074050864567 4.0645681745087996e-05 0.0005303068893957811 1.437546925571282e-06 0.014994074050864569 4.0645681745087996e-05 0.01929476361513977 7.918266416611813e-05']
['59866.446478104685 0.03415618439267958 6.783309312125193e-05 0.015080022285358891 4.0697592757255254e-05 0.0005333466863668461 1.4393829020573538e-06 0.01508002228535889 4.0697592757255254e-05 0.019076162107320695 7.91051362342031e-05']
['59866.44650964265 0.03428493757558761 6.794757251865495e-05 0.015065136423762875 4.066485707137379e-05 0.0005328202067101378 1.4382251140076785e-06 0.015065136423762874 4.066485707137379e-05 0.019219801151824735 7.918650902655788e-05']
['59866.446541180616 0.03426502872468274 6.794142355181861e-05 0.014984591040232398 4.0640899474466843e-05 0.0005299714965030027 1.4373777873471577e-06 0.0149845910402324 4.0640899474466843e-05 0.01928043768445034 7.916893168624502e-05']
['59866.446572718574 0.034321670968915995 6.797431617378753e-05 0.015078344235193003 4.068180621394695e-05 0.0005332873374827001 1.4388245673013868e-06 0.015078344235193003 4.068180621394695e-05 0.01924332673372299 7.921816089838974e-05']
['59866.44660425654 0.03428409488668871 6.796207008652028e-05 0.015048407043239965 4.068880852249395e-05 0.0005322285259090075 1.4390722233054558e-06 0.015048407043239965 4.068880852249395e-05 0.019235687843448743 7.921124989182579e-05']
['59866.446635794506 0.03430358897062209 6.799098215232891e-05 0.015073767242975945 4.0699999318168706e-05 0.0005331254594969583 1.4394680167385155e-06 0.015073767242975945 4.0699999318168706e-05 0.019229821727646146 7.924180461434004e-05']
['59866.446667332464 0.0341428880500392 6.784134585338207e-05 0.015056604460923021 4.069463577487505e-05 0.0005325184502523068 1.4392783201990325e-06 0.01505660446092302 4.069463577487505e-05 0.01908628358911618 7.91106919957596e-05']
['59866.44669887043 0.03427154559638091 6.792724013699602e-05 0.015056487190632684 4.067690653684177e-05 0.0005325143026642214 1.4386512766723105e-06 0.015056487190632685 4.067690653684177e-05 0.019215058405748227 7.91752529395144e-05']
['59866.44673040839 0.03434912210529942 6.797241501292559e-05 0.015066533317189533 4.067904497307382e-05 0.0005328696117087656 1.4387269083827146e-06 0.015066533317189533 4.067904497307382e-05 0.019282588788109886 7.921511157986685e-05']
['59866.446761946354 0.03430443139150111 6.795302385666461e-05 0.014992151755907363 4.064758929179805e-05 0.0005302389021192212 1.4376143912353007e-06 0.014992151755907363 4.064758929179805e-05 0.01931227963559375 7.918232104768795e-05']
['59866.44679348432 0.03420769498051838 6.790122834720574e-05 0.014964437072678272 4.0622029646552145e-05 0.0005292586957120799 1.4367104037053983e-06 0.014964437072678272 4.0622029646552145e-05 0.01924325790784011 7.91247502597306e-05']
['59866.44682502228 0.034253014150974655 6.7900001935293e-05 0.015046585353617132 4.0676345961664734e-05 0.0005321640968182845 1.4386314503811106e-06 0.01504658535361713 4.0676345961664734e-05 0.019206428797357525 7.91515974798098e-05']
['59866.446856560244 0.03435352723338113 6.801237295024107e-05 0.015022174130819544 4.065059230336436e-05 0.0005313007264238059 1.4377206010430652e-06 0.015022174130819544 4.065059230336436e-05 0.019331353102561587 7.92347999867295e-05']
['59866.44688809821 0.0342398145914388 6.792298559037183e-05 0.015004081345836119 4.063902003747153e-05 0.0005306608250539369 1.437311315860928e-06 0.015004081345836119 4.063902003747153e-05 0.019235733245602682 7.915214413467188e-05']
['59866.44691963617 0.03430822399025955 6.796152892604587e-05 0.01503596889488495 4.066383513716097e-05 0.0005317886163993162 1.4381889704784598e-06 0.015035968894884951 4.066383513716097e-05 0.019272255095374596 7.919796021380839e-05']
['59866.44695117413 0.03428647659013277 6.79221109490978e-05 0.015019776294779663 4.065268614446894e-05 0.0005312159203219235 1.4377946555234748e-06 0.015019776294779663 4.065268614446894e-05 0.019266700295353108 7.915841109157162e-05']
['59866.44698271209 0.03429877352254169 6.792998774763984e-05 0.015085606411816901 4.0697912573194e-05 0.0005335441844398779 1.4393942132323606e-06 0.015085606411816903 4.0697912573194e-05 0.019213167110724787 7.918840396933027e-05']
['59866.44701425006 0.03430868703561904 6.796695421889916e-05 0.015004810075757909 4.0664919272261214e-05 0.0005306865986026551 1.4382273139140558e-06 0.01500481007575791 4.0664919272261214e-05 0.01930387695986113 7.920317244412282e-05']
['59866.44704578802 0.034275315192945896 6.794206037966082e-05 0.015072970581042833 4.068692633000609e-05 0.0005330972833448188 1.439005654363613e-06 0.015072970581042832 4.068692633000609e-05 0.019202344611903066 7.919311550139203e-05']
['59866.44707732598 0.03431970588522384 6.796124720416066e-05 0.014980913155487965 4.064400680737335e-05 0.0005298414179391807 1.4374876867675804e-06 0.014980913155487965 4.064400680737335e-05 0.019338792729735873 7.918753949266795e-05']
['59866.44710886395 0.03420832685475558 6.788383508573125e-05 0.014985472396743511 4.063185137547411e-05 0.0005300026681130848 1.437057776307096e-06 0.01498547239674351 4.063185137547411e-05 0.019222854458012074 7.91148684644383e-05']
['59866.44714040191 0.034280614151135716 6.79642707158824e-05 0.014996093203544593 4.063459497371173e-05 0.0005303783023135329 1.4371548112451793e-06 0.014996093203544591 4.063459497371173e-05 0.019284520947591123 7.918530420866834e-05']
['59866.44717193987 0.03425781969844315 6.795073232618026e-05 0.014989316103222941 4.0645890286914124e-05 0.0005301386114210839 1.4375543012296088e-06 0.01498931610322294 4.0645890286914124e-05 0.019268503595220213 7.917948232263242e-05']
['59866.44720347784 0.034167682672120586 6.785972980518161e-05 0.015040929347202433 4.067035086103269e-05 0.0005319640565118271 1.4384194170700165e-06 0.015040929347202435 4.067035086103269e-05 0.01912675332491815 7.911397075353856e-05']
['59866.447235015796 0.034269806217121106 6.794545673595276e-05 0.015016761505736623 4.065477098607378e-05 0.0005311092939711281 1.437868391711691e-06 0.015016761505736621 4.065477098607378e-05 0.019253044711384483 7.917951436443225e-05']
['59866.44726655376 0.034283353527047464 6.793164922813074e-05 0.014954498113520677 4.06411215282531e-05 0.0005289071769389421 1.4373856408933165e-06 0.014954498113520677 4.06411215282531e-05 0.019328855413526788 7.91606576900927e-05']
['59866.44729809173 0.03425031103173886 6.793471513485231e-05 0.015052741331861566 4.0689811732706106e-05 0.0005323818200109885 1.4391077046086168e-06 0.015052741331861566 4.0689811732706106e-05 0.019197569699877293 7.918829647931946e-05']
['59866.447329629686 0.03423516559753903 6.789967115776346e-05 0.015085158720426286 4.068427444526637e-05 0.0005335283505959232 1.4389118631269826e-06 0.015085158720426286 4.068427444526637e-05 0.019150006877112744 7.915538851190214e-05']
['59866.44736116765 0.03431782575645928 6.795637605592983e-05 0.01496388328507588 4.062854078848151e-05 0.0005292391094822257 1.4369406882438942e-06 0.01496388328507588 4.062854078848151e-05 0.0193539424713834 7.917542152244129e-05']
['59866.44739270562 0.03427336839559463 6.795565283196085e-05 0.014972728536919484 4.062945718333083e-05 0.0005295519462719595 1.4369730990816926e-06 0.014972728536919484 4.062945718333083e-05 0.019300639858675146 7.917527103098607e-05']
['59866.447424243575 0.034312235371122324 6.794495171626125e-05 0.015013916901801464 4.06494868963583e-05 0.0005310086866872572 1.4376815052677e-06 0.015013916901801462 4.06494868963583e-05 0.019298318469320862 7.917636799362722e-05']
['59866.44745578154 0.03425552786207768 6.793451736344265e-05 0.015020723277389757 4.065902061773143e-05 0.0005312494129804609 1.4380186916860545e-06 0.015020723277389755 4.065902061773143e-05 0.019234804584687924 7.917230959746596e-05']
['59866.4474873195 0.034209896780194704 6.790285025823203e-05 0.015040272090276167 4.067758359942291e-05 0.0005319408108032278 1.4386752228626596e-06 0.015040272090276165 4.067758359942291e-05 0.01916962468991854 7.915467693497283e-05']
['59866.447518857465 0.034250563026885 6.790723069031612e-05 0.014967545644814919 4.062534600005855e-05 0.0005293686389613033 1.436827695717306e-06 0.01496754564481492 4.062534600005855e-05 0.019283017382070076 7.91316037854174e-05']
['59866.44755039543 0.03427801593874283 6.796130415969328e-05 0.015011217260516924 4.065305445951681e-05 0.0005309132064083662 1.4378076820035823e-06 0.015011217260516924 4.065305445951681e-05 0.019266798678225904 7.919223257349665e-05']
['59866.44758193339 0.034279254027480596 6.793356513208364e-05 0.01505392711126885 4.066385731310262e-05 0.0005324237583785631 1.4381897547919556e-06 0.01505392711126885 4.066385731310262e-05 0.019225326916211746 7.917397655249747e-05']
['59866.447613471355 0.03439693262098388 6.803537805156356e-05 0.015101097109322566 4.06898215989621e-05 0.0005340920557909819 1.4391080535560416e-06 0.015101097109322567 4.06898215989621e-05 0.019295835511661315 7.927467595881133e-05']
['59866.44764500932 0.034161064081125715 6.784382515684427e-05 0.014987836864717373 4.064130089324604e-05 0.0005300862940610455 1.4373919846322598e-06 0.014987836864717375 4.064130089324604e-05 0.01917322721640834 7.908539656730449e-05']
['59866.44767654728 0.03432760611657465 6.798111494057505e-05 0.015003661374519457 4.0641138963791916e-05 0.0005306459716070471 1.4373862575493585e-06 0.015003661374519455 4.0641138963791916e-05 0.019323944742055194 7.920311966607075e-05']
['59866.447708085245 0.03427130347085569 6.792051598752293e-05 0.015072430941953433 4.0685090653920366e-05 0.0005330781975162491 1.4389407306029554e-06 0.015072430941953431 4.0685090653920366e-05 0.01919887252890226 7.917368940202974e-05']
['59866.4477396232 0.03435339678252719 6.797673331322174e-05 0.015017910561063188 4.068711827976546e-05 0.0005311499334900413 1.4390124431976194e-06 0.01501791056106319 4.068711827976546e-05 0.019335486221464 7.922296299589213e-05']
['59866.44777116117 0.03427827678388829 6.79303321875332e-05 0.015015748072136773 4.066551556063079e-05 0.0005310734510895923 1.4382484033010617e-06 0.015015748072136773 4.066551556063079e-05 0.01926252871175152 7.917205433055601e-05']
['59866.447802699135 0.034253799358342024 6.793884984793478e-05 0.014998099717253797 4.0639425415481734e-05 0.0005304492682191332 1.4373256531751823e-06 0.014998099717253795 4.0639425415481734e-05 0.01925569964108823 7.916596627819767e-05']
['59866.44783423709 0.0342570616236837 6.792042972524593e-05 0.015003128278749615 4.0651349016083376e-05 0.0005306271172010668 1.4377473642807835e-06 0.015003128278749613 4.0651349016083376e-05 0.01925393334493409 7.91562818157188e-05']
['59866.44786577506 0.03428431943127103 6.795277875254012e-05 0.01505994051253117 4.068814795079027e-05 0.0005326364389420505 1.4390488603605875e-06 0.01505994051253117 4.068814795079027e-05 0.019224378918739862 7.920293885871323e-05']
['59866.447897313024 0.03417341954370523 6.787090810359506e-05 0.014983743650570461 4.063139641505421e-05 0.0005299415262244644 1.4370416853738207e-06 0.014983743650570461 4.063139641505421e-05 0.01918967589313477 7.91035431661814e-05']
['59866.44792885098 0.03412670563475508 6.782749831023192e-05 0.015006990557109119 4.066232372686791e-05 0.0005307637173549584 1.4381355152741973e-06 0.015006990557109119 4.066232372686791e-05 0.01911971507764596 7.90821983627992e-05']
['59866.44796038895 0.03433552046316029 6.797199296329467e-05 0.015125126721917334 4.0695579685108396e-05 0.0005349419294854353 1.439311704194471e-06 0.015125126721917334 4.0695579685108396e-05 0.019210393741242955 7.922324174955975e-05']
['59866.44799192691 0.03432530127498743 6.798395394365061e-05 0.015068817984002747 4.067638472924778e-05 0.0005329504152680192 1.4386328215038826e-06 0.015068817984002747 4.067638472924778e-05 0.019256483290984686 7.922364715445882e-05']
['59866.44802346487 0.0341782994789029 6.784529519590212e-05 0.015037706083683844 4.065880201105216e-05 0.0005318500568847446 1.4380109600563658e-06 0.015037706083683844 4.065880201105216e-05 0.019140593395219056 7.909565260615174e-05']
['59866.44805500284 0.03420184714787682 6.787876947948911e-05 0.015050596391214349 4.067855559605582e-05 0.0005323059582539567 1.4387096002112811e-06 0.01505059639121435 4.067855559605582e-05 0.01915125075666247 7.913451984709977e-05']
['59866.4480865408 0.03420377368547212 6.787555658657586e-05 0.015097930464217209 4.068754573725406e-05 0.0005339800586306407 1.4390275614136797e-06 0.01509793046421721 4.068754573725406e-05 0.019105843221254915 7.913638581625143e-05']
['59866.44811807876 0.034340768531526004 6.798639721099933e-05 0.014997268435619063 4.0649703791281726e-05 0.0005304198676455178 1.43768917635641e-06 0.014997268435619061 4.0649703791281726e-05 0.01934350009590694 7.921204847780874e-05']
['59866.44814961672 0.03423017834566954 6.791585182496353e-05 0.015016805459053243 4.066775665819123e-05 0.0005311108485017072 1.4383276659132162e-06 0.015016805459053243 4.066775665819123e-05 0.0192133728866163 7.916078170862298e-05']
['59866.44818115469 0.03432398062626135 6.79866504783299e-05 0.015050031970783398 4.06803803389423e-05 0.0005322859959647194 1.4387741372891154e-06 0.015050031970783398 4.06803803389423e-05 0.019273948655477956 7.922801264567728e-05']
['59866.44821269265 0.0342313494758959 6.788896027251116e-05 0.014969279973553412 4.063205126686921e-05 0.000529429978292787 1.4370648460190095e-06 0.01496927997355341 4.063205126686921e-05 0.01926206950234249 7.911936878562724e-05']
['59866.44824423061 0.034212096004640966 6.788091194629887e-05 0.015060690309279007 4.068208165866094e-05 0.0005326629575773244 1.438834309165338e-06 0.015060690309279007 4.068208165866094e-05 0.01915140569536196 7.91381701503335e-05']
['59866.44827576858 0.03430698933453801 6.796716160143451e-05 0.015069248194034166 4.0674733746254894e-05 0.0005329656308353676 1.438574429925154e-06 0.015069248194034166 4.0674733746254894e-05 0.019237741140503847 7.920838984277008e-05']
['59866.44830730654 0.03423007644924552 6.793921533930848e-05 0.015001824986885287 4.064519530373227e-05 0.0005305810226805115 1.4375297212276625e-06 0.015001824986885287 4.064519530373227e-05 0.019228251462360235 7.916924202112502e-05']
['59866.4483388445 0.034306949874499226 6.7957392345029e-05 0.015079528766609939 4.068552721397397e-05 0.0005333292317116452 1.438956170756397e-06 0.015079528766609939 4.068552721397397e-05 0.01922742110788929 7.920555093562081e-05']
['59866.448370382466 0.03429460203469531 6.795780915392712e-05 0.015044044197280221 4.068705378239268e-05 0.0005320742217977982 1.4390101620696872e-06 0.015044044197280221 4.068705378239268e-05 0.01925055783741509 7.920669271275562e-05']
['59866.448401920425 0.0342838798751498 6.795878761035289e-05 0.015071481986351398 4.06841873397707e-05 0.0005330446350773961 1.43890878240027e-06 0.0150714819863514 4.06841873397707e-05 0.019212397888798402 7.92060598247799e-05']
['59866.44843345839 0.03433152651553738 6.800694638318682e-05 0.01501041935888552 4.0644225933782173e-05 0.0005308849864108687 1.4374954367789418e-06 0.01501041935888552 4.0644225933782173e-05 0.019321107156651855 7.922687585738806e-05']
['59866.448464996356 0.034308848680803805 6.801330841432195e-05 0.01503316931118168 4.065954822320138e-05 0.0005316896013804329 1.4380373519123977e-06 0.015033169311181682 4.065954822320138e-05 0.01927567936962212 7.924019802585375e-05']
['59866.448496534314 0.03423661980036181 6.791326103598303e-05 0.0150171780423767 4.066694097400617e-05 0.0005311240259411831 1.4382988169865376e-06 0.0150171780423767 4.066694097400617e-05 0.01921944175798511 7.915813990187537e-05']
['59866.44852807228 0.034231920852946345 6.790708045541251e-05 0.015030643243253934 4.0659676562117614e-05 0.000531600260003258 1.4380418909730443e-06 0.015030643243253932 4.0659676562117614e-05 0.01920127760969241 7.914910532731172e-05']
['59866.448559610246 0.03425021162090132 6.789899298760061e-05 0.015097432756548793 4.06927501444663e-05 0.00053396245582272 1.439211629665611e-06 0.015097432756548793 4.06927501444663e-05 0.019152778864352526 7.915916348124328e-05']
['59866.448591148204 0.03431270784948923 6.796608287026308e-05 0.015053789491545537 4.066139403858541e-05 0.0005324188910765115 1.4381026342773763e-06 0.015053789491545535 4.066139403858541e-05 0.019258918357943692 7.920061480751634e-05']
['59866.44862268617 0.03420636140924899 6.789105623687718e-05 0.015003230745341921 4.06510831360251e-05 0.0005306307412154374 1.437737960697329e-06 0.015003230745341923 4.06510831360251e-05 0.01920313066390707 7.913094260206209e-05']
['59866.44865422413 0.034187365532751444 6.785494461155841e-05 0.015039204285785864 4.067207784915008e-05 0.0005319030449448084 1.4384804967801373e-06 0.015039204285785866 4.067207784915008e-05 0.019148161246965577 7.911075416657955e-05']
['59866.448685762094 0.03415138167215368 6.783462906065884e-05 0.01504759664523592 4.066302406180411e-05 0.0005321998639427374 1.4381602845557343e-06 0.01504759664523592 4.066302406180411e-05 0.01910378502691776 7.90886744461433e-05']
['59866.44871730006 0.03423160008371385 6.790752317590192e-05 0.01496556546757699 4.0614030445709824e-05 0.0005292986045178333 1.436427489848767e-06 0.014965565467576991 4.0614030445709824e-05 0.019266034616136858 7.912604610955042e-05']
['59866.44874883802 0.03435087634298713 6.796049560428356e-05 0.015043059698892651 4.0661345818122486e-05 0.0005320394022900542 1.438100928827369e-06 0.01504305969889265 4.0661345818122486e-05 0.019307816644094478 7.919579538410351e-05']
['59866.448780375984 0.034348849645418796 6.797188891853488e-05 0.015032374740783627 4.0657177245770606e-05 0.000531661499201214 1.437953495739494e-06 0.015032374740783627 4.0657177245770606e-05 0.01931647490463517 7.920343265760425e-05']
['59866.44881191395 0.03430476278706594 6.796634226327064e-05 0.015043137269636122 4.066720866296564e-05 0.0005320421457938905 1.4383082845467844e-06 0.015043137269636122 4.066720866296564e-05 0.01926162551742982 7.92038227681293e-05']
['59866.44884345191 0.03426983722078524 6.793736803887756e-05 0.015005178096581896 4.064924406645722e-05 0.0005306996146767213 1.4376729169167919e-06 0.015005178096581896 4.064924406645722e-05 0.019264659124203345 7.916973550053271e-05']
['59866.448874989874 0.0342439810765748 6.79301233047761e-05 0.014990161611405707 4.064202218599513e-05 0.0005301685151559088 1.4374174951448005e-06 0.01499016161140571 4.064202218599513e-05 0.019253819465169093 7.915981063373638e-05']
['59866.44890652783 0.03422095240519654 6.792334993423717e-05 0.015067574572615886 4.067663786329197e-05 0.0005329064385861268 1.4386417742893043e-06 0.015067574572615887 4.067663786329197e-05 0.019153377832580656 7.917177738405419e-05']
['59866.4489380658 0.03442484302068342 6.809691696811139e-05 0.01498862040686407 4.064709535497859e-05 0.0005301140061956605 1.4375969217938803e-06 0.014988620406864068 4.064709535497859e-05 0.01943622261381935 7.930558909281602e-05']
['59866.44896960376 0.03437612949944549 6.800978353148835e-05 0.015070362934065199 4.0671415852226194e-05 0.0005330050566989679 1.4384570834284156e-06 0.015070362934065199 4.0671415852226194e-05 0.019305766565380293 7.924326295291368e-05']
['59866.44900114172 0.03431323957122448 6.796386702616014e-05 0.015042920236186978 4.066863612033843e-05 0.0005320344698058354 1.4383587705238804e-06 0.01504292023618698 4.066863612033843e-05 0.0192703193350375 7.920243168639504e-05']
['59866.44903267969 0.03423990273096183 6.787845356417153e-05 0.015044083742538432 4.0659496548483325e-05 0.0005320756204252027 1.4380355242931064e-06 0.015044083742538432 4.0659496548483325e-05 0.019195818988423395 7.912445334938826e-05']
['59866.44906421765 0.03433520762231038 6.798086157743914e-05 0.015052599767741398 4.065593686756612e-05 0.0005323768132044354 1.4379096263344836e-06 0.015052599767741398 4.065593686756612e-05 0.019282607854568985 7.921049642181561e-05']
['59866.44909575561 0.034189522777359795 6.788296110480835e-05 0.015038263706892978 4.066023145544136e-05 0.0005318697787714371 1.4380615163097917e-06 0.015038263706892978 4.066023145544136e-05 0.019151259070466817 7.91286978937919e-05']
['59866.44912729358 0.034287131678122154 6.797126836910754e-05 0.015021759844170118 4.065923178387395e-05 0.0005312860740308919 1.438026160160587e-06 0.015021759844170118 4.065923178387395e-05 0.019265371833952036 7.920395478105891e-05']
['59866.449158831536 0.034141508439030736 6.781394556534848e-05 0.015088949176755444 4.069497193485499e-05 0.0005336624105651142 1.4392902094262497e-06 0.015088949176755444 4.069497193485499e-05 0.019052559262275292 7.908736911744303e-05']
['59866.4491903695 0.03416530580717346 6.785037797926426e-05 0.014951047055928864 4.060909997059844e-05 0.0005287851207445795 1.4362531099630408e-06 0.014951047055928864 4.060909997059844e-05 0.019214258751244596 7.907447623823434e-05']
['59866.44922190747 0.03421560593398233 6.789811215395545e-05 0.01503554906410068 4.0667072888331176e-05 0.0005317737679227431 1.4383034825014018e-06 0.01503554906410068 4.0667072888331176e-05 0.019180056869881654 7.914521117146604e-05']
['59866.449253445426 0.03421106316877782 6.7888018639574e-05 0.014998688991500923 4.0656108589557226e-05 0.0005304701095323037 1.4379156997575328e-06 0.014998688991500924 4.0656108589557226e-05 0.019212374177276892 7.913091835972217e-05']
['59866.44928498339 0.03421370900144525 6.794023530653362e-05 0.014990847781998492 4.064965023004606e-05 0.0005301927834762746 1.4376872820152068e-06 0.014990847781998494 4.064965023004606e-05 0.019222861219446753 7.917240451907623e-05']
['59866.44931652136 0.03433167820653539 6.797318273857325e-05 0.01506955997713323 4.067524183981257e-05 0.0005329766579067873 1.4385924000587668e-06 0.01506955997713323 4.067524183981257e-05 0.01926211822940216 7.921381742056566e-05']
['59866.449348059316 0.03429551720875071 6.79365622101091e-05 0.01498913834660903 4.063619601206962e-05 0.0005301323245669125 1.4372114363937877e-06 0.014989138346609029 4.063619601206962e-05 0.01930637886214168 7.9162345286502e-05']
['59866.44937959728 0.034267511840646046 6.792648552938148e-05 0.014967134020027549 4.0630838456026724e-05 0.0005293540807125011 1.4370219516099837e-06 0.014967134020027547 4.0630838456026724e-05 0.019300377820618497 7.915094737280794e-05']
['59866.44941113524 0.03426416482016681 6.792545252676916e-05 0.015093596749556399 4.069141400201203e-05 0.00053382678482837 1.4391643732931062e-06 0.015093596749556397 4.069141400201203e-05 0.019170568070610412 7.918117373750854e-05']
['59866.449442673205 0.03427458399651907 6.794296650518798e-05 0.015001779047573778 4.065070867642776e-05 0.0005305793979097316 1.4377247168982392e-06 0.015001779047573776 4.065070867642776e-05 0.019272804948945295 7.917529168510145e-05']
['59866.44947421117 0.0342895526036647 6.797020227267464e-05 0.015002232319081543 4.064027759986027e-05 0.0005305954291099592 1.4373557930321312e-06 0.015002232319081545 4.064027759986027e-05 0.01928732028458316 7.919331133613501e-05']
['59866.44950574913 0.034262729721048935 6.792327012726227e-05 0.015045174436995401 4.065721907373605e-05 0.000532114195850587 1.4379549751011517e-06 0.015045174436995401 4.065721907373605e-05 0.019217555284053535 7.916173373285103e-05']
['59866.449537287095 0.03428376652725536 6.793567336053608e-05 0.015023686489710869 4.063441694097006e-05 0.000531354215177869 1.4371485146249862e-06 0.015023686489710869 4.063441694097006e-05 0.019260080037544487 7.916066924352046e-05']
['59866.44956882506 0.03435673726365997 6.80037680407573e-05 0.01504225096005825 4.0660121672867576e-05 0.0005320107990049064 1.4380576335455066e-06 0.015042250960058248 4.0660121672867576e-05 0.01931448630360172 7.923230377941512e-05']
['59866.44960036302 0.0343839143225035 6.801759026805414e-05 0.015032969053338917 4.06761677703488e-05 0.0005316825187080842 1.4386251481525003e-06 0.015032969053338915 4.06761677703488e-05 0.01935094526916458 7.925240192167337e-05']
['59866.449631900985 0.03435942182453201 6.799763295695046e-05 0.015062382182376929 4.0668565639125224e-05 0.0005327227953476841 1.4383562777608856e-06 0.015062382182376929 4.0668565639125224e-05 0.019297039642155085 7.923137206240968e-05']
['59866.44966343894 0.034184183554703866 6.78439835712944e-05 0.015032579528757308 4.066005655642265e-05 0.0005316687420941689 1.4380553305223762e-06 0.015032579528757306 4.066005655642265e-05 0.01915160402594656 7.9095172456943e-05']
['59866.44969497691 0.03437417670403834 6.798915484490219e-05 0.015111575512663207 4.069767802759815e-05 0.0005344626534992871 1.439385917878814e-06 0.015111575512663207 4.069767802759815e-05 0.019262601191375135 7.923904450056256e-05']
['59866.449726514875 0.034281094949607904 6.79483109470173e-05 0.015041587726673026 4.0659527319770265e-05 0.0005319873419223104 1.4380366126047558e-06 0.015041587726673026 4.0659527319770265e-05 0.01923950722293488 7.91844058032874e-05']
['59866.44975805283 0.03428531068084385 6.796128022770884e-05 0.014990897603850285 4.063055831774597e-05 0.0005301945455638272 1.4370120437450653e-06 0.014990897603850285 4.063055831774597e-05 0.019294413076993568 7.918066607070773e-05']
['59866.4497895908 0.03426379736585842 6.791794708456284e-05 0.015018892090933161 4.064699079322732e-05 0.0005311846480079521 1.4375932236784195e-06 0.015018892090933161 4.064699079322732e-05 0.019244905274925256 7.915191341165534e-05']
['59866.449821128765 0.034156640954474904 6.78688118849969e-05 0.015038321274153978 4.067327976401582e-05 0.0005318718147968034 1.4385230058228171e-06 0.015038321274153978 4.067327976401582e-05 0.019118319680320926 7.912326657464918e-05']
['59866.44985266672 0.03433310138724235 6.799797265549627e-05 0.015058503850963351 4.067133696520865e-05 0.0005325856274331465 1.438454293370907e-06 0.015058503850963353 4.067133696520865e-05 0.019274597536278994 7.923308611808053e-05']
['59866.44988420469 0.034233694194570674 6.792227293414556e-05 0.015042088098355189 4.06675021433006e-05 0.0005320050389504437 1.4383186642903421e-06 0.01504208809835519 4.06675021433006e-05 0.019191606096215483 7.916616001244422e-05']
['59866.44991574265 0.034205968403976446 6.790250169457487e-05 0.014956389685546826 4.0623340235193006e-05 0.0005289740776140923 1.4367567562966322e-06 0.014956389685546825 4.0623340235193006e-05 0.01924957871842962 7.912651583537591e-05']
['59866.44994728061 0.03438055256885655 6.800928216334311e-05 0.01506599902311868 4.067060391286383e-05 0.0005328507149215565 1.4384283669477465e-06 0.015065999023118679 4.067060391286383e-05 0.01931455354573787 7.924241593370482e-05']
['59866.44997881858 0.03422280555184115 6.791335272632948e-05 0.015022735476558625 4.06702878558978e-05 0.0005313205799680633 1.4384171887192036e-06 0.015022735476558623 4.06702878558978e-05 0.01920007007528253 7.91599380546273e-05']
['59866.45001035654 0.034244597471345055 6.786638575938548e-05 0.015046661189857785 4.066785656695473e-05 0.0005321667789766325 1.4383311994628983e-06 0.015046661189857785 4.066785656695473e-05 0.01919793628148727 7.911839782119027e-05']
['59866.4500418945 0.034375476104489495 6.800032978539012e-05 0.015047884638379364 4.069346384574725e-05 0.0005322100496165942 1.4392368716848898e-06 0.015047884638379366 4.069346384574725e-05 0.019327591466110128 7.924646901084586e-05']
['59866.45007343247 0.034285471321475844 6.794731715656256e-05 0.015040871149781037 4.068893650238895e-05 0.0005319619981990959 1.4390767496683238e-06 0.015040871149781039 4.068893650238895e-05 0.019244600171694805 7.919865821129762e-05']
['59866.45010497043 0.0341284843906499 6.783121678403833e-05 0.015032614071365226 4.0660344859812324e-05 0.0005316699637890128 1.4380655271689488e-06 0.015032614071365226 4.0660344859812324e-05 0.019095870319284676 7.908437022902863e-05']
['59866.45013650839 0.03428878289973845 6.797335128569817e-05 0.015023093200317148 4.064965151719819e-05 0.0005313332318579368 1.4376873275389013e-06 0.015023093200317148 4.064965151719819e-05 0.0192656896994213 7.92008248282717e-05']
['59866.45016804635 0.0341838809475385 6.786032821971763e-05 0.015082886022148608 4.0686372933611174e-05 0.0005334479703370234 1.4389860819698927e-06 0.01508288602214861 4.0686372933611174e-05 0.01910099492538989 7.912272169598751e-05']
['59866.45019958432 0.03432703571642048 6.799680572533719e-05 0.015022358117519913 4.066446961714014e-05 0.0005313072336222119 1.4382114106173436e-06 0.015022358117519912 4.066446961714014e-05 0.019304677598900567 7.922855973758807e-05']
['59866.45023112228 0.03426940372615383 6.792541077879654e-05 0.015053749847828635 4.0679894457551525e-05 0.0005324174889668432 1.4387569527502048e-06 0.015053749847828635 4.0679894457551525e-05 0.019215653878325193 7.917521861381742e-05']
['59866.45026266024 0.03423300357701501 6.792631007139315e-05 0.015049479124473911 4.0680098874806864e-05 0.0005322664430262916 1.4387641825316804e-06 0.015049479124473911 4.0680098874806864e-05 0.0191835244525411 7.917609515743441e-05']
['59866.45029419821 0.034234063362980356 6.792527782230139e-05 0.014998127552997592 4.064509053218676e-05 0.000530450252707182 1.4375260156922485e-06 0.01499812755299759 4.064509053218676e-05 0.019235935809982764 7.915722804397894e-05']
['59866.45032573617 0.034257451490952766 6.794220233277499e-05 0.015106545224735717 4.069209738271417e-05 0.0005342847434573236 1.439188542941275e-06 0.015106545224735715 4.069209738271417e-05 0.01915090626621705 7.919589413114817e-05']
['59866.45035727413 0.03423487490055315 6.793280082032569e-05 0.014994528032194875 4.065623612487151e-05 0.0005303229457008455 1.4379202103965745e-06 0.014994528032194875 4.065623612487151e-05 0.019240346868358276 7.916940673729562e-05']
['59866.450388812096 0.03430875516854638 6.796362227287412e-05 0.015075271237467523 4.0681835170700005e-05 0.0005331786524208956 1.438825591437028e-06 0.01507527123746752 4.0681835170700005e-05 0.019233483931078862 7.920899990093244e-05']
['59866.450420350055 0.034196784901238314 6.790144607726314e-05 0.015029999261375326 4.067581971216562e-05 0.0005315774838034264 1.4386128381124253e-06 0.015029999261375326 4.067581971216562e-05 0.019166785639862988 7.915256590054472e-05']
['59866.45045188802 0.034162830872882785 6.786910065926425e-05 0.01497835327080086 4.0639655552033354e-05 0.0005297508805388034 1.4373337925906883e-06 0.014978353270800859 4.0639655552033354e-05 0.019184477602081924 7.910623507464666e-05']
['59866.450483425986 0.03424511778543206 6.788618884507355e-05 0.014961589157878733 4.0627550008479254e-05 0.0005291579713303351 1.4369056465694773e-06 0.014961589157878732 4.0627550008479254e-05 0.019283528627553326 7.911467914110802e-05']
['59866.450514963944 0.034301113154250246 6.796030981460883e-05 0.015086044775274022 4.068463806258117e-05 0.0005335596883756715 1.43892472345877e-06 0.015086044775274022 4.068463806258117e-05 0.019215068378976224 7.920759739053347e-05']
['59866.45054650191 0.03413829949598959 6.785976873364287e-05 0.015046443155047058 4.0675071647054364e-05 0.0005321590675726562 1.4385863807212674e-06 0.015046443155047058 4.0675071647054364e-05 0.01909185634094253 7.911643107519765e-05']
['59866.450578039876 0.03431729544374614 6.796395077746476e-05 0.01507058960886204 4.06727792862256e-05 0.0005330130736799438 1.438505305041879e-06 0.01507058960886204 4.06727792862256e-05 0.019246705834884102 7.920463105240549e-05']
['59866.450609577834 0.034246960404779196 6.793375529227595e-05 0.015028559772039714 4.06522044935197e-05 0.0005315265722826951 1.4377776206058267e-06 0.015028559772039712 4.06522044935197e-05 0.019218400632739482 7.916815545592668e-05']
['59866.4506411158 0.03423543037585877 6.790895556963373e-05 0.015043440142172593 4.066271626050566e-05 0.0005320528577186252 1.4381493983117033e-06 0.015043440142172595 4.066271626050566e-05 0.019191990233686177 7.915227564789834e-05']
['59866.45067265376 0.03419786484741114 6.787025927541895e-05 0.01499969409818217 4.064295410352829e-05 0.0005305056579093381 1.4374504549852353e-06 0.01499969409818217 4.064295410352829e-05 0.01919817074922897 7.910892372149997e-05']
['59866.450704191724 0.034291558317233815 6.795938079669554e-05 0.014953576396466236 4.061710155499061e-05 0.0005288745778666429 1.4365361081205032e-06 0.014953576396466236 4.061710155499061e-05 0.019337981920767577 7.917213131524685e-05']
['59866.45073572969 0.03426647641858405 6.795176305399655e-05 0.014941141063716357 4.06103835315029e-05 0.0005284347679386127 1.4362985066436417e-06 0.014941141063716355 4.06103835315029e-05 0.019325335354867697 7.916214595829406e-05']
['59866.45076726765 0.03428303474494219 6.794446374735333e-05 0.014945220117693548 4.059795322825579e-05 0.0005285790349616369 1.4358588745978841e-06 0.01494522011769355 4.059795322825579e-05 0.019337814627248637 7.914950385339794e-05']
['59866.450798805614 0.03419364925432345 6.788482598809592e-05 0.015029508777853617 4.0674879758526246e-05 0.0005315601364974297 1.4385795940528735e-06 0.015029508777853615 4.0674879758526246e-05 0.019164140476469835 7.913782561332242e-05']
['59866.45083034358 0.03418758276283068 6.789090825596436e-05 0.014993861399646797 4.063038538957483e-05 0.000530299368397456 1.437005927662124e-06 0.014993861399646796 4.063038538957483e-05 0.019193721363183886 7.912018478697548e-05']
['59866.45086188154 0.03427946164058667 6.794217227125867e-05 0.015008818264333241 4.0660320163441305e-05 0.0005308283592747903 1.438064653713499e-06 0.01500881826433324 4.0660320163441305e-05 0.01927064337625343 7.917954539356071e-05']
['59866.450893419504 0.034234217363966125 6.790149423994544e-05 0.015082219806849284 4.068353903893368e-05 0.00053342440779079 1.4388858534485316e-06 0.015082219806849286 4.068353903893368e-05 0.01915199755711684 7.915657438741133e-05']
['59866.45092495746 0.03419961660543816 6.786799609721124e-05 0.014969011862102333 4.063670465102339e-05 0.0005294204957899562 1.4372294258168414e-06 0.014969011862102333 4.063670465102339e-05 0.01923060474333583 7.910377145968191e-05']
['59866.45095649543 0.03422094728910106 6.789371429289429e-05 0.015070267103087424 4.068295528952768e-05 0.0005330016673714536 1.4388652075366445e-06 0.015070267103087424 4.068295528952768e-05 0.01915068018601363 7.914960070382457e-05']
['59866.45098803339 0.03434436414658574 6.798640524274733e-05 0.015037667130068754 4.065582115237908e-05 0.000531848679182435 1.437905533746926e-06 0.015037667130068754 4.065582115237908e-05 0.019306697016516987 7.92151948265312e-05']
['59866.45101957135 0.03435261708802536 6.799889238456247e-05 0.01502401231455523 4.065728564227263e-05 0.0005313657388744383 1.4379573294815187e-06 0.015024012314555229 4.065728564227263e-05 0.01932860477347013 7.922666370184129e-05']
['59866.45105110932 0.034217592157004456 6.790928572821828e-05 0.01499078860955759 4.0646764008317e-05 0.0005301906906792825 1.4375852028029761e-06 0.01499078860955759 4.0646764008317e-05 0.019226803547446866 7.914436500765298e-05']
['59866.45108264728 0.0342122760433693 6.789547854289188e-05 0.015109142819771628 4.069519039836762e-05 0.0005343766145884606 1.4392979359924543e-06 0.015109142819771628 4.069519039836762e-05 0.019103133223597673 7.915740349536286e-05']
['59866.45111418524 0.034183106219526076 6.787808286246205e-05 0.014987018650385884 4.063890300031038e-05 0.0005300573556487421 1.4373071765181008e-06 0.014987018650385885 4.063890300031038e-05 0.01919608756914019 7.911355490781527e-05']
['59866.45114572321 0.03431494259470406 6.795798223603268e-05 0.015097062704481879 4.070332326831143e-05 0.0005339493679081309 1.4395855774264722e-06 0.015097062704481879 4.070332326831143e-05 0.01921787989022218 7.921519977048342e-05']
['59866.451177261166 0.03419651189710459 6.786400710455745e-05 0.01504474569388104 4.067277472150034e-05 0.0005320990321648166 1.438505143597748e-06 0.015044745693881041 4.067277472150034e-05 0.01915176620322355 7.911888563316183e-05']
['59866.45120879913 0.0343625175335245 6.802307543201705e-05 0.015080150808815187 4.0693709931281e-05 0.0005333512319542624 1.4392455751802496e-06 0.015080150808815187 4.0693709931281e-05 0.01928236672470931 7.926611394032837e-05']
['59866.4512403371 0.03440821293051724 6.806847817009975e-05 0.01504238614714293 4.0639993004525004e-05 0.0005320155802699661 1.4373457275311559e-06 0.015042386147142928 4.0639993004525004e-05 0.019365826783374313 7.927752992999459e-05']
['59866.451271875056 0.03424034909460497 6.791319412166475e-05 0.01504170949346225 4.0668090885148316e-05 0.0005319916485415125 1.438339486773735e-06 0.015041709493462249 4.0668090885148316e-05 0.019198639601142722 7.915867325852299e-05']
['59866.45130341302 0.03425795024174064 6.7909286431772e-05 0.014986448784620932 4.064034302232633e-05 0.0005300372007702108 1.437358106878545e-06 0.014986448784620932 4.064034302232633e-05 0.019271501457119707 7.914106812928923e-05']
['59866.45133495099 0.0342137977733312 6.786621848286092e-05 0.01499032295258837 4.065449194651452e-05 0.0005301742214329632 1.4378585227060967e-06 0.01499032295258837 4.065449194651452e-05 0.019223474820742832 7.911138556865647e-05']
['59866.451366488945 0.03424469153786114 6.790578317214109e-05 0.014969297891494206 4.0621413657702394e-05 0.0005294306120103088 1.4366886175564365e-06 0.014969297891494206 4.0621413657702394e-05 0.019275393646366934 7.912834280946374e-05']
['59866.45139802691 0.03423423530179924 6.792584648207535e-05 0.015063579078859121 4.067511780535144e-05 0.0005327651269013531 1.4385880132370772e-06 0.015063579078859123 4.067511780535144e-05 0.01917065622294012 7.917313830325085e-05']
['59866.45142956487 0.03440266892219198 6.805055231292662e-05 0.015033102298124277 4.0657601734470195e-05 0.0005316872312783579 1.437968508956122e-06 0.015033102298124278 4.0657601734470195e-05 0.0193695666240677 7.927116908998603e-05']
['59866.451461102835 0.034173248325384285 6.787688615565099e-05 0.015031257372497824 4.065930140125108e-05 0.0005316219803821163 1.4380286223716303e-06 0.015031257372497824 4.065930140125108e-05 0.019141990952886462 7.912300844018118e-05']
['59866.4514926408 0.03420532626187038 6.790760445500468e-05 0.014995442142329578 4.063894572733379e-05 0.0005303552757333941 1.4373086876774297e-06 0.014995442142329578 4.063894572733379e-05 0.019209884119540804 7.91389073253261e-05']
['59866.45152417876 0.03441377664809161 6.804491194873673e-05 0.015096080082959564 4.071380326283322e-05 0.0005339146147809165 1.4399562314112986e-06 0.015096080082959566 4.071380326283322e-05 0.01931769656513204 7.929516894638678e-05']
['59866.451555716725 0.03417693725250123 6.785440530043828e-05 0.015029066991404424 4.065292521823573e-05 0.0005315445114980565 1.4378031110283076e-06 0.015029066991404426 4.065292521823573e-05 0.019147870261096808 7.910044656938172e-05']
['59866.45158725469 0.03423990161798831 6.789288981251912e-05 0.014967756520427143 4.061593269603998e-05 0.0005293760971604283 1.4364947681916653e-06 0.014967756520427143 4.061593269603998e-05 0.019272145097561165 7.911446439093241e-05']
['59866.45161879265 0.034398844436066445 6.804441346464654e-05 0.015033569354281918 4.066659217797189e-05 0.0005317037500108446 1.4382864808503183e-06 0.015033569354281918 4.066659217797189e-05 0.019365275081784525 7.927051105623866e-05']
['59866.451650330615 0.034232848480319836 6.789531828824e-05 0.015050145017698762 4.068665738972508e-05 0.0005322899941814708 1.4389961425469195e-06 0.015050145017698762 4.068665738972508e-05 0.019182703462621076 7.915287951180479e-05']
['59866.45168186857 0.034268070277259685 6.793745779269092e-05 0.01500177337744286 4.064203161577968e-05 0.000530579197369873 1.4374178286552057e-06 0.015001773377442858 4.064203161577968e-05 0.019266296899816827 7.916610957468919e-05']
['59866.45171340654 0.0343247197323483 6.793773849127476e-05 0.015103773745201702 4.0696147146345155e-05 0.0005341867224200978 1.4393317740302139e-06 0.015103773745201703 4.0696147146345155e-05 0.019220945987146593 7.919414564136552e-05']
['59866.451744944505 0.034275882753012736 6.793143260209439e-05 0.014979334814498691 4.065164719160615e-05 0.0005297855955457747 1.4377579100826408e-06 0.014979334814498691 4.065164719160615e-05 0.019296547938514045 7.916587620157888e-05']
['59866.45177648246 0.03441226521526085 6.80366598264887e-05 0.015051703374579978 4.067877658037054e-05 0.0005323451097816367 1.4387174159326219e-06 0.015051703374579976 4.067877658037054e-05 0.01936056184068087 7.927010750857503e-05']
['59866.45180802043 0.034351897040305925 6.798166396528192e-05 0.014988583736009212 4.064205295775425e-05 0.0005301127092294786 1.43741858347315e-06 0.01498858373600921 4.064205295775425e-05 0.019363313304296713 7.92040598966329e-05']
['59866.451839558395 0.03430664848356539 6.794550934852301e-05 0.015025550008188192 4.0654176258464815e-05 0.0005314201236616932 1.4378473575253002e-06 0.015025550008188192 4.0654176258464815e-05 0.0192810984753772 7.917925415084782e-05']
['59866.45187109635 0.034337503431127354 6.803645167737124e-05 0.015031713522408193 4.065267243316516e-05 0.0005316381133850111 1.4377941705853032e-06 0.015031713522408195 4.065267243316516e-05 0.01930578990871916 7.925653621503718e-05']
['59866.45190263432 0.034272377835789056 6.793332504916743e-05 0.014964256363403502 4.062185361818423e-05 0.0005292523044288927 1.4367041779754253e-06 0.014964256363403502 4.062185361818423e-05 0.019308121472385552 7.915220555115963e-05']
['59866.45193417228 0.034399516342756675 6.807426540807833e-05 0.01503050387592858 4.065091668342184e-05 0.0005315953308924279 1.4377320736407516e-06 0.01503050387592858 4.065091668342184e-05 0.019369012466828095 7.928809896858415e-05']
['59866.45196571024 0.03439483493095766 6.8019560872316e-05 0.015086996278079183 4.0686512669025846e-05 0.0005335933409034065 1.4389910240992195e-06 0.015086996278079183 4.0686512669025846e-05 0.019307838652878474 7.92594030663208e-05']
['59866.45199724821 0.03426544725294539 6.792192309677238e-05 0.015107552087794462 4.070613233470542e-05 0.000534320353953505 1.439684927826934e-06 0.015107552087794462 4.070613233470542e-05 0.01915789516515093 7.918571112779383e-05']
['59866.45202878617 0.03426392250355142 6.794697298996035e-05 0.015009332562700968 4.065198191093581e-05 0.0005308465488586676 1.4377697483572772e-06 0.015009332562700968 4.065198191093581e-05 0.01925458994085045 7.9179383502181e-05']
['59866.45206032413 0.0342330523334892 6.79160677288085e-05 0.014997619115097933 4.065064335271484e-05 0.000530432270394963 1.437722406544503e-06 0.014997619115097933 4.065064335271484e-05 0.019235433218391267 7.915217660136532e-05']
['59866.4520918621 0.034356359618925844 6.799512453722614e-05 0.0150747779878775 4.0705245323724826e-05 0.0005331612072852444 1.4396535562309031e-06 0.015074777987877498 4.0705245323724826e-05 0.019281581631048345 7.92480533369591e-05']
['59866.45212340006 0.03434783705151605 6.798815127429394e-05 0.015125804386083973 4.071541425790425e-05 0.0005349658969525191 1.440013208706599e-06 0.015125804386083973 4.071541425790425e-05 0.019222032665432074 7.924729441368349e-05']
['59866.45215493802 0.0342744676626569 6.795335784393157e-05 0.01500005914260383 4.0635797731103756e-05 0.000530518568714706 1.4371973500861307e-06 0.01500005914260383 4.0635797731103756e-05 0.01927440852005307 7.917655523896322e-05']
['59866.45218647598 0.03422057411288478 6.788860577208824e-05 0.014990369260122297 4.06476861061135e-05 0.000530175859226947 1.4376178153412708e-06 0.014990369260122297 4.06476861061135e-05 0.019230204852762486 7.9127095103126e-05']
['59866.45221801395 0.034222002948798944 6.790667342909677e-05 0.014970256706912002 4.0637681681944214e-05 0.0005294645231688098 1.4372639812169754e-06 0.014970256706912 4.0637681681944214e-05 0.01925174624188694 7.91374593267248e-05']
['59866.45224955191 0.03427165403308073 6.79459233838491e-05 0.014944130623459156 4.0616610788532516e-05 0.0005285405019854428 1.436518750807679e-06 0.014944130623459156 4.0616610788532516e-05 0.019327523409621575 7.916032829916149e-05']
['59866.45228108987 0.03430283870948195 6.795839457741052e-05 0.015011729771657172 4.066847036143879e-05 0.0005309313327820018 1.4383529080020495e-06 0.015011729771657172 4.066847036143879e-05 0.019291108937824777 7.919765069166031e-05']
['59866.45231262784 0.03422419733830943 6.790365850012372e-05 0.015082655375599241 4.070386477956226e-05 0.000533439812884037 1.4396047294692078e-06 0.015082655375599241 4.070386477956226e-05 0.019141541962710187 7.916887927521972e-05']
['59866.4523441658 0.034348818785121 6.797081993254603e-05 0.015094124722463444 4.069598197788392e-05 0.0005338454580501422 1.4393259323908697e-06 0.015094124722463444 4.069598197788392e-05 0.019254694062657556 7.922244196846528e-05']
['59866.45237570376 0.03439323977012988 6.803020576581774e-05 0.015104110682229333 4.0701637913285125e-05 0.0005341986391297551 1.4395259701857386e-06 0.015104110682229334 4.0701637913285125e-05 0.01928912908790055 7.927630305055647e-05']
['59866.452407241726 0.03430227147464036 6.795472711731533e-05 0.015041427730762384 4.0681770408514814e-05 0.0005319816832245209 1.4388233009432727e-06 0.015041427730762384 4.0681770408514814e-05 0.019260843743877973 7.920133446577717e-05']
['59866.452438779685 0.03430742773608478 6.797172200965294e-05 0.014985613968465511 4.0622606561081735e-05 0.0005300076751884979 1.4367308078829819e-06 0.014985613968465511 4.0622606561081735e-05 0.019321813767619267 7.918554891376317e-05']
['59866.45247031765 0.03432901702558413 6.79754761996799e-05 0.01509635904631373 4.0702387472024976e-05 0.000533924481091307 1.439552480403202e-06 0.01509635904631373 4.0702387472024976e-05 0.019232657979270398 7.922972744176332e-05']
['59866.452501855616 0.03429296260594758 6.795870468852871e-05 0.015049196081408875 4.068641056275722e-05 0.0005322564324256454 1.4389874128286923e-06 0.015049196081408877 4.068641056275722e-05 0.019243766524538703 7.920713066021201e-05']
['59866.452533393574 0.034226272974011075 6.790481078009854e-05 0.015008754172197004 4.066328486695749e-05 0.0005308260924791692 1.438169508651144e-06 0.015008754172197006 4.066328486695749e-05 0.01921751880181407 7.914901176421801e-05']
['59866.45256493154 0.034253567395510824 6.795108808237065e-05 0.015017459374893653 4.066545376353215e-05 0.0005311339760435665 1.4382462176757914e-06 0.015017459374893653 4.066545376353215e-05 0.01923610802061717 7.918983205798625e-05']
['59866.452596469506 0.03425137140129502 6.79184604678631e-05 0.014955795039673828 4.060903078630246e-05 0.0005289530463185197 1.4362506630691098e-06 0.01495579503967383 4.060903078630246e-05 0.019295576361621193 7.913286708901393e-05']
['59866.452628007464 0.0342622741094254 6.792085247970944e-05 0.014969721501692105 4.0624664869551385e-05 0.0005294455941562954 1.4368036056535046e-06 0.014969721501692106 4.0624664869551385e-05 0.019292552607733295 7.914294407800239e-05']
['59866.45265954543 0.03414531853998627 6.786201640705312e-05 0.014944102357769575 4.062060209951238e-05 0.0005285395022911724 1.4366599145569816e-06 0.014944102357769575 4.062060209951238e-05 0.019201216182216697 7.909036974093657e-05']
['59866.45269108339 0.034374083350165965 6.801860905051588e-05 0.015025212308638247 4.065280857903633e-05 0.0005314081799833257 1.4377989857604982e-06 0.015025212308638247 4.065280857903633e-05 0.01934887104152772 7.924128988431909e-05']
['59866.452722621354 0.03432086926294692 6.797771306362887e-05 0.015014005178416251 4.0665356867900964e-05 0.0005310118088338356 1.438242790693865e-06 0.01501400517841625 4.0665356867900964e-05 0.019306864084530667 7.92126298171876e-05']
['59866.45275415932 0.034266849401256724 6.792724546569598e-05 0.01495147020227519 4.061350202877326e-05 0.0005288000864851726 1.4364088009226631e-06 0.01495147020227519 4.061350202877326e-05 0.019315379198981533 7.914270164454891e-05']
['59866.45278569728 0.034140933127470775 6.785149114290263e-05 0.015011898435997867 4.064996986738056e-05 0.0005309372980627896 1.437698586873381e-06 0.015011898435997867 4.064996986738056e-05 0.01912903469147291 7.909642786203648e-05']
['59866.452817235244 0.03422712078424395 6.790588197898519e-05 0.015009694281588935 4.065837622860226e-05 0.0005308593420473408 1.4379959010826807e-06 0.015009694281588933 4.065837622860226e-05 0.019217426502655014 7.914740908513958e-05']
['59866.45284877321 0.034304647582677435 6.794646549070827e-05 0.015023735378787859 4.064241725342988e-05 0.0005313559442752615 1.4374314677970441e-06 0.01502373537878786 4.064241725342988e-05 0.019280912203889576 7.917403774522242e-05']
['59866.45288031117 0.03429337605508156 6.796808532337766e-05 0.015065207053046146 4.069607668019828e-05 0.00053282270471004 1.4393292818000814e-06 0.015065207053046146 4.069607668019828e-05 0.01922816900203541 7.922014440586765e-05']
['59866.452911849134 0.034301719197519044 6.794215585084026e-05 0.015086677811350816 4.0679488944773966e-05 0.0005335820774469554 1.4387426106695303e-06 0.015086677811350816 4.0679488944773966e-05 0.019215041386168228 7.918937657582521e-05']
['59866.45294338709 0.03426276824503198 6.790878131742828e-05 0.015066039984250547 4.0667794941301955e-05 0.0005328521636252479 1.438329019901285e-06 0.015066039984250547 4.0667794941301955e-05 0.019196728260781434 7.915473533153959e-05']
['59866.45297492506 0.03429677161117938 6.793682143696991e-05 0.015044990975479067 4.06686910126036e-05 0.0005321077072267666 1.4383607119406226e-06 0.015044990975479067 4.06686910126036e-05 0.019251780635700315 7.917925318943946e-05']
['59866.45300646302 0.03428147215282111 6.795260305820747e-05 0.014995683004968946 4.065111804400293e-05 0.0005303637945066522 1.4377391953144904e-06 0.014995683004968946 4.065111804400293e-05 0.019285789147852166 7.918377144727175e-05']
['59866.45303800098 0.034270186972675025 6.793480291979167e-05 0.015016462732117661 4.065951658476646e-05 0.0005310987270159452 1.4380362329316623e-06 0.01501646273211766 4.065951658476646e-05 0.019253724240557366 7.917280932654741e-05']
['59866.45306953895 0.034283832890374996 6.794405049479273e-05 0.015073194224339205 4.06938494838014e-05 0.0005331051931083982 1.4392505108410147e-06 0.015073194224339205 4.06938494838014e-05 0.01921063866603579 7.919837992944822e-05']
['59866.45310107691 0.03977461300666508 7.623624517936179e-05 0.01581642754606465 4.1810926732499376e-05 0.0005593916946691123 1.478759036606743e-06 0.01581642754606465 4.1810926732499376e-05 0.02395818546060043 8.694894291064265e-05']
['59866.45313261487 0.03428440382080013 6.795725223458282e-05 0.015043730511221362 4.066684527865771e-05 0.0005320631274229434 1.438295432455929e-06 0.015043730511221362 4.066684527865771e-05 0.019240673309578765 7.919583597761309e-05']
['59866.45316415284 0.03428042492137905 6.795115446671084e-05 0.01502326505431683 4.066412959655159e-05 0.0005313393099498345 1.4381993848490279e-06 0.015023265054316831 4.066412959655159e-05 0.019257159867062223 7.918920904519719e-05']
['59866.453195690796 0.03424387457812419 6.790634091436427e-05 0.01497028564750886 4.062942246384019e-05 0.0005294655467330423 1.436971871130902e-06 0.01497028564750886 4.062942246384019e-05 0.01927358893061533 7.913293313231264e-05']
['59866.45322722876 0.0343498413520081 6.801366842569071e-05 0.015047326674279082 4.0654992691821133e-05 0.0005321903156733436 1.4378762329484918e-06 0.015047326674279082 4.0654992691821133e-05 0.01930251467772902 7.923816961220033e-05']
['59866.45325876673 0.034284785376327294 6.797541580402148e-05 0.014988346299365669 4.063515015087857e-05 0.0005301043116260363 1.4371744466208225e-06 0.014988346299365669 4.063515015087857e-05 0.019296439076961623 7.919515503813386e-05']
['59866.453290304686 0.03417744013565101 6.788706628464713e-05 0.014984884392189929 4.063689624289295e-05 0.0005299818717061375 1.4372362019930853e-06 0.014984884392189929 4.063689624289295e-05 0.019192555743461077 7.91202319573933e-05']
['59866.45332184265 0.03419553080836661 6.78769200159582e-05 0.014970096287159406 4.062743110949268e-05 0.0005294588494806775 1.4369014413780456e-06 0.014970096287159406 4.062743110949268e-05 0.019225434521207205 7.910666488614825e-05']
['59866.45335338062 0.034163263856093605 6.78859937718884e-05 0.015011498623997312 4.06602286548306e-05 0.0005309231576058572 1.438061417258448e-06 0.01501149862399731 4.06602286548306e-05 0.019151765232096295 7.913129813581966e-05']
['59866.453384918575 0.03421706015883655 6.790440954552299e-05 0.014929938628644763 4.0588641287988165e-05 0.0005280385628460994 1.43552953208158e-06 0.014929938628644761 4.0588641287988165e-05 0.019287121530191787 7.911034469227833e-05']
['59866.45341645654 0.0343422622575694 6.798402303962334e-05 0.014961711045421036 4.062300440131713e-05 0.0005291622822203038 1.436744878602987e-06 0.014961711045421036 4.062300440131713e-05 0.019380551212148364 7.919631225784108e-05']
['59866.4534479945 0.034155734340243896 6.786886409591486e-05 0.014970111694454542 4.063096570976006e-05 0.0005294593944022732 1.4370264522901363e-06 0.014970111694454542 4.063096570976006e-05 0.019185622645789352 7.91015681777388e-05']
['59866.453479532465 0.0342290591411441 6.792762083159952e-05 0.015097926785680156 4.069815742489685e-05 0.0005339799285290061 1.4394028730898792e-06 0.015097926785680156 4.069815742489685e-05 0.019131132355463945 7.918649941513541e-05']
['59866.45351107043 0.03435719219683938 6.79869092154562e-05 0.01510189526200971 4.0704728290567646e-05 0.0005341202846677599 1.4396352699236347e-06 0.015101895262009711 4.0704728290567646e-05 0.01925529693482967 7.924073907958975e-05']
['59866.45354260839 0.03439455021445264 6.80050269171762e-05 0.015072534548462519 4.0672176745915564e-05 0.0005330818618469286 1.4384839945377114e-06 0.015072534548462519 4.0672176745915564e-05 0.019322015665990122 7.92395712208039e-05']
['59866.453574146355 0.03438663000181139 6.803006617211752e-05 0.014998494323976888 4.0649261918364835e-05 0.0005304632245770348 1.4376735482988675e-06 0.014998494323976886 4.0649261918364835e-05 0.019388135677834505 7.924930534642253e-05']
['59866.45360568431 0.03413742106476245 6.78554180922031e-05 0.015027512104375057 4.065804872690839e-05 0.0005314895186187957 1.4379843180796917e-06 0.015027512104375057 4.065804872690839e-05 0.01910990896038739 7.910394864194418e-05']
['59866.45363722228 0.03424663501024621 6.792941127314966e-05 0.015033039815157342 4.0683978611923766e-05 0.0005316850213954586 1.4389014001628032e-06 0.015033039815157342 4.0683978611923766e-05 0.01921359519508887 7.918074912257513e-05']
['59866.453668760245 0.03421730122900345 6.78618749438782e-05 0.015013828242803003 4.064768778818924e-05 0.0005310055510166229 1.4376178748325307e-06 0.015013828242803005 4.064768778818924e-05 0.01920347298620044 7.910416293359455e-05']
['59866.4537002982 0.034240868860861265 6.790865758005187e-05 0.015087767654643989 4.069077650784756e-05 0.0005336206227685785 1.4391418265492246e-06 0.015087767654643989 4.069077650784756e-05 0.019153101206217278 7.916643902018289e-05']
['59866.45373183617 0.03423467514190417 6.787581118488937e-05 0.015011912787038399 4.066352359569292e-05 0.0005309378056270205 1.438177951952989e-06 0.015011912787038399 4.066352359569292e-05 0.01922276235486577 7.912425604847243e-05']
['59866.453763374135 0.0341986382604701 6.787249488779278e-05 0.014998678294282258 4.0643405933298474e-05 0.0005304697311955864 1.4374664351944268e-06 0.014998678294282258 4.0643405933298474e-05 0.01919995996618784 7.911107386549836e-05']
['59866.45379491209 0.03425450991194343 6.791532935856794e-05 0.014983915260274193 4.062610827167555e-05 0.0005299475956761603 1.4368546555608223e-06 0.014983915260274193 4.062610827167555e-05 0.01927059465166924 7.913894512302185e-05']
['59866.45382645006 0.034306464925519545 6.795500484914518e-05 0.01499494997034562 4.064335520045862e-05 0.0005303378687102611 1.4374646408872624e-06 0.014994949970345622 4.064335520045862e-05 0.01931151495517392 7.918184770512742e-05']
['59866.45385798802 0.034184096309960305 6.784216053393674e-05 0.014985251889074068 4.0645324488177804e-05 0.0005299948692496224 1.4375342901927907e-06 0.01498525188907407 4.0645324488177804e-05 0.019198844420886235 7.908603636965068e-05']
['59866.45388952598 0.03433858109649951 6.799167435607723e-05 0.015080728940452773 4.0690327373963975e-05 0.0005333716791782356 1.4391259416875173e-06 0.015080728940452773 4.0690327373963975e-05 0.019257852156046737 7.923743132852812e-05']
['59866.45392106395 0.03440222265218612 6.805383128308221e-05 0.015017355251634407 4.0651590095255016e-05 0.0005311302934365888 1.437755890712304e-06 0.015017355251634407 4.0651590095255016e-05 0.019384867400551713 7.927090090051239e-05']
['59866.45395260191 0.034315151205189395 6.797219022353742e-05 0.015031063728618791 4.068037836629518e-05 0.0005316151316308835 1.4387740675209955e-06 0.015031063728618791 4.068037836629518e-05 0.019284087476570604 7.921560343650544e-05']
['59866.45398413987 0.03428673985398389 6.793945140587454e-05 0.015072107355187058 4.0690572867540675e-05 0.0005330667529754963 1.4391346242466792e-06 0.015072107355187058 4.0690572867540675e-05 0.01921463249879683 7.91927507895756e-05']
['59866.45401567784 0.03435814532950755 6.799760648245222e-05 0.015002692363792591 4.06464839756225e-05 0.0005306116998632494 1.4375752986724078e-06 0.01500269236379259 4.06464839756225e-05 0.01935545296571496 7.922001733730538e-05']
['59866.4540472158 0.03421599404884675 6.790523020481995e-05 0.01503602715604709 4.066391695434316e-05 0.0005317906769664151 1.438191864169343e-06 0.015036027156047092 4.066391695434316e-05 0.01917996689279966 7.914969634331713e-05']
['59866.45407875376 0.03430453855695996 6.79785043285847e-05 0.015022945849047328 4.065595556858335e-05 0.000531328020372834 1.4379102877476685e-06 0.01502294584904733 4.065595556858335e-05 0.01928159270791263 7.920848296707893e-05']
['59866.45411029172 0.03425651541246055 6.792729233343844e-05 0.015052117181082151 4.066281030850969e-05 0.0005323597451928155 1.438152724579421e-06 0.01505211718108215 4.066281030850969e-05 0.019204398231378404 7.916805660074172e-05']
['59866.45414182969 0.034212565215473514 6.79089965204176e-05 0.014983242988504217 4.06345136991798e-05 0.0005299238189260952 1.437151936746623e-06 0.014983242988504215 4.06345136991798e-05 0.019229322226969298 7.91378260503719e-05']
['59866.45417336765 0.03431691855399806 6.796701997141753e-05 0.014988707618734384 4.06643422008163e-05 0.0005301170906846064 1.4382069041867279e-06 0.014988707618734382 4.06643422008163e-05 0.019328210935263677 7.920293258724805e-05']
['59866.45420490561 0.03424756097506421 6.792401374946582e-05 0.015095343024896318 4.069771171107797e-05 0.0005338885466844473 1.4393871091882171e-06 0.01509534302489632 4.069771171107797e-05 0.019152217950167895 7.918317613202715e-05']
['59866.45423644358 0.03414806241451124 6.785343176951515e-05 0.015004231688847456 4.0646272255944464e-05 0.000530666142350251 1.4375678106205612e-06 0.015004231688847456 4.0646272255944464e-05 0.01914383072566378 7.909619239384794e-05']
['59866.45426798154 0.03435455158421717 6.800311497922374e-05 0.015086177243290063 4.0679528929548036e-05 0.0005335643734733504 1.4387440248416284e-06 0.015086177243290064 4.0679528929548036e-05 0.019268374340927107 7.924170442896505e-05']
['59866.4542995195 0.03424717709583339 6.790709079939849e-05 0.014975342684240823 4.064678344983839e-05 0.0005296444028204399 1.4375858904061382e-06 0.014975342684240823 4.064678344983839e-05 0.019271834411592564 7.91424916568578e-05']
['59866.454331057466 0.03423366504781394 6.792001174862827e-05 0.015051084083547352 4.06836518341976e-05 0.0005323232068418468 1.4388898427649337e-06 0.015051084083547354 4.06836518341976e-05 0.01918258096426658 7.917251746976354e-05']
['59866.454362595425 0.03419106678870354 6.786643366082131e-05 0.014979856839797566 4.063481217093282e-05 0.000529804058413938 1.4371624930254821e-06 0.014979856839797568 4.063481217093282e-05 0.01921120994890597 7.910145876028868e-05']
['59866.45439413339 0.034207280890155074 6.788007314597701e-05 0.015089939741929037 4.0702209244930306e-05 0.0005336974446415213 1.4395461769091776e-06 0.015089939741929037 4.0702209244930306e-05 0.01911734114822604 7.914779951281829e-05']
['59866.454425671356 0.0343496021018077 6.79988708813213e-05 0.015010036351680049 4.06654292614019e-05 0.0005308714403019819 1.4382453510902034e-06 0.015010036351680047 4.06654292614019e-05 0.019339565750127654 7.923082467164335e-05']
['59866.454457209315 0.03426425098143646 6.79447905232921e-05 0.01513857590559132 4.071934499944767e-05 0.0005354175970548277 1.4401522302502994e-06 0.015138575905591322 4.071934499944767e-05 0.01912567507584514 7.921211786360776e-05']
['59866.45448874728 0.0342709361851594 6.793521347822864e-05 0.015020608238293334 4.065432975781092e-05 0.0005312453443047177 1.4378527864541211e-06 0.015020608238293333 4.065432975781092e-05 0.019250327946866062 7.9170498030449e-05']
['59866.454520285246 0.03426471598234665 6.794145030449906e-05 0.015100606421536803 4.0707391409136366e-05 0.000534074701260622 1.4397294584756906e-06 0.015100606421536801 4.0707391409136366e-05 0.01916410956080985 7.92031084289963e-05']
['59866.454551823204 0.034334983586060575 6.796925119753001e-05 0.015099955231782765 4.0699237622059695e-05 0.0005340516701343452 1.4394410772494304e-06 0.015099955231782765 4.0699237622059695e-05 0.01923502835427781 7.922276851618992e-05']
['59866.45458336117 0.03432872614656423 6.799737459761717e-05 0.015127910646284498 4.071453987147049e-05 0.0005350403906685971 1.4399822836125755e-06 0.015127910646284496 4.071453987147049e-05 0.019200815500279734 7.925475827427797e-05']
['59866.45461489913 0.034291650167158384 6.79532024071015e-05 0.01503690929056029 4.0665866103005244e-05 0.0005318218760926923 1.43826080120143e-06 0.015036909290560292 4.0665866103005244e-05 0.019254740876598092 7.919185806184911e-05']
['59866.454646437094 0.03423284001824598 6.792251940567054e-05 0.014980746143365073 4.0633282115609725e-05 0.0005298355110936442 1.4371083783881766e-06 0.014980746143365073 4.0633282115609725e-05 0.01925209387488091 7.914879820881944e-05']
['59866.45467797506 0.0341980269465633 6.7893173659498e-05 0.015030614872980144 4.065608017741703e-05 0.0005315992566100779 1.4379146948836315e-06 0.015030614872980144 4.065608017741703e-05 0.019167412073583155 7.913532640326515e-05']
['59866.45470951302 0.03425799378419112 6.792370622946764e-05 0.01501523847732193 4.065294720515837e-05 0.0005310554278598687 1.4378038886566237e-06 0.015015238477321932 4.065294720515837e-05 0.01924275530686919 7.915991399952639e-05']
['59866.454741050984 0.03428581878191751 6.795433407867535e-05 0.015079321500962091 4.068789507277125e-05 0.0005333219011888923 1.4390399166302038e-06 0.015079321500962091 4.068789507277125e-05 0.01920649728095542 7.920414336086883e-05']
['59866.45477258895 0.034340739611785555 6.79954473750267e-05 0.015040091553763043 4.067143978284424e-05 0.0005319344256302339 1.438457929800894e-06 0.01504009155376304 4.067143978284424e-05 0.019300648058022514 7.923097170765705e-05']
['59866.45480412691 0.03435065658024605 6.799568101151065e-05 0.015080422021795511 4.0681555663026665e-05 0.0005333608241512511 1.4388157058752847e-06 0.015080422021795513 4.0681555663026665e-05 0.01927023455845054 7.923636543521571e-05']
['59866.454835664874 0.03421922899450063 6.789804696368623e-05 0.014965382872492801 4.0644622790591815e-05 0.0005292921465377816 1.4375094727173762e-06 0.014965382872492801 4.0644622790591815e-05 0.019253846122007832 7.913362207856049e-05']
['59866.45486720283 0.03433979326736938 6.80164682366454e-05 0.015005542675734874 4.0638195980103205e-05 0.0005307125090265758 1.43728217079347e-06 0.015005542675734876 4.0638195980103205e-05 0.019334250591634503 7.923195645636847e-05']
['59866.4548987408 0.03415330948657031 6.785656868356581e-05 0.014976232965427601 4.0620134363101944e-05 0.0005296758900763549 1.4366433717654739e-06 0.014976232965427603 4.0620134363101944e-05 0.019177076521142707 7.908545523156542e-05']
['59866.454930278764 0.03428432145306941 6.796074378253717e-05 0.014949571603778983 4.0632123977261827e-05 0.0005287329372994797 1.4370674176230982e-06 0.014949571603778985 4.0632123977261827e-05 0.01933474984929042 7.918100905128224e-05']
['59866.45496181672 0.034115106675137515 6.783675110876774e-05 0.014976736891261678 4.0623921145929675e-05 0.0005296937128068982 1.4367773018111292e-06 0.014976736891261676 4.0623921145929675e-05 0.019138369783875838 7.907039755979234e-05']
['59866.45499335469 0.03419409662785962 6.787226098542133e-05 0.01500918195919249 4.064069851417182e-05 0.0005308412223491518 1.4373706798306427e-06 0.015009181959192491 4.064069851417182e-05 0.019184914668667126 7.910948228242272e-05']
['59866.45502489265 0.03408092824974742 6.778831569808101e-05 0.014973600041707853 4.063100402717315e-05 0.0005295827694486256 1.437027807491403e-06 0.014973600041707854 4.063100402717315e-05 0.019107328208039565 7.903248846796396e-05']
['59866.45505643061 0.03427509518175124 6.792654478417418e-05 0.015058241588653237 4.068752652974543e-05 0.0005325763518013595 1.4390268820870257e-06 0.015058241588653239 4.068752652974543e-05 0.019216853593098 7.918011304251313e-05']
['59866.45508796858 0.03428024410542523 6.789343678475276e-05 0.015080728524299765 4.0686676614471106e-05 0.0005333716644598338 1.4389968224832217e-06 0.015080728524299765 4.0686676614471106e-05 0.019199515581125468 7.915127549430753e-05']
['59866.455119506536 0.03445742861678764 6.808127549901827e-05 0.015043169603226677 4.0677844830978575e-05 0.0005320432893607271 1.4386844620389655e-06 0.015043169603226677 4.0677844830978575e-05 0.01941425901356096 7.930792604567588e-05']
['59866.4551510445 0.03417586626021207 6.789513164277823e-05 0.014984951850222831 4.0642909151454066e-05 0.0005299842575460014 1.437448865130832e-06 0.01498495185022283 4.0642909151454066e-05 0.019190914409989244 7.913024052208823e-05']
['59866.45518258247 0.03425803267671726 6.792199289059846e-05 0.014984132470873426 4.064659880817303e-05 0.000529955277929618 1.4375793600430844e-06 0.014984132470873426 4.064659880817303e-05 0.01927390020584383 7.915518373993634e-05']
['59866.455214120426 0.03413104178672455 6.784763508590151e-05 0.015098811235011278 4.070706771262892e-05 0.00053401120952522 1.4397180100536414e-06 0.015098811235011278 4.070706771262892e-05 0.01903223055171327 7.912248067717676e-05']
['59866.45524565839 0.03440281388287932 6.804385759502238e-05 0.015066772562071258 4.0685012067896474e-05 0.0005328780732655514 1.4389379511909198e-06 0.015066772562071257 4.0685012067896474e-05 0.019336041320808066 7.927948513566776e-05']
['59866.45527719636 0.03431631921461637 6.793985528112075e-05 0.015050488970925736 4.067655934253507e-05 0.0005323021590384187 1.4386389971856162e-06 0.015050488970925738 4.067655934253507e-05 0.019265830243690635 7.918589783267226e-05']
['59866.455308734316 0.03420039550396491 6.788134813820584e-05 0.014958883027730234 4.0623864314715916e-05 0.0005290622615548277 1.4367752918181087e-06 0.014958883027730234 4.0623864314715916e-05 0.01924151247623468 7.910863275850968e-05']
['59866.45534027228 0.03428836101725276 6.796028227231759e-05 0.014970565957394159 4.062373419225568e-05 0.0005294754606672296 1.4367706896774968e-06 0.014970565957394159 4.062373419225568e-05 0.0193177950598586 7.917630798576129e-05']
['59866.45537181024 0.03440863476073721 6.802912017135172e-05 0.015065722483380138 4.067197262403589e-05 0.0005328409343290342 1.4384767752030126e-06 0.015065722483380136 4.067197262403589e-05 0.01934291227735707 7.92601447665757e-05']
['59866.455403348205 0.03420469882678694 6.790228015225303e-05 0.01494854668308324 4.063244411357546e-05 0.0005286966881450342 1.4370787401290488e-06 0.01494854668308324 4.063244411357546e-05 0.019256152143703704 7.913100002222826e-05']
['59866.45543488617 0.034322289806958 6.797423280940672e-05 0.015149867586972699 4.07223076010101e-05 0.0005358169585898643 1.4402570108465378e-06 0.015149867586972697 4.07223076010101e-05 0.019172422219985302 7.923889614563487e-05']
['59866.45546642413 0.03429204879930263 6.79285710152449e-05 0.015069650934605118 4.067935109797388e-05 0.00053297987486929 1.4387377353362808e-06 0.015069650934605118 4.067935109797388e-05 0.01922239786469751 7.917765067192508e-05']
['59866.455497962095 0.03433671062213881 6.7956803139506e-05 0.015067164122836877 4.068028258927839e-05 0.0005328919218947445 1.4387706801019608e-06 0.015067164122836877 4.068028258927839e-05 0.019269546499301935 7.920235150855762e-05']
['59866.45552950006 0.034257260406904584 6.793324201033922e-05 0.015077541640354202 4.06831338770857e-05 0.0005332589514969457 1.4388715237794518e-06 0.015077541640354204 4.06831338770857e-05 0.01917971876655038 7.918360153526862e-05']
['59866.45556103802 0.03429815417701114 6.795259697715275e-05 0.014996646558680316 4.064372050503405e-05 0.0005303978732480075 1.4374775608936876e-06 0.014996646558680314 4.064372050503405e-05 0.019301507618330827 7.917996875744946e-05']
['59866.455592575985 0.03436794308178212 6.802581305921403e-05 0.015085231877904792 4.069751173454615e-05 0.0005335309380124406 1.4393800364652078e-06 0.015085231877904792 4.069751173454615e-05 0.01928271120387733 7.927041505978543e-05']
['59866.45562411394 0.034165335087630685 6.786522090617504e-05 0.01494581005740825 4.0608034536336113e-05 0.0005285998998109082 1.4362154279342878e-06 0.01494581005740825 4.0608034536336113e-05 0.019219525030222437 7.908666561151889e-05']
['59866.45565565191 0.0342559751901582 6.792291580815315e-05 0.015058589441771351 4.069182765135146e-05 0.0005325886545887412 1.43917900314579e-06 0.015058589441771353 4.069182765135146e-05 0.01919738574838685 7.917921021005926e-05']
['59866.455687189875 0.03411085290291128 6.781239255581624e-05 0.01501573476515174 4.065937101530261e-05 0.000531072980451271 1.4380310844650547e-06 0.01501573476515174 4.065937101530261e-05 0.019095118137759538 7.906772436022269e-05']
['59866.45571872783 0.03417580210131023 6.785662775663203e-05 0.014994070599071574 4.0644859030643174e-05 0.0005303067673135772 1.4375178280000274e-06 0.014994070599071574 4.0644859030643174e-05 0.019181731502238654 7.909820791979411e-05']
['59866.4557502658 0.03422319984144991 6.789242655494441e-05 0.01500541439446812 4.065724612946222e-05 0.0005307079720048624 1.4379559320017202e-06 0.01500541439446812 4.065724612946222e-05 0.019217785446981793 7.913528445864203e-05']
['59866.455781803765 0.03430894061148666 6.797149302223464e-05 0.015053656519765413 4.0676462577253006e-05 0.0005324141881618231 1.4386355748138472e-06 0.015053656519765415 4.0676462577253006e-05 0.019255284091721246 7.921299433470721e-05']
['59866.45581334172 0.03431110191056655 6.795749120144132e-05 0.015093593886214443 4.070817105995479e-05 0.0005338266835583643 1.4397570329827212e-06 0.015093593886214443 4.070817105995479e-05 0.019217508024352105 7.921726959092011e-05']
['59866.45584487969 0.034286637567691514 6.79568735901484e-05 0.015049621280699858 4.0675365455660755e-05 0.0005322714707743029 1.4385967720750518e-06 0.015049621280699857 4.0675365455660755e-05 0.019237016286991655 7.919988650938188e-05']
['59866.45587641765 0.03436342899995939 6.803277271235207e-05 0.015043206516665126 4.0676130138859536e-05 0.0005320445949065482 1.4386238172108263e-06 0.015043206516665126 4.0676130138859536e-05 0.019320222483294264 7.926541317626492e-05']
['59866.45590795561 0.03425747621772572 6.793726676941072e-05 0.014984052078771867 4.0649648910686785e-05 0.0005299524346406517 1.437687235352418e-06 0.014984052078771867 4.0649648910686785e-05 0.019273424138953853 7.916985646481984e-05']
['59866.45593949358 0.03427031024497875 6.792865946596094e-05 0.015040975016870389 4.068264438162648e-05 0.0005319656717459169 1.4388542114190174e-06 0.015040975016870389 4.068264438162648e-05 0.019229335228108362 7.917941860562232e-05']
['59866.45597103154 0.034213547950540976 6.788671136127183e-05 0.015080548719888079 4.067616143043631e-05 0.0005333653051796316 1.4386249239239643e-06 0.015080548719888079 4.067616143043631e-05 0.019132999230652897 7.914010164362658e-05']
['59866.4560025695 0.034163524802748084 6.786388418289567e-05 0.014994874660640221 4.064737601276219e-05 0.0005303352051742884 1.437606848032453e-06 0.014994874660640221 4.064737601276219e-05 0.019168650142107863 7.910572642427571e-05']
['59866.45603410747 0.03423423475477862 6.7922807885309e-05 0.014988839620539306 4.063663490397672e-05 0.0005301217592934399 1.4372269590196762e-06 0.014988839620539308 4.063663490397672e-05 0.01924539513423931 7.91507670673108e-05']
['59866.45606564543 0.03432707342479172 6.796055074929055e-05 0.015044982585667376 4.066661169112377e-05 0.0005321074104978772 1.4382871709868911e-06 0.015044982585667374 4.066661169112377e-05 0.019282090839124348 7.919854648024509e-05']
['59866.45609718339 0.03414784194015414 6.78400095644784e-05 0.015026150681972696 4.0660465021613644e-05 0.0005314413681510242 1.4380697770233156e-06 0.015026150681972697 4.0660465021613644e-05 0.019121691258181445 7.909197376145311e-05']
['59866.45612872135 0.03431403314106006 6.795864540698892e-05 0.015089981904389118 4.069215725882754e-05 0.0005336989358335068 1.4391906606255894e-06 0.015089981904389118 4.069215725882754e-05 0.019224051236670942 7.921003186421532e-05']
['59866.45616025932 0.03428769679145217 6.796681172934396e-05 0.015095098326815246 4.0686531468331736e-05 0.0005338798922601878 1.4389916889886548e-06 0.015095098326815248 4.0686531468331736e-05 0.019192598464636917 7.921414860727619e-05']
['59866.45619179728 0.03416193878170885 6.787179761264898e-05 0.01500121074543355 4.064777347976616e-05 0.0005305592983331123 1.437620905552097e-06 0.01500121074543355 4.064777347976616e-05 0.019160728036275304 7.911271958436751e-05']
['59866.45622333524 0.03430419597899671 6.796505764586102e-05 0.014986397400987193 4.065656405688197e-05 0.0005300353834459212 1.4379318086188995e-06 0.014986397400987195 4.065656405688197e-05 0.01931779857800952 7.91972553925738e-05']
['59866.45625487321 0.03424017544980065 6.790947196302006e-05 0.014984100269662544 4.064362950963159e-05 0.0005299541390447547 1.4374743425896653e-06 0.014984100269662546 4.064362950963159e-05 0.019256075180138107 7.9142915046215e-05']
['59866.45628641117 0.03423584323934354 6.790041447448506e-05 0.015039166387359658 4.065441598669296e-05 0.0005319017045621715 1.4378558361769686e-06 0.01503916638735966 4.065441598669296e-05 0.019196676851983882 7.914068375384393e-05']
['59866.45631794913 0.03435395986761237 6.802301230457154e-05 0.015099276373464999 4.070411191375007e-05 0.0005340276604328049 1.4396134700531182e-06 0.015099276373465 4.070411191375007e-05 0.019254683494147367 7.92714004523383e-05']
['59866.456349487096 0.03431294965019529 6.79836463404121e-05 0.015035082265570049 4.0679745229588795e-05 0.000531757258301948 1.438751674890668e-06 0.015035082265570049 4.0679745229588795e-05 0.01927786738462524 7.922510865680452e-05']
['59866.456381025055 0.0343943334298303 6.801616286219777e-05 0.015071392873439105 4.0681217974829076e-05 0.0005330414833528439 1.4388037625984247e-06 0.015071392873439103 4.0681217974829076e-05 0.0193229405563912 7.92537690360059e-05']
['59866.45641256302 0.03433952994361649 6.797193361097091e-05 0.014998038092540886 4.0654319509681585e-05 0.0005304470886907608 1.4378524240006895e-06 0.014998038092540886 4.0654319509681585e-05 0.019341491851075605 7.920200410096649e-05']
['59866.456444100986 0.0342678060852458 6.791885326258463e-05 0.015100506596918629 4.0710771682641136e-05 0.0005340711706869722 1.4398490111950875e-06 0.01510050659691863 4.0710771682641136e-05 0.01916729948832717 7.918546305667877e-05']
['59866.456475638945 0.034276115054494266 6.7918369440792e-05 0.015038785340315289 4.0674313475046557e-05 0.0005318882277798022 1.438559565871766e-06 0.015038785340315289 4.0674313475046557e-05 0.019237329714178977 7.916631028513494e-05']
['59866.45650717691 0.03423982791532402 6.789820864457007e-05 0.01506411854788644 4.0697240431912776e-05 0.000532784206715207 1.4393704410973912e-06 0.01506411854788644 4.0697240431912776e-05 0.01917570936743758 7.91607991111414e-05']
['59866.456538714876 0.034284551061179176 6.792920241395789e-05 0.015014567315488054 4.0651650738728495e-05 0.0005310316903657629 1.4377580355364308e-06 0.015014567315488054 4.0651650738728495e-05 0.019269983745691124 7.916396432961166e-05']
['59866.456570252834 0.034282169225333524 6.793283461480888e-05 0.015092306148219558 4.06944605038435e-05 0.0005337811391434102 1.4392721212543544e-06 0.015092306148219558 4.06944605038435e-05 0.019189863077113966 7.918907206491217e-05']
['59866.4566017908 0.03439779245289854 6.803542091448085e-05 0.015037575103782761 4.06722792942266e-05 0.0005318454244183661 1.4384876214422907e-06 0.015037575103782761 4.06722792942266e-05 0.01936021734911578 7.926571012738201e-05']
['59866.45663332876 0.03422148420709916 6.790067578386528e-05 0.014976515791402085 4.0650908624766815e-05 0.0005296858929989936 1.4377317886241334e-06 0.014976515791402087 4.0650908624766815e-05 0.019244968415697075 7.913910628712412e-05']
['59866.456664866724 0.03428573289161862 6.794856898777459e-05 0.015082041973772293 4.06984386259399e-05 0.0005334181182322903 1.4394128185423245e-06 0.015082041973772295 4.06984386259399e-05 0.019203690917846322 7.920461434838099e-05']
['59866.45669640469 0.03437720596504426 6.801650930209782e-05 0.015090602284090962 4.068907779437048e-05 0.000533720877277094 1.4390817468499414e-06 0.01509060228409096 4.068907779437048e-05 0.0192866036809533 7.925810109634656e-05']
['59866.45672794265 0.03420832313129953 6.790020847168624e-05 0.015002715432019946 4.065586111924086e-05 0.0005306125157348966 1.4379069472855066e-06 0.015002715432019947 4.065586111924086e-05 0.019205607699279585 7.91412493826415e-05']
['59866.456759480614 0.03425922509009212 6.796249538565554e-05 0.015058907538580886 4.0685381653024845e-05 0.0005325999049619899 1.438951022590936e-06 0.015058907538580886 4.0685381653024845e-05 0.019200317551511234 7.920985455925002e-05']
['59866.45679101858 0.03420730857051512 6.787237190938852e-05 0.01498748972927355 4.06443914989672e-05 0.0005300740166561995 1.43750129244952e-06 0.01498748972927355 4.06443914989672e-05 0.01921981884124157 7.911147469822357e-05']
['59866.45682255654 0.03426845873799567 6.795090980161131e-05 0.01499892521804329 4.065993321770711e-05 0.0005304784643371719 1.4380509683076532e-06 0.01499892521804329 4.065993321770711e-05 0.019269533519952385 7.91868443122664e-05']
['59866.456854094504 0.034279969564902375 6.79494205924525e-05 0.01510021184639081 4.071456749779208e-05 0.0005340607460195319 1.439983260693829e-06 0.015100211846390812 4.071456749779208e-05 0.01917975771851156 7.921363370899151e-05']
['59866.45688563246 0.03426447132535072 6.791931841692095e-05 0.015030300318252405 4.0663821771349984e-05 0.0005315881315123462 1.4381884977595958e-06 0.015030300318252405 4.0663821771349984e-05 0.019234171007098316 7.916173453930386e-05']
['59866.45691717043 0.03440713254616452 6.806689134974528e-05 0.015107297968351691 4.069769411644448e-05 0.0005343113663167377 1.439386486905352e-06 0.015107297968351691 4.069769411644448e-05 0.019299834577812834 7.93057627440384e-05']
['59866.45694870839 0.0342371831056681 6.790714007596637e-05 0.01507442162131813 4.067008346615379e-05 0.0005331486033964719 1.4384099599107422e-06 0.015074421621318128 4.067008346615379e-05 0.01916276148434997 7.915450310905144e-05']
['59866.45698024635 0.03434347006912867 6.799555380907579e-05 0.01503263576713986 4.065413632956524e-05 0.0005316707311200744 1.4378459453293579e-06 0.015032635767139858 4.065413632956524e-05 0.01931083430198881 7.922218211148818e-05']
['59866.45701178432 0.03434420400132804 6.797316083061431e-05 0.01502168227442408 4.0659155169498234e-05 0.0005312833305623327 1.4380234504813408e-06 0.015021682274424079 4.0659155169498234e-05 0.01932252172690396 7.920553953103214e-05']
['59866.45704332228 0.03433264897550665 6.801106071760966e-05 0.015080567977917009 4.069468091301991e-05 0.0005333659862930757 1.4392799166343387e-06 0.015080567977917007 4.069468091301991e-05 0.01925208099758964 7.925630217558031e-05']
['59866.45707486024 0.034271408953651786 6.794159458686717e-05 0.01499656461600943 4.0655170077061887e-05 0.0005303949751188693 1.4378825066680247e-06 0.01499656461600943 4.0655170077061887e-05 0.019274844337642358 7.917640512804965e-05']
['59866.45710639821 0.03426687873426592 6.791796992479876e-05 0.015078659309325724 4.068559528130277e-05 0.0005332984809506252 1.438958578145695e-06 0.015078659309325724 4.068559528130277e-05 0.019188219424940194 7.917176455087909e-05']
['59866.457137936166 0.03431458450166903 6.797246615092701e-05 0.015120541047376342 4.070493939447711e-05 0.0005347797444252998 1.439642736197123e-06 0.015120541047376342 4.070493939447711e-05 0.019194043454292688 7.922845603536001e-05']
['59866.45716947413 0.03424042461853546 6.791966777102057e-05 0.015020482326232295 4.0664029105704137e-05 0.0005312408910765157 1.4381958307123373e-06 0.015020482326232296 4.0664029105704137e-05 0.01921994229230316 7.916214078229165e-05']
['59866.4572010121 0.034265571424862 6.79337469368589e-05 0.015040351369896413 4.068520074547306e-05 0.0005319436147462164 1.438944624295134e-06 0.015040351369896413 4.068520074547306e-05 0.01922522005496559 7.918509665701386e-05']
['59866.457232550056 0.03419382788059237 6.789406905141721e-05 0.015049245311772395 4.067979874270704e-05 0.0005322581735935796 1.4387535675300655e-06 0.015049245311772394 4.067979874270704e-05 0.019144582568819977 7.914828259732334e-05']
['59866.45726408802 0.03436147050430664 6.797964008078659e-05 0.015119779476857928 4.0704774258620456e-05 0.0005347528093780735 1.43963689571093e-06 0.015119779476857928 4.0704774258620456e-05 0.019241691027448715 7.923452601586342e-05']
['59866.45729562599 0.034168724636200735 6.788835221457573e-05 0.015045220318744211 4.068168871396378e-05 0.0005321158185855028 1.4388204115895793e-06 0.015045220318744211 4.068168871396378e-05 0.019123504317456526 7.914435016493684e-05']
['59866.457327163946 0.03421031148444143 6.788572862218356e-05 0.015048005197504401 4.067860879827924e-05 0.000532214313523413 1.4387114818550233e-06 0.015048005197504403 4.067860879827924e-05 0.019162306286937027 7.914051657860336e-05']
['59866.45735870191 0.03420501473029798 6.787745142511822e-05 0.014996595935641321 4.065281657660704e-05 0.0005303960828242541 1.4377992686167007e-06 0.014996595935641321 4.065281657660704e-05 0.019208418794656658 7.912016119536499e-05']
['59866.45739023987 0.034307847700239334 6.794177487471147e-05 0.015076220770207982 4.069688715974752e-05 0.0005332122352718449 1.4393579466504227e-06 0.015076220770207982 4.069688715974752e-05 0.019231626930031352 7.919798859579199e-05']
['59866.457421777835 0.03422638266042721 6.79314008043145e-05 0.0149774357060511 4.064281703091407e-05 0.000529718428324241 1.4374456070332098e-06 0.014977435706051102 4.064281703091407e-05 0.01924894695437611 7.91613149931504e-05']
['59866.4574533158 0.0342559301902049 6.790643901386414e-05 0.014990234449444409 4.0654423023523234e-05 0.0005301710912745542 1.437856085053929e-06 0.014990234449444407 4.0654423023523234e-05 0.01926569574076049 7.914585630921702e-05']
['59866.45748485376 0.034203785124250784 6.786002269174295e-05 0.015009777463072053 4.065905280287848e-05 0.0005308622839904991 1.4380198300027761e-06 0.015009777463072053 4.065905280287848e-05 0.01919400766117873 7.910841456223938e-05']
['59866.457516391725 0.03422638875927561 6.790234561758505e-05 0.015049393189569943 4.067958781804878e-05 0.0005322634037007915 1.4387461075962917e-06 0.015049393189569944 4.067958781804878e-05 0.019176995569705667 7.91552740214846e-05']
['59866.45754792969 0.03421848649372072 6.790349363691322e-05 0.015065307360463529 4.0671485798289404e-05 0.0005328262523592188 1.438459557264351e-06 0.015065307360463527 4.0671485798289404e-05 0.019153179133257196 7.915209539322867e-05']
['59866.45757946765 0.03429085943218219 6.792463728031003e-05 0.015067299101117157 4.068331085087693e-05 0.0005328966957748593 1.4388777829469347e-06 0.015067299101117157 4.068331085087693e-05 0.019223560331065037 7.917631041827324e-05']
['59866.457611005615 0.03427417990527537 6.795218842115322e-05 0.015092789216179044 4.069637954509016e-05 0.0005337982241775439 1.439339993454444e-06 0.015092789216179044 4.069637954509016e-05 0.019181390689096328 7.920666145787198e-05']
['59866.45764254357 0.03424982205774356 6.791624914914914e-05 0.015063405605930424 4.0680237579170574e-05 0.0005327589915515542 1.4387690881950389e-06 0.015063405605930424 4.0680237579170574e-05 0.019186416451813133 7.916753518954006e-05']
['59866.45767408154 0.03429658184380988 6.79530076288545e-05 0.01496333028742009 4.061582829206438e-05 0.0005292195511910175 1.4364910756563777e-06 0.014963330287420092 4.061582829206438e-05 0.01933325155638979 7.91660075642167e-05']
['59866.457705619505 0.034164297448331 6.787160861883715e-05 0.014977687350618855 4.064351575704029e-05 0.0005297273284302099 1.4374703194147332e-06 0.014977687350618855 4.064351575704029e-05 0.019186610097712144 7.91103699245642e-05']
['59866.45773715746 0.034187742188060304 6.785570955945379e-05 0.015039473317748459 4.066630195802006e-05 0.0005319125600040743 1.4382762164192254e-06 0.015039473317748459 4.066630195802006e-05 0.019148268870311846 7.910844098298116e-05']
['59866.45776869543 0.03426370297873429 6.792483973669421e-05 0.01500592731153131 4.065651898998144e-05 0.0005307261127350853 1.4379302147033465e-06 0.01500592731153131 4.065651898998144e-05 0.019257775667202978 7.916272095903675e-05']
['59866.457800233395 0.034298538371217865 6.794123725270077e-05 0.015089280588771256 4.069015341830584e-05 0.0005336741318674511 1.4391197892646572e-06 0.015089280588771254 4.069015341830584e-05 0.01920925778244661 7.919406735755553e-05']
['59866.45783177135 0.03420053400108106 6.787235258120764e-05 0.015038338764886052 4.068287148982096e-05 0.0005318724334049074 1.4388622437282993e-06 0.015038338764886052 4.068287148982096e-05 0.019162195236195004 7.913123452572348e-05']
['59866.45786330932 0.03419587654948481 6.785164661331145e-05 0.015041138131728249 4.0648646281768046e-05 0.0005319714407538992 1.4376517746083058e-06 0.015041138131728249 4.0648646281768046e-05 0.019154738417756563 7.909588100955696e-05']
['59866.45789484728 0.03415605664893547 6.78467383467981e-05 0.015064421398038656 4.068196608680752e-05 0.0005327949178482606 1.4388302216471706e-06 0.015064421398038654 4.068196608680752e-05 0.01909163525089682 7.910880019939022e-05']
['59866.45792638524 0.034224590850637934 6.788626799606084e-05 0.015007517158413787 4.0655297367933815e-05 0.0005307823420662198 1.4378870086616864e-06 0.015007517158413787 4.0655297367933815e-05 0.019217073692224147 7.912899965567694e-05']
['59866.45795792321 0.03427714853296858 6.791544961287612e-05 0.015097671238287563 4.070005272581773e-05 0.0005339708903888449 1.4394699056477023e-06 0.015097671238287563 4.070005272581773e-05 0.019179477294681016 7.917703321041688e-05']
['59866.45798946117 0.03428144751004207 6.794208104204858e-05 0.015023158089979219 4.065952984094053e-05 0.0005313355268602644 1.4380367017729134e-06 0.015023158089979219 4.065952984094053e-05 0.01925828942006285 7.917906126755122e-05']
['59866.45802099913 0.034265424127060205 6.794463782471748e-05 0.015001943137227029 4.0645285651421063e-05 0.0005305852013940483 1.4375329166234999e-06 0.015001943137227029 4.0645285651421063e-05 0.019263480989833177 7.91739417663264e-05']
['59866.4580525371 0.03427166716472555 6.793959079486491e-05 0.014977551199129252 4.0632340335151533e-05 0.0005297225130563033 1.4370750697181258e-06 0.014977551199129252 4.0632340335151533e-05 0.019294115965596298 7.916296532145114e-05']
['59866.45808407506 0.03429463435863611 6.794742727225938e-05 0.015082723836601133 4.069564624917565e-05 0.0005334422341966727 1.4393140584167676e-06 0.015082723836601135 4.069564624917565e-05 0.019211910522034976 7.920220007396905e-05']
['59866.45811561302 0.03430167252058478 6.798367910280317e-05 0.015000111923634369 4.064598432925526e-05 0.0005305204354617975 1.4375576272970423e-06 0.015000111923634369 4.064598432925526e-05 0.019301560596950415 7.920780685290422e-05']
['59866.45814715098 0.03424711042974039 6.791639355044387e-05 0.015030814808881231 4.06634927599687e-05 0.0005316063278960689 1.438176861362337e-06 0.015030814808881231 4.06634927599687e-05 0.019216295620859164 7.915905606018051e-05']
['59866.45817868895 0.03431314818215773 6.794849466474328e-05 0.015048535402093171 4.066173699904626e-05 0.0005322330656747802 1.4381147640224051e-06 0.01504853540209317 4.066173699904626e-05 0.01926461278006456 7.918569809621088e-05']
['59866.45821022691 0.034314644092211605 6.795765321792791e-05 0.015077411323888644 4.068660742271783e-05 0.0005332543424947991 1.4389943753255426e-06 0.015077411323888646 4.068660742271783e-05 0.01923723276832296 7.920632963632708e-05']
['59866.45824176487 0.03421087614531127 6.787037529065279e-05 0.015013420048153548 4.06573479790181e-05 0.0005309911140841331 1.4379595341928914e-06 0.01501342004815355 4.06573479790181e-05 0.01919745609715772 7.911641919842568e-05']
['59866.45827330284 0.03421356472796441 6.788666887471575e-05 0.015045813912794142 4.0678442142007034e-05 0.0005321368126804442 1.4387055875951304e-06 0.015045813912794142 4.0678442142007034e-05 0.01916775081517027 7.914123745561422e-05']
['59866.4583048408 0.03414805810293916 6.786847163869413e-05 0.01498783562077717 4.065406242792793e-05 0.0005300862500656606 1.4378433315936068e-06 0.014987835620777172 4.065406242792793e-05 0.01916022248216199 7.911309774282695e-05']
['59866.45833637876 0.03435490961274657 6.798737336379318e-05 0.015021701482829903 4.0672756386275004e-05 0.0005312840099207185 1.4385044951218048e-06 0.015021701482829903 4.0672756386275004e-05 0.01933320812991667 7.922471867394095e-05']
['59866.458367916726 0.03420035971939473 6.788578328966877e-05 0.014987525834775408 4.063938411013963e-05 0.0005300752936271091 1.4373241922975441e-06 0.014987525834775407 4.063938411013963e-05 0.019212833884619324 7.912040895814013e-05']
['59866.458399454685 0.03425713963251184 6.791482554215513e-05 0.015088440860179993 4.068552544189268e-05 0.0005336444325438612 1.4389561080818422e-06 0.015088440860179995 4.068552544189268e-05 0.019168698772331846 7.916903124899448e-05']
['59866.45843099265 0.03430128121729114 6.794217201663075e-05 0.015097075916761907 4.0691760082199126e-05 0.0005339498351969478 1.43917661337588e-06 0.015097075916761907 4.0691760082199126e-05 0.019204205300529232 7.919569481306857e-05']
['59866.458462530616 0.0341864626815759 6.786443553138185e-05 0.015017419918995962 4.066710933676635e-05 0.000531132580576644 1.4383047716010964e-06 0.015017419918995962 4.066710933676635e-05 0.01916904276257994 7.911634086458746e-05']
['59866.458494068575 0.034283208494630533 6.793010106611118e-05 0.01496491121443514 4.062899930828475e-05 0.0005292754650463758 1.4369569050646032e-06 0.01496491121443514 4.062899930828475e-05 0.019318297280195393 7.91531061654859e-05']
['59866.45852560654 0.03423947881256688 6.791312127165746e-05 0.0149630184573 4.063115473286484e-05 0.0005292085224565691 1.4370331376149106e-06 0.014963018457299998 4.063115473286484e-05 0.01927646035526688 7.913964098847591e-05']
['59866.458557144506 0.034281588261997446 6.7907818281045e-05 0.015094566294493439 4.0702719272852336e-05 0.0005338610754659877 1.4395642154569345e-06 0.015094566294493437 4.0702719272852336e-05 0.01918702196750401 7.917185825718665e-05']
['59866.458588682464 0.03424568267501468 6.791277912118633e-05 0.015134488166177766 4.072670322001386e-05 0.0005352730228473302 1.4404124740670703e-06 0.015134488166177767 4.072670322001386e-05 0.019111194508836915 7.918844564160942e-05']
['59866.45862022043 0.03421756411689925 6.78636052764448e-05 0.015058415016400829 4.066831364918472e-05 0.0005325824855532036 1.4383473654398543e-06 0.01505841501640083 4.066831364918472e-05 0.019159149100498422 7.911624773828427e-05']
['59866.45865175839 0.0343681035290644 6.800025600468684e-05 0.015046397194848904 4.066465720583605e-05 0.0005321574420631625 1.438218045210282e-06 0.015046397194848904 4.066465720583605e-05 0.019321706334215497 7.92316171889171e-05']
['59866.458683296354 0.03414925109265477 6.78267901370344e-05 0.015039187231615793 4.067281580031546e-05 0.0005319024417769268 1.4385065964636329e-06 0.015039187231615793 4.067281580031546e-05 0.01911006386103898 7.908698632151625e-05']
['59866.45871483432 0.034272495356771925 6.792522063743375e-05 0.015044767952703354 4.067028653213381e-05 0.0005320998194096163 1.43841714190063e-06 0.015044767952703356 4.067028653213381e-05 0.01922772740406857 7.917011939646119e-05']
['59866.45874637228 0.034220468646944426 6.791017861989002e-05 0.015014217610189418 4.065580632451669e-05 0.0005310193220708955 1.4379050093185715e-06 0.01501421761018942 4.065580632451669e-05 0.019206251036755006 7.914977541397055e-05']
['59866.458777910244 0.03416376076357611 6.786883286763325e-05 0.01497483755161475 4.064635707674571e-05 0.0005296265374083606 1.437570810542738e-06 0.014974837551614748 4.064635707674571e-05 0.019188923211961365 7.910944835116127e-05']
['59866.45880944821 0.03423054016213164 6.7921161683856e-05 0.015024493520425989 4.0666814388522066e-05 0.0005313827580506552 1.4382943399408668e-06 0.015024493520425987 4.0666814388522066e-05 0.01920604664170565 7.916485329358613e-05']
['59866.45884098617 0.034227513654909156 6.790113763024707e-05 0.015097699548025617 4.069079050550384e-05 0.0005339718916410114 1.4391423216150442e-06 0.015097699548025619 4.069079050550384e-05 0.01912981410688354 7.915999572665828e-05']
['59866.458872524134 0.03417877465672713 6.785742902070371e-05 0.015118808857829569 4.0697573139265675e-05 0.0005347184807522463 1.439382208212906e-06 0.015118808857829569 4.0697573139265675e-05 0.019059965798897564 7.912599530322334e-05']
['59866.45890406209 0.03430631136318012 6.794805011852705e-05 0.015109063015841175 4.069410637968286e-05 0.0005343737921017917 1.4392595966742136e-06 0.015109063015841175 4.069410637968286e-05 0.019197248347338942 7.920194321448692e-05']
['59866.45893560006 0.034171272728789476 6.785212353392331e-05 0.015023899642109583 4.0678753302399353e-05 0.0005313617539018439 1.4387165926428041e-06 0.015023899642109583 4.0678753302399353e-05 0.019147373086679895 7.911176674996114e-05']
['59866.45896713802 0.034302750201310225 6.795397423642079e-05 0.015061217419550094 4.066229443646469e-05 0.0005326816002895907 1.4381344793380956e-06 0.015061217419550096 4.066229443646469e-05 0.019241532781760128 7.919068634228325e-05']
['59866.45899867598 0.03419783511708394 6.787590353488464e-05 0.015075129378027973 4.069482719439391e-05 0.0005331736351695559 1.4392850902796173e-06 0.015075129378027973 4.069482719439391e-05 0.01912270573905597 7.914042734948142e-05']
['59866.45903021395 0.03430080908559734 6.793684131321638e-05 0.015023480441186824 4.0660190176540735e-05 0.0005313469277020648 1.4380600563673294e-06 0.015023480441186824 4.0660190176540735e-05 0.01927732864441052 7.917490431196999e-05']
['59866.459061751906 0.03439452781044425 6.804565197927339e-05 0.015073428449229173 4.0695914573321754e-05 0.0005331134771192945 1.4393235484421463e-06 0.015073428449229173 4.0695914573321754e-05 0.019321099361215073 7.928662066353626e-05']
['59866.45909328987 0.03421871056663487 6.788110894830057e-05 0.014984824431527289 4.063727243596636e-05 0.0005299797510315041 1.4372495071013497e-06 0.014984824431527289 4.063727243596636e-05 0.019233886135107583 7.911531370781515e-05']
['59866.45912482784 0.03416465443028989 6.787937669510247e-05 0.015014732015654321 4.0672345990417475e-05 0.0005310375154425605 1.4384899803375047e-06 0.015014732015654321 4.0672345990417475e-05 0.01914992241463557 7.913184889082176e-05']
['59866.459156365796 0.03427301351076915 6.793822769172569e-05 0.014993144205629885 4.065456198000393e-05 0.0005302740028479122 1.4378609996341017e-06 0.014993144205629886 4.065456198000393e-05 0.01927986930513926 7.91732037477248e-05']
['59866.45918790376 0.03424321310169933 6.789636529569956e-05 0.015051447282618398 4.0681172000359795e-05 0.0005323360523812876 1.4388021365841931e-06 0.015051447282618398 4.0681172000359795e-05 0.019191765819080935 7.9150958147643e-05']
['59866.45921944173 0.03426598956339142 6.791788133677664e-05 0.0151358889369364 4.07316146332483e-05 0.0005353225649785247 1.44058617977681e-06 0.0151358889369364 4.07316146332483e-05 0.01913010062645502 7.91953473122501e-05']
['59866.459250979686 0.03414939868190132 6.784565655963682e-05 0.015013602478236908 4.065810417881085e-05 0.0005309975662284742 1.4379862792895541e-06 0.015013602478236908 4.065810417881085e-05 0.01913579620366441 7.909560385649272e-05']
['59866.45928251765 0.034295639240149556 6.793786588966186e-05 0.015029391464796359 4.067773010025007e-05 0.0005315559873967738 1.4386804042695063e-06 0.015029391464796359 4.067773010025007e-05 0.0192662477753532 7.918479240201664e-05']
['59866.45931405561 0.03425185189634095 6.79099462835533e-05 0.015003175321191657 4.065154865214013e-05 0.0005306287809871082 1.4377544249619506e-06 0.015003175321191659 4.065154865214013e-05 0.019248676575149296 7.914738916763085e-05']
['59866.459345593576 0.0342812798065587 6.796634136521929e-05 0.01503048051147464 4.066205731518857e-05 0.0005315945045439085 1.4381260928884942e-06 0.015030480511474641 4.066205731518857e-05 0.01925079929508406 7.920117716093114e-05']
['59866.45937713154 0.034221620928480564 6.788999700816723e-05 0.015036326504032742 4.067964541646417e-05 0.0005318012642356641 1.4387481447235193e-06 0.01503632650403274 4.067964541646417e-05 0.019185294424447823 7.914471078333795e-05']
['59866.4594086695 0.03435622694441898 6.80258147910189e-05 0.014955637676303571 4.062595342634884e-05 0.0005289474807278002 1.4368491790276757e-06 0.014955637676303573 4.062595342634884e-05 0.019400589268115404 7.923370223447767e-05']
['59866.459440207465 0.034202130895659724 6.786844540086618e-05 0.015049793936317214 4.0681187484102115e-05 0.0005322775772176262 1.438802684209555e-06 0.015049793936317214 4.0681187484102115e-05 0.01915233695934251 7.912701748610914e-05']
['59866.45947174543 0.034321512022163624 6.79769503812343e-05 0.014950564151227088 4.062182728455463e-05 0.0005287680414845061 1.4367032466137987e-06 0.014950564151227088 4.062182728455463e-05 0.019370947870936538 7.918963716970155e-05']
['59866.45950328339 0.034281407466191835 6.794689827421283e-05 0.01503422992096704 4.0686349658311274e-05 0.0005317271127782177 1.4389852587745526e-06 0.015034229920967042 4.0686349658311274e-05 0.019247177545224793 7.919696985115398e-05']
['59866.459534821355 0.0341625343054811 6.784653872490697e-05 0.01501404598054993 4.067241993019912e-05 0.0005310132519141164 1.4384925954223357e-06 0.015014045980549928 4.067241993019912e-05 0.01914848832493117 7.910372026604539e-05']
['59866.45956635931 0.03436456877515217 6.798606882773981e-05 0.014976090727571317 4.063673762772701e-05 0.000529670859441261 1.4372305921291499e-06 0.014976090727571317 4.063673762772701e-05 0.019388478047580853 7.92051134692382e-05']
['59866.45959789728 0.034309573168818136 6.794683996736247e-05 0.015089732435290019 4.069531278405363e-05 0.0005336901126690022 1.4393022645006527e-06 0.015089732435290017 4.069531278405363e-05 0.01921984073352812 7.920152488520865e-05']
['59866.459629435245 0.03424959958533889 6.791207164484917e-05 0.015059423962655697 4.067443876183229e-05 0.0005326181697273761 1.438563996985378e-06 0.015059423962655697 4.067443876183229e-05 0.01919017562268319 7.916097172019284e-05']
['59866.4596609732 0.034134245966248075 6.781153505290947e-05 0.0150332491445982 4.068326699226282e-05 0.000531692424909958 1.438876231765772e-06 0.0150332491445982 4.068326699226282e-05 0.019100996821649875 7.907927983609683e-05']
['59866.45969251117 0.03426773899184231 6.793060858856172e-05 0.015010511114811047 4.0655932174680466e-05 0.0005308882316128921 1.437909460357606e-06 0.015010511114811047 4.0655932174680466e-05 0.019257227877031262 7.916736956729454e-05']
['59866.459724049135 0.034211623609569766 6.790997719206345e-05 0.014909074915850947 4.060099051884311e-05 0.000527300659952236 1.435966296778013e-06 0.014909074915850947 4.060099051884311e-05 0.01930254869371882 7.912146000509448e-05']
['59866.45975558709 0.0343052006491792 6.796291823768336e-05 0.014987135426009959 4.0633481873745105e-05 0.0005300614857415874 1.4371154433869918e-06 0.014987135426009957 4.0633481873745105e-05 0.019318065223169242 7.918357218871857e-05']
['59866.45978712506 0.034200510688195386 6.78773372760601e-05 0.015043158683864997 4.068553999054638e-05 0.0005320429031673077 1.4389566226352092e-06 0.015043158683864995 4.068553999054638e-05 0.019157352004330393 7.913688191993898e-05']
['59866.45981866302 0.03419000639911997 6.787782063620687e-05 0.015029698089078605 4.0666235846424604e-05 0.0005315668320123719 1.4382738781998449e-06 0.015029698089078605 4.0666235846424604e-05 0.01916030831004136 7.912737372261322e-05']
['59866.45985020098 0.034251992013574276 6.792163412769998e-05 0.014965661008475184 4.064083524099472e-05 0.0005293019835858811 1.437375515552802e-06 0.014965661008475182 4.064083524099472e-05 0.01928633100509909 7.915191641181417e-05']
['59866.45988173895 0.034253257485483454 6.791398723784488e-05 0.014993558964871395 4.065264750722333e-05 0.000530288671955352 1.4377932890104468e-06 0.014993558964871395 4.065264750722333e-05 0.01925969852061206 7.915142078250213e-05']
['59866.45991327691 0.034177616547201216 6.78538765520962e-05 0.015066282672107556 4.0671621640834895e-05 0.0005328607469523749 1.4384643617115948e-06 0.015066282672107556 4.0671621640834895e-05 0.01911133387509366 7.910960352600903e-05']
['59866.45994481487 0.03423925921293028 6.789774702986058e-05 0.01516163845859499 4.0734217942231455e-05 0.000536233268012795 1.440678252997491e-06 0.01516163845859499 4.0734217942231455e-05 0.01907762075433529 7.91794200729972e-05']
['59866.45997635284 0.03431099405455945 6.796183469368252e-05 0.015044378925535904 4.067381360507076e-05 0.0005320860603881281 1.4385418865878656e-06 0.015044378925535904 4.067381360507076e-05 0.01926661512902355 7.92033464451564e-05']
['59866.4600078908 0.03427586361162389 6.792725416241934e-05 0.014952846803180141 4.0616829672983546e-05 0.0005288487737826588 1.4365264922615338e-06 0.014952846803180141 4.0616829672983546e-05 0.019323016808443748 7.914441680074516e-05']
['59866.46003942876 0.03433125300143568 6.79807722057974e-05 0.015062243367347248 4.0685832751448224e-05 0.0005327178857703176 1.4389669769340253e-06 0.015062243367347248 4.0685832751448224e-05 0.01926900963408843 7.922576838614653e-05']
['59866.46007096672 0.03427709461706375 6.792952482050061e-05 0.014980180806031777 4.064609259186699e-05 0.0005298155163756201 1.4375614563036666e-06 0.014980180806031777 4.064609259186699e-05 0.01929691381103197 7.916138695933537e-05']
['59866.46010250469 0.03433593794862838 6.797790576254296e-05 0.014980712277805182 4.0635848735490485e-05 0.0005298343133444759 1.4371991539973012e-06 0.014980712277805182 4.0635848735490485e-05 0.0193552256708232 7.919765068684068e-05']
['59866.46013404265 0.034253329020153295 6.79238070098506e-05 0.015024840528944679 4.066887678969995e-05 0.0005313950309664429 1.438367282461333e-06 0.015024840528944679 4.066887678969995e-05 0.019228488491208617 7.916818235912217e-05']
['59866.46016558061 0.03418768647872716 6.788729857309162e-05 0.015043527118302058 4.069508645985377e-05 0.0005320559338699441 1.4392942599195084e-06 0.015043527118302058 4.069508645985377e-05 0.0191441593604251 7.915033398241009e-05']
['59866.46019711858 0.034298191617033784 6.794771554698548e-05 0.015052950836609093 4.067889136517901e-05 0.0005323892297256931 1.4387214756147684e-06 0.015052950836609095 4.067889136517901e-05 0.019245240780424687 7.919383972730509e-05']
['59866.46022865654 0.034294350199909805 6.795958391389898e-05 0.014937064733925377 4.0610258277269315e-05 0.0005282905972639667 1.4362940766813266e-06 0.014937064733925379 4.0610258277269315e-05 0.019357285465984427 7.916879513480546e-05']
['59866.4602601945 0.034284797438828445 6.795737818081345e-05 0.015025127121208041 4.0664152082804475e-05 0.000531405167094302 1.4382001801375385e-06 0.015025127121208041 4.0664152082804475e-05 0.019259670317620402 7.919456113789349e-05']
['59866.46029173247 0.03419157426260169 6.789250174087151e-05 0.014946566979099579 4.062822249085241e-05 0.0005286266704395101 1.436929430768106e-06 0.014946566979099579 4.062822249085241e-05 0.019245007283502112 7.912044145099575e-05']
['59866.460323270425 0.03413591909648008 6.783506334541541e-05 0.014972718151806319 4.062799748838702e-05 0.0005295515789737163 1.4369214729337561e-06 0.014972718151806319 4.062799748838702e-05 0.01916320094467376 7.907104399837466e-05']
['59866.46035480839 0.03428362076497377 6.793241032807039e-05 0.01499456807228016 4.0665199886180136e-05 0.0005303243618291777 1.438237238601233e-06 0.01499456807228016 4.0665199886180136e-05 0.019289052692693612 7.917367526371571e-05']
['59866.460386346356 0.03427540288685289 6.793277720558137e-05 0.015113366891919066 4.071581022409098e-05 0.0005345260105800698 1.440027213145691e-06 0.015113366891919066 4.071581022409098e-05 0.019162035994933827 7.919999634512206e-05']
['59866.460417884315 0.034249702543072566 6.794789656895983e-05 0.01500600947024332 4.06533409277276e-05 0.0005307290185051152 1.4378178137439793e-06 0.01500600947024332 4.06533409277276e-05 0.019243693072829245 7.918087380631837e-05']
['59866.46044942228 0.03440488901233379 6.801808099123856e-05 0.015061743665074163 4.068035427400759e-05 0.0005327002124176875 1.4387732154306265e-06 0.015061743665074163 4.068035427400759e-05 0.019343145347259623 7.925497186668768e-05']
['59866.460480960246 0.03434754343510387 6.796777394628107e-05 0.01506631095073176 4.067138790757706e-05 0.000532861747104114 1.4384560950886284e-06 0.01506631095073176 4.067138790757706e-05 0.01928123248437211 7.920719720796444e-05']
['59866.460512498204 0.03426073497804149 6.791447653765202e-05 0.015014379305143101 4.066002950198065e-05 0.0005310250408600404 1.4380543736672259e-06 0.015014379305143103 4.066002950198065e-05 0.019246355672898386 7.915563228529745e-05']
['59866.46054403617 0.034276786903123586 6.794471399075805e-05 0.015038726258445113 4.067680528918783e-05 0.0005318861381860943 1.438647695769066e-06 0.015038726258445113 4.067680528918783e-05 0.01923806064467847 7.919019287651983e-05']
['59866.46057557413 0.03421415298474887 6.788154230483069e-05 0.015088563511848816 4.0712173694991325e-05 0.0005336487704592771 1.4398985972386006e-06 0.015088563511848816 4.0712173694991325e-05 0.019125589472900054 7.915418417654029e-05']
['59866.460607112094 0.034223227667666715 6.790913763607627e-05 0.014997365342420313 4.064064147531352e-05 0.0005304232950225041 1.4373686624936987e-06 0.014997365342420313 4.064064147531352e-05 0.019225862325246403 7.914109371243567e-05']
['59866.46063865006 0.03431009061764016 6.796353225167089e-05 0.015118904254954426 4.07131062480291e-05 0.0005347218547353524 1.4399315795554133e-06 0.015118904254954425 4.07131062480291e-05 0.019191186362685738 7.922498808133213e-05']
['59866.46067018802 0.034189168911382586 6.785743354896711e-05 0.015007825820008983 4.0656682246387435e-05 0.0005307932587370239 1.4379359887175698e-06 0.015007825820008985 4.0656682246387435e-05 0.0191813430913736 7.910497518573786e-05']
['59866.460701725984 0.03425423278948783 6.791758996279283e-05 0.015059701403858861 4.0687144466735075e-05 0.0005326279822026874 1.43901336937221e-06 0.01505970140385886 4.0687144466735075e-05 0.019194531385628974 7.917223472411922e-05']
['59866.46073326395 0.034244294893961094 6.78959454611313e-05 0.014995644657219073 4.0655024663564766e-05 0.0005303624382324414 1.4378773637176116e-06 0.014995644657219075 4.0655024663564766e-05 0.01924865023674202 7.913716219612613e-05']
['59866.46076480191 0.03417068681892864 6.784837087811311e-05 0.01502491041201432 4.065283749912826e-05 0.0005313975025744366 1.437800008599517e-06 0.015024910412014317 4.065283749912826e-05 0.01914577640691432 7.909522506159595e-05']
['59866.460796339874 0.03434439306940776 6.798162569492091e-05 0.014995021026928564 4.0656815045621914e-05 0.0005303403818227977 1.4379406855297045e-06 0.014995021026928564 4.0656815045621914e-05 0.019349372042479194 7.921160294917809e-05']
['59866.46082787783 0.03421131842852736 6.787342049641214e-05 0.015007721516368701 4.064245801276501e-05 0.0005307895697503719 1.4374329093636357e-06 0.0150077215163687 4.064245801276501e-05 0.019203596912158657 7.91113809966818e-05']
['59866.4608594158 0.03425431733393546 6.790011223182867e-05 0.014960931752129591 4.062084415016053e-05 0.0005291347203582033 1.4366684753474555e-06 0.01496093175212959 4.062084415016053e-05 0.01929338558180587 7.912318383739724e-05']
['59866.460890953764 0.03422228747133133 6.789531087341754e-05 0.014986050491667464 4.0640085837856134e-05 0.000530023114038579 1.4373490108386078e-06 0.014986050491667466 4.0640085837856134e-05 0.019236236979663868 7.91289442334872e-05']
['59866.46092249172 0.03428771777907545 6.792964713976726e-05 0.015082238713082764 4.0686308263671896e-05 0.0005334250764620151 1.4389837947386693e-06 0.015082238713082764 4.0686308263671896e-05 0.019205479065992688 7.918214849737172e-05']
['59866.46095402969 0.0342623135246972 6.791087202057415e-05 0.014988831271034281 4.064814144322227e-05 0.0005301214639901072 1.4376339195971895e-06 0.014988831271034283 4.064814144322227e-05 0.019273482253662915 7.914643353546011e-05']
['59866.46098556765 0.03422623668014586 6.790062200445857e-05 0.015024020475422784 4.065251222725982e-05 0.0005313660275060852 1.4377885044604702e-06 0.015024020475422784 4.065251222725982e-05 0.01920221620472308 7.913988387014396e-05']
['59866.46101710561 0.03423612371600592 6.791944829169856e-05 0.015018284639242322 4.064713255185718e-05 0.0005311631637992218 1.4375982373643458e-06 0.015018284639242324 4.064713255185718e-05 0.019217839076763596 7.915327435385704e-05']
['59866.46104864358 0.03409456631476066 6.778789957409232e-05 0.015069825901409673 4.068969022564665e-05 0.0005329860630541393 1.439103407175476e-06 0.015069825901409673 4.068969022564665e-05 0.01902474041335099 7.90623185805116e-05']
['59866.461080181536 0.034289255306979835 6.795830176572565e-05 0.015002831303316155 4.0639119611964324e-05 0.0005306166138436863 1.4373148375882023e-06 0.015002831303316153 4.0639119611964324e-05 0.019286424003663684 7.918250325492984e-05']
['59866.4611117195 0.03416143638815755 6.786307126070339e-05 0.015010371854801105 4.0650460217297924e-05 0.0005308833062975683 1.4377159294540904e-06 0.015010371854801103 4.0650460217297924e-05 0.019151064533356448 7.910661386264379e-05']
['59866.46114325747 0.034414694320129384 6.802601400745081e-05 0.015042690985672052 4.067648690226478e-05 0.0005320263617274672 1.4386364351351505e-06 0.015042690985672052 4.067648690226478e-05 0.019372003334457332 7.925979541010696e-05']
['59866.461174795426 0.03420654690186052 6.790374192677645e-05 0.015028076015602188 4.0663995549495876e-05 0.0005315094628986319 1.4381946439042447e-06 0.015028076015602188 4.0663995549495876e-05 0.019178470886258334 7.914845988209548e-05']
['59866.46120633339 0.03429071264883457 6.791250732222507e-05 0.015096944066702377 4.0690318930369925e-05 0.0005339451719550098 1.439125643056466e-06 0.015096944066702377 4.0690318930369925e-05 0.019193768582132193 7.916950615891509e-05']
['59866.46123787136 0.034233157155662566 6.788816212436108e-05 0.015065516751878555 4.068730251140772e-05 0.000532833658065606 1.4390189590590725e-06 0.015065516751878553 4.068730251140772e-05 0.019167640403784013 7.914707285982433e-05']
['59866.461269409316 0.0342573972369405 6.79441277845034e-05 0.014992220037129961 4.065651384926994e-05 0.0005302413170734649 1.4379300328878694e-06 0.014992220037129961 4.065651384926994e-05 0.019265177199810538 7.917926886990562e-05']
['59866.46130094728 0.03421068436329291 6.79006639966605e-05 0.014988787480588 4.063918699693203e-05 0.0005301199152198881 1.4373172208439135e-06 0.014988787480587998 4.063918699693203e-05 0.01922189688270491 7.913307583405941e-05']
['59866.46133248524 0.03425000600614848 6.792327060394829e-05 0.015052751066972129 4.067869459254863e-05 0.0005323821643200924 1.4387145162065928e-06 0.015052751066972129 4.067869459254863e-05 0.019197254939176348 7.917276604547192e-05']
['59866.461364023206 0.03413499793961265 6.78270844690411e-05 0.014980174352320222 4.063670428068591e-05 0.0005298152881222656 1.4372294127188323e-06 0.014980174352320224 4.063670428068591e-05 0.019154823587292428 7.906867345773769e-05']
['59866.46139556117 0.03424984912937041 6.791984607182526e-05 0.015018689065183064 4.066321586307315e-05 0.0005311774674409069 1.4381670681379696e-06 0.015018689065183062 4.066321586307315e-05 0.019231160064187347 7.916187601836707e-05']
['59866.46142709913 0.03421583161578044 6.786852207607934e-05 0.015023588187826288 4.067381203074902e-05 0.0005313507384599031 1.4385418309076242e-06 0.015023588187826288 4.067381203074902e-05 0.019192243427954156 7.912329160180315e-05']
['59866.461458637095 0.034183938960491635 6.786217368079384e-05 0.014951576558296265 4.0615525795804584e-05 0.0005288038480599463 1.436480377039708e-06 0.014951576558296263 4.0615525795804584e-05 0.01923236240219537 7.908789763517485e-05']
['59866.46149017506 0.03430803489394707 6.795065970354727e-05 0.014996749906056988 4.06537229989135e-05 0.0005304015284137526 1.4378313267479455e-06 0.014996749906056988 4.06537229989135e-05 0.01931128498789008 7.918344112135864e-05']
['59866.46152171302 0.03427029928697183 6.793488907909546e-05 0.015075944880645679 4.069997031439974e-05 0.0005332024776746031 1.4394669909400268e-06 0.015075944880645679 4.069997031439974e-05 0.019194354406326154 7.919366602059805e-05']
['59866.461553250985 0.034333307690188594 6.798456565122893e-05 0.014951121012879908 4.061771968771823e-05 0.0005287877364366539 1.4365579700936337e-06 0.01495112101287991 4.061771968771823e-05 0.019382186677308684 7.919406745089123e-05']
['59866.46158478894 0.034253130091265335 6.792584575077959e-05 0.01502753994393017 4.0673347095620124e-05 0.0005314905032416423 1.438525387191184e-06 0.01502753994393017 4.0673347095620124e-05 0.019225590147335166 7.917222799011968e-05']
['59866.46161632691 0.03424648435332917 6.792921295149958e-05 0.015040128507171166 4.066663541520002e-05 0.0005319357325896933 1.4382880100544479e-06 0.015040128507171168 4.066663541520002e-05 0.019206355846158006 7.917166922708513e-05']
['59866.461647864875 0.03419505673534668 6.787840531108536e-05 0.01496653477623261 4.063522176769663e-05 0.0005293328867987052 1.437176979547623e-06 0.014966534776232608 4.063522176769663e-05 0.01922852195911407 7.911194066438938e-05']
['59866.46167940283 0.034211188987962604 6.78853682944016e-05 0.0150483208872169 4.066419971026573e-05 0.000532225478763019 1.438201864614402e-06 0.0150483208872169 4.066419971026573e-05 0.019162868100745703 7.913280208954389e-05']
['59866.4617109408 0.03415684959222131 6.787060128383484e-05 0.015009557607996962 4.064820642406401e-05 0.0005308545082078403 1.4376362178243382e-06 0.015009557607996962 4.064820642406401e-05 0.019147291984224348 7.911191568987951e-05']
['59866.461742478765 0.034313851614595096 6.798976460984715e-05 0.015050253844841025 4.067095040644795e-05 0.0005322938431542783 1.4384406216514492e-06 0.015050253844841023 4.067095040644795e-05 0.019263597769754073 7.922584362861762e-05']
['59866.46177401672 0.034219454815638484 6.790901049084954e-05 0.015025778450292616 4.067890017272658e-05 0.0005314282031483885 1.4387217871180423e-06 0.015025778450292614 4.067890017272658e-05 0.01919367636534587 7.916063810448326e-05']
['59866.46180555469 0.03420000997211216 6.790587261128234e-05 0.01499812616599995 4.064730647504711e-05 0.0005304502036521752 1.437604388638878e-06 0.01499812616599995 4.064730647504711e-05 0.019201883806112208 7.914171503559998e-05']
['59866.46183709265 0.03421338599590521 6.789335648551111e-05 0.015013408596161912 4.064643432681027e-05 0.0005309907090527826 1.437573542704878e-06 0.015013408596161914 4.064643432681027e-05 0.019199977399743298 7.913052810611335e-05']
['59866.46186863061 0.03421048575233743 6.786645907988429e-05 0.01500911230951041 4.066694875924998e-05 0.0005308387589955545 1.4382990923332121e-06 0.01500911230951041 4.066694875924998e-05 0.01920137344282702 7.911799409381579e-05']
['59866.46190016858 0.03436472267057337 6.800544321849347e-05 0.015067294624388083 4.06699021020517e-05 0.0005328965374429569 1.4384035454677764e-06 0.015067294624388085 4.06699021020517e-05 0.019297428046185283 7.923876099696542e-05']
['59866.46193170654 0.034251873093357 6.790829361032029e-05 0.015019535811104224 4.066221026003267e-05 0.0005312074149517726 1.4381315022058184e-06 0.015019535811104223 4.066221026003267e-05 0.019232337282252775 7.915144777132363e-05']
['59866.4619632445 0.0342001355050181 6.788132346978013e-05 0.015049543410803223 4.0655074430082936e-05 0.0005322687166900879 1.4378791238481375e-06 0.015049543410803225 4.0655074430082936e-05 0.01915059209421488 7.912464314563767e-05']
['59866.46199478247 0.034388504165751496 6.804779065040862e-05 0.014999772023367504 4.065778971475545e-05 0.0005305084139489909 1.4379751573987003e-06 0.014999772023367506 4.065778971475545e-05 0.019388732142383992 7.92688947626439e-05']
['59866.46202632043 0.034219840790097225 6.788770786029427e-05 0.0149892679830061 4.065625167698553e-05 0.0005301369095165566 1.4379207604400903e-06 0.0149892679830061 4.065625167698553e-05 0.019230572807091124 7.913072525224984e-05']
['59866.46205785839 0.034204299227444106 6.787114398180678e-05 0.014978396785562528 4.062265447280545e-05 0.0005297524195586738 1.4367325024135733e-06 0.014978396785562528 4.062265447280545e-05 0.019225902441881576 7.909925563376742e-05']
['59866.46208939635 0.03427346744035218 6.793328031729279e-05 0.015039462417977592 4.0684858175820315e-05 0.0005319121745035383 1.4389325083721146e-06 0.015039462417977592 4.0684858175820315e-05 0.019234005022374587 7.918452032723626e-05']
['59866.46212093432 0.03427953346179862 6.792431877902121e-05 0.015023468702844791 4.066554888450187e-05 0.0005313465125431408 1.4382495818919075e-06 0.015023468702844791 4.066554888450187e-05 0.01925606475895383 7.916691194982855e-05']
['59866.46215247228 0.034198659399000166 6.78850843365283e-05 0.015028942737926968 4.066794400594867e-05 0.000531540116930249 1.4383342919846993e-06 0.015028942737926968 4.066794400594867e-05 0.0191697166610732 7.913448265483598e-05']
['59866.46218401024 0.034426641172438724 6.805181349158286e-05 0.015046685092848577 4.066781171629551e-05 0.0005321676243719968 1.4383296131953171e-06 0.015046685092848578 4.066781171629551e-05 0.019379956079590144 7.927748879275403e-05']
['59866.46221554821 0.03421260266690878 6.789428952418541e-05 0.015083310403736156 4.0695798159512295e-05 0.0005334629797653379 1.4393194311458752e-06 0.015083310403736155 4.0695798159512295e-05 0.019129292263172625 7.915669610231138e-05']
['59866.46224708617 0.03432053791730608 6.796322557000422e-05 0.01505456164667146 4.0670589225771706e-05 0.0005324462004776503 1.4384278474981216e-06 0.01505456164667146 4.0670589225771706e-05 0.019265976270634623 7.920288415108842e-05']
['59866.46227862413 0.034206334632567205 6.787661007090057e-05 0.01496660055628043 4.063250211699746e-05 0.0005293352132919869 1.4370807915804552e-06 0.01496660055628043 4.063250211699746e-05 0.019239734076286777 7.910900342568402e-05']
['59866.4623101621 0.034325124578054554 6.796536181455299e-05 0.015039190462693277 4.0680138771036475e-05 0.0005319025560529164 1.438765593572159e-06 0.015039190462693277 4.0680138771036475e-05 0.019285934115361277 7.920962124018699e-05']
['59866.462341700055 0.03437341378061571 6.798711273937163e-05 0.015044468822288876 4.065349061461592e-05 0.0005320892398353733 1.4378231078346886e-06 0.015044468822288876 4.065349061461592e-05 0.019328944958326835 7.921460596246562e-05']
['59866.46237323802 0.034171099389260544 6.78430308764329e-05 0.014988295521315781 4.064187892597316e-05 0.0005301025157198939 1.4374124283579908e-06 0.01498829552131578 4.064187892597316e-05 0.019182803867944763 7.908501224084176e-05']
['59866.462404775986 0.03432817895165386 6.796917413116465e-05 0.015035513386874665 4.067953200578593e-05 0.0005317725060989928 1.4387441336412878e-06 0.015035513386874663 4.067953200578593e-05 0.019292665564779196 7.921258079549197e-05']
['59866.462436313945 0.03434514644160804 6.798851992773524e-05 0.01507071420674291 4.068855938849635e-05 0.0005330174804285303 1.4390634119927422e-06 0.015070714206742908 4.068855938849635e-05 0.019274432234865135 7.923381668880558e-05']
['59866.46246785191 0.03430702819089439 6.793216255040033e-05 0.015081859020499255 4.068073207242432e-05 0.0005334116475838994 1.4387865773162965e-06 0.015081859020499255 4.068073207242432e-05 0.019225169170395132 7.918144145393153e-05']
['59866.462499389876 0.03418827276398917 6.78653113289223e-05 0.01498207422351975 4.065260837152018e-05 0.0005298824823206307 1.4377919048680892e-06 0.014982074223519751 4.065260837152018e-05 0.01920619854046942 7.91096394201095e-05']
['59866.462530927834 0.034243908441123336 6.792537724615924e-05 0.015031926839857011 4.0672711633197655e-05 0.0005316456579464393 1.4385029123054761e-06 0.015031926839857011 4.0672711633197655e-05 0.019211981601266324 7.917149957926968e-05']
['59866.4625624658 0.03422419762851954 6.789507004085303e-05 0.014989404160660809 4.064177828866551e-05 0.0005301417258158645 1.4374088690413304e-06 0.014989404160660807 4.064177828866551e-05 0.01923479346785873 7.912960683787947e-05']
['59866.46259400376 0.034136269927101635 6.783452817449183e-05 0.015016860763558551 4.0646049542370515e-05 0.0005311128044984616 1.4375599337391862e-06 0.015016860763558551 4.0646049542370515e-05 0.019119409163543086 7.907986188693532e-05']
['59866.462625541724 0.0341845237927907 6.781591659612791e-05 0.014959975557789199 4.0637619168113405e-05 0.0005291009019013522 1.4372617702424899e-06 0.014959975557789197 4.0637619168113405e-05 0.019224548235001505 7.905956384540453e-05']
['59866.46265707969 0.03438052151035219 6.802932168603277e-05 0.01502679943069442 4.067453708026628e-05 0.0005314643129434434 1.4385674742886591e-06 0.015026799430694418 4.067453708026628e-05 0.01935372207965777 7.926163369345654e-05']
['59866.46268861765 0.03437061845109478 6.801831051158995e-05 0.014941770707990113 4.060764836413566e-05 0.0005284570370494033 1.4362017698866017e-06 0.014941770707990111 4.060764836413566e-05 0.019428847743104667 7.921787469073099e-05']
['59866.462720155614 0.03424102664916223 6.791311994705474e-05 0.015052980983261516 4.06812148185876e-05 0.0005323902959454154 1.4388036509692174e-06 0.015052980983261516 4.06812148185876e-05 0.019188045665900717 7.916535290175315e-05']
['59866.46275169358 0.03433066635804435 6.796652516090766e-05 0.015145137367841002 4.071884367463156e-05 0.0005356496613105939 1.4401344995119485e-06 0.015145137367841004 4.071884367463156e-05 0.019185528990203343 7.92305040539777e-05']
['59866.46278323154 0.03420063797709434 6.788253100257423e-05 0.015106937588631046 4.0704236510303064e-05 0.0005342986204914197 1.4396178767547407e-06 0.015106937588631046 4.0704236510303064e-05 0.019093700388463294 7.91509499955758e-05']
['59866.462814769504 0.03429476469658446 6.794421680496854e-05 0.015093848975423383 4.07046699082176e-05 0.0005338357054935936 1.4396332050703904e-06 0.015093848975423383 4.07046699082176e-05 0.01920091572116108 7.920408290976875e-05']
['59866.46284630746 0.03429364517852815 6.7960251278756e-05 0.015112672515138457 4.070081626386992e-05 0.0005345014520251805 1.4394969102822013e-06 0.015112672515138459 4.070081626386992e-05 0.019180972663389688 7.921585825083861e-05']
['59866.46287784543 0.034282386246582544 6.793526582846182e-05 0.015096512782318926 4.0707723664870665e-05 0.000533929918390231 1.439741209618465e-06 0.015096512782318928 4.0707723664870665e-05 0.019185873464263616 7.919797414807554e-05']
['59866.462909383394 0.03426893035213346 6.791267968772095e-05 0.015110162335489568 4.071571245773048e-05 0.0005344126725809206 1.4400237553680153e-06 0.015110162335489568 4.071571245773048e-05 0.019158768016643887 7.91827083605226e-05']
['59866.46294092135 0.03419600800357601 6.788016995021745e-05 0.014979442380592777 4.0637405741889736e-05 0.0005297893999181264 1.4372542218339383e-06 0.014979442380592779 4.0637405741889736e-05 0.01921656562298323 7.911457651976264e-05']
['59866.46297245932 0.034323815479806785 6.798382552572135e-05 0.015061819966725749 4.067279235246633e-05 0.0005327029110365799 1.4385057671656122e-06 0.015061819966725747 4.067279235246633e-05 0.01926199551308104 7.922169255234684e-05']
['59866.46300399728 0.03425544865287173 6.792286157560424e-05 0.015007110112637275 4.0661779102471254e-05 0.0005307679457667983 1.4381162531264515e-06 0.015007110112637275 4.0661779102471254e-05 0.019248338540234455 7.916372530646131e-05']
['59866.46303553524 0.03423117315678496 6.788920384514028e-05 0.015013180018884218 4.0658523212383916e-05 0.0005309826247853107 1.4380010995705484e-06 0.015013180018884218 4.0658523212383916e-05 0.01921799313790074 7.91331757769077e-05']
['59866.46306707321 0.034182446002590385 6.786368732763163e-05 0.015007288906590609 4.0656041577222275e-05 0.0005307742693093468 1.4379133296810094e-06 0.015007288906590607 4.0656041577222275e-05 0.019175157095999776 7.911001058293051e-05']
['59866.463098611166 0.0342727398495669 6.791768251798236e-05 0.015058007558707363 4.067668105354232e-05 0.0005325680746852001 1.4386433018319345e-06 0.015058007558707363 4.067668105354232e-05 0.019214732290859536 7.916693741799702e-05']
['59866.46313014913 0.03435507718191414 6.799325618043827e-05 0.01506377348209003 4.06804184161358e-05 0.0005327720025091647 1.438775483994352e-06 0.015063773482090032 4.06804184161358e-05 0.01929130369982411 7.923370071207446e-05']
['59866.4631616871 0.034252061988809264 6.79332948606435e-05 0.01508500064013434 4.069402346342294e-05 0.0005335227596492858 1.439256664111407e-06 0.015085000640134343 4.069402346342294e-05 0.01916706134867492 7.918924230136786e-05']
['59866.463193225056 0.034261579757800434 6.792595508727084e-05 0.015113532653152593 4.071160883997966e-05 0.0005345318731844451 1.4398786195792145e-06 0.015113532653152592 4.071160883997966e-05 0.01914804710464784 7.919198487762158e-05']
['59866.46322476302 0.03425583641713337 6.791698824608241e-05 0.01505310181352419 4.0675854593338864e-05 0.0005323945694417665 1.438614071781568e-06 0.01505310181352419 4.0675854593338864e-05 0.019202734603609176 7.916591715705025e-05']
['59866.46325630099 0.03412767604853663 6.781725402442158e-05 0.014973354880395041 4.062959408541849e-05 0.0005295740986408947 1.4369779410025749e-06 0.014973354880395041 4.062959408541849e-05 0.019154321168141586 7.90565864362913e-05']
['59866.463287838946 0.03423233214957106 6.79243509479543e-05 0.015073031906825005 4.0683831971300944e-05 0.0005330994523006792 1.4388962138116965e-06 0.015073031906825005 4.0683831971300944e-05 0.019159300242746057 7.917633254685335e-05']
['59866.46331937691 0.03425524094873592 6.791355639822438e-05 0.014998425071379044 4.066565865552694e-05 0.0005304607752674196 1.4382534642477404e-06 0.014998425071379044 4.066565865552694e-05 0.019256815877356878 7.915773453392055e-05']
['59866.46335091487 0.03432519841668339 6.79711296349576e-05 0.01512146777923597 4.071037493313907e-05 0.0005348125208600511 1.4398349790518826e-06 0.015121467779235972 4.071037493313907e-05 0.019203730637447416 7.923010217744875e-05']
['59866.463382452836 0.03414588433341538 6.784607974617719e-05 0.015121980287952988 4.071826367280543e-05 0.0005348306471479825 1.4401139861435862e-06 0.01512198028795299 4.071826367280543e-05 0.019023904045462392 7.912690777133111e-05']
['59866.4634139908 0.034247461752437154 6.790170928255538e-05 0.01498396373894092 4.0645219451528436e-05 0.000529949310258259 1.4375305752812457e-06 0.01498396373894092 4.0645219451528436e-05 0.019263498013496236 7.913707088182866e-05']
['59866.46344552876 0.03433203210482005 6.793731315151386e-05 0.015077394723759933 4.068297076090967e-05 0.0005332537553853457 1.438865754724849e-06 0.015077394723759935 4.068297076090967e-05 0.019254637381060112 7.918701047633943e-05']
['59866.463477066725 0.03423416951873223 6.789568833210499e-05 0.015059399511518717 4.066893123506204e-05 0.0005326173049453062 1.4383692080721121e-06 0.015059399511518717 4.066893123506204e-05 0.019174770007213515 7.914408671462791e-05']
['59866.46350860469 0.03421919100358227 6.785972361353358e-05 0.015028824407315837 4.0650920995924563e-05 0.0005315359318409866 1.437732226164335e-06 0.015028824407315837 4.0650920995924563e-05 0.019190366596266432 7.910397882990506e-05']
['59866.46354014265 0.03419243757165934 6.788209158085455e-05 0.0149883481871635 4.0644270804530214e-05 0.0005301043783932266 1.43749702375702e-06 0.0149883481871635 4.0644270804530214e-05 0.01920408938449584 7.911975168454153e-05']
['59866.463571680615 0.034246538740503596 6.79013413785704e-05 0.015020596410330347 4.0666665652441655e-05 0.0005312449259761009 1.4382890794781081e-06 0.015020596410330347 4.0666665652441655e-05 0.01922594233017325 7.914777227627215e-05']
['59866.46360321857 0.03416193191760131 6.784663113829642e-05 0.015039973640358303 4.067291877026102e-05 0.0005319302552966292 1.4385102382804833e-06 0.015039973640358301 4.067291877026102e-05 0.019121958277243008 7.910405601553125e-05']
['59866.46363475654 0.0342025597515148 6.789750097354008e-05 0.01499810630783019 4.0657043388550464e-05 0.0005304495013130912 1.4379487615087708e-06 0.014998106307830189 4.0657043388550464e-05 0.019204453443684613 7.913953383455295e-05']
['59866.463666294505 0.034265303234386306 6.790889448299348e-05 0.015027970628205482 4.0668702142662274e-05 0.0005315057355819374 1.4383611055859237e-06 0.015027970628205484 4.0668702142662274e-05 0.019237332606180824 7.91552985205092e-05']
['59866.46369783246 0.034349905417983585 6.795728917335243e-05 0.015030289239243709 4.065519615204296e-05 0.0005315877396725688 1.4378834288818312e-06 0.015030289239243709 4.065519615204296e-05 0.019319616178739875 7.918988651306259e-05']
['59866.46372937043 0.0343592068011057 6.803856198632137e-05 0.015076710171616348 4.068098919416491e-05 0.000533229544305911 1.438795671137628e-06 0.015076710171616346 4.068098919416491e-05 0.019282496629489353 7.927287555641121e-05']
['59866.463760908395 0.034222936182947236 6.790392764411338e-05 0.01496390381169291 4.06310516011329e-05 0.0005292398354627958 1.4370294900760377e-06 0.01496390381169291 4.06310516011329e-05 0.019259032371254328 7.913169872883376e-05']
['59866.46379244635 0.03418028358456385 6.785548851283064e-05 0.014970726000319946 4.0634920866948604e-05 0.0005294811210278397 1.437166337360639e-06 0.014970726000319944 4.0634920866948604e-05 0.019209557584243905 7.90921242297744e-05']
['59866.46382398432 0.03434418481530958 6.798206481933524e-05 0.015043560321721973 4.0677138295820735e-05 0.0005320571082007012 1.4386594734694457e-06 0.015043560321721973 4.0677138295820735e-05 0.019300624493587604 7.922241297156774e-05']
['59866.46385552228 0.03421600347504291 6.791991605551477e-05 0.015085551218970197 4.0709605698526524e-05 0.0005335422323922387 1.439807772942775e-06 0.015085551218970197 4.0709605698526524e-05 0.01913045225607271 7.918577519427132e-05']
['59866.46388706024 0.03431096457887332 6.79521983262494e-05 0.015055875664947415 4.067618374561015e-05 0.0005324926743674128 1.4386257131617916e-06 0.015055875664947413 4.067618374561015e-05 0.019255088913925904 7.919629525095585e-05']
['59866.46391859821 0.03428951564908552 6.795262906706641e-05 0.01493608388666928 4.0617906513866625e-05 0.0005282559068885832 1.4365645777169707e-06 0.014936083886669279 4.0617906513866625e-05 0.019353431762416242 7.916674887031504e-05']
['59866.46395013617 0.03433145691453017 6.800020703618701e-05 0.0150377074676605 4.066930185164713e-05 0.0005318501058329059 1.4383823159524474e-06 0.0150377074676605 4.066930185164713e-05 0.019293749446869672 7.923395907099864e-05']
['59866.46398167413 0.03433756434509216 6.797514683585184e-05 0.0151036705303394 4.070182497875385e-05 0.0005341830719410898 1.4395325862733009e-06 0.015103670530339402 4.070182497875385e-05 0.019233893814752753 7.922915589577318e-05']
['59866.4640132121 0.034279961756023776 6.795734482158341e-05 0.015006795639683015 4.066984061395339e-05 0.0005307568235612118 1.438401370771157e-06 0.015006795639683013 4.066984061395339e-05 0.019273166116340765 7.919745356237132e-05']
['59866.46404475006 0.03433210027671002 6.796984024268615e-05 0.015107764651034387 4.068674683786629e-05 0.0005343278718402502 1.4389993061277696e-06 0.015107764651034387 4.068674683786629e-05 0.01922433562567563 7.921685774420052e-05']
['59866.46407628802 0.03438962190290667 6.804919302714861e-05 0.015037868188084369 4.066734965113778e-05 0.0005318557901551091 1.438313270983343e-06 0.015037868188084369 4.066734965113778e-05 0.019351753714822298 7.927500236073177e-05']
['59866.46410782598 0.03428284066320453 6.793258676700475e-05 0.015046905573128244 4.068150664063782e-05 0.0005321754222667441 1.43881397206295e-06 0.015046905573128244 4.068150664063782e-05 0.019235935090076282 7.918220335030396e-05']
['59866.46413936395 0.034248030015207445 6.79225356997896e-05 0.015014892992484657 4.066545755304568e-05 0.0005310432088332875 1.4382463517024158e-06 0.015014892992484657 4.066545755304568e-05 0.019233137022722786 7.916533517826949e-05']
['59866.46417090191 0.03425756903550215 6.793312896582987e-05 0.015029502201656055 4.068063230503314e-05 0.0005315599039120189 1.4387830487666375e-06 0.015029502201656055 4.068063230503314e-05 0.0192280668338461 7.918221931611527e-05']
['59866.46420243987 0.03433775961017259 6.800077287483871e-05 0.015007220292289637 4.064266829180892e-05 0.0005307718425748653 1.4374403464634727e-06 0.015007220292289635 4.064266829180892e-05 0.019330539317882953 7.922077756152996e-05']
['59866.46423397784 0.0342153260315308 6.788631904857869e-05 0.015005819900588158 4.0655314602658475e-05 0.0005307223138500753 1.4378876182153804e-06 0.01500581990058816 4.0655314602658475e-05 0.019209506130942643 7.9129052309544e-05']
['59866.464265515795 0.03431048298051305 6.798180234184803e-05 0.015040840473526008 4.0671509177380256e-05 0.0005319609132485129 1.4384603841305453e-06 0.015040840473526008 4.0671509177380256e-05 0.01926964250698704 7.92192975758547e-05']
['59866.46429705376 0.03425936502721382 6.79136884887921e-05 0.015036958543146291 4.068114218234212e-05 0.0005318236180465861 1.4388010819875473e-06 0.015036958543146291 4.068114218234212e-05 0.01922240648406753 7.916580330807379e-05']
['59866.46432859173 0.034277278004871715 6.79355989568557e-05 0.015020417583703628 4.0660431477742255e-05 0.0005312386012779678 1.438068590651551e-06 0.015020417583703628 4.0660431477742255e-05 0.019256860421168087 7.917396221980372e-05']
['59866.464360129685 0.03435507825309102 6.799007122088503e-05 0.015017780951981535 4.065589985939059e-05 0.0005311453495064825 1.4379083174380234e-06 0.015017780951981535 4.065589985939059e-05 0.01933729730110948 7.921838156638782e-05']
['59866.46439166765 0.03413645443974954 6.786408545710992e-05 0.014965882413322456 4.061904659455865e-05 0.0005293098141805184 1.436604899823117e-06 0.014965882413322456 4.061904659455865e-05 0.019170572026427083 7.909134618389578e-05']
['59866.464423205616 0.03432953308089015 6.796019557602257e-05 0.014937806304385754 4.0614781468132346e-05 0.0005283168249538378 1.4364540518334154e-06 0.014937806304385754 4.0614781468132346e-05 0.019391726776504397 7.917164048089054e-05']
['59866.464454743575 0.03437715600515443 6.801416060549577e-05 0.015019947233224178 4.067948944275139e-05 0.0005312219660326811 1.438742628281879e-06 0.015019947233224177 4.067948944275139e-05 0.019357208771930257 7.925116342485513e-05']
['59866.46448628154 0.03422566296462448 6.791321042998688e-05 0.015025250343116647 4.0650478696593675e-05 0.0005314095251778247 1.4377165830254823e-06 0.015025250343116648 4.0650478696593675e-05 0.01920041262150783 7.914964036033199e-05']
['59866.4645178195 0.0343345722799909 6.797389436679159e-05 0.015050109239345954 4.068162026856371e-05 0.0005322887287810919 1.4388179908287452e-06 0.015050109239345954 4.068162026856371e-05 0.019284463040644947 7.921770347001581e-05']
['59866.464549357464 0.034314689450397916 6.79789384052574e-05 0.015035775500781803 4.067863354012838e-05 0.0005317817764820982 1.4387123569189327e-06 0.015035775500781801 4.067863354012838e-05 0.019278913949616117 7.92204979370733e-05']
['59866.46458089543 0.03418633209378936 6.784523812488634e-05 0.014965458001715467 4.064633884768819e-05 0.0005292948036904833 1.4375701658217131e-06 0.014965458001715467 4.064633884768819e-05 0.01922087409207389 7.908919773233016e-05']
['59866.46461243339 0.03423249001835742 6.788334638973188e-05 0.015007025493433445 4.065802877373441e-05 0.0005307649529746717 1.4379836123805208e-06 0.015007025493433445 4.065802877373441e-05 0.01922546452492397 7.912789660312057e-05']
['59866.464643971354 0.03424936749976377 6.789786464030903e-05 0.015025675791418327 4.066551355420239e-05 0.0005314245723334341 1.4382483323381733e-06 0.015025675791418327 4.066551355420239e-05 0.01922369170834544 7.914419761006328e-05']
['59866.46467550932 0.03428517426057221 6.795718623637375e-05 0.015078079253065634 4.0681561857520415e-05 0.0005332779656570553 1.438815924960685e-06 0.015078079253065634 4.0681561857520415e-05 0.01920709500750658 7.920333728027151e-05']
['59866.46470704728 0.03427031459560491 6.79530460281127e-05 0.0150237477644609 4.0645839386542804e-05 0.0005313563823288365 1.4375525009972308e-06 0.0150237477644609 4.0645839386542804e-05 0.019246566831144007 7.918144178995125e-05']
['59866.464738585244 0.034395432985841745 6.802621547689032e-05 0.015068649170007862 4.068045737173465e-05 0.0005329444446942972 1.4387768617668229e-06 0.015068649170007862 4.068045737173465e-05 0.019326783815833883 7.926200605638135e-05']
['59866.4647701232 0.03425314206528173 6.794973975741816e-05 0.01502215887002146 4.06660648576933e-05 0.0005313001866834836 1.438267830710556e-06 0.01502215887002146 4.06660648576933e-05 0.019230983195260273 7.91889889069874e-05']
['59866.46480166117 0.03418899536421494 6.79040647094006e-05 0.015024963373571005 4.066322035373191e-05 0.0005313993757063344 1.438167226962534e-06 0.015024963373571003 4.066322035373191e-05 0.01916403199064394 7.914833853969786e-05']
['59866.464833199134 0.034287860264853684 6.79529597275341e-05 0.01509279756492086 4.071283253184955e-05 0.0005337985194538836 1.4399218988258624e-06 0.01509279756492086 4.071283253184955e-05 0.019195062699932826 7.92157779012382e-05']
['59866.46486473709 0.03435521833184826 6.79996514412621e-05 0.015085216094873935 4.070049178197234e-05 0.0005335303798019122 1.4394854340826584e-06 0.015085216094873935 4.070049178197234e-05 0.019270002236974323 7.924949607049585e-05']
['59866.46489627506 0.03438639490395149 6.803031093899609e-05 0.015045144853935445 4.0665241716233615e-05 0.0005321131495638706 1.43823871803674e-06 0.015045144853935443 4.0665241716233615e-05 0.019341250050016048 7.925771312810002e-05']
['59866.464927813024 0.03435190980685632 6.799668321842956e-05 0.014952638270926669 4.063562971325078e-05 0.0005288413984628957 1.4371914076701687e-06 0.014952638270926669 4.063562971325078e-05 0.01939927153592965 7.921365621469501e-05']
['59866.46495935098 0.03413733082220391 6.781723265660084e-05 0.01504319522591414 4.0680841601222974e-05 0.0005320441955779193 1.4387904511051224e-06 0.01504319522591414 4.0680841601222974e-05 0.01909413559628977 7.908291799486993e-05']
['59866.46499088895 0.0342839479022463 6.79433201667453e-05 0.014993010047434719 4.065459152953124e-05 0.000530269257972375 1.4378620447348432e-06 0.014993010047434717 4.065459152953124e-05 0.019290937854811584 7.917758879704465e-05']
['59866.465022426906 0.03422665564239401 6.788021644279105e-05 0.015083621713150535 4.0685131088440546e-05 0.0005334739900835889 1.4389421606815682e-06 0.015083621713150534 4.0685131088440546e-05 0.019143033929243474 7.91391412387306e-05']
['59866.46505396487 0.034330629058866115 6.79690301168102e-05 0.015109393045608857 4.070200820617844e-05 0.0005343854645171015 1.4395390666178193e-06 0.015109393045608856 4.070200820617844e-05 0.01922123601325726 7.922400221546289e-05']
['59866.46508550284 0.03435725362354314 6.797255267358424e-05 0.015107707905957972 4.070673857582232e-05 0.0005343258648937152 1.4397063692203695e-06 0.015107707905957973 4.070673857582232e-05 0.019249545717585165 7.922945463931659e-05']
['59866.465117040796 0.03430325306726483 6.79689520721758e-05 0.015076153550203144 4.0697727629406245e-05 0.0005332098578505016 1.4393876721839128e-06 0.015076153550203142 4.0697727629406245e-05 0.01922709951706169 7.922173615862674e-05']
['59866.46514857876 0.034280198702738233 6.793652497385274e-05 0.014974843312202136 4.062385205525472e-05 0.0005296267411474624 1.4367748582283645e-06 0.014974843312202137 4.062385205525472e-05 0.019305355390536096 7.915597754642502e-05']
['59866.46518011673 0.034229499590121275 6.790128748845207e-05 0.014986919881695293 4.064862878307803e-05 0.0005300538624208909 1.4376511557187472e-06 0.014986919881695293 4.064862878307803e-05 0.01924257970842598 7.913846008442354e-05']
['59866.465211654686 0.034166816799635034 6.784638795654182e-05 0.015024365282683153 4.066541917931488e-05 0.0005313782225682856 1.4382449945093175e-06 0.015024365282683153 4.066541917931488e-05 0.019142451516951882 7.909999162944946e-05']
['59866.46524319265 0.03420574658537615 6.787650596521245e-05 0.014937012925766283 4.0615698552167056e-05 0.0005282887649251639 1.436486487046161e-06 0.01493701292576628 4.0615698552167056e-05 0.01926873365960987 7.910028464503795e-05']
['59866.46527473061 0.03420791228900635 6.788294440484607e-05 0.014974320704777833 4.0645731371619084e-05 0.0005296082576908235 1.437548680750778e-06 0.014974320704777831 4.0645731371619084e-05 0.019233591584228514 7.912123368480324e-05']
['59866.465306268576 0.034152838881600825 6.784935531883415e-05 0.014962959144149746 4.062338186429102e-05 0.0005292064246830017 1.4367582286247936e-06 0.014962959144149746 4.062338186429102e-05 0.01918987973745108 7.9080934309563e-05']
['59866.46533780654 0.03420014121501934 6.78852952423562e-05 0.015038578552081027 4.067082849255689e-05 0.0005318809141421009 1.4384363098295838e-06 0.015038578552081029 4.067082849255689e-05 0.01916156266293831 7.913614597902053e-05']
['59866.4653693445 0.03420277856617339 6.790203748753761e-05 0.01505017782782144 4.0679702813943614e-05 0.0005322911546021837 1.4387501747440913e-06 0.015050177827821441 4.0679702813943614e-05 0.019152600738351948 7.915506879530669e-05']
['59866.465400882465 0.03419872285631162 6.787809430869864e-05 0.014999092151103633 4.06531787285543e-05 0.0005304843683864429 1.4378120771217132e-06 0.014999092151103635 4.06531787285543e-05 0.019199630705207985 7.91208988050336e-05']
['59866.46543242043 0.03421485633697246 6.789256777529078e-05 0.015038118217164137 4.065852961857536e-05 0.0005318646331248784 1.4380013261432227e-06 0.015038118217164137 4.065852961857536e-05 0.01917673811980832 7.913606503906434e-05']
['59866.46546395839 0.03429507687170954 6.793776466797163e-05 0.014985868348446736 4.0650035525765196e-05 0.000530016672039928 1.4377009090637075e-06 0.014985868348446736 4.0650035525765196e-05 0.019309208523262802 7.917048222871113e-05']
['59866.465495496355 0.034200451711540035 6.789049880700697e-05 0.015004916187385446 4.066198596409467e-05 0.0005306903515337755 1.4381235693597634e-06 0.015004916187385446 4.066198596409467e-05 0.019195535524154587 7.913606592956493e-05']
['59866.465527034314 0.03434896031661231 6.80012904072014e-05 0.01507648583888475 4.0683061315871844e-05 0.0005332216101585485 1.4388689574514828e-06 0.01507648583888475 4.0683061315871844e-05 0.01927247447772756 7.92419521155021e-05']
['59866.46555857228 0.03422815444804801 6.7924956350702e-05 0.015097830423677098 4.07124181395175e-05 0.0005339765204203144 1.4399072426951902e-06 0.015097830423677098 4.07124181395175e-05 0.019130324024370912 7.919154428353878e-05']
['59866.465590110245 0.034330144986016393 6.797400297444912e-05 0.015005974142610972 4.064491663129458e-05 0.0005307277690457116 1.4375198652063378e-06 0.015005974142610972 4.064491663129458e-05 0.019324170843405424 7.919895408611976e-05']
['59866.4656216482 0.03420775674305041 6.789209572832757e-05 0.014999723343498354 4.0650306093192106e-05 0.0005305066922508122 1.4377104784289147e-06 0.014999723343498354 4.0650306093192106e-05 0.019208033399552057 7.91314352697751e-05']
['59866.46565318617 0.03425712026589964 6.792179452265641e-05 0.015011477121283463 4.066326033930348e-05 0.0005309223971029241 1.4381686411628378e-06 0.015011477121283463 4.066326033930348e-05 0.019245643144616173 7.916357061552952e-05']
['59866.465684724135 0.034208324690703236 6.78853684078955e-05 0.015015885090040985 4.0669031776249756e-05 0.0005310782971066473 1.4383727639892253e-06 0.015015885090040985 4.0669031776249756e-05 0.01919243960066225 7.913528536306234e-05']
['59866.46571626209 0.03429356964597806 6.793746755355364e-05 0.015029701613445917 4.066878815750828e-05 0.0005315669566613672 1.438364147738795e-06 0.015029701613445917 4.066878815750828e-05 0.01926386803253214 7.917985746255445e-05']
['59866.46574780006 0.03420380030294834 6.787990240928057e-05 0.015003874301972558 4.067192233935171e-05 0.0005306535023751986 1.4384749967461128e-06 0.01500387430197256 4.067192233935171e-05 0.01919992600097578 7.913208210246784e-05']
['59866.46577933802 0.0343012057690902 6.793647449072508e-05 0.015016849114503232 4.067929372293227e-05 0.0005311123924974091 1.4387357061092846e-06 0.015016849114503232 4.067929372293227e-05 0.01928435665458697 7.918440189851494e-05']
['59866.46581087598 0.0342750319319244 6.797638405807423e-05 0.015054206887410848 4.06861508416007e-05 0.0005324336534354428 1.4389782270718288e-06 0.01505420688741085 4.06861508416007e-05 0.019220825044513553 7.922216646820696e-05']
['59866.46584241395 0.03427790559493794 6.795520401958784e-05 0.015002646763879003 4.063804664334562e-05 0.0005306100870962157 1.4372768890861023e-06 0.015002646763879003 4.063804664334562e-05 0.019275258831058933 7.917929393680232e-05']
['59866.46587395191 0.03415698244865884 6.785495614485005e-05 0.014985621152924216 4.063450088104407e-05 0.000530007929286746 1.4371514833978089e-06 0.014985621152924216 4.063450088104407e-05 0.019171361295734626 7.909145172059427e-05']
['59866.46590548987 0.03418199843588181 6.785698849108172e-05 0.015047048155816693 4.0670702612679994e-05 0.000532180465097781 1.438431857739663e-06 0.015047048155816692 4.0670702612679994e-05 0.019134950280065115 7.911180024552502e-05']
['59866.46593702784 0.03433866408584655 6.799939010506136e-05 0.015098520741095467 4.068908776157964e-05 0.0005340009354046335 1.439082099367854e-06 0.015098520741095469 4.068908776157964e-05 0.019240143344751083 7.924341560994103e-05']
['59866.4659685658 0.034368001909718435 6.798595140941687e-05 0.015067942067975244 4.0675582274801664e-05 0.0005329194360756836 1.4386044404835034e-06 0.015067942067975246 4.0675582274801664e-05 0.01930005984174319 7.922494924225418e-05']
['59866.46600010376 0.034235623437695 6.79490288815577e-05 0.01494150928419816 4.061711370127963e-05 0.0005284477910741298 1.4365365377076003e-06 0.014941509284198162 4.061711370127963e-05 0.019294114153496834 7.916325189991529e-05']
['59866.46603164172 0.03434410408206413 6.798728030420899e-05 0.015056303524130725 4.067237886686982e-05 0.0005325078067905175 1.4384911431041497e-06 0.015056303524130725 4.067237886686982e-05 0.0192878005579334 7.922444500186341e-05']
['59866.46606317969 0.034372218880245754 6.798590853042057e-05 0.015056451099027073 4.068237860043207e-05 0.0005325130261847909 1.4388448113321571e-06 0.015056451099027073 4.068237860043207e-05 0.01931576778121868 7.922840202412015e-05']
['59866.46609471765 0.034225511201604365 6.790242199207269e-05 0.014957140751476451 4.061516620292484e-05 0.0005290006411374896 1.4364676590431943e-06 0.014957140751476451 4.061516620292484e-05 0.019268370450127914 7.912225121974681e-05']
['59866.46612625561 0.03440390578793034 6.803611890418942e-05 0.015077242654288744 4.071178882241717e-05 0.0005332483770280049 1.4398849851557925e-06 0.015077242654288744 4.071178882241717e-05 0.01932666313364159 7.92865891854738e-05']
['59866.46615779358 0.03430200008439594 6.797137897150282e-05 0.015006105213767381 4.0648333005311756e-05 0.000530732404739587 1.4376406947201786e-06 0.015006105213767381 4.0648333005311756e-05 0.01929589487062856 7.919845538518016e-05']
['59866.46618933154 0.03421515835580259 6.79095466661818e-05 0.015022364088270351 4.065470561976475e-05 0.0005313074447943112 1.4378660798514258e-06 0.015022364088270353 4.065470561976475e-05 0.01919279426753224 7.914866781845449e-05']
['59866.4662208695 0.03434389120922529 6.798486614897018e-05 0.01490468985913839 4.0588380094450724e-05 0.0005271455702963377 1.435520294249894e-06 0.014904689859138388 4.0588380094450724e-05 0.019439201350086904 7.917928153238696e-05']
['59866.46625240747 0.03424222137561608 6.794019263025001e-05 0.014963826432872881 4.0626355867552054e-05 0.0005292370987468628 1.4368634124736301e-06 0.014963826432872881 4.0626355867552054e-05 0.0192783949427432 7.916041034325466e-05']
['59866.466283945425 0.034424029603052846 6.802959193934248e-05 0.015011070474805719 4.0646281302648937e-05 0.0005309080149258076 1.4375681305822803e-06 0.015011070474805717 4.0646281302648937e-05 0.01941295912824713 7.924736944004843e-05']
['59866.46631548339 0.034317016687231694 6.797327644528896e-05 0.015004668540719104 4.063997813513105e-05 0.0005306815928246447 1.437345201633923e-06 0.015004668540719104 4.063997813513105e-05 0.01931234814651259 7.919579618598203e-05']
['59866.466347021356 0.03435462310719499 6.797541373295847e-05 0.015020269026149278 4.066029385459712e-05 0.000531233347129277 1.438063723228477e-06 0.015020269026149278 4.066029385459712e-05 0.01933435408104571 7.920805747213517e-05']
['59866.466378559315 0.03429576366193515 6.796484744735673e-05 0.015018166022122378 4.0665311640619626e-05 0.000531158968576783 1.4382411911060014e-06 0.01501816602212238 4.0665311640619626e-05 0.019277597639812773 7.920156601590139e-05']
['59866.46641009728 0.03437433538751795 6.802111651469314e-05 0.015087224899854021 4.069251032320432e-05 0.000533601426744643 1.4392031477235438e-06 0.015087224899854023 4.069251032320432e-05 0.019287110487663926 7.926381701829372e-05']
['59866.466441635246 0.03417465146074202 6.785306297811925e-05 0.015039531409197235 4.0669740962070386e-05 0.0005319146145687908 1.4383978463067639e-06 0.015039531409197235 4.0669740962070386e-05 0.019135120051544788 7.910793882686189e-05']
['59866.466473173205 0.034175970740187515 6.787201493541599e-05 0.01499594172954881 4.064755385328474e-05 0.0005303729450168266 1.4376131378542854e-06 0.01499594172954881 4.064755385328474e-05 0.019180029010638706 7.911279318573585e-05']
['59866.46650471117 0.03415374361039183 6.783328134682283e-05 0.015043100230003622 4.067981930076577e-05 0.0005320408357848676 1.438754294622658e-06 0.015043100230003624 4.067981930076577e-05 0.019110643380388204 7.909615513171406e-05']
['59866.46653624913 0.03426452458312711 6.792875933537322e-05 0.015034446759723326 4.067276573528537e-05 0.0005317347818804214 1.4385048257754077e-06 0.015034446759723326 4.067276573528537e-05 0.01923007782340378 7.917442906267438e-05']
['59866.466567787094 0.03430933481854535 6.793305677596639e-05 0.015020167645253369 4.0645581849650215e-05 0.0005312297615135617 1.437543392492901e-06 0.015020167645253367 4.0645581849650215e-05 0.019289167173291988 7.91641555681818e-05']
['59866.46659932506 0.03432950599809711 6.797384925253713e-05 0.0149553748516712 4.0635702542682476e-05 0.0005289381852079316 1.4371939834844036e-06 0.0149553748516712 4.0635702542682476e-05 0.01937413114642591 7.91940938665505e-05']
['59866.46663086302 0.034245302543472404 6.793541526286663e-05 0.015003532208590752 4.065996361872354e-05 0.0005306414032968178 1.438052043523662e-06 0.015003532208590752 4.065996361872354e-05 0.019241770334881652 7.917356432808904e-05']
['59866.466662400984 0.034207494432701546 6.793138950913522e-05 0.014932881933568532 4.061700865622428e-05 0.0005281426609633537 1.4365328224987546e-06 0.014932881933568532 4.061700865622428e-05 0.019274612499133016 7.914805792198342e-05']
['59866.46669393895 0.0343637437795045 6.801684925525807e-05 0.015030959288663895 4.0654527665785504e-05 0.0005316114378230884 1.4378597860168838e-06 0.015030959288663895 4.0654527665785504e-05 0.019332784490840603 7.924066129419049e-05']
['59866.46672547691 0.03415833005186723 6.786913839206061e-05 0.014958477642803258 4.063552842039399e-05 0.0005290479239959425 1.4371878251682002e-06 0.014958477642803258 4.063552842039399e-05 0.019199852409063974 7.910414727487633e-05']
['59866.466757014874 0.03426701189276401 6.792202215719653e-05 0.015011855874783882 4.066501977048032e-05 0.0005309357927677697 1.4382308683114655e-06 0.015011855874783882 4.066501977048032e-05 0.019255156017980127 7.916466968829121e-05']
['59866.46678855283 0.03425981000052004 6.791921657410564e-05 0.015013545541588751 4.0662902208202886e-05 0.0005309955525064749 1.4381559748661856e-06 0.015013545541588753 4.0662902208202886e-05 0.019246264458931284 7.916117480200845e-05']
['59866.4668200908 0.034307586686209784 6.792840919986069e-05 0.01495849170054956 4.064065485454639e-05 0.000529048421187012 1.4373691356872647e-06 0.01495849170054956 4.064065485454639e-05 0.019349094985660224 7.915763768222296e-05']
['59866.466851628764 0.03423254535055729 6.788026569752036e-05 0.015057839527528318 4.067067476028161e-05 0.0005325621317979248 1.4384308726625784e-06 0.015057839527528316 4.067067476028161e-05 0.01917470582302897 7.913175251833215e-05']
['59866.46688316672 0.034277578296900535 6.794028224435551e-05 0.014966296928622209 4.0636760525607675e-05 0.0005293244746602835 1.4372314019760152e-06 0.014966296928622209 4.0636760525607675e-05 0.019311281368278324 7.916582758651788e-05']
['59866.46691470469 0.03419287563220009 6.785963808966469e-05 0.015034311434120155 4.0662526045689496e-05 0.0005317299957162721 1.4381426708387609e-06 0.015034311434120155 4.0662526045689496e-05 0.019158564198079934 7.91098698398414e-05']
['59866.466946242654 0.034186090215169294 6.787889715432848e-05 0.015040263673220837 4.067766552896861e-05 0.0005319405131107918 1.4386781205275892e-06 0.015040263673220837 4.067766552896861e-05 0.019145826541948456 7.913417183350404e-05']
['59866.46697778061 0.0342943045019132 6.795887785339946e-05 0.014987472943150738 4.0653981166030454e-05 0.0005300734229685504 1.4378404575419026e-06 0.014987472943150738 4.0653981166030454e-05 0.019306831558762463 7.919062611029935e-05']
['59866.46700931858 0.03421190484152799 6.791236785806084e-05 0.01502176805038876 4.0663998102629836e-05 0.0005312863642665055 1.438194734202887e-06 0.015021768050388759 4.0663998102629836e-05 0.019190136791139227 7.915586175248968e-05']
['59866.467040856536 0.03434727708118157 6.797538216530469e-05 0.015054879493699679 4.067615099436607e-05 0.0005324574420166921 1.4386245548234829e-06 0.015054879493699679 4.067615099436607e-05 0.019292397587481892 7.921617158280051e-05']
['59866.4670723945 0.03435468752888512 6.799235904242819e-05 0.015004298546645204 4.065129451406426e-05 0.000530668506961139 1.4377454366661722e-06 0.015004298546645204 4.065129451406426e-05 0.019350388982239914 7.921798175808102e-05']
['59866.46710393247 0.03417741094450305 6.786794638092409e-05 0.015062204637179978 4.0683139658780454e-05 0.0005327165159708581 1.4388717282650741e-06 0.015062204637179976 4.0683139658780454e-05 0.019115206307323072 7.912759315472587e-05']
['59866.467135470426 0.034284982083414364 6.795723768911836e-05 0.015027456445757455 4.0672033718105395e-05 0.0005314875500978809 1.4384789359637139e-06 0.015027456445757457 4.0672033718105395e-05 0.019257525637656907 7.919848787130997e-05']
['59866.46716700839 0.03417165231792479 6.787464379698876e-05 0.014972439061990169 4.061711710404563e-05 0.0005295417081906481 1.4365366580558291e-06 0.014972439061990169 4.061711710404563e-05 0.01919921325593462 7.909941512054221e-05']
['59866.46719854636 0.03414150831487103 6.784485281311178e-05 0.015010669506242953 4.0655132103782716e-05 0.0005308938335638546 1.4378811636380057e-06 0.015010669506242951 4.0655132103782716e-05 0.019130838808628082 7.9093386699577e-05']
['59866.467230084316 0.03443823232641543 6.804962233694024e-05 0.015093903456444317 4.0706430134767186e-05 0.0005338376323655461 1.4396954603495745e-06 0.015093903456444315 4.0706430134767186e-05 0.019344328869971113 7.9295425810805e-05']
['59866.46726162228 0.034209885293747355 6.78713060993268e-05 0.015020280778781267 4.067725817362546e-05 0.0005312337627936049 1.4386637132794877e-06 0.015020280778781266 4.067725817362546e-05 0.01918960451496609 7.912745114151153e-05']
['59866.46729316024 0.03431124441838738 6.795337858096648e-05 0.015026159921147307 4.066994077025842e-05 0.0005314416949199818 1.4384049130758296e-06 0.015026159921147307 4.066994077025842e-05 0.01928508449724007 7.919410169213666e-05']
['59866.467324698206 0.03432583744667176 6.79460719902621e-05 0.015011847534767593 4.064755224101765e-05 0.0005309354978000324 1.4376130808320015e-06 0.015011847534767593 4.064755224101765e-05 0.019313989911904167 7.91763361244516e-05']
['59866.46735623617 0.03424297162320162 6.792486356924976e-05 0.015003921191268612 4.06510897817202e-05 0.0005306551607448085 1.4377381957407125e-06 0.01500392119126861 4.06510897817202e-05 0.01923905043193301 7.915995320452552e-05']
['59866.46738777413 0.034238791132574595 6.790943417960978e-05 0.015014714724654484 4.0657656512345986e-05 0.0005310369038985395 1.4379704463271675e-06 0.015014714724654486 4.0657656512345986e-05 0.019224076407920107 7.915008707304536e-05']
['59866.467419312095 0.0343043750232007 6.797090714492443e-05 0.015024553611318192 4.0674913567585314e-05 0.0005313848833312172 1.4385807898037339e-06 0.01502455361131819 4.0674913567585314e-05 0.019279821411882513 7.921169618076913e-05']
['59866.46745085006 0.034248596579944994 6.790800930872821e-05 0.015061893068832197 4.067208007051784e-05 0.0005327054964947114 1.4384805753449506e-06 0.015061893068832198 4.067208007051784e-05 0.019186703511112797 7.915627470729615e-05']
['59866.46748238802 0.03431293806500634 6.797698999772838e-05 0.015069395930141175 4.067011126026499e-05 0.0005329708559313018 1.4384109429263391e-06 0.015069395930141175 4.067011126026499e-05 0.019243542134865167 7.921445019107056e-05']
['59866.467513925985 0.03435541906647277 6.798844193035864e-05 0.015069090032718781 4.068690093638878e-05 0.0005329600370231122 1.4390047562481199e-06 0.015069090032718781 4.068690093638878e-05 0.01928632903375399 7.923289811640909e-05']
['59866.467545463944 0.0343581129561449 6.799246605850259e-05 0.015090340156357272 4.070517176380722e-05 0.0005337116064049744 1.4396509545810141e-06 0.015090340156357272 4.070517176380722e-05 0.01926777279978763 7.924573457945655e-05']
['59866.46757700191 0.034301602826165546 6.793637494224383e-05 0.014995906675051613 4.065386092708186e-05 0.0005303717052176029 1.437836204959009e-06 0.014995906675051613 4.065386092708186e-05 0.01930569615111393 7.917125392825131e-05']
['59866.467608539875 0.03420153832982147 6.787923840813353e-05 0.014970610902848168 4.063546337411628e-05 0.0005294770502874907 1.4371855246267275e-06 0.01497061090284817 4.063546337411628e-05 0.019230927426973302 7.911277956498163e-05']
['59866.46764007783 0.03423056226721673 6.789200981327718e-05 0.015030140037173187 4.067729405975885e-05 0.0005315824627287815 1.4386649824918251e-06 0.015030140037173189 4.067729405975885e-05 0.019200422230043538 7.914522884236432e-05']
['59866.4676716158 0.03420558215893008 6.787268470088229e-05 0.015019774122483875 4.065790987647632e-05 0.0005312158434926763 1.437979407250222e-06 0.015019774122483875 4.065790987647632e-05 0.019185808036446206 7.91186890944804e-05']
['59866.467703153765 0.034315268299877036 6.798621053614509e-05 0.015014196150242323 4.0655144316285e-05 0.0005310185630805268 1.4378815955669182e-06 0.01501419615024232 4.0655144316285e-05 0.019301072149634717 7.921468034678298e-05']
['59866.46773469172 0.034230946323499135 6.790440917573779e-05 0.014967498764437771 4.063715158294609e-05 0.000529366980907135 1.4372452328001132e-06 0.014967498764437773 4.063715158294609e-05 0.019263447559061363 7.913524419802696e-05']
['59866.46776622969 0.034276268462876305 6.791485106816321e-05 0.015098486922121715 4.069403904484175e-05 0.0005339997393031128 1.4392572151913679e-06 0.015098486922121715 4.069403904484175e-05 0.019177781540754592 7.917342868282196e-05']
['59866.46779776765 0.034168466998549245 6.786943963572306e-05 0.014976643240390794 4.0642583976966246e-05 0.0005296904005848924 1.43743736443592e-06 0.014976643240390794 4.0642583976966246e-05 0.01919182375815845 7.91080303685524e-05']
['59866.46782930561 0.034201776542063474 6.787845475499462e-05 0.015104620624870616 4.068615698179922e-05 0.0005342166746613226 1.4389784442369279e-06 0.015104620624870616 4.068615698179922e-05 0.019097155917192857 7.913815760979947e-05']
['59866.46786084358 0.03429962321038704 6.792304943844401e-05 0.014982879381172874 4.064821599198604e-05 0.0005299109589474002 1.4376365562203574e-06 0.014982879381172874 4.064821599198604e-05 0.019316743829214167 7.915692078617295e-05']
['59866.46789238154 0.03429462520474595 6.792808321467882e-05 0.01498797188271769 4.064019285233551e-05 0.0005300910693459692 1.43735279570158e-06 0.01498797188271769 4.064019285233551e-05 0.01930665332202826 7.915712074283243e-05']
['59866.4679239195 0.03430762304352051 6.794859149041754e-05 0.015019824367381961 4.067163092951627e-05 0.0005312176205424309 1.4384646902314961e-06 0.015019824367381961 4.067163092951627e-05 0.01928779867613855 7.919086214960933e-05']
['59866.46795545747 0.03437448386744501 6.799963004544368e-05 0.015029085551353238 4.065046823829416e-05 0.0005315451679219669 1.4377162131388012e-06 0.015029085551353238 4.065046823829416e-05 0.01934539831609177 7.922379853497161e-05']
['59866.46798699543 0.03422347511890715 6.789454038248703e-05 0.015056060412710182 4.068400029037086e-05 0.000532499208482895 1.4389021668810285e-06 0.015056060412710183 4.068400029037086e-05 0.01916741470619697 7.915084644762846e-05']
['59866.46801853339 0.03422891923373913 6.787842759776643e-05 0.014990951964741615 4.065307603384323e-05 0.0005301964681870641 1.4378084450392918e-06 0.014990951964741615 4.065307603384323e-05 0.019237967268997513 7.912113196964928e-05']
['59866.46805007135 0.03433322721284948 6.799059362616174e-05 0.015017216182634208 4.066802675901216e-05 0.0005311253748768527 1.4383372187756126e-06 0.015017216182634206 4.066802675901216e-05 0.019316011030215276 7.922505425753645e-05']
['59866.46808160932 0.034352567702591805 6.797748817460887e-05 0.015092649024618555 4.069969169747764e-05 0.000533793265915359 1.4394571368821642e-06 0.015092649024618553 4.069969169747764e-05 0.01925991867797325 7.923006880470835e-05']
['59866.46811314728 0.03422511004327739 6.787735951340546e-05 0.015009606854715014 4.066237010190743e-05 0.0005308562499541979 1.4381371554557031e-06 0.015009606854715014 4.066237010190743e-05 0.019215503188562376 7.91249914806731e-05']
['59866.46814468524 0.034351865860476574 6.800478587564475e-05 0.015115642701305726 4.0714408589972406e-05 0.0005346065008719413 1.4399776404793853e-06 0.015115642701305726 4.0714408589972406e-05 0.019236223159170847 7.92610495061951e-05']
['59866.46817622321 0.03435212421653148 6.799313654681124e-05 0.0150103297977045 4.066291930934203e-05 0.0005308818188320535 1.4381565796952584e-06 0.015010329797704499 4.066291930934203e-05 0.01934179441882698 7.922461501472492e-05']
['59866.46820776117 0.034283774538359756 6.79503007187967e-05 0.015010958884888376 4.066056717103643e-05 0.0005309040682398201 1.4380733898201091e-06 0.015010958884888376 4.066056717103643e-05 0.01927281565347138 7.918664717264692e-05']
['59866.46823929913 0.03425628421457702 6.79340109567586e-05 0.015044458202364277 4.066732627253503e-05 0.0005320888642323744 1.438312444134412e-06 0.015044458202364277 4.066732627253503e-05 0.019211826012212746 7.917614079272756e-05']
['59866.4682708371 0.03417362682893544 6.785820760619962e-05 0.015013277020425897 4.066708892282307e-05 0.0005309860555130541 1.4383040496055452e-06 0.015013277020425896 4.066708892282307e-05 0.019160349808509544 7.911098824425648e-05']
['59866.468302375055 0.03430672742125738 6.79497378111785e-05 0.015006187752452823 4.066307446738601e-05 0.0005307353239484279 1.4381620672885161e-06 0.015006187752452821 4.066307446738601e-05 0.01930053966880456 7.918745161796836e-05']
['59866.46833391302 0.034177008029336986 6.78512561966705e-05 0.01497843461199463 4.063387955147264e-05 0.0005297537573950402 1.4371295083594571e-06 0.01497843461199463 4.063387955147264e-05 0.019198573417342355 7.908795821659453e-05']
['59866.468365450986 0.03418031901185932 6.786242663673613e-05 0.014966033511192812 4.062784441533923e-05 0.000529315158174509 1.436916059082154e-06 0.014966033511192812 4.062784441533923e-05 0.019214285500666506 7.9094441592715e-05']
['59866.468396988945 0.034171862471167665 6.786046144625125e-05 0.0150128157569977 4.0649907998215756e-05 0.0005309697416564619 1.437696398699291e-06 0.0150128157569977 4.0649907998215756e-05 0.019159046714169965 7.910409122138726e-05']
['59866.46842852691 0.034316787147243004 6.795033110936624e-05 0.015034118480460804 4.06634275609704e-05 0.0005317231713765669 1.4381745554194784e-06 0.015034118480460802 4.06634275609704e-05 0.0192826686667822 7.918814203451672e-05']
['59866.468460064876 0.03428895746862229 6.794158428023126e-05 0.015079740128538204 4.068710269258291e-05 0.0005333367071106819 1.4390118919138077e-06 0.015079740128538204 4.068710269258291e-05 0.019209217340084087 7.919279765246682e-05']
['59866.468491602835 0.03432443952772882 6.795964351205068e-05 0.015012453353123751 4.064472526184413e-05 0.0005309569242413654 1.4375130968965607e-06 0.015012453353123753 4.064472526184413e-05 0.019311986174605063 7.918653192239072e-05']
['59866.4685231408 0.034166191761599955 6.785103404514592e-05 0.0149622006609143 4.06211369382277e-05 0.0005291795988260743 1.4366788306070484e-06 0.014962200660914301 4.06211369382277e-05 0.019203991100685654 7.908122145711836e-05']
['59866.46855467876 0.034184719925843945 6.787053391687653e-05 0.015012992473139176 4.064565080099183e-05 0.0005309759917114486 1.4375458311477566e-06 0.015012992473139175 4.064565080099183e-05 0.01917172745270477 7.911054482935922e-05']
['59866.468586216724 0.03437818875206425 6.801410148964689e-05 0.015027756440100319 4.067411360733044e-05 0.00053149816022734 1.438552496997325e-06 0.015027756440100319 4.067411360733044e-05 0.019350432311963928 7.924835341624462e-05']
['59866.46861775469 0.03428442696790709 6.793355490391848e-05 0.015090239674464238 4.0700547677293104e-05 0.0005337080525849815 1.439487410975235e-06 0.015090239674464236 4.0700547677293104e-05 0.01919418729344285 7.919281825465815e-05']
['59866.46864929265 0.034312845322800205 6.79459441803578e-05 0.015020464105036095 4.065518649651365e-05 0.000531240246633528 1.4378830873873382e-06 0.015020464105036093 4.065518649651365e-05 0.01929238121776411 7.918014599397126e-05']
['59866.468680830614 0.034282305148241314 6.79026998660956e-05 0.014977074866775408 4.06540989028903e-05 0.000529705666245488 1.437844621631509e-06 0.014977074866775408 4.06540989028903e-05 0.019305230281465906 7.91424816815283e-05']
['59866.46871236858 0.034277912150702784 6.793270886390455e-05 0.015042111093526595 4.0677130674920385e-05 0.0005320058522382651 1.438659203935232e-06 0.015042111093526595 4.0677130674920385e-05 0.01923580105717619 7.918005994903366e-05']
['59866.46874390654 0.034192950871544246 6.789685968450403e-05 0.01503987418598391 4.067385289907327e-05 0.0005319267378176744 1.4385432763289174e-06 0.015039874185983909 4.067385289907327e-05 0.019153076685560336 7.914762071390826e-05']
['59866.468775444504 0.03411934609557979 6.782632649743804e-05 0.015020186852206584 4.067842663375791e-05 0.0005312304408205719 1.4387050391030177e-06 0.015020186852206584 4.067842663375791e-05 0.019099159243373205 7.908947439157179e-05']
['59866.46880698246 0.034336130343722904 6.796620115402493e-05 0.015036255137165918 4.0685885844507714e-05 0.0005317987401490801 1.4389688547168834e-06 0.015036255137165918 4.0685885844507714e-05 0.019299875206556988 7.921329311587603e-05']
['59866.46883852043 0.03427319543331086 6.793110278482652e-05 0.015068295289894198 4.067569087178144e-05 0.0005329319287455524 1.4386082813159782e-06 0.0150682952898942 4.067569087178144e-05 0.019204900143416657 7.917794234166097e-05']
['59866.468870058394 0.034154611747642956 6.78405794680577e-05 0.014960984715942321 4.062845516555513e-05 0.0005291365935698925 1.4369376599523442e-06 0.014960984715942321 4.062845516555513e-05 0.019193627031700633 7.907601148073527e-05']
['59866.46890159635 0.034341814746568354 6.79709993704893e-05 0.014987389241052609 4.064883984027945e-05 0.0005300704626124028 1.4376586203402765e-06 0.01498738924105261 4.064883984027945e-05 0.019354425505515742 7.919838972973976e-05']
['59866.46893313432 0.03426286907656628 6.79166886859928e-05 0.015095785751672742 4.070108977692182e-05 0.0005339042049410933 1.4395065838275813e-06 0.015095785751672742 4.070108977692182e-05 0.01916708332489354 7.917862913121894e-05']
['59866.46896467228 0.03416930516344429 6.785971448235195e-05 0.014999223688485204 4.0656635217491534e-05 0.0005304890205696602 1.4379343254106252e-06 0.014999223688485202 4.0656635217491534e-05 0.019170081474959088 7.910690764297704e-05']
['59866.46899621024 0.03424598403996014 6.794789830031982e-05 0.015048457737466023 4.068535142443168e-05 0.0005322303188504883 1.4389499534731525e-06 0.015048457737466025 4.068535142443168e-05 0.019197526302494113 7.91973150047406e-05']
['59866.46902774821 0.034230787567708004 6.789546696773392e-05 0.015095700203089544 4.071884367143755e-05 0.0005339011792788954 1.4401344993989835e-06 0.015095700203089544 4.071884367143755e-05 0.019135087364618462 7.916955642610117e-05']
['59866.469059286166 0.034174294545815435 6.787078960000921e-05 0.01503567713672519 4.0682664360239695e-05 0.0005317782975652465 1.4388549180179171e-06 0.01503567713672519 4.0682664360239695e-05 0.019138617409090244 7.912978744048689e-05']
['59866.46909082413 0.03421059459510761 6.788973006834822e-05 0.015063532009596804 4.0693723856732345e-05 0.0005327634621667385 1.4392460676923423e-06 0.015063532009596804 4.0693723856732345e-05 0.01914706258551081 7.915171893320556e-05']
['59866.4691223621 0.03431011837054168 6.793529730470952e-05 0.01509572644744588 4.069821500453327e-05 0.0005339021074831263 1.4394049095529364e-06 0.01509572644744588 4.069821500453327e-05 0.019214391923095802 7.919311412259584e-05']
['59866.469153900056 0.03427306233340616 6.790499750270223e-05 0.01500976297756812 4.0641663027530895e-05 0.0005308617716705982 1.4374047925125926e-06 0.01500976297756812 4.0641663027530895e-05 0.019263299355838037 7.913806580581413e-05']
['59866.46918543802 0.03419536432870736 6.789518355999091e-05 0.015040630832889253 4.066475387145796e-05 0.0005319534987277101 1.4382214640572937e-06 0.015040630832889253 4.066475387145796e-05 0.019154733495818105 7.914150717588788e-05']
['59866.46921697599 0.0342216454960215 6.787853642910693e-05 0.015016067435393285 4.0653460530623495e-05 0.0005310847462542403 1.4378220438311103e-06 0.015016067435393287 4.0653460530623495e-05 0.01920557806062821 7.91214228946406e-05']
['59866.469248513946 0.03422042399959604 6.790827664683885e-05 0.014996011124626863 4.065426119928106e-05 0.0005303753993656484 1.437850361692139e-06 0.014996011124626864 4.065426119928106e-05 0.019224412874969173 7.914734986594919e-05']
['59866.46928005191 0.034221364999964046 6.787833470522433e-05 0.014978182847714424 4.063862387286617e-05 0.0005297448530551094 1.4372973044042121e-06 0.014978182847714424 4.063862387286617e-05 0.01924318215224962 7.911362760381267e-05']
['59866.46931158987 0.03417971293570824 6.786820058217513e-05 0.01506484416655578 4.068363078101949e-05 0.0005328098702258793 1.4388890981610751e-06 0.01506484416655578 4.068363078101949e-05 0.01911486876915246 7.912806369290653e-05']
['59866.469343127836 0.034275965067210416 6.790973103885062e-05 0.015061462604438363 4.066610481109004e-05 0.0005326902719311328 1.438269243772908e-06 0.015061462604438365 4.066610481109004e-05 0.01921450246277205 7.915468179631317e-05']
['59866.4693746658 0.03427358057146781 6.791521041063466e-05 0.015086919485959069 4.068772401272139e-05 0.0005335906249377383 1.439033866618537e-06 0.015086919485959067 4.068772401272139e-05 0.01918666108550874 7.917049128593408e-05']
['59866.46940620376 0.03425502369249345 6.791500009159755e-05 0.015009889932785517 4.066499175094292e-05 0.0005308662617929092 1.4382298773230475e-06 0.015009889932785516 4.066499175094292e-05 0.019245133759707933 7.915863055628205e-05']
['59866.469437741725 0.03428561099756089 6.793264999171132e-05 0.015068180567787902 4.068080335914677e-05 0.0005329278712810416 1.4387890985683531e-06 0.015068180567787904 4.068080335914677e-05 0.019217430429772985 7.918189626955093e-05']
['59866.46946927969 0.03438598625044432 6.802278820361649e-05 0.01508209685336637 4.069524309587954e-05 0.0005334200592008842 1.439299799785679e-06 0.015082096853366372 4.069524309587954e-05 0.019303889397077945 7.926665456310616e-05']
['59866.46950081765 0.03426344792844348 6.793963062924575e-05 0.01509927332535976 4.071709229746959e-05 0.0005340275526281346 1.4400725572158272e-06 0.01509927332535976 4.071709229746959e-05 0.019164174603083717 7.920653391734172e-05']
['59866.469532355615 0.03439874601489117 6.804145939542943e-05 0.01506815780651378 4.068325169671759e-05 0.0005329270662656442 1.4388756907965206e-06 0.015068157806513778 4.068325169671759e-05 0.019330588208377394 7.927652341821219e-05']
['59866.469563893574 0.03430901117821892 6.795557858885835e-05 0.015140504780495343 4.072139408831643e-05 0.0005354858170494013 1.4402247019441433e-06 0.015140504780495343 4.072139408831643e-05 0.019168506397723578 7.922242484197563e-05']
['59866.46959543154 0.03433548883992459 6.799740654817519e-05 0.01502398304000893 4.0649129200954e-05 0.0005313647034991604 1.4376688543806523e-06 0.015023983040008928 4.0649129200954e-05 0.019311505799915665 7.922120298299988e-05']
['59866.469626969505 0.03429259901237749 6.795303901866881e-05 0.015071458725824348 4.0687376634208066e-05 0.0005330438124045386 1.439021580616866e-06 0.015071458725824348 4.0687376634208066e-05 0.01922114028655314 7.920276591916867e-05']
['59866.46965850746 0.03424522153405423 6.790389919352375e-05 0.014995463882301231 4.06515539108043e-05 0.0005303560446276054 1.4377546109491499e-06 0.01499546388230123 4.06515539108043e-05 0.019249757651753 7.914220341289003e-05']
['59866.46969004543 0.03429911972735488 6.794989605786291e-05 0.015123132809091642 4.072470656732875e-05 0.0005348714092449235 1.4403418569238542e-06 0.015123132809091642 4.072470656732875e-05 0.01917598691826324 7.921925333698496e-05']
['59866.46972158339 0.03427216728799838 6.791909825605534e-05 0.015011906217649494 4.065768246744327e-05 0.0005309375732824166 1.4379713643009522e-06 0.015011906217649492 4.065768246744327e-05 0.019260261070348887 7.915839217378751e-05']
['59866.46975312135 0.03437025928621575 6.800949442365765e-05 0.015057171093135244 4.067535061968042e-05 0.0005325384907673048 1.4385962473595838e-06 0.015057171093135245 4.067535061968042e-05 0.01931308819308051 7.924503441727726e-05']
['59866.46978465932 0.03431511739238649 6.797966925667744e-05 0.015119806494366617 4.069840917056674e-05 0.0005347537649269752 1.4394117767716047e-06 0.015119806494366615 4.069840917056674e-05 0.019195310898019874 7.923128133043241e-05']
['59866.46981619728 0.03420191870771358 6.788677037666961e-05 0.015019003552791572 4.065233531213373e-05 0.0005311885901647814 1.4377822473678424e-06 0.01501900355279157 4.065233531213373e-05 0.019182915154922008 7.91279088470359e-05']
['59866.46984773524 0.03425202787605036 6.793112232382914e-05 0.014980450115631252 4.063562309618086e-05 0.0005298250412542819 1.437191173639194e-06 0.01498045011563125 4.063562309618086e-05 0.01927157776041911 7.915738275479997e-05']
['59866.46987927321 0.03417729436276665 6.786763350458164e-05 0.014986905340725398 4.06477989794222e-05 0.0005300533481392829 1.4376218074179426e-06 0.014986905340725398 4.06477989794222e-05 0.01919038902204125 7.910916027479832e-05']
['59866.46991081117 0.03435856457214319 6.796487112671153e-05 0.01507315109854912 4.0689804112108946e-05 0.0005331036678455834 1.4391074350851263e-06 0.01507315109854912 4.0689804112108946e-05 0.019285413473594068 7.921416455377348e-05']
['59866.46994234913 0.034398328548183046 6.804569676833497e-05 0.015129258638552941 4.071851207679379e-05 0.0005350880661425465 1.4401227716375042e-06 0.015129258638552941 4.071851207679379e-05 0.019269069909630107 7.929826022326211e-05']
['59866.46997388709 0.034292744629522476 6.795151292807314e-05 0.015126756870793562 4.07177278503642e-05 0.0005349995842080192 1.4400950353013325e-06 0.015126756870793562 4.07177278503642e-05 0.019165987758728915 7.921705290220292e-05']
['59866.47000542506 0.034390211240382995 6.803247954715928e-05 0.015065663033051058 4.068938792711907e-05 0.0005328388317037584 1.439092715552153e-06 0.015065663033051058 4.068938792711907e-05 0.019324548207331937 7.927196580896824e-05']
['59866.47003696302 0.034251362724404696 6.792309151988713e-05 0.014999821164306006 4.064924291764963e-05 0.0005305101519541621 1.4376728762860349e-06 0.014999821164306005 4.064924291764963e-05 0.019251541560098694 7.915748424120775e-05']
['59866.47006850098 0.03429575974744001 6.792692395438925e-05 0.015074786204655511 4.068769648837675e-05 0.0005331614978943193 1.4390328931439805e-06 0.015074786204655511 4.068769648837675e-05 0.019220973542784497 7.918052565773762e-05']
['59866.47010003895 0.034242162838859176 6.794525418702977e-05 0.015051894610591254 4.066333111162224e-05 0.0005323518733719683 1.4381711442215855e-06 0.015051894610591254 4.066333111162224e-05 0.019190268228267922 7.918373610555081e-05']
['59866.47013157691 0.03414102444251837 6.785248779252057e-05 0.014994182458160168 4.064226842121958e-05 0.0005303107235195505 1.437426203934386e-06 0.01499418245816017 4.064226842121958e-05 0.019146841984358197 7.90933251422433e-05']
['59866.47016311487 0.03429903755306021 6.796091837581544e-05 0.014964801766970329 4.062715015149312e-05 0.0005292715941341462 1.4368915045215055e-06 0.01496480176697033 4.062715015149312e-05 0.019334235786089882 7.91786066808214e-05']
['59866.47019465284 0.03426967166755415 6.792516146740783e-05 0.01502188242603501 4.0662211886737625e-05 0.0005312904094774988 1.438131559738737e-06 0.01502188242603501 4.0662211886737625e-05 0.019247789241519143 7.916592092494959e-05']
['59866.470226190795 0.034320232729194954 6.79536750028477e-05 0.015012734791001093 4.0640188554050774e-05 0.0005309668780701102 1.437352643680855e-06 0.01501273479100109 4.0640188554050774e-05 0.019307497938193863 7.917908102587101e-05']
['59866.47025772876 0.03425590943102873 6.79138561876676e-05 0.015045528845888199 4.067096362308928e-05 0.000532126730501068 1.4384410890945155e-06 0.015045528845888199 4.067096362308928e-05 0.01921038058514053 7.916071717910246e-05']
['59866.47028926673 0.034316015458216234 6.795128722449464e-05 0.01500103857383117 4.0648401711417326e-05 0.0005305532090083171 1.4376431247015836e-06 0.015001038573831171 4.0648401711417326e-05 0.019314976884385063 7.918124776207132e-05']
['59866.470320804685 0.03419814223714548 6.78833193044692e-05 0.014996727903643075 4.065340948529221e-05 0.000530400750237545 1.4378202384718223e-06 0.014996727903643077 4.065340948529221e-05 0.0192014143335024 7.912549995147815e-05']
['59866.47035234265 0.03422912813356917 6.789060005064489e-05 0.015100319970905047 4.0703427394343515e-05 0.0005340645701419563 1.4395892601315192e-06 0.015100319970905047 4.0703427394343515e-05 0.019128808162664122 7.915745433554075e-05']
['59866.470383880616 0.03418497812600181 6.785973045783478e-05 0.014965833348417076 4.0639418012451234e-05 0.0005293080788644687 1.4373253913465384e-06 0.014965833348417076 4.0639418012451234e-05 0.019219144777584733 7.909807402333342e-05']
['59866.470415418575 0.03421719309825228 6.790062402115395e-05 0.014986578204098247 4.0627413555765746e-05 0.0005300417780478879 1.4369008205419543e-06 0.014986578204098247 4.0627413555765746e-05 0.019230614894154036 7.912699586546507e-05']
['59866.47044695654 0.03419778781165501 6.783863349137214e-05 0.015012486992288696 4.065964709728929e-05 0.0005309581139834503 1.4380408488679165e-06 0.015012486992288694 4.065964709728929e-05 0.019185300819366313 7.90903729669599e-05']
['59866.4704784945 0.034212183383140506 6.787043195962043e-05 0.014978370075467248 4.0635045974141174e-05 0.0005297514748822973 1.437170762122442e-06 0.014978370075467247 4.0635045974141174e-05 0.019233813307673257 7.910500929591016e-05']
['59866.470510032465 0.03419256667647035 6.786105826965445e-05 0.015012944073936111 4.066229851408865e-05 0.0005309742799398021 1.438134623554542e-06 0.015012944073936111 4.066229851408865e-05 0.01917962260253424 7.91109711097411e-05']
['59866.47054157043 0.03414020179419565 6.786343767094964e-05 0.014976330266620022 4.063156664341044e-05 0.0005296793314020754 1.4370477059703426e-06 0.01497633026662002 4.063156664341044e-05 0.019163871527575628 7.909722106633564e-05']
['59866.47057310839 0.034273281318111394 6.794119253182477e-05 0.01497049698151947 4.064572882039512e-05 0.0005294730211446938 1.437548590519688e-06 0.014970496981519468 4.064572882039512e-05 0.019302784336591924 7.917121265957457e-05']
['59866.470604646354 0.034289837987724885 6.793681585819641e-05 0.015054497678574003 4.066928549127211e-05 0.0005324439380690035 1.4383817373225461e-06 0.015054497678574003 4.066928549127211e-05 0.019235340309150882 7.91795537454025e-05']
['59866.47063618432 0.034273247921721005 6.795137784052731e-05 0.014964359987594376 4.0634953659992295e-05 0.0005292559693849375 1.4371674971773061e-06 0.014964359987594378 4.0634953659992295e-05 0.019308887934126627 7.917442269682696e-05']
['59866.47066772228 0.034239125244200135 6.792340834464142e-05 0.014986948073565662 4.0648979524694904e-05 0.0005300548595043408 1.4376635606658748e-06 0.014986948073565664 4.0648979524694904e-05 0.01925217717063447 7.915762084317574e-05']
['59866.470699260244 0.034230533487579394 6.788970939165361e-05 0.01500003012802645 4.064521000468206e-05 0.0005305175425339479 1.437530241167402e-06 0.015000030128026452 4.064521000468206e-05 0.019230503359552942 7.912677004407477e-05']
['59866.4707307982 0.03421374037713247 6.789858191970823e-05 0.014998569015770204 4.06573976104975e-05 0.0005304658662588381 1.4379612895473981e-06 0.014998569015770204 4.06573976104975e-05 0.019215171361362266 7.914064320666983e-05']
['59866.47076233617 0.03422683088100718 6.788282407245925e-05 0.014974498474617194 4.063816026883979e-05 0.0005296145450127495 1.4372809077658932e-06 0.014974498474617192 4.063816026883979e-05 0.019252332406389985 7.911724132000788e-05']
['59866.470793874134 0.03428906444333623 6.792270033529744e-05 0.015077381265648905 4.070246906151335e-05 0.0005332532794020356 1.439555366041064e-06 0.015077381265648903 4.070246906151335e-05 0.019211683177687327 7.918449474829063e-05']
['59866.47082541209 0.03435955826832091 6.799325090011627e-05 0.015059058151278122 4.0691507159992104e-05 0.0005326052317964916 1.4391676680826655e-06 0.015059058151278122 4.0691507159992104e-05 0.01930050011704279 7.923938997063172e-05']
['59866.47085695006 0.034274572883174745 6.791387602021419e-05 0.015081172612880054 4.0683293915798536e-05 0.0005333873708804391 1.4388771839910595e-06 0.015081172612880056 4.0683293915798536e-05 0.01919340027029469 7.916706992132697e-05']
['59866.470888488024 0.03431759353862964 6.795245902526354e-05 0.014992012050356125 4.064900954442154e-05 0.0005302339610460974 1.4376646223965156e-06 0.014992012050356125 4.064900954442154e-05 0.019325581488273517 7.918256540756048e-05']
['59866.47092002598 0.03425130920534843 6.790450422227548e-05 0.015029791911597404 4.0668794620077126e-05 0.0005315701503051808 1.4383643763054121e-06 0.015029791911597404 4.0668794620077126e-05 0.01922151729375103 7.915157957692976e-05']
['59866.47095156395 0.03428654028933503 6.793085487733798e-05 0.01505093624218533 4.066762703097054e-05 0.0005323179780232781 1.4383230812881202e-06 0.01505093624218533 4.066762703097054e-05 0.019235604047149704 7.917358734259854e-05']
['59866.470983101906 0.0342860846737306 6.795743853678299e-05 0.014959323477813825 4.063142512224627e-05 0.0005290778392899362 1.437042700683047e-06 0.014959323477813825 4.063142512224627e-05 0.019326761195916774 7.917781355875738e-05']
['59866.47101463987 0.03423842687306405 6.790649120086789e-05 0.014972098214718326 4.062595562580944e-05 0.0005295296531843918 1.4368492568176815e-06 0.014972098214718328 4.062595562580944e-05 0.019266328658345717 7.913128216908775e-05']
['59866.47104617784 0.034256401633475826 6.791552830130983e-05 0.014990562006245002 4.063872369910068e-05 0.0005301826762265448 1.4373008350350284e-06 0.014990562006245002 4.063872369910068e-05 0.019265839627230823 7.914559272845118e-05']
['59866.471077715796 0.03409164501682387 6.779006802047747e-05 0.014944765687303626 4.061275177997399e-05 0.0005285629627743375 1.4363822662993403e-06 0.014944765687303624 4.061275177997399e-05 0.01914687932952025 7.90246096438492e-05']
['59866.47110925376 0.034275350855662974 6.795695898508744e-05 0.014960161614343236 4.063823342981118e-05 0.0005291074823058566 1.437283495305946e-06 0.014960161614343236 4.063823342981118e-05 0.01931518924131974 7.918089599642504e-05']
['59866.47114079173 0.03414756059489094 6.78521556822526e-05 0.015043955883191785 4.068821870713249e-05 0.0005320710983258605 1.4390513628542807e-06 0.015043955883191783 4.068821870713249e-05 0.01910360471169916 7.911666178680752e-05']
['59866.471172329686 0.03428861492822263 6.795303373976888e-05 0.014986420845761789 4.065273307295243e-05 0.0005300362126352025 1.4377963152790568e-06 0.014986420845761787 4.065273307295243e-05 0.019302194082460845 7.91849701694639e-05']
['59866.47120386765 0.034215155565752234 6.791845976996491e-05 0.015008250243987317 4.0644900388517195e-05 0.0005308082696646058 1.437519290735602e-06 0.015008250243987317 4.0644900388517195e-05 0.019206905321764917 7.915127987036487e-05']
['59866.47123540561 0.03426437576926273 6.791435334420933e-05 0.015119627737244411 4.072368896488095e-05 0.0005347474426870615 1.4403058665994832e-06 0.015119627737244413 4.072368896488095e-05 0.019144748032018315 7.91882455486323e-05']
['59866.471266943576 0.03424415048407356 6.790204333615118e-05 0.01501064623495125 4.066918345513693e-05 0.0005308930105102754 1.4383781285324823e-06 0.015010646234951252 4.066918345513693e-05 0.019233504249122308 7.914966817449166e-05']
['59866.47129848154 0.03412937234750952 6.781896559302811e-05 0.015025158829594461 4.065668956030381e-05 0.0005314062885490656 1.4379362473944462e-06 0.015025158829594461 4.065668956030381e-05 0.01910421351791506 7.90719830288279e-05']
['59866.4713300195 0.034374235943666606 6.799916447152262e-05 0.015057995493175219 4.0689085901237894e-05 0.000532567647954293 1.439082033571724e-06 0.01505799549317522 4.0689085901237894e-05 0.019316240450491386 7.924322103690322e-05']
['59866.471361557466 0.034187409523795176 6.785348436495197e-05 0.014981211552843847 4.0646915179954494e-05 0.0005298519715867795 1.4375905494059453e-06 0.014981211552843848 4.0646915179954494e-05 0.019206197970951328 7.909656790348868e-05']
['59866.47139309543 0.03424412819183101 6.790513192935077e-05 0.01495068781293645 4.061673513032218e-05 0.0005287724151227986 1.4365231484988919e-06 0.014950687812936448 4.061673513032218e-05 0.01929344037889456 7.912538224229493e-05']
['59866.47142463339 0.03432094990196375 6.799568731413244e-05 0.01504718510568289 4.068837638998994e-05 0.0005321853087084835 1.4390569397445484e-06 0.01504718510568289 4.068837638998994e-05 0.01927376479628086 7.923987295910286e-05']
['59866.471456171355 0.034322866992186514 6.796122971250785e-05 0.014945790999859473 4.0613065898834104e-05 0.0005285992257879991 1.4363933759814083e-06 0.014945790999859473 4.0613065898834104e-05 0.01937707599232704 7.917164811811929e-05']
['59866.471487709314 0.03421133414426753 6.789054827840076e-05 0.014999289008804175 4.063751633365828e-05 0.00053049133080336 1.4372581332176335e-06 0.014999289008804175 4.063751633365828e-05 0.019212045135463356 7.912353808640137e-05']
['59866.47151924728 0.03426976114768139 6.793298506152284e-05 0.015066955989233455 4.0685973381645313e-05 0.0005328845606743427 1.4389719507098064e-06 0.015066955989233455 4.0685973381645313e-05 0.019202805158447935 7.918484002245023e-05']
['59866.471550785245 0.034170414155790294 6.785822315109691e-05 0.014970960179218125 4.063247301009138e-05 0.0005294894034121093 1.4370797621342372e-06 0.014970960179218125 4.063247301009138e-05 0.01919945397657217 7.909321280704096e-05']
['59866.4715823232 0.03432887290650811 6.797219473588572e-05 0.014932271593171014 4.060795996688722e-05 0.0005281210745875241 1.436212790579533e-06 0.014932271593171016 4.060795996688722e-05 0.019396601313337092 7.917844195161638e-05']
['59866.47161386117 0.03420852458221595 6.789229604407769e-05 0.015108495713456562 4.070634581440038e-05 0.0005343537278842942 1.4396924781266456e-06 0.015108495713456562 4.070634581440038e-05 0.01910002886875939 7.916040962310793e-05']
['59866.471645399135 0.0341918335846383 6.788492655660503e-05 0.014982110685863722 4.064218818758441e-05 0.0005298837719122484 1.4374233662500217e-06 0.014982110685863722 4.064218818758441e-05 0.01920972289877458 7.912111421277309e-05']
['59866.47167693709 0.03423421670206875 6.789981208754316e-05 0.015081577927886596 4.069002747292285e-05 0.0005334017059663947 1.439115334857932e-06 0.015081577927886596 4.069002747292285e-05 0.019152638774182152 7.9158466491405e-05']
['59866.47170847506 0.0343248949210994 6.797337449855338e-05 0.015067365114345272 4.0682136069688883e-05 0.0005328990305152069 1.438836233561795e-06 0.015067365114345272 4.0682136069688883e-05 0.019257529806754128 7.921752227830196e-05']
['59866.47174001302 0.03427517443782645 6.793944878287515e-05 0.015019534289119531 4.0670643632679016e-05 0.0005312073611225755 1.438429771748841e-06 0.015019534289119533 4.0670643632679016e-05 0.019255640148706912 7.918251040739545e-05']
['59866.47177155098 0.034206249954637565 6.786991489738303e-05 0.014999404260329538 4.064397101337528e-05 0.00053049540699224 1.4374864208138636e-06 0.014999404260329537 4.064397101337528e-05 0.019206845694308028 7.91091507217345e-05']
['59866.47180308895 0.03412837593310613 6.782137163332675e-05 0.014966244720712871 4.062795439487114e-05 0.0005293226281832081 1.4369199488124078e-06 0.014966244720712873 4.062795439487114e-05 0.019162131212393255 7.905927604359623e-05']
['59866.47183462691 0.03416393743184945 6.785911886863016e-05 0.015019412390103567 4.067452917464677e-05 0.0005312030498268091 1.4385671946845653e-06 0.015019412390103567 4.067452917464677e-05 0.019144525041745884 7.911559477881759e-05']
['59866.47186616487 0.034292084573048214 6.795907175058334e-05 0.015006645836868168 4.0653053126071554e-05 0.0005307515253704403 1.4378076348426036e-06 0.015006645836868168 4.0653053126071554e-05 0.019285438736180046 7.919031608518891e-05']
['59866.47189770284 0.03431225874775229 6.795623008231211e-05 0.015015345921813866 4.064625159660639e-05 0.0005310592279314241 1.4375670799459445e-06 0.015015345921813866 4.064625159660639e-05 0.01929691282593842 7.918438593469529e-05']
['59866.4719292408 0.03412524444272064 6.780886975909154e-05 0.015013446584584434 4.064711912595756e-05 0.000530992052618388 1.4375977625202812e-06 0.015013446584584434 4.064711912595756e-05 0.0191117978581362 7.905840316655292e-05']
['59866.47196077876 0.034303927504417735 6.795440677476932e-05 0.01513339552793126 4.071310300046704e-05 0.0005352343786744541 1.439931464696401e-06 0.015133395527931262 4.071310300046704e-05 0.019170531976486473 7.921715821738023e-05']
['59866.47199231672 0.034353260022248956 6.799939948173443e-05 0.01506044727668067 4.0673942965934755e-05 0.0005326543620574672 1.4385464617925206e-06 0.015060447276680669 4.0673942965934755e-05 0.019292812745568287 7.923564832998224e-05']
['59866.47202385469 0.03422065112198977 6.78843130223707e-05 0.015041501259050469 4.067458178883203e-05 0.0005319842837557444 1.4385690555307123e-06 0.015041501259050469 4.067458178883203e-05 0.019179149862939303 7.913723243970308e-05']
['59866.47205539265 0.034197440432716275 6.790873776781331e-05 0.015038252139938688 4.0655949569725764e-05 0.0005318693696741145 1.4379100755814825e-06 0.015038252139938688 4.0655949569725764e-05 0.019159188292777588 7.914861275242743e-05']
['59866.47208693061 0.03425273397338049 6.794512115907938e-05 0.014990588019829833 4.064574690367964e-05 0.0005301835962689033 1.4375492300850477e-06 0.014990588019829831 4.064574690367964e-05 0.019262145953550656 7.91745933407931e-05']
['59866.47211846858 0.03426075246620544 6.790565652028018e-05 0.01497847091596997 4.063658839520167e-05 0.0005297550413855134 1.4372253141082437e-06 0.014978470915969972 4.063658839520167e-05 0.019282281550235467 7.913602532255022e-05']
['59866.47215000654 0.03421435305296276 6.787444848836771e-05 0.01503754454369909 4.0673874412707384e-05 0.0005318443435765044 1.4385440372180759e-06 0.015037544543699091 4.0673874412707384e-05 0.01917680850926367 7.912840714522676e-05']
['59866.4721815445 0.034223511576666706 6.78944711642642e-05 0.015059805088959955 4.0680441456455074e-05 0.0005326316493129905 1.4387762988789528e-06 0.015059805088959955 4.0680441456455074e-05 0.019163706487706753 7.914895786911646e-05']
['59866.47221308247 0.03422222660059756 6.788779229666436e-05 0.015062658452795582 4.0685768102511446e-05 0.0005327325664149638 1.4389646904456134e-06 0.015062658452795582 4.0685768102511446e-05 0.019159568147801977 7.914596685243273e-05']
['59866.472244620425 0.03434009434953924 6.799136199450046e-05 0.015094079993051604 4.069318486784031e-05 0.0005338438760708099 1.4392270048598003e-06 0.015094079993051606 4.069318486784031e-05 0.019246014356487633 7.923863073372374e-05']
['59866.47227615839 0.03416478103598274 6.788275061705932e-05 0.014945875670180492 4.059552504794676e-05 0.0005286022203880265 1.4357729952870174e-06 0.014945875670180492 4.059552504794676e-05 0.01921890536580225 7.909528737703872e-05']
['59866.47230769636 0.03429698270944135 6.796184877604235e-05 0.014989635363724533 4.0650058222112135e-05 0.00053014990295152 1.4377017117827753e-06 0.014989635363724534 4.0650058222112135e-05 0.019307347345716815 7.919116189650683e-05']
['59866.472339234315 0.034362544899346356 6.802704485660991e-05 0.015057321920981893 4.068751364459165e-05 0.0005325438252111604 1.4390264263679332e-06 0.015057321920981895 4.068751364459165e-05 0.019305222978364463 7.926633963103159e-05']
['59866.47237077228 0.03418009490950055 6.785653622308888e-05 0.015026006416617863 4.0676276845823306e-05 0.0005314362658078378 1.438629005908264e-06 0.015026006416617861 4.0676276845823306e-05 0.019154088492882693 7.911427814391934e-05']
['59866.472402310246 0.03439469780180354 6.803638303424562e-05 0.01500787116197467 4.064998519744497e-05 0.0005307948623810169 1.4376991290634982e-06 0.01500787116197467 4.064998519744497e-05 0.019386826639828873 7.925509897120235e-05']
['59866.472433848205 0.0343241230513317 6.798859159545401e-05 0.015011224222421059 4.0652019808777194e-05 0.0005309134526353565 1.4377710887192303e-06 0.015011224222421059 4.0652019808777194e-05 0.019312898828910643 7.921512041060502e-05']
['59866.47246538617 0.0343626727796227 6.800105793152153e-05 0.015148981064393873 4.0723916598008895e-05 0.0005357856042675126 1.4403139174744884e-06 0.015148981064393873 4.0723916598008895e-05 0.019213691715228826 7.926273565104683e-05']
['59866.47249692413 0.03422604519688515 6.788798443795903e-05 0.01504461668767292 4.068795415769601e-05 0.0005320944695035473 1.4390420063319455e-06 0.01504461668767292 4.068795415769601e-05 0.01918142850921223 7.914725544570285e-05']
['59866.472528462094 0.03423314436623342 6.79226033514217e-05 0.015094434173374008 4.068921296237318e-05 0.0005338564026372668 1.4390865274401144e-06 0.015094434173374008 4.068921296237318e-05 0.019138710192859412 7.917759845771984e-05']
['59866.47256000006 0.034190287129486074 6.787920910079472e-05 0.014974092583910904 4.06260004271169e-05 0.0005296001895655804 1.4368508413398013e-06 0.014974092583910904 4.06260004271169e-05 0.01921619454557517 7.910789428908796e-05']
['59866.47259153802 0.034175384399832975 6.787705744890846e-05 0.015042698284762865 4.0683169533591345e-05 0.0005320266198799967 1.438872784870369e-06 0.015042698284762865 4.0683169533591345e-05 0.01913268611507011 7.913542323903597e-05']
['59866.472623075984 0.03421636457057638 6.788132571642437e-05 0.015000758275575718 4.064958041499716e-05 0.0005305432954854514 1.4376848128129549e-06 0.015000758275575716 4.064958041499716e-05 0.01921560629500066 7.912182233072376e-05']
['59866.47265461395 0.03423829172988531 6.789845111465023e-05 0.015013690126306184 4.0651708232738624e-05 0.0005310006661448026 1.4377600689710775e-06 0.015013690126306184 4.0651708232738624e-05 0.019224601603579125 7.913760829092737e-05']
['59866.47268615191 0.03424451173950386 6.794370952575211e-05 0.015034823452804325 4.066614757153779e-05 0.0005317481046728368 1.438270756114381e-06 0.015034823452804323 4.066614757153779e-05 0.019209688286699535 7.918385708229845e-05']
['59866.472717689874 0.03418871630174308 6.787276376390793e-05 0.014985150548485536 4.0638701433770286e-05 0.0005299912850594889 1.4373000475600523e-06 0.014985150548485537 4.0638701433770286e-05 0.019203565753257545 7.910888771291362e-05']
['59866.47274922783 0.0342809770818749 6.793393600894071e-05 0.01508479539702949 4.069871001348446e-05 0.0005335155006593585 1.43942241691326e-06 0.01508479539702949 4.069871001348446e-05 0.01919618168484541 7.919220074242508e-05']
['59866.4727807658 0.03422292913354009 6.79115148291308e-05 0.015047471552524925 4.068421564512565e-05 0.0005321954396931152 1.4389097834974158e-06 0.015047471552524925 4.068421564512565e-05 0.019175457581015163 7.916551805581986e-05']
['59866.472812303764 0.0342340355951212 6.790502198328518e-05 0.014988563092097682 4.0651740874812326e-05 0.0005301119791004643 1.4377612234482736e-06 0.014988563092097682 4.0651740874812326e-05 0.019245472503023518 7.914326280046414e-05']
['59866.47284384172 0.034312009146491955 6.794578237740708e-05 0.015092114692907312 4.069456086642338e-05 0.0005337743677968935 1.4392756708545076e-06 0.015092114692907312 4.069456086642338e-05 0.019219894453584643 7.920023123065362e-05']
['59866.47287537969 0.03435055098635817 6.797709550502219e-05 0.015068571368629519 4.0684878829102155e-05 0.000532941693033421 1.4389332388325357e-06 0.015068571368629519 4.0684878829102155e-05 0.01928197961772865 7.922212366907134e-05']
['59866.472906917654 0.03433444815405452 6.798975830149591e-05 0.015009312752755289 4.064827082428438e-05 0.0005308458482251616 1.4376384955162066e-06 0.01500931275275529 4.064827082428438e-05 0.01932513540129923 7.921419793761849e-05']
['59866.47293845561 0.034289766017962 6.79464303618836e-05 0.015036571898691314 4.066269361398393e-05 0.0005318099432963131 1.4381485973548418e-06 0.015036571898691314 4.066269361398393e-05 0.019253194119270685 7.91844179802253e-05']
['59866.47296999358 0.034253952363408564 6.791527105657366e-05 0.015026813326017106 4.067472448734889e-05 0.0005314648043899527 1.438574102458341e-06 0.015026813326017106 4.067472448734889e-05 0.01922713903739146 7.91638633140754e-05']
['59866.473001531536 0.03430688022506602 6.793189597228303e-05 0.014975439474730404 4.063785470553825e-05 0.0005296478260837424 1.4372701006748114e-06 0.014975439474730404 4.063785470553825e-05 0.019331440750335615 7.915919229917344e-05']
['59866.4730330695 0.03433626268343565 6.80028253443244e-05 0.015101051145796268 4.070667549971585e-05 0.0005340904301637791 1.4397041383594502e-06 0.015101051145796268 4.070667549971585e-05 0.01923521153763938 7.92553953056185e-05']
['59866.47306460747 0.03419425737569852 6.787083491810534e-05 0.015018332841999623 4.066342279670935e-05 0.0005311648686230206 1.4381743869182126e-06 0.015018332841999622 4.066342279670935e-05 0.019175924533698898 7.911993545260669e-05']
['59866.473096145426 0.03426931093773781 6.79524037079898e-05 0.0151087480515601 4.069325893168985e-05 0.0005343626525190739 1.4392296243326356e-06 0.0151087480515601 4.069325893168985e-05 0.019160562886177707 7.920524283262555e-05']
['59866.47312768339 0.03428354107008795 6.794237309404735e-05 0.01502776748762963 4.0667757253465034e-05 0.0005314985509537619 1.4383276869667203e-06 0.015027767487629629 4.0667757253465034e-05 0.01925577358245832 7.918353706217908e-05']
['59866.47315922136 0.03421456489712538 6.789019827301063e-05 0.01501883359309792 4.0670371145993776e-05 0.0005311825790702546 1.438420134503756e-06 0.01501883359309792 4.0670371145993776e-05 0.019195731304027457 7.914011694900115e-05']
['59866.473190759316 0.034357347231404996 6.798590075149198e-05 0.015015444571240873 4.066424040103687e-05 0.0005310627169411889 1.4382033037560388e-06 0.015015444571240873 4.066424040103687e-05 0.019341902660164122 7.9219083233682e-05']
['59866.47322229728 0.03410573924892238 6.779039256487629e-05 0.014993353371396734 4.0656349976174355e-05 0.0005302814005736276 1.4379242370627132e-06 0.014993353371396734 4.0656349976174355e-05 0.019112385877525645 7.904730303739152e-05']
['59866.47325383524 0.03425352751881775 6.791894158840544e-05 0.015063593901941112 4.068376888954004e-05 0.0005327656511606354 1.4388939827507927e-06 0.015063593901941112 4.068376888954004e-05 0.01918993361687664 7.91716595603928e-05']
['59866.473285373206 0.034412192880411974 6.800667801788493e-05 0.015037146799202879 4.063913332911613e-05 0.0005318302762425801 1.4373153227332056e-06 0.015037146799202879 4.063913332911613e-05 0.019375046081209095 7.92240330503942e-05']
['59866.47331691117 0.03427372561572136 6.79406970506467e-05 0.015043576634171892 4.067656729138764e-05 0.0005320576851355986 1.438639278318767e-06 0.01504357663417189 4.067656729138764e-05 0.01923014898154947 7.918662413778315e-05']
['59866.47334844913 0.03423808797494975 6.787651264876698e-05 0.014975518938024414 4.0632914269050014e-05 0.0005296506365228614 1.4370953684774482e-06 0.014975518938024414 4.0632914269050014e-05 0.019262569036925338 7.910913152951555e-05']
['59866.473379987096 0.034321410231275405 6.797372268676745e-05 0.01508101182513355 4.0687995880566494e-05 0.0005333816841771846 1.4390434819766294e-06 0.01508101182513355 4.0687995880566494e-05 0.019240398406141855 7.922083049725344e-05']
['59866.47341152506 0.03429452263229171 6.79478793683956e-05 0.015033631768068099 4.065399068777019e-05 0.0005317059574469752 1.4378407943045572e-06 0.015033631768068099 4.065399068777019e-05 0.019260890864223612 7.918119265017005e-05']
['59866.47344306302 0.034273427900089824 6.797172629424917e-05 0.015418173691873698 4.081951898153774e-05 0.0005453063458913591 1.4436951601211514e-06 0.015418173691873698 4.081951898153774e-05 0.018855254208216127 7.928674987224816e-05']
['59866.473474600985 0.034346002104844925 6.80010641517901e-05 0.01509537829783937 4.069085837557008e-05 0.0005338897942096126 1.4391447220276064e-06 0.015095378297839369 4.069085837557008e-05 0.019250623807005554 7.924576128170246e-05']
['59866.473506138944 0.034309912803911775 6.796483570140795e-05 0.015019839531234262 4.066898024261168e-05 0.0005312181568539975 1.4383709413596174e-06 0.015019839531234262 4.066898024261168e-05 0.019290073272677514 7.920343960897984e-05']
['59866.47353767691 0.03429812535913707 6.793955311572754e-05 0.015009990127991235 4.0665695128094955e-05 0.0005308698054734124 1.4382547542009597e-06 0.015009990127991233 4.0665695128094955e-05 0.01928813523114584 7.91800583342544e-05']
['59866.473569214875 0.03407100924047883 6.775037786741072e-05 0.015021404665565367 4.066873807513724e-05 0.0005312735121574194 1.438362376437259e-06 0.015021404665565369 4.066873807513724e-05 0.019049604574913462 7.901936444822278e-05']
['59866.47360075283 0.034256702485624624 6.791788925779565e-05 0.01507814337764469 4.06733355978099e-05 0.0005332802336001065 1.4385249805393324e-06 0.01507814337764469 4.06733355978099e-05 0.019178559107979935 7.916539591188983e-05']
['59866.4736322908 0.03427883540129937 6.795082187225722e-05 0.015007735383842907 4.0666344626456394e-05 0.0005307900602119427 1.4382777255064603e-06 0.015007735383842908 4.0666344626456394e-05 0.01927110001745646 7.919006110865774e-05']
['59866.473663828765 0.034296601578595015 6.79569688108527e-05 0.015005552312973049 4.065536022842892e-05 0.000530712849874152 1.4378892318969133e-06 0.015005552312973047 4.065536022842892e-05 0.019291049265621966 7.918969582756666e-05']
['59866.47369536672 0.03430870289722599 6.796780777827566e-05 0.015047385635333527 4.065368922037576e-05 0.0005321924009940691 1.4378301320765562e-06 0.015047385635333529 4.065368922037576e-05 0.019261317261892463 7.919813975979187e-05']
['59866.47372690469 0.03423719076305351 6.791390597595795e-05 0.014946621578659922 4.0612939894173216e-05 0.0005286286015039367 1.4363889194781565e-06 0.014946621578659924 4.0612939894173216e-05 0.019290569184393584 7.913096430449324e-05']
['59866.47375844265 0.03421634704607537 6.789320765647444e-05 0.01498171578781481 4.063914972929799e-05 0.0005298698052508035 1.4373159027709858e-06 0.014981715787814808 4.063914972929799e-05 0.01923463125826056 7.912665882372046e-05']
['59866.47378998061 0.034247662221157466 6.791465464461125e-05 0.015043152667132954 4.066083558666139e-05 0.000532042690368942 1.4380828830808903e-06 0.015043152667132954 4.066083558666139e-05 0.019204509554024512 7.915619916407259e-05']
['59866.47382151858 0.03435966936118689 6.800458866604647e-05 0.014965133694153037 4.063327252970373e-05 0.0005292833336567849 1.4371080393561047e-06 0.014965133694153036 4.063327252970373e-05 0.019394535667033853 7.921923324617167e-05']
['59866.47385305654 0.03424867554306143 6.791095800931392e-05 0.014964116730099264 4.062391834821861e-05 0.0005292473659109839 1.4367772028623414e-06 0.014964116730099264 4.062391834821861e-05 0.019284558812962163 7.913406952574554e-05']
['59866.4738845945 0.03424961755862377 6.793376949715613e-05 0.014991552986390686 4.0649315945200805e-05 0.0005302177249795874 1.437675459107313e-06 0.014991552986390684 4.0649315945200805e-05 0.019258064572233086 7.916668443799763e-05']
['59866.47391613247 0.03431360310765317 6.796973535258554e-05 0.014981336891279097 4.065209564984164e-05 0.0005298564045271194 1.437773771048185e-06 0.014981336891279099 4.065209564984164e-05 0.019332266216374072 7.919897603267602e-05']
['59866.47394767043 0.03420618755469554 6.785613269086166e-05 0.014930596731985823 4.060059739162024e-05 0.0005280618384904983 1.4359523927467275e-06 0.014930596731985823 4.060059739162024e-05 0.019275590822709715 7.907504822835245e-05']
['59866.47397920839 0.034210976774588196 6.787197911358277e-05 0.014998116146296557 4.0654855902620765e-05 0.0005304498492776589 1.4378713950201807e-06 0.014998116146296557 4.0654855902620765e-05 0.01921286062829164 7.911651444077572e-05']
['59866.47401074635 0.03423335569307763 6.78951506373743e-05 0.014992176716204916 4.064937202664752e-05 0.0005302397849091626 1.4376774425827486e-06 0.014992176716204914 4.064937202664752e-05 0.019241178976872716 7.913357647820894e-05']
['59866.47404228432 0.03420291738044875 6.78856697566978e-05 0.015050019420789026 4.0683994548645645e-05 0.000532285552099466 1.4389019638090396e-06 0.015050019420789026 4.0683994548645645e-05 0.019152897959659722 7.91432345229184e-05']
['59866.47407382228 0.0343484876702038 6.800659116273424e-05 0.014995475367623932 4.065554712764126e-05 0.0005303564508378012 1.4378958421043585e-06 0.014995475367623932 4.065554712764126e-05 0.019353012302579867 7.92323794532459e-05']
['59866.47410536024 0.03433180179533353 6.796700278203649e-05 0.015005837119128864 4.0660599622969746e-05 0.0005307229228313789 1.4380745375724648e-06 0.015005837119128862 4.0660599622969746e-05 0.01932596467620467 7.92009963881314e-05']
['59866.47413689821 0.03435397443714532 6.79926072989336e-05 0.014938031419602255 4.062246497072801e-05 0.0005283247867759425 1.4367258001486064e-06 0.014938031419602253 4.062246497072801e-05 0.01941594301754307 7.920340464654927e-05']
['59866.47416843617 0.034294487590218595 6.798458697106914e-05 0.015156889757255 4.0723415008765664e-05 0.0005360653170591224 1.4402961773839414e-06 0.015156889757255 4.0723415008765664e-05 0.019137597832963593 7.924834758910134e-05']
['59866.47419997413 0.03428414566330059 6.792340627505356e-05 0.015087749763148757 4.067532628258459e-05 0.0005336199899863773 1.4385953866108944e-06 0.015087749763148757 4.067532628258459e-05 0.019196395900151833 7.91711518685986e-05']
['59866.4742315121 0.034372401384573585 6.799625335949563e-05 0.015071145141705117 4.0688325215335734e-05 0.0005330327216350606 1.4390551298113975e-06 0.015071145141705117 4.0688325215335734e-05 0.019301256242868468 7.924033240564837e-05']
['59866.474263050055 0.034354468645007505 6.798122154375654e-05 0.015024951652774574 4.0663912665046606e-05 0.0005313989611679591 1.43819171246651e-06 0.015024951652774572 4.0663912665046606e-05 0.019329516992232933 7.921489932968321e-05']
['59866.47429458802 0.0341778054792936 6.784845894512388e-05 0.015031583101972059 4.0670567944330896e-05 0.0005316335007056575 1.4384270948211215e-06 0.015031583101972059 4.0670567944330896e-05 0.019146222377321546 7.910441503571464e-05']
['59866.47432612599 0.03430735221730047 6.793840154414398e-05 0.015060574294570995 4.06817784495884e-05 0.0005326588543963797 1.4388235853380746e-06 0.015060574294570996 4.06817784495884e-05 0.019246777922729472 7.918733170270823e-05']
['59866.474357663945 0.034289797361923405 6.794692664115654e-05 0.01500045444107755 4.066852436907668e-05 0.0005305325495382813 1.4383548181315017e-06 0.015000454441077548 4.066852436907668e-05 0.01928934292084586 7.918783817188654e-05']
['59866.47438920191 0.03425480178444804 6.79017263041852e-05 0.014964636572637986 4.0624727938958605e-05 0.0005292657515797987 1.436805836277486e-06 0.014964636572637986 4.0624727938958605e-05 0.019290165211810057 7.912656289263978e-05']
['59866.474420739876 0.03418206391282573 6.785051986039354e-05 0.015022095834445129 4.0663911975267615e-05 0.000531297957256025 1.4381916880705686e-06 0.015022095834445129 4.0663911975267615e-05 0.0191599680783806 7.910276090287855e-05']
['59866.474452277835 0.034306161028228234 6.796420324270861e-05 0.01509255437861141 4.071321202072838e-05 0.0005337899184976077 1.439935320499399e-06 0.01509255437861141 4.071321202072838e-05 0.019213606649616823 7.922561805035658e-05']
['59866.4744838158 0.034212166436341736 6.785000611795867e-05 0.015000733095301054 4.0651447156575176e-05 0.0005305424049154112 1.4377508352906474e-06 0.015000733095301054 4.0651447156575176e-05 0.019211433341040682 7.909591320751568e-05']
['59866.47451535376 0.03434963249400111 6.79964539517189e-05 0.015112542559175029 4.071793295321618e-05 0.0005344968557731885 1.440102289330829e-06 0.01511254255917503 4.071793295321618e-05 0.019237089934826077 7.925571155437845e-05']
['59866.474546891724 0.03422838543731404 6.788989726766277e-05 0.01495296440376299 4.062009981053264e-05 0.0005288529330524523 1.436642149718318e-06 0.01495296440376299 4.062009981053264e-05 0.019275421033551052 7.911403579410823e-05']
['59866.47457842969 0.03425817161592548 6.791547492942926e-05 0.015089972956776722 4.068741163800805e-05 0.0005336986193764531 1.4390228186230424e-06 0.015089972956776722 4.068741163800805e-05 0.01916819865914876 7.917055766312781e-05']
['59866.47460996765 0.03433513636718703 6.799115291847131e-05 0.015013184781784159 4.0673551275010025e-05 0.0005309827932384371 1.4385326085598907e-06 0.015013184781784159 4.0673551275010025e-05 0.019321951585402876 7.92283702249631e-05']
['59866.474641505614 0.034342050750974816 6.796860153667239e-05 0.015030752592227505 4.065060947624885e-05 0.0005316041274320727 1.4377212084096106e-06 0.015030752592227506 4.065060947624885e-05 0.01931129815874731 7.919724013904422e-05']
['59866.47467304358 0.03424583649468251 6.79033641380238e-05 0.015100986809253166 4.070323917162219e-05 0.0005340881547240333 1.439582603114519e-06 0.015100986809253166 4.070323917162219e-05 0.019144849685429344 7.916830514999885e-05']
['59866.47470458154 0.034317684186336704 6.798256725916431e-05 0.015068938046222726 4.067659663917129e-05 0.0005329546616004166 1.4386403162842863e-06 0.015068938046222726 4.067659663917129e-05 0.01924874614011398 7.92225660105291e-05']
['59866.474736119504 0.034239139747331095 6.791814843482007e-05 0.01498832852401484 4.064242892168601e-05 0.000530103682951603 1.4374318804771864e-06 0.01498832852401484 4.064242892168601e-05 0.019250811223316254 7.914974362225409e-05']
['59866.47476765746 0.034289499862603136 6.795154898576341e-05 0.015012027347455202 4.0655615443985545e-05 0.0005309418573729354 1.4378982583007779e-06 0.015012027347455202 4.0655615443985545e-05 0.019277472515147935 7.918517586451293e-05']
['59866.47479919543 0.03430483591999276 6.793828671093699e-05 0.015040289078362983 4.067416078730143e-05 0.0005319414116338923 1.438554165647458e-06 0.015040289078362981 4.067416078730143e-05 0.01926454684162978 7.918331994156803e-05']
['59866.474830733394 0.03424107590085651 6.793839879439827e-05 0.015046404732212512 4.067189209620083e-05 0.0005321577086428682 1.4384739271134557e-06 0.015046404732212512 4.067189209620083e-05 0.019194671168643998 7.9182250772706e-05']
['59866.47486227135 0.03438758191954919 6.799467414720383e-05 0.015063009965612004 4.067998082979066e-05 0.0005327449986376958 1.4387600075432723e-06 0.015063009965612006 4.067998082979066e-05 0.01932457195393718 7.923469286049239e-05']
['59866.47489380932 0.034214292470632644 6.789812468287933e-05 0.015001650656258178 4.066251411718643e-05 0.0005305748569958366 1.438142248954266e-06 0.015001650656258178 4.066251411718643e-05 0.019212641814374466 7.914287958990507e-05']
['59866.474925347284 0.03431258605728135 6.796261824702811e-05 0.015047867560975654 4.0683324548660214e-05 0.0005322094456269907 1.4388782674069167e-06 0.015047867560975653 4.0683324548660214e-05 0.019264718496305698 7.920890338417075e-05']
['59866.47495688524 0.034160383642293735 6.787316018869233e-05 0.014931688943140167 4.0602770252744204e-05 0.0005281004675580792 1.4360292419886234e-06 0.014931688943140167 4.0602770252744204e-05 0.019228694699153566 7.909077586038095e-05']
['59866.47498842321 0.03426354636646826 6.793651585554773e-05 0.014994497726640516 4.065280627664376e-05 0.0005303218738611168 1.4377989043300185e-06 0.014994497726640516 4.065280627664376e-05 0.019269048639827743 7.917083329583827e-05']
['59866.475019961166 0.03421060982861005 6.788307696616692e-05 0.015028083927669996 4.065539403516702e-05 0.0005315097427307878 1.4378904275656862e-06 0.015028083927669994 4.065539403516702e-05 0.019182525900940058 7.912631169559994e-05']
['59866.47505149913 0.03420915145941574 6.792652973792781e-05 0.015031873634337032 4.0681888274765855e-05 0.0005316437761861049 1.4388274696091563e-06 0.01503187363433703 4.0681888274765855e-05 0.019177277825078713 7.917720300590393e-05']
['59866.4750830371 0.03429319810082873 6.790914705369884e-05 0.015102190112403532 4.070828763076651e-05 0.0005341307128672375 1.4397611558318113e-06 0.015102190112403534 4.070828763076651e-05 0.0191910079884252 7.91758608124352e-05']
['59866.475114575056 0.034386232514370514 6.800240953440372e-05 0.015099787892165841 4.070680115724608e-05 0.0005340457517060766 1.4397085825854666e-06 0.015099787892165841 4.070680115724608e-05 0.019286444622204673 7.925510307191792e-05']
['59866.47514611302 0.034240528771907475 6.791673709969338e-05 0.015011335212881428 4.065816760920282e-05 0.0005309173781198908 1.4379885226807594e-06 0.015011335212881428 4.065816760920282e-05 0.019229193559026046 7.915661546331359e-05']
['59866.47517765098 0.03425434904479791 6.79279560471312e-05 0.015116190119124141 4.071300754918496e-05 0.0005346258618167719 1.439928088797875e-06 0.015116190119124141 4.071300754918496e-05 0.01913815892567377 7.919442023552531e-05']
['59866.475209188946 0.03422257175159557 6.792351609847604e-05 0.014949562965789935 4.0627587751282684e-05 0.0005287326317931118 1.4369069814480844e-06 0.014949562965789935 4.0627587751282684e-05 0.019273008785805637 7.914673035361669e-05']
['59866.47524072691 0.03427716877379733 6.795295644672561e-05 0.014996642650786691 4.0633078519590646e-05 0.0005303977350345436 1.437101177651992e-06 0.01499664265078669 4.0633078519590646e-05 0.01928052612301064 7.917481518658447e-05']
['59866.47527226487 0.03430572182562062 6.79606716323427e-05 0.014930550075897097 4.061245697513535e-05 0.0005280601883689102 1.4363718397110477e-06 0.014930550075897097 4.061245697513535e-05 0.019375171749723523 7.91708566978805e-05']
['59866.475303802836 0.034316502866090726 6.797277692477559e-05 0.015138373743323568 4.072129975745929e-05 0.0005354104470272233 1.4402213656725434e-06 0.015138373743323568 4.072129975745929e-05 0.01917812912276716 7.923712928168308e-05']
['59866.4753353408 0.03420439607936716 6.787442561104568e-05 0.015022381829836968 4.067450804041612e-05 0.0005313080722738723 1.4385664472140594e-06 0.015022381829836968 4.067450804041612e-05 0.01918201424953019 7.912871322319888e-05']
['59866.47536687876 0.03421031721022521 6.788243544240416e-05 0.015009409808113126 4.065969883570744e-05 0.0005308492808562623 1.438042678740138e-06 0.015009409808113126 4.065969883570744e-05 0.019200907402112083 7.912797325221087e-05']
['59866.475398416726 0.034259175774976613 6.791100987053296e-05 0.015027940976360572 4.0673873222371834e-05 0.0005315046868624508 1.4385439951185678e-06 0.01502794097636057 4.0673873222371834e-05 0.01923123479861604 7.915977024060392e-05']
['59866.475429954684 0.03438300019485526 6.800253710254338e-05 0.015007905402578927 4.065241068163991e-05 0.0005307960733946661 1.437784913018835e-06 0.015007905402578927 4.065241068163991e-05 0.019375094792276334 7.922729041568631e-05']
['59866.47546149265 0.03437568768389475 6.800287842443522e-05 0.014953893453241246 4.06310700123148e-05 0.0005288857914561948 1.4370301412383948e-06 0.014953893453241246 4.06310700123148e-05 0.019421794230653502 7.921663540162599e-05']
['59866.475493030615 0.034214766489649294 6.789731521352319e-05 0.015036279506555167 4.067063450563412e-05 0.0005317996020399155 1.4384294489456608e-06 0.015036279506555167 4.067063450563412e-05 0.01917848698309413 7.914635761862578e-05']
['59866.475524568574 0.03433359394247001 6.79772620509846e-05 0.015091630160942626 4.0692313714573554e-05 0.0005337572309841677 1.4391961941156682e-06 0.015091630160942624 4.0692313714573554e-05 0.019241963781527385 7.922608504396454e-05']
['59866.47555610654 0.0342569895166201 6.792540226076534e-05 0.015006187894804672 4.066034557161754e-05 0.0005307353289830947 1.4380655523439085e-06 0.015006187894804672 4.066034557161754e-05 0.01925080162181543 7.916516894626162e-05']
['59866.475587644505 0.03419466778680247 6.786841943977663e-05 0.01507069929753854 4.06884484284916e-05 0.0005330169531232919 1.4390594875853553e-06 0.015070699297538539 4.06884484284916e-05 0.01912396848926393 7.913072849893062e-05']
['59866.47561918246 0.034296166020580374 6.79566233589731e-05 0.01501748470821537 4.065346902017447e-05 0.000531134872026539 1.437822344087555e-06 0.01501748470821537 4.065346902017447e-05 0.019278681312365004 7.918842845850404e-05']
['59866.47565072043 0.03430531762826597 6.796675915105627e-05 0.015086870305981388 4.069480227717552e-05 0.0005335888855518386 1.4392842090132894e-06 0.015086870305981388 4.069480227717552e-05 0.01921844732228458 7.921835192602849e-05']
['59866.47568225839 0.03435105497155628 6.799431033866056e-05 0.01503399286254547 4.068027178557102e-05 0.0005317187285516411 1.4387702979989759e-06 0.01503399286254547 4.068027178557102e-05 0.01931706210901081 7.923453004200888e-05']
['59866.47571379635 0.03422480096824487 6.791395600830232e-05 0.015016566182847444 4.06543651710602e-05 0.0005311023858370589 1.4378540389416041e-06 0.015016566182847444 4.06543651710602e-05 0.01920823478539743 7.915227620327502e-05']
['59866.47574533432 0.03432330245441892 6.797048216411543e-05 0.015012636123854289 4.0657508446571196e-05 0.0005309633884336359 1.4379652095716205e-06 0.015012636123854289 4.0657508446571196e-05 0.01931066633056463 7.920239541014742e-05']
['59866.47577687228 0.0342435584678401 6.793291921500229e-05 0.015097701661187124 4.067683847893154e-05 0.0005339719663788112 1.438648869616126e-06 0.015097701661187124 4.067683847893154e-05 0.019145856806652976 7.918009031134729e-05']
['59866.47580841024 0.034297958376794474 6.794694619464205e-05 0.015135219963749929 4.070850926030021e-05 0.0005352989048919862 1.4397689943731052e-06 0.015135219963749927 4.070850926030021e-05 0.01916273841304455 7.920839742965091e-05']
['59866.47583994821 0.034210510935222 6.788125277687526e-05 0.014960011839186157 4.0625925565992086e-05 0.0005291021850932785 1.4368481936691215e-06 0.014960011839186157 4.0625925565992086e-05 0.01925049909603584 7.910960944570239e-05']
['59866.47587148617 0.03425613005362919 6.790446845730622e-05 0.015098219110564179 4.068403808587677e-05 0.0005339902674068464 1.4389035036236045e-06 0.015098219110564179 4.068403808587677e-05 0.019157910943065008 7.915938220730608e-05']
['59866.47590302413 0.03420514659314996 6.786393380310618e-05 0.01502325764741918 4.064640131001649e-05 0.000531339047984418 1.43757237497467e-06 0.015023257647419179 4.064640131001649e-05 0.01918188894573078 7.910526816013766e-05']
['59866.47593456209 0.03436196282310801 6.797690980240868e-05 0.015061935146275891 4.067708051352527e-05 0.0005327069846798573 1.4386574298387908e-06 0.015061935146275891 4.067708051352527e-05 0.019300027676832116 7.921795974012851e-05']
['59866.47596610006 0.03430866720478636 6.794147404445806e-05 0.015022899471661367 4.0652046671392265e-05 0.0005313263801083399 1.437772038789891e-06 0.015022899471661367 4.0652046671392265e-05 0.019285767733124994 7.917469794010473e-05']
['59866.47599763802 0.034265269530783904 6.792538446499159e-05 0.01505120462892418 4.066624651537184e-05 0.0005323274702624222 1.438274255536665e-06 0.015051204628924182 4.066624651537184e-05 0.019214064901859722 7.91681846474069e-05']
['59866.47602917598 0.03416162927313791 6.783632299119503e-05 0.015019625687102748 4.065967307973462e-05 0.0005312105936649794 1.4380417678089404e-06 0.015019625687102748 4.065967307973462e-05 0.01914200358603516 7.908840453515693e-05']
['59866.47606071395 0.03426104227671408 6.794541032183962e-05 0.015129251798374035 4.0712631440561255e-05 0.0005350878242207055 1.439914786676408e-06 0.015129251798374035 4.0712631440561255e-05 0.019131790478340044 7.920919859850955e-05']
['59866.47609225191 0.03432184500445038 6.794596315606894e-05 0.015012339545014637 4.0649431971801025e-05 0.0005309528991028921 1.4376795627088586e-06 0.015012339545014635 4.0649431971801025e-05 0.019309505459435744 7.917720776104672e-05']
['59866.47612378987 0.03425198962995366 6.791946276572212e-05 0.014999952467632159 4.065146065320682e-05 0.0005305147958593625 1.4377513126363452e-06 0.014999952467632159 4.065146065320682e-05 0.019252037162321503 7.915550944579623e-05']
['59866.47615532784 0.034216446556578364 6.78659061667001e-05 0.015035783572572998 4.066537683130698e-05 0.0005317820619633135 1.4382434967549203e-06 0.015035783572573 4.066537683130698e-05 0.019180662984005364 7.91167118418071e-05']
['59866.476186865795 0.03418477012761455 6.787814575289718e-05 0.014971078313083988 4.0639700138425495e-05 0.0005294935815429312 1.4373353695117335e-06 0.014971078313083988 4.0639700138425495e-05 0.01921369181453056 7.91140183418381e-05']
['59866.47621840376 0.03425319436647512 6.791338345044398e-05 0.015039833034286043 4.067201840626602e-05 0.0005319252823740895 1.4384783944181751e-06 0.015039833034286043 4.067201840626602e-05 0.01921336133218908 7.916085353839156e-05']
['59866.47624994173 0.034282068036804524 6.792378409693802e-05 0.015136887117364762 4.072110900758344e-05 0.0005353578683894739 1.4402146192757355e-06 0.015136887117364764 4.072110900758344e-05 0.019145180919439758 7.919500719650793e-05']
['59866.476281479685 0.03445708192197998 6.808501298174195e-05 0.015090451637092418 4.069147569641753e-05 0.0005337155492294317 1.43916655528635e-06 0.015090451637092418 4.069147569641753e-05 0.01936663028488756 7.931812647230209e-05']
['59866.47631301765 0.03420415318836495 6.790011920775433e-05 0.014996812896998776 4.063765061876241e-05 0.0005304037562625872 1.4372628825816571e-06 0.014996812896998777 4.063765061876241e-05 0.01920734029136617 7.91318193664208e-05']
['59866.47634455562 0.03428671432316668 6.793781903395104e-05 0.015091627250153958 4.070360159497522e-05 0.0005337571280360778 1.439595421218547e-06 0.015091627250153956 4.070360159497522e-05 0.01919508707301272 7.919804566965241e-05']
['59866.476376093575 0.03421799078464647 6.787759337052222e-05 0.014996141105260732 4.06431750650207e-05 0.0005303799964901788 1.437458269899402e-06 0.014996141105260733 4.06431750650207e-05 0.019221849679385734 7.911532949523678e-05']
['59866.47640763154 0.03428345568817549 6.794072216340215e-05 0.014900910682725413 4.058196312134207e-05 0.000527011909272573 1.4352933402521317e-06 0.014900910682725413 4.058196312134207e-05 0.01938254500545008 7.913809107418861e-05']
['59866.4764391695 0.03431472018773992 6.79375162140075e-05 0.015008921852560333 4.064532553990016e-05 0.0005308320229588765 1.43753432738986e-06 0.015008921852560335 4.064532553990016e-05 0.019305798335179584 7.916785078283352e-05']
['59866.476470707465 0.034233188429349005 6.789841982628675e-05 0.015002398928630525 4.0662458743772784e-05 0.0005306013217173562 1.4381402905203777e-06 0.015002398928630525 4.0662458743772784e-05 0.01923078950071848 7.914310434899374e-05']
['59866.47650224543 0.03430331956752683 6.794303639721807e-05 0.015086299324774498 4.069220971875923e-05 0.0005335686912226187 1.4391925160161323e-06 0.015086299324774498 4.069220971875923e-05 0.019217020242752333 7.919666739623065e-05']
['59866.47653378339 0.03424918984182835 6.791875745264956e-05 0.014970139362270605 4.064099686128752e-05 0.0005294603729510934 1.4373812317013583e-06 0.014970139362270605 4.064099686128752e-05 0.019279050479557747 7.914953088800352e-05']
['59866.476565321354 0.034272331474783056 6.794310997480819e-05 0.015066202195607906 4.069484873018182e-05 0.0005328579006784366 1.439285851952306e-06 0.015066202195607906 4.069484873018182e-05 0.01920612927917515 7.919808650605935e-05']
['59866.47659685932 0.03416858705781063 6.785491022754608e-05 0.015092046023439103 4.0713457127593904e-05 0.0005337719391112701 1.4399439893814509e-06 0.015092046023439101 4.0713457127593904e-05 0.01907654103437153 7.913200637712128e-05']
['59866.47662839728 0.03417207660708725 6.786668839993931e-05 0.01505504363992657 4.067283222423399e-05 0.0005324632475018921 1.4385071773409263e-06 0.01505504363992657 4.067283222423399e-05 0.01911703296716068 7.912121507860673e-05']
['59866.476659935244 0.03435352086204945 6.800842888809854e-05 0.015075133642608998 4.06941665370177e-05 0.000533173785998256 1.439261724304703e-06 0.015075133642608998 4.06941665370177e-05 0.019278387219440453 7.925377965731406e-05']
['59866.4766914732 0.034386421602702735 6.80182744369155e-05 0.015042826842856022 4.0674133724677806e-05 0.0005320311666924413 1.4385532085029417e-06 0.015042826842856022 4.0674133724677806e-05 0.019343594759846712 7.92519451599046e-05']
['59866.47672301117 0.034286739398509604 6.79373504892293e-05 0.015098111654772636 4.0702262016890604e-05 0.0005339864669356491 1.439548043335475e-06 0.015098111654772636 4.0702262016890604e-05 0.019188627743736968 7.919695527473263e-05']
['59866.476754549134 0.0342237308276942 6.790761520823323e-05 0.015055750379371277 4.068567911606722e-05 0.0005324882432965816 1.438961543193954e-06 0.015055750379371275 4.068567911606722e-05 0.01916798044832292 7.916292496115248e-05']
['59866.47678608709 0.03423772445741363 6.789741402670385e-05 0.015107990726553692 4.07103456631827e-05 0.000534335867626119 1.4398339438389403e-06 0.015107990726553692 4.07103456631827e-05 0.019129733730859938 7.916685591539846e-05']
['59866.47681762506 0.03425532265769648 6.793715390051131e-05 0.015021223565348159 4.066384349570446e-05 0.0005312671070474719 1.4381892661014628e-06 0.015021223565348159 4.066384349570446e-05 0.01923409909234832 7.917704874485348e-05']
['59866.476849163024 0.034216815745408996 6.788491745166807e-05 0.01501265167571396 4.065604323313747e-05 0.0005309639384681561 1.4379133882470292e-06 0.01501265167571396 4.065604323313747e-05 0.019204164069695037 7.912822422368982e-05']
['59866.47688070098 0.034183030576908684 6.789562422987467e-05 0.015081830841476053 4.068270132108043e-05 0.0005334106509548252 1.4388562252402514e-06 0.015081830841476055 4.068270132108043e-05 0.01910119973543263 7.915110849725721e-05']
['59866.47691223895 0.03426358508316343 6.790881412701407e-05 0.015050633556009654 4.066804418468615e-05 0.0005323072726897083 1.4383378350827576e-06 0.015050633556009656 4.066804418468615e-05 0.01921295152715377 7.915489153517255e-05']
['59866.47694377691 0.03423089981958962 6.789904309826654e-05 0.015018442386872024 4.066833379594589e-05 0.0005311687429803391 1.4383480779857717e-06 0.015018442386872024 4.066833379594589e-05 0.019212457432717597 7.914665771464221e-05']
['59866.47697531487 0.03423127967471098 6.790945795307217e-05 0.015003947197797815 4.065116369217099e-05 0.0005306560805376253 1.437740809788177e-06 0.015003947197797815 4.065116369217099e-05 0.01922733247691316 7.914677244845653e-05']
['59866.47700685284 0.03427143773466737 6.790365703529255e-05 0.015059725409428659 4.067812879673838e-05 0.0005326288312260419 1.4386945052732636e-06 0.01505972540942866 4.067812879673838e-05 0.01921171232523871 7.915564920566738e-05']
['59866.477038390796 0.03422463141593349 6.788233956618765e-05 0.015029587234311383 4.0658242409123423e-05 0.0005315629113270011 1.4379911681867832e-06 0.015029587234311385 4.0658242409123423e-05 0.0191950441816221 7.912714262993608e-05']
['59866.47706992876 0.034211773528384434 6.788041905928901e-05 0.015009240783674684 4.065406568523758e-05 0.000530843302839622 1.4378434467973694e-06 0.015009240783674684 4.065406568523758e-05 0.01920253274470975 7.912334894583456e-05']
['59866.47710146673 0.034267136178179294 6.79386744322544e-05 0.014982897700499697 4.06446660303819e-05 0.0005299116068610486 1.4375110020121163e-06 0.014982897700499697 4.06446660303819e-05 0.0192842384776796 7.916850611406747e-05']
['59866.477133004686 0.03413249269466027 6.788268040692083e-05 0.015029766925467052 4.067010249582844e-05 0.000531569266601591 1.4384106329478058e-06 0.015029766925467054 4.067010249582844e-05 0.019102725769193214 7.913352978510022e-05']
['59866.47716454265 0.034260565062342534 6.793126699398613e-05 0.015013642644065208 4.065031632122814e-05 0.0005309989868040559 1.437710840171691e-06 0.015013642644065208 4.065031632122814e-05 0.019246922418277326 7.916505070057201e-05']
['59866.47719608061 0.03432022177002667 6.798498078855613e-05 0.015102584507007442 4.069316726535673e-05 0.0005341446617229577 1.4392263822992952e-06 0.015102584507007443 4.069316726535673e-05 0.019217637263019227 7.923314631457372e-05']
['59866.477227618576 0.03414807829346481 6.782206911074966e-05 0.01497846202438914 4.063188796302659e-05 0.0005297547269101708 1.4370590703270588e-06 0.014978462024389138 4.063188796302659e-05 0.019169616269075675 7.906189586585468e-05']
['59866.47725915654 0.034292737897759176 6.793853462512855e-05 0.015060559806886148 4.068131377868399e-05 0.0005326583419993447 1.438807150966664e-06 0.01506055980688615 4.068131377868399e-05 0.019232178090873027 7.918720715980287e-05']
['59866.4772906945 0.03427622573783893 6.796465905650744e-05 0.014959805720972998 4.06224265662754e-05 0.0005290948951527262 1.4367244418689463e-06 0.014959805720972998 4.06224265662754e-05 0.019316420016865933 7.917939391533466e-05']
['59866.477322232466 0.03419469726883646 6.7865120605423e-05 0.014975901132205788 4.0646282875993676e-05 0.000529664153876903 1.4375681862279675e-06 0.01497590113220579 4.0646282875993676e-05 0.019218796136630675 7.910622545933983e-05']
['59866.47735377043 0.034161568420029216 6.783037857152763e-05 0.014976107025571813 4.06540713787127e-05 0.0005296714358651146 1.4378436481628603e-06 0.014976107025571813 4.06540713787127e-05 0.019185461394457405 7.90804260030396e-05']
['59866.47738530839 0.03414805547484609 6.788556553778287e-05 0.014965357994988781 4.06352704491107e-05 0.0005292912666760623 1.437178701300442e-06 0.014965357994988781 4.06352704491107e-05 0.01918269747985731 7.911810925987161e-05']
['59866.477416846355 0.03431322425961884 6.796747416620854e-05 0.01505685906827537 4.066478042505378e-05 0.0005325274551453455 1.4382224031986342e-06 0.01505685906827537 4.066478042505378e-05 0.019256365191343466 7.92035473419724e-05']
['59866.477448384314 0.03428726319844095 6.79524430065357e-05 0.014929361805858101 4.0615021086803456e-05 0.0005280181619132582 1.4364625266102963e-06 0.014929361805858101 4.0615021086803456e-05 0.01935790139258285 7.916510878182366e-05']
['59866.47747992228 0.03427548580065708 6.793874037015268e-05 0.01506610440299511 4.068893339319865e-05 0.0005328544419722756 1.4390766397032114e-06 0.01506610440299511 4.068893339319865e-05 0.019209381397661967 7.919129840935283e-05']
['59866.477511460245 0.03416330268168739 6.78336993199443e-05 0.014986771821744653 4.063895545456466e-05 0.0005300486258713313 1.4373090317078464e-06 0.014986771821744653 4.063895545456466e-05 0.019176530859942732 7.907550482840248e-05']
['59866.477542998204 0.03424890882977225 6.792796566113083e-05 0.015026927564665431 4.06753095314907e-05 0.0005314688447556356 1.4385947941621402e-06 0.01502692756466543 4.06753095314907e-05 0.019221981265106824 7.917505493741288e-05']
['59866.47757453617 0.03434457513230584 6.798639381845949e-05 0.014998324924189692 4.064726417061767e-05 0.000530457233285148 1.4376028924257538e-06 0.01499832492418969 4.064726417061767e-05 0.01934625020811615 7.921079363946965e-05']
['59866.477606074135 0.03429388056719246 6.796070378641079e-05 0.015012729262188374 4.0673994610842297e-05 0.0005309666825283606 1.4385482883574808e-06 0.015012729262188374 4.0673994610842297e-05 0.019281151305004084 7.920246900663577e-05']
['59866.47763761209 0.034333396781972426 6.795345857422988e-05 0.015084509717405175 4.0693287011765094e-05 0.0005335053968095029 1.4392306174621417e-06 0.015084509717405175 4.0693287011765094e-05 0.019248887064567254 7.920616226040411e-05']
['59866.47766915006 0.03429315701501963 6.794857695967834e-05 0.0149954609353129 4.064128589622565e-05 0.0005303559403992143 1.4373914542211649e-06 0.014995460935312899 4.064128589622565e-05 0.01929769607970673 7.917526905634158e-05']
['59866.47770068802 0.03412942231804808 6.783503464877035e-05 0.014981955551883886 4.0635859195589025e-05 0.0005298782851700856 1.4371995239476097e-06 0.014981955551883884 4.0635859195589025e-05 0.019147466766164196 7.907505914233395e-05']
['59866.47773222598 0.03410873797087419 6.780423580998213e-05 0.015007421048092889 4.0653313919198164e-05 0.0005307789428589636 1.4378168585126535e-06 0.01500742104809289 4.0653313919198164e-05 0.019101316922781296 7.905761396847576e-05']
['59866.47776376395 0.03426298810529921 6.790580596962614e-05 0.015056241401953802 4.067617143838622e-05 0.0005325056096679546 1.4386252778827862e-06 0.015056241401953802 4.067617143838622e-05 0.019206746703345406 7.915648683000971e-05']
['59866.47779530191 0.03434522646740017 6.79790024463875e-05 0.01505798444161183 4.067398424798841e-05 0.0005325672570851948 1.4385479218464984e-06 0.015057984441611832 4.067398424798841e-05 0.019287242025788333 7.921816564533394e-05']
['59866.47782683987 0.034269641405983466 6.79517511087514e-05 0.015030178465178734 4.067893377414228e-05 0.0005315838218414561 1.4387229755250208e-06 0.015030178465178734 4.067893377414228e-05 0.01923946294080473 7.919732401885021e-05']
['59866.47785837784 0.0342643116101961 6.794486780779981e-05 0.015012553100660355 4.0649895345221286e-05 0.0005309604520888124 1.4376959511911544e-06 0.015012553100660355 4.0649895345221286e-05 0.019251758509535748 7.917650568822063e-05']
['59866.4778899158 0.034195892891656976 6.78934647531656e-05 0.0150910549418003 4.071075004345818e-05 0.0005337368867686428 1.4398482458655471e-06 0.0150910549418003 4.071075004345818e-05 0.019104837949856675 7.916367680502384e-05']
['59866.47792145376 0.034294561364729255 6.794812406262627e-05 0.014997797705641386 4.0655959310973584e-05 0.0005304385867433585 1.4379104201076474e-06 0.014997797705641386 4.0655959310973584e-05 0.01929676365908787 7.918241339543517e-05']
['59866.47795299172 0.03429105152922532 6.794463283954234e-05 0.01501098638665001 4.0662472407721595e-05 0.0005309050409156662 1.43814077378371e-06 0.015010986386650008 4.0662472407721595e-05 0.01928006514257531 7.918276197512268e-05']
['59866.47798452969 0.03433902144992714 6.798670983183908e-05 0.015013399536714463 4.063034462298906e-05 0.000530990388640373 1.4370044858390933e-06 0.015013399536714465 4.063034462298906e-05 0.019325621913212677 7.920238391577327e-05']
['59866.47801606765 0.03425417721108204 6.792024134797443e-05 0.014974919413265113 4.063679963680925e-05 0.000529629432671984 1.4372327852518066e-06 0.014974919413265113 4.063679963680925e-05 0.019279257797816925 7.91486491956071e-05']
['59866.47804760561 0.034290660337067395 6.793545447662565e-05 0.015024174259637766 4.065381411931293e-05 0.0005313714665100816 1.4378345494728313e-06 0.015024174259637766 4.065381411931293e-05 0.01926648607742963 7.917044004799597e-05']
['59866.47807914358 0.03426321386241073 6.795142130411077e-05 0.015057009850610417 4.068248446771757e-05 0.0005325327879795574 1.4388485556214458e-06 0.015057009850610417 4.068248446771757e-05 0.01920620401180031 7.919886488905532e-05']
['59866.47811068154 0.03430624658613023 6.796607835574695e-05 0.014994426628517528 4.066053982256819e-05 0.0005303193592794016 1.4380724225659078e-06 0.014994426628517528 4.066053982256819e-05 0.019311819957612705 7.920017238442217e-05']
['59866.4781422195 0.03429131496154578 6.792741458633734e-05 0.014971448367998597 4.062944991076313e-05 0.0005295066695582369 1.4369728418672264e-06 0.014971448367998597 4.062944991076313e-05 0.01931986659354718 7.915103191011072e-05']
['59866.47817375747 0.0342182329125077 6.792647138262742e-05 0.015034858579559116 4.0659488144699885e-05 0.0005317493470276501 1.4380352270700674e-06 0.015034858579559116 4.0659488144699885e-05 0.01918337433294859 7.916564589949286e-05']
['59866.478205295425 0.034215550237798494 6.787109272457875e-05 0.01495427187641831 4.062477894359198e-05 0.0005288991754382415 1.4368076401973798e-06 0.014954271876418308 4.062477894359198e-05 0.019261278361380186 7.910030272915572e-05']
['59866.47823683339 0.034226713822813795 6.79271013756177e-05 0.014923606552013025 4.0605068081686666e-05 0.0005278146114469932 1.4361105110629727e-06 0.014923606552013026 4.0605068081686666e-05 0.01930310727080077 7.913825026630203e-05']
['59866.47826837136 0.03421714616261461 6.789016218416069e-05 0.014971710551322147 4.064877317953613e-05 0.0005295159423964456 1.4376562626987632e-06 0.014971710551322147 4.064877317953613e-05 0.019245435611292466 7.912898888772064e-05']
['59866.478299909315 0.034307991550428484 6.795993011586487e-05 0.01503201221816281 4.066820184586026e-05 0.0005316486775863061 1.438343411206134e-06 0.01503201221816281 4.066820184586026e-05 0.019275979332265672 7.919883043788505e-05']
['59866.47833144728 0.034204114646702144 6.787896826454516e-05 0.0150831437761346 4.0694622807233216e-05 0.0005334570865194617 1.439277861562522e-06 0.0150831437761346 4.0694622807233216e-05 0.019120970870567543 7.914295077947319e-05']
['59866.478362985246 0.03441486179715525 6.801774888420177e-05 0.015014887376705357 4.0654632488785054e-05 0.0005310430102157242 1.4378634933721122e-06 0.015014887376705359 4.0654632488785054e-05 0.01939997442044989 7.924148727827178e-05']
['59866.478394523205 0.034223229769083915 6.790000735674114e-05 0.0150513197889992 4.0670858257938435e-05 0.000532331543216908 1.4384373625646075e-06 0.015051319788999202 4.0670858257938435e-05 0.019171909980084716 7.914878211623233e-05']
['59866.47842606117 0.03424981964721026 6.791914973768597e-05 0.014925937297780124 4.0603172225729586e-05 0.0005278970447158653 1.4360434588747595e-06 0.014925937297780124 4.0603172225729586e-05 0.019323882349430135 7.913045239275753e-05']
['59866.47845759913 0.034164668452071036 6.789029568050515e-05 0.01500681221098106 4.0641438896978635e-05 0.0005307574096509891 1.4373968655158614e-06 0.015006812210981062 4.0641438896978635e-05 0.019157856241089975 7.912533603848557e-05']
['59866.478489137095 0.03421586184483156 6.789856541895485e-05 0.015061484886549334 4.067327919822198e-05 0.0005326910599996002 1.4385229858119532e-06 0.015061484886549332 4.067327919822198e-05 0.019154376958282225 7.914878916754576e-05']
['59866.47852067506 0.034205902881570494 6.787942588935596e-05 0.01500271184967934 4.065369639416442e-05 0.0005306123890355154 1.4378303857974286e-06 0.01500271184967934 4.065369639416442e-05 0.019203191031891154 7.912230715529891e-05']
['59866.47855221302 0.034245934013201626 6.791095874660209e-05 0.01511302304489709 4.07113872548813e-05 0.0005345138494793554 1.4398707826094994e-06 0.01511302304489709 4.07113872548813e-05 0.019132910968304537 7.91790083930053e-05']
['59866.478583750984 0.03429484439885549 6.795936559683188e-05 0.015118628719807584 4.06995888646939e-05 0.0005347121096729935 1.4394534999164212e-06 0.015118628719807584 4.06995888646939e-05 0.019176215679047905 7.921446778258989e-05']
['59866.47861528895 0.03423629538160458 6.79001890634778e-05 0.01506327131504619 4.068478740431726e-05 0.0005327542419831013 1.4389300053422163e-06 0.01506327131504619 4.068478740431726e-05 0.01917302406655839 7.915609642339952e-05']
['59866.47864682691 0.03430640764670333 6.795557188116567e-05 0.015000427668588095 4.0641498453238455e-05 0.0005305316026551623 1.4373989718876708e-06 0.015000427668588093 4.0641498453238455e-05 0.019305979978115236 7.918138131038671e-05']
['59866.478678364874 0.03419196597982085 6.786124605879432e-05 0.014978596948967006 4.064373380508426e-05 0.0005297594988909513 1.4374780312867395e-06 0.014978596948967006 4.064373380508426e-05 0.01921336903085384 7.910159173032346e-05']
['59866.47870990283 0.03419481955981243 6.790144900726591e-05 0.015040224104013945 4.0674473571384646e-05 0.000531939113636376 1.4385652281214499e-06 0.015040224104013943 4.0674473571384646e-05 0.019154595455798486 7.915187665239278e-05']
['59866.4787414408 0.03411563645718857 6.783832436997653e-05 0.015015020820753709 4.066461199397827e-05 0.0005310477298334844 1.4382164461679147e-06 0.015015020820753707 4.066461199397827e-05 0.019100615636434864 7.909266035446623e-05']
['59866.478772978764 0.03437971246916637 6.800373060060111e-05 0.01510835641229367 4.0707277359225446e-05 0.0005343488011134824 1.439725424785228e-06 0.01510835641229367 4.0707277359225446e-05 0.019271356056872704 7.925648115832572e-05']
['59866.47880451672 0.034379947726653676 6.80117640144269e-05 0.01513354817282842 4.071692260790661e-05 0.0005352397773833253 1.4400665556752186e-06 0.01513354817282842 4.071692260790661e-05 0.019246399553825254 7.92683280447642e-05']
['59866.47883605469 0.03416301586395146 6.784203587069735e-05 0.015028180016112683 4.0667052919256246e-05 0.0005315131411642607 1.4383027762398498e-06 0.015028180016112684 4.0667052919256246e-05 0.019134835847838774 7.90970987092357e-05']
['59866.478867592654 0.034271357735237276 6.791872436402752e-05 0.0151011394142625 4.070834818696564e-05 0.0005340935520221613 1.4397632975692393e-06 0.015101139414262499 4.070834818696564e-05 0.019170218320974777 7.918410655774285e-05']
['59866.47889913061 0.0342245369131335 6.785498951648645e-05 0.015131310211759667 4.071735593251707e-05 0.0005351606257018722 1.440081881398267e-06 0.015131310211759667 4.071735593251707e-05 0.019093226701373832 7.913408037260413e-05']
['59866.47893066858 0.034321363898685446 6.797605290359873e-05 0.014958182325262916 4.062878398640332e-05 0.0005290374792745365 1.436949289610873e-06 0.014958182325262916 4.062878398640332e-05 0.019363181573422532 7.919243560193534e-05']
['59866.47896220654 0.034218523837880085 6.78769315526544e-05 0.015074297702003315 4.068790210364169e-05 0.0005331442206472503 1.4390401652963783e-06 0.015074297702003315 4.068790210364169e-05 0.01914422613587677 7.91377483543679e-05']
['59866.4789937445 0.03431374896781027 6.79603944959263e-05 0.01500168473575518 4.0666907486409335e-05 0.0005305760623114824 1.438297632605078e-06 0.015001684735755182 4.0666907486409335e-05 0.019312064232055087 7.919856428338904e-05']
['59866.47902528247 0.034229991645466265 6.791644043327011e-05 0.015075922474365407 4.0679045556724274e-05 0.000533201685214545 1.4387269290251266e-06 0.015075922474365408 4.0679045556724274e-05 0.01915406917110086 7.91670867755785e-05']
['59866.479056820426 0.034352605583637875 6.798427194235562e-05 0.015062010236600254 4.0669849200121524e-05 0.000532709640456813 1.4384016744447349e-06 0.015062010236600256 4.0669849200121524e-05 0.01929059534703762 7.922056466279943e-05']
['59866.47908835839 0.034206949041834786 6.787351400521474e-05 0.015018934520359335 4.066559947663166e-05 0.0005311861486419317 1.4382513712224715e-06 0.015018934520359335 4.066559947663166e-05 0.01918801452147545 7.912335233172256e-05']
['59866.47911989636 0.034297539525341536 6.797381906155501e-05 0.015049784452073202 4.0649035240755575e-05 0.0005322772417811115 1.4376655312184227e-06 0.0150497844520732 4.0649035240755575e-05 0.019247755073268334 7.920090999361818e-05']
['59866.479151434316 0.03427768520694181 6.79286643551409e-05 0.014985362898695963 4.0639050671849605e-05 0.0005299987954118569 1.4373123993304167e-06 0.014985362898695963 4.0639050671849605e-05 0.01929232230824585 7.915703304560214e-05']
['59866.47918297228 0.03429380477053356 6.796544616347375e-05 0.015025856412271053 4.066204252533974e-05 0.0005314309604893311 1.4381255698045944e-06 0.015025856412271053 4.066204252533974e-05 0.019267948358262503 7.920040135335544e-05']
['59866.47921451024 0.03425103622402107 6.794710257970792e-05 0.014983763925431826 4.0630377518245616e-05 0.0005299422433009992 1.4370056492708011e-06 0.014983763925431824 4.0630377518245616e-05 0.019267272298589246 7.916840484847797e-05']
['59866.479246048206 0.03451941151333386 6.825310435806934e-05 0.014950942550604904 4.062602758813311e-05 0.0005287814246248267 1.4368518019642436e-06 0.014950942550604904 4.062602758813311e-05 0.019568468962728958 7.942896431469605e-05']
['59866.47927758617 0.03435559492752731 6.79948571680473e-05 0.015005184938783021 4.063280104893923e-05 0.0005306998566700838 1.4370913641351619e-06 0.015005184938783021 4.063280104893923e-05 0.019350409988744287 7.921063768450441e-05']
['59866.47930912413 0.03428987173731533 6.795016935299319e-05 0.01498564201503267 4.063570407387403e-05 0.0005300086671328979 1.437194037639227e-06 0.01498564201503267 4.063570407387403e-05 0.019304229722282663 7.917377066099555e-05']
['59866.479340662096 0.034288989173347065 6.7929566721892e-05 0.014994518061176854 4.0650219194850786e-05 0.000530322593048222 1.4377074050287886e-06 0.014994518061176854 4.0650219194850786e-05 0.01929447111217021 7.916354183343107e-05']
['59866.47937220006 0.03422427344510569 6.793144031550312e-05 0.0150770564656835 4.070104445325698e-05 0.0005332417919531445 1.4395049808308483e-06 0.0150770564656835 4.070104445325698e-05 0.019147216979422187 7.919125963718952e-05']
['59866.47940373802 0.034194070344256686 6.789053878743897e-05 0.014995181790554403 4.063977833278482e-05 0.0005303460676729581 1.4373381350714688e-06 0.014995181790554403 4.063977833278482e-05 0.019198888553702283 7.912469172001014e-05']
['59866.479435275985 0.03424042086482389 6.792378603034766e-05 0.01500852028046843 4.0671562724108566e-05 0.0005308178202514467 1.4384622779586557e-06 0.015008520280468429 4.0671562724108566e-05 0.019231900584355456 7.916954416388633e-05']
['59866.479466813944 0.03429709610453229 6.796276993450452e-05 0.015116125261209451 4.0696424339125305e-05 0.0005346235679372782 1.4393415777193583e-06 0.015116125261209451 4.0696424339125305e-05 0.01918097084332284 7.921576264330568e-05']
['59866.47949835191 0.03426114384647658 6.793793081925864e-05 0.015018886858834919 4.065492374335212e-05 0.0005311844629603303 1.4378737943952337e-06 0.01501888685883492 4.065492374335212e-05 0.019242256987641655 7.917313476539974e-05']
['59866.479529889875 0.034121969415383584 6.780136180228785e-05 0.015014431164436839 4.0648424054805296e-05 0.0005310268750073611 1.4376439149372814e-06 0.015014431164436839 4.0648424054805296e-05 0.019107538250946743 7.905263462013148e-05']
['59866.479561427834 0.03430355025766717 6.795661691608688e-05 0.01500348276330253 4.065039436351293e-05 0.0005306396545274771 1.4377136003528896e-06 0.01500348276330253 4.065039436351293e-05 0.019300067494364637 7.918684451718548e-05']
['59866.4795929658 0.03420677185521484 6.789843426134957e-05 0.015029758510437965 4.066965455016097e-05 0.0005315689689808187 1.438394790110647e-06 0.015029758510437967 4.066965455016097e-05 0.019177013344776873 7.914681406331046e-05']
['59866.479624503765 0.03422695626835882 6.790438849354462e-05 0.014962699683512302 4.063132275377633e-05 0.0005291972481401158 1.4370390801390454e-06 0.014962699683512303 4.063132275377633e-05 0.019264256584846512 7.913223341599666e-05']
['59866.47965604172 0.03417743429919923 6.786056628276843e-05 0.015031311930697582 4.067377103023556e-05 0.0005316239099837114 1.4385403808110936e-06 0.015031311930697582 4.067377103023556e-05 0.019146122368501647 7.91164464952644e-05']
['59866.47968757969 0.034181486618585576 6.785531888121181e-05 0.015068191318715944 4.068396843955804e-05 0.0005329282515173394 1.4389010403889614e-06 0.015068191318715942 4.068396843955804e-05 0.01911329529986963 7.911718895702687e-05']
['59866.47971911765 0.034256169164262835 6.793678697284129e-05 0.014985221228880278 4.0640700486548e-05 0.0005299937848670895 1.4373707495891801e-06 0.014985221228880278 4.0640700486548e-05 0.01927094793538256 7.91648505350103e-05']
['59866.47975065561 0.03434314418605181 6.79880472117975e-05 0.01504278060442638 4.065199734245762e-05 0.0005320295313425217 1.4377702941357161e-06 0.01504278060442638 4.065199734245762e-05 0.01930036358162543 7.92146416491597e-05']
['59866.47978219358 0.034237502994817794 6.790209635266483e-05 0.015017910589091823 4.0671414071997634e-05 0.0005311499344813514 1.43845702046571e-06 0.015017910589091823 4.0671414071997634e-05 0.01921959240572597 7.915085982920505e-05']
['59866.47981373154 0.034202830051863434 6.788863790709291e-05 0.014985239157513467 4.063162927792273e-05 0.0005299944189627772 1.4370499212130623e-06 0.014985239157513467 4.063162927792273e-05 0.01921759089434997 7.91188754638166e-05']
['59866.4798452695 0.03418409578692593 6.789927008337271e-05 0.01502703617761892 4.066431370621906e-05 0.0005314726861530649 1.4382058963965053e-06 0.015027036177618922 4.066431370621906e-05 0.01915705960930701 7.914478685960678e-05']
['59866.47987680747 0.03425745202371618 6.79340685720525e-05 0.015089945231348026 4.0707424343210433e-05 0.0005336976387900029 1.439730623280287e-06 0.015089945231348028 4.0707424343210433e-05 0.019167506792368155 7.919679330257338e-05']
['59866.47990834543 0.034193804815722845 6.790009901819253e-05 0.014962584546778892 4.0626671465764494e-05 0.0005291931760111706 1.4368745744770837e-06 0.014962584546778894 4.0626671465764494e-05 0.01923122026894395 7.912616432677318e-05']
['59866.47993988339 0.03421183755792026 6.788685333462573e-05 0.015044546824924654 4.067376376181646e-05 0.0005320919986142751 1.4385401237433542e-06 0.015044546824924654 4.067376376181646e-05 0.019167290732995605 7.913899111202416e-05']
['59866.47997142135 0.03424046795853734 6.791349452930212e-05 0.01504133239639744 4.067190974839998e-05 0.0005319783114610925 1.4384745514322894e-06 0.015041332396397438 4.067190974839998e-05 0.019199135562139903 7.916089300761799e-05']
['59866.48000295932 0.03436880263803606 6.802011214458468e-05 0.014986621106002825 4.0645805468115106e-05 0.0005300432953923727 1.4375513013782462e-06 0.014986621106002823 4.0645805468115106e-05 0.019382181532033235 7.923898761540137e-05']
['59866.48003449728 0.03415884727353358 6.785433985847881e-05 0.014998633569690159 4.0660683104438345e-05 0.0005304681493867174 1.438077490125439e-06 0.014998633569690159 4.0660683104438345e-05 0.019160213703843416 7.91043778064748e-05']
['59866.48006603524 0.034247173119539606 6.79240514753766e-05 0.015013933843416137 4.0649209759182324e-05 0.0005310092858743059 1.437671703545151e-06 0.015013933843416136 4.0649209759182324e-05 0.01923323927612347 7.915829092947631e-05']
['59866.48009757321 0.03424804988345334 6.793672977682096e-05 0.015072376299964012 4.06790693628125e-05 0.000533076264951201 1.4387277709932637e-06 0.015072376299964012 4.06790693628125e-05 0.01917567358348933 7.918450566236618e-05']
['59866.48012911117 0.03425549629002472 6.794208985253068e-05 0.014946269720965891 4.060243109985027e-05 0.0005286161570836544 1.436017246908727e-06 0.014946269720965891 4.060243109985027e-05 0.019309226569058834 7.914976301131571e-05']
['59866.48016064913 0.03416508437355444 6.785156382165867e-05 0.014955263827461188 4.0611218104292115e-05 0.0005289342585297481 1.436328023618036e-06 0.014955263827461188 4.0611218104292115e-05 0.019209820546093256 7.907658154573327e-05']
['59866.4801921871 0.03427209187759626 6.795894540126734e-05 0.015002331257440273 4.064757069289905e-05 0.0005305989283385931 1.4376137334338092e-06 0.015002331257440271 4.064757069289905e-05 0.019269760620155986 7.91873933355977e-05']
['59866.480223725055 0.03426188386474234 6.790611650295198e-05 0.014994165870331432 4.064608703634836e-05 0.0005303101368451196 1.4375612598173885e-06 0.014994165870331432 4.064608703634836e-05 0.019267717994410908 7.91412980047642e-05']
['59866.48025526302 0.03432008677431056 6.800100618735269e-05 0.01512494751996884 4.07046646480144e-05 0.0005349355915130099 1.4396330190287593e-06 0.01512494751996884 4.07046646480144e-05 0.01919513925434172 7.925280163249557e-05']
['59866.48028680099 0.03429427770235796 6.795575090724576e-05 0.015072817388432901 4.067354767722357e-05 0.0005330918652645709 1.4385324813142243e-06 0.015072817388432901 4.067354767722357e-05 0.019221460313925062 7.919798963369595e-05']
['59866.480318338945 0.03434895946125335 6.798663404079127e-05 0.015077648217837594 4.0675474764757875e-05 0.0005332627209043466 1.4386006380935254e-06 0.015077648217837594 4.0675474764757875e-05 0.01927131124341576 7.922547983783331e-05']
['59866.48034987691 0.03421021175964789 6.79085143691807e-05 0.015009384506917571 4.06574822276957e-05 0.0005308483860095204 1.4379642822685902e-06 0.015009384506917571 4.06574822276957e-05 0.01920082725273032 7.914920836574813e-05']
['59866.480381414876 0.03412522717264023 6.782862630690665e-05 0.014926707592726329 4.060274665172942e-05 0.0005279242883266047 1.4360284072734755e-06 0.01492670759272633 4.060274665172942e-05 0.0191985195799139 7.905254949934577e-05']
['59866.480412952835 0.03424070265256535 6.791447309587443e-05 0.015059841552985589 4.069510423877993e-05 0.0005326329389640849 1.439294888720393e-06 0.015059841552985587 4.069510423877993e-05 0.01918086109957976 7.917365196134012e-05']
['59866.4804444908 0.03419195211820997 6.788030425946965e-05 0.015064959286547925 4.067540392259786e-05 0.0005328139417627234 1.4385981325646488e-06 0.015064959286547925 4.067540392259786e-05 0.01912699283166204 7.913421630764193e-05']
['59866.48047602876 0.034197373535608686 6.787669791608746e-05 0.01501675094415953 4.065321766551455e-05 0.0005311089204317502 1.4378134542349785e-06 0.015016750944159532 4.065321766551455e-05 0.019180622591449155 7.911972084475207e-05']
['59866.480507566725 0.03420666745366165 6.78814710257632e-05 0.015028132668693604 4.067286749076601e-05 0.000531511466591863 1.4385084246393476e-06 0.015028132668693604 4.067286749076601e-05 0.01917853478496805 7.913391345398596e-05']
['59866.48053910469 0.034247176224582086 6.790027526259519e-05 0.015008999171065017 4.0651151024983915e-05 0.0005308347575415904 1.4377403617780796e-06 0.015008999171065015 4.0651151024983915e-05 0.01923817705351707 7.913888715664535e-05']
['59866.48057064265 0.034289962442025645 6.794052027483713e-05 0.015024819192278393 4.065609584618873e-05 0.000531394276336241 1.437915249053069e-06 0.015024819192278393 4.065609584618873e-05 0.019265143249747253 7.917595862804594e-05']
['59866.480602180614 0.03423709884142268 6.791133744061143e-05 0.015035409121763923 4.066534039454657e-05 0.0005317688184750447 1.4382422080681362e-06 0.015035409121763923 4.066534039454657e-05 0.019201689719658757 7.915566727895693e-05']
['59866.48063371857 0.03430749607401281 6.79442330609507e-05 0.0150602406938193 4.068605972431273e-05 0.000532647055683346 1.4389750044569883e-06 0.015060240693819298 4.068605972431273e-05 0.019247255380193513 7.919453429455299e-05']
['59866.48066525654 0.034268634736913405 6.796533715088458e-05 0.014979010168369432 4.065309881274197e-05 0.0005297741135377241 1.4378092506780326e-06 0.014979010168369432 4.065309881274197e-05 0.019289624568543974 7.91957164063308e-05']
['59866.480696794504 0.034327143671666394 6.798700702245769e-05 0.014987849959469019 4.0644170800022786e-05 0.0005300867571931461 1.437493486821089e-06 0.014987849959469017 4.0644170800022786e-05 0.019339293712197378 7.920973263364253e-05']
['59866.48072833246 0.03427051049180737 6.793484627061677e-05 0.014984559472088668 4.06430096054687e-05 0.0005299703800083096 1.4374524179648282e-06 0.014984559472088668 4.06430096054687e-05 0.0192859510197187 7.916437056910485e-05']
['59866.48075987043 0.034198684848196645 6.789514076014315e-05 0.014958277645837358 4.0629298127204815e-05 0.0005290408505502256 1.436967473621985e-06 0.014958277645837358 4.0629298127204815e-05 0.019240407202359287 7.912325830720662e-05']
['59866.480791408394 0.034318366391436816 6.800791953488e-05 0.015072132590293715 4.0690370247374336e-05 0.0005330676454848217 1.4391274580242253e-06 0.015072132590293715 4.0690370247374336e-05 0.0192462338011431 7.92513933652344e-05']
['59866.48082294635 0.03425028944263423 6.789815865249336e-05 0.014953352218403316 4.062000527115579e-05 0.0005288666491895659 1.436638806071842e-06 0.014953352218403316 4.062000527115579e-05 0.019296937224230915 7.912107669027187e-05']
['59866.48085448432 0.03417667626059026 6.78729209145368e-05 0.014982573403262964 4.064782990600423e-05 0.0005299001371925471 1.437622901222032e-06 0.014982573403262964 4.064782990600423e-05 0.019194102857327297 7.91137122725158e-05']
['59866.48088602228 0.03421634232345707 6.788473872819942e-05 0.01502896854758949 4.065531793910862e-05 0.0005315410297603312 1.4378877362181652e-06 0.015028968547589491 4.065531793910862e-05 0.01918737377586758 7.912769824104519e-05']
['59866.48091756024 0.03425077784548701 6.791693616085667e-05 0.015062417480983914 4.067564335077406e-05 0.0005327240437805255 1.4386066006041504e-06 0.015062417480983916 4.067564335077406e-05 0.019188360364503096 7.916576393541119e-05']
['59866.48094909821 0.03420247197397421 6.788438064582424e-05 0.015035480318363931 4.067547174552947e-05 0.000531771336539672 1.4386005313101642e-06 0.015035480318363931 4.067547174552947e-05 0.019166991655610283 7.913774786654294e-05']
['59866.480980636166 0.034187364383505385 6.785888033738198e-05 0.014999318655390378 4.064387845653222e-05 0.0005304923793368577 1.437483147285177e-06 0.014999318655390378 4.064387845653222e-05 0.019188045728115007 7.909963651390878e-05']
['59866.48101217413 0.03420503697659793 6.786409266863503e-05 0.015095511598902678 4.070502565158848e-05 0.0005338945087703115 1.439645786918379e-06 0.015095511598902678 4.070502565158848e-05 0.019109525377695252 7.913554313349697e-05']
['59866.4810437121 0.03427228345098513 6.794312247347863e-05 0.015067441395091708 4.0670114098055936e-05 0.0005329017283947309 1.4384110432926628e-06 0.01506744139509171 4.0670114098055936e-05 0.01920484205589342 7.918539052246321e-05']
['59866.481075250056 0.034241104119793246 6.791206990644387e-05 0.015033098379773421 4.065473509101343e-05 0.0005316870926950451 1.4378671221836274e-06 0.015033098379773421 4.065473509101343e-05 0.019208005740019823 7.915084790637558e-05']
['59866.48110678802 0.034216190284344875 6.7891322215299e-05 0.015044775103771271 4.0669309892771613e-05 0.0005321000723269068 1.4383826003490494e-06 0.015044775103771273 4.0669309892771613e-05 0.019171415180573602 7.914053575315146e-05']
['59866.48113832598 0.03434394298822957 6.797560780436712e-05 0.01505945283476746 4.0669760785907105e-05 0.0005326191908694437 1.438398547431565e-06 0.01505945283476746 4.0669760785907105e-05 0.019284490153462112 7.921308413864495e-05']
['59866.481169863946 0.034219784458445916 6.790238723277712e-05 0.01504343224395529 4.0690086565887927e-05 0.0005320525783763306 1.4391174248440419e-06 0.015043432243955292 4.0690086565887927e-05 0.019176352214490624 7.916070576144117e-05']
['59866.48120140191 0.03428984042282598 6.795383982135465e-05 0.015024946630852933 4.0679951285998346e-05 0.000531398783553814 1.4387589626453649e-06 0.015024946630852933 4.0679951285998346e-05 0.019264893791973044 7.919963878135761e-05']
['59866.48123293987 0.03427385264683528 6.793092076543348e-05 0.014980956605371213 4.063341614408688e-05 0.0005298429546644464 1.4371131186758774e-06 0.014980956605371213 4.063341614408688e-05 0.019292896041464065 7.915607685818027e-05']
['59866.481264477836 0.03430488215193907 6.797431118776074e-05 0.015057360663110303 4.0671481226294366e-05 0.0005325451954336587 1.4384593955631044e-06 0.015057360663110305 4.0671481226294366e-05 0.019247521488828762 7.921285480647285e-05']
['59866.4812960158 0.03419400198460607 6.786339358321643e-05 0.014965403360136152 4.064139204808394e-05 0.0005292928711399397 1.4373952085751572e-06 0.014965403360136152 4.064139204808394e-05 0.01922859862446992 7.910223091820231e-05']
['59866.48132755376 0.03432547355991432 6.798189618620843e-05 0.015025028998634858 4.065257030109899e-05 0.0005314016967181796 1.4377905584023744e-06 0.015025028998634858 4.065257030109899e-05 0.01930044456127946 7.920965648933351e-05']
['59866.481359091726 0.03427599926333916 6.791615501866338e-05 0.015011150593954229 4.066337152971792e-05 0.0005309108485610347 1.4381725737193006e-06 0.015011150593954229 4.066337152971792e-05 0.01926484866938493 7.915878913098021e-05']
['59866.481390629684 0.03429571192587101 6.795707032357697e-05 0.014979087011136174 4.063199574988785e-05 0.0005297768312946503 1.437062882507452e-06 0.014979087011136174 4.063199574988785e-05 0.019316624914734837 7.917779035551883e-05']
['59866.48142216765 0.03439190562124088 6.802311870986419e-05 0.01511076563485442 4.0691725068571854e-05 0.0005344340099311607 1.4391753750221343e-06 0.01511076563485442 4.0691725068571854e-05 0.019281139986386458 7.926513210783487e-05']
['59866.481453705615 0.03428919704363887 6.794908306854873e-05 0.015060130367051798 4.0674606979935623e-05 0.0005326431536721453 1.4385699464837474e-06 0.015060130367051798 4.0674606979935623e-05 0.019229066676587074 7.919281244424119e-05']
['59866.481485243574 0.034354919379019425 6.800950481896727e-05 0.015039888410760956 4.065441450654721e-05 0.0005319272409162481 1.4378557838275212e-06 0.015039888410760956 4.065441450654721e-05 0.01931503096825847 7.923429916766657e-05']
['59866.48151678154 0.03418671586638099 6.786572726006464e-05 0.01498217776746941 4.063546431575741e-05 0.0005298861444387231 1.43718555793047e-06 0.014982177767469412 4.063546431575741e-05 0.019204538098911574 7.910118770723153e-05']
['59866.481548319505 0.034325595411211225 6.796983600495003e-05 0.014988413285161586 4.064525946175148e-05 0.0005301066807639334 1.4375319903534173e-06 0.014988413285161586 4.064525946175148e-05 0.019337182126049637 7.919555368360587e-05']
['59866.481579857464 0.03427518193232771 6.79459420592741e-05 0.014989344043106033 4.0640980669079305e-05 0.0005301395995923069 1.4373806590191413e-06 0.014989344043106033 4.0640980669079305e-05 0.019285837889221676 7.91728511048245e-05']
['59866.48161139543 0.03435343460358736 6.796779443388544e-05 0.015110970642708341 4.069513236132185e-05 0.0005344412606007883 1.4392958833518506e-06 0.015110970642708343 4.069513236132185e-05 0.01924246396087902 7.921940973090125e-05']
['59866.48164293339 0.0342504210389603 6.791429336309853e-05 0.014992747875199861 4.064207052271781e-05 0.0005302599855263486 1.4374192047066554e-06 0.014992747875199861 4.064207052271781e-05 0.019257673163760442 7.914625158137672e-05']
['59866.48167447135 0.03430067599489939 6.797146823061379e-05 0.015062631414535418 4.068240993008134e-05 0.0005327316101321288 1.4388459193918342e-06 0.015062631414535418 4.068240993008134e-05 0.019238044580363968 7.921602723656697e-05']
['59866.48170600932 0.03427652344437517 6.795455270005561e-05 0.014963599769160386 4.0626903289753034e-05 0.0005292290821579154 1.436882773573462e-06 0.014963599769160386 4.0626903289753034e-05 0.019312923675214786 7.917301625920021e-05']
['59866.48173754728 0.034367907226811725 6.80022983158833e-05 0.015015547342890925 4.065485302224704e-05 0.0005310663517447701 1.4378712931477994e-06 0.015015547342890925 4.065485302224704e-05 0.0193523598839208 7.922833868321924e-05']
['59866.48176908524 0.03421882368640598 6.790258514557991e-05 0.014982611312280594 4.0622788034729016e-05 0.000529901477949779 1.4367372262003164e-06 0.014982611312280594 4.0622788034729016e-05 0.01923621237412539 7.912630395239787e-05']
['59866.48180062321 0.03429473369498234 6.795557133653826e-05 0.015075215392414397 4.0661945601326376e-05 0.000533176677306173 1.438122141818854e-06 0.015075215392414399 4.0661945601326376e-05 0.019219518302567944 7.919187771331454e-05']
['59866.48183216117 0.034308486027640424 6.796587473703302e-05 0.015047319924905437 4.0669641980414175e-05 0.0005321900769630817 1.4383943455467947e-06 0.015047319924905437 4.0669641980414175e-05 0.019261166102734987 7.920467099600332e-05']
['59866.48186369913 0.034229830488352514 6.78971944296429e-05 0.014969145426893158 4.063446570135133e-05 0.000529425219678108 1.4371502391706985e-06 0.014969145426893158 4.063446570135133e-05 0.019260685061459358 7.912767413649302e-05']
['59866.48189523709 0.03419020147667718 6.787275348334979e-05 0.014996881347974143 4.06424708528277e-05 0.000530406177220607 1.4374333634879573e-06 0.014996881347974143 4.06424708528277e-05 0.019193320128703038 7.911081533162529e-05']
['59866.48192677506 0.03426075270895871 6.794038989019161e-05 0.01501851520989224 4.064957334059816e-05 0.0005311713185678143 1.4376845626072724e-06 0.01501851520989224 4.064957334059816e-05 0.01924223749906647 7.917249769461564e-05']
['59866.48195831302 0.034280645651525124 6.795575126355002e-05 0.015050774460186801 4.067348243042363e-05 0.0005323122561555516 1.4385301736807283e-06 0.015050774460186801 4.067348243042363e-05 0.019229871191338323 7.91979564307783e-05']
['59866.48198985098 0.03438748410023663 6.80043297198984e-05 0.015048167607584876 4.066746080301991e-05 0.0005322200576049941 1.438317202177004e-06 0.015048167607584876 4.066746080301991e-05 0.01933931649265175 7.923655235317737e-05']
['59866.48202138895 0.03427367378586941 6.795996480435763e-05 0.015057393124314202 4.067525016360346e-05 0.000532546343513894 1.4385926944526479e-06 0.015057393124314204 4.067525016360346e-05 0.019216280661555205 7.920247970916853e-05']
['59866.48205292691 0.0342906549003112 6.794295718763828e-05 0.015108570847120412 4.070392027499785e-05 0.0005343563851940707 1.4396066922187396e-06 0.015108570847120412 4.070392027499785e-05 0.019182084053190787 7.920261711051366e-05']
['59866.48208446487 0.03425159224808784 6.790077580401834e-05 0.015053372116830992 4.065039167712351e-05 0.0005324041294656357 1.4377135053412998e-06 0.015053372116830992 4.065039167712351e-05 0.019198220131256848 7.913892656772086e-05']
['59866.48211600284 0.03429306399781816 6.798447327336e-05 0.014961277886086708 4.063316102827992e-05 0.0005291469623427027 1.4371040957999355e-06 0.014961277886086708 4.063316102827992e-05 0.019331786111731454 7.920190895051916e-05']
['59866.482147540795 0.034127028364026916 6.782937701815955e-05 0.015058316667173532 4.068789256743538e-05 0.0005325790071608316 1.4390398280220732e-06 0.01505831666717353 4.068789256743538e-05 0.019068711696853386 7.909695941217207e-05']
['59866.48217907876 0.034252500584656106 6.79122643391504e-05 0.015019447677465887 4.0666290053334405e-05 0.0005312042978619518 1.4382757953770993e-06 0.015019447677465887 4.0666290053334405e-05 0.01923305290719022 7.915695038575302e-05']
['59866.48221061673 0.03434579909855316 6.797847347888395e-05 0.015051706424659167 4.06778143557909e-05 0.0005323452176561211 1.4386833841996854e-06 0.015051706424659167 4.06778143557909e-05 0.019294092673893995 7.921967834625131e-05']
['59866.482242154685 0.03437820419241042 6.799873281701453e-05 0.015051731623797835 4.066743467579577e-05 0.0005323461088933391 1.4383162781154773e-06 0.015051731623797835 4.066743467579577e-05 0.01932647256861259 7.923173548414704e-05']
['59866.48227369265 0.03424930536609457 6.79174185047532e-05 0.015005543823499862 4.064357146727058e-05 0.0005307125496204582 1.4374722897610735e-06 0.01500554382349986 4.064357146727058e-05 0.01924376154259471 7.914970396637579e-05']
['59866.48230523062 0.03428265306365149 6.795556523956399e-05 0.01503032484731321 4.066856519387678e-05 0.0005315889990504077 1.4383562620134433e-06 0.01503032484731321 4.066856519387678e-05 0.01925232821633828 7.919527158837984e-05']
['59866.482336768575 0.034188135810726 6.786310734343763e-05 0.01508154692902952 4.0675285928472094e-05 0.0005334006096060983 1.4385939593761217e-06 0.015081546929029521 4.0675285928472094e-05 0.01910658888169648 7.911940484906277e-05']
['59866.48236830654 0.03432902582710725 6.797744905640991e-05 0.015078940703378634 4.068197799218166e-05 0.0005333084332293979 1.438830642713647e-06 0.015078940703378632 4.068197799218166e-05 0.019250085123728618 7.922093734343944e-05']
['59866.4823998445 0.03426421068934786 6.79170831091059e-05 0.015024553400242693 4.0663929323623535e-05 0.0005313848758659485 1.4381923016431462e-06 0.015024553400242693 4.0663929323623535e-05 0.019239657289105167 7.915987194333911e-05']
['59866.482431382465 0.03428372947077522 6.79224518958779e-05 0.015005589086085892 4.064798332678775e-05 0.0005307141504569702 1.43762832737227e-06 0.015005589086085892 4.064798332678775e-05 0.01927814038468933 7.91562885694034e-05']
['59866.48246292043 0.03419654637107497 6.785304118927401e-05 0.01500539481359345 4.065436853940081e-05 0.000530707279473086 1.4378541580722834e-06 0.01500539481359345 4.065436853940081e-05 0.019191151557481523 7.910001820461698e-05']
['59866.48249445839 0.03423597821942123 6.789098510159732e-05 0.015023885025711763 4.066733738950927e-05 0.0005313612369525187 1.4383128373169457e-06 0.015023885025711763 4.066733738950927e-05 0.019212093193709468 7.91392329279068e-05']
['59866.482525996355 0.03436839936982268 6.80327176048385e-05 0.015053980292086398 4.06781609139383e-05 0.0005324256392652277 1.438695641186847e-06 0.015053980292086397 4.06781609139383e-05 0.019314419077736282 7.926640801777232e-05']
['59866.48255753432 0.03426647007995933 6.792832481831061e-05 0.014978260303929024 4.0635166153572874e-05 0.0005297475925083153 1.4371750126003562e-06 0.014978260303929024 4.0635166153572874e-05 0.019288209776030307 7.915474743153684e-05']
['59866.48258907228 0.0342722615260206 6.793645703074595e-05 0.015005017348072719 4.065539488418885e-05 0.0005306939293612035 1.437890457593691e-06 0.015005017348072717 4.065539488418885e-05 0.01926724417794788 7.917211205392792e-05']
['59866.482620610244 0.03439556554486143 6.802893210651507e-05 0.014991848563643578 4.06464681196232e-05 0.0005302281788864459 1.4375747378811486e-06 0.014991848563643578 4.06464681196232e-05 0.01940371698121785 7.92468988298746e-05']
['59866.4826521482 0.034267995372749244 6.795089921092806e-05 0.015001989593682706 4.0652808176054924e-05 0.0005305868444550616 1.4377989715079464e-06 0.015001989593682707 4.0652808176054924e-05 0.019266005779066536 7.918317697701211e-05']
['59866.48268368617 0.03433582370644885 6.799141792573384e-05 0.01497957446181259 4.062774169628443e-05 0.000529794071335687 1.4369124261387492e-06 0.01497957446181259 4.062774169628443e-05 0.01935624924463626 7.92050901577153e-05']
['59866.482715224134 0.03424863942949485 6.791557699452792e-05 0.01500449697847209 4.065804326722109e-05 0.0005306755250513869 1.4379841249827535e-06 0.015004496978472089 4.065804326722109e-05 0.01924414245102276 7.91555562220295e-05']
['59866.48274676209 0.034302977234294395 6.79405876901839e-05 0.015052780742079535 4.0668292570989677e-05 0.0005323832138623214 1.4383466199512026e-06 0.015052780742079533 4.0668292570989677e-05 0.019250196492214863 7.918228006522156e-05']
['59866.48277830006 0.03436204696280203 6.799447070269832e-05 0.015091239760402084 4.068982894707489e-05 0.0005337434233895427 1.439108313442369e-06 0.015091239760402084 4.068982894707489e-05 0.01927080720239995 7.92395748719181e-05']
['59866.482809838024 0.034221409162425394 6.791223352098554e-05 0.014969215692052475 4.0631335823204515e-05 0.0005294277047997596 1.4370395423755118e-06 0.014969215692052475 4.0631335823204515e-05 0.01925219347037292 7.913897214765235e-05']
['59866.48284137598 0.034234141809776346 6.79195355935092e-05 0.015010369413047616 4.066149221616924e-05 0.0005308832199382044 1.4381061065991023e-06 0.015010369413047616 4.066149221616924e-05 0.01922377239672873 7.916072425441517e-05']
['59866.48287291395 0.03418839707618623 6.787162179021083e-05 0.01499985673202598 4.0654630110139434e-05 0.0005305114099049285 1.4378634092447326e-06 0.01499985673202598 4.0654630110139434e-05 0.019188540344160253 7.91160918765941e-05']
['59866.48290445191 0.034342056596909656 6.800388446717473e-05 0.01500913565145617 4.065371222068527e-05 0.0005308395845480098 1.4378309455461011e-06 0.015009135651456168 4.065371222068527e-05 0.01933292094545349 7.922911472398984e-05']
['59866.48293598987 0.03427969398720127 6.794828837343222e-05 0.015075297994766295 4.0681156450118206e-05 0.0005331795987667541 1.438801586606901e-06 0.015075297994766295 4.0681156450118206e-05 0.019204395992434977 7.919549471401829e-05']
['59866.48296752784 0.03429889920000633 6.793740717304548e-05 0.015110738806576299 4.070041086982753e-05 0.0005344330610749212 1.4394825724009242e-06 0.015110738806576299 4.070041086982753e-05 0.019188160393430034 7.919605254284425e-05']
['59866.482999065796 0.03422358918444423 6.790539017442527e-05 0.01498860804087128 4.064717813763169e-05 0.0005301135688381319 1.437599849631312e-06 0.01498860804087128 4.064717813763169e-05 0.01923498114357295 7.914123517669722e-05']
['59866.48303060376 0.03432986172495268 6.795869628658304e-05 0.015068360023444383 4.067778612113007e-05 0.0005329342182265514 1.4386823856028325e-06 0.015068360023444381 4.067778612113007e-05 0.019261501701508296 7.92026936706602e-05']
['59866.48306214173 0.034280901527413886 6.79374534685311e-05 0.015067559399661177 4.0661238528232094e-05 0.0005329059019526283 1.4380971342237247e-06 0.015067559399661177 4.0661238528232094e-05 0.01921334212775271 7.917596796022524e-05']
['59866.483093679686 0.03427916405850824 6.796249577148276e-05 0.014982059188035928 4.0645413458161176e-05 0.0005298819505491701 1.4375374368622665e-06 0.014982059188035926 4.0645413458161176e-05 0.019297104870472315 7.918933303591893e-05']
['59866.48312521765 0.034263191615299234 6.791710862094642e-05 0.015121984860205776 4.072526409195878e-05 0.0005348308088583451 1.440361575324024e-06 0.015121984860205774 4.072526409195878e-05 0.01914120675509346 7.919141859311034e-05']
['59866.48315675561 0.03417685455313399 6.78438229234893e-05 0.015011987400866178 4.065392427948279e-05 0.000530940444551357 1.4378384455918457e-06 0.01501198740086618 4.065392427948279e-05 0.01916486715226781 7.909188244185172e-05']
['59866.483188293576 0.03423822582472361 6.790604699455549e-05 0.015018943672870422 4.066010449230384e-05 0.0005311864723457941 1.4380570259073636e-06 0.01501894367287042 4.066010449230384e-05 0.019219282151853194 7.914843849218913e-05']
['59866.48321983154 0.034220048770110444 6.789379668537787e-05 0.015045391140044169 4.066537170325945e-05 0.0005321218601531192 1.4382433153873399e-06 0.01504539114004417 4.066537170325945e-05 0.019174657630066275 7.914063484784338e-05']
['59866.4832513695 0.03429879642547788 6.794668277519583e-05 0.015061171902272555 4.0674920925887385e-05 0.0005326799904452092 1.4385810500504334e-06 0.015061171902272555 4.0674920925887385e-05 0.019237624523205328 7.919091420409468e-05']
['59866.483282907466 0.034344917958478466 6.796429027316701e-05 0.014919432221007896 4.0602480845718754e-05 0.0005276669746884225 1.4360190063089197e-06 0.014919432221007896 4.0602480845718754e-05 0.01942548573747057 7.916884616540943e-05']
['59866.48331444543 0.03432876296907947 6.797975178596048e-05 0.015010535902112156 4.0654200830214486e-05 0.000530889108284336 1.4378482265731714e-06 0.015010535902112156 4.0654200830214486e-05 0.019318227066967314 7.920865292393381e-05']
['59866.48334598339 0.03418169678437286 6.787538376670092e-05 0.015017891643998615 4.066118159071301e-05 0.0005311492644357445 1.4380951204709225e-06 0.015017891643998617 4.066118159071301e-05 0.019163805140374246 7.912268581026472e-05']
['59866.483377521356 0.03425891560619499 6.794112517610275e-05 0.015047797207180724 4.067194598855718e-05 0.0005322069573704955 1.4384758331656576e-06 0.015047797207180724 4.067194598855718e-05 0.019211118399014265 7.918461770249937e-05']
['59866.483409059314 0.034278678294408185 6.793729042153934e-05 0.014972352081326523 4.064314557460848e-05 0.0005295386318789652 1.4374572268894291e-06 0.014972352081326523 4.064314557460848e-05 0.019306326213081662 7.916653783019312e-05']
['59866.48344059728 0.034322952126494354 6.797715674030535e-05 0.015055324831857793 4.066610938018192e-05 0.0005324731926320724 1.4382694053714766e-06 0.015055324831857793 4.066610938018192e-05 0.01926762729463656 7.921253872094342e-05']
['59866.483472135245 0.03419880203993801 6.78585984914169e-05 0.015015238196990318 4.06498767658172e-05 0.0005310554179451661 1.4376952940791545e-06 0.01501523819699032 4.06498767658172e-05 0.01918356384294769 7.910247701744524e-05']
['59866.483503673204 0.03426867308304012 6.794395167276643e-05 0.01497167822419571 4.063489339383201e-05 0.0005295147990582304 1.437165365697904e-06 0.01497167822419571 4.063489339383201e-05 0.019296994858844414 7.916801835362126e-05']
['59866.48353521117 0.034329630623556595 6.798538264981812e-05 0.014949286903345467 4.0631032391906646e-05 0.0005287228680814143 1.4370288106886353e-06 0.014949286903345467 4.0631032391906646e-05 0.019380343720211128 7.920159750456021e-05']
['59866.483566749135 0.03417098456665162 6.788501071132989e-05 0.01498144041338804 4.062963678961222e-05 0.0005298600658727544 1.436979451354469e-06 0.014981440413388041 4.062963678961222e-05 0.01918954415326358 7.911473987148782e-05']
['59866.48359828709 0.03423838112629549 6.792208396472446e-05 0.015028089536303548 4.064511576050521e-05 0.000531509941095622 1.4375269079614898e-06 0.015028089536303548 4.064511576050521e-05 0.019210291589991945 7.915450034771206e-05']
['59866.48362982506 0.03426385192866754 6.795514072512277e-05 0.014989757065659696 4.063151515863467e-05 0.0005301542072769789 1.4370458850688852e-06 0.014989757065659696 4.063151515863467e-05 0.01927409486300784 7.917588758616854e-05']
['59866.48366136302 0.0342089841607618 6.788902336861007e-05 0.015010303969417663 4.066943692558287e-05 0.0005308809053432709 1.438387093215682e-06 0.015010303969417663 4.066943692558287e-05 0.019198680191344134 7.913862896075246e-05']
['59866.48369290098 0.03427197486564246 6.797007799476668e-05 0.014998159314690422 4.0639817457421864e-05 0.0005304513760472743 1.4373395188224425e-06 0.014998159314690424 4.0639817457421864e-05 0.019273815550952034 7.91929685362737e-05']
['59866.48372443895 0.03440269540036764 6.80126250704179e-05 0.01501025857415367 4.064290023540839e-05 0.0005308792998142359 1.4374485497902227e-06 0.01501025857415367 4.064290023540839e-05 0.01939243682621397 7.923107034815696e-05']
['59866.48375597691 0.034257538027663625 6.796040794031902e-05 0.015029486943267856 4.066630672949974e-05 0.0005315593642569288 1.4382763851757981e-06 0.015029486943267854 4.066630672949974e-05 0.01922805108439577 7.919826734488787e-05']
['59866.48378751487 0.03418106834720361 6.7870870768906e-05 0.014997924864124015 4.064854746359849e-05 0.0005304430840547066 1.4376482796304944e-06 0.014997924864124013 4.064854746359849e-05 0.019183143483079597 7.911232211122334e-05']
['59866.48381905284 0.03428568385823371 6.795130659252e-05 0.01501095579019919 4.064605454938514e-05 0.0005309039587875798 1.4375601108261035e-06 0.015010955790199192 4.064605454938514e-05 0.01927472806803452 7.918005947245963e-05']
['59866.4838505908 0.03414803283845043 6.786005256922124e-05 0.01501477751099457 4.066333749541798e-05 0.0005310391245110691 1.4381713700021739e-06 0.01501477751099457 4.066333749541798e-05 0.01913325532745586 7.911064246334836e-05']
['59866.48388212876 0.03434305851191944 6.800119393610741e-05 0.015013207171656148 4.064530668423826e-05 0.000530983585118171 1.4375336605072386e-06 0.01501320717165615 4.064530668423826e-05 0.019329851340263292 7.922249259012161e-05']
['59866.48391366672 0.0342840944499444 6.7938525661863e-05 0.015001278180905 4.0645268962955336e-05 0.0005305616833750281 1.4375323263897636e-06 0.015001278180905001 4.0645268962955336e-05 0.019282816269039403 7.916868799076184e-05']
['59866.48394520469 0.034260256628271334 6.7973412663859e-05 0.014941538224865906 4.061662841210749e-05 0.0005284488146408693 1.4365193741141395e-06 0.014941538224865904 4.061662841210749e-05 0.01931871840340543 7.918393355181646e-05']
['59866.48397674265 0.034241285104445476 6.791913217539377e-05 0.014986438615356583 4.064350822606876e-05 0.0005300368411060577 1.4374700530611006e-06 0.014986438615356583 4.064350822606876e-05 0.019254846489088893 7.915114197774488e-05']
['59866.48400828061 0.03419495882127372 6.788123640122822e-05 0.015093481658729344 4.068799916566958e-05 0.00053382271432303 1.4390435981633838e-06 0.015093481658729344 4.068799916566958e-05 0.019101477162544376 7.914149058152089e-05']
['59866.48403981858 0.03428525697687744 6.792675505751216e-05 0.01498235192933131 4.064523786395e-05 0.0005298923041545495 1.4375312264874471e-06 0.01498235192933131 4.064523786395e-05 0.01930290504754613 7.915857132149574e-05']
['59866.48407135654 0.03428352288283547 6.792956053767036e-05 0.015006278617800848 4.065527725308922e-05 0.0005307385376527155 1.437886297244587e-06 0.015006278617800848 4.065527725308922e-05 0.019277244265034618 7.916613394227721e-05']
['59866.4841028945 0.034131939534875685 6.782036220330114e-05 0.01508074168782208 4.069599826848551e-05 0.0005333721300241994 1.4393265085530407e-06 0.015080741687822082 4.069599826848551e-05 0.019051197847053603 7.909339924706443e-05']
['59866.48413443247 0.03414480148899758 6.787372110937583e-05 0.014959819767953794 4.061525277670268e-05 0.0005290953919630438 1.4364707209642354e-06 0.014959819767953794 4.061525277670268e-05 0.019184981721043787 7.909766605500307e-05']
['59866.484165970425 0.03427435327346964 6.793476671031197e-05 0.01510531413980971 4.070130309708314e-05 0.0005342412027348036 1.4395141284849445e-06 0.015105314139809709 4.070130309708314e-05 0.019169039133659936 7.919424601437368e-05']
['59866.48419750839 0.03414594733501265 6.783646930302182e-05 0.015036937087214026 4.0674079561273386e-05 0.0005318228591982131 1.4385512928643753e-06 0.015036937087214026 4.0674079561273386e-05 0.019109010247798625 7.909593741562597e-05']
['59866.48422904636 0.03429007265118437 6.794891538190943e-05 0.014971510560811122 4.0632778862535596e-05 0.0005295088691790232 1.437090579451649e-06 0.014971510560811122 4.0632778862535596e-05 0.019318562090373248 7.917119311763342e-05']
['59866.484260584315 0.03427943255802283 6.793799167183579e-05 0.015034077602169418 4.066878360762465e-05 0.0005317217256027583 1.4383639868195792e-06 0.01503407760216942 4.066878360762465e-05 0.01924535495585341 7.918030482718685e-05']
['59866.48429212228 0.034192651553900104 6.789413869583063e-05 0.014999993620873456 4.065784048816597e-05 0.0005305162513575351 1.4379769531407584e-06 0.014999993620873456 4.065784048816597e-05 0.019192657933026647 7.913705871720173e-05']
['59866.48432366025 0.03433296128342324 6.796003746679667e-05 0.014996033716625331 4.0653117887823e-05 0.000530376198394144 1.4378099253210184e-06 0.01499603371662533 4.0653117887823e-05 0.01933692756679791 7.919117808499657e-05']
['59866.484355198205 0.03422056243697255 6.790566771637254e-05 0.01496903386972863 4.064298704581918e-05 0.0005294212741505142 1.4374516200804423e-06 0.014969033869728629 4.064298704581918e-05 0.019251528567243922 7.913932084629628e-05']
['59866.48438673617 0.034210394076643606 6.788133840522245e-05 0.015030088076133298 4.066245864063902e-05 0.0005315806249829267 1.438140286872767e-06 0.0150300880761333 4.066245864063902e-05 0.019180306000510308 7.912845029688125e-05']
['59866.48441827413 0.034289738861119745 6.795913153869146e-05 0.015046387661751209 4.066622078183124e-05 0.0005321571048988022 1.438273345398845e-06 0.015046387661751209 4.066622078183124e-05 0.019243351199368534 7.91971279287943e-05']
['59866.484449812095 0.034309498517523976 6.795466198538672e-05 0.01505783243264291 4.067663652884183e-05 0.0005325618808676841 1.438641727092785e-06 0.015057832432642911 4.067663652884183e-05 0.019251666084881065 7.919864168562282e-05']
['59866.48448135006 0.034250166706168976 6.791697142703058e-05 0.015006124575453018 4.0643008344691444e-05 0.0005307330895191371 1.4374523733739544e-06 0.015006124575453018 4.0643008344691444e-05 0.01924404213071596 7.914903116985543e-05']
['59866.48451288802 0.034234495631481746 6.79262012417064e-05 0.014916195512923907 4.0589482847859345e-05 0.0005275524995571087 1.435559296173448e-06 0.014916195512923908 4.0589482847859345e-05 0.019318300118557837 7.912948207201576e-05']
['59866.484544425984 0.03423668627211674 6.791339782623922e-05 0.014959830180576481 4.06144286154236e-05 0.0005290957602342374 1.4364415722216863e-06 0.014959830180576481 4.06144286154236e-05 0.01927685609154026 7.913129226837114e-05']
['59866.48457596395 0.03416041326083482 6.784645004402206e-05 0.015080975892323491 4.0698181854245816e-05 0.0005333804133139979 1.4394037371013556e-06 0.01508097589232349 4.0698181854245816e-05 0.01907943736851133 7.911689320124523e-05']
['59866.48460750191 0.03416602815078049 6.786163551380646e-05 0.014977371195695904 4.063764455748158e-05 0.0005297161467371498 1.4372626682077002e-06 0.014977371195695905 4.063764455748158e-05 0.019188656955084586 7.909879727144359e-05']
['59866.484639039874 0.03429330416549619 6.794130967525295e-05 0.015068279618219894 4.069722805934745e-05 0.0005329313744734564 1.4393700035074065e-06 0.015068279618219896 4.069722805934745e-05 0.019225024547276294 7.919776469132924e-05']
['59866.48467057783 0.03427214228884444 6.793107274650215e-05 0.014963458310379166 4.063092260364974e-05 0.0005292240790769655 1.4370249277233507e-06 0.014963458310379166 4.063092260364974e-05 0.019308683978465274 7.915492730155428e-05']
['59866.4847021158 0.03414537985239322 6.78495236954428e-05 0.01496931736195653 4.063597520731678e-05 0.0005294313006370472 1.4372036270231495e-06 0.014969317361956528 4.063597520731678e-05 0.019176062490436692 7.90875486201723e-05']
['59866.484733653764 0.03430900067982769 6.796829966928003e-05 0.015071918541400948 4.0692602917017665e-05 0.0005330600750538556 1.4392064225597868e-06 0.015071918541400948 4.0692602917017665e-05 0.019237082138426745 7.92185438650265e-05']
['59866.48476519172 0.034240296540694284 6.791290500753054e-05 0.015061188666662258 4.067803709956731e-05 0.0005326805833642069 1.438691262149254e-06 0.01506118866666226 4.067803709956731e-05 0.019179107874032025 7.916353560090429e-05']
['59866.48479672969 0.03426647782149084 6.792205415277844e-05 0.015007902893869123 4.064925328520178e-05 0.0005307959846672071 1.4376732429631844e-06 0.015007902893869123 4.064925328520178e-05 0.019258574927621716 7.915659942782697e-05']
['59866.484828267654 0.034381715755288804 6.79992110750343e-05 0.015110092652659144 4.0708516245925054e-05 0.0005344102080549405 1.4397692414390442e-06 0.015110092652659146 4.0708516245925054e-05 0.019271623102629656 7.925323969259435e-05']
['59866.48485980561 0.034226514909522006 6.790765946750866e-05 0.015035172720893606 4.066805176920329e-05 0.0005317604575045865 1.4383381033301784e-06 0.015035172720893606 4.066805176920329e-05 0.019191342188628398 7.915390482507933e-05']
['59866.48489134358 0.03423651511812174 6.789026108001334e-05 0.015116955221857692 4.069988029288319e-05 0.0005346529217905535 1.4394638070801726e-06 0.015116955221857692 4.069988029288319e-05 0.019119559896264043 7.915533971481263e-05']
['59866.48492288154 0.03412611403246627 6.781573755528462e-05 0.01495129937815617 4.061276960891719e-05 0.0005287940448178523 1.4363828968692158e-06 0.014951299378156169 4.061276960891719e-05 0.019174814654310104 7.904664012767544e-05']
['59866.4849544195 0.034312300996617286 6.797672714296047e-05 0.015096830475638218 4.070194208388523e-05 0.0005339411544929316 1.4395367280200831e-06 0.01509683047563822 4.070194208388523e-05 0.019215470520979064 7.923057189285235e-05']
['59866.48498595747 0.03430083383178646 6.795511133608042e-05 0.015075808774921066 4.069169598909088e-05 0.0005331976639193019 1.439174346545881e-06 0.015075808774921066 4.069169598909088e-05 0.019225025056865394 7.920676283732141e-05']
['59866.485017495426 0.034309182622139486 6.798027759008291e-05 0.015028313230371949 4.0683167761314724e-05 0.0005315178526548945 1.4388727221889058e-06 0.015028313230371949 4.0683167761314724e-05 0.019280869391767538 7.922397541350729e-05']
['59866.48504903339 0.03437100385709123 6.802038837685333e-05 0.015101547009245639 4.069713165860254e-05 0.0005341079677457938 1.4393665940285021e-06 0.015101547009245639 4.069713165860254e-05 0.01926945684784559 7.92655647817865e-05']
['59866.48508057136 0.03425063408259764 6.791702033046797e-05 0.01501382658500948 4.064547866193307e-05 0.000531005492384171 1.4375397429739563e-06 0.015013826585009481 4.064547866193307e-05 0.01923680749758816 7.915034166841516e-05']
['59866.485112109316 0.034427894895196445 6.808104333522626e-05 0.015020790896262948 4.06591850901885e-05 0.0005312518045088865 1.4380245087092868e-06 0.01502079089626295 4.06591850901885e-05 0.019407103998933493 7.92981575688311e-05']
['59866.48514364728 0.034284300500868774 6.794827412704521e-05 0.01497876311833606 4.063155731817227e-05 0.0005297653759301681 1.437047376157509e-06 0.01497876311833606 4.063155731817227e-05 0.01930553738253271 7.91700158326623e-05']
['59866.48517518524 0.034359283441127784 6.799486430473576e-05 0.015081837568767686 4.0669278017498386e-05 0.0005334108888840957 1.4383814729918724e-06 0.015081837568767688 4.0669278017498386e-05 0.019277445872360098 7.92293616425376e-05']
['59866.485206723206 0.034262626090501264 6.792778903716483e-05 0.014997943895687642 4.065344413702009e-05 0.000530443757158579 1.4378214640259952e-06 0.01499794389568764 4.065344413702009e-05 0.019264682194813622 7.916367249995027e-05']
['59866.48523826117 0.034264871620006083 6.791400875746733e-05 0.015055686557449632 4.0673492483695116e-05 0.0005324859860578467 1.438530529242473e-06 0.015055686557449634 4.0673492483695116e-05 0.01920918506255645 7.916214737063764e-05']
['59866.48526979913 0.034111602470721356 6.782338564417292e-05 0.015004027624176259 4.0654046732609563e-05 0.0005306589250388885 1.437842776485273e-06 0.01500402762417626 4.0654046732609563e-05 0.019107574846545093 7.907441530593447e-05']
['59866.485301337096 0.03432870097775664 6.798660912283027e-05 0.015125849455799055 4.071776784598297e-05 0.0005349674909676166 1.4400964498569834e-06 0.015125849455799055 4.071776784598297e-05 0.019202851521957588 7.924718063363436e-05']
['59866.48533287506 0.03436024763483471 6.799477815996698e-05 0.015076603821654733 4.0673516061599726e-05 0.0005332257829454469 1.4385313631402657e-06 0.015076603821654733 4.0673516061599726e-05 0.019283643813179978 7.923146323170067e-05']
['59866.48536441302 0.03424206014424974 6.791618750704282e-05 0.014968121759453027 4.062279507128196e-05 0.0005293890148485126 1.4367374750674683e-06 0.014968121759453026 4.062279507128196e-05 0.019273938384796716 7.913798079869848e-05']
['59866.485395950986 0.034214599252517776 6.788632274451415e-05 0.01504347588237057 4.067779423848502e-05 0.0005320541217695529 1.438682672695536e-06 0.01504347588237057 4.067779423848502e-05 0.019171123370147206 7.914060752787323e-05']
['59866.485427488944 0.03425424577879304 6.794951086122577e-05 0.015023167311153517 4.0645167166779776e-05 0.0005313358529925911 1.4375287260865352e-06 0.015023167311153515 4.0645167166779776e-05 0.019231078467639523 7.917806287283941e-05']
['59866.48545902691 0.03437335280014355 6.801995876842015e-05 0.01507027494958443 4.068553940720596e-05 0.0005330019448845168 1.4389566020037623e-06 0.015070274949584428 4.068553940720596e-05 0.019303077850559125 7.925924493529375e-05']
['59866.485490564875 0.03424028132236154 6.790314694986523e-05 0.015031281446571327 4.066453231044136e-05 0.0005316228318282938 1.4382136279392965e-06 0.015031281446571329 4.066453231044136e-05 0.01920899987579021 7.914822520892002e-05']
['59866.485522102834 0.03408411672040182 6.779122282669908e-05 0.01502122690639659 4.0680045439751595e-05 0.0005312672252128881 1.438762292653196e-06 0.015021226906396592 4.0680045439751595e-05 0.019062889814005227 7.90602048398524e-05']
['59866.4855536408 0.0341606935119704 6.783499951839194e-05 0.014961954948764924 4.062843981941038e-05 0.0005291709085364852 1.4369371171935009e-06 0.014961954948764926 4.062843981941038e-05 0.019198738563205475 7.907121651915875e-05']
['59866.485585178765 0.034213093511995404 6.787971368531806e-05 0.014949715472875156 4.0624402228667056e-05 0.0005287380256278828 1.4367943166323936e-06 0.014949715472875155 4.0624402228667056e-05 0.01926337803912025 7.910750651131209e-05']
['59866.48561671672 0.0343392304334318 6.799909198164337e-05 0.014971188244113592 4.061904597574076e-05 0.000529497469557767 1.4366048779369113e-06 0.014971188244113594 4.061904597574076e-05 0.01936804218931821 7.920721814523811e-05']
['59866.48564825469 0.03416944360216482 6.785992511879203e-05 0.015107444503175752 4.0701697504916084e-05 0.0005343165489259786 1.4395280778085461e-06 0.015107444503175752 4.0701697504916084e-05 0.019061999098989067 7.913025727817238e-05']
['59866.48567979265 0.034323556980877704 6.798087352602964e-05 0.015040764702207254 4.0673000467157436e-05 0.0005319582333863075 1.4385131277171277e-06 0.015040764702207254 4.0673000467157436e-05 0.019282792278670448 7.921926616905402e-05']
['59866.48571133061 0.03431852882851624 6.796961202618987e-05 0.014939109817497607 4.0613872220467956e-05 0.0005283629272994237 1.4364218937755747e-06 0.014939109817497605 4.0613872220467956e-05 0.01937941901101864 7.917925723149513e-05']
['59866.48574286858 0.03421184543566833 6.789598403011969e-05 0.015001886824023036 4.0654999031329594e-05 0.0005305832097218758 1.4378764571627382e-06 0.015001886824023036 4.0654999031329594e-05 0.019209958611645296 7.913718211849395e-05']
['59866.48577440654 0.03430979634108165 6.79753175922005e-05 0.015025966779495135 4.066305096430769e-05 0.0005314348639313907 1.4381612360371623e-06 0.015025966779495137 4.066305096430769e-05 0.019283829561586516 7.920939032391556e-05']
['59866.4858059445 0.03426675637115833 6.793066761089152e-05 0.015027346934738676 4.0664762700974794e-05 0.0005314836769378893 1.4382217763375715e-06 0.015027346934738678 4.0664762700974794e-05 0.01923940943641965 7.917195543617712e-05']
['59866.48583748246 0.034228992604312 6.791298955422771e-05 0.015005926334641682 4.0649874169106856e-05 0.0005307260781846824 1.4376952022393128e-06 0.015005926334641683 4.0649874169106856e-05 0.019223066269670318 7.914914036271566e-05']
['59866.48586902043 0.03430832114868148 6.795828603264131e-05 0.01507442836258428 4.068211600743441e-05 0.0005331488418199898 1.4388355240046909e-06 0.01507442836258428 4.068211600743441e-05 0.0192338927860972 7.920456554603808e-05']
['59866.48590055839 0.034319840788398275 6.796489286687332e-05 0.015080906332462172 4.0692779677056325e-05 0.0005333779531371603 1.4392126741673188e-06 0.015080906332462172 4.0692779677056325e-05 0.0192389344559361 7.921571170071639e-05']
['59866.48593209635 0.0342242114749754 6.788483992417987e-05 0.0150596580373741 4.067174562292411e-05 0.0005326264484270399 1.4384687466810069e-06 0.015059658037374102 4.067174562292411e-05 0.019164553437601296 7.913622674570333e-05']
['59866.48596363432 0.03422627802448216 6.79042857197163e-05 0.014989118783479057 4.063317109733369e-05 0.0005301316326627264 1.4371044519198646e-06 0.014989118783479059 4.063317109733369e-05 0.0192371592410031 7.913309429391765e-05']
['59866.48599517228 0.03420064176518511 6.788246444155317e-05 0.014920882833149867 4.058511427844298e-05 0.0005277182795979567 1.4354047896363692e-06 0.014920882833149867 4.058511427844298e-05 0.01927975893203524 7.908969894779602e-05']
['59866.48602671024 0.034363467119684125 6.803459857414674e-05 0.014983391876760338 4.065610381541275e-05 0.0005299290847709686 1.4379155309067122e-06 0.01498339187676034 4.065610381541275e-05 0.019380075242923785 7.9256705587571e-05']
['59866.48605824821 0.03430738812811679 6.797931948043117e-05 0.015031521483769702 4.0647194729724925e-05 0.0005316313214075488 1.4376004364565687e-06 0.015031521483769704 4.0647194729724925e-05 0.019275866644347085 7.920468620238771e-05']
['59866.486089786165 0.03425338951966911 6.790958698146216e-05 0.015068695877924003 4.067866698390567e-05 0.000532946096648905 1.4387135397505931e-06 0.015068695877924003 4.067866698390567e-05 0.019184693641745104 7.916101282563451e-05']
['59866.48612132413 0.03422804627959677 6.790761075548674e-05 0.014998142527698648 4.064526014146341e-05 0.0005304507823288919 1.4375320143933092e-06 0.014998142527698648 4.064526014146341e-05 0.01922990375189812 7.914215545766955e-05']
['59866.4861528621 0.034291278018457744 6.791863157634046e-05 0.014956926715836915 4.0623324709443585e-05 0.0005289930711752607 1.4367562071855733e-06 0.014956926715836915 4.0623324709443585e-05 0.01933435130262083 7.914035017392557e-05']
['59866.486184400055 0.03428775452189169 6.794920883076817e-05 0.01505912821470699 4.068210201791474e-05 0.0005326077097833881 1.4388350292266446e-06 0.015059128214706992 4.068210201791474e-05 0.0192286263071847 7.919677016976996e-05']
['59866.48621593802 0.03423478265671695 6.789799260239565e-05 0.014990542400805844 4.065024024535742e-05 0.0005301819828259774 1.437708149538163e-06 0.014990542400805844 4.065024024535742e-05 0.019244240255911108 7.913646082205251e-05']
['59866.48624747599 0.034239447468115025 6.787718554322458e-05 0.015048529977819988 4.066617288406753e-05 0.0005322328738303603 1.4382716513619878e-06 0.015048529977819988 4.066617288406753e-05 0.019190917490295036 7.912679656289774e-05']
['59866.486279013945 0.034357560604243255 6.799617725918096e-05 0.01499816164086344 4.0646976365401374e-05 0.0005304514583188152 1.4375927133984601e-06 0.01499816164086344 4.0646976365401374e-05 0.019359398963379813 7.921904322517065e-05']
['59866.48631055191 0.03439221858477022 6.801803745850194e-05 0.01497937900229045 4.064360136013265e-05 0.0005297871583692153 1.4374733470047982e-06 0.014979379002290452 4.064360136013265e-05 0.019412839582479767 7.923607607161999e-05']
['59866.48634208987 0.034206812417696575 6.78927835527975e-05 0.014992977039275414 4.06427728718892e-05 0.0005302680905475494 1.4374440452271895e-06 0.014992977039275414 4.06427728718892e-05 0.01921383537842116 7.912815583130307e-05']
['59866.486373627835 0.034416266707531076 6.805577494644843e-05 0.01509781875392311 4.070144217761421e-05 0.0005339761076871962 1.4395190474525018e-06 0.01509781875392311 4.070144217761421e-05 0.019318447953607966 7.929814562081076e-05']
['59866.4864051658 0.03422339556005655 6.789476507133731e-05 0.015071543691720762 4.0681743084822176e-05 0.0005330468174584071 1.4388223345653289e-06 0.01507154369172076 4.0681743084822176e-05 0.019151851868335793 7.91498789924e-05']
['59866.48643670376 0.03431417646757434 6.798627947069672e-05 0.015036127422889569 4.0671956168332165e-05 0.0005317942231805503 1.4384761932015483e-06 0.015036127422889567 4.0671956168332165e-05 0.019278049044684775 7.92233691206478e-05']
['59866.486468241725 0.03415913244857568 6.786787767798181e-05 0.014949005149530532 4.0616811443474376e-05 0.0005287129030786627 1.436525847524535e-06 0.014949005149530532 4.0616811443474376e-05 0.019210127299045147 7.909345227228517e-05']
['59866.48649977969 0.03435947002942682 6.79814476698193e-05 0.015010093213223021 4.063585727303639e-05 0.0005308734513676788 1.4371994559512197e-06 0.015010093213223021 4.063585727303639e-05 0.019349376816203797 7.92006952216896e-05']
['59866.48653131765 0.034215532928765405 6.789607300683613e-05 0.014984109520239678 4.063886250481032e-05 0.0005299544662169941 1.437305744282766e-06 0.014984109520239678 4.063886250481032e-05 0.019231423408525725 7.912896988735857e-05']
['59866.486562855614 0.034318025295796376 6.796537610227253e-05 0.015135240463523693 4.0712645184793495e-05 0.00053529962992317 1.4399152727791857e-06 0.015135240463523693 4.0712645184793495e-05 0.019182784832272683 7.922633291189392e-05']
['59866.48659439357 0.03414104364772031 6.785710440159048e-05 0.015017334102013783 4.063727915613426e-05 0.000531129545421774 1.4372497447786696e-06 0.015017334102013785 4.063727915613426e-05 0.019123709545706524 7.909472216894079e-05']
['59866.48662593154 0.034363606610180536 6.798270706365417e-05 0.015085761898915936 4.06911544051923e-05 0.0005335496836710776 1.4391551919337572e-06 0.015085761898915938 4.06911544051923e-05 0.019277844711264598 7.923016159600972e-05']
['59866.486657469504 0.03427684299014379 6.794590625515388e-05 0.015038617653008209 4.067126448832716e-05 0.0005318822970545098 1.4384517300255852e-06 0.015038617653008209 4.067126448832716e-05 0.01923822533713558 7.918836992837786e-05']
['59866.48668900746 0.03424549115342275 6.790489451311297e-05 0.015040576179355402 4.0672046777986046e-05 0.0005319515657543612 1.4384793978625055e-06 0.015040576179355402 4.0672046777986046e-05 0.019204914974067348 7.915358543962292e-05']
['59866.48672054543 0.03440263115120974 6.802646593374873e-05 0.015103881521139794 4.070717789762694e-05 0.0005341905342141631 1.4397219070507723e-06 0.015103881521139796 4.070717789762694e-05 0.019298749630069945 7.927593834086434e-05']
['59866.486752083394 0.034130313171698956 6.784939336807903e-05 0.015005269554846257 4.064218542781361e-05 0.0005307028493511346 1.4374232686430961e-06 0.015005269554846257 4.064218542781361e-05 0.0191250436168527 7.909062786933173e-05']
['59866.48678362135 0.03438175974990144 6.800064623982847e-05 0.014986645344215106 4.064092150405453e-05 0.0005300441526437719 1.437378566484441e-06 0.014986645344215106 4.064092150405453e-05 0.01939511440568633 7.921977271952388e-05']
['59866.48681515932 0.03429260615486484 6.796006158515738e-05 0.01509231574496369 4.069061817123119e-05 0.0005337814785588027 1.439136226536965e-06 0.01509231574496369 4.069061817123119e-05 0.01920029040990115 7.921045624041887e-05']
['59866.48684669728 0.034196897682549424 6.785864841100848e-05 0.014996752512341184 4.064294665887005e-05 0.0005304016205921999 1.4374501916843112e-06 0.014996752512341184 4.064294665887005e-05 0.019200145170208238 7.909895876232898e-05']
['59866.48687823524 0.03428533095309467 6.798177077132689e-05 0.015033153710255653 4.066227028294346e-05 0.0005316890496105453 1.4381336250820296e-06 0.015033153710255653 4.066227028294346e-05 0.019252177242839015 7.921452759291303e-05']
['59866.48690977321 0.03420720523307203 6.788800961488347e-05 0.015040757059609874 4.0660812504739054e-05 0.0005319579630847184 1.4380820667248823e-06 0.015040757059609876 4.0660812504739054e-05 0.019166448173462157 7.913332751133403e-05']
['59866.48694131117 0.034296098298468365 6.798568402336216e-05 0.015117747929744938 4.0711171203113525e-05 0.0005346809580969276 1.4398631413413204e-06 0.015117747929744938 4.0711171203113525e-05 0.019178350368723427 7.924299775282141e-05']
['59866.48697284913 0.034191716129338516 6.79079359398846e-05 0.015035068154398073 4.067241716038902e-05 0.0005317567592213318 1.4384924974603428e-06 0.015035068154398073 4.067241716038902e-05 0.019156647974940443 7.915638496851772e-05']
['59866.4870043871 0.03423671179240464 6.789135025712519e-05 0.015025151425985038 4.067556852277683e-05 0.0005314060266999464 1.4386039541051191e-06 0.015025151425985038 4.067556852277683e-05 0.0192115603664196 7.914377622016e-05']
['59866.487035925056 0.03425380372406252 6.793481295071307e-05 0.015072807821014245 4.06723839155349e-05 0.0005330915268863549 1.4384913216641503e-06 0.015072807821014245 4.06723839155349e-05 0.019180995903048274 7.917942677249586e-05']
['59866.48706746302 0.03425240336639434 6.793960773066744e-05 0.014998400260034668 4.065159237441035e-05 0.0005304598977456191 1.4377559713209345e-06 0.01499840026003467 4.065159237441035e-05 0.01925400310635967 7.917286316138999e-05']
['59866.48709900098 0.03433284402176812 6.79820169528027e-05 0.015052544363536039 4.0679033709476184e-05 0.0005323748536815129 1.4387265100144386e-06 0.015052544363536037 4.0679033709476184e-05 0.019280299658232088 7.922334512318862e-05']
['59866.487130538946 0.03419221868671886 6.790619628803942e-05 0.015010872163806938 4.065655792619473e-05 0.0005309010011089798 1.4379315917901932e-06 0.01501087216380694 4.065655792619473e-05 0.019181346522911917 7.914674470068726e-05']
['59866.48716207691 0.034231646310689076 6.789066107330587e-05 0.014998732337877095 4.06371609242318e-05 0.0005304716425967555 1.4372455631805124e-06 0.014998732337877095 4.06371609242318e-05 0.01923291397281198 7.912345233211454e-05']
['59866.48719361487 0.034284978080412365 6.796875082265929e-05 0.015114523426153973 4.0708626089378764e-05 0.0005345669146112565 1.4397731263565163e-06 0.015114523426153971 4.0708626089378764e-05 0.019170454654258394 7.922716280719383e-05']
['59866.487225152836 0.034143574006418834 6.7849070443868e-05 0.014977844828932706 4.06378696229895e-05 0.0005297328980862276 1.4372706282717237e-06 0.014977844828932708 4.06378696229895e-05 0.019165729177486126 7.908813316542537e-05']
['59866.4872566908 0.03423062904275683 6.790724856390726e-05 0.015000623265148394 4.0641999369499e-05 0.0005305385204683675 1.4374166881763243e-06 0.015000623265148392 4.0641999369499e-05 0.019230005777608437 7.914017007986931e-05']
['59866.48728822876 0.034153783001512825 6.786244732017378e-05 0.015013311072676606 4.064392822422576e-05 0.0005309872598650594 1.4374849074572733e-06 0.015013311072676606 4.064392822422576e-05 0.01914047192883622 7.91027221894378e-05']
['59866.487319766726 0.03420774507170128 6.787034364454393e-05 0.015015121015348895 4.065823100914052e-05 0.0005310512734923945 1.4379907649948652e-06 0.015015121015348895 4.065823100914052e-05 0.019192624056352386 7.911684583716113e-05']
['59866.487351304684 0.03435530126835103 6.795909070164433e-05 0.015080257463015796 4.0680366412539806e-05 0.0005333550040749797 1.438773644743383e-06 0.015080257463015794 4.0680366412539806e-05 0.019275043805335235 7.920435733249035e-05']
['59866.48738284265 0.0342626353277903 6.793173497060423e-05 0.015046933227892563 4.066542500029733e-05 0.0005321764003539533 1.4382452003844578e-06 0.015046933227892563 4.066542500029733e-05 0.019215702099897737 7.917321142009601e-05']
['59866.487414380616 0.034348400794504776 6.800788527010486e-05 0.015194325083601062 4.0748157362088295e-05 0.0005373893208889522 1.4411712591250575e-06 0.015194325083601062 4.0748157362088295e-05 0.019154075710903714 7.928104935807331e-05']
['59866.487445918574 0.03433749231132131 6.798754892093381e-05 0.01509919927901036 4.0690851580766486e-05 0.0005340249337742402 1.4391444817105889e-06 0.01509919927901036 4.0690851580766486e-05 0.019238293032310953 7.923416062939227e-05']
['59866.48747745654 0.034212584044881804 6.788212117128695e-05 0.015025676669041477 4.06699375548925e-05 0.0005314246033730035 1.4384047993555228e-06 0.015025676669041477 4.06699375548925e-05 0.019186907375840327 7.913296528901302e-05']
['59866.487508994505 0.034057977394648435 6.777037942076078e-05 0.015019252974916358 4.06528664851784e-05 0.0005311974116679095 1.4378010337713305e-06 0.015019252974916356 4.06528664851784e-05 0.01903872441973208 7.902834858641307e-05']
['59866.487540532464 0.03422245050557239 6.79072618157144e-05 0.015022112095853508 4.065050526873358e-05 0.0005312985323856973 1.4377175228226857e-06 0.015022112095853508 4.065050526873358e-05 0.01920033840971888 7.914454994446124e-05']
['59866.48757207043 0.034253504977711166 6.790438667925725e-05 0.01504678217036662 4.0678211431502256e-05 0.0005321710577868544 1.438697427880184e-06 0.01504678217036662 4.0678211431502256e-05 0.019206722807344548 7.915631759722082e-05']
['59866.48760360839 0.034287517063168224 6.794618039800623e-05 0.015037397895144187 4.0675918268763484e-05 0.0005318391569448577 1.4386163238390307e-06 0.015037397895144185 4.0675918268763484e-05 0.01925011916802404 7.919099543310169e-05']
['59866.48763514635 0.03425698563707833 6.793410797231619e-05 0.015113586784819444 4.0709903797493896e-05 0.0005345337877005245 1.439818316037039e-06 0.015113586784819446 4.0709903797493896e-05 0.019143398852258887 7.919810157570397e-05']
['59866.48766668432 0.03433868323875643 6.798285344761498e-05 0.015033661637503758 4.066292384826853e-05 0.0005317070138621602 1.4381567402269447e-06 0.015033661637503758 4.066292384826853e-05 0.019305021601252675 7.921579223090545e-05']
['59866.48769822228 0.03428967044076237 6.796039120202185e-05 0.014983571587744413 4.0627807741223445e-05 0.0005299354407468449 1.4369147620006405e-06 0.014983571587744413 4.0627807741223445e-05 0.01930609885301796 7.917849161350363e-05']
['59866.48772976024 0.034252164350082916 6.792160326652915e-05 0.01502744499012039 4.06729823059336e-05 0.0005314871449375997 1.4385124853952285e-06 0.01502744499012039 4.06729823059336e-05 0.019224719359962526 7.916840076668577e-05']
['59866.48776129821 0.034329965810327503 6.796909993719597e-05 0.01496935525898919 4.063248420788474e-05 0.0005294326409703975 1.4370801581751626e-06 0.014969355258989188 4.063248420788474e-05 0.019360610551338316 7.918836605951998e-05']
['59866.48779283617 0.03434712408408723 6.798280725892461e-05 0.015047315174109281 4.068292597242991e-05 0.0005321899089380391 1.4388641706564164e-06 0.015047315174109281 4.068292597242991e-05 0.01929980890997795 7.922602191503941e-05']
['59866.48782437413 0.03430214184994469 6.792516562971087e-05 0.015073747296596758 4.069009053314314e-05 0.000533124754038104 1.4391175651569925e-06 0.015073747296596758 4.069009053314314e-05 0.019228394553347933 7.918024749531313e-05']
['59866.48785591209 0.034262246746407474 6.793234305522785e-05 0.015077453069999575 4.068026328937894e-05 0.0005332558189614456 1.43876999750765e-06 0.015077453069999575 4.068026328937894e-05 0.0191847936764079 7.918135547126202e-05']
['59866.48788745006 0.034250798113394126 6.790170824939746e-05 0.014945624978087128 4.061220192507776e-05 0.0005285933539689481 1.4363628191605143e-06 0.014945624978087128 4.061220192507776e-05 0.019305173135306997 7.912011709034297e-05']
['59866.48791898802 0.03426790493474732 6.792526347187875e-05 0.014976142416667542 4.0629942463403774e-05 0.0005296726875690761 1.4369902623533356e-06 0.014976142416667542 4.0629942463403774e-05 0.01929176251807978 7.914943867333266e-05']
['59866.48795052598 0.03424137664046199 6.792950021608834e-05 0.014992183947854709 4.064895793921902e-05 0.000530240040676454 1.4376627972358333e-06 0.014992183947854709 4.064895793921902e-05 0.019249192692607282 7.916283712166929e-05']
['59866.48798206395 0.03424893275247991 6.791384970827576e-05 0.014953437709573886 4.0608918273793716e-05 0.0005288696728212074 1.4362466837531262e-06 0.014953437709573886 4.0608918273793716e-05 0.019295495042906022 7.912885204251306e-05']
['59866.48801360191 0.03430385011185908 6.794952989303602e-05 0.01507816786224532 4.0681977606571805e-05 0.000533281099565711 1.4388306290754881e-06 0.01507816786224532 4.0681977606571805e-05 0.01922568224961376 7.919698172699643e-05']
['59866.48804513987 0.034328493232347386 6.800645231285155e-05 0.01507100695827438 4.066929061538532e-05 0.0005330278343959373 1.4383819185509785e-06 0.01507100695827438 4.066929061538532e-05 0.019257486274073005 7.92393131932554e-05']
['59866.48807667784 0.03422733447855957 6.791658694817884e-05 0.01498388717652183 4.062595721489118e-05 0.0005299466024166027 1.4368493130199512e-06 0.01498388717652183 4.062595721489118e-05 0.019243447302037742 7.913994681774625e-05']
['59866.488108215795 0.03419998598061642 6.789314003577461e-05 0.014999283157513239 4.062947883275506e-05 0.0005304911238562764 1.436973864773444e-06 0.014999283157513239 4.062947883275506e-05 0.019200702823103176 7.912163429896145e-05']
['59866.48813975376 0.0343413471047349 6.802332365249408e-05 0.015091233332246339 4.0695557032054084e-05 0.00053374319604004 1.4393109030065664e-06 0.015091233332246339 4.0695557032054084e-05 0.019250113772488565 7.926727523310693e-05']
['59866.48817129173 0.03431810412732204 6.795860490378516e-05 0.015018056934850607 4.066404779728771e-05 0.0005311551104037761 1.438196491791875e-06 0.015018056934850607 4.066404779728771e-05 0.01930004719247143 7.919556025263583e-05']
['59866.488202829685 0.03416650569133999 6.785316216627382e-05 0.014920074712589921 4.058940095212708e-05 0.0005276896981797946 1.435556399704424e-06 0.014920074712589921 4.058940095212708e-05 0.01924643097875007 7.906675082242338e-05']
['59866.48823436765 0.034253916534664086 6.795366375936302e-05 0.014933975853043428 4.060725225543983e-05 0.0005281813504504146 1.4361877604072812e-06 0.014933975853043428 4.060725225543983e-05 0.019319940681620656 7.916217123132418e-05']
['59866.48826590562 0.0342897023641268 6.79631439363147e-05 0.01508488656168127 4.068816524206458e-05 0.000533518724949351 1.439049471914316e-06 0.01508488656168127 4.068816524206458e-05 0.019204815802445534 7.921184080977909e-05']
['59866.488297443575 0.034369624794154924 6.801739181829746e-05 0.015131404403903141 4.072101315890636e-05 0.0005351639570674798 1.4402112293222363e-06 0.015131404403903141 4.072101315890636e-05 0.019238220390251783 7.927525782015233e-05']
['59866.48832898154 0.034199432867174626 6.788687079325554e-05 0.015045676030770734 4.0667022806383615e-05 0.0005321319361014245 1.4383017112148432e-06 0.015045676030770736 4.0667022806383615e-05 0.01915375683640389 7.913554176244134e-05']
['59866.4883605195 0.034158989547224246 6.783304570407759e-05 0.014974971874570189 4.062551774638119e-05 0.0005296312881111004 1.4368337700009072e-06 0.01497497187457019 4.062551774638119e-05 0.019184017672654055 7.906803893896075e-05']
['59866.488392057465 0.034466786340137494 6.808931208204657e-05 0.01501499645256232 4.066603180832371e-05 0.0005310468679850148 1.4382666618282146e-06 0.01501499645256232 4.066603180832371e-05 0.019451789887575174 7.930876725080229e-05']
['59866.48842359543 0.03431055557772099 6.797238778206665e-05 0.01513642051544577 4.07184141817211e-05 0.0005353413657223931 1.4401193093075658e-06 0.01513642051544577 4.07184141817211e-05 0.019174135062275218 7.923531254604748e-05']
['59866.48845513339 0.03428077436520515 6.793023286416875e-05 0.015043162002760718 4.0662046000995207e-05 0.0005320430205492321 1.4381256927307606e-06 0.015043162002760718 4.0662046000995207e-05 0.019237612362444433 7.91701870780109e-05']
['59866.488486671355 0.034303402557163416 6.793656434895733e-05 0.015067312868151607 4.066782434582376e-05 0.0005328971826841003 1.4383300598735058e-06 0.015067312868151607 4.066782434582376e-05 0.01923608968901181 7.917858746253811e-05']
['59866.48851820932 0.03426620306399915 6.797638623676444e-05 0.015012522260491032 4.0661069583141585e-05 0.0005309593613409472 1.4380911590134435e-06 0.015012522260491034 4.0661069583141585e-05 0.019253680803508116 7.920929027238446e-05']
['59866.48854974728 0.03425372732607404 6.792648177388775e-05 0.0149795605594278 4.0621919422697125e-05 0.000529793579639407 1.436706505333982e-06 0.0149795605594278 4.0621919422697125e-05 0.019274166766646242 7.91463660805877e-05']
['59866.488581285244 0.034336855847895094 6.797001617446356e-05 0.015007773253460208 4.063658301330243e-05 0.000530791399575673 1.4372251237624954e-06 0.015007773253460208 4.063658301330243e-05 0.019329082594434888 7.91912556899678e-05']
['59866.4886128232 0.034326354541609816 6.79659109738818e-05 0.015034534004369705 4.0659143485752405e-05 0.0005317378675285835 1.4380230372533624e-06 0.015034534004369705 4.0659143485752405e-05 0.01929182053724011 7.919931188782279e-05']
['59866.48864436117 0.034164046139756946 6.784825591223316e-05 0.015031137717821537 4.067322052927281e-05 0.0005316177484636285 1.4385209108223385e-06 0.015031137717821537 4.067322052927281e-05 0.019132908421935407 7.910560472276753e-05']
['59866.488675899134 0.03419867760855651 6.787889085691665e-05 0.015020662312949393 4.066747853056612e-05 0.0005312472568044528 1.4383178291606947e-06 0.015020662312949393 4.066747853056612e-05 0.019178015295607115 7.912893044897838e-05']
['59866.48870743709 0.03419476708922788 6.786531436772497e-05 0.01496477338575355 4.0630406034275716e-05 0.0005292705903539369 1.4370066578190562e-06 0.01496477338575355 4.0630406034275716e-05 0.019229993703474335 7.909823505452094e-05']
['59866.48873897506 0.03429904555799901 6.796171337815205e-05 0.015113407302619793 4.0718561530178786e-05 0.0005345274398162419 1.4401245206932096e-06 0.015113407302619794 4.0718561530178786e-05 0.019185638255379216 7.922623137813036e-05']
['59866.488770513024 0.03434677566992546 6.801140042099867e-05 0.01504519122571991 4.068206431367097e-05 0.0005321147896302523 1.4388336957118065e-06 0.015045191225719911 4.068206431367097e-05 0.019301584444205547 7.925011636614219e-05']
['59866.48880205098 0.03419094219027942 6.78469215506782e-05 0.014999038502516127 4.065176178161596e-05 0.0005304824709558003 1.4377619628751941e-06 0.014999038502516127 4.065176178161596e-05 0.019191903687763294 7.909342892967238e-05']
['59866.48883358895 0.03429826708845706 6.796075114884066e-05 0.015092597396929128 4.069816722419327e-05 0.0005337914399593651 1.4394032196690934e-06 0.015092597396929126 4.069816722419327e-05 0.019205669691527934 7.92149260690373e-05']
['59866.48886512691 0.034399478679428365 6.802428163792254e-05 0.015023625942631534 4.064620234898299e-05 0.0005313520737629876 1.4375653381675669e-06 0.015023625942631534 4.064620234898299e-05 0.01937585273679683 7.924277038159302e-05']
['59866.48889666487 0.0341551965901605 6.784427451776576e-05 0.014957717242232297 4.06348671620359e-05 0.0005290210303271429 1.4371644379379001e-06 0.014957717242232297 4.06348671620359e-05 0.019197479347928204 7.908247602420061e-05']
['59866.48892820284 0.03436046525302826 6.801749746271671e-05 0.015008137705181515 4.0638151533909044e-05 0.000530804289418554 1.437280598830914e-06 0.015008137705181515 4.0638151533909044e-05 0.019352327547846743 7.92328171983278e-05']
['59866.4889597408 0.03430769756338101 6.798141056082455e-05 0.01501046379178739 4.0649022565045843e-05 0.0005308865579033062 1.437665082906898e-06 0.01501046379178739 4.0649022565045843e-05 0.019297233771593616 7.920741895386437e-05']
['59866.48899127876 0.034197057905879416 6.788719348492406e-05 0.015053027587619597 4.0689132077743005e-05 0.0005323919442374062 1.4390836667315114e-06 0.015053027587619597 4.0689132077743005e-05 0.01914403031825982 7.914718256829823e-05']
['59866.48902281673 0.03435386301144592 6.802315604848927e-05 0.015117439431991673 4.07144861122736e-05 0.0005346700472208465 1.4399803822699263e-06 0.015117439431991671 4.07144861122736e-05 0.019236423579454247 7.927685121259321e-05']
['59866.489054354686 0.03417983797755963 6.788523764705667e-05 0.014968604106726471 4.062464603895603e-05 0.0005294060743935916 1.4368029396574309e-06 0.01496860410672647 4.062464603895603e-05 0.019211233870833157 7.911237170119365e-05']
['59866.48908589265 0.034320975993471586 6.800101739786782e-05 0.015004657454255643 4.064951109527674e-05 0.0005306812007212089 1.437682361129364e-06 0.015004657454255645 4.064951109527674e-05 0.01931631853921594 7.922449822769563e-05']
['59866.48911743061 0.03432276934341492 6.795343448020578e-05 0.015050806306072894 4.06661800190846e-05 0.0005323133824733713 1.4382719037115959e-06 0.015050806306072893 4.06661800190846e-05 0.019271963037342025 7.919221839928601e-05']
['59866.489148968576 0.03416350049226149 6.786696270603143e-05 0.015108640549235726 4.071702375571204e-05 0.0005343588504021143 1.4400701330470446e-06 0.015108640549235724 4.071702375571204e-05 0.019054859943025762 7.91441763521807e-05']
['59866.48918050654 0.034367436439639756 6.800522762607422e-05 0.015102546476404497 4.0704917237347194e-05 0.0005341433166655249 1.439641952548956e-06 0.015102546476404495 4.0704917237347194e-05 0.019264889963235263 7.92565534941651e-05']
['59866.4892120445 0.034360302079273014 6.800102831130597e-05 0.015010552308461968 4.066067909969788e-05 0.0005308896885402628 1.438077348486719e-06 0.015010552308461966 4.066067909969788e-05 0.019349749770811046 7.923023839572644e-05']
['59866.489243582466 0.03422250369990968 6.789363538620298e-05 0.015009555788044764 4.0654850491688666e-05 0.0005308544438401984 1.437871203647605e-06 0.015009555788044764 4.0654850491688666e-05 0.019212947911864918 7.913509079072464e-05']
['59866.48927512043 0.03422705125983944 6.789307389190248e-05 0.015016152937857699 4.0653385854422935e-05 0.0005310877702853198 1.437819402700788e-06 0.015016152937857697 4.0653385854422935e-05 0.019210898321981744 7.913385662230753e-05']
['59866.48930665839 0.03431200324732495 6.795641986407574e-05 0.014997664372129906 4.0655594855931775e-05 0.0005304338710350403 1.4378975301473278e-06 0.014997664372129904 4.0655594855931775e-05 0.01931433887519505 7.91893452039617e-05']
['59866.489338196356 0.03426308817503993 6.793940892487848e-05 0.015020567264976189 4.06463055807929e-05 0.0005312438951700603 1.4375689892459738e-06 0.015020567264976189 4.06463055807929e-05 0.019242520910063742 7.916997816362623e-05']
['59866.489369734314 0.03431085474415777 6.798453463368699e-05 0.015038126910950824 4.065707952811227e-05 0.000531864940604684 1.437950039684305e-06 0.015038126910950824 4.065707952811227e-05 0.019272727833206948 7.921423524287937e-05']
['59866.48940127228 0.0342993775386142 6.798680271435764e-05 0.015033558221516695 4.066343546224499e-05 0.0005317033562698189 1.4381748348699024e-06 0.015033558221516696 4.066343546224499e-05 0.019265819317097505 7.921944412146018e-05']
['59866.489432810245 0.03418412769642894 6.7868789057005e-05 0.015019814020340968 4.065728060162605e-05 0.0005312172545907152 1.4379571512051143e-06 0.015019814020340968 4.065728060162605e-05 0.01916431367608797 7.911502381964883e-05']
['59866.489464348204 0.034228512645855656 6.7914705968468e-05 0.015061189970331186 4.069272891004632e-05 0.0005326806294720633 1.4392108786516324e-06 0.015061189970331188 4.069272891004632e-05 0.01916732267552447 7.917263083244097e-05']
['59866.48949588617 0.034328629296824655 6.799642258565443e-05 0.015045996881454513 4.067601177432138e-05 0.0005321432838730506 1.438619630921641e-06 0.015045996881454513 4.067601177432138e-05 0.019282632415370142 7.923415562944826e-05']
['59866.489527424135 0.034270504066111276 6.793366672811593e-05 0.015002541233879013 4.064291935750203e-05 0.0005306063547359617 1.4374492260959392e-06 0.015002541233879015 4.064291935750203e-05 0.019267962832232262 7.916331201400772e-05']
['59866.489558962094 0.03429710179978269 6.795130983665691e-05 0.015014280967209649 4.0658151288836286e-05 0.0005310215628671064 1.437987945465869e-06 0.015014280967209649 4.0658151288836286e-05 0.019282820832573037 7.918627264080086e-05']
['59866.48959050006 0.034250499335490604 6.791295392174963e-05 0.015001098730144737 4.065029844552583e-05 0.0005305553366026865 1.4377102079480502e-06 0.015001098730144739 4.065029844552583e-05 0.019249400605345864 7.914932769195205e-05']
['59866.48962203802 0.03429943284918643 6.798713208819529e-05 0.015042049969031558 4.065953146177062e-05 0.0005320036904014809 1.4380367590980513e-06 0.015042049969031558 4.065953146177062e-05 0.01925738288015487 7.921772294296542e-05']
['59866.48965357598 0.03428110911440496 6.79582449271114e-05 0.015004687806006889 4.064327327145175e-05 0.0005306822741948183 1.4374617432413898e-06 0.015004687806006889 4.064327327145175e-05 0.019276421308398073 7.918458635233986e-05']
['59866.48968511395 0.03436107133952124 6.799353952507313e-05 0.015068836992442236 4.067475861069572e-05 0.0005329510875540425 1.4385753093248572e-06 0.015068836992442235 4.067475861069572e-05 0.019292234347079003 7.923103814280139e-05']
['59866.48971665191 0.03434598471548547 6.798854888535566e-05 0.01505570390345743 4.065867977148324e-05 0.0005324865995473765 1.4380066367160024e-06 0.015055703903457432 4.065867977148324e-05 0.019290280812028042 7.92185017549336e-05']
['59866.48974818987 0.03423818547627689 6.790023248902735e-05 0.014968086496777059 4.0641994757450965e-05 0.0005293877676864711 1.4374165250584926e-06 0.014968086496777059 4.0641994757450965e-05 0.01927009897949983 7.913414755924674e-05']
['59866.48977972784 0.03427467955375985 6.795662445841958e-05 0.015019045984833019 4.0665256240321914e-05 0.0005311900908912574 1.4382392317212837e-06 0.015019045984833017 4.0665256240321914e-05 0.019255633568926837 7.91944813283963e-05']
['59866.4898112658 0.034297881958966984 6.794419791056665e-05 0.015080101493999775 4.0696094715169354e-05 0.0005333494877994534 1.4393299196567025e-06 0.015080101493999777 4.0696094715169354e-05 0.019217780464967207 7.919966006730259e-05']
['59866.48984280376 0.03419015622762146 6.787287920491021e-05 0.01506088104472009 4.0683426127003505e-05 0.000532669703463607 1.4388818600059046e-06 0.01506088104472009 4.0683426127003505e-05 0.019129275182901372 7.91319713705888e-05']
['59866.48987434172 0.03427126386177964 6.791623463619022e-05 0.01499493690237333 4.0647751744926534e-05 0.0005303374065252864 1.4376201368393938e-06 0.01499493690237333 4.0647751744926534e-05 0.019276326959406308 7.91508347970836e-05']
['59866.48990587969 0.034119602974513205 6.781924725394931e-05 0.014974001144457957 4.0633402664097055e-05 0.0005295969555564849 1.4371126419187635e-06 0.014974001144457957 4.0633402664097055e-05 0.01914560183005525 7.906025366867324e-05']
['59866.48993741765 0.03425465378900395 6.791134845534214e-05 0.014987284812602678 4.063954442269568e-05 0.0005300667692115126 1.4373298621943743e-06 0.014987284812602678 4.063954442269568e-05 0.019267368976401272 7.914242743249133e-05']
['59866.48996895561 0.034333753669081465 6.798110304972483e-05 0.014995294458720675 4.0630429081023434e-05 0.0005303500524942006 1.4370074729310164e-06 0.014995294458720675 4.0630429081023434e-05 0.01933845921036079 7.919761447900676e-05']
['59866.49000049358 0.03419621740334949 6.787179101789008e-05 0.015046197091137995 4.068478543745449e-05 0.0005321503648421131 1.4389299357786759e-06 0.015046197091137997 4.068478543745449e-05 0.01915002031221149 7.913173688266834e-05']
['59866.49003203154 0.03421439625664957 6.79383513592179e-05 0.015009659554705053 4.0644841511071227e-05 0.0005308581138350679 1.4375172083719215e-06 0.015009659554705053 4.0644841511071227e-05 0.019204736701944516 7.916831895947168e-05']
['59866.4900635695 0.03424104317505884 6.792204942612644e-05 0.015073344933811956 4.068085586525683e-05 0.0005331105233656335 1.4387909555921218e-06 0.015073344933811957 4.068085586525683e-05 0.019167698241246884 7.917282887566268e-05']
['59866.49009510747 0.034266521218442675 6.793076719520094e-05 0.015087210980859475 4.068901479462721e-05 0.0005336009344609129 1.439079518689818e-06 0.015087210980859474 4.068901479462721e-05 0.0191793102375832 7.918450010378281e-05']
['59866.490126645425 0.03417386871023187 6.787887541557162e-05 0.015042570421273098 4.0676841638597176e-05 0.0005320220976341218 1.4386489813664383e-06 0.015042570421273098 4.0676841638597176e-05 0.01913129828895877 7.913372968193907e-05']
['59866.49015818339 0.034179079331746666 6.786141770865864e-05 0.015039048899513744 4.0655074161844115e-05 0.0005318975492796314 1.43787911436113e-06 0.015039048899513744 4.0655074161844115e-05 0.019140030432232922 7.910756644300275e-05']
['59866.49018972136 0.03430685267148552 6.794094658117604e-05 0.015103186709461557 4.069889786925112e-05 0.0005341659602779165 1.4394290609518938e-06 0.015103186709461558 4.069889786925112e-05 0.019203665962023962 7.919831128324611e-05']
['59866.490221259315 0.03434934580223379 6.800389065401104e-05 0.015049559929314348 4.067463703648562e-05 0.0005322693009129096 1.4385710095167482e-06 0.015049559929314347 4.067463703648562e-05 0.019299785872919445 7.923985892297221e-05']
['59866.49025279728 0.03429028678537125 6.795290764181055e-05 0.014997653014150361 4.064128942374773e-05 0.0005304334693286874 1.4373915789817374e-06 0.014997653014150361 4.064128942374773e-05 0.01929263377122089 7.917898750932132e-05']
['59866.49028433525 0.03427227269705438 6.792518607804244e-05 0.01504976317989896 4.06706786933386e-05 0.000532276489431849 1.4384310117660145e-06 0.01504976317989896 4.06706786933386e-05 0.01922250951715542 7.91702912026568e-05']
['59866.490315873205 0.03430837874223456 6.79521774538218e-05 0.014950837086372687 4.0618082063741913e-05 0.0005287776945906319 1.4365707865237288e-06 0.014950837086372688 4.0618082063741913e-05 0.01935754165586187 7.916645129884603e-05']
['59866.49034741117 0.03432593594971479 6.796028160132008e-05 0.015048417446988373 4.067614697315607e-05 0.0005322288938663377 1.4386244126022723e-06 0.015048417446988373 4.067614697315607e-05 0.019277518502726416 7.920321210602837e-05']
['59866.49037894913 0.034169363885049535 6.785197279186072e-05 0.015038553731124109 4.067290012757458e-05 0.0005318800362803262 1.438509578930328e-06 0.015038553731124107 4.067290012757458e-05 0.019130810153925426 7.910862795255056e-05']
['59866.490410487095 0.03426165944314197 6.793073054871967e-05 0.015025880349179873 4.0656911478679674e-05 0.0005314318070843003 1.4379440961514422e-06 0.015025880349179874 4.0656911478679674e-05 0.019235779093962093 7.916797713638988e-05']
['59866.49044202506 0.034361637185800986 6.801212850550878e-05 0.01501648362486119 4.0654536029518306e-05 0.0005310994659455913 1.437860081823421e-06 0.01501648362486119 4.0654536029518306e-05 0.0193451535609398 7.923661352951198e-05']
['59866.49047356302 0.03431158425941825 6.79869215050995e-05 0.014999477857475447 4.066252154838509e-05 0.0005304980099588109 1.4381425117791549e-06 0.014999477857475447 4.066252154838509e-05 0.0193121064019428 7.921907696012018e-05']
['59866.490505100985 0.034274406004786005 6.79369881396262e-05 0.015077928688275068 4.0675568065592585e-05 0.0005332726405169055 1.438603937935534e-06 0.015077928688275068 4.0675568065592585e-05 0.01919647731651094 7.918292868379122e-05']
['59866.49053663895 0.034255828135977315 6.79271679469716e-05 0.014962863363303906 4.063201566103722e-05 0.000529203037128542 1.4370635867203065e-06 0.014962863363303906 4.063201566103722e-05 0.019292964772673407 7.915213731779363e-05']
['59866.49056817691 0.034247111900169 6.792879734819687e-05 0.015087618623969849 4.0699080977797314e-05 0.0005336153518866981 1.4394355370919492e-06 0.015087618623969849 4.0699080977797314e-05 0.01915949327619915 7.918798331571339e-05']
['59866.490599714874 0.03426893838541239 6.792611201512062e-05 0.014991646648494969 4.0645220066081075e-05 0.0005302210375988934 1.4375305970165992e-06 0.014991646648494969 4.0645220066081075e-05 0.019277291736917418 7.915801038246776e-05']
['59866.49063125283 0.034254367105894794 6.791295108698195e-05 0.015011350499025689 4.066360978824556e-05 0.0005309179187566507 1.4381810003909467e-06 0.015011350499025689 4.066360978824556e-05 0.019243016606869105 7.91561626555602e-05']
['59866.4906627908 0.0342181526128055 6.790805029342226e-05 0.015023868540459888 4.065141683098397e-05 0.0005313606539060023 1.43774976274226e-06 0.01502386854045989 4.065141683098397e-05 0.019194284072345615 7.9145694671412e-05']
['59866.490694328764 0.03420339793517454 6.789827380776206e-05 0.015024588036741794 4.066001068358809e-05 0.0005313861008815138 1.4380537081027375e-06 0.015024588036741796 4.066001068358809e-05 0.019178809898432743 7.91417213286603e-05']
['59866.49072586672 0.03421426196537179 6.79241567664442e-05 0.01501584036114354 4.065423950907336e-05 0.0005310767151455078 1.4378495945579676e-06 0.01501584036114354 4.065423950907336e-05 0.01919842160422825 7.916096425949844e-05']
['59866.49075740469 0.03438680743800961 6.802182281788545e-05 0.015099623300848974 4.070070488487387e-05 0.0005340399304790389 1.4394929710560284e-06 0.015099623300848972 4.070070488487387e-05 0.019287184137160643 7.926863035017948e-05']
['59866.490788942654 0.03428712600787074 6.79556018956734e-05 0.015064665152743711 4.0684184993508236e-05 0.0005328035389074187 1.4389086994182102e-06 0.01506466515274371 4.0684184993508236e-05 0.01922246085512703 7.920332529376055e-05']
['59866.49082048061 0.034317364279763105 6.797332384421334e-05 0.015080918605240795 4.0670008550827406e-05 0.0005333783871979121 1.438407310323074e-06 0.015080918605240795 4.0670008550827406e-05 0.01923644567452231 7.921125141010383e-05']
['59866.49085201858 0.03425166213245463 6.793309307263926e-05 0.015011570458236683 4.065801018640999e-05 0.0005309256982223637 1.4379829549883964e-06 0.015011570458236685 4.065801018640999e-05 0.019240091674217946 7.917056856391829e-05']
['59866.49088355654 0.034265806954296756 6.79332640173475e-05 0.015033516935897603 4.066733524070732e-05 0.0005317018960897395 1.438312761318623e-06 0.015033516935897603 4.066733524070732e-05 0.019232290018399153 7.917550451768979e-05']
['59866.4909150945 0.03426869347587909 6.793764071997584e-05 0.015043047572561936 4.067023687208554e-05 0.0005320389734088376 1.438415385535706e-06 0.015043047572561934 4.067023687208554e-05 0.019225645903317157 7.918075014691428e-05']
['59866.49094663247 0.034101524163317 6.78203971705232e-05 0.015053864363259018 4.066454807739016e-05 0.000532421539121689 1.4382141855810385e-06 0.015053864363259018 4.066454807739016e-05 0.01904765980005798 7.907725173971266e-05']
['59866.49097817043 0.034269167003612176 6.791877742314357e-05 0.014969386434012197 4.063280393364163e-05 0.0005294337435612892 1.4370914661606389e-06 0.014969386434012197 4.063280393364163e-05 0.01929978056959998 7.914534150639745e-05']
['59866.49100970839 0.034274440782983966 6.795736591614617e-05 0.014981097245359018 4.0652691735793445e-05 0.0005298479287865033 1.4377948532761267e-06 0.01498109724535902 4.0652691735793445e-05 0.019293343537624946 7.918866666150172e-05']
['59866.49104124636 0.03427550397168282 6.792078120852667e-05 0.015048101430091172 4.067520722734813e-05 0.0005322177170549399 1.4385911758932536e-06 0.015048101430091174 4.067520722734813e-05 0.01922740254159165 7.916883858541985e-05']
['59866.491072784316 0.034274616189564296 6.794770993730853e-05 0.01503716293593906 4.0659215338859454e-05 0.0005318308469628753 1.4380255785371765e-06 0.01503716293593906 4.0659215338859454e-05 0.019237453253625234 7.918372987992143e-05']
['59866.49110432228 0.034438388023089204 6.810029806500635e-05 0.015036996290518028 4.064697570668057e-05 0.000531824953086764 1.4375926901009773e-06 0.015036996290518027 4.064697570668057e-05 0.019401391732571178 7.9308431018664e-05']
['59866.49113586024 0.03437298135371676 6.802042348880307e-05 0.015037103106950098 4.066031610856068e-05 0.0005318287309452457 1.4380645103014335e-06 0.015037103106950098 4.066031610856068e-05 0.019335878246766663 7.924669909620331e-05']
['59866.491167398206 0.03426175464369564 6.79080413775584e-05 0.015014325225048109 4.065731786814049e-05 0.0005310231281679423 1.4379584692384443e-06 0.015014325225048109 4.065731786814049e-05 0.01924742941864753 7.914871811954505e-05']
['59866.49119893617 0.03424341574791272 6.792029722974995e-05 0.015075824768217177 4.068801311506726e-05 0.0005331982295664425 1.4390440915224047e-06 0.015075824768217177 4.068801311506726e-05 0.019167590979695538 7.917500354928608e-05']
['59866.49123047413 0.034257854071641475 6.79125556776687e-05 0.015010553381421777 4.065002384003134e-05 0.0005308897264884534 1.437700495765417e-06 0.015010553381421777 4.065002384003134e-05 0.019247300690219696 7.91488449496742e-05']
['59866.491262012096 0.03432154099735721 6.799994604143392e-05 0.015008723206538763 4.0642634144997996e-05 0.0005308249972930413 1.4374391387670841e-06 0.015008723206538763 4.0642634144997996e-05 0.019312817790818445 7.922005031481665e-05']
['59866.491293550054 0.03426362613520329 6.795407424926548e-05 0.01501549152938336 4.066311601391806e-05 0.0005310643777457434 1.4381635366965039e-06 0.015015491529383359 4.066311601391806e-05 0.019248134605819932 7.919119402456339e-05']
['59866.49132508802 0.03420021632366226 6.78795281632537e-05 0.01492110607341977 4.0587012683374936e-05 0.0005277261751073906 1.4354719319761271e-06 0.01492110607341977 4.0587012683374936e-05 0.019279110250242492 7.908815298277227e-05']
['59866.491356625986 0.0342975994905298 6.79601548407119e-05 0.015059719052549965 4.067806246321573e-05 0.0005326286063974492 1.4386921592048142e-06 0.015059719052549964 4.067806246321573e-05 0.01923788043797984 7.920408708983911e-05']
['59866.491388163944 0.034329586699338534 6.796818656168892e-05 0.014987771108817358 4.064738515809783e-05 0.0005300839684218178 1.437607171482536e-06 0.01498777110881736 4.064738515809783e-05 0.019341815590521172 7.919522905248335e-05']
['59866.49141970191 0.03424405760271882 6.790182768186963e-05 0.015019773920477698 4.065270101067079e-05 0.0005312158363481692 1.4377951813078103e-06 0.015019773920477696 4.065270101067079e-05 0.019224283682241126 7.914101529549208e-05']
['59866.491451239875 0.03433439285736219 6.800729981430949e-05 0.015019312076651189 4.065118054991188e-05 0.0005311995019641858 1.4377414060087974e-06 0.015019312076651187 4.065118054991188e-05 0.019315080780711008 7.923074723953393e-05']
['59866.491482777834 0.034345686822922245 6.799927399550056e-05 0.015080075940145734 4.0692497105045376e-05 0.0005333485840167454 1.439202680226803e-06 0.015080075940145734 4.0692497105045376e-05 0.01926561088277651 7.924506662600067e-05']
['59866.4915143158 0.034226936404712194 6.789754438363152e-05 0.014999239495990186 4.066327399234689e-05 0.0005304895796457837 1.4381691240404705e-06 0.014999239495990184 4.066327399234689e-05 0.01922769690872201 7.91427721595844e-05']
['59866.49154585376 0.0343301904656741 6.799019376624851e-05 0.015014598617660996 4.066597165053056e-05 0.0005310327974536636 1.4382645341815157e-06 0.015014598617660996 4.066597165053056e-05 0.019315591848013104 7.922365618080103e-05']
['59866.491577391724 0.034172499873059224 6.785498634666526e-05 0.01500870789525575 4.0655981288320406e-05 0.0005308244557671798 1.437911197397288e-06 0.01500870789525575 4.0655981288320406e-05 0.019163791977803477 7.910251567821587e-05']
['59866.49160892969 0.0342740329279391 6.793615502014408e-05 0.015082126158238262 4.068050204803274e-05 0.0005334210956487104 1.4387784418676406e-06 0.015082126158238262 4.068050204803274e-05 0.01919190676970084 7.918474856814944e-05']
['59866.49164046765 0.03427711974467617 6.794932405716883e-05 0.015017629110052022 4.0657440426659526e-05 0.0005311399791967824 1.4379628038593603e-06 0.015017629110052024 4.0657440426659526e-05 0.019259490634624146 7.918420361330606e-05']
['59866.49167200561 0.034224388125923974 6.788370959626056e-05 0.015033597330771463 4.0655506989304254e-05 0.000531704739476756 1.4378944225010826e-06 0.015033597330771463 4.0655506989304254e-05 0.019190790795152513 7.912691247045347e-05']
['59866.49170354358 0.0342264552138089 6.790402228550626e-05 0.015056679427568982 4.066309645246117e-05 0.0005325211016550339 1.4381628448514908e-06 0.01505667942756898 4.066309645246117e-05 0.019169775786239917 7.914823848736428e-05']
['59866.49173508154 0.034207024078877005 6.790278579791436e-05 0.01504269093787016 4.066666611762194e-05 0.0005320263600368211 1.4382890959304951e-06 0.01504269093787016 4.066666611762194e-05 0.019164333141006844 7.914901169464834e-05']
['59866.4917666195 0.0342539999187595 6.78911378010875e-05 0.015042534435667092 4.0682111811966066e-05 0.0005320208249036605 1.4388353756203517e-06 0.015042534435667092 4.0682111811966066e-05 0.019211465483092407 7.91469570697924e-05']
['59866.49179815746 0.034217320084751944 6.789255503952559e-05 0.014988552156779753 4.063080032919087e-05 0.0005301115923427082 1.4370206031490078e-06 0.014988552156779753 4.063080032919087e-05 0.019228767927972193 7.912181093216704e-05']
['59866.49182969543 0.03427540934056157 6.794521923462107e-05 0.014981082848483419 4.0646366350804866e-05 0.0005298474196011884 1.437571138545484e-06 0.014981082848483419 4.0646366350804866e-05 0.019294326492078153 7.917499551224845e-05']
['59866.49186123339 0.03437482857102382 6.800913690533064e-05 0.0149592462118686 4.062707986814378e-05 0.0005290751065661329 1.4368890187565132e-06 0.014959246211868601 4.062707986814378e-05 0.01941558235915522 7.921996163354625e-05']
['59866.49189277135 0.034354874293793525 6.802923464901556e-05 0.015013532318529366 4.0658213626289695e-05 0.0005309950848364161 1.43799015020228e-06 0.015013532318529366 4.0658213626289695e-05 0.01934134197526416 7.925318354622625e-05']
['59866.49192430932 0.034226590181902605 6.789851506038622e-05 0.014972862450568654 4.065249290974445e-05 0.0005295566824984512 1.4377878212431237e-06 0.014972862450568654 4.065249290974445e-05 0.01925372773133395 7.913806623352833e-05']
['59866.49195584728 0.034161556087553724 6.785353220679506e-05 0.014996379222666686 4.0652359875630045e-05 0.0005303884181706663 1.437783116123811e-06 0.014996379222666688 4.0652359875630045e-05 0.019165176864887036 7.909940705464429e-05']
['59866.49198738524 0.03418747742867962 6.789523953926844e-05 0.01506523145778989 4.06918851923407e-05 0.0005328235678512847 1.4391810382419829e-06 0.01506523145778989 4.06918851923407e-05 0.019122245970889733 7.91554993200174e-05']
['59866.49201892321 0.034298697252657134 6.794289621002368e-05 0.014998794980033368 4.065311648932779e-05 0.0005304738581098259 1.4378098758593682e-06 0.01499879498003337 4.065311648932779e-05 0.019299902272623765 7.91764676258098e-05']
['59866.492050461165 0.034198741588418326 6.787025501373822e-05 0.014968846893656964 4.0636436657377786e-05 0.0005294146612247263 1.4372199474805269e-06 0.014968846893656964 4.0636436657377786e-05 0.019229894694761364 7.910557186342145e-05']
['59866.49208199913 0.03423113264367751 6.791541998221173e-05 0.015005392760104852 4.065695588068576e-05 0.0005307072068457836 1.4379456665511649e-06 0.015005392760104853 4.065695588068576e-05 0.019225739883572658 7.915486297659944e-05']
['59866.4921135371 0.03430358159528074 6.795930714472403e-05 0.01499716614748025 4.0626779496488746e-05 0.0005304162499426485 1.4368783952823659e-06 0.01499716614748025 4.0626779496488746e-05 0.01930641544780049 7.917703353780853e-05']
['59866.492145075055 0.034169602781035535 6.785089136080432e-05 0.015026994269783042 4.065684483078351e-05 0.0005314712039665683 1.437941738964304e-06 0.015026994269783042 4.065684483078351e-05 0.019142608511252494 7.909944683782611e-05']
['59866.49217661302 0.03420308149536043 6.786722707198903e-05 0.015030036060164145 4.065685778677596e-05 0.0005315787852943465 1.4379421971888023e-06 0.015030036060164143 4.065685778677596e-05 0.01917304543519629 7.911346658777535e-05']
['59866.49220815099 0.03430894778700458 6.796359998249821e-05 0.015017060970458072 4.0660091819907757e-05 0.0005311198853690616 1.4380565777130353e-06 0.015017060970458074 4.0660091819907757e-05 0.019291886816546505 7.919781555942285e-05']
['59866.492239688945 0.03425863770342373 6.792570853293798e-05 0.015034072784135384 4.066688328408579e-05 0.0005317215551996622 1.4382967766229832e-06 0.015034072784135384 4.066688328408579e-05 0.019224564919288346 7.91687897832416e-05']
['59866.49227122691 0.034145627164016076 6.785732541205795e-05 0.015031897120171339 4.066966334993423e-05 0.0005316446068275766 1.4383951013389608e-06 0.015031897120171339 4.066966334993423e-05 0.019113730043844736 7.911155496559847e-05']
['59866.49230276487 0.034182027003754556 6.786007539119046e-05 0.014964797272782908 4.063131606896952e-05 0.000529271435184781 1.437038843712368e-06 0.01496479727278291 4.063131606896952e-05 0.019217229730971647 7.909420761088989e-05']
['59866.492334302835 0.034233579707665135 6.790651255009561e-05 0.015065480624147138 4.0695479998756436e-05 0.0005328323803084865 1.439308178510988e-06 0.015065480624147136 4.0695479998756436e-05 0.019168099083518 7.916701673705709e-05']
['59866.4923658408 0.034263922956106786 6.791179708167794e-05 0.015052398895827664 4.067304163184382e-05 0.000532369708813769 1.4385145836200873e-06 0.015052398895827665 4.067304163184382e-05 0.019211524060279123 7.916001830753137e-05']
['59866.49239737876 0.03431979782711861 6.79496920937552e-05 0.015063020680467963 4.067809625703068e-05 0.0005327453775982047 1.4386933544165241e-06 0.015063020680467963 4.067809625703068e-05 0.019256777146650646 7.919512719058157e-05']
['59866.492428916725 0.03427209811251797 6.797556866156125e-05 0.014988069615097056 4.063540676939952e-05 0.0005300945259218084 1.4371835226444e-06 0.014988069615097058 4.063540676939952e-05 0.01928402849742091 7.919541791150034e-05']
['59866.49246045469 0.03432394669222825 6.795459087697505e-05 0.01500400536364365 4.064456562416357e-05 0.0005306581377335995 1.4375074508685685e-06 0.015004005363643652 4.064456562416357e-05 0.019319941328584597 7.918211373810376e-05']
['59866.49249199265 0.03427577964301735 6.793441249899875e-05 0.014988819789753876 4.06363328176833e-05 0.0005301210579228783 1.437216274902601e-06 0.014988819789753874 4.06363328176833e-05 0.019286959853263473 7.916057065517935e-05']
['59866.492523530615 0.034354035152628914 6.797290297141496e-05 0.015003830755472984 4.063124249926029e-05 0.0005306519622328293 1.4370362417161713e-06 0.015003830755472982 4.063124249926029e-05 0.019350204397155932 7.919099320879293e-05']
['59866.49255506857 0.03429707186969563 6.79629079120415e-05 0.015105593739228249 4.071106930192805e-05 0.0005342510915413694 1.4398595373241259e-06 0.015105593739228249 4.071106930192805e-05 0.019191478130467385 7.92234057306742e-05']
['59866.49258660654 0.034248396978566575 6.789532412411196e-05 0.014963158335245334 4.062584486974116e-05 0.0005292134696268868 1.4368453396230717e-06 0.014963158335245334 4.062584486974116e-05 0.01928523864332124 7.912164248357396e-05']
['59866.492618144504 0.03422098061301374 6.792744604626195e-05 0.01506874345383746 4.0690797297125814e-05 0.0005329477793026381 1.4391425618195351e-06 0.015068743453837461 4.0690797297125814e-05 0.01915223715917628 7.918256696422268e-05']
['59866.49264968246 0.03437678431692973 6.797619944709197e-05 0.015084862478345546 4.0682214202461576e-05 0.0005335178731755895 1.4388389969433485e-06 0.015084862478345546 4.0682214202461576e-05 0.019291921838584185 7.921998639034087e-05']
['59866.49268122043 0.03428602316309697 6.792579111841414e-05 0.015002080578372339 4.066650566750384e-05 0.0005305900623801951 1.438283421168403e-06 0.01500208057837234 4.066650566750384e-05 0.01928394258472463 7.91686666697599e-05']
['59866.492712758394 0.03420270042554682 6.787748508036229e-05 0.014958195945227853 4.062344815463312e-05 0.0005290379609822574 1.4367605731660434e-06 0.014958195945227851 4.062344815463312e-05 0.01924450448031897 7.910510426519246e-05']
['59866.49274429635 0.034189565926039105 6.784061984605856e-05 0.015007595391061095 4.0658871399967086e-05 0.0005307851089801154 1.4380134141872116e-06 0.015007595391061094 4.0658871399967086e-05 0.019181970534978013 7.909167797320079e-05']
['59866.49277583432 0.034306550396031026 6.795929415590335e-05 0.014967455934116062 4.0629160875603434e-05 0.0005293654660943763 1.4369626193395833e-06 0.014967455934116063 4.0629160875603434e-05 0.019339094461914962 7.917824433279803e-05']
['59866.49280737228 0.034155251809304704 6.78533545628966e-05 0.01497239435170062 4.064136350190658e-05 0.0005295401268876283 1.4373941989606608e-06 0.01497239435170062 4.064136350190658e-05 0.019182857457604084 7.909360374096167e-05']
['59866.49283891024 0.034221737280781914 6.790228683637838e-05 0.014978954342379803 4.064189244438432e-05 0.0005297721390972347 1.4374129064739819e-06 0.014978954342379803 4.064189244438432e-05 0.019242782938402113 7.913585773257726e-05']
['59866.49287044821 0.03421668348716256 6.790677655406049e-05 0.015012892659578017 4.064668566810691e-05 0.0005309724615288606 1.4375824320848253e-06 0.015012892659578017 4.064668566810691e-05 0.01920379082758454 7.914217180343856e-05']
['59866.49290198617 0.03420943701614646 6.790880193461823e-05 0.014976995310509205 4.0646618834063335e-05 0.0005297028525181502 1.4375800683140691e-06 0.014976995310509205 4.0646618834063335e-05 0.019232441705637256 7.914387533370375e-05']
['59866.49293352413 0.03433142457812363 6.798744602217217e-05 0.015119333379164641 4.07006289239565e-05 0.0005347370318996316 1.4394902844881437e-06 0.015119333379164641 4.07006289239565e-05 0.01921209119895899 7.923909395887473e-05']
['59866.4929650621 0.03438476655614775 6.805105303958769e-05 0.015134774876534836 4.07141248696852e-05 0.0005352831631518999 1.4399676059269042e-06 0.015134774876534838 4.07141248696852e-05 0.019249991679612912 7.930060393024189e-05']
['59866.492996600056 0.03414781862953164 6.784777261533333e-05 0.014984257185746946 4.064134124802248e-05 0.0005299596888159731 1.4373934118905149e-06 0.014984257185746945 4.064134124802248e-05 0.019163561443784692 7.908880367852449e-05']
['59866.49302813802 0.034375935687750374 6.803868348091813e-05 0.01496491378758967 4.062930359811689e-05 0.0005292755560531009 1.4369676671159182e-06 0.01496491378758967 4.062930359811689e-05 0.019411021900160703 7.924646844298184e-05']
['59866.49305967598 0.034254362322654275 6.789041481473486e-05 0.015032001293897857 4.064361381306066e-05 0.000531648291219469 1.4374737874370312e-06 0.015032001293897857 4.064361381306066e-05 0.019222361028756418 7.912655538756875e-05']
['59866.493091213946 0.03421095642089242 6.78851181424965e-05 0.015023679812820118 4.0658579069669625e-05 0.0005313539790311651 1.4380030751179102e-06 0.015023679812820118 4.0658579069669625e-05 0.0191872766080723 7.912969933713437e-05']
['59866.49312275191 0.0342784027987225 6.792296118095058e-05 0.015090881823707408 4.068122456058987e-05 0.0005337307639685934 1.4388039955220657e-06 0.015090881823707408 4.068122456058987e-05 0.01918752097501509 7.917380051088909e-05']
['59866.49315428987 0.03431769082373025 6.798105952362889e-05 0.015072369223933338 4.069045884484357e-05 0.00053307601468781 1.4391305915187084e-06 0.01507236922393334 4.069045884484357e-05 0.01924532159979691 7.922839071291984e-05']
['59866.493185827836 0.03437973837632123 6.801630076673111e-05 0.014972374840716363 4.061388011463162e-05 0.0005295394368277196 1.4364221729745011e-06 0.014972374840716363 4.061388011463162e-05 0.01940736353560487 7.921934377382897e-05']
['59866.4932173658 0.0343112240922207 6.796175957122784e-05 0.015030549284202263 4.064970872637833e-05 0.0005315969368815866 1.4376893508997475e-06 0.015030549284202265 4.064970872637833e-05 0.019280674808018435 7.919090593974018e-05']
['59866.49324890376 0.034339006523350916 6.796397001606924e-05 0.015062027034578155 4.0674492925029506e-05 0.0005327102345637501 1.4385659126166157e-06 0.015062027034578155 4.0674492925029506e-05 0.01927697948877276 7.9205527553659e-05']
['59866.493280441726 0.03424025797448455 6.791588617812307e-05 0.015016451772476529 4.064723783425247e-05 0.0005310983393979318 1.4376019609673749e-06 0.015016451772476529 4.064723783425247e-05 0.019223806202008024 7.915027188149168e-05']
['59866.493311979684 0.03439021743107443 6.802881004002096e-05 0.015055956283840745 4.065692626087816e-05 0.0005324955256774973 1.4379446189647664e-06 0.015055956283840745 4.065692626087816e-05 0.019334261147233682 7.92521586358614e-05']
['59866.49334351765 0.03420164674736053 6.792453802164889e-05 0.015009473465665748 4.06606002339124e-05 0.0005308515322816322 1.438074559180141e-06 0.015009473465665746 4.06606002339124e-05 0.019192173281694785 7.916455821159152e-05']
['59866.493375055616 0.03433951861923666 6.798248331088808e-05 0.015061142594172704 4.067532114528048e-05 0.0005326789538832173 1.4385952049159294e-06 0.015061142594172705 4.067532114528048e-05 0.019278376025063958 7.922183908106955e-05']
['59866.493406593574 0.0342594300735969 6.795071373943677e-05 0.014972708846438625 4.064446991973689e-05 0.0005295512498636572 1.4375040660168838e-06 0.014972708846438625 4.064446991973689e-05 0.019286721227158275 7.917873725158338e-05']
['59866.49343813154 0.0342482810943964 6.793730939143411e-05 0.01499931391973228 4.064943056556936e-05 0.0005304922118472144 1.4376795129735873e-06 0.01499931391973228 4.064943056556936e-05 0.01924896717466412 7.916978093093656e-05']
['59866.493469669505 0.0341228392436299 6.782458319919539e-05 0.015010326098615603 4.065578639282583e-05 0.0005308816880035461 1.4379043043792105e-06 0.015010326098615603 4.065578639282583e-05 0.0191125131450143 7.907633687370489e-05']
['59866.493501207464 0.03422662943713825 6.790850638976518e-05 0.014992909351981786 4.064676418624022e-05 0.0005302656965992459 1.4375852090957226e-06 0.014992909351981784 4.064676418624022e-05 0.019233720085156468 7.91436963939681e-05']
['59866.49353274543 0.034223509106587495 6.79233186808612e-05 0.015011009440062412 4.06519519660471e-05 0.0005309058562633415 1.4377686892734867e-06 0.01501100944006241 4.06519519660471e-05 0.019212499666525086 7.915907035376065e-05']
['59866.49356428339 0.03426298222430084 6.79131846816113e-05 0.015023900756888831 4.065877007280389e-05 0.0005313617933290945 1.4380098304719023e-06 0.015023900756888831 4.065877007280389e-05 0.01923908146741201 7.915387695768146e-05']
['59866.493595821354 0.034325900065679135 6.797917024689482e-05 0.015106505010195063 4.06927453315707e-05 0.0005342833211588949 1.43921145944425e-06 0.015106505010195063 4.06927453315707e-05 0.019219395055484072 7.922794399753397e-05']
['59866.49362735932 0.03422326474514446 6.786220497916099e-05 0.01503936013591589 4.065982717670952e-05 0.0005319085570156028 1.4380472178745561e-06 0.015039360135915888 4.065982717670952e-05 0.019183904609228575 7.911068455444908e-05']
['59866.49365889728 0.034301543149984834 6.79441451645926e-05 0.015113583866777006 4.069705601845057e-05 0.0005345336844958849 1.4393639188053728e-06 0.015113583866777006 4.069705601845057e-05 0.01918795928320783 7.920010877969889e-05']
['59866.49369043524 0.03409586085610046 6.779903865594611e-05 0.014976920189952 4.062894775102073e-05 0.0005297001956719264 1.4369550815993984e-06 0.014976920189951998 4.062894775102073e-05 0.019118940666148464 7.904062903359035e-05']
['59866.49372197321 0.034265888676774964 6.790433004798526e-05 0.015061921910499074 4.0685520226368596e-05 0.0005327065165600115 1.4389559236204114e-06 0.015061921910499076 4.0685520226368596e-05 0.019203966766275886 7.916002523594824e-05']
['59866.49375351117 0.03426249882156576 6.795135873672628e-05 0.015056871474959804 4.0655825361628966e-05 0.0005325278939420467 1.4379056826186874e-06 0.015056871474959805 4.0655825361628966e-05 0.019205627346605955 7.918512038257276e-05']
['59866.49378504913 0.03428481299338905 6.794464810609871e-05 0.014990978289576507 4.0633171764736564e-05 0.0005301973992376417 1.4371044755244125e-06 0.014990978289576507 4.0633171764736564e-05 0.019293834703812542 7.916773240357569e-05']
['59866.49381658709 0.034360767292353295 6.797408942726722e-05 0.015073716504560518 4.0677372471018205e-05 0.0005331236649925984 1.4386677557228294e-06 0.015073716504560516 4.0677372471018205e-05 0.01928705078779278 7.92156895104251e-05']
['59866.49384812506 0.03428614897182988 6.795448061839299e-05 0.015073741141647796 4.068991053031701e-05 0.0005331245363513148 1.4391111988593148e-06 0.015073741141647796 4.068991053031701e-05 0.019212407830182087 7.920530446302666e-05']
['59866.49387966302 0.03426056295109854 6.791773673821947e-05 0.015080866001999992 4.0675203290383516e-05 0.0005333765267388462 1.438591036651614e-06 0.015080866001999992 4.0675203290383516e-05 0.01917969694909855 7.91662246564538e-05']
['59866.49391120098 0.03425476320784228 6.79239278633141e-05 0.01509683987993301 4.069202627191205e-05 0.0005339414871018209 1.4391860279111272e-06 0.01509683987993301 4.069202627191205e-05 0.01915792332790927 7.918018046515604e-05']
['59866.49394273895 0.03421844348851028 6.789070632116805e-05 0.015079080268318343 4.07035446394406e-05 0.0005333133693294061 1.4395934068285758e-06 0.015079080268318341 4.07035446394406e-05 0.01913936322019194 7.915760576850478e-05']
['59866.49397427691 0.03424761909188466 6.788245824289605e-05 0.015068447491430596 4.068046382468354e-05 0.0005329373117737443 1.4387770899932034e-06 0.015068447491430595 4.068046382468354e-05 0.019179171600454063 7.913866484904779e-05']
['59866.49400581487 0.0342947952087445 6.795442313986731e-05 0.015101079411015553 4.0703018843105834e-05 0.0005340914298414161 1.4395748105873005e-06 0.015101079411015553 4.0703018843105834e-05 0.019193715797728945 7.921199004705261e-05']
['59866.49403735284 0.034235077903152576 6.790094837751028e-05 0.014954800717193633 4.0638327565615894e-05 0.0005289178793545752 1.4372868246789776e-06 0.014954800717193633 4.0638327565615894e-05 0.01928027718595894 7.913287848862578e-05']
['59866.494068890795 0.03430271137069298 6.79655296926901e-05 0.015041697200090628 4.0680280777177885e-05 0.0005319912137524323 1.4387706160120156e-06 0.015041697200090628 4.0680280777177885e-05 0.019261014170602355 7.920983821797624e-05']
['59866.49410042876 0.034094371868222034 6.777813064439375e-05 0.015039545589862596 4.0691631769114454e-05 0.0005319151161072327 1.4391720752288382e-06 0.015039545589862596 4.0691631769114454e-05 0.019054826278359437 7.905494222173407e-05']
['59866.49413196673 0.03421579541431898 6.791163662484744e-05 0.014982229435035452 4.061647511244998e-05 0.0005298879718050637 1.4365139522478576e-06 0.01498222943503545 4.061647511244998e-05 0.01923356597928353 7.913083115717658e-05']
['59866.494163504685 0.03427478801882836 6.797611587247743e-05 0.014916328341152578 4.059836708862741e-05 0.0005275571973947031 1.435873511914305e-06 0.014916328341152578 4.059836708862741e-05 0.019358459677675785 7.917688892202966e-05']
['59866.49419504265 0.0342009325717102 6.787911690431638e-05 0.01494706367008887 4.060872862932384e-05 0.0005286442372897623 1.4362399764520571e-06 0.014947063670088868 4.060872862932384e-05 0.019253868901621334 7.909894659601931e-05']
['59866.49422658062 0.03422722422960952 6.790933393404773e-05 0.015064023264854757 4.068435561930212e-05 0.0005327808367673214 1.4389147340712136e-06 0.015064023264854757 4.068435561930212e-05 0.01916320096475476 7.916371913650752e-05']
['59866.494258118575 0.034348674200052574 6.799494690507555e-05 0.015156495047075974 4.074693900804244e-05 0.0005360513570422156 1.4411281686653166e-06 0.015156495047075974 4.074693900804244e-05 0.0191921791529766 7.926932472999359e-05']
['59866.49428965654 0.03414468832478217 6.785749726880846e-05 0.014962602413709508 4.0620144095635035e-05 0.0005291938079245762 1.4366437159834184e-06 0.014962602413709508 4.0620144095635035e-05 0.019182085911072663 7.90862569726024e-05']
['59866.4943211945 0.03423806852683731 6.788704663906019e-05 0.015048774014760983 4.066823504875079e-05 0.0005322415048715729 1.438344585518168e-06 0.015048774014760985 4.066823504875079e-05 0.01918929451207633 7.91363155785912e-05']
['59866.494352732465 0.03426312037335238 6.79155104512681e-05 0.015037663148850683 4.066108011430177e-05 0.0005318485383756494 1.4380915314770436e-06 0.015037663148850685 4.066108011430177e-05 0.019225457224501693 7.915705904035328e-05']
['59866.49438427043 0.03424553501195987 6.79493027898863e-05 0.015061099477064521 4.068177663707528e-05 0.0005326774289274619 1.4388235212335365e-06 0.01506109947706452 4.068177663707528e-05 0.01918443553489535 7.919668364256508e-05']
['59866.49441580839 0.03430722185174616 6.797712041803789e-05 0.01509983093601951 4.070035993365815e-05 0.0005340472740709835 1.4394807709024489e-06 0.01509983093601951 4.070035993365815e-05 0.01920739091572665 7.923009654833035e-05']
['59866.494447346355 0.03435683909347705 6.798080845415094e-05 0.015113638360266714 4.0715872828783796e-05 0.0005345356118088301 1.4400294273337628e-06 0.015113638360266714 4.0715872828783796e-05 0.019243200733210338 7.924123054502405e-05']
['59866.49447888432 0.03427227216076346 6.792416071965161e-05 0.01500072758934578 4.064316996826884e-05 0.0005305422101820783 1.4374580896386793e-06 0.015000727589345782 4.064316996826884e-05 0.019271544571417675 7.915528330148692e-05']
['59866.49451042228 0.03428732109156017 6.79631324033994e-05 0.01512156332894962 4.070109001660489e-05 0.0005348159002398819 1.4395065923046357e-06 0.015121563328949622 4.070109001660489e-05 0.01916575776261055 7.921847066575934e-05']
['59866.494541960245 0.03417194394597874 6.783734533037005e-05 0.014956739515310824 4.0624925749846006e-05 0.0005289864503110214 1.436812832406492e-06 0.014956739515310822 4.0624925749846006e-05 0.01921520443066792 7.907142349580144e-05']
['59866.4945734982 0.034305118663722385 6.795106533040764e-05 0.015090424268541078 4.068170081002229e-05 0.0005337145812649359 1.4388208394001356e-06 0.015090424268541078 4.068170081002229e-05 0.01921469439518131 7.919815692510461e-05']
['59866.49460503617 0.034147635283405815 6.787035440543379e-05 0.015009741265882063 4.06397017100967e-05 0.0005308610037767851 1.4373354250982315e-06 0.015009741265882063 4.06397017100967e-05 0.019137894017523752 7.910733444001778e-05']
['59866.494636574134 0.034318276575516275 6.800399874410369e-05 0.01508965226239487 4.069272344557971e-05 0.0005336872771328768 1.439210685385661e-06 0.015089652262394872 4.069272344557971e-05 0.019228624313121404 7.924923713580143e-05']
['59866.49466811209 0.03429584818145713 6.795764095266947e-05 0.015071831495952648 4.067523436168739e-05 0.0005330569964508843 1.4385921355741918e-06 0.015071831495952648 4.067523436168739e-05 0.019224016685504483 7.92004776136491e-05']
['59866.49469965006 0.034258872068535534 6.792829333416199e-05 0.014994898302134534 4.064166223611889e-05 0.0005303360413211067 1.4374047645221186e-06 0.014994898302134534 4.064166223611889e-05 0.019263973766401002 7.915805546251581e-05']
['59866.494731188024 0.03433759548142589 6.797842806595865e-05 0.015123744676905549 4.071845781653868e-05 0.0005348930496420572 1.4401208525735455e-06 0.015123744676905547 4.071845781653868e-05 0.019213850804520344 7.924051671509944e-05']
['59866.49476272598 0.03420616278040736 6.788026834023e-05 0.015013660097907437 4.065971424720876e-05 0.0005309996041074484 1.438043223810497e-06 0.015013660097907435 4.065971424720876e-05 0.019192502682499925 7.912612206222608e-05']
['59866.49479426395 0.03431040457037675 6.797362505153423e-05 0.014965584063681838 4.064690822124416e-05 0.0005292992622205019 1.4375903032919126e-06 0.014965584063681838 4.064690822124416e-05 0.01934482050669491 7.919965183378528e-05']
['59866.49482580191 0.03424483352931407 6.78962459530825e-05 0.015080803861403834 4.070940836621136e-05 0.0005333743289648361 1.4398007937397994e-06 0.015080803861403834 4.070940836621136e-05 0.019164029667910233 7.916537212726554e-05']
['59866.49485733987 0.03434948552526431 6.800420347138267e-05 0.014965915118004332 4.0624532146069874e-05 0.0005293109708720256 1.436798911520583e-06 0.01496591511800433 4.0624532146069874e-05 0.01938357040725998 7.921441978493739e-05']
['59866.49488887784 0.03431112337583685 6.794994482043249e-05 0.015102478001661302 4.069268518243243e-05 0.0005341408948668902 1.4392093321036547e-06 0.015102478001661304 4.069268518243243e-05 0.01920864537417554 7.920283851262135e-05']
['59866.4949204158 0.03435734163628021 6.79982611318635e-05 0.015053162351936138 4.0675498204189315e-05 0.0005323967105501017 1.4386014670938316e-06 0.015053162351936138 4.0675498204189315e-05 0.01930417928434407 7.923546977910907e-05']
['59866.49495195376 0.034238376802888236 6.789049747085207e-05 0.015015134111061392 4.0646248875641385e-05 0.0005310517366584783 1.4375669837114933e-06 0.015015134111061392 4.0646248875641385e-05 0.019223242691826844 7.912797984594546e-05']
['59866.49498349173 0.034223912867803824 6.787728940870376e-05 0.015014273692480363 4.065601993224657e-05 0.0005310213055761897 1.4379125641465925e-06 0.015014273692480363 4.065601993224657e-05 0.01920963917532346 7.912166817126746e-05']
['59866.495015029686 0.034235896569763634 6.792508496220455e-05 0.015042233270218253 4.066059972733425e-05 0.0005320101733548002 1.438074541263604e-06 0.015042233270218254 4.066059972733425e-05 0.01919366329954538 7.916502723620575e-05']
['59866.49504656765 0.03426549331028021 6.794777721442157e-05 0.014956232443479028 4.062674010307148e-05 0.0005289685163135697 1.4368770020252365e-06 0.01495623244347903 4.062674010307148e-05 0.01930926086680118 7.916711716226114e-05']
['59866.49507810561 0.034313261233795946 6.795836035097999e-05 0.015014446411314573 4.066661360591519e-05 0.0005310274142553518 1.4382872387087842e-06 0.015014446411314573 4.066661360591519e-05 0.019298814822481372 7.919666788297633e-05']
['59866.495109643576 0.034257302119849925 6.792039227258921e-05 0.015057793332309612 4.0659144080145836e-05 0.0005325604979762794 1.4380230582757298e-06 0.015057793332309612 4.0659144080145836e-05 0.019199508787540315 7.916025318171016e-05']
['59866.49514118154 0.034278560526348645 6.79336557102783e-05 0.01504718734860874 4.0665658851968735e-05 0.000532185388035758 1.4382534711954475e-06 0.015047187348608737 4.0665658851968735e-05 0.01923137317773991 7.917497955811122e-05']
['59866.4951727195 0.03416969258945523 6.786618780483594e-05 0.014953578398656117 4.061174728082797e-05 0.0005288746486796244 1.4363467394094692e-06 0.014953578398656117 4.061174728082797e-05 0.019216114190799112 7.908940171959262e-05']
['59866.495204257466 0.034293915618010706 6.79300651463831e-05 0.01505011682860099 4.0680316613930884e-05 0.0005322889971960816 1.4387718834778787e-06 0.01505011682860099 4.0680316613930884e-05 0.019243798789409718 7.917942858218612e-05']
['59866.49523579543 0.034303151496207 6.793717909863043e-05 0.014968499424069647 4.0637692554916536e-05 0.0005294023720019718 1.4372643657697067e-06 0.014968499424069647 4.0637692554916536e-05 0.019334652072137356 7.916364291811808e-05']
['59866.49526733339 0.034251409672584665 6.790713854110036e-05 0.015043835205144357 4.066737543674582e-05 0.0005320668302130227 1.4383141829626718e-06 0.015043835205144358 4.066737543674582e-05 0.019207574467440307 7.915311042374416e-05']
['59866.495298871356 0.03424408509067398 6.791277952289907e-05 0.015012875099376398 4.0657543667014945e-05 0.0005309718404637741 1.437966455240003e-06 0.015012875099376398 4.0657543667014945e-05 0.019231209991297585 7.915289937558273e-05']
['59866.495330409314 0.034263105912956185 6.792002004797641e-05 0.015003224129230797 4.064853554458096e-05 0.000530630507218373 1.4376478580814818e-06 0.015003224129230797 4.064853554458096e-05 0.01925988178372539 7.915448543978148e-05']
['59866.49536194728 0.03429349153738524 6.795933656703232e-05 0.015104428821537381 4.069841414086073e-05 0.0005342098910060813 1.439411952559795e-06 0.015104428821537383 4.069841414086073e-05 0.01918906271584786 7.921383932250847e-05']
['59866.495393485246 0.03429245155172843 6.792495282305502e-05 0.014997299473144862 4.0632623423211756e-05 0.0005304209653734406 1.4370850819101513e-06 0.014997299473144862 4.0632623423211756e-05 0.019295152078583566 7.915054833838353e-05']
['59866.495425023204 0.03432936694382223 6.797087858457471e-05 0.015066523121878905 4.068198344652638e-05 0.0005328692511234139 1.43883083562163e-06 0.015066523121878905 4.068198344652638e-05 0.019262843821943324 7.921530226353014e-05']
['59866.49545656117 0.034267553043447585 6.791368637792337e-05 0.014943001243101038 4.061721615294541e-05 0.0005285005583261927 1.4365401611940532e-06 0.014943001243101038 4.061721615294541e-05 0.01932455180034655 7.913297065985848e-05']
['59866.495488099135 0.03423403323210229 6.791517656451419e-05 0.015057464296987446 4.067686832320232e-05 0.0005325488607322851 1.4386499251412855e-06 0.015057464296987448 4.067686832320232e-05 0.019176568935114845 7.916488378297714e-05']
['59866.495519637094 0.034240559328945215 6.792690674743832e-05 0.014977458578980802 4.064215190471195e-05 0.0005297192372886465 1.4374220830059103e-06 0.014977458578980803 4.064215190471195e-05 0.019263100749964412 7.915711699980529e-05']
['59866.49555117506 0.03428058305720719 6.794497049676941e-05 0.015005105591526366 4.065045776287549e-05 0.0005306970503349465 1.4377158426466543e-06 0.015005105591526366 4.065045776287549e-05 0.01927547746568082 7.917688256137766e-05']
['59866.49558271302 0.034238638188282856 6.789667149981441e-05 0.015004435951148058 4.064673238092738e-05 0.000530673366651324 1.437584084212888e-06 0.015004435951148058 4.064673238092738e-05 0.019234202237134797 7.913352547435532e-05']
['59866.49561425098 0.03420865154132304 6.788634768056506e-05 0.01500055647959677 4.064445961614088e-05 0.0005305361584126635 1.4375037016017201e-06 0.015000556479596769 4.064445961614088e-05 0.01920809506172627 7.912350029475863e-05']
['59866.49564578895 0.03421323705324165 6.788180304673785e-05 0.015084455444566495 4.0683625437211546e-05 0.0005335034773004914 1.438888909162531e-06 0.015084455444566495 4.0683625437211546e-05 0.019128781608675153 7.913972809904918e-05']
['59866.49567732691 0.034219802515696576 6.79095638429003e-05 0.01500893127419434 4.0655123792518164e-05 0.0005308323561810152 1.4378808696871531e-06 0.01500893127419434 4.0655123792518164e-05 0.019210871241502236 7.914889735124506e-05']
['59866.49570886487 0.034258350947263476 6.79134954516924e-05 0.015082281975460564 4.06812598142579e-05 0.0005334266065556323 1.4388052423655168e-06 0.015082281975460566 4.06812598142579e-05 0.01917606897180291 7.916569815609662e-05']
['59866.49574040284 0.034281813163638576 6.797095984811419e-05 0.015082008835664249 4.068948697491524e-05 0.000533416946211468 1.439096218651345e-06 0.015082008835664247 4.068948697491524e-05 0.01919980432797433 7.92192257785681e-05']
['59866.4957719408 0.03427512742937046 6.793677070769814e-05 0.015043246360399748 4.066995391585283e-05 0.0005320460040903963 1.4384053780061252e-06 0.015043246360399746 4.066995391585283e-05 0.01923188106897071 7.917985833346726e-05']
['59866.49580347876 0.034402206169758795 6.800792257656006e-05 0.015071742191244566 4.068483596572064e-05 0.0005330538379429438 1.4389317228505257e-06 0.015071742191244566 4.068483596572064e-05 0.019330463978514227 7.924855462869328e-05']
['59866.49583501672 0.03424757404697872 6.793606578199335e-05 0.015027029311772024 4.065399560084591e-05 0.0005314724433234044 1.4378409680690656e-06 0.015027029311772026 4.065399560084591e-05 0.019220544735206697 7.917105779417707e-05']
['59866.49586655469 0.034250284002263626 6.791800829044015e-05 0.015049640353446563 4.067567020150574e-05 0.0005322721453347288 1.4386075502545221e-06 0.015049640353446565 4.067567020150574e-05 0.01920064364881706 7.916669752163443e-05']
['59866.49589809265 0.03418638635122127 6.787621475091324e-05 0.01501184338768281 4.063509690571033e-05 0.0005309353511269118 1.4371725634582178e-06 0.01501184338768281 4.063509690571033e-05 0.019174542963538464 7.910999702596735e-05']
['59866.49592963061 0.03434695550976913 6.797108336510647e-05 0.015109765648703088 4.069506589836112e-05 0.0005343986426558256 1.4392935327054655e-06 0.01510976564870309 4.069506589836112e-05 0.01923718986106604 7.9222197408922e-05']
['59866.49596116858 0.0343391553507495 6.795862472475374e-05 0.01507006625372676 4.067068234405368e-05 0.0005329945637784388 1.438431140883648e-06 0.015070066253726758 4.067068234405368e-05 0.019269089097022744 7.919898406425949e-05']
['59866.49599270654 0.03439322381140194 6.806133566655371e-05 0.015083507274740678 4.0685385347621936e-05 0.0005334699426527871 1.438951153260578e-06 0.015083507274740676 4.0685385347621936e-05 0.01930971653666126 7.929467821739228e-05']
['59866.4960242445 0.034301273539366926 6.793344704320356e-05 0.015073484548970827 4.067942122906697e-05 0.0005331154612417812 1.4387402157163095e-06 0.015073484548970825 4.067942122906697e-05 0.0192277889903961 7.918187001267151e-05']
['59866.49605578247 0.034278528635621516 6.795643022448677e-05 0.015088340525990113 4.068754432028661e-05 0.0005336408839477988 1.4390275112987077e-06 0.015088340525990113 4.068754432028661e-05 0.019190188109631405 7.92057616065323e-05']
['59866.496087320425 0.03421458699137078 6.790483186608722e-05 0.015047251547534168 4.068042815180439e-05 0.0005321876586082744 1.4387758283231923e-06 0.01504725154753417 4.068042815180439e-05 0.019167335443836614 7.91578386856014e-05']
['59866.49611885839 0.03423437590424195 6.792204557507334e-05 0.014979383956247004 4.0647950320081876e-05 0.0005297873335795871 1.437627159998849e-06 0.014979383956247004 4.0647950320081876e-05 0.019254991947994946 7.915592296427467e-05']
['59866.49615039636 0.03422615608015446 6.790863708894066e-05 0.015020118299180816 4.065268651764378e-05 0.0005312280162532574 1.4377946687218349e-06 0.015020118299180815 4.065268651764378e-05 0.019206037780973646 7.914685029980197e-05']
['59866.496181934315 0.034132573176169745 6.779624534289928e-05 0.014985024216745867 4.0643773692706456e-05 0.0005299868169881916 1.4374794420227932e-06 0.014985024216745867 4.0643773692706456e-05 0.019147548959423877 7.904585518911494e-05']
['59866.49621347228 0.03429726323034531 6.798057023363324e-05 0.015020575185769526 4.064497060298283e-05 0.0005312441753108188 1.4375217740643315e-06 0.015020575185769528 4.064497060298283e-05 0.01927668804457578 7.920461832877728e-05']
['59866.49624501025 0.03422561553945217 6.789139506078032e-05 0.015088346810449658 4.068741011907358e-05 0.000533641106215088 1.439022764901725e-06 0.015088346810449658 4.068741011907358e-05 0.019137268729002514 7.914990123491398e-05']
['59866.496276548205 0.03417616379079629 6.785305482430818e-05 0.015016476268572268 4.065755418905518e-05 0.0005310992057700925 1.4379668273810508e-06 0.01501647626857227 4.065755418905518e-05 0.019159687522224023 7.910166724934772e-05']
['59866.49630808617 0.034236766932030524 6.789549338943017e-05 0.015075358436761421 4.0686644094526524e-05 0.0005331817364650418 1.4389956723254596e-06 0.015075358436761421 4.0686644094526524e-05 0.0191614084952691 7.91530228751172e-05']
['59866.49633962413 0.03432056595520532 6.799114738416557e-05 0.014983872641891952 4.0644683958522345e-05 0.0005299460883592269 1.4375116360903768e-06 0.014983872641891953 4.0644683958522345e-05 0.01933669331331337 7.921354970397102e-05']
['59866.496371162095 0.034232819884189816 6.790548976850187e-05 0.014967372232705506 4.062383904978505e-05 0.0005293625057625466 1.4367743982539678e-06 0.014967372232705507 4.062383904978505e-05 0.01926544765148431 7.91293361519162e-05']
['59866.49640270006 0.034266557953153864 6.793895233663067e-05 0.014982373781947613 4.063962454399793e-05 0.0005298930770327504 1.4373326959057742e-06 0.014982373781947611 4.063962454399793e-05 0.019284184171206253 7.916615645385402e-05']
['59866.49643423802 0.03433408486091299 6.795390950265355e-05 0.015097979728409351 4.069337796106989e-05 0.0005339818009950177 1.4392338341357926e-06 0.015097979728409351 4.069337796106989e-05 0.019236105132503636 7.920659585272755e-05']
['59866.496465775985 0.03426172893431127 6.792688079144701e-05 0.015013212084685363 4.0664446544593514e-05 0.0005309837588810342 1.4382105945929336e-06 0.015013212084685361 4.0664446544593514e-05 0.01924851684962591 7.916854392265628e-05']
['59866.49649731395 0.034342158235277614 6.79685721481677e-05 0.015052262059429437 4.0673308925466203e-05 0.000532364869216175 1.438524037198145e-06 0.015052262059429436 4.0673308925466203e-05 0.019289896175848177 7.920886856158902e-05']
['59866.49652885191 0.03429170686965284 6.797268652670305e-05 0.015014132355636443 4.06598920643405e-05 0.0005310163068078895 1.4380495128050488e-06 0.015014132355636443 4.06598920643405e-05 0.019277574514016398 7.920551077002949e-05']
['59866.496560389875 0.03437884327181656 6.79869949895747e-05 0.015105134842773855 4.069019501728921e-05 0.0005342348613993508 1.4391212605277305e-06 0.015105134842773857 4.069019501728921e-05 0.019273708429042705 7.923334814494136e-05']
['59866.49659192783 0.03430149360114175 6.793140712944101e-05 0.015128422243636815 4.070623481121269e-05 0.0005350584847235957 1.4396885521919744e-06 0.015128422243636815 4.070623481121269e-05 0.019173071357504935 7.919389892593653e-05']
['59866.4966234658 0.034349871948775874 6.797250510335201e-05 0.015094164313628228 4.0672796994130536e-05 0.0005338468583011596 1.4385059313309016e-06 0.015094164313628228 4.0672796994130536e-05 0.019255707635147647 7.921198056702642e-05']
['59866.496655003764 0.0341030073825843 6.78297837278668e-05 0.015012195815693729 4.065990280448962e-05 0.0005309478157180277 1.4380498926601203e-06 0.015012195815693727 4.065990280448962e-05 0.019090811566890575 7.908291380974608e-05']
['59866.49668654172 0.034392444989132034 6.804170093316667e-05 0.015090229022398382 4.0683296725782844e-05 0.0005337076758452182 1.4388772833739246e-06 0.015090229022398382 4.0683296725782844e-05 0.019302215966733653 7.927675383336901e-05']
['59866.49671807969 0.03429034872167458 6.793546952682326e-05 0.015015654689923521 4.066631366640384e-05 0.0005310701483694065 1.438276630518593e-06 0.015015654689923521 4.066631366640384e-05 0.01927469403175106 7.917687217265074e-05']
['59866.49674961765 0.03413148669766966 6.782621775484066e-05 0.015007487211270073 4.064520430463083e-05 0.0005307812829026745 1.4375300395693288e-06 0.01500748721127007 4.064520430463083e-05 0.01912399948639959 7.907229886560933e-05']
['59866.49678115561 0.03410309421463454 6.780956822744492e-05 0.015012686703590152 4.065185015294844e-05 0.0005309651773258543 1.4377650883717257e-06 0.01501268670359015 4.065185015294844e-05 0.01909040751104439 7.906143474571077e-05']
['59866.49681269358 0.03421611465340283 6.791114497622926e-05 0.015000565178947312 4.0649610957954844e-05 0.0005305364660892503 1.4376858930491086e-06 0.015000565178947312 4.0649610957954844e-05 0.01921554947445552 7.914742246602545e-05']
['59866.49684423154 0.034269714069521034 6.793786619101911e-05 0.015087238210302889 4.067913127400537e-05 0.0005336018975054723 1.4387299606537923e-06 0.015087238210302889 4.067913127400537e-05 0.019182475859218145 7.91855124615392e-05']
['59866.4968757695 0.0343500755670125 6.798974351330372e-05 0.015066732424295534 4.0673434364253985e-05 0.0005328766536821267 1.4385284736877297e-06 0.015066732424295536 4.0673434364253985e-05 0.019283343142716965 7.922710070416626e-05']
['59866.49690730747 0.034247964085448564 6.791654582508354e-05 0.014996797526119866 4.065098823514315e-05 0.000530403212628952 1.4377346042652257e-06 0.014996797526119866 4.065098823514315e-05 0.019251166559328698 7.915276395240042e-05']
['59866.49693884543 0.03431106602124959 6.796129963585325e-05 0.015035471899559762 4.0675403856206634e-05 0.0005317710387853834 1.4385981302165394e-06 0.015035471899559762 4.0675403856206634e-05 0.019275594121689825 7.920370399835943e-05']
['59866.49697038339 0.03437827596022861 6.802258054457215e-05 0.015056248341300774 4.0662121856541084e-05 0.0005325058550971485 1.4381283755718912e-06 0.015056248341300775 4.0662121856541084e-05 0.019322027618927838 7.924947708230637e-05']
['59866.49700192135 0.034212123584077485 6.79147562042878e-05 0.015007042897185865 4.0658259869174136e-05 0.0005307655685064997 1.437991785709756e-06 0.015007042897185865 4.0658259869174136e-05 0.01920508068689162 7.915496324221965e-05']
['59866.497033459316 0.034234686011764534 6.791544037194868e-05 0.015018358857543096 4.067228592434237e-05 0.0005311657887346519 1.438487855934668e-06 0.015018358857543095 4.067228592434237e-05 0.01921632715422144 7.91627556571092e-05']
['59866.49706499728 0.03425751209974781 6.794229113589006e-05 0.015046283530435781 4.066466712230421e-05 0.0005321534220068953 1.4382183959335988e-06 0.015046283530435781 4.066466712230421e-05 0.019211228569312032 7.918187972612077e-05']
['59866.49709653524 0.03430633032217446 6.7984274588812e-05 0.015001357745765238 4.064987395389896e-05 0.0005305644974063177 1.4376951946278906e-06 0.015001357745765238 4.064987395389896e-05 0.01930497257640922 7.921031399909271e-05']
['59866.497128073206 0.03431161937725191 6.795434810062178e-05 0.015162563215005982 4.073057187199053e-05 0.0005362659745803428 1.4405492996415567e-06 0.015162563215005982 4.073057187199053e-05 0.01914905616224593 7.922608731219701e-05']
['59866.49715961117 0.03433498819207767 6.798288361809124e-05 0.015017278799730506 4.066730358439358e-05 0.0005311275895036078 1.4383116417055537e-06 0.015017278799730506 4.066730358439358e-05 0.019317709392347164 7.921806641073847e-05']
['59866.49719114913 0.034202903534915265 6.786533919692526e-05 0.015030640562744967 4.065296561608779e-05 0.0005316001651996464 1.4378045398100511e-06 0.015030640562744967 4.065296561608779e-05 0.019172262972170298 7.910984690730059e-05']
['59866.497222687096 0.03428917519936635 6.795462326904683e-05 0.015047998674076904 4.0661682682702065e-05 0.0005322140828043614 1.4381128429747008e-06 0.015047998674076904 4.0661682682702065e-05 0.019241176525289443 7.919092916633088e-05']
['59866.497254225054 0.03419147738168264 6.78610097978512e-05 0.015075726268018784 4.0698299160457477e-05 0.0005331947458345603 1.4394078859598982e-06 0.015075726268018784 4.0698299160457477e-05 0.019115751113663856 7.912943956163313e-05']
['59866.49728576302 0.034219234277571745 6.791492668474892e-05 0.015055696679127345 4.068482539513786e-05 0.0005324863440389667 1.4389313489926365e-06 0.015055696679127343 4.068482539513786e-05 0.0191635375984444 7.916875825745705e-05']
['59866.497317300986 0.03429614870823186 6.794926681567579e-05 0.015045592940390802 4.0661494839818e-05 0.0005321289973803823 1.4381061993916955e-06 0.0150455929403908 4.0661494839818e-05 0.01925055576784106 7.918623632549059e-05']
['59866.497348838944 0.034301438978865804 6.797679360583177e-05 0.015109160855980311 4.0700399846111855e-05 0.0005343772524888531 1.4394821825167374e-06 0.015109160855980311 4.0700399846111855e-05 0.019192278122885494 7.922983665616908e-05']
['59866.49738037691 0.034335152259304155 6.800648406891233e-05 0.015042420389705284 4.06672440157095e-05 0.000532016791352869 1.438309534894326e-06 0.015042420389705284 4.06672440157095e-05 0.019292731869598873 7.923829005757562e-05']
['59866.497411914876 0.03427496333262079 6.796031685562982e-05 0.014985488992416399 4.064655530194428e-05 0.0005300032550649458 1.4375778213250043e-06 0.014985488992416397 4.064655530194428e-05 0.019289474340204393 7.918804913010308e-05']
['59866.497443452834 0.03421325033030757 6.789871619501298e-05 0.014996811625240683 4.064207179362063e-05 0.0005304037112833456 1.437419249655648e-06 0.014996811625240683 4.064207179362063e-05 0.019216438705066882 7.913288608795166e-05']
['59866.4974749908 0.03433278879709079 6.799365059828331e-05 0.014965940080874606 4.06345520856648e-05 0.0005293118537529586 1.4371532943908085e-06 0.014965940080874608 4.06345520856648e-05 0.019366848716216183 7.921050021862024e-05']
['59866.49750652876 0.03435940035767995 6.798826417136362e-05 0.015043476842993697 4.064855279399524e-05 0.000532054155744646 1.4376484681547147e-06 0.015043476842993696 4.064855279399524e-05 0.019315923514686258 7.921306021914154e-05']
['59866.497538066724 0.03429768149165747 6.795493149472762e-05 0.015005108741159357 4.0650426500943034e-05 0.0005306971617304265 1.4377147369819696e-06 0.01500510874115936 4.0650426500943034e-05 0.01929257275049811 7.91854146239173e-05']
['59866.49756960469 0.03425631622982651 6.794199224874127e-05 0.015057593818962704 4.067696402651837e-05 0.0005325534416350853 1.43865330995369e-06 0.015057593818962703 4.067696402651837e-05 0.019198722410863803 7.918793918989614e-05']
['59866.49760114265 0.03418104784053775 6.786966477286335e-05 0.015043198711700739 4.067420017403962e-05 0.000532044318862401 1.4385555586683634e-06 0.015043198711700739 4.067420017403962e-05 0.01913784912883701 7.912447128530272e-05']
['59866.49763268061 0.034341632512434536 6.801458328257615e-05 0.015069987796629292 4.068244408088652e-05 0.0005329917889262427 1.4388471272294907e-06 0.015069987796629292 4.068244408088652e-05 0.019271644715805246 7.925304281538308e-05']
['59866.49766421858 0.03425352062594582 6.792789243348032e-05 0.015020136921585494 4.065657722465757e-05 0.0005312286748860923 1.4379322743336941e-06 0.015020136921585495 4.065657722465757e-05 0.019233383704360323 7.916537022005908e-05']
['59866.49769575654 0.034214442228890356 6.788542873905253e-05 0.015030249165319257 4.066684361187525e-05 0.0005315863223474209 1.4382953735055583e-06 0.015030249165319259 4.066684361187525e-05 0.019184193063571095 7.913421260389021e-05']
['59866.4977272945 0.034224175798188455 6.790252076499218e-05 0.014909903359114107 4.060935258330094e-05 0.0005273299601389922 1.4362620443097719e-06 0.014909903359114107 4.060935258330094e-05 0.019314272439074347 7.911935188988244e-05']
['59866.49775883246 0.03426159590833054 6.792470131046799e-05 0.015040512275215601 4.0675646629867455e-05 0.0005319493056077538 1.4386067165783555e-06 0.015040512275215601 4.0675646629867455e-05 0.019221083633114942 7.917242750398739e-05']
['59866.49779037043 0.034297957096584925 6.795003020343838e-05 0.015027240854477337 4.066465734294042e-05 0.0005314799251161211 1.438218050059357e-06 0.015027240854477337 4.066465734294042e-05 0.019270716242107588 7.918851533819122e-05']
['59866.49782190839 0.0343778824715422 6.801283872082632e-05 0.015088617185718821 4.069220966139352e-05 0.0005336506687841051 1.4391925139872355e-06 0.015088617185718821 4.069220966139352e-05 0.01928926528582338 7.92565590849864e-05']
['59866.49785344635 0.03419892435707051 6.789071973523144e-05 0.015065747045314227 4.0696126957552975e-05 0.0005328418030297503 1.4393310599977538e-06 0.015065747045314227 4.0696126957552975e-05 0.01913317731175628 7.915380329152235e-05']
['59866.49788498432 0.03418615550640895 6.786389085730254e-05 0.015018797951236484 4.0668950540661296e-05 0.0005311813184972705 1.4383698908680122e-06 0.015018797951236486 4.0668950540661296e-05 0.019167357555172466 7.911682008505288e-05']
['59866.49791652228 0.03430613242299231 6.795149177029419e-05 0.015004867509434645 4.066145456482405e-05 0.0005306886299034445 1.4381047749551688e-06 0.015004867509434644 4.066145456482405e-05 0.019301264913557666 7.918812487447604e-05']
['59866.49794806024 0.034304569998351665 6.79938316257437e-05 0.015048037782658258 4.069184050993894e-05 0.0005322154659874813 1.4391794579252918e-06 0.015048037782658256 4.069184050993894e-05 0.019256532215693407 7.924005946007545e-05']
['59866.49797959821 0.03423265396657907 6.792626314716737e-05 0.015006327681341287 4.0659350433307106e-05 0.0005307402729204903 1.4380303565258718e-06 0.015006327681341287 4.0659350433307106e-05 0.01922632628523778 7.9165396498702e-05']
['59866.498011136166 0.034309402044813225 6.795787667240066e-05 0.015100498547538758 4.0688894201438475e-05 0.0005340708859983954 1.4390752535782423e-06 0.015100498547538758 4.0688894201438475e-05 0.019208903497274468 7.920769604752478e-05']
['59866.49804267413 0.0343042565459705 6.797084724608692e-05 0.015069044686229133 4.069456114125405e-05 0.0005329584332191168 1.439275680574654e-06 0.015069044686229133 4.069456114125405e-05 0.01923521185974137 7.922173553911922e-05']
['59866.4980742121 0.0343801818492739 6.800057157997271e-05 0.015047512840849191 4.066886233784857e-05 0.0005321968999688706 1.4383667713316478e-06 0.015047512840849191 4.066886233784857e-05 0.019332669008424706 7.923404633778254e-05']
['59866.498105750055 0.03426671832749023 6.791864840505424e-05 0.01505620725122291 4.067716311193254e-05 0.0005325044018329254 1.4386603511598596e-06 0.015056207251222909 4.067716311193254e-05 0.019210511076267322 7.91680137429514e-05']
['59866.49813728802 0.03429679395131827 6.797168036666277e-05 0.015010750186836862 4.066191413820813e-05 0.0005308966870561507 1.4381210290386778e-06 0.015010750186836862 4.066191413820813e-05 0.01928604376448141 7.920568535939058e-05']
['59866.49816882599 0.03424308913075792 6.792666146821923e-05 0.014988832625944915 4.0641708879013025e-05 0.0005301215119102682 1.4374064141770434e-06 0.014988832625944915 4.0641708879013025e-05 0.019254256504813008 7.915667905378866e-05']
['59866.498200363945 0.03434927324323866 6.800843714647191e-05 0.015102415297924315 4.07038116043133e-05 0.0005341386771758475 1.4396028487794917e-06 0.015102415297924313 4.07038116043133e-05 0.019246857945314347 7.92587395952336e-05']
['59866.49823190191 0.03423154946198715 6.788562479250165e-05 0.015014033697979386 4.067708048156351e-05 0.0005310128175070462 1.438657428708375e-06 0.015014033697979384 4.067708048156351e-05 0.019217515764007764 7.913964196262142e-05']
['59866.49826343987 0.034216813266710965 6.790358030132535e-05 0.015036845038539866 4.066634597481859e-05 0.0005318196036423247 1.4382777731950177e-06 0.015036845038539866 4.066634597481859e-05 0.0191799682281711 7.914952882160566e-05']
['59866.498294977835 0.034255342964735945 6.794065751081662e-05 0.015048810798074125 4.0675153608633e-05 0.0005322428058151528 1.4385892795191305e-06 0.015048810798074127 4.0675153608633e-05 0.019206532166661818 7.918586404206229e-05']
['59866.4983265158 0.034378423912766236 6.802467831727207e-05 0.015051508516789871 4.0680423796796935e-05 0.0005323382180970822 1.4387756742963113e-06 0.015051508516789871 4.0680423796796935e-05 0.019326915395976363 7.926066956855302e-05']
['59866.49835805376 0.03438824068230928 6.801427896945954e-05 0.015104240810034822 4.0707932750951416e-05 0.0005342032414594167 1.4397486045258612e-06 0.015104240810034822 4.0707932750951416e-05 0.019283999872274457 7.926586864843815e-05']
['59866.498389591725 0.03423169302619163 6.791825811394357e-05 0.014953890745131366 4.061525588694448e-05 0.0005288856956764007 1.436470830966537e-06 0.014953890745131367 4.061525588694448e-05 0.019277802281060265 7.91358881670904e-05']
['59866.49842112969 0.034270334324227235 6.793536204664626e-05 0.015118269469837308 4.072465681325182e-05 0.0005346994038044212 1.440340097233347e-06 0.015118269469837308 4.072465681325182e-05 0.019152064854389927 7.920676163665602e-05']
['59866.49845266765 0.03429183768618336 6.796631952452848e-05 0.015001505104153302 4.065216123875018e-05 0.000530569709143177 1.4377760907812974e-06 0.015001505104153302 4.065216123875018e-05 0.019290332582030056 7.919607820524728e-05']
['59866.498484205615 0.034220743769786933 6.790520450907104e-05 0.015034833171182828 4.066667749905109e-05 0.0005317484483901651 1.4382894984662083e-06 0.015034833171182826 4.066667749905109e-05 0.019185910598604108 7.915109259025166e-05']
['59866.49851574357 0.03437843736149321 6.802263388255553e-05 0.014986105671192188 4.064521713535726e-05 0.0005300250656150495 1.4375304933634476e-06 0.014986105671192186 4.064521713535726e-05 0.019392331690301023 7.924085055260658e-05']
['59866.49854728154 0.03429180174210777 6.794268628964827e-05 0.015006084412057981 4.0621438767722346e-05 0.0005307316690296146 1.4366895056417247e-06 0.015006084412057981 4.0621438767722346e-05 0.019285717330049787 7.916002720952902e-05']
['59866.498578819504 0.03416042324981479 6.784630085181525e-05 0.014987505502856017 4.0639460435503304e-05 0.0005300745745325595 1.4373268917550801e-06 0.014987505502856017 4.0639460435503304e-05 0.01917291774695877 7.908657461139573e-05']
['59866.49861035746 0.034339459172032426 6.796656075463276e-05 0.015079651771820359 4.068946757233321e-05 0.0005333335821310374 1.4390955324253806e-06 0.01507965177182036 4.068946757233321e-05 0.019259807400212065 7.921544137435038e-05']
['59866.49864189543 0.03427959492980503 6.795336512783124e-05 0.014973522483011743 4.063130714328118e-05 0.0005295800263708777 1.4370385280307193e-06 0.014973522483011745 4.063130714328118e-05 0.019306072446793283 7.917425687916498e-05']
['59866.498673433394 0.03437096208457391 6.799754150782356e-05 0.015091717476102717 4.069215032387453e-05 0.0005337603191262423 1.4391904153518005e-06 0.015091717476102719 4.069215032387453e-05 0.01927924460847119 7.924340192778823e-05']
['59866.49870497135 0.034228885601512604 6.791910842317143e-05 0.015043035990927987 4.0682281200987904e-05 0.0005320385637923282 1.438841366531492e-06 0.015043035990927985 4.0682281200987904e-05 0.01918584961058462 7.917103821925521e-05']
['59866.49873650932 0.03431471694768432 6.798597377486503e-05 0.015019904357073864 4.065822811195649e-05 0.0005312204495990671 1.437990662527941e-06 0.015019904357073864 4.065822811195649e-05 0.019294812590610458 7.921605988258016e-05']
['59866.49876804728 0.034251027956236364 6.793865309173558e-05 0.01500558412460735 4.065072328776499e-05 0.0005307139749805624 1.4377252336685828e-06 0.015005584124607348 4.065072328776499e-05 0.019245443831629017 7.917159773389465e-05']
['59866.49879958524 0.03428142546518351 6.795474510488863e-05 0.015020151710499766 4.0663005511589435e-05 0.0005312291979369388 1.4381596284760985e-06 0.015020151710499766 4.0663005511589435e-05 0.01926127375468374 7.919171294716347e-05']
['59866.49883112321 0.034221935625325856 6.792455448166543e-05 0.014945181064890508 4.059895816137548e-05 0.0005285776537512712 1.4358944168364342e-06 0.014945181064890508 4.059895816137548e-05 0.019276754560435348 7.9132929336161e-05']
['59866.49886266117 0.034219726029277336 6.790218427101484e-05 0.01502051734050557 4.065356187546647e-05 0.0005312421294531092 1.4378256281717137e-06 0.01502051734050557 4.065356187546647e-05 0.019199208688771764 7.914176344975664e-05']
['59866.49889419913 0.03424757957206635 6.790611898503435e-05 0.015044773383614643 4.0681948439366404e-05 0.0005321000114888112 1.438829597496618e-06 0.015044773383614643 4.0681948439366404e-05 0.01920280618845171 7.915972413060134e-05']
['59866.4989257371 0.03439068287427541 6.80479375043642e-05 0.015008293345846729 4.06602569527835e-05 0.0005308097940810462 1.4380624180937999e-06 0.01500829334584673 4.06602569527835e-05 0.019382389528428676 7.927028632510567e-05']
['59866.49895727506 0.03435429950878449 6.800339148094989e-05 0.015012305964024444 4.064975458730294e-05 0.0005309517114183181 1.4376909728981578e-06 0.015012305964024445 4.064975458730294e-05 0.019341993544760044 7.922666092244002e-05']
['59866.49898881302 0.03413040475940063 6.781748146323345e-05 0.015085308808731613 4.0687727562927886e-05 0.000533533658883855 1.4390339921814065e-06 0.015085308808731615 4.0687727562927886e-05 0.019045095950669014 7.908667375892765e-05']
['59866.49902035098 0.03430524765436161 6.795221631689262e-05 0.015072045978353503 4.067239580586885e-05 0.0005330645822140626 1.4384917421986887e-06 0.015072045978353503 4.067239580586885e-05 0.01923320167600811 7.919436522232516e-05']
['59866.499051888946 0.034374973285727924 6.80148275990838e-05 0.015039218828645118 4.065540123057121e-05 0.0005319035592932388 1.4378906820510518e-06 0.015039218828645118 4.065540123057121e-05 0.019335754457082806 7.923937419333789e-05']
['59866.49908342691 0.034296368456139086 6.794728853406966e-05 0.01504406402502278 4.067486695163491e-05 0.0005320749230607401 1.4385791411017485e-06 0.01504406402502278 4.067486695163491e-05 0.019252304431116307 7.919140622987646e-05']
['59866.49911496487 0.03424204412141384 6.79251463989832e-05 0.015067648007036577 4.066928039553376e-05 0.0005329090357974704 1.4383815570976688e-06 0.015067648007036577 4.066928039553376e-05 0.01917439611437726 7.916953884679288e-05']
['59866.499146502836 0.034223368882648306 6.79028230342027e-05 0.015040744349242798 4.066742404185998e-05 0.0005319575135474409 1.4383159020169336e-06 0.015040744349242798 4.066742404185998e-05 0.01918262453340551 7.914943306312876e-05']
['59866.4991780408 0.03414709572756094 6.785347015063576e-05 0.014965156124251656 4.063380077641977e-05 0.0005292841269592447 1.4371267222618892e-06 0.014965156124251656 4.063380077641977e-05 0.01918193960330928 7.90898171512679e-05']
['59866.49920957876 0.034356876775362685 6.801610844541539e-05 0.014989543884777435 4.063379502778611e-05 0.0005301466675456045 1.437126518945564e-06 0.014989543884777435 4.063379502778611e-05 0.019367332890585252 7.92293904205923e-05']
['59866.499241116726 0.03425510839754469 6.791418972816685e-05 0.014994971658710025 4.064526322919344e-05 0.0005303386357792395 1.4375321235994198e-06 0.014994971658710025 4.064526322919344e-05 0.019260136738834664 7.914780217671156e-05']
['59866.499272654684 0.034234033642745014 6.788116183530512e-05 0.014985838786118562 4.065887402863646e-05 0.0005300156264864484 1.4380135071573728e-06 0.014985838786118564 4.065887402863646e-05 0.01924819485662645 7.912645682316006e-05']
['59866.49930419265 0.03416642913807334 6.783438049513218e-05 0.01503366519427514 4.0658150437644244e-05 0.000531707139657215 1.4379879153611087e-06 0.01503366519427514 4.0658150437644244e-05 0.019132763943798203 7.908595560634315e-05']
['59866.499335730616 0.03426720388719417 6.793598345898212e-05 0.014978848127589055 4.063176179115971e-05 0.0005297683825174621 1.4370546079101049e-06 0.014978848127589055 4.063176179115971e-05 0.019288355759605115 7.915957247732354e-05']
['59866.499367268574 0.03428166336787625 6.795451604015799e-05 0.014971566115893396 4.064331027226762e-05 0.0005295108340381249 1.4374630518775553e-06 0.014971566115893396 4.064331027226762e-05 0.01931009725198285 7.918140514123188e-05']
['59866.49939880654 0.03429806058519214 6.798260352452678e-05 0.015057710011684792 4.068474919540602e-05 0.0005325575511119902 1.4389286539784179e-06 0.01505771001168479 4.068474919540602e-05 0.019240350573507353 7.922678334418287e-05']
['59866.499430344506 0.03422816756808273 6.790866974779302e-05 0.015000462633016692 4.063812341793313e-05 0.0005305328392688609 1.4372796044316816e-06 0.015000462633016692 4.063812341793313e-05 0.019227704935066037 7.913939917541694e-05']
['59866.499461882464 0.03428673796623817 6.798086111114534e-05 0.015031607925702286 4.0672462697848446e-05 0.0005316343786655179 1.4384941080185124e-06 0.015031607925702288 4.0672462697848446e-05 0.019255130040535882 7.921897941352631e-05']
['59866.49949342043 0.034366754146179374 6.802253647468876e-05 0.015025684655355538 4.066480399781365e-05 0.0005314248858310835 1.4382232369144687e-06 0.015025684655355536 4.066480399781365e-05 0.019341069490823835 7.925081546981686e-05']
['59866.49952495839 0.03423866483368468 6.789780410683657e-05 0.015004472566496145 4.064873588258887e-05 0.0005306746616543553 1.4376549435890923e-06 0.015004472566496145 4.064873588258887e-05 0.019234192267188532 7.913552635436768e-05']
['59866.499556496354 0.03427902908742691 6.794931207823669e-05 0.01501246478117024 4.0670605803878574e-05 0.0005309573284258295 1.4384284338287118e-06 0.015012464781170241 4.0670605803878574e-05 0.019266564306256666 7.919095395536085e-05']
['59866.49958803432 0.03428696820562626 6.793857921135722e-05 0.01503236151230808 4.064589503225572e-05 0.0005316610313395979 1.4375544690617357e-06 0.015032361512308082 4.064589503225572e-05 0.019254606693318178 7.9169055370334e-05']
['59866.49961957228 0.034241693518142255 6.792390246063317e-05 0.015004730706352746 4.0648524623541245e-05 0.0005306837914841746 1.4376474718287141e-06 0.015004730706352746 4.0648524623541245e-05 0.019236962811789507 7.915781123522964e-05']
['59866.49965111024 0.034358657039614375 6.800441479826822e-05 0.015035209980558331 4.0670342777958275e-05 0.0005317617752956574 1.438419131189739e-06 0.015035209980558331 4.0670342777958275e-05 0.019323447059056045 7.923810455665598e-05']
['59866.49968264821 0.03430704611303784 6.79757710344425e-05 0.015018170325411738 4.066012262229602e-05 0.0005311591207745103 1.4380576671246688e-06 0.015018170325411737 4.066012262229602e-05 0.0192888757876261 7.920827620512328e-05']
['59866.49971418617 0.03428254981621363 6.794535835664542e-05 0.015064616494739662 4.0668748839553074e-05 0.0005328018179825597 1.43836275715059e-06 0.01506461649473966 4.0668748839553074e-05 0.019217933321473965 7.918660779694768e-05']
['59866.49974572413 0.034353336648935015 6.798781241733413e-05 0.015077061783474524 4.06807852384124e-05 0.0005332419800315284 1.438788457678476e-06 0.015077061783474524 4.06807852384124e-05 0.01927627486546049 7.92292176214586e-05']
['59866.49977726209 0.03431645704913321 6.799135492698249e-05 0.014984682770233718 4.0643186179698506e-05 0.0005299747407881449 1.4374586630007162e-06 0.014984682770233718 4.0643186179698506e-05 0.019331774278899497 7.921295934154047e-05']
['59866.49980880006 0.034155546337449195 6.783503244852606e-05 0.01496340454174394 4.0602614827438224e-05 0.0005292221774005033 1.436023744942906e-06 0.01496340454174394 4.0602614827438224e-05 0.019192141795705255 7.905797845959565e-05']
['59866.49984033802 0.03424134850945396 6.794531505069253e-05 0.015041969361531456 4.065679974186532e-05 0.0005320008394943494 1.4379401442700355e-06 0.015041969361531456 4.065679974186532e-05 0.019199379147922507 7.918043446829528e-05']
['59866.49987187598 0.03421380272313199 6.787285756314508e-05 0.014980747853025733 4.0644066966064644e-05 0.0005298355715605208 1.437489814446045e-06 0.01498074785302573 4.0644066966064644e-05 0.019233054870106264 7.911172462618249e-05']
['59866.49990341395 0.03435286051633143 6.801794617363573e-05 0.014981679593397355 4.065358295228672e-05 0.000529868525135148 1.437826373611742e-06 0.014981679593397357 4.065358295228672e-05 0.01937118092293407 7.924111816814592e-05']
['59866.49993495191 0.034217857179661165 6.789065433809939e-05 0.015015438610367431 4.066512517650442e-05 0.000531062506118417 1.4382345962869692e-06 0.015015438610367431 4.066512517650442e-05 0.019202418569293736 7.913781240390757e-05']
['59866.49996648987 0.03434094558166147 6.798436691046667e-05 0.015046823316698875 4.065372405440543e-05 0.0005321725130406697 1.437831364078336e-06 0.015046823316698875 4.065372405440543e-05 0.01929412226496259 7.921236913329065e-05']
['59866.49999802784 0.03435722382116685 6.796977092595083e-05 0.015033094342757132 4.065044366231713e-05 0.0005316869499148012 1.437715343941418e-06 0.015033094342757134 4.065044366231713e-05 0.019324129478409717 7.91981586254974e-05']
['59866.500029565796 0.03431129973802836 6.797874985847554e-05 0.01501194459622281 4.0654157988322424e-05 0.0005309389306467838 1.437846711351195e-06 0.01501194459622281 4.0654157988322424e-05 0.019299355141805547 7.920777104590603e-05']
['59866.50006110376 0.034270275304124305 6.79170893796974e-05 0.015077895024633312 4.0690544723629164e-05 0.0005332714499091303 1.439133628859427e-06 0.01507789502463331 4.0690544723629164e-05 0.019192380279490995 7.917355277941916e-05']
['59866.50009264173 0.03427564761466228 6.792572471085694e-05 0.015014160661267673 4.066944437051215e-05 0.0005310173079148067 1.438387356526192e-06 0.015014160661267671 4.066944437051215e-05 0.019261486953394608 7.917011925531819e-05']
['59866.500124179685 0.0342384135821975 6.791547505012183e-05 0.01508900313464628 4.070389761155702e-05 0.0005336643189351243 1.4396058906634872e-06 0.01508900313464628 4.070389761155702e-05 0.01914941044755122 7.917903151754154e-05']
['59866.50015571765 0.034251455434258754 6.794301020625236e-05 0.015049795839706873 4.067997313095434e-05 0.0005322776445362646 1.4387597352526376e-06 0.015049795839706873 4.067997313095434e-05 0.019201659594551883 7.919035831350985e-05']
['59866.50018725562 0.03422525628627809 6.791320091179516e-05 0.01504525891940938 4.066060826163035e-05 0.0005321171838047625 1.438074843102584e-06 0.015045258919409383 4.066060826163035e-05 0.019179997366868706 7.915483511631881e-05']
['59866.500218793575 0.03423235908830752 6.788772543505728e-05 0.0150254369942089 4.065579781949506e-05 0.000531416126609817 1.4379047085149642e-06 0.015025436994208899 4.065579781949506e-05 0.01920692209409862 7.913050714538219e-05']
['59866.50025033154 0.03435201912303012 6.800426149366038e-05 0.01511839726492959 4.0707422894712746e-05 0.0005347039236312301 1.439730572050161e-06 0.01511839726492959 4.0707422894712746e-05 0.019233621858100527 7.925701142502865e-05']
['59866.5002818695 0.03430604172145164 6.795399872915948e-05 0.015022946975067675 4.066405389155963e-05 0.0005313280601976572 1.4381967073326528e-06 0.015022946975067676 4.066405389155963e-05 0.019283094746383962 7.919161080681636e-05']
['59866.500313407465 0.034231799438759265 6.791680406015554e-05 0.015025032230160149 4.066670360629153e-05 0.0005314018110100071 1.4382904218209563e-06 0.01502503223016015 4.066670360629153e-05 0.019206767208599117 7.916105769851438e-05']
['59866.50034494543 0.03445709335543251 6.808315330007622e-05 0.015076204093711871 4.0680591506984964e-05 0.0005332116454614472 1.4387816058308518e-06 0.015076204093711871 4.0680591506984964e-05 0.01938088926172064 7.931094683989e-05']
['59866.50037648339 0.03423043990064632 6.789796114967037e-05 0.015040086984883483 4.068061670120357e-05 0.0005319342640391748 1.438782496894058e-06 0.015040086984883483 4.068061670120357e-05 0.01919035291576284 7.915204168859064e-05']
['59866.500408021355 0.03422485231744407 6.794380269017516e-05 0.014991134682980965 4.064104251568093e-05 0.0005302029305228387 1.4373828463952216e-06 0.014991134682980967 4.064104251568093e-05 0.019233717634463104 7.917104685908125e-05']
['59866.50043955932 0.03420522062070825 6.785732403696649e-05 0.015022597176293073 4.064606011928167e-05 0.0005313156885967537 1.4375603078208958e-06 0.015022597176293073 4.064606011928167e-05 0.019182623444415178 7.909942242948509e-05']
['59866.50047109728 0.03422025028270089 6.789790663351284e-05 0.015012592089907639 4.0657809236724506e-05 0.000530961831051353 1.4379758478471168e-06 0.015012592089907639 4.0657809236724506e-05 0.019207658192793253 7.914027531632114e-05']
['59866.500502635245 0.034301399543522994 6.798696249283796e-05 0.0150269207184481 4.0675388052667906e-05 0.000531468602620229 1.4385975712806934e-06 0.0150269207184481 4.0675388052667906e-05 0.019274478825074895 7.92257171771747e-05']
['59866.5005341732 0.03419291093048354 6.788967823437632e-05 0.01494071275226352 4.061248199283781e-05 0.0005284196195197457 1.4363727245312725e-06 0.014940712752263522 4.061248199283781e-05 0.019252198178220013 7.910993682455905e-05']
['59866.50056571117 0.034265795682474225 6.794179615515829e-05 0.014992802451246992 4.063245597970203e-05 0.0005302619157591653 1.4370791598074264e-06 0.01499280245124699 4.063245597970203e-05 0.019272993231227234 7.916491737967964e-05']
['59866.500597249134 0.03432935065498015 6.796674708919539e-05 0.015000664745725653 4.064679261766947e-05 0.0005305399875436816 1.4375862146518348e-06 0.015000664745725655 4.064679261766947e-05 0.019328685909254493 7.919368952126475e-05']
['59866.50062878709 0.03428433285709944 6.793246186787406e-05 0.014998303536965057 4.0655509296286835e-05 0.0005304564768668103 1.4378945040939008e-06 0.014998303536965057 4.0655509296286835e-05 0.019286029320134384 7.916874264234989e-05']
['59866.50066032506 0.03426867992731429 6.791132863592375e-05 0.015064023097980203 4.0677559117963235e-05 0.0005327808308653414 1.4386743570081437e-06 0.015064023097980205 4.0677559117963235e-05 0.019204656829334088 7.916193765245916e-05']
['59866.500691863024 0.034140454759140085 6.78283237032663e-05 0.014976942786378502 4.063907434237963e-05 0.0005297009948570317 1.4373132365041633e-06 0.0149769427863785 4.063907434237963e-05 0.019163511972761584 7.907095459016879e-05']
['59866.50072340098 0.034351959110463355 6.80164937685121e-05 0.015075412608283816 4.067220760831474e-05 0.0005331836523907227 1.4384850860717968e-06 0.015075412608283816 4.067220760831474e-05 0.01927654650217954 7.924942836573587e-05']
['59866.50075493895 0.0342169899746478 6.789166987026237e-05 0.015021837053208056 4.06554641232649e-05 0.0005312888047420117 1.4378929064250707e-06 0.015021837053208054 4.06554641232649e-05 0.01919515292143975 7.913371974607772e-05']
['59866.50078647691 0.03429448068003066 6.79423421758656e-05 0.014985707233481695 4.064908716645723e-05 0.0005300109737636853 1.437667367714443e-06 0.014985707233481697 4.064908716645723e-05 0.019308773446548962 7.917392340795448e-05']
['59866.50081801487 0.03416415068576137 6.786723926647238e-05 0.014977155344000482 4.064285503892048e-05 0.0005297085125450828 1.4374469512914536e-06 0.01497715534400048 4.064285503892048e-05 0.01918699534176089 7.910628187045144e-05']
['59866.50084955284 0.03431367713560941 6.795620175910302e-05 0.015085013098221951 4.067916118917638e-05 0.0005335232002640024 1.4387310186865343e-06 0.015085013098221953 4.067916118917638e-05 0.01922866403738746 7.920125953909389e-05']
['59866.5008810908 0.03434261888602695 6.801739713023261e-05 0.01510399168869655 4.0692096845488595e-05 0.0005341944305944355 1.439188523940807e-06 0.015103991688696552 4.0692096845488595e-05 0.0192386271973304 7.926041293138964e-05']
['59866.50091262876 0.03421104353810319 6.789667576015469e-05 0.01495701005088851 4.061277306931718e-05 0.0005289960185497928 1.4363830192558303e-06 0.01495701005088851 4.061277306931718e-05 0.019254033487214682 7.911609138259696e-05']
['59866.50094416673 0.03429596017286587 6.796068467483615e-05 0.015006785918765442 4.0641037823421776e-05 0.0005307564797540823 1.4373826804405019e-06 0.015006785918765444 4.0641037823421776e-05 0.019289174254100424 7.918553287588149e-05']
['59866.50097570469 0.03419370997528191 6.788413018544367e-05 0.014971973378758757 4.064368127834616e-05 0.0005295252380154938 1.4374761735334034e-06 0.014971973378758758 4.064368127834616e-05 0.019221736596523147 7.91211979111164e-05']
['59866.50100724265 0.03429915275979019 6.794194898072432e-05 0.015092711736950077 4.069362379704246e-05 0.0005337954839103712 1.4392425288047313e-06 0.015092711736950077 4.069362379704246e-05 0.01920644102284011 7.919646108908256e-05']
['59866.50103878061 0.034232677982657875 6.789592989283674e-05 0.015038147562037885 4.066163913052767e-05 0.0005318656709874809 1.4381113026316259e-06 0.015038147562037885 4.066163913052767e-05 0.01919453042061999 7.914054708424918e-05']
['59866.501070318576 0.03442366191735788 6.804441840408619e-05 0.015031549524977143 4.064830049139161e-05 0.0005316323131623875 1.4376395447754873e-06 0.015031549524977143 4.064830049139161e-05 0.019392112392380735 7.926113302741016e-05']
['59866.50110185654 0.03429478543515794 6.797002152052295e-05 0.01507257863452286 4.0669176537820407e-05 0.0005330834210723563 1.438377883882456e-06 0.01507257863452286 4.0669176537820407e-05 0.019222206800635078 7.920799041614903e-05']
['59866.5011333945 0.03438936210359629 6.80449203469185e-05 0.015101446184389003 4.069534765772014e-05 0.0005341044017959449 1.439303497904299e-06 0.015101446184389005 4.069534765772014e-05 0.019287915919207286 7.92857017752961e-05']
['59866.501164932466 0.034217986623353 6.792222028695017e-05 0.01503510261508452 4.066600262820549e-05 0.0005317579780187964 1.4382656297926469e-06 0.01503510261508452 4.066600262820549e-05 0.01918288400826848 7.916534455471158e-05']
['59866.50119647043 0.034230503175817904 6.791156047988854e-05 0.015036936733546639 4.0665429470424675e-05 0.000531822846689788 1.4382453584828717e-06 0.015036936733546639 4.0665429470424675e-05 0.019193566442271263 7.91559043964987e-05']
['59866.50122800839 0.034274529117953166 6.793020998694681e-05 0.015037803753819029 4.066852563050744e-05 0.0005318535112591461 1.4383548627454885e-06 0.015037803753819029 4.066852563050744e-05 0.019236725364134136 7.917349560193695e-05']
['59866.501259546356 0.03431960262018072 6.79747243972388e-05 0.015103427142926264 4.0700710312302954e-05 0.000534174463872226 1.4394931630120654e-06 0.015103427142926264 4.0700710312302954e-05 0.019216175477254453 7.922822083580179e-05']
['59866.501291084314 0.03409708561621268 6.779374107906779e-05 0.015020558676966785 4.065977569138091e-05 0.0005312435914313607 1.4380453969535462e-06 0.015020558676966785 4.065977569138091e-05 0.019076526939245893 7.905193665413323e-05']
['59866.50132262228 0.03424025917911477 6.790427225136141e-05 0.015134937419477964 4.0708017829015476e-05 0.0005352889119325362 1.4397516135468486e-06 0.015134937419477966 4.0708017829015476e-05 0.0191053217596368 7.917154100782966e-05']
['59866.501354160246 0.03430091996783615 6.792454636552663e-05 0.015104338493424433 4.0717793664568666e-05 0.0005342066963025978 1.4400973630026585e-06 0.015104338493424433 4.0717793664568666e-05 0.019196581474411716 7.919395633426181e-05']
['59866.501385698204 0.03430031060639919 6.794957809380504e-05 0.015117111808980963 4.073174882144471e-05 0.0005346584599271521 1.4405909257134241e-06 0.015117111808980963 4.073174882144471e-05 0.019183198797418227 7.922260110081827e-05']
['59866.50141723617 0.034325137885634564 6.79192659857327e-05 0.015148039538687699 4.0750356776455684e-05 0.0005357523046074714 1.4412490474958302e-06 0.015148039538687699 4.0750356776455684e-05 0.019177098346946864 7.920617570271358e-05']
['59866.501448774135 0.03428770035714699 6.795995166095912e-05 0.01504556763579846 4.068183967551684e-05 0.0005321281024135037 1.4388257507623317e-06 0.015045567635798462 4.068183967551684e-05 0.019242132721348528 7.920585274551595e-05']
['59866.501480312094 0.03421097399453243 6.790200262142421e-05 0.015006294734442184 4.06521604233213e-05 0.000530739107662301 1.4377760619414004e-06 0.015006294734442182 4.06521604233213e-05 0.019204679260090243 7.914088770719817e-05']
['59866.50151185006 0.034297771698815344 6.797030587138063e-05 0.015125969590533415 4.072609492253602e-05 0.0005349717398646855 1.440390959944744e-06 0.015125969590533413 4.072609492253602e-05 0.01917180210828193 7.923747401254318e-05']
['59866.50154338802 0.03425411077331118 6.791183770828858e-05 0.015046892969024372 4.067135755031437e-05 0.0005321749764877587 1.4384550214200916e-06 0.015046892969024372 4.067135755031437e-05 0.01920721780428681 7.915918788051353e-05']
['59866.501574925984 0.03430403800001532 6.797058024368473e-05 0.015096315860016004 4.0693065607039785e-05 0.000533922953688472 1.439222786871818e-06 0.015096315860016002 4.0693065607039785e-05 0.01920772213999932 7.922073823918853e-05']
['59866.50160646395 0.03431858611684263 6.79525259347194e-05 0.015047996160086627 4.068225473943763e-05 0.0005322139938901437 1.4388404306455967e-06 0.015047996160086627 4.068225473943763e-05 0.019270589956756005 7.919969464330787e-05']
['59866.50163800191 0.034242983953602965 6.794146294031121e-05 0.014983310823017066 4.064918543852243e-05 0.0005299262180812135 1.437670843377764e-06 0.014983310823017066 4.064918543852243e-05 0.0192596731305859 7.917321935657957e-05']
['59866.50166953987 0.0342801291305537 6.793526063576696e-05 0.015033571097259255 4.068323728964334e-05 0.0005317038116560576 1.4388751812505023e-06 0.015033571097259254 4.068323728964334e-05 0.019246558033294447 7.918538649280569e-05']
['59866.50170107784 0.0342820094034295 6.794514247632126e-05 0.015068057743704693 4.0691090771749255e-05 0.0005329235272677141 1.439152941361089e-06 0.015068057743704694 4.0691090771749255e-05 0.019213951659724806 7.919789930498367e-05']
['59866.5017326158 0.03426711595251702 6.791010233231477e-05 0.014963371883409939 4.065015395833037e-05 0.0005292210223482168 1.4377050977588566e-06 0.014963371883409939 4.065015395833037e-05 0.01930374406910708 7.914680673041349e-05']
['59866.50176415376 0.034227413890008246 6.790229224896329e-05 0.015080037789483008 4.0713274271677453e-05 0.0005333472347130666 1.4399375221763448e-06 0.01508003778948301 4.0713274271677453e-05 0.019147376100525235 7.917254571241506e-05']
['59866.50179569172 0.034230009545288424 6.788977438820975e-05 0.01501161009077948 4.066122866364833e-05 0.0005309270999368288 1.438096785335443e-06 0.015011610090779478 4.066122866364833e-05 0.01921839945450895 7.913505533529068e-05']
['59866.50182722969 0.03429689092492368 6.794747217788457e-05 0.014966920462651426 4.063445046957262e-05 0.0005293465276653803 1.4371497004567266e-06 0.014966920462651426 4.063445046957262e-05 0.019329970462272257 7.917081242685683e-05']
['59866.50185876765 0.034326932491998696 6.797727649719376e-05 0.015013909981470126 4.0671482968277714e-05 0.0005310084419306039 1.4384594571731622e-06 0.015013909981470126 4.0671482968277714e-05 0.01931302251052857 7.921540031341655e-05']
['59866.50189030561 0.034267612836284246 6.792845327277189e-05 0.01498365395939242 4.066343269682659e-05 0.000529938354047945 1.438174737063234e-06 0.014983653959392417 4.066343269682659e-05 0.019283958876891827 7.916937237796255e-05']
['59866.50192184358 0.03421570373933434 6.791565793441789e-05 0.015040217171510207 4.0689058164504805e-05 0.000531938868449212 1.4390810525854626e-06 0.015040217171510205 4.0689058164504805e-05 0.019175486567824133 7.917156084718372e-05']
['59866.50195338154 0.03429195483511688 6.796093785710474e-05 0.015064307038014283 4.069152873555014e-05 0.0005327908731897782 1.4391684311619348e-06 0.015064307038014283 4.069152873555014e-05 0.019227647797102593 7.921167581394398e-05']
['59866.5019849195 0.034205255838852845 6.787319735571899e-05 0.015126482630709589 4.071382534169502e-05 0.0005349898849491395 1.4399570122912973e-06 0.015126482630709587 4.071382534169502e-05 0.01907877320814326 7.914787737673339e-05']
['59866.50201645747 0.034210079863414 6.789317470412852e-05 0.01503659483072352 4.068297395852283e-05 0.0005318107543510421 1.4388658678172801e-06 0.01503659483072352 4.068297395852283e-05 0.01917348503269048 7.914914744654653e-05']
['59866.502047995426 0.034232227268151505 6.791342209547267e-05 0.015065244577266513 4.0701713004196986e-05 0.0005328240318578526 1.439528625983473e-06 0.015065244577266513 4.0701713004196986e-05 0.019166982690884994 7.91761475584273e-05']
['59866.50207953339 0.03433789380488746 6.798084056106996e-05 0.015093110673624423 4.070649661971474e-05 0.0005338095934089718 1.4396978117735843e-06 0.015093110673624422 4.070649661971474e-05 0.019244783131263037 7.923644079866576e-05']
['59866.50211107136 0.034230366145320816 6.789988538079237e-05 0.015039233268294013 4.06846094887476e-05 0.0005319040699913496 1.4389237128661354e-06 0.015039233268294015 4.06846094887476e-05 0.0191911328770268 7.915574447869614e-05']
['59866.502142609315 0.034398440652205466 6.803446586669046e-05 0.015037921387301556 4.065564742297487e-05 0.0005318576716925278 1.4378993893261617e-06 0.015037921387301558 4.065564742297487e-05 0.019360519264903907 7.925635755664723e-05']
['59866.50217414728 0.03434048103547116 6.800037324158572e-05 0.015026726030517657 4.0665160711577656e-05 0.0005314617169432311 1.4382358530830933e-06 0.015026726030517657 4.0665160711577656e-05 0.019313755004953505 7.923197622610083e-05']
['59866.50220568524 0.03432689543622096 6.795864565532173e-05 0.015051482121344932 4.068400120436885e-05 0.0005323372845491851 1.4389021992070946e-06 0.015051482121344934 4.068400120436885e-05 0.019275413314876026 7.920584241899499e-05']
['59866.502237223205 0.03428003017039177 6.794763130472958e-05 0.015071799655945559 4.070711566718362e-05 0.0005330558703409918 1.4397197060990688e-06 0.015071799655945559 4.070711566718362e-05 0.019208230514446215 7.920826892354696e-05']
['59866.50226876117 0.03420054533527641 6.790174486245466e-05 0.014992968626620648 4.065530548794293e-05 0.0005302677930107514 1.4378872958482616e-06 0.014992968626620647 4.065530548794293e-05 0.019207576708655763 7.914228212329899e-05']
['59866.50230029913 0.03428786940839649 6.79599880023323e-05 0.015023987426598887 4.0684409100229765e-05 0.0005313648586430438 1.4389166255721017e-06 0.015023987426598887 4.0684409100229765e-05 0.0192638819817976 7.920720366931286e-05']
['59866.502331837095 0.03434482466837935 6.798878829632717e-05 0.015087105912819154 4.071028960797995e-05 0.0005335972184391401 1.439831961291695e-06 0.015087105912819155 4.071028960797995e-05 0.01925771875556019 7.924520814515155e-05']
['59866.50236337506 0.034317657055877464 6.797277111190807e-05 0.015084647134710267 4.070759940099522e-05 0.0005335102569524743 1.4397368146829039e-06 0.015084647134710265 4.070759940099522e-05 0.0192330099211672 7.923008432170036e-05']
['59866.50239491302 0.0343147475951013 6.796826677562072e-05 0.015073540190101254 4.06986420565977e-05 0.0005331174291442138 1.4394200134300503e-06 0.015073540190101252 4.06986420565977e-05 0.01924120740500005 7.922161796967423e-05']
['59866.502426450985 0.03422836522302183 6.793012405577207e-05 0.014977769805067551 4.064899614579008e-05 0.0005297302446597854 1.4376641485168652e-06 0.014977769805067551 4.064899614579008e-05 0.019250595417954278 7.916339205651208e-05']
['59866.50245798894 0.03435399530417589 6.799043767038064e-05 0.015032829311725532 4.065539310614879e-05 0.000531677576359523 1.4378903947083878e-06 0.015032829311725532 4.065539310614879e-05 0.01932116599245036 7.92184360059286e-05']
['59866.50248952691 0.03420174038879636 6.787768494934105e-05 0.015002676215323533 4.066320509443041e-05 0.0005306111287279886 1.4381666872751424e-06 0.015002676215323533 4.066320509443041e-05 0.019199064173472825 7.912569976078386e-05']
['59866.502521064875 0.034312890972805675 6.795887946446104e-05 0.015074116350583403 4.0696344619419405e-05 0.0005331378066528245 1.4393387582115237e-06 0.015074116350583403 4.0696344619419405e-05 0.019238774622222274 7.921238390206227e-05']
['59866.50255260283 0.03440296304262639 6.804465311015174e-05 0.015045534495062475 4.066693788300558e-05 0.000532126930299737 1.4382987076647546e-06 0.015045534495062476 4.066693788300558e-05 0.019357428547563914 7.927089411417736e-05']
['59866.5025841408 0.03418165818363303 6.786603430633488e-05 0.015011458508756214 4.066215095181994e-05 0.0005309217388194319 1.43812940460688e-06 0.015011458508756216 4.066215095181994e-05 0.019170199674876813 7.91151637329862e-05']
['59866.502615678764 0.03428678667096624 6.794898983945703e-05 0.014978861409957873 4.064870554436006e-05 0.0005297688522851628 1.4376538705937413e-06 0.014978861409957875 4.064870554436006e-05 0.019307925261008364 7.917943219444505e-05']
In [15]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/303050_radii/HD189733b_nrca1_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Pipeline Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6))
      
axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")
axs[0,0].legend()

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Pipeline Calculated Net Aperture Sum MAD (ppm): 560.0509740657556
Pipeline Calculated Net Aperture Sum std (ppm): 559.1530771670479
Median Relative Errors Net Aperture Sum (ppm): 221.01728186335177
Pipeline Calculated Aperture Background std (ppm): 10276.095727876618
Median Relative Errors Aperture Background (ppm): 553.575639174468
Pipeline Calculated Annulus Mean std (ppm): 10276.095727876622
Median Relative Errors Annulus Mean (ppm): 553.575639174468
Pipeline Calculated Annulus Sum std (ppm): 10276.095727876616
Median Relative Errors Annulus Sum (ppm): 553.575639174468
Out[15]:
<matplotlib.legend.Legend at 0x7fc8ebcef040>

$\textbf{External method: tshirt $\rightarrow$ (bkgGeometry = CircularAnnulus) }$¶

In [16]:
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_NRCA1_phot_pipeline.yaml") #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus' #Changing the outer radius
alteredParam['apRadius'] = 30 #Changing the source radius
alteredParam['backStart'] = 30 #Changing the inner radius
alteredParam['backEnd'] = 50 #Changing the outer radius

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'HD189733b_phot2' #provide a new name for centroid realignment

#Assignimg a object new phot2
phot2 = phot_pipeline.phot(directParam=alteredParam) #create new photometric object
#Assignimg a object phot
phot2.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[1900,2048]) #Plot the source and background subtraction area
In [17]:
phot2.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot2.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|                                                  | 0/7350 [00:00<?, ?it/s]2022-02-22 21:48:18,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                        | 1/7350 [00:00<1:02:09,  1.97it/s]2022-02-22 21:48:18,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:18,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                          | 6/7350 [00:00<10:07, 12.08it/s]2022-02-22 21:48:19,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                          | 9/7350 [00:00<07:44, 15.80it/s]2022-02-22 21:48:19,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 12/7350 [00:00<07:45, 15.76it/s]2022-02-22 21:48:19,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 16/7350 [00:01<06:07, 19.95it/s]2022-02-22 21:48:19,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 20/7350 [00:01<04:59, 24.48it/s]2022-02-22 21:48:19,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 24/7350 [00:01<05:41, 21.48it/s]2022-02-22 21:48:19,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 27/7350 [00:01<06:51, 17.77it/s]2022-02-22 21:48:19,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:19,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 31/7350 [00:01<05:51, 20.81it/s]2022-02-22 21:48:20,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 34/7350 [00:01<06:26, 18.95it/s]2022-02-22 21:48:20,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▏                                        | 37/7350 [00:02<06:23, 19.05it/s]2022-02-22 21:48:20,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▏                                        | 41/7350 [00:02<05:39, 21.53it/s]2022-02-22 21:48:20,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 45/7350 [00:02<05:13, 23.28it/s]2022-02-22 21:48:20,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 48/7350 [00:02<05:15, 23.11it/s]2022-02-22 21:48:20,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:20,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 52/7350 [00:02<05:04, 23.99it/s]2022-02-22 21:48:21,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 55/7350 [00:02<05:47, 21.01it/s]2022-02-22 21:48:21,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 58/7350 [00:02<05:35, 21.76it/s]2022-02-22 21:48:21,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 62/7350 [00:03<05:36, 21.66it/s]2022-02-22 21:48:21,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 65/7350 [00:03<05:39, 21.49it/s]2022-02-22 21:48:21,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 68/7350 [00:03<05:27, 22.23it/s]2022-02-22 21:48:21,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 71/7350 [00:03<05:05, 23.82it/s]2022-02-22 21:48:21,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:21,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 74/7350 [00:03<05:24, 22.43it/s]2022-02-22 21:48:22,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 77/7350 [00:03<05:13, 23.18it/s]2022-02-22 21:48:22,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 80/7350 [00:03<05:11, 23.31it/s]2022-02-22 21:48:22,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 84/7350 [00:04<05:22, 22.52it/s]2022-02-22 21:48:22,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 87/7350 [00:04<06:17, 19.23it/s]2022-02-22 21:48:22,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 92/7350 [00:04<05:06, 23.65it/s]2022-02-22 21:48:22,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 95/7350 [00:04<05:33, 21.79it/s]2022-02-22 21:48:22,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:22,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 98/7350 [00:04<07:27, 16.22it/s]2022-02-22 21:48:23,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                       | 105/7350 [00:05<05:38, 21.39it/s]2022-02-22 21:48:23,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                       | 108/7350 [00:05<05:51, 20.62it/s]2022-02-22 21:48:23,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▌                                       | 114/7350 [00:05<04:48, 25.11it/s]2022-02-22 21:48:23,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:23,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 117/7350 [00:05<05:21, 22.50it/s]2022-02-22 21:48:24,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 120/7350 [00:05<05:20, 22.54it/s]2022-02-22 21:48:24,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 124/7350 [00:06<05:39, 21.26it/s]2022-02-22 21:48:24,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 128/7350 [00:06<05:08, 23.41it/s]2022-02-22 21:48:24,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 132/7350 [00:06<05:03, 23.77it/s]2022-02-22 21:48:24,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 135/7350 [00:06<05:21, 22.43it/s]2022-02-22 21:48:24,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 139/7350 [00:06<05:08, 23.36it/s]2022-02-22 21:48:24,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:24,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 144/7350 [00:06<04:10, 28.74it/s]2022-02-22 21:48:25,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 148/7350 [00:07<05:15, 22.79it/s]2022-02-22 21:48:25,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 151/7350 [00:07<04:58, 24.09it/s]2022-02-22 21:48:25,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 154/7350 [00:07<04:52, 24.58it/s]2022-02-22 21:48:25,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 158/7350 [00:07<05:59, 20.01it/s]2022-02-22 21:48:25,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:25,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 165/7350 [00:07<04:56, 24.22it/s]2022-02-22 21:48:26,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 168/7350 [00:07<05:46, 20.72it/s]2022-02-22 21:48:26,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 172/7350 [00:08<05:06, 23.41it/s]2022-02-22 21:48:26,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 175/7350 [00:08<04:58, 24.06it/s]2022-02-22 21:48:26,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 178/7350 [00:08<05:23, 22.19it/s]2022-02-22 21:48:26,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 184/7350 [00:08<04:44, 25.20it/s]2022-02-22 21:48:26,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:26,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 187/7350 [00:08<04:43, 25.24it/s]2022-02-22 21:48:26,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 190/7350 [00:08<05:13, 22.87it/s]2022-02-22 21:48:27,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 194/7350 [00:09<05:54, 20.19it/s]2022-02-22 21:48:27,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 198/7350 [00:09<05:22, 22.18it/s]2022-02-22 21:48:27,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 202/7350 [00:09<04:39, 25.56it/s]2022-02-22 21:48:27,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 205/7350 [00:09<04:54, 24.23it/s]2022-02-22 21:48:27,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:27,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 208/7350 [00:09<06:18, 18.87it/s]2022-02-22 21:48:28,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 215/7350 [00:09<05:14, 22.67it/s]2022-02-22 21:48:28,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 219/7350 [00:10<04:45, 24.93it/s]2022-02-22 21:48:28,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 222/7350 [00:10<05:01, 23.65it/s]2022-02-22 21:48:28,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 225/7350 [00:10<05:18, 22.35it/s]2022-02-22 21:48:28,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 228/7350 [00:10<05:14, 22.67it/s]2022-02-22 21:48:28,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 232/7350 [00:10<04:29, 26.37it/s]2022-02-22 21:48:28,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:28,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 235/7350 [00:10<06:23, 18.58it/s]2022-02-22 21:48:29,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 242/7350 [00:11<04:48, 24.65it/s]2022-02-22 21:48:29,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 246/7350 [00:11<05:54, 20.05it/s]2022-02-22 21:48:29,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 249/7350 [00:11<05:30, 21.46it/s]2022-02-22 21:48:29,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:29,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▍                                      | 256/7350 [00:11<05:04, 23.29it/s]2022-02-22 21:48:30,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 260/7350 [00:11<04:48, 24.54it/s]2022-02-22 21:48:30,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 265/7350 [00:12<04:17, 27.47it/s]2022-02-22 21:48:30,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 268/7350 [00:12<05:04, 23.25it/s]2022-02-22 21:48:30,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 272/7350 [00:12<04:42, 25.03it/s]2022-02-22 21:48:30,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 276/7350 [00:12<04:48, 24.52it/s]2022-02-22 21:48:30,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:30,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 279/7350 [00:12<05:13, 22.57it/s]2022-02-22 21:48:31,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 282/7350 [00:12<04:53, 24.06it/s]2022-02-22 21:48:31,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 285/7350 [00:12<04:43, 24.94it/s]2022-02-22 21:48:31,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 288/7350 [00:13<04:56, 23.82it/s]2022-02-22 21:48:31,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 291/7350 [00:13<04:51, 24.22it/s]2022-02-22 21:48:31,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 295/7350 [00:13<06:32, 17.97it/s]2022-02-22 21:48:31,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:31,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 302/7350 [00:13<04:28, 26.20it/s]2022-02-22 21:48:31,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 306/7350 [00:13<05:52, 19.98it/s]2022-02-22 21:48:32,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 313/7350 [00:14<04:18, 27.18it/s]2022-02-22 21:48:32,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 317/7350 [00:14<05:48, 20.18it/s]2022-02-22 21:48:32,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                      | 323/7350 [00:14<05:09, 22.69it/s]2022-02-22 21:48:32,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:32,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                      | 326/7350 [00:14<04:59, 23.45it/s]2022-02-22 21:48:33,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                      | 329/7350 [00:14<05:29, 21.30it/s]2022-02-22 21:48:33,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 332/7350 [00:15<05:19, 22.00it/s]2022-02-22 21:48:33,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 335/7350 [00:15<05:29, 21.27it/s]2022-02-22 21:48:33,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 338/7350 [00:15<05:58, 19.57it/s]2022-02-22 21:48:33,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 341/7350 [00:15<05:26, 21.45it/s]2022-02-22 21:48:33,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 344/7350 [00:15<05:07, 22.79it/s]2022-02-22 21:48:33,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:33,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 348/7350 [00:15<04:53, 23.82it/s]2022-02-22 21:48:34,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 351/7350 [00:15<05:20, 21.84it/s]2022-02-22 21:48:34,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 355/7350 [00:16<05:01, 23.23it/s]2022-02-22 21:48:34,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 358/7350 [00:16<05:26, 21.39it/s]2022-02-22 21:48:34,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 363/7350 [00:16<04:38, 25.13it/s]2022-02-22 21:48:34,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 366/7350 [00:16<04:51, 23.99it/s]2022-02-22 21:48:34,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:34,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 370/7350 [00:16<04:47, 24.25it/s]2022-02-22 21:48:35,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 373/7350 [00:16<05:00, 23.23it/s]2022-02-22 21:48:35,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 376/7350 [00:17<05:37, 20.65it/s]2022-02-22 21:48:35,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 380/7350 [00:17<05:02, 23.07it/s]2022-02-22 21:48:35,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 383/7350 [00:17<05:09, 22.53it/s]2022-02-22 21:48:35,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 388/7350 [00:17<04:59, 23.25it/s]2022-02-22 21:48:35,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:35,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 393/7350 [00:17<04:41, 24.70it/s]2022-02-22 21:48:36,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 396/7350 [00:17<05:34, 20.81it/s]2022-02-22 21:48:36,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 400/7350 [00:18<04:57, 23.34it/s]2022-02-22 21:48:36,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 404/7350 [00:18<05:05, 22.70it/s]2022-02-22 21:48:36,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▏                                     | 407/7350 [00:18<05:11, 22.28it/s]2022-02-22 21:48:36,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▏                                     | 412/7350 [00:18<05:08, 22.46it/s]2022-02-22 21:48:36,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:36,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 415/7350 [00:18<05:20, 21.65it/s]2022-02-22 21:48:37,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 423/7350 [00:19<05:22, 21.49it/s]2022-02-22 21:48:37,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 428/7350 [00:19<04:36, 25.00it/s]2022-02-22 21:48:37,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 432/7350 [00:19<04:36, 25.06it/s]2022-02-22 21:48:37,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:37,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 435/7350 [00:19<05:44, 20.07it/s]2022-02-22 21:48:37,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 442/7350 [00:19<04:34, 25.21it/s]2022-02-22 21:48:38,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 445/7350 [00:19<04:43, 24.36it/s]2022-02-22 21:48:38,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 448/7350 [00:20<05:01, 22.91it/s]2022-02-22 21:48:38,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 451/7350 [00:20<05:18, 21.63it/s]2022-02-22 21:48:38,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 454/7350 [00:20<05:14, 21.90it/s]2022-02-22 21:48:38,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 459/7350 [00:20<04:23, 26.13it/s]2022-02-22 21:48:38,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:38,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 462/7350 [00:20<04:50, 23.70it/s]2022-02-22 21:48:39,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 465/7350 [00:20<05:44, 20.01it/s]2022-02-22 21:48:39,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 470/7350 [00:21<04:38, 24.70it/s]2022-02-22 21:48:39,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 473/7350 [00:21<05:34, 20.56it/s]2022-02-22 21:48:39,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▌                                     | 478/7350 [00:21<05:19, 21.51it/s]2022-02-22 21:48:39,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:39,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▌                                     | 482/7350 [00:21<05:28, 20.91it/s]2022-02-22 21:48:40,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 485/7350 [00:21<05:11, 22.04it/s]2022-02-22 21:48:40,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 490/7350 [00:22<05:42, 20.04it/s]2022-02-22 21:48:40,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 494/7350 [00:22<04:55, 23.24it/s]2022-02-22 21:48:40,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 499/7350 [00:22<04:44, 24.11it/s]2022-02-22 21:48:40,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 502/7350 [00:22<05:17, 21.57it/s]2022-02-22 21:48:40,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:40,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 507/7350 [00:22<04:19, 26.37it/s]2022-02-22 21:48:41,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 510/7350 [00:22<04:52, 23.38it/s]2022-02-22 21:48:41,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 513/7350 [00:22<04:39, 24.45it/s]2022-02-22 21:48:41,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 516/7350 [00:23<05:06, 22.32it/s]2022-02-22 21:48:41,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 520/7350 [00:23<04:29, 25.33it/s]2022-02-22 21:48:41,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 523/7350 [00:23<04:58, 22.84it/s]2022-02-22 21:48:41,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 527/7350 [00:23<04:45, 23.94it/s]2022-02-22 21:48:41,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:41,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 531/7350 [00:23<04:50, 23.45it/s]2022-02-22 21:48:42,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 534/7350 [00:23<04:50, 23.42it/s]2022-02-22 21:48:42,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 537/7350 [00:23<04:47, 23.73it/s]2022-02-22 21:48:42,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 541/7350 [00:24<04:45, 23.85it/s]2022-02-22 21:48:42,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 544/7350 [00:24<05:03, 22.43it/s]2022-02-22 21:48:42,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 547/7350 [00:24<05:24, 20.99it/s]2022-02-22 21:48:42,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:42,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 552/7350 [00:24<05:06, 22.16it/s]2022-02-22 21:48:43,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 556/7350 [00:24<04:56, 22.94it/s]2022-02-22 21:48:43,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 561/7350 [00:25<04:34, 24.74it/s]2022-02-22 21:48:43,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 564/7350 [00:25<04:38, 24.39it/s]2022-02-22 21:48:43,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 567/7350 [00:25<04:58, 22.70it/s]2022-02-22 21:48:43,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 572/7350 [00:25<05:24, 20.88it/s]2022-02-22 21:48:43,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:43,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 578/7350 [00:25<04:22, 25.81it/s]2022-02-22 21:48:44,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 582/7350 [00:25<05:05, 22.13it/s]2022-02-22 21:48:44,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 586/7350 [00:26<04:51, 23.21it/s]2022-02-22 21:48:44,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 590/7350 [00:26<04:19, 26.03it/s]2022-02-22 21:48:44,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 593/7350 [00:26<04:34, 24.62it/s]2022-02-22 21:48:44,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 596/7350 [00:26<05:33, 20.23it/s]2022-02-22 21:48:44,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:44,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 601/7350 [00:26<04:20, 25.88it/s]2022-02-22 21:48:45,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 605/7350 [00:26<04:36, 24.41it/s]2022-02-22 21:48:45,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 608/7350 [00:27<04:37, 24.33it/s]2022-02-22 21:48:45,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 611/7350 [00:27<05:03, 22.22it/s]2022-02-22 21:48:45,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 615/7350 [00:27<04:52, 22.99it/s]2022-02-22 21:48:45,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 619/7350 [00:27<04:33, 24.58it/s]2022-02-22 21:48:45,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▍                                    | 622/7350 [00:27<04:48, 23.35it/s]2022-02-22 21:48:45,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:45,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 625/7350 [00:27<05:12, 21.54it/s]2022-02-22 21:48:46,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 628/7350 [00:27<05:14, 21.35it/s]2022-02-22 21:48:46,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 633/7350 [00:28<04:12, 26.55it/s]2022-02-22 21:48:46,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 636/7350 [00:28<05:12, 21.46it/s]2022-02-22 21:48:46,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 639/7350 [00:28<05:45, 19.45it/s]2022-02-22 21:48:46,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:46,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 646/7350 [00:28<04:24, 25.30it/s]2022-02-22 21:48:47,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 649/7350 [00:28<04:33, 24.46it/s]2022-02-22 21:48:47,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 652/7350 [00:29<05:21, 20.86it/s]2022-02-22 21:48:47,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 659/7350 [00:29<04:11, 26.62it/s]2022-02-22 21:48:47,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 662/7350 [00:29<05:05, 21.93it/s]2022-02-22 21:48:47,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 669/7350 [00:29<04:17, 25.90it/s]2022-02-22 21:48:47,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:47,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 672/7350 [00:29<05:34, 19.95it/s]2022-02-22 21:48:48,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 679/7350 [00:30<04:01, 27.63it/s]2022-02-22 21:48:48,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 683/7350 [00:30<04:45, 23.35it/s]2022-02-22 21:48:48,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 686/7350 [00:30<05:14, 21.17it/s]2022-02-22 21:48:48,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:48,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▊                                    | 690/7350 [00:30<05:50, 18.99it/s]2022-02-22 21:48:49,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 699/7350 [00:30<04:27, 24.84it/s]2022-02-22 21:48:49,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 702/7350 [00:31<04:36, 24.03it/s]2022-02-22 21:48:49,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 705/7350 [00:31<05:03, 21.87it/s]2022-02-22 21:48:49,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 710/7350 [00:31<04:59, 22.18it/s]2022-02-22 21:48:49,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:49,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 715/7350 [00:31<04:44, 23.28it/s]2022-02-22 21:48:50,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 720/7350 [00:31<04:32, 24.34it/s]2022-02-22 21:48:50,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 723/7350 [00:32<04:34, 24.18it/s]2022-02-22 21:48:50,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 726/7350 [00:32<04:42, 23.45it/s]2022-02-22 21:48:50,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 729/7350 [00:32<04:42, 23.42it/s]2022-02-22 21:48:50,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 732/7350 [00:32<05:13, 21.10it/s]2022-02-22 21:48:50,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 737/7350 [00:32<04:55, 22.35it/s]2022-02-22 21:48:50,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:50,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 742/7350 [00:32<04:22, 25.21it/s]2022-02-22 21:48:51,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 746/7350 [00:32<04:29, 24.51it/s]2022-02-22 21:48:51,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 749/7350 [00:33<05:13, 21.06it/s]2022-02-22 21:48:51,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 753/7350 [00:33<05:18, 20.71it/s]2022-02-22 21:48:51,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 760/7350 [00:33<04:01, 27.32it/s]2022-02-22 21:48:51,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:51,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 763/7350 [00:33<04:22, 25.11it/s]2022-02-22 21:48:52,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 766/7350 [00:33<04:23, 24.99it/s]2022-02-22 21:48:52,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 769/7350 [00:34<05:05, 21.57it/s]2022-02-22 21:48:52,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 773/7350 [00:34<04:28, 24.46it/s]2022-02-22 21:48:52,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 777/7350 [00:34<04:03, 27.04it/s]2022-02-22 21:48:52,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 780/7350 [00:34<04:45, 22.98it/s]2022-02-22 21:48:52,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 783/7350 [00:34<04:48, 22.79it/s]2022-02-22 21:48:52,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:52,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 786/7350 [00:34<05:16, 20.71it/s]2022-02-22 21:48:53,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 789/7350 [00:34<05:13, 20.96it/s]2022-02-22 21:48:53,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 793/7350 [00:35<04:47, 22.84it/s]2022-02-22 21:48:53,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 797/7350 [00:35<04:49, 22.63it/s]2022-02-22 21:48:53,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 801/7350 [00:35<05:00, 21.76it/s]2022-02-22 21:48:53,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 804/7350 [00:35<04:58, 21.92it/s]2022-02-22 21:48:53,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:53,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 807/7350 [00:35<04:40, 23.29it/s]2022-02-22 21:48:54,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 812/7350 [00:35<03:56, 27.59it/s]2022-02-22 21:48:54,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 815/7350 [00:35<04:16, 25.52it/s]2022-02-22 21:48:54,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 818/7350 [00:36<05:05, 21.35it/s]2022-02-22 21:48:54,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 825/7350 [00:36<03:55, 27.68it/s]2022-02-22 21:48:54,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 828/7350 [00:36<05:26, 19.96it/s]2022-02-22 21:48:54,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:54,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 833/7350 [00:36<04:23, 24.76it/s]2022-02-22 21:48:55,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 836/7350 [00:36<04:26, 24.41it/s]2022-02-22 21:48:55,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 839/7350 [00:37<05:04, 21.35it/s]2022-02-22 21:48:55,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 844/7350 [00:37<04:39, 23.29it/s]2022-02-22 21:48:55,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▌                                   | 847/7350 [00:37<04:52, 22.27it/s]2022-02-22 21:48:55,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 851/7350 [00:37<04:41, 23.08it/s]2022-02-22 21:48:55,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:55,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 855/7350 [00:37<05:19, 20.34it/s]2022-02-22 21:48:56,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 859/7350 [00:37<04:36, 23.49it/s]2022-02-22 21:48:56,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 862/7350 [00:38<04:39, 23.21it/s]2022-02-22 21:48:56,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 865/7350 [00:38<05:00, 21.61it/s]2022-02-22 21:48:56,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 868/7350 [00:38<04:41, 23.06it/s]2022-02-22 21:48:56,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 872/7350 [00:38<04:32, 23.80it/s]2022-02-22 21:48:56,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 876/7350 [00:38<04:22, 24.64it/s]2022-02-22 21:48:56,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:56,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 879/7350 [00:38<04:20, 24.85it/s]2022-02-22 21:48:57,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 882/7350 [00:38<04:47, 22.53it/s]2022-02-22 21:48:57,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 886/7350 [00:39<04:27, 24.19it/s]2022-02-22 21:48:57,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 889/7350 [00:39<05:12, 20.70it/s]2022-02-22 21:48:57,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 894/7350 [00:39<04:14, 25.38it/s]2022-02-22 21:48:57,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 897/7350 [00:39<04:53, 22.00it/s]2022-02-22 21:48:57,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:57,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 901/7350 [00:39<04:19, 24.82it/s]2022-02-22 21:48:57,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 906/7350 [00:39<04:15, 25.24it/s]2022-02-22 21:48:58,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 909/7350 [00:39<04:19, 24.85it/s]2022-02-22 21:48:58,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 912/7350 [00:40<04:38, 23.13it/s]2022-02-22 21:48:58,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 915/7350 [00:40<04:58, 21.57it/s]2022-02-22 21:48:58,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 920/7350 [00:40<03:56, 27.20it/s]2022-02-22 21:48:58,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:58,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 923/7350 [00:40<04:51, 22.05it/s]2022-02-22 21:48:58,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 926/7350 [00:40<04:39, 22.96it/s]2022-02-22 21:48:59,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 931/7350 [00:41<05:58, 17.92it/s]2022-02-22 21:48:59,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 937/7350 [00:41<04:45, 22.48it/s]2022-02-22 21:48:59,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 942/7350 [00:41<04:12, 25.40it/s]2022-02-22 21:48:59,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 945/7350 [00:41<04:24, 24.18it/s]2022-02-22 21:48:59,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:48:59,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 950/7350 [00:41<04:28, 23.88it/s]2022-02-22 21:49:00,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 954/7350 [00:42<04:48, 22.19it/s]2022-02-22 21:49:00,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 960/7350 [00:42<03:47, 28.08it/s]2022-02-22 21:49:00,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 964/7350 [00:42<04:36, 23.11it/s]2022-02-22 21:49:00,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 968/7350 [00:42<04:07, 25.83it/s]2022-02-22 21:49:00,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:00,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 972/7350 [00:42<04:42, 22.54it/s]2022-02-22 21:49:01,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 975/7350 [00:42<05:06, 20.77it/s]2022-02-22 21:49:01,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 980/7350 [00:43<04:17, 24.76it/s]2022-02-22 21:49:01,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 983/7350 [00:43<04:20, 24.46it/s]2022-02-22 21:49:01,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 986/7350 [00:43<04:54, 21.60it/s]2022-02-22 21:49:01,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▍                                  | 991/7350 [00:43<04:05, 25.89it/s]2022-02-22 21:49:01,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:01,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 994/7350 [00:43<04:29, 23.63it/s]2022-02-22 21:49:02,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 997/7350 [00:43<04:31, 23.43it/s]2022-02-22 21:49:02,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1001/7350 [00:43<04:49, 21.92it/s]2022-02-22 21:49:02,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1004/7350 [00:44<05:15, 20.12it/s]2022-02-22 21:49:02,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1011/7350 [00:44<05:01, 21.05it/s]2022-02-22 21:49:02,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:02,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1016/7350 [00:44<05:08, 20.50it/s]2022-02-22 21:49:03,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1021/7350 [00:44<04:14, 24.90it/s]2022-02-22 21:49:03,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1025/7350 [00:45<04:17, 24.52it/s]2022-02-22 21:49:03,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1030/7350 [00:45<04:15, 24.72it/s]2022-02-22 21:49:03,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1033/7350 [00:45<04:26, 23.67it/s]2022-02-22 21:49:03,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1037/7350 [00:45<04:05, 25.67it/s]2022-02-22 21:49:03,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:03,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1040/7350 [00:45<05:06, 20.59it/s]2022-02-22 21:49:04,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1046/7350 [00:45<04:23, 23.89it/s]2022-02-22 21:49:04,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1050/7350 [00:46<04:18, 24.42it/s]2022-02-22 21:49:04,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1053/7350 [00:46<04:39, 22.53it/s]2022-02-22 21:49:04,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1059/7350 [00:46<03:55, 26.67it/s]2022-02-22 21:49:04,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▋                                 | 1062/7350 [00:46<04:14, 24.74it/s]2022-02-22 21:49:04,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:04,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▋                                 | 1065/7350 [00:46<05:13, 20.07it/s]2022-02-22 21:49:05,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1071/7350 [00:46<04:18, 24.31it/s]2022-02-22 21:49:05,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1074/7350 [00:47<04:39, 22.49it/s]2022-02-22 21:49:05,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1077/7350 [00:47<04:28, 23.37it/s]2022-02-22 21:49:05,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1081/7350 [00:47<04:23, 23.76it/s]2022-02-22 21:49:05,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1085/7350 [00:47<04:08, 25.25it/s]2022-02-22 21:49:05,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1088/7350 [00:47<04:09, 25.10it/s]2022-02-22 21:49:05,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:05,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1092/7350 [00:47<03:41, 28.29it/s]2022-02-22 21:49:06,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1095/7350 [00:47<04:11, 24.91it/s]2022-02-22 21:49:06,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1098/7350 [00:48<04:29, 23.23it/s]2022-02-22 21:49:06,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1101/7350 [00:48<04:56, 21.08it/s]2022-02-22 21:49:06,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1105/7350 [00:48<04:10, 24.91it/s]2022-02-22 21:49:06,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1108/7350 [00:48<04:16, 24.36it/s]2022-02-22 21:49:06,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1111/7350 [00:48<04:15, 24.45it/s]2022-02-22 21:49:06,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:06,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1114/7350 [00:48<04:35, 22.64it/s]2022-02-22 21:49:07,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1117/7350 [00:48<04:28, 23.22it/s]2022-02-22 21:49:07,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1120/7350 [00:49<04:57, 20.97it/s]2022-02-22 21:49:07,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1124/7350 [00:49<04:16, 24.29it/s]2022-02-22 21:49:07,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1127/7350 [00:49<04:29, 23.09it/s]2022-02-22 21:49:07,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1130/7350 [00:49<04:25, 23.39it/s]2022-02-22 21:49:07,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                 | 1134/7350 [00:49<04:13, 24.56it/s]2022-02-22 21:49:07,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:07,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                 | 1137/7350 [00:49<05:37, 18.39it/s]2022-02-22 21:49:08,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1142/7350 [00:50<04:27, 23.18it/s]2022-02-22 21:49:08,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1146/7350 [00:50<04:26, 23.29it/s]2022-02-22 21:49:08,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1149/7350 [00:50<04:39, 22.17it/s]2022-02-22 21:49:08,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1154/7350 [00:50<03:45, 27.45it/s]2022-02-22 21:49:08,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:08,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1158/7350 [00:50<05:08, 20.10it/s]2022-02-22 21:49:09,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1166/7350 [00:51<04:18, 23.96it/s]2022-02-22 21:49:09,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1169/7350 [00:51<04:30, 22.84it/s]2022-02-22 21:49:09,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1173/7350 [00:51<04:20, 23.74it/s]2022-02-22 21:49:09,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1177/7350 [00:51<04:13, 24.35it/s]2022-02-22 21:49:09,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:09,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1180/7350 [00:51<04:46, 21.53it/s]2022-02-22 21:49:10,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1184/7350 [00:51<04:11, 24.51it/s]2022-02-22 21:49:10,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1187/7350 [00:51<04:19, 23.76it/s]2022-02-22 21:49:10,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1191/7350 [00:52<04:27, 22.99it/s]2022-02-22 21:49:10,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1195/7350 [00:52<03:53, 26.35it/s]2022-02-22 21:49:10,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1198/7350 [00:52<04:25, 23.18it/s]2022-02-22 21:49:10,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1201/7350 [00:52<04:39, 22.02it/s]2022-02-22 21:49:10,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:10,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                | 1204/7350 [00:52<04:45, 21.53it/s]2022-02-22 21:49:11,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                | 1208/7350 [00:52<04:20, 23.56it/s]2022-02-22 21:49:11,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                | 1212/7350 [00:53<04:46, 21.44it/s]2022-02-22 21:49:11,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1218/7350 [00:53<04:05, 24.93it/s]2022-02-22 21:49:11,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1222/7350 [00:53<05:00, 20.38it/s]2022-02-22 21:49:11,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:11,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1228/7350 [00:53<04:10, 24.46it/s]2022-02-22 21:49:12,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1232/7350 [00:53<04:39, 21.91it/s]2022-02-22 21:49:12,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1238/7350 [00:54<04:29, 22.65it/s]2022-02-22 21:49:12,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1242/7350 [00:54<04:07, 24.70it/s]2022-02-22 21:49:12,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1248/7350 [00:54<04:17, 23.70it/s]2022-02-22 21:49:12,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:12,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1252/7350 [00:54<04:03, 25.00it/s]2022-02-22 21:49:13,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1255/7350 [00:54<04:24, 23.09it/s]2022-02-22 21:49:13,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1259/7350 [00:55<04:13, 24.02it/s]2022-02-22 21:49:13,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1265/7350 [00:55<04:07, 24.59it/s]2022-02-22 21:49:13,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1268/7350 [00:55<03:59, 25.35it/s]2022-02-22 21:49:13,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1272/7350 [00:55<03:38, 27.87it/s]2022-02-22 21:49:13,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1275/7350 [00:55<04:15, 23.81it/s]2022-02-22 21:49:13,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:13,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1279/7350 [00:55<04:03, 24.89it/s]2022-02-22 21:49:14,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1284/7350 [00:55<03:47, 26.69it/s]2022-02-22 21:49:14,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▊                                | 1287/7350 [00:56<04:42, 21.43it/s]2022-02-22 21:49:14,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▊                                | 1293/7350 [00:56<03:55, 25.69it/s]2022-02-22 21:49:14,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1296/7350 [00:56<04:18, 23.42it/s]2022-02-22 21:49:14,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1299/7350 [00:56<04:12, 23.93it/s]2022-02-22 21:49:14,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:14,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1303/7350 [00:56<04:14, 23.81it/s]2022-02-22 21:49:15,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1306/7350 [00:56<04:30, 22.34it/s]2022-02-22 21:49:15,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1309/7350 [00:57<04:18, 23.34it/s]2022-02-22 21:49:15,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1313/7350 [00:57<03:48, 26.39it/s]2022-02-22 21:49:15,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1316/7350 [00:57<05:03, 19.87it/s]2022-02-22 21:49:15,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1320/7350 [00:57<04:37, 21.70it/s]2022-02-22 21:49:15,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:15,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1325/7350 [00:57<04:15, 23.58it/s]2022-02-22 21:49:16,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1328/7350 [00:57<04:41, 21.43it/s]2022-02-22 21:49:16,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1335/7350 [00:58<03:52, 25.82it/s]2022-02-22 21:49:16,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1338/7350 [00:58<04:17, 23.36it/s]2022-02-22 21:49:16,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1343/7350 [00:58<03:45, 26.65it/s]2022-02-22 21:49:16,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:16,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1346/7350 [00:58<04:28, 22.38it/s]2022-02-22 21:49:17,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1349/7350 [00:58<04:42, 21.24it/s]2022-02-22 21:49:17,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1356/7350 [00:59<04:12, 23.78it/s]2022-02-22 21:49:17,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1359/7350 [00:59<04:10, 23.93it/s]2022-02-22 21:49:17,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▏                               | 1362/7350 [00:59<04:13, 23.66it/s]2022-02-22 21:49:17,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▏                               | 1366/7350 [00:59<04:10, 23.90it/s]2022-02-22 21:49:17,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:17,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1369/7350 [00:59<04:20, 22.92it/s]2022-02-22 21:49:18,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1372/7350 [00:59<04:33, 21.90it/s]2022-02-22 21:49:18,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1376/7350 [00:59<04:05, 24.30it/s]2022-02-22 21:49:18,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1379/7350 [01:00<04:36, 21.63it/s]2022-02-22 21:49:18,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1382/7350 [01:00<04:29, 22.15it/s]2022-02-22 21:49:18,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1386/7350 [01:00<03:54, 25.47it/s]2022-02-22 21:49:18,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1389/7350 [01:00<05:03, 19.61it/s]2022-02-22 21:49:18,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:18,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1395/7350 [01:00<04:54, 20.24it/s]2022-02-22 21:49:19,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1401/7350 [01:01<03:48, 26.04it/s]2022-02-22 21:49:19,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1404/7350 [01:01<03:43, 26.64it/s]2022-02-22 21:49:19,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1407/7350 [01:01<03:43, 26.62it/s]2022-02-22 21:49:19,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1410/7350 [01:01<05:05, 19.43it/s]2022-02-22 21:49:19,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1413/7350 [01:01<04:44, 20.84it/s]2022-02-22 21:49:19,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:19,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1416/7350 [01:01<04:30, 21.95it/s]2022-02-22 21:49:20,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1421/7350 [01:01<04:05, 24.14it/s]2022-02-22 21:49:20,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1425/7350 [01:02<03:53, 25.33it/s]2022-02-22 21:49:20,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1429/7350 [01:02<03:58, 24.83it/s]2022-02-22 21:49:20,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1433/7350 [01:02<03:50, 25.66it/s]2022-02-22 21:49:20,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:20,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▌                               | 1437/7350 [01:02<04:47, 20.57it/s]2022-02-22 21:49:20,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1441/7350 [01:02<04:23, 22.44it/s]2022-02-22 21:49:21,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1447/7350 [01:02<03:54, 25.20it/s]2022-02-22 21:49:21,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1451/7350 [01:03<03:53, 25.23it/s]2022-02-22 21:49:21,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1457/7350 [01:03<03:43, 26.35it/s]2022-02-22 21:49:21,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1460/7350 [01:03<03:47, 25.89it/s]2022-02-22 21:49:21,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1463/7350 [01:03<04:11, 23.36it/s]2022-02-22 21:49:21,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:21,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1467/7350 [01:03<03:59, 24.55it/s]2022-02-22 21:49:22,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1471/7350 [01:03<03:48, 25.77it/s]2022-02-22 21:49:22,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1474/7350 [01:04<03:40, 26.65it/s]2022-02-22 21:49:22,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1477/7350 [01:04<03:58, 24.62it/s]2022-02-22 21:49:22,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1480/7350 [01:04<04:07, 23.74it/s]2022-02-22 21:49:22,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1484/7350 [01:04<04:50, 20.19it/s]2022-02-22 21:49:22,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:22,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1488/7350 [01:04<04:03, 24.04it/s]2022-02-22 21:49:23,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1492/7350 [01:04<03:38, 26.78it/s]2022-02-22 21:49:23,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1495/7350 [01:05<05:09, 18.90it/s]2022-02-22 21:49:23,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1501/7350 [01:05<03:58, 24.54it/s]2022-02-22 21:49:23,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1505/7350 [01:05<04:46, 20.43it/s]2022-02-22 21:49:23,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:23,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1510/7350 [01:05<03:54, 24.87it/s]2022-02-22 21:49:23,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1514/7350 [01:05<03:53, 25.04it/s]2022-02-22 21:49:24,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1517/7350 [01:06<04:41, 20.72it/s]2022-02-22 21:49:24,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1523/7350 [01:06<03:33, 27.29it/s]2022-02-22 21:49:24,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1527/7350 [01:06<03:49, 25.36it/s]2022-02-22 21:49:24,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1530/7350 [01:06<04:22, 22.17it/s]2022-02-22 21:49:24,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:24,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1535/7350 [01:06<04:14, 22.89it/s]2022-02-22 21:49:25,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1538/7350 [01:06<05:12, 18.58it/s]2022-02-22 21:49:25,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1545/7350 [01:07<03:37, 26.70it/s]2022-02-22 21:49:25,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1549/7350 [01:07<04:46, 20.23it/s]2022-02-22 21:49:25,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1554/7350 [01:07<03:55, 24.64it/s]2022-02-22 21:49:25,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:25,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1558/7350 [01:07<03:40, 26.30it/s]2022-02-22 21:49:26,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1562/7350 [01:07<03:46, 25.57it/s]2022-02-22 21:49:26,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1565/7350 [01:07<03:42, 26.05it/s]2022-02-22 21:49:26,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1568/7350 [01:08<03:45, 25.68it/s]2022-02-22 21:49:26,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1571/7350 [01:08<04:31, 21.30it/s]2022-02-22 21:49:26,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1577/7350 [01:08<03:36, 26.67it/s]2022-02-22 21:49:26,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                              | 1580/7350 [01:08<04:40, 20.57it/s]2022-02-22 21:49:26,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:26,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1586/7350 [01:08<03:47, 25.28it/s]2022-02-22 21:49:27,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1589/7350 [01:09<04:41, 20.50it/s]2022-02-22 21:49:27,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1595/7350 [01:09<03:39, 26.20it/s]2022-02-22 21:49:27,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1599/7350 [01:09<04:33, 21.04it/s]2022-02-22 21:49:27,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1603/7350 [01:09<04:17, 22.34it/s]2022-02-22 21:49:27,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:27,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1608/7350 [01:09<03:36, 26.47it/s]2022-02-22 21:49:28,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1612/7350 [01:09<03:54, 24.42it/s]2022-02-22 21:49:28,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1615/7350 [01:10<04:29, 21.29it/s]2022-02-22 21:49:28,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1620/7350 [01:10<03:46, 25.30it/s]2022-02-22 21:49:28,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1624/7350 [01:10<03:53, 24.50it/s]2022-02-22 21:49:28,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1627/7350 [01:10<04:13, 22.54it/s]2022-02-22 21:49:28,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:28,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1631/7350 [01:10<04:15, 22.42it/s]2022-02-22 21:49:29,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1636/7350 [01:10<03:33, 26.73it/s]2022-02-22 21:49:29,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1639/7350 [01:11<04:30, 21.08it/s]2022-02-22 21:49:29,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1644/7350 [01:11<03:48, 24.96it/s]2022-02-22 21:49:29,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1647/7350 [01:11<04:02, 23.51it/s]2022-02-22 21:49:29,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▊                              | 1650/7350 [01:11<04:14, 22.43it/s]2022-02-22 21:49:29,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:29,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▊                              | 1653/7350 [01:11<04:18, 22.03it/s]2022-02-22 21:49:30,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1656/7350 [01:11<04:07, 22.98it/s]2022-02-22 21:49:30,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1661/7350 [01:11<03:31, 26.96it/s]2022-02-22 21:49:30,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1664/7350 [01:12<03:58, 23.87it/s]2022-02-22 21:49:30,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1668/7350 [01:12<03:43, 25.37it/s]2022-02-22 21:49:30,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1672/7350 [01:12<04:11, 22.60it/s]2022-02-22 21:49:30,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:30,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1675/7350 [01:12<04:44, 19.96it/s]2022-02-22 21:49:31,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1681/7350 [01:12<03:35, 26.30it/s]2022-02-22 21:49:31,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1684/7350 [01:13<03:59, 23.61it/s]2022-02-22 21:49:31,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1687/7350 [01:13<04:29, 20.98it/s]2022-02-22 21:49:31,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1690/7350 [01:13<04:10, 22.63it/s]2022-02-22 21:49:31,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1694/7350 [01:13<03:56, 23.87it/s]2022-02-22 21:49:31,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1697/7350 [01:13<03:55, 24.05it/s]2022-02-22 21:49:31,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:31,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1700/7350 [01:13<03:53, 24.25it/s]2022-02-22 21:49:32,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1704/7350 [01:13<04:18, 21.88it/s]2022-02-22 21:49:32,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1710/7350 [01:14<03:28, 27.11it/s]2022-02-22 21:49:32,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1713/7350 [01:14<03:23, 27.67it/s]2022-02-22 21:49:32,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1716/7350 [01:14<04:11, 22.39it/s]2022-02-22 21:49:32,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                             | 1720/7350 [01:14<03:50, 24.39it/s]2022-02-22 21:49:32,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:32,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                             | 1724/7350 [01:14<04:07, 22.74it/s]2022-02-22 21:49:33,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                             | 1727/7350 [01:14<03:59, 23.51it/s]2022-02-22 21:49:33,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1730/7350 [01:15<04:55, 19.00it/s]2022-02-22 21:49:33,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1735/7350 [01:15<04:14, 22.06it/s]2022-02-22 21:49:33,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1741/7350 [01:15<03:40, 25.45it/s]2022-02-22 21:49:33,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1744/7350 [01:15<04:06, 22.72it/s]2022-02-22 21:49:33,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:33,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1748/7350 [01:15<04:17, 21.79it/s]2022-02-22 21:49:34,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1754/7350 [01:15<03:37, 25.75it/s]2022-02-22 21:49:34,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1757/7350 [01:16<04:01, 23.16it/s]2022-02-22 21:49:34,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1760/7350 [01:16<03:59, 23.31it/s]2022-02-22 21:49:34,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1764/7350 [01:16<03:36, 25.75it/s]2022-02-22 21:49:34,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:34,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1767/7350 [01:16<04:34, 20.31it/s]2022-02-22 21:49:34,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1771/7350 [01:16<04:33, 20.40it/s]2022-02-22 21:49:35,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1777/7350 [01:17<03:55, 23.69it/s]2022-02-22 21:49:35,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1780/7350 [01:17<03:44, 24.86it/s]2022-02-22 21:49:35,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1785/7350 [01:17<03:13, 28.82it/s]2022-02-22 21:49:35,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1789/7350 [01:17<03:50, 24.15it/s]2022-02-22 21:49:35,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                             | 1793/7350 [01:17<03:52, 23.91it/s]2022-02-22 21:49:35,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:35,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                             | 1796/7350 [01:17<03:48, 24.26it/s]2022-02-22 21:49:36,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                             | 1799/7350 [01:18<04:50, 19.13it/s]2022-02-22 21:49:36,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▌                             | 1806/7350 [01:18<03:21, 27.50it/s]2022-02-22 21:49:36,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▌                             | 1810/7350 [01:18<04:02, 22.85it/s]2022-02-22 21:49:36,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▌                             | 1813/7350 [01:18<04:36, 20.03it/s]2022-02-22 21:49:36,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:36,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1818/7350 [01:18<03:55, 23.48it/s]2022-02-22 21:49:37,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1821/7350 [01:18<03:46, 24.44it/s]2022-02-22 21:49:37,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1825/7350 [01:18<03:24, 27.08it/s]2022-02-22 21:49:37,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1828/7350 [01:19<04:29, 20.49it/s]2022-02-22 21:49:37,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1834/7350 [01:19<03:20, 27.56it/s]2022-02-22 21:49:37,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:37,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1838/7350 [01:19<04:16, 21.47it/s]2022-02-22 21:49:37,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1843/7350 [01:19<03:32, 25.86it/s]2022-02-22 21:49:38,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1847/7350 [01:20<04:33, 20.12it/s]2022-02-22 21:49:38,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1852/7350 [01:20<03:47, 24.17it/s]2022-02-22 21:49:38,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1856/7350 [01:20<03:46, 24.22it/s]2022-02-22 21:49:38,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1859/7350 [01:20<04:20, 21.09it/s]2022-02-22 21:49:38,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:38,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1865/7350 [01:20<03:25, 26.68it/s]2022-02-22 21:49:39,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1869/7350 [01:20<04:25, 20.65it/s]2022-02-22 21:49:39,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1874/7350 [01:21<03:55, 23.24it/s]2022-02-22 21:49:39,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|█████████▉                             | 1877/7350 [01:21<04:37, 19.76it/s]2022-02-22 21:49:39,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|█████████▉                             | 1882/7350 [01:21<03:56, 23.13it/s]2022-02-22 21:49:39,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1885/7350 [01:21<03:45, 24.20it/s]2022-02-22 21:49:39,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:39,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1889/7350 [01:21<03:42, 24.49it/s]2022-02-22 21:49:40,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1893/7350 [01:21<03:37, 25.06it/s]2022-02-22 21:49:40,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1896/7350 [01:22<03:57, 22.93it/s]2022-02-22 21:49:40,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1900/7350 [01:22<03:33, 25.48it/s]2022-02-22 21:49:40,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1903/7350 [01:22<03:39, 24.78it/s]2022-02-22 21:49:40,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1907/7350 [01:22<03:47, 23.93it/s]2022-02-22 21:49:40,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:40,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1910/7350 [01:22<03:52, 23.41it/s]2022-02-22 21:49:41,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1913/7350 [01:22<03:58, 22.83it/s]2022-02-22 21:49:41,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1916/7350 [01:23<04:23, 20.60it/s]2022-02-22 21:49:41,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1921/7350 [01:23<03:48, 23.71it/s]2022-02-22 21:49:41,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1925/7350 [01:23<03:56, 22.95it/s]2022-02-22 21:49:41,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1928/7350 [01:23<04:08, 21.85it/s]2022-02-22 21:49:41,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:41,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1934/7350 [01:23<03:28, 25.95it/s]2022-02-22 21:49:42,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1937/7350 [01:23<03:59, 22.62it/s]2022-02-22 21:49:42,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1940/7350 [01:23<03:54, 23.10it/s]2022-02-22 21:49:42,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1943/7350 [01:24<03:53, 23.12it/s]2022-02-22 21:49:42,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1946/7350 [01:24<03:48, 23.63it/s]2022-02-22 21:49:42,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▎                            | 1949/7350 [01:24<03:36, 24.93it/s]2022-02-22 21:49:42,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▎                            | 1952/7350 [01:24<03:54, 22.99it/s]2022-02-22 21:49:42,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:42,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1956/7350 [01:24<03:54, 23.01it/s]2022-02-22 21:49:42,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1961/7350 [01:24<03:38, 24.67it/s]2022-02-22 21:49:43,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1964/7350 [01:25<03:49, 23.42it/s]2022-02-22 21:49:43,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1969/7350 [01:25<03:19, 27.01it/s]2022-02-22 21:49:43,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1972/7350 [01:25<03:51, 23.24it/s]2022-02-22 21:49:43,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1975/7350 [01:25<03:45, 23.80it/s]2022-02-22 21:49:43,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1979/7350 [01:25<03:50, 23.35it/s]2022-02-22 21:49:43,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:43,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1983/7350 [01:25<03:40, 24.30it/s]2022-02-22 21:49:44,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1986/7350 [01:25<03:51, 23.13it/s]2022-02-22 21:49:44,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1989/7350 [01:26<03:38, 24.52it/s]2022-02-22 21:49:44,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1992/7350 [01:26<03:37, 24.63it/s]2022-02-22 21:49:44,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1995/7350 [01:26<03:38, 24.48it/s]2022-02-22 21:49:44,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1998/7350 [01:26<03:32, 25.17it/s]2022-02-22 21:49:44,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 2001/7350 [01:26<03:40, 24.23it/s]2022-02-22 21:49:44,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:44,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2004/7350 [01:26<04:00, 22.21it/s]2022-02-22 21:49:44,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2008/7350 [01:26<03:25, 25.98it/s]2022-02-22 21:49:45,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2011/7350 [01:26<03:48, 23.42it/s]2022-02-22 21:49:45,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2014/7350 [01:27<04:08, 21.48it/s]2022-02-22 21:49:45,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2017/7350 [01:27<03:58, 22.33it/s]2022-02-22 21:49:45,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2021/7350 [01:27<04:22, 20.31it/s]2022-02-22 21:49:45,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▋                            | 2025/7350 [01:27<04:10, 21.22it/s]2022-02-22 21:49:45,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:45,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2031/7350 [01:27<03:05, 28.65it/s]2022-02-22 21:49:46,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2035/7350 [01:27<03:35, 24.63it/s]2022-02-22 21:49:46,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2038/7350 [01:28<03:58, 22.25it/s]2022-02-22 21:49:46,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2042/7350 [01:28<03:29, 25.33it/s]2022-02-22 21:49:46,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2046/7350 [01:28<03:18, 26.74it/s]2022-02-22 21:49:46,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2049/7350 [01:28<03:32, 24.94it/s]2022-02-22 21:49:46,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:46,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2053/7350 [01:28<03:25, 25.81it/s]2022-02-22 21:49:47,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2057/7350 [01:28<03:33, 24.83it/s]2022-02-22 21:49:47,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2060/7350 [01:29<04:12, 20.95it/s]2022-02-22 21:49:47,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2064/7350 [01:29<03:35, 24.51it/s]2022-02-22 21:49:47,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2067/7350 [01:29<03:28, 25.28it/s]2022-02-22 21:49:47,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2071/7350 [01:29<03:19, 26.52it/s]2022-02-22 21:49:47,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2074/7350 [01:29<04:01, 21.84it/s]2022-02-22 21:49:47,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:47,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2080/7350 [01:29<03:10, 27.67it/s]2022-02-22 21:49:48,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2083/7350 [01:29<03:53, 22.59it/s]2022-02-22 21:49:48,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2086/7350 [01:30<03:58, 22.05it/s]2022-02-22 21:49:48,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2091/7350 [01:30<03:57, 22.11it/s]2022-02-22 21:49:48,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2094/7350 [01:30<03:45, 23.29it/s]2022-02-22 21:49:48,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2097/7350 [01:30<03:37, 24.18it/s]2022-02-22 21:49:48,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:48,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2100/7350 [01:30<03:42, 23.63it/s]2022-02-22 21:49:49,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2104/7350 [01:30<04:00, 21.84it/s]2022-02-22 21:49:49,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2109/7350 [01:31<03:25, 25.54it/s]2022-02-22 21:49:49,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2112/7350 [01:31<03:57, 22.02it/s]2022-02-22 21:49:49,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2115/7350 [01:31<04:22, 19.97it/s]2022-02-22 21:49:49,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2119/7350 [01:31<03:52, 22.51it/s]2022-02-22 21:49:49,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:49,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2124/7350 [01:31<03:29, 24.91it/s]2022-02-22 21:49:50,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2127/7350 [01:31<03:57, 22.01it/s]2022-02-22 21:49:50,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2133/7350 [01:32<03:14, 26.88it/s]2022-02-22 21:49:50,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2136/7350 [01:32<03:14, 26.77it/s]2022-02-22 21:49:50,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2139/7350 [01:32<04:18, 20.14it/s]2022-02-22 21:49:50,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2145/7350 [01:32<03:26, 25.16it/s]2022-02-22 21:49:50,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:50,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2148/7350 [01:32<04:00, 21.60it/s]2022-02-22 21:49:51,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2155/7350 [01:32<03:09, 27.45it/s]2022-02-22 21:49:51,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2158/7350 [01:33<04:07, 20.97it/s]2022-02-22 21:49:51,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2164/7350 [01:33<03:38, 23.76it/s]2022-02-22 21:49:51,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2167/7350 [01:33<03:54, 22.12it/s]2022-02-22 21:49:51,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:51,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2170/7350 [01:33<03:51, 22.41it/s]2022-02-22 21:49:52,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2176/7350 [01:33<03:44, 23.00it/s]2022-02-22 21:49:52,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2179/7350 [01:34<03:53, 22.11it/s]2022-02-22 21:49:52,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2186/7350 [01:34<03:17, 26.15it/s]2022-02-22 21:49:52,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2189/7350 [01:34<03:58, 21.67it/s]2022-02-22 21:49:52,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:52,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2195/7350 [01:34<03:11, 26.95it/s]2022-02-22 21:49:53,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2198/7350 [01:34<03:59, 21.49it/s]2022-02-22 21:49:53,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2202/7350 [01:35<03:59, 21.51it/s]2022-02-22 21:49:53,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2208/7350 [01:35<03:17, 25.99it/s]2022-02-22 21:49:53,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2211/7350 [01:35<03:21, 25.45it/s]2022-02-22 21:49:53,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2214/7350 [01:35<03:23, 25.22it/s]2022-02-22 21:49:53,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:53,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2217/7350 [01:35<03:29, 24.50it/s]2022-02-22 21:49:53,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2220/7350 [01:35<03:38, 23.43it/s]2022-02-22 21:49:54,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2223/7350 [01:35<04:06, 20.78it/s]2022-02-22 21:49:54,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2226/7350 [01:36<03:55, 21.74it/s]2022-02-22 21:49:54,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2231/7350 [01:36<04:20, 19.66it/s]2022-02-22 21:49:54,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2237/7350 [01:36<03:28, 24.50it/s]2022-02-22 21:49:54,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:54,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▉                           | 2241/7350 [01:36<03:58, 21.39it/s]2022-02-22 21:49:55,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2246/7350 [01:36<03:39, 23.30it/s]2022-02-22 21:49:55,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2251/7350 [01:37<03:52, 21.96it/s]2022-02-22 21:49:55,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2256/7350 [01:37<03:42, 22.93it/s]2022-02-22 21:49:55,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2261/7350 [01:37<03:15, 26.04it/s]2022-02-22 21:49:55,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:55,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2264/7350 [01:37<03:22, 25.12it/s]2022-02-22 21:49:56,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2267/7350 [01:37<03:19, 25.54it/s]2022-02-22 21:49:56,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2271/7350 [01:37<03:22, 25.02it/s]2022-02-22 21:49:56,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2274/7350 [01:38<03:43, 22.71it/s]2022-02-22 21:49:56,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2277/7350 [01:38<03:51, 21.94it/s]2022-02-22 21:49:56,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2282/7350 [01:38<03:15, 25.94it/s]2022-02-22 21:49:56,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2285/7350 [01:38<03:42, 22.77it/s]2022-02-22 21:49:56,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:56,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2288/7350 [01:38<03:29, 24.12it/s]2022-02-22 21:49:57,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2291/7350 [01:38<03:23, 24.83it/s]2022-02-22 21:49:57,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2294/7350 [01:38<03:48, 22.10it/s]2022-02-22 21:49:57,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2298/7350 [01:39<03:58, 21.17it/s]2022-02-22 21:49:57,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2302/7350 [01:39<03:48, 22.14it/s]2022-02-22 21:49:57,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2305/7350 [01:39<03:44, 22.48it/s]2022-02-22 21:49:57,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:57,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                          | 2309/7350 [01:39<03:51, 21.76it/s]2022-02-22 21:49:58,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                          | 2314/7350 [01:39<03:06, 26.97it/s]2022-02-22 21:49:58,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2317/7350 [01:40<03:45, 22.28it/s]2022-02-22 21:49:58,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2320/7350 [01:40<03:56, 21.31it/s]2022-02-22 21:49:58,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2325/7350 [01:40<03:28, 24.06it/s]2022-02-22 21:49:58,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2328/7350 [01:40<03:19, 25.12it/s]2022-02-22 21:49:58,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2332/7350 [01:40<03:05, 27.03it/s]2022-02-22 21:49:58,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:58,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2335/7350 [01:40<03:36, 23.21it/s]2022-02-22 21:49:59,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2339/7350 [01:40<03:43, 22.46it/s]2022-02-22 21:49:59,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2343/7350 [01:41<03:12, 26.06it/s]2022-02-22 21:49:59,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2346/7350 [01:41<03:41, 22.56it/s]2022-02-22 21:49:59,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2350/7350 [01:41<03:27, 24.15it/s]2022-02-22 21:49:59,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2354/7350 [01:41<03:53, 21.40it/s]2022-02-22 21:49:59,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:49:59,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2358/7350 [01:41<03:19, 25.02it/s]2022-02-22 21:50:00,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2362/7350 [01:41<03:06, 26.72it/s]2022-02-22 21:50:00,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2365/7350 [01:42<04:29, 18.48it/s]2022-02-22 21:50:00,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2372/7350 [01:42<03:15, 25.47it/s]2022-02-22 21:50:00,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2376/7350 [01:42<03:31, 23.54it/s]2022-02-22 21:50:00,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:00,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2379/7350 [01:42<03:37, 22.88it/s]2022-02-22 21:50:01,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                          | 2382/7350 [01:42<03:34, 23.19it/s]2022-02-22 21:50:01,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                          | 2385/7350 [01:42<03:48, 21.75it/s]2022-02-22 21:50:01,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                          | 2388/7350 [01:43<03:46, 21.89it/s]2022-02-22 21:50:01,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2392/7350 [01:43<03:13, 25.68it/s]2022-02-22 21:50:01,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2395/7350 [01:43<03:54, 21.16it/s]2022-02-22 21:50:01,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2399/7350 [01:43<03:41, 22.34it/s]2022-02-22 21:50:01,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:01,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2404/7350 [01:43<03:10, 25.90it/s]2022-02-22 21:50:01,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2407/7350 [01:43<03:34, 23.00it/s]2022-02-22 21:50:02,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2410/7350 [01:43<03:38, 22.57it/s]2022-02-22 21:50:02,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2414/7350 [01:44<03:09, 26.01it/s]2022-02-22 21:50:02,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2417/7350 [01:44<03:56, 20.85it/s]2022-02-22 21:50:02,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2422/7350 [01:44<03:33, 23.08it/s]2022-02-22 21:50:02,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:02,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2426/7350 [01:44<03:15, 25.13it/s]2022-02-22 21:50:02,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2429/7350 [01:44<03:11, 25.72it/s]2022-02-22 21:50:03,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2432/7350 [01:44<03:59, 20.58it/s]2022-02-22 21:50:03,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2437/7350 [01:45<03:09, 25.94it/s]2022-02-22 21:50:03,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2440/7350 [01:45<03:11, 25.68it/s]2022-02-22 21:50:03,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2443/7350 [01:45<04:15, 19.20it/s]2022-02-22 21:50:03,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2450/7350 [01:45<02:56, 27.73it/s]2022-02-22 21:50:03,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:03,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2454/7350 [01:45<03:58, 20.56it/s]2022-02-22 21:50:04,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2461/7350 [01:46<03:08, 25.97it/s]2022-02-22 21:50:04,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████                          | 2465/7350 [01:46<04:13, 19.27it/s]2022-02-22 21:50:04,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████                          | 2471/7350 [01:46<03:15, 25.00it/s]2022-02-22 21:50:04,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:04,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2475/7350 [01:46<03:38, 22.35it/s]2022-02-22 21:50:05,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2481/7350 [01:46<03:15, 24.85it/s]2022-02-22 21:50:05,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2484/7350 [01:47<03:41, 22.00it/s]2022-02-22 21:50:05,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2489/7350 [01:47<03:21, 24.17it/s]2022-02-22 21:50:05,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2493/7350 [01:47<03:37, 22.36it/s]2022-02-22 21:50:05,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:05,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2497/7350 [01:47<03:44, 21.66it/s]2022-02-22 21:50:06,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2503/7350 [01:47<03:15, 24.81it/s]2022-02-22 21:50:06,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2507/7350 [01:48<03:05, 26.13it/s]2022-02-22 21:50:06,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2510/7350 [01:48<03:51, 20.94it/s]2022-02-22 21:50:06,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2516/7350 [01:48<03:23, 23.80it/s]2022-02-22 21:50:06,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:06,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2519/7350 [01:48<03:37, 22.25it/s]2022-02-22 21:50:06,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2525/7350 [01:48<03:08, 25.55it/s]2022-02-22 21:50:07,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2528/7350 [01:48<03:18, 24.30it/s]2022-02-22 21:50:07,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2531/7350 [01:49<03:22, 23.85it/s]2022-02-22 21:50:07,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2535/7350 [01:49<03:08, 25.56it/s]2022-02-22 21:50:07,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▍                         | 2538/7350 [01:49<03:08, 25.47it/s]2022-02-22 21:50:07,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▍                         | 2541/7350 [01:49<04:00, 20.03it/s]2022-02-22 21:50:07,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:07,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2548/7350 [01:49<02:55, 27.39it/s]2022-02-22 21:50:08,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2551/7350 [01:50<03:51, 20.73it/s]2022-02-22 21:50:08,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2557/7350 [01:50<03:10, 25.11it/s]2022-02-22 21:50:08,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2560/7350 [01:50<03:32, 22.56it/s]2022-02-22 21:50:08,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2563/7350 [01:50<03:54, 20.45it/s]2022-02-22 21:50:08,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:08,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2569/7350 [01:50<03:02, 26.17it/s]2022-02-22 21:50:09,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2572/7350 [01:50<03:22, 23.55it/s]2022-02-22 21:50:09,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2575/7350 [01:50<03:14, 24.50it/s]2022-02-22 21:50:09,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2579/7350 [01:51<03:03, 25.98it/s]2022-02-22 21:50:09,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2582/7350 [01:51<03:29, 22.77it/s]2022-02-22 21:50:09,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2585/7350 [01:51<03:44, 21.18it/s]2022-02-22 21:50:09,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2591/7350 [01:51<02:47, 28.34it/s]2022-02-22 21:50:09,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:09,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2595/7350 [01:51<03:52, 20.47it/s]2022-02-22 21:50:10,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2600/7350 [01:52<03:08, 25.16it/s]2022-02-22 21:50:10,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2604/7350 [01:52<03:46, 20.91it/s]2022-02-22 21:50:10,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2608/7350 [01:52<03:32, 22.33it/s]2022-02-22 21:50:10,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▊                         | 2613/7350 [01:52<03:06, 25.39it/s]2022-02-22 21:50:10,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:10,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2617/7350 [01:52<02:49, 27.97it/s]2022-02-22 21:50:11,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2621/7350 [01:52<03:07, 25.27it/s]2022-02-22 21:50:11,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2624/7350 [01:53<03:27, 22.73it/s]2022-02-22 21:50:11,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2628/7350 [01:53<03:09, 24.98it/s]2022-02-22 21:50:11,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2631/7350 [01:53<03:10, 24.75it/s]2022-02-22 21:50:11,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2634/7350 [01:53<03:34, 21.99it/s]2022-02-22 21:50:11,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2638/7350 [01:53<03:02, 25.84it/s]2022-02-22 21:50:11,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:11,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2641/7350 [01:53<03:33, 22.06it/s]2022-02-22 21:50:12,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2644/7350 [01:53<03:19, 23.64it/s]2022-02-22 21:50:12,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2647/7350 [01:54<03:34, 21.93it/s]2022-02-22 21:50:12,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2652/7350 [01:54<03:29, 22.39it/s]2022-02-22 21:50:12,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2655/7350 [01:54<03:19, 23.53it/s]2022-02-22 21:50:12,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2658/7350 [01:54<03:08, 24.88it/s]2022-02-22 21:50:12,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:12,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2662/7350 [01:54<03:04, 25.39it/s]2022-02-22 21:50:12,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2665/7350 [01:54<03:13, 24.27it/s]2022-02-22 21:50:13,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2668/7350 [01:54<03:28, 22.46it/s]2022-02-22 21:50:13,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2671/7350 [01:55<03:27, 22.54it/s]2022-02-22 21:50:13,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2674/7350 [01:55<03:35, 21.73it/s]2022-02-22 21:50:13,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2678/7350 [01:55<03:34, 21.77it/s]2022-02-22 21:50:13,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2681/7350 [01:55<03:30, 22.20it/s]2022-02-22 21:50:13,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:13,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▏                        | 2685/7350 [01:55<03:06, 25.03it/s]2022-02-22 21:50:13,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2688/7350 [01:55<03:10, 24.47it/s]2022-02-22 21:50:14,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2691/7350 [01:56<04:02, 19.20it/s]2022-02-22 21:50:14,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2698/7350 [01:56<02:51, 27.10it/s]2022-02-22 21:50:14,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2701/7350 [01:56<03:41, 20.98it/s]2022-02-22 21:50:14,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2704/7350 [01:56<03:44, 20.69it/s]2022-02-22 21:50:14,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:14,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2709/7350 [01:56<03:15, 23.69it/s]2022-02-22 21:50:15,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2712/7350 [01:56<03:41, 20.92it/s]2022-02-22 21:50:15,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2718/7350 [01:57<02:56, 26.28it/s]2022-02-22 21:50:15,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2721/7350 [01:57<03:57, 19.50it/s]2022-02-22 21:50:15,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2724/7350 [01:57<03:42, 20.78it/s]2022-02-22 21:50:15,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:15,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2730/7350 [01:57<03:32, 21.77it/s]2022-02-22 21:50:16,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2736/7350 [01:57<03:02, 25.28it/s]2022-02-22 21:50:16,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2740/7350 [01:58<03:21, 22.92it/s]2022-02-22 21:50:16,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2746/7350 [01:58<02:57, 25.99it/s]2022-02-22 21:50:16,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2749/7350 [01:58<03:02, 25.21it/s]2022-02-22 21:50:16,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2752/7350 [01:58<03:13, 23.75it/s]2022-02-22 21:50:16,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:16,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2756/7350 [01:58<03:04, 24.93it/s]2022-02-22 21:50:17,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2759/7350 [01:58<03:16, 23.39it/s]2022-02-22 21:50:17,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2762/7350 [01:58<03:14, 23.55it/s]2022-02-22 21:50:17,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2765/7350 [01:59<03:17, 23.20it/s]2022-02-22 21:50:17,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2769/7350 [01:59<03:09, 24.13it/s]2022-02-22 21:50:17,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2772/7350 [01:59<03:37, 21.08it/s]2022-02-22 21:50:17,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2775/7350 [01:59<03:38, 20.94it/s]2022-02-22 21:50:17,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:17,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2780/7350 [01:59<03:23, 22.49it/s]2022-02-22 21:50:18,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2783/7350 [01:59<03:17, 23.15it/s]2022-02-22 21:50:18,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2786/7350 [02:00<03:46, 20.17it/s]2022-02-22 21:50:18,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2790/7350 [02:00<03:13, 23.58it/s]2022-02-22 21:50:18,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2793/7350 [02:00<03:02, 24.97it/s]2022-02-22 21:50:18,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2796/7350 [02:00<03:35, 21.17it/s]2022-02-22 21:50:18,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:18,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2799/7350 [02:00<03:44, 20.29it/s]2022-02-22 21:50:19,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2805/7350 [02:00<03:07, 24.22it/s]2022-02-22 21:50:19,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2809/7350 [02:01<02:51, 26.44it/s]2022-02-22 21:50:19,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2812/7350 [02:01<03:18, 22.89it/s]2022-02-22 21:50:19,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2815/7350 [02:01<03:22, 22.42it/s]2022-02-22 21:50:19,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2818/7350 [02:01<03:14, 23.36it/s]2022-02-22 21:50:19,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:19,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2822/7350 [02:01<03:50, 19.64it/s]2022-02-22 21:50:20,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████                        | 2827/7350 [02:01<03:18, 22.79it/s]2022-02-22 21:50:20,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2833/7350 [02:02<03:10, 23.69it/s]2022-02-22 21:50:20,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2836/7350 [02:02<03:40, 20.48it/s]2022-02-22 21:50:20,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2843/7350 [02:02<02:55, 25.65it/s]2022-02-22 21:50:20,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:20,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2846/7350 [02:02<03:12, 23.42it/s]2022-02-22 21:50:21,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2849/7350 [02:02<03:02, 24.64it/s]2022-02-22 21:50:21,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2852/7350 [02:02<03:06, 24.11it/s]2022-02-22 21:50:21,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2855/7350 [02:03<03:15, 23.05it/s]2022-02-22 21:50:21,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2858/7350 [02:03<03:03, 24.43it/s]2022-02-22 21:50:21,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2861/7350 [02:03<03:08, 23.86it/s]2022-02-22 21:50:21,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2864/7350 [02:03<03:08, 23.80it/s]2022-02-22 21:50:21,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2867/7350 [02:03<03:37, 20.57it/s]2022-02-22 21:50:21,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:21,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2870/7350 [02:03<03:41, 20.24it/s]2022-02-22 21:50:22,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2876/7350 [02:04<03:14, 23.01it/s]2022-02-22 21:50:22,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2879/7350 [02:04<03:09, 23.57it/s]2022-02-22 21:50:22,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2883/7350 [02:04<02:53, 25.72it/s]2022-02-22 21:50:22,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2886/7350 [02:04<02:47, 26.67it/s]2022-02-22 21:50:22,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2889/7350 [02:04<03:03, 24.26it/s]2022-02-22 21:50:22,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2892/7350 [02:04<02:59, 24.82it/s]2022-02-22 21:50:22,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:22,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2896/7350 [02:04<03:52, 19.17it/s]2022-02-22 21:50:23,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▍                       | 2903/7350 [02:05<02:40, 27.71it/s]2022-02-22 21:50:23,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2907/7350 [02:05<02:55, 25.39it/s]2022-02-22 21:50:23,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2910/7350 [02:05<03:00, 24.55it/s]2022-02-22 21:50:23,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2913/7350 [02:05<03:00, 24.62it/s]2022-02-22 21:50:23,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:23,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2917/7350 [02:05<02:58, 24.82it/s]2022-02-22 21:50:23,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2920/7350 [02:05<03:27, 21.39it/s]2022-02-22 21:50:24,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2925/7350 [02:05<02:45, 26.68it/s]2022-02-22 21:50:24,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2928/7350 [02:06<03:44, 19.72it/s]2022-02-22 21:50:24,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2934/7350 [02:06<03:00, 24.42it/s]2022-02-22 21:50:24,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2937/7350 [02:06<03:09, 23.26it/s]2022-02-22 21:50:24,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:24,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2941/7350 [02:06<03:15, 22.57it/s]2022-02-22 21:50:25,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2944/7350 [02:06<03:05, 23.80it/s]2022-02-22 21:50:25,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2947/7350 [02:06<02:56, 24.97it/s]2022-02-22 21:50:25,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2950/7350 [02:07<03:04, 23.90it/s]2022-02-22 21:50:25,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2954/7350 [02:07<03:29, 20.97it/s]2022-02-22 21:50:25,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2958/7350 [02:07<03:09, 23.19it/s]2022-02-22 21:50:25,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2963/7350 [02:07<02:50, 25.76it/s]2022-02-22 21:50:25,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:25,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2966/7350 [02:07<03:37, 20.14it/s]2022-02-22 21:50:26,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                       | 2972/7350 [02:07<02:42, 26.89it/s]2022-02-22 21:50:26,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                       | 2976/7350 [02:08<03:27, 21.06it/s]2022-02-22 21:50:26,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2980/7350 [02:08<03:00, 24.26it/s]2022-02-22 21:50:26,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2984/7350 [02:08<02:51, 25.39it/s]2022-02-22 21:50:26,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:26,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2987/7350 [02:08<04:06, 17.72it/s]2022-02-22 21:50:27,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 2995/7350 [02:08<02:47, 26.05it/s]2022-02-22 21:50:27,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 2999/7350 [02:09<03:10, 22.80it/s]2022-02-22 21:50:27,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3002/7350 [02:09<03:07, 23.23it/s]2022-02-22 21:50:27,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3005/7350 [02:09<03:07, 23.14it/s]2022-02-22 21:50:27,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3008/7350 [02:09<02:58, 24.36it/s]2022-02-22 21:50:27,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:27,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3011/7350 [02:09<02:49, 25.60it/s]2022-02-22 21:50:28,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3014/7350 [02:09<03:01, 23.85it/s]2022-02-22 21:50:28,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3017/7350 [02:10<03:48, 18.94it/s]2022-02-22 21:50:28,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3022/7350 [02:10<02:54, 24.80it/s]2022-02-22 21:50:28,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3026/7350 [02:10<02:53, 24.94it/s]2022-02-22 21:50:28,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3029/7350 [02:10<03:22, 21.35it/s]2022-02-22 21:50:28,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:28,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3033/7350 [02:10<02:54, 24.76it/s]2022-02-22 21:50:29,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3036/7350 [02:10<02:49, 25.50it/s]2022-02-22 21:50:29,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3039/7350 [02:10<03:05, 23.21it/s]2022-02-22 21:50:29,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3042/7350 [02:11<03:21, 21.41it/s]2022-02-22 21:50:29,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3047/7350 [02:11<02:38, 27.16it/s]2022-02-22 21:50:29,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3050/7350 [02:11<03:12, 22.32it/s]2022-02-22 21:50:29,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▏                      | 3053/7350 [02:11<03:34, 20.05it/s]2022-02-22 21:50:29,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:29,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▏                      | 3058/7350 [02:11<02:48, 25.40it/s]2022-02-22 21:50:30,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▏                      | 3061/7350 [02:11<02:59, 23.96it/s]2022-02-22 21:50:30,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3064/7350 [02:11<02:55, 24.49it/s]2022-02-22 21:50:30,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3067/7350 [02:12<02:55, 24.34it/s]2022-02-22 21:50:30,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3070/7350 [02:12<03:22, 21.17it/s]2022-02-22 21:50:30,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3074/7350 [02:12<02:54, 24.56it/s]2022-02-22 21:50:30,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3077/7350 [02:12<03:24, 20.94it/s]2022-02-22 21:50:30,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:30,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3082/7350 [02:12<02:47, 25.44it/s]2022-02-22 21:50:31,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3085/7350 [02:12<02:46, 25.57it/s]2022-02-22 21:50:31,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3088/7350 [02:12<02:47, 25.44it/s]2022-02-22 21:50:31,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3091/7350 [02:13<03:16, 21.67it/s]2022-02-22 21:50:31,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3095/7350 [02:13<03:03, 23.24it/s]2022-02-22 21:50:31,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3099/7350 [02:13<03:07, 22.64it/s]2022-02-22 21:50:31,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:31,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3102/7350 [02:13<03:35, 19.74it/s]2022-02-22 21:50:32,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3109/7350 [02:13<02:55, 24.10it/s]2022-02-22 21:50:32,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3113/7350 [02:14<02:45, 25.61it/s]2022-02-22 21:50:32,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3117/7350 [02:14<02:30, 28.22it/s]2022-02-22 21:50:32,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3120/7350 [02:14<02:49, 24.98it/s]2022-02-22 21:50:32,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3123/7350 [02:14<02:57, 23.82it/s]2022-02-22 21:50:32,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:32,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▌                      | 3126/7350 [02:14<03:06, 22.64it/s]2022-02-22 21:50:32,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▌                      | 3131/7350 [02:14<02:52, 24.53it/s]2022-02-22 21:50:33,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3134/7350 [02:15<03:26, 20.44it/s]2022-02-22 21:50:33,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3140/7350 [02:15<02:56, 23.90it/s]2022-02-22 21:50:33,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3143/7350 [02:15<02:55, 23.96it/s]2022-02-22 21:50:33,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3148/7350 [02:15<03:06, 22.57it/s]2022-02-22 21:50:33,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:33,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3151/7350 [02:15<03:03, 22.84it/s]2022-02-22 21:50:34,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3156/7350 [02:15<02:32, 27.50it/s]2022-02-22 21:50:34,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3159/7350 [02:15<02:37, 26.55it/s]2022-02-22 21:50:34,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3162/7350 [02:16<03:29, 20.00it/s]2022-02-22 21:50:34,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3167/7350 [02:16<02:56, 23.64it/s]2022-02-22 21:50:34,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3170/7350 [02:16<03:00, 23.22it/s]2022-02-22 21:50:34,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3173/7350 [02:16<03:04, 22.61it/s]2022-02-22 21:50:34,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:34,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3177/7350 [02:16<02:57, 23.53it/s]2022-02-22 21:50:35,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3180/7350 [02:16<02:56, 23.58it/s]2022-02-22 21:50:35,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3183/7350 [02:17<03:35, 19.32it/s]2022-02-22 21:50:35,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3187/7350 [02:17<03:10, 21.82it/s]2022-02-22 21:50:35,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3193/7350 [02:17<02:56, 23.59it/s]2022-02-22 21:50:35,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:35,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3196/7350 [02:17<03:10, 21.84it/s]2022-02-22 21:50:35,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|████████████████▉                      | 3202/7350 [02:17<02:25, 28.52it/s]2022-02-22 21:50:36,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3206/7350 [02:18<03:05, 22.37it/s]2022-02-22 21:50:36,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3210/7350 [02:18<03:00, 22.90it/s]2022-02-22 21:50:36,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3215/7350 [02:18<03:11, 21.61it/s]2022-02-22 21:50:36,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3218/7350 [02:18<03:03, 22.50it/s]2022-02-22 21:50:36,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:36,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3224/7350 [02:18<02:37, 26.18it/s]2022-02-22 21:50:37,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3227/7350 [02:18<02:56, 23.36it/s]2022-02-22 21:50:37,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3230/7350 [02:19<02:48, 24.47it/s]2022-02-22 21:50:37,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3233/7350 [02:19<02:41, 25.43it/s]2022-02-22 21:50:37,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3236/7350 [02:19<03:24, 20.09it/s]2022-02-22 21:50:37,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3240/7350 [02:19<02:51, 23.90it/s]2022-02-22 21:50:37,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3244/7350 [02:19<02:50, 24.09it/s]2022-02-22 21:50:37,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:37,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3247/7350 [02:19<03:41, 18.49it/s]2022-02-22 21:50:38,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3255/7350 [02:20<02:26, 27.92it/s]2022-02-22 21:50:38,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3259/7350 [02:20<03:03, 22.25it/s]2022-02-22 21:50:38,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3264/7350 [02:20<02:40, 25.41it/s]2022-02-22 21:50:38,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:38,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3267/7350 [02:20<03:04, 22.11it/s]2022-02-22 21:50:39,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3270/7350 [02:20<02:59, 22.72it/s]2022-02-22 21:50:39,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▎                     | 3274/7350 [02:20<02:57, 22.91it/s]2022-02-22 21:50:39,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3277/7350 [02:21<02:49, 23.98it/s]2022-02-22 21:50:39,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3280/7350 [02:21<02:49, 24.04it/s]2022-02-22 21:50:39,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3284/7350 [02:21<03:21, 20.22it/s]2022-02-22 21:50:39,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3290/7350 [02:21<02:43, 24.79it/s]2022-02-22 21:50:39,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:39,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3294/7350 [02:21<02:32, 26.60it/s]2022-02-22 21:50:40,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3297/7350 [02:21<02:56, 23.02it/s]2022-02-22 21:50:40,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3301/7350 [02:22<02:38, 25.60it/s]2022-02-22 21:50:40,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3305/7350 [02:22<03:04, 21.88it/s]2022-02-22 21:50:40,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3311/7350 [02:22<02:25, 27.77it/s]2022-02-22 21:50:40,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:40,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3315/7350 [02:22<02:30, 26.74it/s]2022-02-22 21:50:40,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3318/7350 [02:22<02:58, 22.60it/s]2022-02-22 21:50:41,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3324/7350 [02:22<02:37, 25.50it/s]2022-02-22 21:50:41,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3327/7350 [02:23<03:17, 20.35it/s]2022-02-22 21:50:41,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3334/7350 [02:23<02:40, 25.10it/s]2022-02-22 21:50:41,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:41,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3338/7350 [02:23<03:05, 21.59it/s]2022-02-22 21:50:42,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3344/7350 [02:23<02:38, 25.27it/s]2022-02-22 21:50:42,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3347/7350 [02:23<02:42, 24.69it/s]2022-02-22 21:50:42,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3350/7350 [02:24<03:09, 21.14it/s]2022-02-22 21:50:42,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3355/7350 [02:24<03:04, 21.66it/s]2022-02-22 21:50:42,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3359/7350 [02:24<02:47, 23.89it/s]2022-02-22 21:50:42,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:42,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3363/7350 [02:24<02:41, 24.67it/s]2022-02-22 21:50:43,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3366/7350 [02:24<02:42, 24.52it/s]2022-02-22 21:50:43,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3369/7350 [02:25<03:01, 21.97it/s]2022-02-22 21:50:43,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3373/7350 [02:25<02:56, 22.52it/s]2022-02-22 21:50:43,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3377/7350 [02:25<02:45, 23.96it/s]2022-02-22 21:50:43,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3380/7350 [02:25<02:41, 24.56it/s]2022-02-22 21:50:43,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3384/7350 [02:25<02:23, 27.62it/s]2022-02-22 21:50:43,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:43,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3387/7350 [02:25<02:40, 24.62it/s]2022-02-22 21:50:44,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3390/7350 [02:25<02:46, 23.78it/s]2022-02-22 21:50:44,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3393/7350 [02:25<02:58, 22.16it/s]2022-02-22 21:50:44,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3398/7350 [02:26<02:41, 24.54it/s]2022-02-22 21:50:44,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3401/7350 [02:26<03:05, 21.25it/s]2022-02-22 21:50:44,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3407/7350 [02:26<02:25, 27.10it/s]2022-02-22 21:50:44,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:44,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3410/7350 [02:26<02:57, 22.22it/s]2022-02-22 21:50:45,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▏                    | 3417/7350 [02:26<02:30, 26.12it/s]2022-02-22 21:50:45,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3420/7350 [02:27<02:55, 22.41it/s]2022-02-22 21:50:45,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3423/7350 [02:27<02:54, 22.44it/s]2022-02-22 21:50:45,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3427/7350 [02:27<02:58, 22.03it/s]2022-02-22 21:50:45,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3430/7350 [02:27<02:55, 22.35it/s]2022-02-22 21:50:45,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:45,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3435/7350 [02:27<02:21, 27.58it/s]2022-02-22 21:50:46,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3438/7350 [02:27<02:44, 23.82it/s]2022-02-22 21:50:46,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3441/7350 [02:27<02:41, 24.26it/s]2022-02-22 21:50:46,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3444/7350 [02:28<02:51, 22.81it/s]2022-02-22 21:50:46,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3447/7350 [02:28<02:52, 22.64it/s]2022-02-22 21:50:46,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3451/7350 [02:28<02:46, 23.44it/s]2022-02-22 21:50:46,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3454/7350 [02:28<02:59, 21.71it/s]2022-02-22 21:50:46,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:46,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3460/7350 [02:28<02:32, 25.54it/s]2022-02-22 21:50:47,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3463/7350 [02:28<02:49, 22.94it/s]2022-02-22 21:50:47,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3466/7350 [02:29<02:51, 22.60it/s]2022-02-22 21:50:47,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3471/7350 [02:29<02:28, 26.20it/s]2022-02-22 21:50:47,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3474/7350 [02:29<02:54, 22.24it/s]2022-02-22 21:50:47,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3477/7350 [02:29<02:52, 22.44it/s]2022-02-22 21:50:47,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:47,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3481/7350 [02:29<02:39, 24.22it/s]2022-02-22 21:50:48,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3484/7350 [02:29<03:11, 20.18it/s]2022-02-22 21:50:48,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▌                    | 3489/7350 [02:30<02:47, 23.11it/s]2022-02-22 21:50:48,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3493/7350 [02:30<02:47, 23.05it/s]2022-02-22 21:50:48,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3496/7350 [02:30<02:44, 23.46it/s]2022-02-22 21:50:48,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3499/7350 [02:30<03:33, 18.06it/s]2022-02-22 21:50:48,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:48,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3504/7350 [02:30<03:06, 20.62it/s]2022-02-22 21:50:49,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3512/7350 [02:31<02:52, 22.27it/s]2022-02-22 21:50:49,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3515/7350 [02:31<02:57, 21.62it/s]2022-02-22 21:50:49,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3522/7350 [02:31<02:14, 28.46it/s]2022-02-22 21:50:49,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:49,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3526/7350 [02:31<03:07, 20.34it/s]2022-02-22 21:50:50,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3533/7350 [02:32<02:52, 22.15it/s]2022-02-22 21:50:50,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3536/7350 [02:32<02:45, 23.10it/s]2022-02-22 21:50:50,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3543/7350 [02:32<02:54, 21.76it/s]2022-02-22 21:50:50,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:50,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3547/7350 [02:32<02:36, 24.33it/s]2022-02-22 21:50:50,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3550/7350 [02:32<02:31, 25.06it/s]2022-02-22 21:50:51,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3553/7350 [02:32<02:51, 22.10it/s]2022-02-22 21:50:51,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3557/7350 [02:33<02:43, 23.17it/s]2022-02-22 21:50:51,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▉                    | 3563/7350 [02:33<02:31, 25.00it/s]2022-02-22 21:50:51,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3566/7350 [02:33<02:42, 23.23it/s]2022-02-22 21:50:51,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:51,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3569/7350 [02:33<02:37, 23.96it/s]2022-02-22 21:50:51,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3573/7350 [02:33<02:24, 26.13it/s]2022-02-22 21:50:52,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3576/7350 [02:34<03:27, 18.23it/s]2022-02-22 21:50:52,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3584/7350 [02:34<02:19, 26.92it/s]2022-02-22 21:50:52,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3588/7350 [02:34<02:41, 23.27it/s]2022-02-22 21:50:52,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3592/7350 [02:34<02:34, 24.39it/s]2022-02-22 21:50:52,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:52,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3596/7350 [02:34<02:45, 22.70it/s]2022-02-22 21:50:53,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3599/7350 [02:34<02:42, 23.08it/s]2022-02-22 21:50:53,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3606/7350 [02:35<02:27, 25.40it/s]2022-02-22 21:50:53,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3609/7350 [02:35<02:38, 23.61it/s]2022-02-22 21:50:53,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3612/7350 [02:35<02:54, 21.43it/s]2022-02-22 21:50:53,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:53,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3616/7350 [02:35<02:52, 21.69it/s]2022-02-22 21:50:53,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3621/7350 [02:35<02:21, 26.38it/s]2022-02-22 21:50:54,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3625/7350 [02:35<02:25, 25.66it/s]2022-02-22 21:50:54,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3628/7350 [02:36<02:43, 22.78it/s]2022-02-22 21:50:54,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3632/7350 [02:36<02:38, 23.49it/s]2022-02-22 21:50:54,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3635/7350 [02:36<02:30, 24.72it/s]2022-02-22 21:50:54,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3638/7350 [02:36<02:41, 22.96it/s]2022-02-22 21:50:54,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:54,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▎                   | 3641/7350 [02:36<02:41, 23.04it/s]2022-02-22 21:50:55,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▎                   | 3645/7350 [02:36<02:25, 25.55it/s]2022-02-22 21:50:55,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▎                   | 3648/7350 [02:37<03:10, 19.48it/s]2022-02-22 21:50:55,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3653/7350 [02:37<02:34, 23.96it/s]2022-02-22 21:50:55,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3657/7350 [02:37<02:33, 24.05it/s]2022-02-22 21:50:55,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3660/7350 [02:37<02:31, 24.32it/s]2022-02-22 21:50:55,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3663/7350 [02:37<02:40, 22.94it/s]2022-02-22 21:50:55,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:55,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3668/7350 [02:37<02:08, 28.58it/s]2022-02-22 21:50:56,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3672/7350 [02:37<02:53, 21.22it/s]2022-02-22 21:50:56,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3677/7350 [02:38<02:31, 24.16it/s]2022-02-22 21:50:56,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3681/7350 [02:38<02:21, 25.97it/s]2022-02-22 21:50:56,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3684/7350 [02:38<03:03, 20.03it/s]2022-02-22 21:50:56,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:56,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3688/7350 [02:38<02:46, 22.06it/s]2022-02-22 21:50:56,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3694/7350 [02:38<02:21, 25.86it/s]2022-02-22 21:50:57,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3697/7350 [02:39<02:34, 23.59it/s]2022-02-22 21:50:57,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▋                   | 3700/7350 [02:39<02:39, 22.83it/s]2022-02-22 21:50:57,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▋                   | 3705/7350 [02:39<03:11, 19.07it/s]2022-02-22 21:50:57,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3712/7350 [02:39<02:15, 26.81it/s]2022-02-22 21:50:57,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:57,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3716/7350 [02:39<02:34, 23.53it/s]2022-02-22 21:50:58,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3722/7350 [02:40<02:27, 24.59it/s]2022-02-22 21:50:58,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3725/7350 [02:40<02:31, 23.86it/s]2022-02-22 21:50:58,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3729/7350 [02:40<02:32, 23.69it/s]2022-02-22 21:50:58,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3733/7350 [02:40<02:20, 25.80it/s]2022-02-22 21:50:58,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:58,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3736/7350 [02:40<02:42, 22.30it/s]2022-02-22 21:50:59,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3742/7350 [02:40<02:12, 27.15it/s]2022-02-22 21:50:59,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3745/7350 [02:41<02:36, 23.02it/s]2022-02-22 21:50:59,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3748/7350 [02:41<02:48, 21.43it/s]2022-02-22 21:50:59,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3751/7350 [02:41<02:43, 22.04it/s]2022-02-22 21:50:59,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3755/7350 [02:41<02:21, 25.41it/s]2022-02-22 21:50:59,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3758/7350 [02:41<02:17, 26.05it/s]2022-02-22 21:50:59,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:50:59,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3761/7350 [02:41<02:18, 26.00it/s]2022-02-22 21:51:00,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3765/7350 [02:41<02:18, 25.94it/s]2022-02-22 21:51:00,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3768/7350 [02:42<02:43, 21.88it/s]2022-02-22 21:51:00,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3772/7350 [02:42<02:29, 23.96it/s]2022-02-22 21:51:00,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3776/7350 [02:42<02:49, 21.14it/s]2022-02-22 21:51:00,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3779/7350 [02:42<02:55, 20.31it/s]2022-02-22 21:51:00,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:00,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3785/7350 [02:42<02:07, 27.96it/s]2022-02-22 21:51:01,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████                   | 3789/7350 [02:43<03:18, 17.92it/s]2022-02-22 21:51:01,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3797/7350 [02:43<02:31, 23.43it/s]2022-02-22 21:51:01,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3800/7350 [02:43<02:47, 21.21it/s]2022-02-22 21:51:01,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3805/7350 [02:43<02:20, 25.15it/s]2022-02-22 21:51:01,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:01,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3808/7350 [02:43<02:28, 23.80it/s]2022-02-22 21:51:02,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3811/7350 [02:43<02:43, 21.67it/s]2022-02-22 21:51:02,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3816/7350 [02:44<02:33, 23.04it/s]2022-02-22 21:51:02,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3819/7350 [02:44<02:25, 24.25it/s]2022-02-22 21:51:02,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3822/7350 [02:44<02:19, 25.25it/s]2022-02-22 21:51:02,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:02,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3826/7350 [02:44<02:53, 20.27it/s]2022-02-22 21:51:02,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3830/7350 [02:44<02:35, 22.67it/s]2022-02-22 21:51:03,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3836/7350 [02:44<02:25, 24.17it/s]2022-02-22 21:51:03,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3839/7350 [02:45<02:30, 23.39it/s]2022-02-22 21:51:03,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3842/7350 [02:45<02:25, 24.14it/s]2022-02-22 21:51:03,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3846/7350 [02:45<02:23, 24.43it/s]2022-02-22 21:51:03,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3849/7350 [02:45<02:37, 22.26it/s]2022-02-22 21:51:03,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:03,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3852/7350 [02:45<02:30, 23.18it/s]2022-02-22 21:51:04,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3856/7350 [02:45<02:16, 25.64it/s]2022-02-22 21:51:04,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▍                  | 3859/7350 [02:45<02:13, 26.10it/s]2022-02-22 21:51:04,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▍                  | 3862/7350 [02:46<02:34, 22.59it/s]2022-02-22 21:51:04,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3865/7350 [02:46<02:53, 20.07it/s]2022-02-22 21:51:04,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3870/7350 [02:46<02:14, 25.82it/s]2022-02-22 21:51:04,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3873/7350 [02:46<02:30, 23.18it/s]2022-02-22 21:51:04,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:04,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3877/7350 [02:46<02:44, 21.10it/s]2022-02-22 21:51:05,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3882/7350 [02:47<02:55, 19.78it/s]2022-02-22 21:51:05,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3888/7350 [02:47<02:24, 23.95it/s]2022-02-22 21:51:05,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3892/7350 [02:47<02:30, 22.96it/s]2022-02-22 21:51:05,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3895/7350 [02:47<02:40, 21.57it/s]2022-02-22 21:51:05,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:05,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3900/7350 [02:47<02:10, 26.42it/s]2022-02-22 21:51:06,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3903/7350 [02:47<02:25, 23.71it/s]2022-02-22 21:51:06,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3906/7350 [02:47<02:21, 24.29it/s]2022-02-22 21:51:06,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3910/7350 [02:48<02:13, 25.86it/s]2022-02-22 21:51:06,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3913/7350 [02:48<02:47, 20.52it/s]2022-02-22 21:51:06,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3918/7350 [02:48<02:44, 20.85it/s]2022-02-22 21:51:06,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:06,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3923/7350 [02:48<02:25, 23.56it/s]2022-02-22 21:51:07,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3927/7350 [02:48<02:12, 25.78it/s]2022-02-22 21:51:07,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3930/7350 [02:48<02:11, 25.95it/s]2022-02-22 21:51:07,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▊                  | 3933/7350 [02:49<02:46, 20.57it/s]2022-02-22 21:51:07,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3936/7350 [02:49<02:42, 20.98it/s]2022-02-22 21:51:07,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3941/7350 [02:49<02:32, 22.37it/s]2022-02-22 21:51:07,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:07,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3944/7350 [02:49<02:42, 20.91it/s]2022-02-22 21:51:08,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3951/7350 [02:49<02:18, 24.48it/s]2022-02-22 21:51:08,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3954/7350 [02:50<02:25, 23.32it/s]2022-02-22 21:51:08,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3959/7350 [02:50<02:02, 27.59it/s]2022-02-22 21:51:08,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3962/7350 [02:50<02:33, 22.05it/s]2022-02-22 21:51:08,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3966/7350 [02:50<02:14, 25.16it/s]2022-02-22 21:51:08,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:08,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3969/7350 [02:50<02:21, 23.86it/s]2022-02-22 21:51:09,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3972/7350 [02:50<02:56, 19.13it/s]2022-02-22 21:51:09,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3977/7350 [02:51<02:18, 24.33it/s]2022-02-22 21:51:09,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3981/7350 [02:51<02:06, 26.60it/s]2022-02-22 21:51:09,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3984/7350 [02:51<02:52, 19.51it/s]2022-02-22 21:51:09,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3991/7350 [02:51<02:10, 25.84it/s]2022-02-22 21:51:09,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:09,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3994/7350 [02:51<02:47, 20.04it/s]2022-02-22 21:51:10,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 4000/7350 [02:52<02:23, 23.38it/s]2022-02-22 21:51:10,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 4003/7350 [02:52<02:37, 21.19it/s]2022-02-22 21:51:10,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4007/7350 [02:52<02:20, 23.72it/s]2022-02-22 21:51:10,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4010/7350 [02:52<02:24, 23.13it/s]2022-02-22 21:51:10,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:10,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4014/7350 [02:52<02:15, 24.57it/s]2022-02-22 21:51:11,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4018/7350 [02:52<02:19, 23.86it/s]2022-02-22 21:51:11,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4021/7350 [02:53<02:28, 22.46it/s]2022-02-22 21:51:11,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4025/7350 [02:53<02:22, 23.26it/s]2022-02-22 21:51:11,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4028/7350 [02:53<02:38, 20.93it/s]2022-02-22 21:51:11,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4033/7350 [02:53<02:39, 20.81it/s]2022-02-22 21:51:11,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:11,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4037/7350 [02:53<02:33, 21.61it/s]2022-02-22 21:51:12,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4043/7350 [02:54<02:24, 22.90it/s]2022-02-22 21:51:12,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4046/7350 [02:54<02:17, 24.04it/s]2022-02-22 21:51:12,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4049/7350 [02:54<02:22, 23.14it/s]2022-02-22 21:51:12,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4052/7350 [02:54<02:24, 22.87it/s]2022-02-22 21:51:12,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4055/7350 [02:54<02:31, 21.78it/s]2022-02-22 21:51:12,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:12,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4060/7350 [02:54<02:03, 26.56it/s]2022-02-22 21:51:13,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4063/7350 [02:54<02:11, 24.92it/s]2022-02-22 21:51:13,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4066/7350 [02:54<02:24, 22.66it/s]2022-02-22 21:51:13,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4070/7350 [02:55<02:35, 21.03it/s]2022-02-22 21:51:13,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4075/7350 [02:55<02:21, 23.08it/s]2022-02-22 21:51:13,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▋                 | 4079/7350 [02:55<02:06, 25.95it/s]2022-02-22 21:51:13,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:13,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4082/7350 [02:55<02:35, 20.96it/s]2022-02-22 21:51:14,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4086/7350 [02:55<02:50, 19.18it/s]2022-02-22 21:51:14,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4090/7350 [02:56<02:23, 22.74it/s]2022-02-22 21:51:14,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4093/7350 [02:56<02:24, 22.51it/s]2022-02-22 21:51:14,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4096/7350 [02:56<02:19, 23.35it/s]2022-02-22 21:51:14,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4099/7350 [02:56<02:19, 23.32it/s]2022-02-22 21:51:14,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:14,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4102/7350 [02:56<02:40, 20.28it/s]2022-02-22 21:51:14,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4107/7350 [02:56<02:05, 25.77it/s]2022-02-22 21:51:15,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4110/7350 [02:56<02:07, 25.48it/s]2022-02-22 21:51:15,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4113/7350 [02:57<02:21, 22.96it/s]2022-02-22 21:51:15,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4116/7350 [02:57<02:30, 21.53it/s]2022-02-22 21:51:15,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4121/7350 [02:57<02:21, 22.78it/s]2022-02-22 21:51:15,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4124/7350 [02:57<02:31, 21.30it/s]2022-02-22 21:51:15,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:15,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4131/7350 [02:57<02:39, 20.23it/s]2022-02-22 21:51:16,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4137/7350 [02:58<02:17, 23.42it/s]2022-02-22 21:51:16,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4141/7350 [02:58<02:12, 24.28it/s]2022-02-22 21:51:16,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4145/7350 [02:58<02:04, 25.69it/s]2022-02-22 21:51:16,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████                 | 4148/7350 [02:58<02:19, 22.97it/s]2022-02-22 21:51:16,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:16,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████                 | 4152/7350 [02:58<02:16, 23.46it/s]2022-02-22 21:51:17,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4157/7350 [02:59<02:34, 20.69it/s]2022-02-22 21:51:17,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4163/7350 [02:59<02:05, 25.31it/s]2022-02-22 21:51:17,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4167/7350 [02:59<02:02, 25.99it/s]2022-02-22 21:51:17,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4171/7350 [02:59<02:19, 22.86it/s]2022-02-22 21:51:17,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:17,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4175/7350 [02:59<02:11, 24.21it/s]2022-02-22 21:51:18,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4179/7350 [02:59<02:08, 24.63it/s]2022-02-22 21:51:18,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4182/7350 [03:00<02:34, 20.50it/s]2022-02-22 21:51:18,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4187/7350 [03:00<02:04, 25.34it/s]2022-02-22 21:51:18,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4190/7350 [03:00<02:01, 26.01it/s]2022-02-22 21:51:18,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4193/7350 [03:00<02:15, 23.34it/s]2022-02-22 21:51:18,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4196/7350 [03:00<02:18, 22.82it/s]2022-02-22 21:51:18,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:18,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4199/7350 [03:00<02:21, 22.31it/s]2022-02-22 21:51:19,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4205/7350 [03:01<02:37, 20.00it/s]2022-02-22 21:51:19,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4211/7350 [03:01<02:06, 24.82it/s]2022-02-22 21:51:19,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4215/7350 [03:01<02:09, 24.19it/s]2022-02-22 21:51:19,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▍                | 4219/7350 [03:01<02:00, 26.09it/s]2022-02-22 21:51:19,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:19,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▍                | 4223/7350 [03:01<01:53, 27.52it/s]2022-02-22 21:51:20,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▍                | 4226/7350 [03:01<02:10, 23.86it/s]2022-02-22 21:51:20,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4229/7350 [03:01<02:12, 23.57it/s]2022-02-22 21:51:20,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4233/7350 [03:02<02:09, 24.02it/s]2022-02-22 21:51:20,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4236/7350 [03:02<02:08, 24.18it/s]2022-02-22 21:51:20,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4239/7350 [03:02<02:09, 24.01it/s]2022-02-22 21:51:20,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4242/7350 [03:02<02:12, 23.39it/s]2022-02-22 21:51:20,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:20,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4245/7350 [03:02<02:23, 21.68it/s]2022-02-22 21:51:21,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4248/7350 [03:02<02:26, 21.19it/s]2022-02-22 21:51:21,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4251/7350 [03:02<02:31, 20.41it/s]2022-02-22 21:51:21,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4255/7350 [03:03<02:11, 23.51it/s]2022-02-22 21:51:21,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4258/7350 [03:03<02:07, 24.25it/s]2022-02-22 21:51:21,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4261/7350 [03:03<02:23, 21.53it/s]2022-02-22 21:51:21,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4265/7350 [03:03<02:05, 24.56it/s]2022-02-22 21:51:21,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:21,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4269/7350 [03:03<02:24, 21.39it/s]2022-02-22 21:51:22,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4275/7350 [03:03<02:04, 24.62it/s]2022-02-22 21:51:22,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4278/7350 [03:04<02:15, 22.64it/s]2022-02-22 21:51:22,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4282/7350 [03:04<02:05, 24.37it/s]2022-02-22 21:51:22,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4285/7350 [03:04<02:08, 23.87it/s]2022-02-22 21:51:22,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4288/7350 [03:04<02:18, 22.08it/s]2022-02-22 21:51:22,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:22,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4292/7350 [03:04<02:06, 24.10it/s]2022-02-22 21:51:23,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4295/7350 [03:04<02:04, 24.48it/s]2022-02-22 21:51:23,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4298/7350 [03:05<02:50, 17.95it/s]2022-02-22 21:51:23,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4304/7350 [03:05<02:05, 24.23it/s]2022-02-22 21:51:23,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4307/7350 [03:05<02:11, 23.11it/s]2022-02-22 21:51:23,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4310/7350 [03:05<02:18, 21.97it/s]2022-02-22 21:51:23,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:23,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4314/7350 [03:05<02:34, 19.69it/s]2022-02-22 21:51:24,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4319/7350 [03:05<02:02, 24.73it/s]2022-02-22 21:51:24,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4322/7350 [03:06<02:02, 24.75it/s]2022-02-22 21:51:24,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4325/7350 [03:06<02:10, 23.24it/s]2022-02-22 21:51:24,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4329/7350 [03:06<02:02, 24.75it/s]2022-02-22 21:51:24,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4332/7350 [03:06<01:58, 25.38it/s]2022-02-22 21:51:24,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4335/7350 [03:06<02:12, 22.81it/s]2022-02-22 21:51:24,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:24,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4339/7350 [03:06<02:13, 22.63it/s]2022-02-22 21:51:25,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4343/7350 [03:06<01:56, 25.84it/s]2022-02-22 21:51:25,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4346/7350 [03:07<02:07, 23.52it/s]2022-02-22 21:51:25,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4349/7350 [03:07<02:05, 23.92it/s]2022-02-22 21:51:25,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4352/7350 [03:07<02:23, 20.86it/s]2022-02-22 21:51:25,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4357/7350 [03:07<02:08, 23.33it/s]2022-02-22 21:51:25,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:25,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4360/7350 [03:07<02:20, 21.33it/s]2022-02-22 21:51:26,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4367/7350 [03:08<02:26, 20.40it/s]2022-02-22 21:51:26,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4372/7350 [03:08<02:08, 23.10it/s]2022-02-22 21:51:26,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▏               | 4377/7350 [03:08<01:54, 26.04it/s]2022-02-22 21:51:26,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▏               | 4380/7350 [03:08<02:11, 22.55it/s]2022-02-22 21:51:26,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:26,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4386/7350 [03:08<01:48, 27.38it/s]2022-02-22 21:51:27,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4389/7350 [03:08<02:13, 22.12it/s]2022-02-22 21:51:27,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4392/7350 [03:09<02:23, 20.65it/s]2022-02-22 21:51:27,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4398/7350 [03:09<02:10, 22.66it/s]2022-02-22 21:51:27,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4401/7350 [03:09<02:21, 20.78it/s]2022-02-22 21:51:27,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:27,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4407/7350 [03:09<01:54, 25.70it/s]2022-02-22 21:51:28,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4410/7350 [03:09<01:58, 24.83it/s]2022-02-22 21:51:28,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4413/7350 [03:09<01:59, 24.53it/s]2022-02-22 21:51:28,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4417/7350 [03:10<02:29, 19.67it/s]2022-02-22 21:51:28,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4422/7350 [03:10<02:01, 24.03it/s]2022-02-22 21:51:28,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4427/7350 [03:10<01:59, 24.40it/s]2022-02-22 21:51:28,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:28,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4430/7350 [03:10<02:08, 22.68it/s]2022-02-22 21:51:29,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4434/7350 [03:10<01:56, 25.04it/s]2022-02-22 21:51:29,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4437/7350 [03:10<01:53, 25.64it/s]2022-02-22 21:51:29,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4440/7350 [03:11<02:25, 20.02it/s]2022-02-22 21:51:29,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4445/7350 [03:11<01:52, 25.82it/s]2022-02-22 21:51:29,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▌               | 4449/7350 [03:11<01:57, 24.74it/s]2022-02-22 21:51:29,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:29,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▌               | 4452/7350 [03:11<02:02, 23.73it/s]2022-02-22 21:51:29,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4455/7350 [03:11<02:10, 22.26it/s]2022-02-22 21:51:30,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4459/7350 [03:11<02:00, 24.03it/s]2022-02-22 21:51:30,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4462/7350 [03:12<02:23, 20.15it/s]2022-02-22 21:51:30,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4468/7350 [03:12<02:21, 20.34it/s]2022-02-22 21:51:30,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:30,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4474/7350 [03:12<02:14, 21.40it/s]2022-02-22 21:51:31,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4478/7350 [03:12<02:18, 20.77it/s]2022-02-22 21:51:31,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4483/7350 [03:13<02:00, 23.89it/s]2022-02-22 21:51:31,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4487/7350 [03:13<02:13, 21.39it/s]2022-02-22 21:51:31,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4494/7350 [03:13<01:44, 27.29it/s]2022-02-22 21:51:31,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4497/7350 [03:13<01:49, 25.96it/s]2022-02-22 21:51:31,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:31,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4500/7350 [03:13<02:18, 20.56it/s]2022-02-22 21:51:32,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4507/7350 [03:13<01:53, 25.12it/s]2022-02-22 21:51:32,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4510/7350 [03:14<02:21, 20.01it/s]2022-02-22 21:51:32,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4515/7350 [03:14<02:03, 22.97it/s]2022-02-22 21:51:32,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4519/7350 [03:14<01:56, 24.28it/s]2022-02-22 21:51:32,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:32,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|███████████████████████▉               | 4522/7350 [03:14<02:15, 20.81it/s]2022-02-22 21:51:33,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4527/7350 [03:14<01:49, 25.82it/s]2022-02-22 21:51:33,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4530/7350 [03:15<02:13, 21.09it/s]2022-02-22 21:51:33,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4533/7350 [03:15<02:05, 22.46it/s]2022-02-22 21:51:33,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4538/7350 [03:15<01:47, 26.16it/s]2022-02-22 21:51:33,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4541/7350 [03:15<02:17, 20.41it/s]2022-02-22 21:51:33,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:33,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4544/7350 [03:15<02:10, 21.51it/s]2022-02-22 21:51:34,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4550/7350 [03:15<01:58, 23.57it/s]2022-02-22 21:51:34,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4553/7350 [03:16<01:58, 23.70it/s]2022-02-22 21:51:34,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4556/7350 [03:16<02:11, 21.25it/s]2022-02-22 21:51:34,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4560/7350 [03:16<01:58, 23.50it/s]2022-02-22 21:51:34,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4563/7350 [03:16<02:00, 23.18it/s]2022-02-22 21:51:34,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4566/7350 [03:16<01:58, 23.49it/s]2022-02-22 21:51:34,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:34,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4570/7350 [03:16<01:59, 23.35it/s]2022-02-22 21:51:35,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4573/7350 [03:16<02:03, 22.55it/s]2022-02-22 21:51:35,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4576/7350 [03:17<02:02, 22.69it/s]2022-02-22 21:51:35,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4580/7350 [03:17<01:49, 25.34it/s]2022-02-22 21:51:35,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4583/7350 [03:17<01:51, 24.88it/s]2022-02-22 21:51:35,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4586/7350 [03:17<02:08, 21.49it/s]2022-02-22 21:51:35,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:35,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4591/7350 [03:17<01:59, 23.05it/s]2022-02-22 21:51:36,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4595/7350 [03:17<01:47, 25.67it/s]2022-02-22 21:51:36,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4598/7350 [03:17<01:57, 23.41it/s]2022-02-22 21:51:36,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4602/7350 [03:18<01:50, 24.96it/s]2022-02-22 21:51:36,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4605/7350 [03:18<02:00, 22.86it/s]2022-02-22 21:51:36,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4608/7350 [03:18<02:04, 22.08it/s]2022-02-22 21:51:36,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4613/7350 [03:18<01:38, 27.76it/s]2022-02-22 21:51:36,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:36,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4616/7350 [03:18<02:14, 20.25it/s]2022-02-22 21:51:37,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4621/7350 [03:18<01:56, 23.35it/s]2022-02-22 21:51:37,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4624/7350 [03:19<02:10, 20.86it/s]2022-02-22 21:51:37,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4630/7350 [03:19<01:44, 26.03it/s]2022-02-22 21:51:37,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4633/7350 [03:19<02:07, 21.31it/s]2022-02-22 21:51:37,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:37,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4636/7350 [03:19<02:08, 21.09it/s]2022-02-22 21:51:38,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4642/7350 [03:19<01:55, 23.36it/s]2022-02-22 21:51:38,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4645/7350 [03:20<02:06, 21.44it/s]2022-02-22 21:51:38,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4648/7350 [03:20<02:03, 21.84it/s]2022-02-22 21:51:38,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4652/7350 [03:20<01:56, 23.13it/s]2022-02-22 21:51:38,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4655/7350 [03:20<02:01, 22.18it/s]2022-02-22 21:51:38,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:38,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4661/7350 [03:20<01:47, 24.98it/s]2022-02-22 21:51:39,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▊              | 4665/7350 [03:20<01:49, 24.58it/s]2022-02-22 21:51:39,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4670/7350 [03:21<01:39, 26.83it/s]2022-02-22 21:51:39,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4673/7350 [03:21<01:52, 23.72it/s]2022-02-22 21:51:39,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4676/7350 [03:21<01:47, 24.93it/s]2022-02-22 21:51:39,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4680/7350 [03:21<01:37, 27.29it/s]2022-02-22 21:51:39,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4683/7350 [03:21<01:47, 24.90it/s]2022-02-22 21:51:39,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:39,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4686/7350 [03:21<02:06, 21.11it/s]2022-02-22 21:51:40,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4691/7350 [03:21<01:49, 24.36it/s]2022-02-22 21:51:40,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4694/7350 [03:22<02:06, 20.97it/s]2022-02-22 21:51:40,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4700/7350 [03:22<01:49, 24.17it/s]2022-02-22 21:51:40,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4703/7350 [03:22<01:45, 25.11it/s]2022-02-22 21:51:40,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:40,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4706/7350 [03:22<02:01, 21.79it/s]2022-02-22 21:51:40,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4710/7350 [03:22<01:48, 24.32it/s]2022-02-22 21:51:41,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4713/7350 [03:22<01:48, 24.33it/s]2022-02-22 21:51:41,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4716/7350 [03:23<01:50, 23.94it/s]2022-02-22 21:51:41,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4719/7350 [03:23<01:53, 23.08it/s]2022-02-22 21:51:41,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4722/7350 [03:23<01:49, 23.93it/s]2022-02-22 21:51:41,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4726/7350 [03:23<01:35, 27.56it/s]2022-02-22 21:51:41,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4729/7350 [03:23<02:05, 20.95it/s]2022-02-22 21:51:41,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:41,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4732/7350 [03:23<02:15, 19.25it/s]2022-02-22 21:51:42,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▏             | 4738/7350 [03:23<01:41, 25.77it/s]2022-02-22 21:51:42,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4741/7350 [03:24<01:56, 22.31it/s]2022-02-22 21:51:42,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4745/7350 [03:24<01:53, 22.87it/s]2022-02-22 21:51:42,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4748/7350 [03:24<02:06, 20.53it/s]2022-02-22 21:51:42,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:42,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4751/7350 [03:24<01:59, 21.78it/s]2022-02-22 21:51:43,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4755/7350 [03:24<01:42, 25.29it/s]2022-02-22 21:51:43,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4758/7350 [03:24<01:54, 22.64it/s]2022-02-22 21:51:43,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4761/7350 [03:25<01:51, 23.31it/s]2022-02-22 21:51:43,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4765/7350 [03:25<01:55, 22.40it/s]2022-02-22 21:51:43,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4769/7350 [03:25<01:56, 22.08it/s]2022-02-22 21:51:43,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4775/7350 [03:25<01:37, 26.35it/s]2022-02-22 21:51:43,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:43,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4779/7350 [03:25<01:43, 24.85it/s]2022-02-22 21:51:44,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4782/7350 [03:25<01:40, 25.51it/s]2022-02-22 21:51:44,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4786/7350 [03:26<01:42, 25.07it/s]2022-02-22 21:51:44,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4789/7350 [03:26<01:45, 24.22it/s]2022-02-22 21:51:44,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4793/7350 [03:26<01:43, 24.66it/s]2022-02-22 21:51:44,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4796/7350 [03:26<02:09, 19.75it/s]2022-02-22 21:51:44,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:44,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4801/7350 [03:26<02:01, 20.98it/s]2022-02-22 21:51:45,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▌             | 4807/7350 [03:26<01:46, 23.98it/s]2022-02-22 21:51:45,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▌             | 4812/7350 [03:27<01:40, 25.13it/s]2022-02-22 21:51:45,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4815/7350 [03:27<01:45, 24.09it/s]2022-02-22 21:51:45,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4818/7350 [03:27<01:55, 21.87it/s]2022-02-22 21:51:45,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4821/7350 [03:27<01:48, 23.36it/s]2022-02-22 21:51:45,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:45,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4825/7350 [03:27<01:41, 24.99it/s]2022-02-22 21:51:46,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4830/7350 [03:27<02:02, 20.63it/s]2022-02-22 21:51:46,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4836/7350 [03:28<01:33, 26.88it/s]2022-02-22 21:51:46,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4840/7350 [03:28<01:49, 23.02it/s]2022-02-22 21:51:46,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4846/7350 [03:28<01:28, 28.36it/s]2022-02-22 21:51:46,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:46,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4850/7350 [03:28<01:35, 26.22it/s]2022-02-22 21:51:46,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4855/7350 [03:28<01:21, 30.62it/s]2022-02-22 21:51:47,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4859/7350 [03:28<01:17, 31.99it/s]2022-02-22 21:51:47,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4863/7350 [03:29<01:34, 26.35it/s]2022-02-22 21:51:47,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4869/7350 [03:29<01:20, 30.89it/s]2022-02-22 21:51:47,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4873/7350 [03:29<01:36, 25.69it/s]2022-02-22 21:51:47,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▉             | 4878/7350 [03:29<01:24, 29.37it/s]2022-02-22 21:51:47,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:47,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▉             | 4882/7350 [03:29<01:29, 27.53it/s]2022-02-22 21:51:48,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▉             | 4886/7350 [03:29<01:23, 29.38it/s]2022-02-22 21:51:48,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|█████████████████████████▉             | 4890/7350 [03:30<01:29, 27.49it/s]2022-02-22 21:51:48,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|█████████████████████████▉             | 4893/7350 [03:30<01:35, 25.62it/s]2022-02-22 21:51:48,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|█████████████████████████▉             | 4897/7350 [03:30<01:30, 26.97it/s]2022-02-22 21:51:48,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4902/7350 [03:30<01:21, 30.20it/s]2022-02-22 21:51:48,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4906/7350 [03:30<01:28, 27.53it/s]2022-02-22 21:51:48,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:48,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4909/7350 [03:30<01:32, 26.47it/s]2022-02-22 21:51:49,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4913/7350 [03:30<01:34, 25.69it/s]2022-02-22 21:51:49,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4916/7350 [03:31<01:33, 25.93it/s]2022-02-22 21:51:49,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4921/7350 [03:31<01:20, 30.07it/s]2022-02-22 21:51:49,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4925/7350 [03:31<01:24, 28.74it/s]2022-02-22 21:51:49,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4928/7350 [03:31<01:24, 28.67it/s]2022-02-22 21:51:49,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4932/7350 [03:31<01:22, 29.42it/s]2022-02-22 21:51:49,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:49,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4935/7350 [03:31<01:24, 28.49it/s]2022-02-22 21:51:49,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4938/7350 [03:31<01:37, 24.65it/s]2022-02-22 21:51:50,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4943/7350 [03:31<01:30, 26.66it/s]2022-02-22 21:51:50,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4946/7350 [03:32<01:32, 26.12it/s]2022-02-22 21:51:50,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4953/7350 [03:32<01:24, 28.39it/s]2022-02-22 21:51:50,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4956/7350 [03:32<01:29, 26.88it/s]2022-02-22 21:51:50,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:50,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4963/7350 [03:32<01:23, 28.73it/s]2022-02-22 21:51:50,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4966/7350 [03:32<01:24, 28.33it/s]2022-02-22 21:51:51,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4970/7350 [03:32<01:19, 29.80it/s]2022-02-22 21:51:51,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4973/7350 [03:33<01:25, 27.91it/s]2022-02-22 21:51:51,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4976/7350 [03:33<01:27, 27.13it/s]2022-02-22 21:51:51,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4979/7350 [03:33<01:31, 25.78it/s]2022-02-22 21:51:51,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4984/7350 [03:33<01:33, 25.41it/s]2022-02-22 21:51:51,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4990/7350 [03:33<01:12, 32.54it/s]2022-02-22 21:51:51,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:51,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4994/7350 [03:33<01:39, 23.58it/s]2022-02-22 21:51:52,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5002/7350 [03:34<01:17, 30.35it/s]2022-02-22 21:51:52,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5006/7350 [03:34<01:20, 29.03it/s]2022-02-22 21:51:52,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5011/7350 [03:34<01:15, 30.93it/s]2022-02-22 21:51:52,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5015/7350 [03:34<01:23, 27.84it/s]2022-02-22 21:51:52,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5018/7350 [03:34<01:26, 27.11it/s]2022-02-22 21:51:52,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:52,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5023/7350 [03:34<01:19, 29.22it/s]2022-02-22 21:51:53,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5027/7350 [03:35<01:29, 25.96it/s]2022-02-22 21:51:53,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5033/7350 [03:35<01:32, 25.12it/s]2022-02-22 21:51:53,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▋            | 5038/7350 [03:35<01:19, 28.97it/s]2022-02-22 21:51:53,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5043/7350 [03:35<01:22, 27.95it/s]2022-02-22 21:51:53,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:53,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5047/7350 [03:35<01:26, 26.78it/s]2022-02-22 21:51:54,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5053/7350 [03:35<01:25, 26.72it/s]2022-02-22 21:51:54,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5057/7350 [03:36<01:28, 25.96it/s]2022-02-22 21:51:54,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5062/7350 [03:36<01:14, 30.51it/s]2022-02-22 21:51:54,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5066/7350 [03:36<01:18, 29.14it/s]2022-02-22 21:51:54,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5070/7350 [03:36<01:22, 27.73it/s]2022-02-22 21:51:54,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5073/7350 [03:36<01:22, 27.45it/s]2022-02-22 21:51:54,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:54,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5076/7350 [03:36<01:22, 27.51it/s]2022-02-22 21:51:55,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5079/7350 [03:36<01:20, 28.11it/s]2022-02-22 21:51:55,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5083/7350 [03:37<01:23, 27.05it/s]2022-02-22 21:51:55,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5087/7350 [03:37<01:35, 23.70it/s]2022-02-22 21:51:55,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5093/7350 [03:37<01:27, 25.85it/s]2022-02-22 21:51:55,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5097/7350 [03:37<01:30, 24.99it/s]2022-02-22 21:51:55,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:55,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5103/7350 [03:37<01:14, 30.19it/s]2022-02-22 21:51:56,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5107/7350 [03:37<01:32, 24.20it/s]2022-02-22 21:51:56,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5114/7350 [03:38<01:15, 29.75it/s]2022-02-22 21:51:56,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5118/7350 [03:38<01:34, 23.65it/s]2022-02-22 21:51:56,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5124/7350 [03:38<01:15, 29.59it/s]2022-02-22 21:51:56,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:56,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5128/7350 [03:38<01:27, 25.50it/s]2022-02-22 21:51:57,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5132/7350 [03:38<01:23, 26.72it/s]2022-02-22 21:51:57,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5136/7350 [03:39<01:25, 26.03it/s]2022-02-22 21:51:57,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5139/7350 [03:39<01:34, 23.35it/s]2022-02-22 21:51:57,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5146/7350 [03:39<01:15, 29.28it/s]2022-02-22 21:51:57,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5150/7350 [03:39<01:23, 26.36it/s]2022-02-22 21:51:57,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:57,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5154/7350 [03:39<01:19, 27.74it/s]2022-02-22 21:51:58,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5157/7350 [03:39<01:28, 24.71it/s]2022-02-22 21:51:58,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5161/7350 [03:40<01:24, 25.84it/s]2022-02-22 21:51:58,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5165/7350 [03:40<01:17, 28.34it/s]2022-02-22 21:51:58,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5168/7350 [03:40<01:20, 27.22it/s]2022-02-22 21:51:58,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5171/7350 [03:40<01:18, 27.61it/s]2022-02-22 21:51:58,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5174/7350 [03:40<01:21, 26.74it/s]2022-02-22 21:51:58,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5177/7350 [03:40<01:19, 27.21it/s]2022-02-22 21:51:58,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:58,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▍           | 5182/7350 [03:40<01:09, 31.36it/s]2022-02-22 21:51:59,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5186/7350 [03:40<01:15, 28.79it/s]2022-02-22 21:51:59,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5189/7350 [03:41<01:23, 25.86it/s]2022-02-22 21:51:59,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5193/7350 [03:41<01:25, 25.27it/s]2022-02-22 21:51:59,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5198/7350 [03:41<01:18, 27.39it/s]2022-02-22 21:51:59,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5203/7350 [03:41<01:22, 26.01it/s]2022-02-22 21:51:59,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:51:59,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5208/7350 [03:41<01:14, 28.64it/s]2022-02-22 21:52:00,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5211/7350 [03:41<01:15, 28.36it/s]2022-02-22 21:52:00,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5214/7350 [03:41<01:22, 26.01it/s]2022-02-22 21:52:00,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5219/7350 [03:42<01:09, 30.75it/s]2022-02-22 21:52:00,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5223/7350 [03:42<01:30, 23.46it/s]2022-02-22 21:52:00,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5227/7350 [03:42<01:24, 25.10it/s]2022-02-22 21:52:00,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5232/7350 [03:42<01:14, 28.61it/s]2022-02-22 21:52:00,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:00,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5236/7350 [03:42<01:25, 24.74it/s]2022-02-22 21:52:01,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5239/7350 [03:42<01:24, 24.97it/s]2022-02-22 21:52:01,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5244/7350 [03:43<01:12, 29.11it/s]2022-02-22 21:52:01,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5248/7350 [03:43<01:13, 28.72it/s]2022-02-22 21:52:01,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5252/7350 [03:43<01:21, 25.71it/s]2022-02-22 21:52:01,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▉           | 5255/7350 [03:43<01:33, 22.31it/s]2022-02-22 21:52:01,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:01,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5259/7350 [03:43<01:26, 24.22it/s]2022-02-22 21:52:02,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5263/7350 [03:43<01:23, 25.11it/s]2022-02-22 21:52:02,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5268/7350 [03:43<01:16, 27.35it/s]2022-02-22 21:52:02,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5272/7350 [03:44<01:10, 29.51it/s]2022-02-22 21:52:02,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5276/7350 [03:44<01:08, 30.28it/s]2022-02-22 21:52:02,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5280/7350 [03:44<01:21, 25.29it/s]2022-02-22 21:52:02,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5284/7350 [03:44<01:15, 27.48it/s]2022-02-22 21:52:02,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:02,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5287/7350 [03:44<01:15, 27.44it/s]2022-02-22 21:52:02,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5290/7350 [03:44<01:21, 25.20it/s]2022-02-22 21:52:03,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5294/7350 [03:44<01:14, 27.67it/s]2022-02-22 21:52:03,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5298/7350 [03:45<01:25, 23.86it/s]2022-02-22 21:52:03,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5303/7350 [03:45<01:09, 29.43it/s]2022-02-22 21:52:03,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5307/7350 [03:45<01:11, 28.41it/s]2022-02-22 21:52:03,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5311/7350 [03:45<01:12, 28.11it/s]2022-02-22 21:52:03,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:03,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5314/7350 [03:45<01:18, 26.01it/s]2022-02-22 21:52:04,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5318/7350 [03:45<01:16, 26.53it/s]2022-02-22 21:52:04,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5321/7350 [03:45<01:19, 25.62it/s]2022-02-22 21:52:04,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▎          | 5327/7350 [03:46<01:13, 27.48it/s]2022-02-22 21:52:04,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5331/7350 [03:46<01:16, 26.38it/s]2022-02-22 21:52:04,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5337/7350 [03:46<01:13, 27.54it/s]2022-02-22 21:52:04,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:04,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5341/7350 [03:46<01:13, 27.51it/s]2022-02-22 21:52:04,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5345/7350 [03:46<01:09, 29.04it/s]2022-02-22 21:52:05,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5348/7350 [03:46<01:19, 25.30it/s]2022-02-22 21:52:05,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5352/7350 [03:47<01:19, 25.14it/s]2022-02-22 21:52:05,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5357/7350 [03:47<01:14, 26.77it/s]2022-02-22 21:52:05,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5360/7350 [03:47<01:13, 27.04it/s]2022-02-22 21:52:05,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5363/7350 [03:47<01:17, 25.71it/s]2022-02-22 21:52:05,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:05,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5366/7350 [03:47<01:22, 24.12it/s]2022-02-22 21:52:06,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5369/7350 [03:47<01:20, 24.68it/s]2022-02-22 21:52:06,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5375/7350 [03:47<01:02, 31.49it/s]2022-02-22 21:52:06,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5379/7350 [03:48<01:15, 26.15it/s]2022-02-22 21:52:06,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5382/7350 [03:48<01:15, 25.92it/s]2022-02-22 21:52:06,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5386/7350 [03:48<01:12, 27.28it/s]2022-02-22 21:52:06,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5389/7350 [03:48<01:19, 24.67it/s]2022-02-22 21:52:06,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:06,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▋          | 5395/7350 [03:48<01:01, 31.79it/s]2022-02-22 21:52:06,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▋          | 5399/7350 [03:48<01:13, 26.43it/s]2022-02-22 21:52:07,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▋          | 5402/7350 [03:48<01:11, 27.09it/s]2022-02-22 21:52:07,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5406/7350 [03:49<01:13, 26.49it/s]2022-02-22 21:52:07,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5409/7350 [03:49<01:14, 26.04it/s]2022-02-22 21:52:07,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5412/7350 [03:49<01:27, 22.06it/s]2022-02-22 21:52:07,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5418/7350 [03:49<01:08, 28.38it/s]2022-02-22 21:52:07,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:07,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5422/7350 [03:49<01:09, 27.81it/s]2022-02-22 21:52:08,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5425/7350 [03:49<01:11, 26.82it/s]2022-02-22 21:52:08,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5430/7350 [03:49<01:06, 28.93it/s]2022-02-22 21:52:08,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5434/7350 [03:50<01:17, 24.82it/s]2022-02-22 21:52:08,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5440/7350 [03:50<01:03, 30.20it/s]2022-02-22 21:52:08,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5444/7350 [03:50<01:14, 25.44it/s]2022-02-22 21:52:08,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:08,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5450/7350 [03:50<01:01, 31.12it/s]2022-02-22 21:52:09,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5454/7350 [03:50<01:14, 25.56it/s]2022-02-22 21:52:09,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5460/7350 [03:51<01:01, 30.63it/s]2022-02-22 21:52:09,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5464/7350 [03:51<01:13, 25.75it/s]2022-02-22 21:52:09,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████          | 5470/7350 [03:51<01:00, 30.89it/s]2022-02-22 21:52:09,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████          | 5474/7350 [03:51<01:11, 26.19it/s]2022-02-22 21:52:09,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:09,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████          | 5478/7350 [03:51<01:08, 27.44it/s]2022-02-22 21:52:10,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████          | 5482/7350 [03:51<01:06, 28.26it/s]2022-02-22 21:52:10,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████          | 5486/7350 [03:52<01:12, 25.80it/s]2022-02-22 21:52:10,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5491/7350 [03:52<01:10, 26.32it/s]2022-02-22 21:52:10,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5495/7350 [03:52<01:06, 27.91it/s]2022-02-22 21:52:10,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5499/7350 [03:52<01:04, 28.70it/s]2022-02-22 21:52:10,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5502/7350 [03:52<01:06, 27.65it/s]2022-02-22 21:52:10,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:10,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5506/7350 [03:52<01:07, 27.48it/s]2022-02-22 21:52:11,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5511/7350 [03:52<01:01, 29.70it/s]2022-02-22 21:52:11,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5514/7350 [03:53<01:14, 24.56it/s]2022-02-22 21:52:11,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5521/7350 [03:53<00:59, 30.99it/s]2022-02-22 21:52:11,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5525/7350 [03:53<01:08, 26.53it/s]2022-02-22 21:52:11,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5531/7350 [03:53<00:57, 31.58it/s]2022-02-22 21:52:11,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:11,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5535/7350 [03:53<01:09, 26.15it/s]2022-02-22 21:52:12,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5540/7350 [03:53<01:04, 28.13it/s]2022-02-22 21:52:12,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5544/7350 [03:54<01:10, 25.46it/s]2022-02-22 21:52:12,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5547/7350 [03:54<01:09, 26.01it/s]2022-02-22 21:52:12,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▍         | 5552/7350 [03:54<01:14, 24.23it/s]2022-02-22 21:52:12,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▍         | 5557/7350 [03:54<01:05, 27.49it/s]2022-02-22 21:52:12,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:12,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5561/7350 [03:54<01:00, 29.51it/s]2022-02-22 21:52:13,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5565/7350 [03:54<01:04, 27.85it/s]2022-02-22 21:52:13,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5568/7350 [03:55<01:08, 25.95it/s]2022-02-22 21:52:13,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5572/7350 [03:55<01:11, 24.70it/s]2022-02-22 21:52:13,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5577/7350 [03:55<01:05, 26.94it/s]2022-02-22 21:52:13,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5581/7350 [03:55<01:01, 28.80it/s]2022-02-22 21:52:13,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5584/7350 [03:55<01:05, 27.06it/s]2022-02-22 21:52:13,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:13,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5587/7350 [03:55<01:06, 26.38it/s]2022-02-22 21:52:14,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5592/7350 [03:55<01:04, 27.09it/s]2022-02-22 21:52:14,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5596/7350 [03:56<01:01, 28.40it/s]2022-02-22 21:52:14,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5600/7350 [03:56<01:03, 27.53it/s]2022-02-22 21:52:14,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5604/7350 [03:56<01:08, 25.39it/s]2022-02-22 21:52:14,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5609/7350 [03:56<00:56, 30.56it/s]2022-02-22 21:52:14,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:14,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5613/7350 [03:56<01:05, 26.51it/s]2022-02-22 21:52:15,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5617/7350 [03:56<01:06, 26.25it/s]2022-02-22 21:52:15,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5622/7350 [03:56<00:59, 28.99it/s]2022-02-22 21:52:15,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▊         | 5626/7350 [03:57<01:10, 24.42it/s]2022-02-22 21:52:15,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5631/7350 [03:57<01:04, 26.71it/s]2022-02-22 21:52:15,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5635/7350 [03:57<01:15, 22.84it/s]2022-02-22 21:52:15,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:15,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5642/7350 [03:57<00:56, 30.13it/s]2022-02-22 21:52:16,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5646/7350 [03:58<01:11, 23.80it/s]2022-02-22 21:52:16,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5654/7350 [03:58<00:51, 32.66it/s]2022-02-22 21:52:16,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5659/7350 [03:58<01:05, 25.70it/s]2022-02-22 21:52:16,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5666/7350 [03:58<00:57, 29.41it/s]2022-02-22 21:52:16,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:16,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5670/7350 [03:58<01:10, 23.99it/s]2022-02-22 21:52:17,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5677/7350 [03:59<01:02, 26.62it/s]2022-02-22 21:52:17,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5681/7350 [03:59<01:03, 26.49it/s]2022-02-22 21:52:17,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5687/7350 [03:59<01:02, 26.56it/s]2022-02-22 21:52:17,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5690/7350 [03:59<01:03, 26.23it/s]2022-02-22 21:52:17,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:17,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5694/7350 [03:59<00:57, 28.73it/s]2022-02-22 21:52:18,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▏        | 5698/7350 [03:59<00:58, 28.08it/s]2022-02-22 21:52:18,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5701/7350 [04:00<01:05, 25.04it/s]2022-02-22 21:52:18,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5705/7350 [04:00<00:59, 27.52it/s]2022-02-22 21:52:18,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5708/7350 [04:00<00:59, 27.70it/s]2022-02-22 21:52:18,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5711/7350 [04:00<01:09, 23.60it/s]2022-02-22 21:52:18,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5715/7350 [04:00<01:00, 27.14it/s]2022-02-22 21:52:18,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:18,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5720/7350 [04:00<00:53, 30.21it/s]2022-02-22 21:52:18,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5724/7350 [04:00<01:03, 25.64it/s]2022-02-22 21:52:19,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5729/7350 [04:01<01:03, 25.33it/s]2022-02-22 21:52:19,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5734/7350 [04:01<00:53, 30.16it/s]2022-02-22 21:52:19,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5738/7350 [04:01<01:00, 26.51it/s]2022-02-22 21:52:19,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5743/7350 [04:01<00:52, 30.44it/s]2022-02-22 21:52:19,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:19,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5747/7350 [04:01<00:55, 28.81it/s]2022-02-22 21:52:19,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5751/7350 [04:01<01:04, 24.84it/s]2022-02-22 21:52:20,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5756/7350 [04:02<01:03, 25.28it/s]2022-02-22 21:52:20,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5761/7350 [04:02<00:59, 26.84it/s]2022-02-22 21:52:20,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5764/7350 [04:02<00:57, 27.45it/s]2022-02-22 21:52:20,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5769/7350 [04:02<00:56, 28.18it/s]2022-02-22 21:52:20,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5773/7350 [04:02<00:52, 30.00it/s]2022-02-22 21:52:20,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:20,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5777/7350 [04:02<00:52, 29.98it/s]2022-02-22 21:52:21,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5781/7350 [04:02<00:58, 26.88it/s]2022-02-22 21:52:21,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5785/7350 [04:03<00:54, 28.58it/s]2022-02-22 21:52:21,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5789/7350 [04:03<00:58, 26.78it/s]2022-02-22 21:52:21,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5793/7350 [04:03<00:59, 26.29it/s]2022-02-22 21:52:21,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5799/7350 [04:03<00:53, 28.90it/s]2022-02-22 21:52:21,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:21,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5802/7350 [04:03<00:54, 28.20it/s]2022-02-22 21:52:21,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5806/7350 [04:03<00:50, 30.47it/s]2022-02-22 21:52:22,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5810/7350 [04:03<00:57, 26.76it/s]2022-02-22 21:52:22,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5815/7350 [04:04<00:51, 29.64it/s]2022-02-22 21:52:22,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5819/7350 [04:04<00:55, 27.35it/s]2022-02-22 21:52:22,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5822/7350 [04:04<00:56, 27.16it/s]2022-02-22 21:52:22,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5827/7350 [04:04<00:47, 32.40it/s]2022-02-22 21:52:22,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:22,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5831/7350 [04:04<00:58, 25.92it/s]2022-02-22 21:52:23,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5835/7350 [04:04<00:53, 28.10it/s]2022-02-22 21:52:23,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5839/7350 [04:04<00:57, 26.21it/s]2022-02-22 21:52:23,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████        | 5843/7350 [04:05<00:53, 28.35it/s]2022-02-22 21:52:23,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5848/7350 [04:05<00:47, 31.54it/s]2022-02-22 21:52:23,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5852/7350 [04:05<00:59, 25.31it/s]2022-02-22 21:52:23,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5858/7350 [04:05<00:47, 31.38it/s]2022-02-22 21:52:23,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:23,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5862/7350 [04:05<00:58, 25.50it/s]2022-02-22 21:52:24,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5868/7350 [04:05<00:48, 30.72it/s]2022-02-22 21:52:24,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5872/7350 [04:06<00:57, 25.56it/s]2022-02-22 21:52:24,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5878/7350 [04:06<00:50, 29.03it/s]2022-02-22 21:52:24,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5882/7350 [04:06<00:51, 28.67it/s]2022-02-22 21:52:24,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5886/7350 [04:06<00:49, 29.43it/s]2022-02-22 21:52:24,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:24,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5890/7350 [04:06<00:49, 29.44it/s]2022-02-22 21:52:25,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5894/7350 [04:06<00:55, 26.35it/s]2022-02-22 21:52:25,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5900/7350 [04:07<00:50, 28.59it/s]2022-02-22 21:52:25,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5903/7350 [04:07<00:56, 25.47it/s]2022-02-22 21:52:25,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5909/7350 [04:07<00:44, 32.49it/s]2022-02-22 21:52:25,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▍       | 5913/7350 [04:07<00:58, 24.69it/s]2022-02-22 21:52:25,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:25,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5920/7350 [04:07<00:49, 28.74it/s]2022-02-22 21:52:26,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5924/7350 [04:08<00:53, 26.59it/s]2022-02-22 21:52:26,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5930/7350 [04:08<00:48, 29.22it/s]2022-02-22 21:52:26,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5934/7350 [04:08<00:53, 26.34it/s]2022-02-22 21:52:26,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5939/7350 [04:08<00:48, 29.22it/s]2022-02-22 21:52:26,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:26,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5943/7350 [04:08<00:52, 27.03it/s]2022-02-22 21:52:27,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5946/7350 [04:08<00:51, 27.13it/s]2022-02-22 21:52:27,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5949/7350 [04:08<00:53, 26.03it/s]2022-02-22 21:52:27,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5954/7350 [04:09<00:49, 27.93it/s]2022-02-22 21:52:27,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5957/7350 [04:09<00:49, 28.24it/s]2022-02-22 21:52:27,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5961/7350 [04:09<00:54, 25.37it/s]2022-02-22 21:52:27,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5966/7350 [04:09<00:47, 29.27it/s]2022-02-22 21:52:27,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:27,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5970/7350 [04:09<00:44, 30.67it/s]2022-02-22 21:52:28,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5974/7350 [04:09<00:48, 28.28it/s]2022-02-22 21:52:28,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5977/7350 [04:09<00:50, 27.09it/s]2022-02-22 21:52:28,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5982/7350 [04:10<00:50, 27.22it/s]2022-02-22 21:52:28,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▊       | 5986/7350 [04:10<00:50, 26.89it/s]2022-02-22 21:52:28,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 5992/7350 [04:10<00:46, 29.10it/s]2022-02-22 21:52:28,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 5995/7350 [04:10<00:50, 26.93it/s]2022-02-22 21:52:28,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:28,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 5998/7350 [04:10<00:49, 27.30it/s]2022-02-22 21:52:28,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 6002/7350 [04:10<00:44, 30.18it/s]2022-02-22 21:52:29,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 6006/7350 [04:10<00:45, 29.29it/s]2022-02-22 21:52:29,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6009/7350 [04:11<00:47, 28.26it/s]2022-02-22 21:52:29,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6013/7350 [04:11<00:48, 27.55it/s]2022-02-22 21:52:29,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6016/7350 [04:11<00:56, 23.56it/s]2022-02-22 21:52:29,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6022/7350 [04:11<00:44, 30.07it/s]2022-02-22 21:52:29,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:29,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6026/7350 [04:11<00:49, 26.52it/s]2022-02-22 21:52:30,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6029/7350 [04:11<00:48, 27.03it/s]2022-02-22 21:52:30,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6033/7350 [04:11<00:45, 29.26it/s]2022-02-22 21:52:30,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6037/7350 [04:12<00:46, 28.16it/s]2022-02-22 21:52:30,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6041/7350 [04:12<00:46, 28.43it/s]2022-02-22 21:52:30,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6045/7350 [04:12<00:45, 28.83it/s]2022-02-22 21:52:30,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6048/7350 [04:12<00:46, 28.26it/s]2022-02-22 21:52:30,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6051/7350 [04:12<00:49, 26.17it/s]2022-02-22 21:52:30,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:30,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████▏      | 6055/7350 [04:12<00:45, 28.39it/s]2022-02-22 21:52:31,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████▏      | 6059/7350 [04:12<00:51, 25.26it/s]2022-02-22 21:52:31,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████▏      | 6062/7350 [04:13<00:54, 23.84it/s]2022-02-22 21:52:31,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6066/7350 [04:13<00:47, 26.94it/s]2022-02-22 21:52:31,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6070/7350 [04:13<00:49, 25.79it/s]2022-02-22 21:52:31,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6074/7350 [04:13<00:47, 26.88it/s]2022-02-22 21:52:31,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6077/7350 [04:13<00:46, 27.32it/s]2022-02-22 21:52:31,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:31,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6080/7350 [04:13<00:46, 27.38it/s]2022-02-22 21:52:32,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6083/7350 [04:13<00:46, 26.96it/s]2022-02-22 21:52:32,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6087/7350 [04:13<00:44, 28.67it/s]2022-02-22 21:52:32,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6091/7350 [04:14<00:44, 28.57it/s]2022-02-22 21:52:32,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6094/7350 [04:14<00:50, 25.12it/s]2022-02-22 21:52:32,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6100/7350 [04:14<00:40, 30.70it/s]2022-02-22 21:52:32,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6104/7350 [04:14<00:48, 25.81it/s]2022-02-22 21:52:32,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:32,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6110/7350 [04:14<00:40, 30.87it/s]2022-02-22 21:52:33,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6114/7350 [04:14<00:48, 25.28it/s]2022-02-22 21:52:33,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6118/7350 [04:15<00:47, 26.18it/s]2022-02-22 21:52:33,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6123/7350 [04:15<00:42, 28.97it/s]2022-02-22 21:52:33,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6127/7350 [04:15<00:48, 25.09it/s]2022-02-22 21:52:33,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6133/7350 [04:15<00:40, 30.02it/s]2022-02-22 21:52:33,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:33,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6137/7350 [04:15<00:41, 28.92it/s]2022-02-22 21:52:34,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 6141/7350 [04:15<00:44, 27.42it/s]2022-02-22 21:52:34,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 6146/7350 [04:15<00:39, 30.48it/s]2022-02-22 21:52:34,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6150/7350 [04:16<00:46, 26.08it/s]2022-02-22 21:52:34,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6153/7350 [04:16<00:45, 26.30it/s]2022-02-22 21:52:34,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6157/7350 [04:16<00:41, 28.43it/s]2022-02-22 21:52:34,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6160/7350 [04:16<00:44, 26.53it/s]2022-02-22 21:52:34,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:34,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6163/7350 [04:16<00:43, 27.32it/s]2022-02-22 21:52:34,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6167/7350 [04:16<00:40, 29.09it/s]2022-02-22 21:52:35,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6170/7350 [04:16<00:43, 27.36it/s]2022-02-22 21:52:35,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6174/7350 [04:17<00:39, 30.06it/s]2022-02-22 21:52:35,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6178/7350 [04:17<00:38, 30.14it/s]2022-02-22 21:52:35,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6182/7350 [04:17<00:48, 24.27it/s]2022-02-22 21:52:35,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6186/7350 [04:17<00:43, 26.72it/s]2022-02-22 21:52:35,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6189/7350 [04:17<00:43, 26.52it/s]2022-02-22 21:52:35,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:35,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6192/7350 [04:17<00:47, 24.56it/s]2022-02-22 21:52:36,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6195/7350 [04:17<00:45, 25.63it/s]2022-02-22 21:52:36,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6199/7350 [04:18<00:42, 26.87it/s]2022-02-22 21:52:36,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6203/7350 [04:18<00:42, 27.19it/s]2022-02-22 21:52:36,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6206/7350 [04:18<00:47, 24.19it/s]2022-02-22 21:52:36,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|████████████████████████████████▉      | 6212/7350 [04:18<00:39, 28.95it/s]2022-02-22 21:52:36,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|████████████████████████████████▉      | 6215/7350 [04:18<00:43, 26.12it/s]2022-02-22 21:52:36,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:36,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|████████████████████████████████▉      | 6218/7350 [04:18<00:44, 25.49it/s]2022-02-22 21:52:37,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6222/7350 [04:18<00:39, 28.42it/s]2022-02-22 21:52:37,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6225/7350 [04:18<00:39, 28.47it/s]2022-02-22 21:52:37,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6228/7350 [04:19<00:44, 25.16it/s]2022-02-22 21:52:37,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6231/7350 [04:19<00:43, 25.57it/s]2022-02-22 21:52:37,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6235/7350 [04:19<00:42, 26.40it/s]2022-02-22 21:52:37,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6238/7350 [04:19<00:48, 23.00it/s]2022-02-22 21:52:37,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:37,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6245/7350 [04:19<00:37, 29.19it/s]2022-02-22 21:52:38,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6248/7350 [04:19<00:40, 27.06it/s]2022-02-22 21:52:38,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6251/7350 [04:20<00:44, 24.81it/s]2022-02-22 21:52:38,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6257/7350 [04:20<00:34, 31.95it/s]2022-02-22 21:52:38,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6261/7350 [04:20<00:43, 25.07it/s]2022-02-22 21:52:38,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6265/7350 [04:20<00:41, 26.10it/s]2022-02-22 21:52:38,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:38,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6269/7350 [04:20<00:40, 27.01it/s]2022-02-22 21:52:39,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6272/7350 [04:20<00:43, 25.06it/s]2022-02-22 21:52:39,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6277/7350 [04:20<00:36, 29.02it/s]2022-02-22 21:52:39,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6281/7350 [04:21<00:39, 26.73it/s]2022-02-22 21:52:39,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▎     | 6287/7350 [04:21<00:35, 29.54it/s]2022-02-22 21:52:39,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6291/7350 [04:21<00:39, 27.05it/s]2022-02-22 21:52:39,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6294/7350 [04:21<00:40, 25.92it/s]2022-02-22 21:52:39,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:39,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6300/7350 [04:21<00:37, 27.92it/s]2022-02-22 21:52:40,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6303/7350 [04:21<00:39, 26.63it/s]2022-02-22 21:52:40,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6307/7350 [04:21<00:35, 29.29it/s]2022-02-22 21:52:40,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6311/7350 [04:22<00:40, 25.43it/s]2022-02-22 21:52:40,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6315/7350 [04:22<00:38, 27.21it/s]2022-02-22 21:52:40,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6318/7350 [04:22<00:37, 27.37it/s]2022-02-22 21:52:40,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6321/7350 [04:22<00:38, 26.70it/s]2022-02-22 21:52:40,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:40,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6324/7350 [04:22<00:37, 27.10it/s]2022-02-22 21:52:41,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6328/7350 [04:22<00:40, 25.33it/s]2022-02-22 21:52:41,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6332/7350 [04:23<00:45, 22.36it/s]2022-02-22 21:52:41,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6339/7350 [04:23<00:35, 28.23it/s]2022-02-22 21:52:41,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6342/7350 [04:23<00:37, 27.04it/s]2022-02-22 21:52:41,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6345/7350 [04:23<00:39, 25.61it/s]2022-02-22 21:52:41,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:41,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6350/7350 [04:23<00:35, 28.24it/s]2022-02-22 21:52:41,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6353/7350 [04:23<00:34, 28.57it/s]2022-02-22 21:52:42,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6356/7350 [04:23<00:38, 25.71it/s]2022-02-22 21:52:42,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▋     | 6360/7350 [04:24<00:39, 24.84it/s]2022-02-22 21:52:42,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6365/7350 [04:24<00:40, 24.13it/s]2022-02-22 21:52:42,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6373/7350 [04:24<00:31, 31.27it/s]2022-02-22 21:52:42,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:42,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6377/7350 [04:24<00:38, 24.97it/s]2022-02-22 21:52:43,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6384/7350 [04:24<00:30, 31.56it/s]2022-02-22 21:52:43,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6388/7350 [04:25<00:39, 24.28it/s]2022-02-22 21:52:43,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6395/7350 [04:25<00:34, 27.33it/s]2022-02-22 21:52:43,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6399/7350 [04:25<00:33, 28.77it/s]2022-02-22 21:52:43,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6404/7350 [04:25<00:30, 31.26it/s]2022-02-22 21:52:43,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:43,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6408/7350 [04:25<00:34, 27.18it/s]2022-02-22 21:52:44,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6412/7350 [04:25<00:32, 28.81it/s]2022-02-22 21:52:44,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6416/7350 [04:26<00:34, 27.19it/s]2022-02-22 21:52:44,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6421/7350 [04:26<00:30, 30.34it/s]2022-02-22 21:52:44,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6425/7350 [04:26<00:37, 24.90it/s]2022-02-22 21:52:44,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6430/7350 [04:26<00:30, 29.74it/s]2022-02-22 21:52:44,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:44,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6434/7350 [04:26<00:32, 28.20it/s]2022-02-22 21:52:45,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6438/7350 [04:26<00:32, 28.27it/s]2022-02-22 21:52:45,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6443/7350 [04:26<00:32, 28.18it/s]2022-02-22 21:52:45,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6446/7350 [04:27<00:35, 25.78it/s]2022-02-22 21:52:45,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6451/7350 [04:27<00:29, 30.07it/s]2022-02-22 21:52:45,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6455/7350 [04:27<00:32, 27.29it/s]2022-02-22 21:52:45,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6458/7350 [04:27<00:35, 25.44it/s]2022-02-22 21:52:45,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:45,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6463/7350 [04:27<00:29, 29.59it/s]2022-02-22 21:52:46,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6467/7350 [04:27<00:32, 26.85it/s]2022-02-22 21:52:46,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6472/7350 [04:28<00:29, 29.49it/s]2022-02-22 21:52:46,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6476/7350 [04:28<00:35, 24.68it/s]2022-02-22 21:52:46,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6482/7350 [04:28<00:29, 29.52it/s]2022-02-22 21:52:46,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6486/7350 [04:28<00:35, 24.61it/s]2022-02-22 21:52:46,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:46,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6492/7350 [04:28<00:29, 28.93it/s]2022-02-22 21:52:47,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6496/7350 [04:28<00:30, 28.08it/s]2022-02-22 21:52:47,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6499/7350 [04:29<00:30, 27.96it/s]2022-02-22 21:52:47,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▌    | 6504/7350 [04:29<00:27, 30.30it/s]2022-02-22 21:52:47,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6508/7350 [04:29<00:33, 25.25it/s]2022-02-22 21:52:47,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6514/7350 [04:29<00:27, 30.82it/s]2022-02-22 21:52:47,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:47,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6518/7350 [04:29<00:33, 24.73it/s]2022-02-22 21:52:48,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6524/7350 [04:29<00:26, 31.35it/s]2022-02-22 21:52:48,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6528/7350 [04:30<00:32, 24.98it/s]2022-02-22 21:52:48,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6533/7350 [04:30<00:28, 28.48it/s]2022-02-22 21:52:48,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6537/7350 [04:30<00:27, 29.52it/s]2022-02-22 21:52:48,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6541/7350 [04:30<00:29, 27.75it/s]2022-02-22 21:52:48,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:48,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6546/7350 [04:30<00:25, 31.19it/s]2022-02-22 21:52:49,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6550/7350 [04:30<00:32, 24.83it/s]2022-02-22 21:52:49,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6556/7350 [04:31<00:26, 30.50it/s]2022-02-22 21:52:49,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6560/7350 [04:31<00:31, 25.10it/s]2022-02-22 21:52:49,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6566/7350 [04:31<00:26, 29.07it/s]2022-02-22 21:52:49,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6570/7350 [04:31<00:30, 25.40it/s]2022-02-22 21:52:49,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:49,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▉    | 6573/7350 [04:31<00:29, 26.21it/s]2022-02-22 21:52:50,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▉    | 6578/7350 [04:31<00:30, 25.41it/s]2022-02-22 21:52:50,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6583/7350 [04:32<00:25, 29.97it/s]2022-02-22 21:52:50,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6587/7350 [04:32<00:26, 28.88it/s]2022-02-22 21:52:50,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6591/7350 [04:32<00:27, 27.73it/s]2022-02-22 21:52:50,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6595/7350 [04:32<00:27, 27.88it/s]2022-02-22 21:52:50,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:50,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6598/7350 [04:32<00:29, 25.50it/s]2022-02-22 21:52:51,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6603/7350 [04:32<00:26, 28.57it/s]2022-02-22 21:52:51,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6607/7350 [04:32<00:28, 26.09it/s]2022-02-22 21:52:51,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6611/7350 [04:33<00:25, 28.50it/s]2022-02-22 21:52:51,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6616/7350 [04:33<00:24, 30.26it/s]2022-02-22 21:52:51,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6620/7350 [04:33<00:27, 26.99it/s]2022-02-22 21:52:51,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6625/7350 [04:33<00:22, 31.58it/s]2022-02-22 21:52:51,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:51,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6629/7350 [04:33<00:27, 26.68it/s]2022-02-22 21:52:52,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6633/7350 [04:33<00:24, 29.43it/s]2022-02-22 21:52:52,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6637/7350 [04:33<00:25, 28.41it/s]2022-02-22 21:52:52,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6641/7350 [04:34<00:26, 26.57it/s]2022-02-22 21:52:52,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▎   | 6645/7350 [04:34<00:26, 26.50it/s]2022-02-22 21:52:52,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▎   | 6648/7350 [04:34<00:27, 25.40it/s]2022-02-22 21:52:52,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6652/7350 [04:34<00:25, 27.66it/s]2022-02-22 21:52:52,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:52,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6655/7350 [04:34<00:28, 24.32it/s]2022-02-22 21:52:53,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6659/7350 [04:34<00:24, 27.80it/s]2022-02-22 21:52:53,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6664/7350 [04:34<00:22, 30.62it/s]2022-02-22 21:52:53,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6668/7350 [04:35<00:24, 28.38it/s]2022-02-22 21:52:53,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6671/7350 [04:35<00:24, 28.28it/s]2022-02-22 21:52:53,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6675/7350 [04:35<00:24, 27.29it/s]2022-02-22 21:52:53,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6679/7350 [04:35<00:22, 29.95it/s]2022-02-22 21:52:53,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6683/7350 [04:35<00:22, 29.06it/s]2022-02-22 21:52:53,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:53,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6686/7350 [04:35<00:24, 27.45it/s]2022-02-22 21:52:54,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6691/7350 [04:35<00:22, 28.72it/s]2022-02-22 21:52:54,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6695/7350 [04:36<00:23, 27.54it/s]2022-02-22 21:52:54,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6698/7350 [04:36<00:23, 27.82it/s]2022-02-22 21:52:54,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6702/7350 [04:36<00:22, 28.42it/s]2022-02-22 21:52:54,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6706/7350 [04:36<00:23, 27.84it/s]2022-02-22 21:52:54,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6710/7350 [04:36<00:22, 28.96it/s]2022-02-22 21:52:54,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:54,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6713/7350 [04:36<00:21, 29.20it/s]2022-02-22 21:52:55,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6716/7350 [04:36<00:23, 26.91it/s]2022-02-22 21:52:55,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6719/7350 [04:36<00:23, 26.67it/s]2022-02-22 21:52:55,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6722/7350 [04:37<00:23, 26.36it/s]2022-02-22 21:52:55,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6726/7350 [04:37<00:22, 27.15it/s]2022-02-22 21:52:55,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6729/7350 [04:37<00:24, 25.24it/s]2022-02-22 21:52:55,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6733/7350 [04:37<00:23, 26.26it/s]2022-02-22 21:52:55,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6737/7350 [04:37<00:23, 25.91it/s]2022-02-22 21:52:55,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:55,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6740/7350 [04:37<00:22, 26.77it/s]2022-02-22 21:52:56,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6744/7350 [04:37<00:22, 27.29it/s]2022-02-22 21:52:56,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6747/7350 [04:38<00:22, 26.35it/s]2022-02-22 21:52:56,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6752/7350 [04:38<00:21, 27.69it/s]2022-02-22 21:52:56,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6756/7350 [04:38<00:21, 27.75it/s]2022-02-22 21:52:56,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6760/7350 [04:38<00:20, 29.31it/s]2022-02-22 21:52:56,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6765/7350 [04:38<00:19, 30.66it/s]2022-02-22 21:52:56,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:56,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6769/7350 [04:38<00:22, 26.23it/s]2022-02-22 21:52:57,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6775/7350 [04:38<00:19, 30.24it/s]2022-02-22 21:52:57,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6779/7350 [04:39<00:19, 28.71it/s]2022-02-22 21:52:57,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6782/7350 [04:39<00:22, 24.85it/s]2022-02-22 21:52:57,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6787/7350 [04:39<00:19, 29.04it/s]2022-02-22 21:52:57,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6791/7350 [04:39<00:18, 29.53it/s]2022-02-22 21:52:57,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:57,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6795/7350 [04:39<00:18, 30.49it/s]2022-02-22 21:52:58,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6799/7350 [04:39<00:22, 24.75it/s]2022-02-22 21:52:58,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6803/7350 [04:40<00:19, 27.44it/s]2022-02-22 21:52:58,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6808/7350 [04:40<00:19, 27.21it/s]2022-02-22 21:52:58,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6811/7350 [04:40<00:19, 27.13it/s]2022-02-22 21:52:58,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6814/7350 [04:40<00:19, 27.25it/s]2022-02-22 21:52:58,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6818/7350 [04:40<00:17, 29.67it/s]2022-02-22 21:52:58,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:58,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6822/7350 [04:40<00:18, 28.93it/s]2022-02-22 21:52:59,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6825/7350 [04:40<00:20, 25.40it/s]2022-02-22 21:52:59,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6829/7350 [04:40<00:18, 28.13it/s]2022-02-22 21:52:59,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6832/7350 [04:41<00:19, 26.73it/s]2022-02-22 21:52:59,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6835/7350 [04:41<00:19, 26.98it/s]2022-02-22 21:52:59,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6839/7350 [04:41<00:17, 28.81it/s]2022-02-22 21:52:59,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6842/7350 [04:41<00:20, 25.37it/s]2022-02-22 21:52:59,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6847/7350 [04:41<00:16, 30.48it/s]2022-02-22 21:52:59,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:52:59,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6851/7350 [04:41<00:20, 23.90it/s]2022-02-22 21:53:00,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6858/7350 [04:41<00:16, 29.32it/s]2022-02-22 21:53:00,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6862/7350 [04:42<00:18, 27.04it/s]2022-02-22 21:53:00,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6865/7350 [04:42<00:18, 25.66it/s]2022-02-22 21:53:00,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6869/7350 [04:42<00:17, 28.07it/s]2022-02-22 21:53:00,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6872/7350 [04:42<00:17, 27.08it/s]2022-02-22 21:53:00,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:00,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▍  | 6875/7350 [04:42<00:19, 24.39it/s]2022-02-22 21:53:01,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6880/7350 [04:42<00:15, 29.87it/s]2022-02-22 21:53:01,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6884/7350 [04:42<00:17, 27.18it/s]2022-02-22 21:53:01,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6888/7350 [04:43<00:16, 28.58it/s]2022-02-22 21:53:01,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6892/7350 [04:43<00:16, 27.20it/s]2022-02-22 21:53:01,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6895/7350 [04:43<00:19, 23.61it/s]2022-02-22 21:53:01,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6901/7350 [04:43<00:15, 28.24it/s]2022-02-22 21:53:01,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:01,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6904/7350 [04:43<00:17, 26.04it/s]2022-02-22 21:53:02,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6910/7350 [04:43<00:13, 31.45it/s]2022-02-22 21:53:02,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6914/7350 [04:44<00:17, 24.91it/s]2022-02-22 21:53:02,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6920/7350 [04:44<00:14, 30.43it/s]2022-02-22 21:53:02,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6924/7350 [04:44<00:16, 25.10it/s]2022-02-22 21:53:02,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6929/7350 [04:44<00:14, 29.45it/s]2022-02-22 21:53:02,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:02,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6934/7350 [04:44<00:16, 24.93it/s]2022-02-22 21:53:03,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6939/7350 [04:44<00:14, 28.68it/s]2022-02-22 21:53:03,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6944/7350 [04:45<00:15, 25.54it/s]2022-02-22 21:53:03,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▊  | 6949/7350 [04:45<00:13, 29.78it/s]2022-02-22 21:53:03,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6954/7350 [04:45<00:15, 25.84it/s]2022-02-22 21:53:03,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:03,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6959/7350 [04:45<00:13, 29.53it/s]2022-02-22 21:53:04,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6964/7350 [04:45<00:14, 26.26it/s]2022-02-22 21:53:04,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6969/7350 [04:46<00:12, 29.57it/s]2022-02-22 21:53:04,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6974/7350 [04:46<00:14, 26.43it/s]2022-02-22 21:53:04,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6978/7350 [04:46<00:12, 28.69it/s]2022-02-22 21:53:04,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6983/7350 [04:46<00:11, 32.72it/s]2022-02-22 21:53:04,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:04,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6987/7350 [04:46<00:13, 26.61it/s]2022-02-22 21:53:05,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6993/7350 [04:46<00:12, 29.59it/s]2022-02-22 21:53:05,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 6997/7350 [04:47<00:13, 25.44it/s]2022-02-22 21:53:05,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7003/7350 [04:47<00:13, 26.36it/s]2022-02-22 21:53:05,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7006/7350 [04:47<00:14, 24.49it/s]2022-02-22 21:53:05,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7013/7350 [04:47<00:11, 28.23it/s]2022-02-22 21:53:05,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:05,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7016/7350 [04:47<00:13, 24.82it/s]2022-02-22 21:53:06,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7023/7350 [04:48<00:11, 29.43it/s]2022-02-22 21:53:06,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7026/7350 [04:48<00:12, 25.70it/s]2022-02-22 21:53:06,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7033/7350 [04:48<00:10, 31.43it/s]2022-02-22 21:53:06,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7037/7350 [04:48<00:12, 25.23it/s]2022-02-22 21:53:06,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:06,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7044/7350 [04:48<00:09, 32.67it/s]2022-02-22 21:53:07,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7048/7350 [04:48<00:12, 24.95it/s]2022-02-22 21:53:07,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7055/7350 [04:49<00:11, 24.96it/s]2022-02-22 21:53:07,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7061/7350 [04:49<00:09, 29.54it/s]2022-02-22 21:53:07,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7065/7350 [04:49<00:10, 27.85it/s]2022-02-22 21:53:07,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:07,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7069/7350 [04:49<00:09, 28.19it/s]2022-02-22 21:53:08,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7075/7350 [04:49<00:09, 28.60it/s]2022-02-22 21:53:08,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7079/7350 [04:50<00:09, 28.02it/s]2022-02-22 21:53:08,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7083/7350 [04:50<00:09, 27.72it/s]2022-02-22 21:53:08,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7086/7350 [04:50<00:10, 25.74it/s]2022-02-22 21:53:08,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▋ | 7091/7350 [04:50<00:08, 30.05it/s]2022-02-22 21:53:08,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7095/7350 [04:50<00:08, 28.47it/s]2022-02-22 21:53:08,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:08,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7098/7350 [04:50<00:10, 24.52it/s]2022-02-22 21:53:09,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7104/7350 [04:50<00:08, 29.71it/s]2022-02-22 21:53:09,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7108/7350 [04:51<00:10, 23.67it/s]2022-02-22 21:53:09,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7114/7350 [04:51<00:08, 28.76it/s]2022-02-22 21:53:09,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7118/7350 [04:51<00:10, 22.93it/s]2022-02-22 21:53:09,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:09,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7126/7350 [04:51<00:07, 28.86it/s]2022-02-22 21:53:10,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7130/7350 [04:51<00:07, 27.59it/s]2022-02-22 21:53:10,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7134/7350 [04:52<00:07, 29.13it/s]2022-02-22 21:53:10,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7138/7350 [04:52<00:08, 25.82it/s]2022-02-22 21:53:10,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7142/7350 [04:52<00:08, 25.61it/s]2022-02-22 21:53:10,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7147/7350 [04:52<00:07, 28.05it/s]2022-02-22 21:53:10,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:10,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7151/7350 [04:52<00:06, 29.54it/s]2022-02-22 21:53:11,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7156/7350 [04:52<00:06, 30.05it/s]2022-02-22 21:53:11,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7160/7350 [04:53<00:06, 28.19it/s]2022-02-22 21:53:11,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|██████████████████████████████████████ | 7163/7350 [04:53<00:06, 28.10it/s]2022-02-22 21:53:11,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7167/7350 [04:53<00:06, 28.50it/s]2022-02-22 21:53:11,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7170/7350 [04:53<00:06, 26.55it/s]2022-02-22 21:53:11,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7173/7350 [04:53<00:06, 26.48it/s]2022-02-22 21:53:11,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:11,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7178/7350 [04:53<00:06, 27.81it/s]2022-02-22 21:53:11,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7181/7350 [04:53<00:06, 27.04it/s]2022-02-22 21:53:12,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7185/7350 [04:53<00:05, 29.85it/s]2022-02-22 21:53:12,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7189/7350 [04:54<00:05, 28.91it/s]2022-02-22 21:53:12,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7192/7350 [04:54<00:05, 27.48it/s]2022-02-22 21:53:12,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7196/7350 [04:54<00:05, 26.08it/s]2022-02-22 21:53:12,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7201/7350 [04:54<00:05, 27.15it/s]2022-02-22 21:53:12,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:12,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7206/7350 [04:54<00:05, 25.60it/s]2022-02-22 21:53:13,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7211/7350 [04:54<00:04, 29.05it/s]2022-02-22 21:53:13,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7215/7350 [04:54<00:04, 30.84it/s]2022-02-22 21:53:13,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7219/7350 [04:55<00:04, 30.46it/s]2022-02-22 21:53:13,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7223/7350 [04:55<00:04, 27.46it/s]2022-02-22 21:53:13,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7226/7350 [04:55<00:04, 27.74it/s]2022-02-22 21:53:13,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7231/7350 [04:55<00:04, 29.27it/s]2022-02-22 21:53:13,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:13,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▍| 7234/7350 [04:55<00:04, 28.36it/s]2022-02-22 21:53:13,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▍| 7237/7350 [04:55<00:04, 26.51it/s]2022-02-22 21:53:14,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7242/7350 [04:55<00:04, 25.93it/s]2022-02-22 21:53:14,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7247/7350 [04:56<00:03, 28.73it/s]2022-02-22 21:53:14,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7251/7350 [04:56<00:03, 29.57it/s]2022-02-22 21:53:14,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7254/7350 [04:56<00:03, 25.61it/s]2022-02-22 21:53:14,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7258/7350 [04:56<00:03, 28.74it/s]2022-02-22 21:53:14,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:14,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7262/7350 [04:56<00:03, 27.52it/s]2022-02-22 21:53:15,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7265/7350 [04:56<00:03, 25.81it/s]2022-02-22 21:53:15,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7270/7350 [04:56<00:02, 27.13it/s]2022-02-22 21:53:15,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7273/7350 [04:57<00:02, 26.41it/s]2022-02-22 21:53:15,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7278/7350 [04:57<00:02, 29.96it/s]2022-02-22 21:53:15,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7282/7350 [04:57<00:02, 27.52it/s]2022-02-22 21:53:15,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7285/7350 [04:57<00:02, 27.43it/s]2022-02-22 21:53:15,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7289/7350 [04:57<00:02, 30.12it/s]2022-02-22 21:53:15,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:15,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7293/7350 [04:57<00:02, 25.01it/s]2022-02-22 21:53:16,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7299/7350 [04:57<00:01, 31.31it/s]2022-02-22 21:53:16,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 7303/7350 [04:58<00:01, 26.76it/s]2022-02-22 21:53:16,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 7306/7350 [04:58<00:01, 26.94it/s]2022-02-22 21:53:16,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 7310/7350 [04:58<00:01, 25.40it/s]2022-02-22 21:53:16,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7315/7350 [04:58<00:01, 28.70it/s]2022-02-22 21:53:16,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:16,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7320/7350 [04:58<00:01, 27.10it/s]2022-02-22 21:53:17,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7323/7350 [04:58<00:01, 26.92it/s]2022-02-22 21:53:17,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7326/7350 [04:59<00:00, 26.09it/s]2022-02-22 21:53:17,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7330/7350 [04:59<00:00, 28.50it/s]2022-02-22 21:53:17,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7333/7350 [04:59<00:00, 26.88it/s]2022-02-22 21:53:17,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7337/7350 [04:59<00:00, 27.64it/s]2022-02-22 21:53:17,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7340/7350 [04:59<00:00, 27.67it/s]2022-02-22 21:53:17,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:17,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:18,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7343/7350 [04:59<00:00, 24.14it/s]2022-02-22 21:53:18,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:18,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:18,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:18,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:53:18,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 7350/7350 [04:59<00:00, 24.51it/s]
2022-02-22 21:53:18,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

  0%|                                                  | 0/7350 [00:00<?, ?it/s]2022-02-22 21:53:18,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                          | 1/7350 [00:00<30:14,  4.05it/s]2022-02-22 21:53:18,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                          | 5/7350 [00:00<07:23, 16.57it/s]2022-02-22 21:53:18,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:18,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                          | 9/7350 [00:00<05:16, 23.23it/s]2022-02-22 21:53:19,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                         | 17/7350 [00:00<03:14, 37.72it/s]2022-02-22 21:53:19,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|▏                                        | 23/7350 [00:00<02:46, 44.05it/s]2022-02-22 21:53:19,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|▏                                        | 28/7350 [00:00<02:56, 41.37it/s]2022-02-22 21:53:19,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|▏                                        | 36/7350 [00:00<02:32, 47.94it/s]2022-02-22 21:53:19,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▏                                        | 41/7350 [00:01<02:54, 41.90it/s]2022-02-22 21:53:19,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▎                                        | 49/7350 [00:01<02:49, 43.06it/s]2022-02-22 21:53:19,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:19,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▎                                        | 57/7350 [00:01<02:22, 51.15it/s]2022-02-22 21:53:19,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▎                                        | 63/7350 [00:01<02:34, 47.20it/s]2022-02-22 21:53:20,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▍                                        | 70/7350 [00:01<02:31, 48.18it/s]2022-02-22 21:53:20,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▍                                        | 77/7350 [00:01<02:20, 51.91it/s]2022-02-22 21:53:20,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▍                                        | 83/7350 [00:01<02:22, 50.88it/s]2022-02-22 21:53:20,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▌                                        | 90/7350 [00:02<02:18, 52.57it/s]2022-02-22 21:53:20,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▌                                        | 97/7350 [00:02<02:12, 54.84it/s]2022-02-22 21:53:20,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▌                                       | 103/7350 [00:02<02:17, 52.82it/s]2022-02-22 21:53:20,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▌                                       | 110/7350 [00:02<02:07, 56.86it/s]2022-02-22 21:53:20,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:20,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                       | 116/7350 [00:02<02:17, 52.65it/s]2022-02-22 21:53:21,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                       | 123/7350 [00:02<02:11, 54.91it/s]2022-02-22 21:53:21,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                       | 129/7350 [00:02<02:18, 52.26it/s]2022-02-22 21:53:21,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                       | 135/7350 [00:02<02:16, 52.96it/s]2022-02-22 21:53:21,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▊                                       | 141/7350 [00:02<02:13, 54.08it/s]2022-02-22 21:53:21,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▊                                       | 147/7350 [00:03<02:15, 53.28it/s]2022-02-22 21:53:21,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▊                                       | 154/7350 [00:03<02:10, 55.02it/s]2022-02-22 21:53:21,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:21,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▊                                       | 160/7350 [00:03<02:20, 51.19it/s]2022-02-22 21:53:21,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▉                                       | 168/7350 [00:03<02:19, 51.48it/s]2022-02-22 21:53:22,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▉                                       | 176/7350 [00:03<02:10, 54.87it/s]2022-02-22 21:53:22,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▉                                       | 182/7350 [00:03<02:26, 48.94it/s]2022-02-22 21:53:22,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█                                       | 189/7350 [00:03<02:17, 52.12it/s]2022-02-22 21:53:22,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█                                       | 195/7350 [00:04<02:18, 51.51it/s]2022-02-22 21:53:22,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█                                       | 201/7350 [00:04<02:24, 49.42it/s]2022-02-22 21:53:22,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▏                                      | 209/7350 [00:04<02:11, 54.18it/s]2022-02-22 21:53:22,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:22,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▏                                      | 215/7350 [00:04<02:18, 51.44it/s]2022-02-22 21:53:23,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▏                                      | 222/7350 [00:04<02:09, 54.99it/s]2022-02-22 21:53:23,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▏                                      | 228/7350 [00:04<02:10, 54.42it/s]2022-02-22 21:53:23,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▎                                      | 235/7350 [00:04<02:12, 53.83it/s]2022-02-22 21:53:23,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▎                                      | 241/7350 [00:04<02:19, 51.00it/s]2022-02-22 21:53:23,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▎                                      | 247/7350 [00:05<02:25, 48.93it/s]2022-02-22 21:53:23,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▎                                      | 252/7350 [00:05<02:31, 46.79it/s]2022-02-22 21:53:23,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▍                                      | 259/7350 [00:05<02:18, 51.26it/s]2022-02-22 21:53:23,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:23,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▍                                      | 266/7350 [00:05<02:09, 54.52it/s]2022-02-22 21:53:23,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▍                                      | 272/7350 [00:05<02:15, 52.21it/s]2022-02-22 21:53:24,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▌                                      | 279/7350 [00:05<02:05, 56.51it/s]2022-02-22 21:53:24,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▌                                      | 285/7350 [00:05<02:08, 54.84it/s]2022-02-22 21:53:24,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▌                                      | 291/7350 [00:05<02:09, 54.31it/s]2022-02-22 21:53:24,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▌                                      | 298/7350 [00:05<02:01, 57.82it/s]2022-02-22 21:53:24,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,630 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▋                                      | 304/7350 [00:06<02:13, 52.68it/s]2022-02-22 21:53:24,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▋                                      | 310/7350 [00:06<02:17, 51.05it/s]2022-02-22 21:53:24,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▋                                      | 318/7350 [00:06<02:09, 54.46it/s]2022-02-22 21:53:24,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:24,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▊                                      | 324/7350 [00:06<02:25, 48.32it/s]2022-02-22 21:53:25,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▊                                      | 332/7350 [00:06<02:06, 55.42it/s]2022-02-22 21:53:25,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▊                                      | 338/7350 [00:06<02:11, 53.52it/s]2022-02-22 21:53:25,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▊                                      | 344/7350 [00:06<02:31, 46.10it/s]2022-02-22 21:53:25,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▉                                      | 350/7350 [00:07<02:22, 49.23it/s]2022-02-22 21:53:25,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▉                                      | 356/7350 [00:07<02:32, 45.92it/s]2022-02-22 21:53:25,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▉                                      | 364/7350 [00:07<02:18, 50.31it/s]2022-02-22 21:53:25,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:25,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██                                      | 370/7350 [00:07<02:20, 49.82it/s]2022-02-22 21:53:26,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██                                      | 378/7350 [00:07<02:11, 52.82it/s]2022-02-22 21:53:26,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██                                      | 384/7350 [00:07<02:10, 53.20it/s]2022-02-22 21:53:26,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██                                      | 390/7350 [00:07<02:33, 45.36it/s]2022-02-22 21:53:26,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██▏                                     | 399/7350 [00:07<02:10, 53.40it/s]2022-02-22 21:53:26,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▏                                     | 405/7350 [00:08<02:25, 47.84it/s]2022-02-22 21:53:26,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▏                                     | 411/7350 [00:08<02:34, 44.81it/s]2022-02-22 21:53:26,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:26,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▎                                     | 420/7350 [00:08<02:23, 48.33it/s]2022-02-22 21:53:27,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▎                                     | 425/7350 [00:08<02:24, 48.06it/s]2022-02-22 21:53:27,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▎                                     | 430/7350 [00:08<02:29, 46.20it/s]2022-02-22 21:53:27,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▎                                     | 436/7350 [00:08<02:22, 48.68it/s]2022-02-22 21:53:27,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▍                                     | 442/7350 [00:08<02:15, 51.03it/s]2022-02-22 21:53:27,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▍                                     | 448/7350 [00:09<02:13, 51.73it/s]2022-02-22 21:53:27,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▍                                     | 454/7350 [00:09<02:20, 49.14it/s]2022-02-22 21:53:27,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▍                                     | 459/7350 [00:09<02:19, 49.25it/s]2022-02-22 21:53:27,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▌                                     | 465/7350 [00:09<02:15, 50.79it/s]2022-02-22 21:53:27,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:27,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▌                                     | 472/7350 [00:09<02:03, 55.80it/s]2022-02-22 21:53:28,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▌                                     | 478/7350 [00:09<02:11, 52.23it/s]2022-02-22 21:53:28,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▋                                     | 484/7350 [00:09<02:11, 52.11it/s]2022-02-22 21:53:28,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▋                                     | 490/7350 [00:09<02:11, 51.98it/s]2022-02-22 21:53:28,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▋                                     | 497/7350 [00:09<02:08, 53.41it/s]2022-02-22 21:53:28,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▋                                     | 505/7350 [00:10<01:56, 58.64it/s]2022-02-22 21:53:28,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▊                                     | 511/7350 [00:10<02:20, 48.75it/s]2022-02-22 21:53:28,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▊                                     | 519/7350 [00:10<02:13, 51.05it/s]2022-02-22 21:53:28,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:28,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▊                                     | 525/7350 [00:10<02:15, 50.49it/s]2022-02-22 21:53:29,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▉                                     | 532/7350 [00:10<02:05, 54.22it/s]2022-02-22 21:53:29,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▉                                     | 538/7350 [00:10<02:18, 49.12it/s]2022-02-22 21:53:29,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▉                                     | 545/7350 [00:10<02:10, 52.15it/s]2022-02-22 21:53:29,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███                                     | 552/7350 [00:10<02:02, 55.30it/s]2022-02-22 21:53:29,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███                                     | 558/7350 [00:11<02:07, 53.14it/s]2022-02-22 21:53:29,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███                                     | 565/7350 [00:11<02:00, 56.30it/s]2022-02-22 21:53:29,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███                                     | 571/7350 [00:11<02:08, 52.59it/s]2022-02-22 21:53:29,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:29,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▏                                    | 578/7350 [00:11<02:06, 53.72it/s]2022-02-22 21:53:30,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▏                                    | 584/7350 [00:11<02:10, 51.83it/s]2022-02-22 21:53:30,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▏                                    | 590/7350 [00:11<02:09, 52.25it/s]2022-02-22 21:53:30,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▏                                    | 596/7350 [00:11<02:09, 52.03it/s]2022-02-22 21:53:30,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▎                                    | 602/7350 [00:11<02:15, 49.92it/s]2022-02-22 21:53:30,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▎                                    | 608/7350 [00:12<02:12, 51.03it/s]2022-02-22 21:53:30,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▎                                    | 616/7350 [00:12<02:01, 55.48it/s]2022-02-22 21:53:30,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▍                                    | 622/7350 [00:12<02:08, 52.35it/s]2022-02-22 21:53:30,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:30,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▍                                    | 629/7350 [00:12<01:59, 56.12it/s]2022-02-22 21:53:31,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▍                                    | 635/7350 [00:12<02:11, 50.96it/s]2022-02-22 21:53:31,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▍                                    | 642/7350 [00:12<02:05, 53.27it/s]2022-02-22 21:53:31,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▌                                    | 648/7350 [00:12<02:06, 53.00it/s]2022-02-22 21:53:31,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▌                                    | 654/7350 [00:12<02:21, 47.46it/s]2022-02-22 21:53:31,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▌                                    | 661/7350 [00:13<02:08, 52.15it/s]2022-02-22 21:53:31,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▋                                    | 667/7350 [00:13<02:19, 47.98it/s]2022-02-22 21:53:31,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▋                                    | 676/7350 [00:13<02:12, 50.32it/s]2022-02-22 21:53:31,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:31,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▋                                    | 682/7350 [00:13<02:07, 52.50it/s]2022-02-22 21:53:32,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▋                                    | 688/7350 [00:13<02:02, 54.33it/s]2022-02-22 21:53:32,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▊                                    | 694/7350 [00:13<02:14, 49.43it/s]2022-02-22 21:53:32,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▊                                    | 700/7350 [00:13<02:17, 48.25it/s]2022-02-22 21:53:32,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▊                                    | 707/7350 [00:13<02:05, 53.10it/s]2022-02-22 21:53:32,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▉                                    | 713/7350 [00:14<02:24, 45.97it/s]2022-02-22 21:53:32,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▉                                    | 722/7350 [00:14<02:12, 49.90it/s]2022-02-22 21:53:32,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:32,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▉                                    | 731/7350 [00:14<02:00, 55.08it/s]2022-02-22 21:53:33,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████                                    | 737/7350 [00:14<02:10, 50.55it/s]2022-02-22 21:53:33,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████                                    | 744/7350 [00:14<02:09, 51.19it/s]2022-02-22 21:53:33,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████                                    | 751/7350 [00:14<02:02, 53.88it/s]2022-02-22 21:53:33,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████                                    | 757/7350 [00:15<02:26, 45.11it/s]2022-02-22 21:53:33,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████▏                                   | 765/7350 [00:15<02:08, 51.33it/s]2022-02-22 21:53:33,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████▏                                   | 771/7350 [00:15<02:14, 48.80it/s]2022-02-22 21:53:33,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:33,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▏                                   | 777/7350 [00:15<02:20, 46.79it/s]2022-02-22 21:53:34,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▎                                   | 784/7350 [00:15<02:07, 51.50it/s]2022-02-22 21:53:34,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▎                                   | 790/7350 [00:15<02:11, 49.71it/s]2022-02-22 21:53:34,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▎                                   | 796/7350 [00:15<02:27, 44.43it/s]2022-02-22 21:53:34,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▍                                   | 805/7350 [00:15<02:03, 52.81it/s]2022-02-22 21:53:34,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▍                                   | 811/7350 [00:16<02:10, 49.95it/s]2022-02-22 21:53:34,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▍                                   | 818/7350 [00:16<02:19, 46.91it/s]2022-02-22 21:53:34,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:34,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▌                                   | 828/7350 [00:16<02:08, 50.62it/s]2022-02-22 21:53:35,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▌                                   | 834/7350 [00:16<02:05, 52.07it/s]2022-02-22 21:53:35,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▌                                   | 840/7350 [00:16<02:14, 48.53it/s]2022-02-22 21:53:35,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▌                                   | 849/7350 [00:16<02:12, 49.07it/s]2022-02-22 21:53:35,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▋                                   | 859/7350 [00:17<02:02, 53.06it/s]2022-02-22 21:53:35,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▋                                   | 865/7350 [00:17<02:05, 51.81it/s]2022-02-22 21:53:35,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:35,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▋                                   | 871/7350 [00:17<02:28, 43.50it/s]2022-02-22 21:53:36,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▊                                   | 881/7350 [00:17<02:23, 45.16it/s]2022-02-22 21:53:36,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▊                                   | 891/7350 [00:17<02:17, 46.89it/s]2022-02-22 21:53:36,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▉                                   | 900/7350 [00:17<01:58, 54.25it/s]2022-02-22 21:53:36,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▉                                   | 906/7350 [00:18<02:14, 47.89it/s]2022-02-22 21:53:36,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▉                                   | 912/7350 [00:18<02:11, 48.98it/s]2022-02-22 21:53:36,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▉                                   | 918/7350 [00:18<02:09, 49.81it/s]2022-02-22 21:53:36,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:36,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████                                   | 924/7350 [00:18<02:17, 46.73it/s]2022-02-22 21:53:37,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████                                   | 933/7350 [00:18<02:07, 50.15it/s]2022-02-22 21:53:37,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████                                   | 940/7350 [00:18<02:00, 53.20it/s]2022-02-22 21:53:37,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▏                                  | 946/7350 [00:18<02:06, 50.45it/s]2022-02-22 21:53:37,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▏                                  | 953/7350 [00:18<02:06, 50.37it/s]2022-02-22 21:53:37,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▏                                  | 960/7350 [00:19<01:57, 54.30it/s]2022-02-22 21:53:37,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▎                                  | 966/7350 [00:19<02:19, 45.92it/s]2022-02-22 21:53:37,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▎                                  | 974/7350 [00:19<02:04, 51.37it/s]2022-02-22 21:53:37,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:37,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▎                                  | 980/7350 [00:19<02:04, 51.09it/s]2022-02-22 21:53:38,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▎                                  | 986/7350 [00:19<02:07, 49.73it/s]2022-02-22 21:53:38,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▍                                  | 992/7350 [00:19<02:04, 51.02it/s]2022-02-22 21:53:38,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▍                                  | 998/7350 [00:19<02:09, 48.92it/s]2022-02-22 21:53:38,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▎                                 | 1005/7350 [00:19<01:57, 54.13it/s]2022-02-22 21:53:38,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▎                                 | 1011/7350 [00:20<02:01, 52.12it/s]2022-02-22 21:53:38,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▍                                 | 1018/7350 [00:20<02:06, 49.95it/s]2022-02-22 21:53:38,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▍                                 | 1024/7350 [00:20<02:00, 52.33it/s]2022-02-22 21:53:38,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:38,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▍                                 | 1030/7350 [00:20<01:58, 53.15it/s]2022-02-22 21:53:39,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▍                                 | 1036/7350 [00:20<01:58, 53.25it/s]2022-02-22 21:53:39,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▌                                 | 1042/7350 [00:20<02:10, 48.36it/s]2022-02-22 21:53:39,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▌                                 | 1049/7350 [00:20<01:58, 53.39it/s]2022-02-22 21:53:39,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▌                                 | 1055/7350 [00:20<02:14, 46.83it/s]2022-02-22 21:53:39,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▋                                 | 1062/7350 [00:21<02:11, 47.67it/s]2022-02-22 21:53:39,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▋                                 | 1068/7350 [00:21<02:07, 49.26it/s]2022-02-22 21:53:39,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:39,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▋                                 | 1074/7350 [00:21<02:08, 48.98it/s]2022-02-22 21:53:40,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▋                                 | 1082/7350 [00:21<02:20, 44.68it/s]2022-02-22 21:53:40,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▊                                 | 1090/7350 [00:21<02:01, 51.43it/s]2022-02-22 21:53:40,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▊                                 | 1096/7350 [00:21<02:12, 47.29it/s]2022-02-22 21:53:40,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▊                                 | 1102/7350 [00:21<02:05, 49.90it/s]2022-02-22 21:53:40,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▉                                 | 1108/7350 [00:22<02:03, 50.52it/s]2022-02-22 21:53:40,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▉                                 | 1116/7350 [00:22<02:05, 49.87it/s]2022-02-22 21:53:40,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▉                                 | 1125/7350 [00:22<01:45, 59.15it/s]2022-02-22 21:53:40,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:40,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|██████                                 | 1132/7350 [00:22<02:13, 46.63it/s]2022-02-22 21:53:41,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|██████                                 | 1139/7350 [00:22<02:11, 47.11it/s]2022-02-22 21:53:41,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████                                 | 1148/7350 [00:22<01:51, 55.87it/s]2022-02-22 21:53:41,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▏                                | 1155/7350 [00:22<02:04, 49.65it/s]2022-02-22 21:53:41,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,630 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▏                                | 1161/7350 [00:23<01:59, 51.73it/s]2022-02-22 21:53:41,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▏                                | 1167/7350 [00:23<01:57, 52.53it/s]2022-02-22 21:53:41,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:41,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▏                                | 1173/7350 [00:23<02:06, 48.82it/s]2022-02-22 21:53:41,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▎                                | 1180/7350 [00:23<01:59, 51.61it/s]2022-02-22 21:53:42,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▎                                | 1186/7350 [00:23<02:04, 49.51it/s]2022-02-22 21:53:42,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▎                                | 1193/7350 [00:23<01:54, 53.68it/s]2022-02-22 21:53:42,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▎                                | 1199/7350 [00:23<02:01, 50.63it/s]2022-02-22 21:53:42,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▍                                | 1206/7350 [00:24<02:09, 47.44it/s]2022-02-22 21:53:42,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▍                                | 1216/7350 [00:24<01:59, 51.20it/s]2022-02-22 21:53:42,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▍                                | 1222/7350 [00:24<01:59, 51.22it/s]2022-02-22 21:53:42,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:42,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▌                                | 1230/7350 [00:24<01:52, 54.47it/s]2022-02-22 21:53:43,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▌                                | 1236/7350 [00:24<01:50, 55.57it/s]2022-02-22 21:53:43,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▌                                | 1242/7350 [00:24<01:48, 56.14it/s]2022-02-22 21:53:43,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▌                                | 1248/7350 [00:24<01:56, 52.31it/s]2022-02-22 21:53:43,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▋                                | 1254/7350 [00:24<02:07, 47.76it/s]2022-02-22 21:53:43,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▋                                | 1264/7350 [00:25<02:03, 49.19it/s]2022-02-22 21:53:43,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▊                                | 1274/7350 [00:25<01:58, 51.20it/s]2022-02-22 21:53:43,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:43,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▊                                | 1282/7350 [00:25<01:53, 53.38it/s]2022-02-22 21:53:44,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▊                                | 1288/7350 [00:25<01:57, 51.79it/s]2022-02-22 21:53:44,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▊                                | 1294/7350 [00:25<01:53, 53.33it/s]2022-02-22 21:53:44,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▉                                | 1300/7350 [00:25<01:58, 51.08it/s]2022-02-22 21:53:44,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▉                                | 1307/7350 [00:25<02:05, 48.13it/s]2022-02-22 21:53:44,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|██████▉                                | 1316/7350 [00:26<01:50, 54.60it/s]2022-02-22 21:53:44,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████                                | 1322/7350 [00:26<01:58, 50.82it/s]2022-02-22 21:53:44,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:44,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████                                | 1328/7350 [00:26<02:08, 46.77it/s]2022-02-22 21:53:45,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████                                | 1337/7350 [00:26<01:58, 50.82it/s]2022-02-22 21:53:45,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████▏                               | 1343/7350 [00:26<02:02, 48.84it/s]2022-02-22 21:53:45,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████▏                               | 1350/7350 [00:26<01:57, 51.15it/s]2022-02-22 21:53:45,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████▏                               | 1356/7350 [00:26<01:55, 51.85it/s]2022-02-22 21:53:45,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▏                               | 1362/7350 [00:26<01:52, 53.06it/s]2022-02-22 21:53:45,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▎                               | 1368/7350 [00:27<01:57, 51.11it/s]2022-02-22 21:53:45,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▎                               | 1376/7350 [00:27<01:54, 52.10it/s]2022-02-22 21:53:45,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:45,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▎                               | 1382/7350 [00:27<01:56, 51.29it/s]2022-02-22 21:53:46,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▎                               | 1388/7350 [00:27<02:04, 47.70it/s]2022-02-22 21:53:46,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▍                               | 1397/7350 [00:27<01:42, 57.86it/s]2022-02-22 21:53:46,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▍                               | 1404/7350 [00:27<02:06, 46.96it/s]2022-02-22 21:53:46,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▍                               | 1411/7350 [00:27<01:55, 51.30it/s]2022-02-22 21:53:46,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▌                               | 1417/7350 [00:28<01:53, 52.41it/s]2022-02-22 21:53:46,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▌                               | 1423/7350 [00:28<02:05, 47.23it/s]2022-02-22 21:53:46,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:46,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▌                               | 1432/7350 [00:28<02:05, 47.23it/s]2022-02-22 21:53:47,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▋                               | 1442/7350 [00:28<01:56, 50.93it/s]2022-02-22 21:53:47,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▋                               | 1448/7350 [00:28<01:58, 49.71it/s]2022-02-22 21:53:47,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▋                               | 1454/7350 [00:28<02:07, 46.40it/s]2022-02-22 21:53:47,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▊                               | 1464/7350 [00:29<02:05, 46.95it/s]2022-02-22 21:53:47,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▊                               | 1474/7350 [00:29<01:54, 51.30it/s]2022-02-22 21:53:47,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▊                               | 1480/7350 [00:29<01:54, 51.29it/s]2022-02-22 21:53:47,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:47,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▉                               | 1486/7350 [00:29<01:56, 50.34it/s]2022-02-22 21:53:48,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▉                               | 1494/7350 [00:29<01:44, 55.82it/s]2022-02-22 21:53:48,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▉                               | 1500/7350 [00:29<02:00, 48.48it/s]2022-02-22 21:53:48,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████                               | 1508/7350 [00:29<01:46, 54.92it/s]2022-02-22 21:53:48,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████                               | 1514/7350 [00:30<01:51, 52.36it/s]2022-02-22 21:53:48,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████                               | 1521/7350 [00:30<01:43, 56.28it/s]2022-02-22 21:53:48,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████                               | 1527/7350 [00:30<01:48, 53.91it/s]2022-02-22 21:53:48,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:48,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▏                              | 1534/7350 [00:30<01:56, 50.06it/s]2022-02-22 21:53:48,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▏                              | 1542/7350 [00:30<01:42, 56.49it/s]2022-02-22 21:53:49,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▏                              | 1548/7350 [00:30<01:56, 49.75it/s]2022-02-22 21:53:49,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▎                              | 1555/7350 [00:30<01:46, 54.52it/s]2022-02-22 21:53:49,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▎                              | 1562/7350 [00:30<01:41, 56.77it/s]2022-02-22 21:53:49,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▎                              | 1568/7350 [00:30<01:45, 54.77it/s]2022-02-22 21:53:49,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▎                              | 1574/7350 [00:31<01:49, 52.85it/s]2022-02-22 21:53:49,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▍                              | 1581/7350 [00:31<01:42, 56.50it/s]2022-02-22 21:53:49,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▍                              | 1588/7350 [00:31<01:38, 58.70it/s]2022-02-22 21:53:49,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:49,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▍                              | 1594/7350 [00:31<01:43, 55.47it/s]2022-02-22 21:53:50,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▍                              | 1601/7350 [00:31<01:38, 58.59it/s]2022-02-22 21:53:50,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▌                              | 1607/7350 [00:31<01:42, 56.07it/s]2022-02-22 21:53:50,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▌                              | 1614/7350 [00:31<01:41, 56.70it/s]2022-02-22 21:53:50,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▌                              | 1620/7350 [00:31<01:48, 53.05it/s]2022-02-22 21:53:50,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▋                              | 1626/7350 [00:32<01:58, 48.19it/s]2022-02-22 21:53:50,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▋                              | 1633/7350 [00:32<01:47, 53.02it/s]2022-02-22 21:53:50,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▋                              | 1639/7350 [00:32<02:01, 47.13it/s]2022-02-22 21:53:50,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:50,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▋                              | 1645/7350 [00:32<01:54, 49.76it/s]2022-02-22 21:53:51,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▊                              | 1651/7350 [00:32<02:00, 47.26it/s]2022-02-22 21:53:51,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▊                              | 1658/7350 [00:32<01:54, 49.52it/s]2022-02-22 21:53:51,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▊                              | 1664/7350 [00:32<02:02, 46.49it/s]2022-02-22 21:53:51,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▊                              | 1670/7350 [00:33<02:08, 44.28it/s]2022-02-22 21:53:51,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▉                              | 1679/7350 [00:33<01:58, 47.81it/s]2022-02-22 21:53:51,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▉                              | 1685/7350 [00:33<01:52, 50.46it/s]2022-02-22 21:53:51,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:51,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▉                              | 1691/7350 [00:33<02:09, 43.55it/s]2022-02-22 21:53:52,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|████████▉                              | 1696/7350 [00:33<02:08, 43.85it/s]2022-02-22 21:53:52,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████                              | 1703/7350 [00:33<02:02, 46.26it/s]2022-02-22 21:53:52,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████                              | 1710/7350 [00:33<01:57, 47.86it/s]2022-02-22 21:53:52,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████                              | 1715/7350 [00:33<01:58, 47.74it/s]2022-02-22 21:53:52,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████▏                             | 1721/7350 [00:34<01:54, 49.22it/s]2022-02-22 21:53:52,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████▏                             | 1727/7350 [00:34<01:56, 48.43it/s]2022-02-22 21:53:52,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▏                             | 1733/7350 [00:34<01:50, 50.85it/s]2022-02-22 21:53:52,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:52,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▏                             | 1739/7350 [00:34<02:01, 46.28it/s]2022-02-22 21:53:53,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▎                             | 1744/7350 [00:34<02:09, 43.35it/s]2022-02-22 21:53:53,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▎                             | 1749/7350 [00:34<02:10, 42.96it/s]2022-02-22 21:53:53,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▎                             | 1754/7350 [00:34<02:06, 44.41it/s]2022-02-22 21:53:53,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▎                             | 1760/7350 [00:34<01:59, 46.81it/s]2022-02-22 21:53:53,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▎                             | 1765/7350 [00:35<02:02, 45.62it/s]2022-02-22 21:53:53,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▍                             | 1772/7350 [00:35<01:48, 51.64it/s]2022-02-22 21:53:53,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▍                             | 1778/7350 [00:35<01:58, 47.10it/s]2022-02-22 21:53:53,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:53,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▍                             | 1784/7350 [00:35<02:01, 45.99it/s]2022-02-22 21:53:54,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▍                             | 1789/7350 [00:35<02:00, 46.03it/s]2022-02-22 21:53:54,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▌                             | 1795/7350 [00:35<01:55, 48.25it/s]2022-02-22 21:53:54,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▌                             | 1800/7350 [00:35<02:08, 43.36it/s]2022-02-22 21:53:54,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▌                             | 1807/7350 [00:35<01:55, 47.95it/s]2022-02-22 21:53:54,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▌                             | 1812/7350 [00:36<01:55, 48.11it/s]2022-02-22 21:53:54,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▋                             | 1818/7350 [00:36<01:52, 49.28it/s]2022-02-22 21:53:54,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▋                             | 1824/7350 [00:36<02:03, 44.61it/s]2022-02-22 21:53:54,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:54,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▋                             | 1830/7350 [00:36<02:08, 43.10it/s]2022-02-22 21:53:55,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▋                             | 1837/7350 [00:36<01:52, 49.07it/s]2022-02-22 21:53:55,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▊                             | 1843/7350 [00:36<02:02, 45.05it/s]2022-02-22 21:53:55,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▊                             | 1850/7350 [00:36<01:53, 48.50it/s]2022-02-22 21:53:55,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▊                             | 1856/7350 [00:36<01:50, 49.61it/s]2022-02-22 21:53:55,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▉                             | 1862/7350 [00:37<02:01, 45.29it/s]2022-02-22 21:53:55,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▉                             | 1869/7350 [00:37<02:00, 45.32it/s]2022-02-22 21:53:55,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|█████████▉                             | 1875/7350 [00:37<01:52, 48.59it/s]2022-02-22 21:53:55,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:55,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|█████████▉                             | 1881/7350 [00:37<02:00, 45.54it/s]2022-02-22 21:53:56,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████                             | 1886/7350 [00:37<01:58, 46.14it/s]2022-02-22 21:53:56,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████                             | 1891/7350 [00:37<02:04, 43.73it/s]2022-02-22 21:53:56,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████                             | 1898/7350 [00:37<01:49, 49.68it/s]2022-02-22 21:53:56,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████                             | 1904/7350 [00:38<01:57, 46.54it/s]2022-02-22 21:53:56,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                            | 1909/7350 [00:38<02:00, 45.30it/s]2022-02-22 21:53:56,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                            | 1914/7350 [00:38<01:57, 46.09it/s]2022-02-22 21:53:56,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                            | 1919/7350 [00:38<01:57, 46.15it/s]2022-02-22 21:53:56,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:56,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                            | 1924/7350 [00:38<01:59, 45.39it/s]2022-02-22 21:53:57,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                            | 1931/7350 [00:38<01:57, 46.29it/s]2022-02-22 21:53:57,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▎                            | 1937/7350 [00:38<01:51, 48.60it/s]2022-02-22 21:53:57,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▎                            | 1942/7350 [00:38<02:04, 43.30it/s]2022-02-22 21:53:57,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▎                            | 1950/7350 [00:39<01:50, 48.72it/s]2022-02-22 21:53:57,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▎                            | 1955/7350 [00:39<01:56, 46.13it/s]2022-02-22 21:53:57,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▍                            | 1962/7350 [00:39<01:57, 45.78it/s]2022-02-22 21:53:57,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:57,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▍                            | 1967/7350 [00:39<01:58, 45.53it/s]2022-02-22 21:53:57,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▍                            | 1972/7350 [00:39<01:58, 45.23it/s]2022-02-22 21:53:58,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▍                            | 1978/7350 [00:39<01:49, 48.91it/s]2022-02-22 21:53:58,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▌                            | 1983/7350 [00:39<01:58, 45.18it/s]2022-02-22 21:53:58,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▌                            | 1989/7350 [00:39<01:50, 48.49it/s]2022-02-22 21:53:58,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▌                            | 1994/7350 [00:39<01:53, 47.34it/s]2022-02-22 21:53:58,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▌                            | 1999/7350 [00:40<01:52, 47.48it/s]2022-02-22 21:53:58,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▋                            | 2005/7350 [00:40<01:47, 49.70it/s]2022-02-22 21:53:58,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▋                            | 2011/7350 [00:40<01:46, 50.24it/s]2022-02-22 21:53:58,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:58,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▋                            | 2017/7350 [00:40<01:59, 44.44it/s]2022-02-22 21:53:59,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▊                            | 2026/7350 [00:40<01:49, 48.49it/s]2022-02-22 21:53:59,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▊                            | 2032/7350 [00:40<01:47, 49.61it/s]2022-02-22 21:53:59,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▊                            | 2038/7350 [00:40<01:48, 48.91it/s]2022-02-22 21:53:59,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▊                            | 2046/7350 [00:41<01:46, 49.89it/s]2022-02-22 21:53:59,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▉                            | 2052/7350 [00:41<01:42, 51.70it/s]2022-02-22 21:53:59,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▉                            | 2058/7350 [00:41<01:57, 45.01it/s]2022-02-22 21:53:59,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:53:59,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▉                            | 2065/7350 [00:41<01:52, 47.12it/s]2022-02-22 21:54:00,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|██████████▉                            | 2071/7350 [00:41<01:47, 49.20it/s]2022-02-22 21:54:00,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████                            | 2078/7350 [00:41<01:53, 46.25it/s]2022-02-22 21:54:00,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████                            | 2084/7350 [00:41<01:49, 47.90it/s]2022-02-22 21:54:00,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████                            | 2089/7350 [00:41<01:56, 44.98it/s]2022-02-22 21:54:00,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████                            | 2096/7350 [00:42<01:45, 49.74it/s]2022-02-22 21:54:00,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▏                           | 2102/7350 [00:42<01:59, 43.97it/s]2022-02-22 21:54:00,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▏                           | 2109/7350 [00:42<01:48, 48.38it/s]2022-02-22 21:54:00,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:00,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▏                           | 2115/7350 [00:42<01:45, 49.76it/s]2022-02-22 21:54:01,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▎                           | 2121/7350 [00:42<01:53, 46.21it/s]2022-02-22 21:54:01,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▎                           | 2128/7350 [00:42<01:49, 47.50it/s]2022-02-22 21:54:01,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▎                           | 2134/7350 [00:42<01:50, 47.17it/s]2022-02-22 21:54:01,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▎                           | 2140/7350 [00:43<01:48, 48.24it/s]2022-02-22 21:54:01,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▍                           | 2145/7350 [00:43<01:49, 47.73it/s]2022-02-22 21:54:01,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▍                           | 2150/7350 [00:43<01:48, 47.78it/s]2022-02-22 21:54:01,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▍                           | 2155/7350 [00:43<01:53, 45.75it/s]2022-02-22 21:54:01,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:01,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▍                           | 2160/7350 [00:43<01:51, 46.54it/s]2022-02-22 21:54:02,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▍                           | 2165/7350 [00:43<01:55, 44.92it/s]2022-02-22 21:54:02,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▌                           | 2172/7350 [00:43<01:41, 50.77it/s]2022-02-22 21:54:02,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▌                           | 2178/7350 [00:43<01:45, 49.15it/s]2022-02-22 21:54:02,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▌                           | 2183/7350 [00:43<01:44, 49.23it/s]2022-02-22 21:54:02,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▌                           | 2188/7350 [00:44<01:46, 48.64it/s]2022-02-22 21:54:02,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▋                           | 2194/7350 [00:44<01:43, 49.98it/s]2022-02-22 21:54:02,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▋                           | 2200/7350 [00:44<01:44, 49.15it/s]2022-02-22 21:54:02,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▋                           | 2205/7350 [00:44<01:52, 45.56it/s]2022-02-22 21:54:02,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:02,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▋                           | 2213/7350 [00:44<01:44, 49.02it/s]2022-02-22 21:54:03,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▊                           | 2218/7350 [00:44<01:53, 45.33it/s]2022-02-22 21:54:03,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▊                           | 2224/7350 [00:44<01:51, 46.03it/s]2022-02-22 21:54:03,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▊                           | 2233/7350 [00:44<01:33, 54.63it/s]2022-02-22 21:54:03,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▉                           | 2239/7350 [00:45<01:58, 43.22it/s]2022-02-22 21:54:03,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|███████████▉                           | 2245/7350 [00:45<01:51, 45.85it/s]2022-02-22 21:54:03,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|███████████▉                           | 2252/7350 [00:45<01:41, 50.04it/s]2022-02-22 21:54:03,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:03,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|███████████▉                           | 2258/7350 [00:45<01:50, 46.03it/s]2022-02-22 21:54:04,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████                           | 2265/7350 [00:45<01:52, 45.16it/s]2022-02-22 21:54:04,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████                           | 2271/7350 [00:45<01:52, 45.22it/s]2022-02-22 21:54:04,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████                           | 2277/7350 [00:45<01:46, 47.73it/s]2022-02-22 21:54:04,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████                           | 2285/7350 [00:46<01:36, 52.66it/s]2022-02-22 21:54:04,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▏                          | 2291/7350 [00:46<01:53, 44.46it/s]2022-02-22 21:54:04,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:04,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▏                          | 2300/7350 [00:46<01:45, 48.01it/s]2022-02-22 21:54:04,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▏                          | 2305/7350 [00:46<01:49, 45.92it/s]2022-02-22 21:54:05,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▎                          | 2313/7350 [00:46<01:38, 51.19it/s]2022-02-22 21:54:05,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▎                          | 2319/7350 [00:46<01:36, 51.98it/s]2022-02-22 21:54:05,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▎                          | 2325/7350 [00:46<01:48, 46.38it/s]2022-02-22 21:54:05,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▎                          | 2332/7350 [00:47<01:37, 51.31it/s]2022-02-22 21:54:05,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▍                          | 2338/7350 [00:47<01:43, 48.24it/s]2022-02-22 21:54:05,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▍                          | 2344/7350 [00:47<01:48, 45.98it/s]2022-02-22 21:54:05,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:05,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▍                          | 2351/7350 [00:47<01:38, 50.52it/s]2022-02-22 21:54:05,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▌                          | 2357/7350 [00:47<01:49, 45.59it/s]2022-02-22 21:54:06,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▌                          | 2364/7350 [00:47<01:48, 45.81it/s]2022-02-22 21:54:06,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▌                          | 2369/7350 [00:47<01:48, 46.11it/s]2022-02-22 21:54:06,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▌                          | 2374/7350 [00:47<01:48, 45.98it/s]2022-02-22 21:54:06,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▋                          | 2381/7350 [00:48<01:35, 52.05it/s]2022-02-22 21:54:06,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▋                          | 2387/7350 [00:48<01:55, 42.90it/s]2022-02-22 21:54:06,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▋                          | 2395/7350 [00:48<01:42, 48.33it/s]2022-02-22 21:54:06,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:06,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▋                          | 2402/7350 [00:48<01:37, 50.99it/s]2022-02-22 21:54:07,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▊                          | 2408/7350 [00:48<01:42, 48.33it/s]2022-02-22 21:54:07,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▊                          | 2414/7350 [00:48<01:45, 46.72it/s]2022-02-22 21:54:07,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▊                          | 2421/7350 [00:48<01:35, 51.39it/s]2022-02-22 21:54:07,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▉                          | 2427/7350 [00:49<01:39, 49.46it/s]2022-02-22 21:54:07,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▉                          | 2433/7350 [00:49<01:45, 46.54it/s]2022-02-22 21:54:07,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▉                          | 2439/7350 [00:49<01:47, 45.81it/s]2022-02-22 21:54:07,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:07,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|████████████▉                          | 2446/7350 [00:49<01:39, 49.34it/s]2022-02-22 21:54:08,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|█████████████                          | 2453/7350 [00:49<01:41, 48.36it/s]2022-02-22 21:54:08,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|█████████████                          | 2460/7350 [00:49<01:39, 49.05it/s]2022-02-22 21:54:08,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████                          | 2466/7350 [00:49<01:38, 49.72it/s]2022-02-22 21:54:08,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████                          | 2472/7350 [00:49<01:35, 51.26it/s]2022-02-22 21:54:08,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▏                         | 2478/7350 [00:50<01:40, 48.49it/s]2022-02-22 21:54:08,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▏                         | 2484/7350 [00:50<01:39, 48.84it/s]2022-02-22 21:54:08,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▏                         | 2489/7350 [00:50<01:39, 49.02it/s]2022-02-22 21:54:08,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:08,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▏                         | 2494/7350 [00:50<01:44, 46.66it/s]2022-02-22 21:54:08,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▎                         | 2500/7350 [00:50<01:40, 48.44it/s]2022-02-22 21:54:09,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▎                         | 2505/7350 [00:50<01:40, 48.06it/s]2022-02-22 21:54:09,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▎                         | 2511/7350 [00:50<01:36, 50.05it/s]2022-02-22 21:54:09,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▎                         | 2517/7350 [00:50<01:47, 45.05it/s]2022-02-22 21:54:09,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▍                         | 2522/7350 [00:50<01:45, 45.80it/s]2022-02-22 21:54:09,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▍                         | 2527/7350 [00:51<01:47, 44.89it/s]2022-02-22 21:54:09,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▍                         | 2532/7350 [00:51<01:46, 45.41it/s]2022-02-22 21:54:09,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:09,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▍                         | 2537/7350 [00:51<01:45, 45.69it/s]2022-02-22 21:54:09,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▍                         | 2543/7350 [00:51<01:40, 47.98it/s]2022-02-22 21:54:10,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▌                         | 2548/7350 [00:51<01:42, 46.88it/s]2022-02-22 21:54:10,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▌                         | 2556/7350 [00:51<01:50, 43.52it/s]2022-02-22 21:54:10,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▌                         | 2566/7350 [00:51<01:45, 45.38it/s]2022-02-22 21:54:10,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▋                         | 2576/7350 [00:52<01:41, 47.19it/s]2022-02-22 21:54:10,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▋                         | 2584/7350 [00:52<01:28, 53.60it/s]2022-02-22 21:54:10,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:10,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▋                         | 2590/7350 [00:52<01:40, 47.29it/s]2022-02-22 21:54:11,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▊                         | 2596/7350 [00:52<01:39, 47.99it/s]2022-02-22 21:54:11,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▊                         | 2602/7350 [00:52<01:36, 49.26it/s]2022-02-22 21:54:11,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▊                         | 2608/7350 [00:52<01:39, 47.43it/s]2022-02-22 21:54:11,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▉                         | 2615/7350 [00:52<01:32, 51.27it/s]2022-02-22 21:54:11,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▉                         | 2621/7350 [00:53<01:40, 46.96it/s]2022-02-22 21:54:11,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▉                         | 2628/7350 [00:53<01:36, 48.82it/s]2022-02-22 21:54:11,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▉                         | 2633/7350 [00:53<01:36, 48.73it/s]2022-02-22 21:54:11,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:11,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|█████████████▉                         | 2638/7350 [00:53<01:36, 48.58it/s]2022-02-22 21:54:11,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████                         | 2643/7350 [00:53<01:43, 45.51it/s]2022-02-22 21:54:12,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████                         | 2649/7350 [00:53<01:49, 42.76it/s]2022-02-22 21:54:12,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████                         | 2657/7350 [00:53<01:33, 49.99it/s]2022-02-22 21:54:12,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▏                        | 2663/7350 [00:53<01:46, 44.21it/s]2022-02-22 21:54:12,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▏                        | 2669/7350 [00:54<01:42, 45.61it/s]2022-02-22 21:54:12,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▏                        | 2674/7350 [00:54<01:49, 42.88it/s]2022-02-22 21:54:12,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:12,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▏                        | 2681/7350 [00:54<01:41, 45.96it/s]2022-02-22 21:54:12,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▎                        | 2688/7350 [00:54<01:30, 51.52it/s]2022-02-22 21:54:13,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▎                        | 2694/7350 [00:54<01:47, 43.17it/s]2022-02-22 21:54:13,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▎                        | 2701/7350 [00:54<01:40, 46.39it/s]2022-02-22 21:54:13,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▎                        | 2707/7350 [00:54<01:40, 46.07it/s]2022-02-22 21:54:13,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▍                        | 2712/7350 [00:55<01:41, 45.79it/s]2022-02-22 21:54:13,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▍                        | 2719/7350 [00:55<01:32, 50.00it/s]2022-02-22 21:54:13,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▍                        | 2725/7350 [00:55<01:41, 45.59it/s]2022-02-22 21:54:13,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:13,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▍                        | 2731/7350 [00:55<01:34, 48.67it/s]2022-02-22 21:54:14,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▌                        | 2737/7350 [00:55<01:36, 47.72it/s]2022-02-22 21:54:14,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▌                        | 2742/7350 [00:55<01:48, 42.31it/s]2022-02-22 21:54:14,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▌                        | 2749/7350 [00:55<01:40, 45.59it/s]2022-02-22 21:54:14,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▌                        | 2756/7350 [00:55<01:30, 50.50it/s]2022-02-22 21:54:14,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▋                        | 2762/7350 [00:56<01:44, 43.75it/s]2022-02-22 21:54:14,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▋                        | 2769/7350 [00:56<01:36, 47.39it/s]2022-02-22 21:54:14,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:14,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▋                        | 2774/7350 [00:56<01:45, 43.56it/s]2022-02-22 21:54:15,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▊                        | 2780/7350 [00:56<01:51, 41.17it/s]2022-02-22 21:54:15,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▊                        | 2787/7350 [00:56<01:39, 45.93it/s]2022-02-22 21:54:15,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▊                        | 2792/7350 [00:56<01:53, 40.30it/s]2022-02-22 21:54:15,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▊                        | 2800/7350 [00:57<01:52, 40.56it/s]2022-02-22 21:54:15,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▉                        | 2810/7350 [00:57<01:36, 47.14it/s]2022-02-22 21:54:15,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▉                        | 2815/7350 [00:57<01:36, 47.00it/s]2022-02-22 21:54:15,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:15,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▉                        | 2820/7350 [00:57<01:36, 46.95it/s]2022-02-22 21:54:16,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|██████████████▉                        | 2825/7350 [00:57<01:36, 46.94it/s]2022-02-22 21:54:16,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████                        | 2830/7350 [00:57<01:45, 42.68it/s]2022-02-22 21:54:16,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████                        | 2838/7350 [00:57<01:30, 49.78it/s]2022-02-22 21:54:16,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████                        | 2844/7350 [00:57<01:35, 47.01it/s]2022-02-22 21:54:16,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████                        | 2850/7350 [00:58<01:44, 43.17it/s]2022-02-22 21:54:16,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▏                       | 2858/7350 [00:58<01:27, 51.53it/s]2022-02-22 21:54:16,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▏                       | 2864/7350 [00:58<01:34, 47.32it/s]2022-02-22 21:54:16,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:16,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▏                       | 2870/7350 [00:58<01:34, 47.42it/s]2022-02-22 21:54:17,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▎                       | 2875/7350 [00:58<01:38, 45.34it/s]2022-02-22 21:54:17,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▎                       | 2881/7350 [00:58<01:33, 47.73it/s]2022-02-22 21:54:17,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▎                       | 2886/7350 [00:58<01:33, 47.86it/s]2022-02-22 21:54:17,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▎                       | 2891/7350 [00:58<01:34, 47.43it/s]2022-02-22 21:54:17,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,630 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▍                       | 2898/7350 [00:59<01:31, 48.88it/s]2022-02-22 21:54:17,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▍                       | 2903/7350 [00:59<01:32, 48.29it/s]2022-02-22 21:54:17,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▍                       | 2909/7350 [00:59<01:32, 47.94it/s]2022-02-22 21:54:17,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:17,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▍                       | 2915/7350 [00:59<01:28, 50.09it/s]2022-02-22 21:54:18,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▍                       | 2921/7350 [00:59<01:34, 46.63it/s]2022-02-22 21:54:18,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▌                       | 2927/7350 [00:59<01:30, 49.00it/s]2022-02-22 21:54:18,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▌                       | 2932/7350 [00:59<01:34, 46.96it/s]2022-02-22 21:54:18,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▌                       | 2938/7350 [00:59<01:29, 49.26it/s]2022-02-22 21:54:18,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▌                       | 2944/7350 [01:00<01:30, 48.74it/s]2022-02-22 21:54:18,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▋                       | 2949/7350 [01:00<01:31, 48.22it/s]2022-02-22 21:54:18,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▋                       | 2955/7350 [01:00<01:35, 45.89it/s]2022-02-22 21:54:18,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:18,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▋                       | 2960/7350 [01:00<01:41, 43.26it/s]2022-02-22 21:54:18,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▋                       | 2967/7350 [01:00<01:37, 44.79it/s]2022-02-22 21:54:19,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▊                       | 2972/7350 [01:00<01:37, 45.11it/s]2022-02-22 21:54:19,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▊                       | 2978/7350 [01:00<01:30, 48.18it/s]2022-02-22 21:54:19,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▊                       | 2983/7350 [01:00<01:43, 42.25it/s]2022-02-22 21:54:19,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▊                       | 2990/7350 [01:01<01:32, 47.13it/s]2022-02-22 21:54:19,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▉                       | 2996/7350 [01:01<01:27, 49.55it/s]2022-02-22 21:54:19,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▉                       | 3002/7350 [01:01<01:29, 48.46it/s]2022-02-22 21:54:19,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:19,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▉                       | 3007/7350 [01:01<01:36, 45.21it/s]2022-02-22 21:54:20,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|███████████████▉                       | 3013/7350 [01:01<01:32, 46.78it/s]2022-02-22 21:54:20,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████                       | 3018/7350 [01:01<01:34, 45.74it/s]2022-02-22 21:54:20,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████                       | 3025/7350 [01:01<01:37, 44.23it/s]2022-02-22 21:54:20,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████                       | 3031/7350 [01:01<01:32, 46.49it/s]2022-02-22 21:54:20,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████                       | 3037/7350 [01:02<01:35, 45.01it/s]2022-02-22 21:54:20,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████▏                      | 3042/7350 [01:02<01:37, 44.01it/s]2022-02-22 21:54:20,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████▏                      | 3049/7350 [01:02<01:29, 47.97it/s]2022-02-22 21:54:20,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:20,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▏                      | 3054/7350 [01:02<01:34, 45.41it/s]2022-02-22 21:54:21,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▏                      | 3061/7350 [01:02<01:25, 50.13it/s]2022-02-22 21:54:21,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▎                      | 3068/7350 [01:02<01:23, 51.27it/s]2022-02-22 21:54:21,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▎                      | 3074/7350 [01:02<01:37, 43.99it/s]2022-02-22 21:54:21,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▎                      | 3082/7350 [01:03<01:29, 47.75it/s]2022-02-22 21:54:21,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▍                      | 3090/7350 [01:03<01:17, 55.05it/s]2022-02-22 21:54:21,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▍                      | 3096/7350 [01:03<01:26, 49.21it/s]2022-02-22 21:54:21,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▍                      | 3102/7350 [01:03<01:29, 47.72it/s]2022-02-22 21:54:21,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:21,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▌                      | 3110/7350 [01:03<01:22, 51.11it/s]2022-02-22 21:54:22,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▌                      | 3116/7350 [01:03<01:30, 46.80it/s]2022-02-22 21:54:22,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▌                      | 3122/7350 [01:03<01:31, 46.05it/s]2022-02-22 21:54:22,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▌                      | 3127/7350 [01:03<01:32, 45.71it/s]2022-02-22 21:54:22,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▌                      | 3133/7350 [01:04<01:41, 41.69it/s]2022-02-22 21:54:22,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▋                      | 3141/7350 [01:04<01:27, 48.28it/s]2022-02-22 21:54:22,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:22,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▋                      | 3147/7350 [01:04<01:31, 45.85it/s]2022-02-22 21:54:23,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▋                      | 3153/7350 [01:04<01:39, 41.98it/s]2022-02-22 21:54:23,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▊                      | 3160/7350 [01:04<01:31, 45.80it/s]2022-02-22 21:54:23,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▊                      | 3166/7350 [01:04<01:28, 47.48it/s]2022-02-22 21:54:23,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▊                      | 3173/7350 [01:04<01:27, 47.93it/s]2022-02-22 21:54:23,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▊                      | 3180/7350 [01:05<01:29, 46.68it/s]2022-02-22 21:54:23,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▉                      | 3187/7350 [01:05<01:25, 48.70it/s]2022-02-22 21:54:23,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:23,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|████████████████▉                      | 3193/7350 [01:05<01:34, 43.76it/s]2022-02-22 21:54:23,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|████████████████▉                      | 3199/7350 [01:05<01:29, 46.56it/s]2022-02-22 21:54:24,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████                      | 3206/7350 [01:05<01:26, 48.01it/s]2022-02-22 21:54:24,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████                      | 3214/7350 [01:05<01:27, 47.06it/s]2022-02-22 21:54:24,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████                      | 3221/7350 [01:05<01:19, 51.86it/s]2022-02-22 21:54:24,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████                      | 3227/7350 [01:06<01:28, 46.75it/s]2022-02-22 21:54:24,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▏                     | 3235/7350 [01:06<01:22, 49.62it/s]2022-02-22 21:54:24,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▏                     | 3241/7350 [01:06<01:21, 50.52it/s]2022-02-22 21:54:24,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:24,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▏                     | 3247/7350 [01:06<01:24, 48.63it/s]2022-02-22 21:54:25,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▎                     | 3254/7350 [01:06<01:18, 52.17it/s]2022-02-22 21:54:25,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▎                     | 3260/7350 [01:06<01:32, 44.34it/s]2022-02-22 21:54:25,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▎                     | 3267/7350 [01:06<01:22, 49.45it/s]2022-02-22 21:54:25,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▎                     | 3273/7350 [01:07<01:29, 45.79it/s]2022-02-22 21:54:25,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▍                     | 3280/7350 [01:07<01:20, 50.62it/s]2022-02-22 21:54:25,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▍                     | 3286/7350 [01:07<01:25, 47.30it/s]2022-02-22 21:54:25,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:25,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▍                     | 3292/7350 [01:07<01:34, 42.89it/s]2022-02-22 21:54:26,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▍                     | 3297/7350 [01:07<01:34, 42.77it/s]2022-02-22 21:54:26,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▌                     | 3303/7350 [01:07<01:29, 45.42it/s]2022-02-22 21:54:26,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▌                     | 3311/7350 [01:07<01:17, 52.03it/s]2022-02-22 21:54:26,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▌                     | 3317/7350 [01:07<01:28, 45.79it/s]2022-02-22 21:54:26,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▋                     | 3323/7350 [01:08<01:21, 49.12it/s]2022-02-22 21:54:26,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▋                     | 3329/7350 [01:08<01:30, 44.22it/s]2022-02-22 21:54:26,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:26,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▋                     | 3337/7350 [01:08<01:28, 45.30it/s]2022-02-22 21:54:27,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▋                     | 3343/7350 [01:08<01:23, 47.95it/s]2022-02-22 21:54:27,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▊                     | 3348/7350 [01:08<01:28, 44.97it/s]2022-02-22 21:54:27,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▊                     | 3356/7350 [01:08<01:22, 48.40it/s]2022-02-22 21:54:27,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▊                     | 3361/7350 [01:08<01:24, 47.40it/s]2022-02-22 21:54:27,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▊                     | 3366/7350 [01:09<01:28, 45.16it/s]2022-02-22 21:54:27,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▉                     | 3371/7350 [01:09<01:32, 43.21it/s]2022-02-22 21:54:27,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▉                     | 3376/7350 [01:09<01:33, 42.35it/s]2022-02-22 21:54:27,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:27,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|█████████████████▉                     | 3386/7350 [01:09<01:27, 45.15it/s]2022-02-22 21:54:28,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████                     | 3395/7350 [01:09<01:12, 54.51it/s]2022-02-22 21:54:28,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████                     | 3401/7350 [01:09<01:18, 50.41it/s]2022-02-22 21:54:28,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████                     | 3407/7350 [01:09<01:32, 42.50it/s]2022-02-22 21:54:28,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████▏                    | 3416/7350 [01:10<01:32, 42.58it/s]2022-02-22 21:54:28,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▏                    | 3423/7350 [01:10<01:22, 47.63it/s]2022-02-22 21:54:28,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:28,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▏                    | 3429/7350 [01:10<01:27, 44.68it/s]2022-02-22 21:54:29,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▏                    | 3435/7350 [01:10<01:22, 47.22it/s]2022-02-22 21:54:29,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▎                    | 3440/7350 [01:10<01:25, 45.47it/s]2022-02-22 21:54:29,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▎                    | 3445/7350 [01:10<01:27, 44.78it/s]2022-02-22 21:54:29,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▎                    | 3451/7350 [01:10<01:36, 40.52it/s]2022-02-22 21:54:29,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▎                    | 3456/7350 [01:11<01:34, 41.28it/s]2022-02-22 21:54:29,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▍                    | 3464/7350 [01:11<01:17, 49.91it/s]2022-02-22 21:54:29,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▍                    | 3470/7350 [01:11<01:18, 49.62it/s]2022-02-22 21:54:29,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:29,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▍                    | 3476/7350 [01:11<01:34, 40.85it/s]2022-02-22 21:54:30,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▍                    | 3484/7350 [01:11<01:19, 48.64it/s]2022-02-22 21:54:30,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▌                    | 3490/7350 [01:11<01:25, 45.08it/s]2022-02-22 21:54:30,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▌                    | 3497/7350 [01:11<01:19, 48.51it/s]2022-02-22 21:54:30,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▌                    | 3503/7350 [01:12<01:23, 46.06it/s]2022-02-22 21:54:30,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▌                    | 3510/7350 [01:12<01:18, 49.16it/s]2022-02-22 21:54:30,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▋                    | 3516/7350 [01:12<01:16, 50.11it/s]2022-02-22 21:54:30,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:30,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▋                    | 3522/7350 [01:12<01:21, 47.06it/s]2022-02-22 21:54:31,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▋                    | 3528/7350 [01:12<01:18, 48.58it/s]2022-02-22 21:54:31,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▋                    | 3533/7350 [01:12<01:25, 44.69it/s]2022-02-22 21:54:31,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▊                    | 3540/7350 [01:12<01:28, 43.00it/s]2022-02-22 21:54:31,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▊                    | 3548/7350 [01:12<01:16, 49.88it/s]2022-02-22 21:54:31,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▊                    | 3554/7350 [01:13<01:20, 47.15it/s]2022-02-22 21:54:31,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|██████████████████▉                    | 3559/7350 [01:13<01:22, 45.86it/s]2022-02-22 21:54:31,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|██████████████████▉                    | 3565/7350 [01:13<01:22, 46.11it/s]2022-02-22 21:54:31,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:31,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|██████████████████▉                    | 3571/7350 [01:13<01:17, 48.99it/s]2022-02-22 21:54:32,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|██████████████████▉                    | 3576/7350 [01:13<01:21, 46.52it/s]2022-02-22 21:54:32,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████                    | 3582/7350 [01:13<01:21, 46.33it/s]2022-02-22 21:54:32,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████                    | 3587/7350 [01:13<01:24, 44.40it/s]2022-02-22 21:54:32,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████                    | 3592/7350 [01:13<01:29, 42.00it/s]2022-02-22 21:54:32,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████                    | 3602/7350 [01:14<01:12, 51.57it/s]2022-02-22 21:54:32,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▏                   | 3608/7350 [01:14<01:13, 50.89it/s]2022-02-22 21:54:32,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▏                   | 3614/7350 [01:14<01:20, 46.18it/s]2022-02-22 21:54:32,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:32,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▏                   | 3621/7350 [01:14<01:15, 49.39it/s]2022-02-22 21:54:33,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▏                   | 3627/7350 [01:14<01:26, 43.00it/s]2022-02-22 21:54:33,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▎                   | 3635/7350 [01:14<01:25, 43.23it/s]2022-02-22 21:54:33,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▎                   | 3642/7350 [01:14<01:16, 48.58it/s]2022-02-22 21:54:33,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▎                   | 3648/7350 [01:15<01:26, 42.74it/s]2022-02-22 21:54:33,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▍                   | 3656/7350 [01:15<01:17, 47.74it/s]2022-02-22 21:54:33,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,963 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:33,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▍                   | 3662/7350 [01:15<01:17, 47.48it/s]2022-02-22 21:54:34,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▍                   | 3667/7350 [01:15<01:18, 47.08it/s]2022-02-22 21:54:34,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▍                   | 3672/7350 [01:15<01:18, 46.57it/s]2022-02-22 21:54:34,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▌                   | 3677/7350 [01:15<01:18, 46.50it/s]2022-02-22 21:54:34,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▌                   | 3682/7350 [01:15<01:23, 44.13it/s]2022-02-22 21:54:34,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▌                   | 3688/7350 [01:16<01:23, 43.64it/s]2022-02-22 21:54:34,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▌                   | 3693/7350 [01:16<01:24, 43.37it/s]2022-02-22 21:54:34,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▌                   | 3698/7350 [01:16<01:23, 43.92it/s]2022-02-22 21:54:34,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▋                   | 3703/7350 [01:16<01:20, 45.36it/s]2022-02-22 21:54:34,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:34,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▋                   | 3708/7350 [01:16<01:25, 42.56it/s]2022-02-22 21:54:35,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▋                   | 3716/7350 [01:16<01:19, 45.69it/s]2022-02-22 21:54:35,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▊                   | 3724/7350 [01:16<01:08, 52.86it/s]2022-02-22 21:54:35,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▊                   | 3730/7350 [01:16<01:16, 47.59it/s]2022-02-22 21:54:35,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▊                   | 3736/7350 [01:17<01:20, 44.76it/s]2022-02-22 21:54:35,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▊                   | 3744/7350 [01:17<01:10, 51.09it/s]2022-02-22 21:54:35,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▉                   | 3750/7350 [01:17<01:13, 49.11it/s]2022-02-22 21:54:35,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:35,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▉                   | 3756/7350 [01:17<01:21, 44.29it/s]2022-02-22 21:54:36,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|███████████████████▉                   | 3766/7350 [01:17<01:14, 47.94it/s]2022-02-22 21:54:36,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|████████████████████                   | 3776/7350 [01:17<01:16, 46.84it/s]2022-02-22 21:54:36,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|████████████████████                   | 3782/7350 [01:17<01:13, 48.56it/s]2022-02-22 21:54:36,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████                   | 3787/7350 [01:18<01:24, 42.13it/s]2022-02-22 21:54:36,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▏                  | 3795/7350 [01:18<01:17, 45.63it/s]2022-02-22 21:54:36,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:36,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▏                  | 3802/7350 [01:18<01:13, 48.29it/s]2022-02-22 21:54:37,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▏                  | 3807/7350 [01:18<01:15, 46.70it/s]2022-02-22 21:54:37,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▏                  | 3815/7350 [01:18<01:11, 49.13it/s]2022-02-22 21:54:37,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▎                  | 3820/7350 [01:18<01:14, 47.44it/s]2022-02-22 21:54:37,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▎                  | 3828/7350 [01:18<01:07, 52.11it/s]2022-02-22 21:54:37,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▎                  | 3834/7350 [01:19<01:12, 48.45it/s]2022-02-22 21:54:37,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▎                  | 3839/7350 [01:19<01:14, 47.19it/s]2022-02-22 21:54:37,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▍                  | 3847/7350 [01:19<01:04, 54.72it/s]2022-02-22 21:54:37,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:37,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▍                  | 3853/7350 [01:19<01:10, 49.38it/s]2022-02-22 21:54:38,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▍                  | 3859/7350 [01:19<01:13, 47.24it/s]2022-02-22 21:54:38,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▌                  | 3866/7350 [01:19<01:12, 48.36it/s]2022-02-22 21:54:38,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▌                  | 3871/7350 [01:19<01:16, 45.26it/s]2022-02-22 21:54:38,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▌                  | 3877/7350 [01:19<01:12, 47.60it/s]2022-02-22 21:54:38,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▌                  | 3882/7350 [01:20<01:14, 46.86it/s]2022-02-22 21:54:38,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▋                  | 3890/7350 [01:20<01:09, 50.11it/s]2022-02-22 21:54:38,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:38,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▋                  | 3896/7350 [01:20<01:11, 48.34it/s]2022-02-22 21:54:38,963 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▋                  | 3901/7350 [01:20<01:15, 45.77it/s]2022-02-22 21:54:39,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▋                  | 3908/7350 [01:20<01:09, 49.25it/s]2022-02-22 21:54:39,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▊                  | 3913/7350 [01:20<01:11, 47.99it/s]2022-02-22 21:54:39,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▊                  | 3918/7350 [01:20<01:15, 45.64it/s]2022-02-22 21:54:39,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|████████████████████▊                  | 3925/7350 [01:21<01:16, 44.76it/s]2022-02-22 21:54:39,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|████████████████████▊                  | 3933/7350 [01:21<01:07, 50.41it/s]2022-02-22 21:54:39,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|████████████████████▉                  | 3939/7350 [01:21<01:07, 50.19it/s]2022-02-22 21:54:39,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:39,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|████████████████████▉                  | 3945/7350 [01:21<01:11, 47.56it/s]2022-02-22 21:54:39,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|████████████████████▉                  | 3950/7350 [01:21<01:13, 46.06it/s]2022-02-22 21:54:40,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|████████████████████▉                  | 3957/7350 [01:21<01:14, 45.28it/s]2022-02-22 21:54:40,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████                  | 3964/7350 [01:21<01:08, 49.50it/s]2022-02-22 21:54:40,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████                  | 3970/7350 [01:21<01:12, 46.55it/s]2022-02-22 21:54:40,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████                  | 3977/7350 [01:22<01:09, 48.20it/s]2022-02-22 21:54:40,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▏                 | 3982/7350 [01:22<01:09, 48.50it/s]2022-02-22 21:54:40,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▏                 | 3987/7350 [01:22<01:09, 48.68it/s]2022-02-22 21:54:40,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:40,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▏                 | 3992/7350 [01:22<01:11, 46.78it/s]2022-02-22 21:54:40,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▏                 | 3998/7350 [01:22<01:08, 49.25it/s]2022-02-22 21:54:41,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▏                 | 4003/7350 [01:22<01:21, 41.01it/s]2022-02-22 21:54:41,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▎                 | 4009/7350 [01:22<01:13, 45.59it/s]2022-02-22 21:54:41,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▎                 | 4014/7350 [01:22<01:12, 46.17it/s]2022-02-22 21:54:41,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▎                 | 4020/7350 [01:23<01:09, 47.96it/s]2022-02-22 21:54:41,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▎                 | 4025/7350 [01:23<01:11, 46.40it/s]2022-02-22 21:54:41,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▍                 | 4031/7350 [01:23<01:06, 49.86it/s]2022-02-22 21:54:41,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▍                 | 4037/7350 [01:23<01:07, 49.44it/s]2022-02-22 21:54:41,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:41,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▍                 | 4043/7350 [01:23<01:13, 44.69it/s]2022-02-22 21:54:42,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▍                 | 4048/7350 [01:23<01:12, 45.63it/s]2022-02-22 21:54:42,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▌                 | 4055/7350 [01:23<01:13, 45.05it/s]2022-02-22 21:54:42,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▌                 | 4063/7350 [01:23<01:06, 49.54it/s]2022-02-22 21:54:42,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▌                 | 4069/7350 [01:24<01:09, 47.12it/s]2022-02-22 21:54:42,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▌                 | 4075/7350 [01:24<01:08, 48.15it/s]2022-02-22 21:54:42,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▋                 | 4080/7350 [01:24<01:14, 43.97it/s]2022-02-22 21:54:42,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:42,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▋                 | 4086/7350 [01:24<01:09, 47.10it/s]2022-02-22 21:54:43,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▋                 | 4091/7350 [01:24<01:08, 47.34it/s]2022-02-22 21:54:43,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▋                 | 4096/7350 [01:24<01:07, 47.88it/s]2022-02-22 21:54:43,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▊                 | 4101/7350 [01:24<01:10, 45.85it/s]2022-02-22 21:54:43,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▊                 | 4106/7350 [01:24<01:15, 42.84it/s]2022-02-22 21:54:43,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▊                 | 4114/7350 [01:25<01:04, 50.23it/s]2022-02-22 21:54:43,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▊                 | 4120/7350 [01:25<01:08, 47.33it/s]2022-02-22 21:54:43,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▉                 | 4126/7350 [01:25<01:11, 44.90it/s]2022-02-22 21:54:43,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:43,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▉                 | 4134/7350 [01:25<01:04, 49.58it/s]2022-02-22 21:54:44,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▉                 | 4140/7350 [01:25<01:09, 46.19it/s]2022-02-22 21:54:44,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|█████████████████████▉                 | 4146/7350 [01:25<01:08, 46.70it/s]2022-02-22 21:54:44,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|██████████████████████                 | 4151/7350 [01:25<01:12, 44.12it/s]2022-02-22 21:54:44,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████                 | 4157/7350 [01:25<01:13, 43.40it/s]2022-02-22 21:54:44,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████                 | 4167/7350 [01:26<01:03, 50.29it/s]2022-02-22 21:54:44,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▏                | 4172/7350 [01:26<01:03, 50.11it/s]2022-02-22 21:54:44,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▏                | 4177/7350 [01:26<01:03, 49.74it/s]2022-02-22 21:54:44,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:44,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▏                | 4182/7350 [01:26<01:07, 46.79it/s]2022-02-22 21:54:45,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▏                | 4188/7350 [01:26<01:12, 43.44it/s]2022-02-22 21:54:45,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▎                | 4196/7350 [01:26<01:07, 46.77it/s]2022-02-22 21:54:45,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▎                | 4201/7350 [01:26<01:07, 46.72it/s]2022-02-22 21:54:45,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▎                | 4207/7350 [01:26<01:04, 49.02it/s]2022-02-22 21:54:45,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▎                | 4212/7350 [01:27<01:08, 46.00it/s]2022-02-22 21:54:45,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▍                | 4217/7350 [01:27<01:08, 45.48it/s]2022-02-22 21:54:45,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▍                | 4223/7350 [01:27<01:08, 45.82it/s]2022-02-22 21:54:45,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:45,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▍                | 4228/7350 [01:27<01:12, 42.86it/s]2022-02-22 21:54:46,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▍                | 4237/7350 [01:27<00:57, 54.23it/s]2022-02-22 21:54:46,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▌                | 4243/7350 [01:27<01:05, 47.38it/s]2022-02-22 21:54:46,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▌                | 4249/7350 [01:27<01:09, 44.56it/s]2022-02-22 21:54:46,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▌                | 4258/7350 [01:28<01:04, 47.74it/s]2022-02-22 21:54:46,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▌                | 4263/7350 [01:28<01:06, 46.50it/s]2022-02-22 21:54:46,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:46,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▋                | 4269/7350 [01:28<01:15, 40.58it/s]2022-02-22 21:54:47,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▋                | 4279/7350 [01:28<01:06, 46.46it/s]2022-02-22 21:54:47,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▋                | 4286/7350 [01:28<01:01, 49.53it/s]2022-02-22 21:54:47,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▊                | 4292/7350 [01:28<01:04, 47.40it/s]2022-02-22 21:54:47,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|██████████████████████▊                | 4297/7350 [01:28<01:05, 46.64it/s]2022-02-22 21:54:47,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▊                | 4303/7350 [01:29<01:05, 46.32it/s]2022-02-22 21:54:47,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▊                | 4308/7350 [01:29<01:05, 46.15it/s]2022-02-22 21:54:47,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▉                | 4314/7350 [01:29<01:05, 46.60it/s]2022-02-22 21:54:47,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:47,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▉                | 4321/7350 [01:29<01:04, 46.83it/s]2022-02-22 21:54:48,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|██████████████████████▉                | 4327/7350 [01:29<01:11, 42.28it/s]2022-02-22 21:54:48,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████                | 4337/7350 [01:29<01:00, 50.20it/s]2022-02-22 21:54:48,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████                | 4343/7350 [01:29<01:02, 48.38it/s]2022-02-22 21:54:48,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████                | 4349/7350 [01:30<01:02, 47.79it/s]2022-02-22 21:54:48,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████                | 4356/7350 [01:30<00:58, 51.19it/s]2022-02-22 21:54:48,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████▏               | 4362/7350 [01:30<01:02, 47.66it/s]2022-02-22 21:54:48,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:48,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████▏               | 4367/7350 [01:30<01:03, 47.02it/s]2022-02-22 21:54:48,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████▏               | 4372/7350 [01:30<01:02, 47.75it/s]2022-02-22 21:54:49,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▏               | 4378/7350 [01:30<01:10, 42.46it/s]2022-02-22 21:54:49,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▎               | 4388/7350 [01:30<00:58, 50.57it/s]2022-02-22 21:54:49,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▎               | 4394/7350 [01:30<01:00, 49.03it/s]2022-02-22 21:54:49,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▎               | 4400/7350 [01:31<01:03, 46.69it/s]2022-02-22 21:54:49,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▍               | 4408/7350 [01:31<01:00, 48.37it/s]2022-02-22 21:54:49,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:49,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▍               | 4413/7350 [01:31<01:03, 46.01it/s]2022-02-22 21:54:49,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▍               | 4420/7350 [01:31<00:58, 50.41it/s]2022-02-22 21:54:50,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▍               | 4426/7350 [01:31<01:08, 42.38it/s]2022-02-22 21:54:50,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▌               | 4434/7350 [01:31<00:57, 50.63it/s]2022-02-22 21:54:50,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▌               | 4440/7350 [01:31<00:57, 50.50it/s]2022-02-22 21:54:50,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▌               | 4446/7350 [01:32<01:00, 47.64it/s]2022-02-22 21:54:50,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▌               | 4452/7350 [01:32<00:59, 48.44it/s]2022-02-22 21:54:50,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▋               | 4458/7350 [01:32<00:57, 50.67it/s]2022-02-22 21:54:50,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:50,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▋               | 4464/7350 [01:32<00:58, 49.52it/s]2022-02-22 21:54:51,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▋               | 4470/7350 [01:32<00:56, 51.35it/s]2022-02-22 21:54:51,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▊               | 4476/7350 [01:32<00:57, 50.04it/s]2022-02-22 21:54:51,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▊               | 4482/7350 [01:32<01:00, 47.76it/s]2022-02-22 21:54:51,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▊               | 4488/7350 [01:32<01:04, 44.42it/s]2022-02-22 21:54:51,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▊               | 4495/7350 [01:33<00:56, 50.21it/s]2022-02-22 21:54:51,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▉               | 4501/7350 [01:33<01:00, 46.94it/s]2022-02-22 21:54:51,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:51,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▉               | 4509/7350 [01:33<00:59, 47.74it/s]2022-02-22 21:54:51,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|███████████████████████▉               | 4516/7350 [01:33<00:55, 51.51it/s]2022-02-22 21:54:52,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|███████████████████████▉               | 4522/7350 [01:33<00:58, 48.21it/s]2022-02-22 21:54:52,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████               | 4528/7350 [01:33<01:01, 45.93it/s]2022-02-22 21:54:52,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████               | 4534/7350 [01:33<00:59, 47.58it/s]2022-02-22 21:54:52,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████               | 4539/7350 [01:34<01:02, 44.77it/s]2022-02-22 21:54:52,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████               | 4546/7350 [01:34<00:55, 50.24it/s]2022-02-22 21:54:52,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▏              | 4552/7350 [01:34<00:59, 47.11it/s]2022-02-22 21:54:52,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▏              | 4557/7350 [01:34<00:59, 47.14it/s]2022-02-22 21:54:52,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:52,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▏              | 4562/7350 [01:34<01:05, 42.36it/s]2022-02-22 21:54:53,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▏              | 4569/7350 [01:34<01:01, 45.26it/s]2022-02-22 21:54:53,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▎              | 4576/7350 [01:34<00:55, 50.39it/s]2022-02-22 21:54:53,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▎              | 4582/7350 [01:34<00:59, 46.87it/s]2022-02-22 21:54:53,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▎              | 4588/7350 [01:35<00:58, 46.99it/s]2022-02-22 21:54:53,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▍              | 4594/7350 [01:35<00:56, 49.15it/s]2022-02-22 21:54:53,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▍              | 4600/7350 [01:35<00:58, 47.00it/s]2022-02-22 21:54:53,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:53,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▍              | 4605/7350 [01:35<00:59, 46.13it/s]2022-02-22 21:54:54,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▍              | 4610/7350 [01:35<00:58, 46.89it/s]2022-02-22 21:54:54,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▍              | 4615/7350 [01:35<00:58, 46.67it/s]2022-02-22 21:54:54,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▌              | 4620/7350 [01:35<00:58, 46.84it/s]2022-02-22 21:54:54,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▌              | 4626/7350 [01:35<00:57, 47.61it/s]2022-02-22 21:54:54,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▌              | 4632/7350 [01:35<00:53, 50.56it/s]2022-02-22 21:54:54,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▌              | 4638/7350 [01:36<00:52, 51.34it/s]2022-02-22 21:54:54,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▋              | 4644/7350 [01:36<00:51, 52.14it/s]2022-02-22 21:54:54,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:54,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▋              | 4650/7350 [01:36<01:02, 42.90it/s]2022-02-22 21:54:55,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,060 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▋              | 4658/7350 [01:36<00:54, 49.06it/s]2022-02-22 21:54:55,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|████████████████████████▋              | 4664/7350 [01:36<00:53, 50.63it/s]2022-02-22 21:54:55,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▊              | 4670/7350 [01:36<00:54, 49.44it/s]2022-02-22 21:54:55,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▊              | 4676/7350 [01:36<01:02, 42.96it/s]2022-02-22 21:54:55,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▊              | 4685/7350 [01:37<00:51, 51.72it/s]2022-02-22 21:54:55,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▉              | 4691/7350 [01:37<00:56, 46.68it/s]2022-02-22 21:54:55,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:55,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▉              | 4696/7350 [01:37<00:58, 45.07it/s]2022-02-22 21:54:55,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▉              | 4704/7350 [01:37<00:57, 46.28it/s]2022-02-22 21:54:56,060 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|████████████████████████▉              | 4710/7350 [01:37<00:59, 44.14it/s]2022-02-22 21:54:56,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████              | 4716/7350 [01:37<00:56, 46.98it/s]2022-02-22 21:54:56,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████              | 4722/7350 [01:37<00:53, 48.72it/s]2022-02-22 21:54:56,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████              | 4727/7350 [01:37<00:59, 44.19it/s]2022-02-22 21:54:56,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████              | 4735/7350 [01:38<00:52, 49.63it/s]2022-02-22 21:54:56,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▏             | 4741/7350 [01:38<00:52, 49.50it/s]2022-02-22 21:54:56,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,963 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:56,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▏             | 4747/7350 [01:38<01:02, 41.47it/s]2022-02-22 21:54:57,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▏             | 4754/7350 [01:38<00:55, 46.94it/s]2022-02-22 21:54:57,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▎             | 4760/7350 [01:38<00:57, 44.77it/s]2022-02-22 21:54:57,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▎             | 4766/7350 [01:38<00:54, 47.60it/s]2022-02-22 21:54:57,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▎             | 4771/7350 [01:38<00:54, 46.90it/s]2022-02-22 21:54:57,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▎             | 4776/7350 [01:39<00:54, 47.03it/s]2022-02-22 21:54:57,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▍             | 4783/7350 [01:39<00:50, 51.08it/s]2022-02-22 21:54:57,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▍             | 4789/7350 [01:39<00:56, 45.31it/s]2022-02-22 21:54:57,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:57,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▍             | 4796/7350 [01:39<00:52, 48.86it/s]2022-02-22 21:54:58,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▍             | 4802/7350 [01:39<00:57, 44.56it/s]2022-02-22 21:54:58,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▌             | 4807/7350 [01:39<01:08, 37.10it/s]2022-02-22 21:54:58,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▌             | 4817/7350 [01:39<00:59, 42.91it/s]2022-02-22 21:54:58,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▌             | 4824/7350 [01:40<00:52, 47.72it/s]2022-02-22 21:54:58,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▋             | 4830/7350 [01:40<00:57, 43.98it/s]2022-02-22 21:54:58,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▋             | 4837/7350 [01:40<00:54, 46.13it/s]2022-02-22 21:54:58,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:58,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▋             | 4842/7350 [01:40<00:54, 45.67it/s]2022-02-22 21:54:59,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▋             | 4848/7350 [01:40<00:59, 41.96it/s]2022-02-22 21:54:59,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▊             | 4857/7350 [01:40<00:48, 51.89it/s]2022-02-22 21:54:59,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▊             | 4863/7350 [01:40<00:50, 49.25it/s]2022-02-22 21:54:59,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▊             | 4869/7350 [01:41<00:54, 45.69it/s]2022-02-22 21:54:59,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▉             | 4878/7350 [01:41<00:55, 44.35it/s]2022-02-22 21:54:59,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:54:59,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|█████████████████████████▉             | 4886/7350 [01:41<00:47, 51.37it/s]2022-02-22 21:54:59,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|█████████████████████████▉             | 4892/7350 [01:41<00:55, 44.64it/s]2022-02-22 21:55:00,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|█████████████████████████▉             | 4898/7350 [01:41<00:56, 43.28it/s]2022-02-22 21:55:00,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████             | 4907/7350 [01:41<00:49, 49.65it/s]2022-02-22 21:55:00,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████             | 4913/7350 [01:42<00:50, 47.84it/s]2022-02-22 21:55:00,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████             | 4918/7350 [01:42<00:54, 44.46it/s]2022-02-22 21:55:00,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▏            | 4928/7350 [01:42<00:54, 44.82it/s]2022-02-22 21:55:00,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:00,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▏            | 4933/7350 [01:42<00:55, 43.58it/s]2022-02-22 21:55:01,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▏            | 4939/7350 [01:42<00:52, 46.05it/s]2022-02-22 21:55:01,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▏            | 4944/7350 [01:42<00:54, 44.24it/s]2022-02-22 21:55:01,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▎            | 4952/7350 [01:42<00:47, 50.94it/s]2022-02-22 21:55:01,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▎            | 4958/7350 [01:42<00:50, 47.05it/s]2022-02-22 21:55:01,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▎            | 4963/7350 [01:43<00:52, 45.45it/s]2022-02-22 21:55:01,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▎            | 4970/7350 [01:43<00:46, 51.36it/s]2022-02-22 21:55:01,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:01,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▍            | 4976/7350 [01:43<00:50, 46.67it/s]2022-02-22 21:55:02,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▍            | 4983/7350 [01:43<00:52, 45.12it/s]2022-02-22 21:55:02,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▍            | 4988/7350 [01:43<00:54, 43.04it/s]2022-02-22 21:55:02,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▍            | 4994/7350 [01:43<00:50, 47.00it/s]2022-02-22 21:55:02,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▌            | 5000/7350 [01:43<00:47, 49.49it/s]2022-02-22 21:55:02,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▌            | 5006/7350 [01:43<00:47, 49.05it/s]2022-02-22 21:55:02,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▌            | 5012/7350 [01:44<00:48, 48.37it/s]2022-02-22 21:55:02,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▋            | 5018/7350 [01:44<00:46, 50.56it/s]2022-02-22 21:55:02,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:02,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▋            | 5024/7350 [01:44<00:48, 47.59it/s]2022-02-22 21:55:03,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|██████████████████████████▋            | 5030/7350 [01:44<00:51, 45.12it/s]2022-02-22 21:55:03,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▋            | 5035/7350 [01:44<00:54, 42.81it/s]2022-02-22 21:55:03,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▊            | 5042/7350 [01:44<00:48, 47.15it/s]2022-02-22 21:55:03,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▊            | 5047/7350 [01:44<00:52, 44.06it/s]2022-02-22 21:55:03,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▊            | 5054/7350 [01:45<00:46, 49.09it/s]2022-02-22 21:55:03,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▊            | 5060/7350 [01:45<00:46, 49.70it/s]2022-02-22 21:55:03,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▉            | 5066/7350 [01:45<00:52, 43.48it/s]2022-02-22 21:55:03,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:03,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▉            | 5073/7350 [01:45<00:53, 42.93it/s]2022-02-22 21:55:04,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▉            | 5080/7350 [01:45<00:46, 48.91it/s]2022-02-22 21:55:04,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|██████████████████████████▉            | 5086/7350 [01:45<00:47, 47.55it/s]2022-02-22 21:55:04,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████            | 5093/7350 [01:45<00:46, 48.16it/s]2022-02-22 21:55:04,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████            | 5098/7350 [01:46<00:50, 44.50it/s]2022-02-22 21:55:04,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████            | 5104/7350 [01:46<00:50, 44.81it/s]2022-02-22 21:55:04,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████            | 5109/7350 [01:46<00:50, 44.13it/s]2022-02-22 21:55:04,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:04,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▏           | 5116/7350 [01:46<00:49, 44.71it/s]2022-02-22 21:55:04,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▏           | 5121/7350 [01:46<00:48, 45.67it/s]2022-02-22 21:55:05,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▏           | 5126/7350 [01:46<00:50, 44.22it/s]2022-02-22 21:55:05,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▏           | 5134/7350 [01:46<00:41, 52.82it/s]2022-02-22 21:55:05,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▎           | 5140/7350 [01:46<00:49, 44.20it/s]2022-02-22 21:55:05,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▎           | 5145/7350 [01:47<00:50, 44.06it/s]2022-02-22 21:55:05,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▎           | 5150/7350 [01:47<00:52, 41.74it/s]2022-02-22 21:55:05,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▎           | 5158/7350 [01:47<00:46, 47.30it/s]2022-02-22 21:55:05,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:05,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▍           | 5164/7350 [01:47<00:44, 49.22it/s]2022-02-22 21:55:06,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▍           | 5171/7350 [01:47<00:42, 50.99it/s]2022-02-22 21:55:06,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▍           | 5177/7350 [01:47<00:50, 42.63it/s]2022-02-22 21:55:06,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▌           | 5184/7350 [01:47<00:44, 48.47it/s]2022-02-22 21:55:06,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▌           | 5190/7350 [01:47<00:43, 49.55it/s]2022-02-22 21:55:06,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▌           | 5196/7350 [01:48<00:47, 44.98it/s]2022-02-22 21:55:06,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▌           | 5204/7350 [01:48<00:41, 51.74it/s]2022-02-22 21:55:06,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:06,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▋           | 5210/7350 [01:48<00:50, 42.68it/s]2022-02-22 21:55:07,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▋           | 5217/7350 [01:48<00:45, 47.29it/s]2022-02-22 21:55:07,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▋           | 5226/7350 [01:48<00:40, 52.22it/s]2022-02-22 21:55:07,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▊           | 5232/7350 [01:48<00:44, 47.07it/s]2022-02-22 21:55:07,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▊           | 5238/7350 [01:48<00:43, 48.12it/s]2022-02-22 21:55:07,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▊           | 5245/7350 [01:49<00:44, 47.14it/s]2022-02-22 21:55:07,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▊           | 5250/7350 [01:49<00:44, 47.25it/s]2022-02-22 21:55:07,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:07,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|███████████████████████████▉           | 5255/7350 [01:49<00:48, 42.85it/s]2022-02-22 21:55:08,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|███████████████████████████▉           | 5261/7350 [01:49<00:45, 46.12it/s]2022-02-22 21:55:08,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|███████████████████████████▉           | 5268/7350 [01:49<00:47, 44.08it/s]2022-02-22 21:55:08,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|███████████████████████████▉           | 5275/7350 [01:49<00:41, 49.48it/s]2022-02-22 21:55:08,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████           | 5281/7350 [01:49<00:44, 46.80it/s]2022-02-22 21:55:08,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████           | 5288/7350 [01:50<00:41, 49.95it/s]2022-02-22 21:55:08,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████           | 5294/7350 [01:50<00:40, 50.78it/s]2022-02-22 21:55:08,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████           | 5300/7350 [01:50<00:49, 41.35it/s]2022-02-22 21:55:08,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:08,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▏          | 5308/7350 [01:50<00:47, 43.40it/s]2022-02-22 21:55:09,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▏          | 5317/7350 [01:50<00:41, 48.67it/s]2022-02-22 21:55:09,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▏          | 5323/7350 [01:50<00:42, 47.22it/s]2022-02-22 21:55:09,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▎          | 5328/7350 [01:50<00:47, 42.80it/s]2022-02-22 21:55:09,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▎          | 5335/7350 [01:51<00:45, 44.11it/s]2022-02-22 21:55:09,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▎          | 5341/7350 [01:51<00:44, 45.25it/s]2022-02-22 21:55:09,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▎          | 5347/7350 [01:51<00:42, 47.67it/s]2022-02-22 21:55:09,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:09,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▍          | 5352/7350 [01:51<00:44, 44.50it/s]2022-02-22 21:55:10,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▍          | 5359/7350 [01:51<00:39, 50.18it/s]2022-02-22 21:55:10,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▍          | 5365/7350 [01:51<00:46, 42.93it/s]2022-02-22 21:55:10,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▌          | 5373/7350 [01:51<00:43, 45.44it/s]2022-02-22 21:55:10,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▌          | 5381/7350 [01:52<00:38, 51.47it/s]2022-02-22 21:55:10,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▌          | 5387/7350 [01:52<00:44, 44.46it/s]2022-02-22 21:55:10,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▌          | 5393/7350 [01:52<00:42, 45.79it/s]2022-02-22 21:55:10,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:10,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|████████████████████████████▋          | 5399/7350 [01:52<00:41, 47.31it/s]2022-02-22 21:55:11,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▋          | 5404/7350 [01:52<00:47, 41.16it/s]2022-02-22 21:55:11,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▋          | 5414/7350 [01:52<00:42, 45.88it/s]2022-02-22 21:55:11,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▊          | 5421/7350 [01:52<00:38, 50.34it/s]2022-02-22 21:55:11,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▊          | 5427/7350 [01:53<00:39, 48.58it/s]2022-02-22 21:55:11,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▊          | 5432/7350 [01:53<00:40, 46.80it/s]2022-02-22 21:55:11,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▊          | 5438/7350 [01:53<00:38, 49.23it/s]2022-02-22 21:55:11,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:11,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▉          | 5445/7350 [01:53<00:46, 41.22it/s]2022-02-22 21:55:12,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▉          | 5452/7350 [01:53<00:40, 47.27it/s]2022-02-22 21:55:12,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|████████████████████████████▉          | 5459/7350 [01:53<00:41, 45.97it/s]2022-02-22 21:55:12,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████          | 5467/7350 [01:53<00:36, 52.20it/s]2022-02-22 21:55:12,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████          | 5473/7350 [01:54<00:39, 47.31it/s]2022-02-22 21:55:12,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████          | 5479/7350 [01:54<00:39, 47.08it/s]2022-02-22 21:55:12,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████          | 5486/7350 [01:54<00:37, 50.32it/s]2022-02-22 21:55:12,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:12,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▏         | 5492/7350 [01:54<00:40, 45.64it/s]2022-02-22 21:55:13,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▏         | 5499/7350 [01:54<00:41, 44.95it/s]2022-02-22 21:55:13,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▏         | 5505/7350 [01:54<00:38, 47.44it/s]2022-02-22 21:55:13,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▏         | 5510/7350 [01:54<00:38, 47.87it/s]2022-02-22 21:55:13,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▎         | 5515/7350 [01:54<00:38, 47.38it/s]2022-02-22 21:55:13,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▎         | 5521/7350 [01:55<00:37, 49.39it/s]2022-02-22 21:55:13,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▎         | 5527/7350 [01:55<00:38, 47.55it/s]2022-02-22 21:55:13,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▎         | 5532/7350 [01:55<00:40, 44.86it/s]2022-02-22 21:55:13,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:13,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▍         | 5541/7350 [01:55<00:36, 49.91it/s]2022-02-22 21:55:14,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▍         | 5546/7350 [01:55<00:38, 46.65it/s]2022-02-22 21:55:14,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▍         | 5552/7350 [01:55<00:36, 49.00it/s]2022-02-22 21:55:14,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▍         | 5557/7350 [01:55<00:39, 45.23it/s]2022-02-22 21:55:14,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▌         | 5563/7350 [01:55<00:38, 45.93it/s]2022-02-22 21:55:14,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▌         | 5568/7350 [01:56<00:38, 46.04it/s]2022-02-22 21:55:14,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▌         | 5574/7350 [01:56<00:38, 46.26it/s]2022-02-22 21:55:14,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▌         | 5580/7350 [01:56<00:37, 47.64it/s]2022-02-22 21:55:14,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:14,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▋         | 5585/7350 [01:56<00:37, 47.52it/s]2022-02-22 21:55:15,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▋         | 5590/7350 [01:56<00:41, 42.55it/s]2022-02-22 21:55:15,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▋         | 5599/7350 [01:56<00:35, 49.25it/s]2022-02-22 21:55:15,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▋         | 5604/7350 [01:56<00:36, 47.78it/s]2022-02-22 21:55:15,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▊         | 5610/7350 [01:56<00:34, 50.01it/s]2022-02-22 21:55:15,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▊         | 5616/7350 [01:57<00:34, 49.56it/s]2022-02-22 21:55:15,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|█████████████████████████████▊         | 5621/7350 [01:57<00:35, 48.55it/s]2022-02-22 21:55:15,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▊         | 5626/7350 [01:57<00:35, 48.81it/s]2022-02-22 21:55:15,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▉         | 5632/7350 [01:57<00:33, 51.37it/s]2022-02-22 21:55:15,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:15,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▉         | 5638/7350 [01:57<00:36, 46.41it/s]2022-02-22 21:55:16,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▉         | 5644/7350 [01:57<00:37, 45.62it/s]2022-02-22 21:55:16,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|█████████████████████████████▉         | 5650/7350 [01:57<00:35, 48.47it/s]2022-02-22 21:55:16,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████         | 5655/7350 [01:57<00:36, 46.98it/s]2022-02-22 21:55:16,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████         | 5660/7350 [01:57<00:35, 47.05it/s]2022-02-22 21:55:16,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████         | 5667/7350 [01:58<00:36, 46.68it/s]2022-02-22 21:55:16,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████         | 5672/7350 [01:58<00:35, 47.09it/s]2022-02-22 21:55:16,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████         | 5677/7350 [01:58<00:35, 46.71it/s]2022-02-22 21:55:16,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:16,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████▏        | 5682/7350 [01:58<00:36, 45.83it/s]2022-02-22 21:55:17,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████▏        | 5688/7350 [01:58<00:36, 45.06it/s]2022-02-22 21:55:17,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████▏        | 5695/7350 [01:58<00:32, 51.26it/s]2022-02-22 21:55:17,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▎        | 5701/7350 [01:58<00:36, 45.58it/s]2022-02-22 21:55:17,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▎        | 5708/7350 [01:59<00:37, 43.65it/s]2022-02-22 21:55:17,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▎        | 5717/7350 [01:59<00:31, 52.50it/s]2022-02-22 21:55:17,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▎        | 5723/7350 [01:59<00:32, 50.60it/s]2022-02-22 21:55:17,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:17,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▍        | 5729/7350 [01:59<00:36, 44.72it/s]2022-02-22 21:55:18,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▍        | 5735/7350 [01:59<00:36, 44.11it/s]2022-02-22 21:55:18,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▍        | 5741/7350 [01:59<00:33, 47.54it/s]2022-02-22 21:55:18,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▍        | 5747/7350 [01:59<00:32, 48.60it/s]2022-02-22 21:55:18,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▌        | 5753/7350 [01:59<00:33, 48.33it/s]2022-02-22 21:55:18,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▌        | 5758/7350 [02:00<00:37, 42.78it/s]2022-02-22 21:55:18,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|██████████████████████████████▌        | 5765/7350 [02:00<00:33, 47.21it/s]2022-02-22 21:55:18,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▌        | 5770/7350 [02:00<00:35, 44.87it/s]2022-02-22 21:55:18,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:18,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▋        | 5777/7350 [02:00<00:31, 49.75it/s]2022-02-22 21:55:19,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▋        | 5783/7350 [02:00<00:33, 46.57it/s]2022-02-22 21:55:19,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▋        | 5790/7350 [02:00<00:31, 48.88it/s]2022-02-22 21:55:19,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▋        | 5795/7350 [02:00<00:34, 45.64it/s]2022-02-22 21:55:19,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▊        | 5801/7350 [02:00<00:31, 48.43it/s]2022-02-22 21:55:19,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▊        | 5806/7350 [02:01<00:33, 46.46it/s]2022-02-22 21:55:19,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▊        | 5813/7350 [02:01<00:36, 42.60it/s]2022-02-22 21:55:19,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:19,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▉        | 5823/7350 [02:01<00:33, 45.08it/s]2022-02-22 21:55:20,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▉        | 5831/7350 [02:01<00:29, 52.35it/s]2022-02-22 21:55:20,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|██████████████████████████████▉        | 5837/7350 [02:01<00:32, 46.26it/s]2022-02-22 21:55:20,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|███████████████████████████████        | 5843/7350 [02:01<00:32, 46.68it/s]2022-02-22 21:55:20,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████        | 5848/7350 [02:02<00:33, 45.35it/s]2022-02-22 21:55:20,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████        | 5855/7350 [02:02<00:31, 47.37it/s]2022-02-22 21:55:20,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████        | 5860/7350 [02:02<00:33, 44.66it/s]2022-02-22 21:55:20,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▏       | 5866/7350 [02:02<00:32, 45.32it/s]2022-02-22 21:55:20,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:20,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▏       | 5871/7350 [02:02<00:33, 44.31it/s]2022-02-22 21:55:21,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▏       | 5876/7350 [02:02<00:33, 43.99it/s]2022-02-22 21:55:21,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▏       | 5886/7350 [02:02<00:28, 51.99it/s]2022-02-22 21:55:21,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▎       | 5892/7350 [02:02<00:30, 47.50it/s]2022-02-22 21:55:21,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▎       | 5897/7350 [02:03<00:31, 46.27it/s]2022-02-22 21:55:21,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▎       | 5902/7350 [02:03<00:31, 46.08it/s]2022-02-22 21:55:21,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:21,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▎       | 5908/7350 [02:03<00:33, 42.80it/s]2022-02-22 21:55:21,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▍       | 5916/7350 [02:03<00:29, 49.44it/s]2022-02-22 21:55:22,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▍       | 5922/7350 [02:03<00:30, 46.27it/s]2022-02-22 21:55:22,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▍       | 5927/7350 [02:03<00:30, 46.13it/s]2022-02-22 21:55:22,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▍       | 5932/7350 [02:03<00:32, 43.15it/s]2022-02-22 21:55:22,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▌       | 5939/7350 [02:04<00:31, 44.17it/s]2022-02-22 21:55:22,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▌       | 5947/7350 [02:04<00:27, 51.96it/s]2022-02-22 21:55:22,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▌       | 5953/7350 [02:04<00:29, 47.50it/s]2022-02-22 21:55:22,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▌       | 5959/7350 [02:04<00:28, 49.25it/s]2022-02-22 21:55:22,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:22,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▋       | 5965/7350 [02:04<00:30, 45.16it/s]2022-02-22 21:55:23,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▋       | 5971/7350 [02:04<00:29, 46.37it/s]2022-02-22 21:55:23,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▋       | 5976/7350 [02:04<00:30, 45.19it/s]2022-02-22 21:55:23,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▋       | 5982/7350 [02:04<00:29, 46.02it/s]2022-02-22 21:55:23,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▊       | 5989/7350 [02:05<00:27, 49.98it/s]2022-02-22 21:55:23,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▊       | 5996/7350 [02:05<00:28, 47.44it/s]2022-02-22 21:55:23,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▊       | 6002/7350 [02:05<00:27, 49.21it/s]2022-02-22 21:55:23,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:23,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 6008/7350 [02:05<00:31, 43.28it/s]2022-02-22 21:55:24,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 6016/7350 [02:05<00:28, 46.70it/s]2022-02-22 21:55:24,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 6022/7350 [02:05<00:27, 48.98it/s]2022-02-22 21:55:24,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 6028/7350 [02:05<00:26, 49.53it/s]2022-02-22 21:55:24,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████       | 6034/7350 [02:05<00:25, 51.12it/s]2022-02-22 21:55:24,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████       | 6040/7350 [02:06<00:26, 49.03it/s]2022-02-22 21:55:24,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████       | 6045/7350 [02:06<00:27, 47.06it/s]2022-02-22 21:55:24,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████       | 6050/7350 [02:06<00:28, 46.04it/s]2022-02-22 21:55:24,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:24,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████▏      | 6056/7350 [02:06<00:27, 47.76it/s]2022-02-22 21:55:25,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████▏      | 6062/7350 [02:06<00:27, 46.25it/s]2022-02-22 21:55:25,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▏      | 6068/7350 [02:06<00:29, 43.55it/s]2022-02-22 21:55:25,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▏      | 6073/7350 [02:06<00:28, 44.78it/s]2022-02-22 21:55:25,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▎      | 6078/7350 [02:06<00:29, 43.58it/s]2022-02-22 21:55:25,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▎      | 6083/7350 [02:07<00:28, 44.64it/s]2022-02-22 21:55:25,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▎      | 6088/7350 [02:07<00:28, 44.76it/s]2022-02-22 21:55:25,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▎      | 6097/7350 [02:07<00:22, 55.69it/s]2022-02-22 21:55:25,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:25,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▍      | 6103/7350 [02:07<00:25, 48.63it/s]2022-02-22 21:55:26,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▍      | 6109/7350 [02:07<00:29, 41.60it/s]2022-02-22 21:55:26,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▍      | 6118/7350 [02:07<00:28, 43.34it/s]2022-02-22 21:55:26,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▌      | 6128/7350 [02:08<00:26, 45.45it/s]2022-02-22 21:55:26,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▌      | 6133/7350 [02:08<00:26, 46.28it/s]2022-02-22 21:55:26,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▌      | 6138/7350 [02:08<00:26, 46.34it/s]2022-02-22 21:55:26,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:26,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▌      | 6143/7350 [02:08<00:28, 42.62it/s]2022-02-22 21:55:26,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 6150/7350 [02:08<00:24, 48.76it/s]2022-02-22 21:55:27,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 6156/7350 [02:08<00:24, 49.42it/s]2022-02-22 21:55:27,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 6162/7350 [02:08<00:25, 47.09it/s]2022-02-22 21:55:27,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 6167/7350 [02:08<00:27, 43.64it/s]2022-02-22 21:55:27,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▊      | 6174/7350 [02:09<00:26, 44.75it/s]2022-02-22 21:55:27,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▊      | 6181/7350 [02:09<00:23, 48.74it/s]2022-02-22 21:55:27,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▊      | 6186/7350 [02:09<00:26, 44.10it/s]2022-02-22 21:55:27,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:27,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▊      | 6193/7350 [02:09<00:24, 47.04it/s]2022-02-22 21:55:28,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▉      | 6198/7350 [02:09<00:24, 46.80it/s]2022-02-22 21:55:28,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▉      | 6204/7350 [02:09<00:24, 46.54it/s]2022-02-22 21:55:28,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|████████████████████████████████▉      | 6211/7350 [02:09<00:23, 48.84it/s]2022-02-22 21:55:28,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|████████████████████████████████▉      | 6216/7350 [02:09<00:25, 44.71it/s]2022-02-22 21:55:28,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████      | 6223/7350 [02:10<00:22, 50.26it/s]2022-02-22 21:55:28,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████      | 6229/7350 [02:10<00:24, 45.71it/s]2022-02-22 21:55:28,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:28,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████      | 6235/7350 [02:10<00:24, 45.16it/s]2022-02-22 21:55:28,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 6243/7350 [02:10<00:20, 53.46it/s]2022-02-22 21:55:29,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 6249/7350 [02:10<00:23, 47.34it/s]2022-02-22 21:55:29,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 6255/7350 [02:10<00:23, 46.50it/s]2022-02-22 21:55:29,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 6260/7350 [02:10<00:23, 47.32it/s]2022-02-22 21:55:29,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 6265/7350 [02:10<00:23, 47.16it/s]2022-02-22 21:55:29,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▎     | 6270/7350 [02:11<00:23, 46.84it/s]2022-02-22 21:55:29,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▎     | 6277/7350 [02:11<00:21, 49.36it/s]2022-02-22 21:55:29,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▎     | 6282/7350 [02:11<00:24, 44.21it/s]2022-02-22 21:55:29,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:29,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▎     | 6289/7350 [02:11<00:22, 47.79it/s]2022-02-22 21:55:30,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▍     | 6294/7350 [02:11<00:22, 46.09it/s]2022-02-22 21:55:30,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▍     | 6299/7350 [02:11<00:22, 47.01it/s]2022-02-22 21:55:30,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▍     | 6304/7350 [02:11<00:21, 47.65it/s]2022-02-22 21:55:30,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▍     | 6309/7350 [02:11<00:24, 42.51it/s]2022-02-22 21:55:30,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 6316/7350 [02:12<00:21, 48.76it/s]2022-02-22 21:55:30,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 6322/7350 [02:12<00:21, 47.54it/s]2022-02-22 21:55:30,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 6328/7350 [02:12<00:22, 46.11it/s]2022-02-22 21:55:30,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:30,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 6335/7350 [02:12<00:19, 51.70it/s]2022-02-22 21:55:31,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▋     | 6341/7350 [02:12<00:23, 43.68it/s]2022-02-22 21:55:31,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▋     | 6347/7350 [02:12<00:21, 47.28it/s]2022-02-22 21:55:31,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▋     | 6353/7350 [02:12<00:21, 47.16it/s]2022-02-22 21:55:31,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▋     | 6358/7350 [02:12<00:21, 45.55it/s]2022-02-22 21:55:31,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 6363/7350 [02:13<00:21, 45.87it/s]2022-02-22 21:55:31,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 6368/7350 [02:13<00:21, 45.69it/s]2022-02-22 21:55:31,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 6373/7350 [02:13<00:21, 46.26it/s]2022-02-22 21:55:31,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 6378/7350 [02:13<00:21, 44.99it/s]2022-02-22 21:55:31,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:31,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 6383/7350 [02:13<00:21, 45.33it/s]2022-02-22 21:55:32,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 6390/7350 [02:13<00:19, 50.32it/s]2022-02-22 21:55:32,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 6396/7350 [02:13<00:19, 48.80it/s]2022-02-22 21:55:32,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 6401/7350 [02:13<00:22, 42.73it/s]2022-02-22 21:55:32,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 6406/7350 [02:13<00:21, 44.50it/s]2022-02-22 21:55:32,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|██████████████████████████████████     | 6412/7350 [02:14<00:20, 45.95it/s]2022-02-22 21:55:32,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|██████████████████████████████████     | 6418/7350 [02:14<00:19, 48.58it/s]2022-02-22 21:55:32,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|██████████████████████████████████     | 6423/7350 [02:14<00:18, 48.82it/s]2022-02-22 21:55:32,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:32,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|██████████████████████████████████     | 6428/7350 [02:14<00:19, 46.76it/s]2022-02-22 21:55:33,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▏    | 6433/7350 [02:14<00:19, 46.41it/s]2022-02-22 21:55:33,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▏    | 6438/7350 [02:14<00:20, 44.36it/s]2022-02-22 21:55:33,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▏    | 6443/7350 [02:14<00:21, 42.53it/s]2022-02-22 21:55:33,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▏    | 6450/7350 [02:14<00:19, 45.58it/s]2022-02-22 21:55:33,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▎    | 6457/7350 [02:15<00:19, 45.96it/s]2022-02-22 21:55:33,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▎    | 6464/7350 [02:15<00:18, 48.67it/s]2022-02-22 21:55:33,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▎    | 6469/7350 [02:15<00:18, 48.80it/s]2022-02-22 21:55:33,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:33,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▎    | 6474/7350 [02:15<00:18, 47.52it/s]2022-02-22 21:55:34,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▍    | 6479/7350 [02:15<00:18, 47.40it/s]2022-02-22 21:55:34,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▍    | 6484/7350 [02:15<00:18, 47.03it/s]2022-02-22 21:55:34,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▍    | 6492/7350 [02:15<00:21, 40.00it/s]2022-02-22 21:55:34,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,630 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▌    | 6502/7350 [02:16<00:18, 46.21it/s]2022-02-22 21:55:34,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▌    | 6509/7350 [02:16<00:16, 51.08it/s]2022-02-22 21:55:34,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▌    | 6515/7350 [02:16<00:17, 46.96it/s]2022-02-22 21:55:34,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:34,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▌    | 6521/7350 [02:16<00:17, 46.70it/s]2022-02-22 21:55:35,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▋    | 6526/7350 [02:16<00:17, 47.39it/s]2022-02-22 21:55:35,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▋    | 6532/7350 [02:16<00:16, 48.83it/s]2022-02-22 21:55:35,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▋    | 6537/7350 [02:16<00:17, 45.64it/s]2022-02-22 21:55:35,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▋    | 6544/7350 [02:16<00:15, 50.90it/s]2022-02-22 21:55:35,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▊    | 6550/7350 [02:17<00:17, 44.75it/s]2022-02-22 21:55:35,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▊    | 6556/7350 [02:17<00:18, 43.28it/s]2022-02-22 21:55:35,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▊    | 6565/7350 [02:17<00:15, 49.44it/s]2022-02-22 21:55:35,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:35,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▊    | 6571/7350 [02:17<00:16, 48.46it/s]2022-02-22 21:55:36,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▉    | 6576/7350 [02:17<00:17, 43.57it/s]2022-02-22 21:55:36,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|██████████████████████████████████▉    | 6585/7350 [02:17<00:17, 44.76it/s]2022-02-22 21:55:36,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|██████████████████████████████████▉    | 6594/7350 [02:17<00:14, 52.10it/s]2022-02-22 21:55:36,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████    | 6600/7350 [02:18<00:15, 48.47it/s]2022-02-22 21:55:36,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████    | 6605/7350 [02:18<00:15, 47.71it/s]2022-02-22 21:55:36,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:36,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████    | 6610/7350 [02:18<00:17, 41.36it/s]2022-02-22 21:55:37,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████    | 6618/7350 [02:18<00:16, 43.62it/s]2022-02-22 21:55:37,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▏   | 6623/7350 [02:18<00:16, 44.55it/s]2022-02-22 21:55:37,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▏   | 6629/7350 [02:18<00:15, 45.89it/s]2022-02-22 21:55:37,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▏   | 6637/7350 [02:18<00:13, 50.93it/s]2022-02-22 21:55:37,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▏   | 6643/7350 [02:19<00:14, 47.72it/s]2022-02-22 21:55:37,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▎   | 6648/7350 [02:19<00:14, 47.03it/s]2022-02-22 21:55:37,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▎   | 6654/7350 [02:19<00:14, 48.70it/s]2022-02-22 21:55:37,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:37,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▎   | 6659/7350 [02:19<00:14, 46.91it/s]2022-02-22 21:55:38,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▎   | 6664/7350 [02:19<00:14, 47.14it/s]2022-02-22 21:55:38,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▍   | 6669/7350 [02:19<00:15, 45.03it/s]2022-02-22 21:55:38,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▍   | 6675/7350 [02:19<00:13, 48.54it/s]2022-02-22 21:55:38,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▍   | 6680/7350 [02:19<00:15, 43.17it/s]2022-02-22 21:55:38,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▍   | 6687/7350 [02:20<00:16, 39.20it/s]2022-02-22 21:55:38,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▌   | 6697/7350 [02:20<00:14, 46.13it/s]2022-02-22 21:55:38,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▌   | 6705/7350 [02:20<00:12, 49.75it/s]2022-02-22 21:55:38,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:38,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▌   | 6711/7350 [02:20<00:14, 45.34it/s]2022-02-22 21:55:39,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▋   | 6718/7350 [02:20<00:13, 47.56it/s]2022-02-22 21:55:39,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▋   | 6723/7350 [02:20<00:13, 48.00it/s]2022-02-22 21:55:39,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▋   | 6728/7350 [02:20<00:12, 48.46it/s]2022-02-22 21:55:39,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▋   | 6734/7350 [02:21<00:12, 49.56it/s]2022-02-22 21:55:39,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▊   | 6740/7350 [02:21<00:13, 45.06it/s]2022-02-22 21:55:39,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▊   | 6746/7350 [02:21<00:12, 48.67it/s]2022-02-22 21:55:39,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▊   | 6752/7350 [02:21<00:11, 50.12it/s]2022-02-22 21:55:39,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:39,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▊   | 6758/7350 [02:21<00:12, 47.87it/s]2022-02-22 21:55:40,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 6763/7350 [02:21<00:14, 41.41it/s]2022-02-22 21:55:40,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 6772/7350 [02:21<00:11, 52.40it/s]2022-02-22 21:55:40,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 6778/7350 [02:21<00:12, 46.18it/s]2022-02-22 21:55:40,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 6783/7350 [02:22<00:13, 42.69it/s]2022-02-22 21:55:40,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|████████████████████████████████████   | 6790/7350 [02:22<00:11, 48.41it/s]2022-02-22 21:55:40,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|████████████████████████████████████   | 6796/7350 [02:22<00:13, 40.96it/s]2022-02-22 21:55:40,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:40,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,082 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,097 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████   | 6803/7350 [02:22<00:12, 43.52it/s]2022-02-22 21:55:41,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▏  | 6809/7350 [02:22<00:11, 46.95it/s]2022-02-22 21:55:41,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▏  | 6815/7350 [02:22<00:11, 48.47it/s]2022-02-22 21:55:41,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▏  | 6821/7350 [02:22<00:11, 47.04it/s]2022-02-22 21:55:41,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▏  | 6826/7350 [02:23<00:11, 46.29it/s]2022-02-22 21:55:41,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▎  | 6834/7350 [02:23<00:10, 50.92it/s]2022-02-22 21:55:41,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▎  | 6840/7350 [02:23<00:12, 41.74it/s]2022-02-22 21:55:41,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:41,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▎  | 6846/7350 [02:23<00:11, 44.33it/s]2022-02-22 21:55:42,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▎  | 6852/7350 [02:23<00:10, 47.75it/s]2022-02-22 21:55:42,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▍  | 6858/7350 [02:23<00:10, 47.07it/s]2022-02-22 21:55:42,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▍  | 6865/7350 [02:23<00:09, 51.33it/s]2022-02-22 21:55:42,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▍  | 6871/7350 [02:23<00:10, 46.55it/s]2022-02-22 21:55:42,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▍  | 6876/7350 [02:24<00:10, 45.72it/s]2022-02-22 21:55:42,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 6881/7350 [02:24<00:10, 43.81it/s]2022-02-22 21:55:42,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 6887/7350 [02:24<00:09, 46.70it/s]2022-02-22 21:55:42,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:42,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 6893/7350 [02:24<00:09, 48.80it/s]2022-02-22 21:55:43,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 6898/7350 [02:24<00:10, 45.12it/s]2022-02-22 21:55:43,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▋  | 6904/7350 [02:24<00:10, 42.21it/s]2022-02-22 21:55:43,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▋  | 6914/7350 [02:24<00:10, 42.87it/s]2022-02-22 21:55:43,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▋  | 6923/7350 [02:25<00:08, 52.67it/s]2022-02-22 21:55:43,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▊  | 6929/7350 [02:25<00:08, 47.31it/s]2022-02-22 21:55:43,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:43,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▊  | 6935/7350 [02:25<00:09, 43.46it/s]2022-02-22 21:55:43,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▊  | 6943/7350 [02:25<00:08, 48.38it/s]2022-02-22 21:55:44,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▊  | 6949/7350 [02:25<00:08, 46.38it/s]2022-02-22 21:55:44,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▉  | 6954/7350 [02:25<00:08, 46.21it/s]2022-02-22 21:55:44,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▉  | 6959/7350 [02:25<00:09, 43.28it/s]2022-02-22 21:55:44,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▉  | 6966/7350 [02:26<00:09, 39.50it/s]2022-02-22 21:55:44,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████  | 6976/7350 [02:26<00:07, 47.23it/s]2022-02-22 21:55:44,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████  | 6981/7350 [02:26<00:07, 46.18it/s]2022-02-22 21:55:44,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:44,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,060 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████  | 6987/7350 [02:26<00:08, 44.10it/s]2022-02-22 21:55:45,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████  | 6993/7350 [02:26<00:07, 46.05it/s]2022-02-22 21:55:45,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 6998/7350 [02:26<00:07, 44.50it/s]2022-02-22 21:55:45,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 7007/7350 [02:26<00:06, 53.18it/s]2022-02-22 21:55:45,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 7013/7350 [02:27<00:07, 46.51it/s]2022-02-22 21:55:45,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 7018/7350 [02:27<00:07, 43.44it/s]2022-02-22 21:55:45,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▎ | 7025/7350 [02:27<00:06, 49.04it/s]2022-02-22 21:55:45,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:45,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▎ | 7031/7350 [02:27<00:07, 44.94it/s]2022-02-22 21:55:46,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▎ | 7037/7350 [02:27<00:06, 45.94it/s]2022-02-22 21:55:46,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▎ | 7042/7350 [02:27<00:06, 46.39it/s]2022-02-22 21:55:46,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▍ | 7047/7350 [02:27<00:06, 44.99it/s]2022-02-22 21:55:46,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▍ | 7052/7350 [02:27<00:06, 45.06it/s]2022-02-22 21:55:46,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▍ | 7058/7350 [02:28<00:06, 47.79it/s]2022-02-22 21:55:46,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▍ | 7063/7350 [02:28<00:06, 42.64it/s]2022-02-22 21:55:46,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▌ | 7070/7350 [02:28<00:05, 49.14it/s]2022-02-22 21:55:46,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:46,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▌ | 7076/7350 [02:28<00:06, 42.84it/s]2022-02-22 21:55:47,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▌ | 7082/7350 [02:28<00:06, 44.45it/s]2022-02-22 21:55:47,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▋ | 7092/7350 [02:28<00:05, 44.98it/s]2022-02-22 21:55:47,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▋ | 7100/7350 [02:28<00:04, 51.54it/s]2022-02-22 21:55:47,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▋ | 7106/7350 [02:29<00:05, 47.20it/s]2022-02-22 21:55:47,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▋ | 7114/7350 [02:29<00:05, 46.82it/s]2022-02-22 21:55:47,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▊ | 7120/7350 [02:29<00:04, 48.30it/s]2022-02-22 21:55:47,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:47,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▊ | 7126/7350 [02:29<00:04, 47.89it/s]2022-02-22 21:55:48,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▊ | 7132/7350 [02:29<00:04, 49.88it/s]2022-02-22 21:55:48,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▉ | 7138/7350 [02:29<00:04, 47.01it/s]2022-02-22 21:55:48,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▉ | 7145/7350 [02:29<00:04, 49.15it/s]2022-02-22 21:55:48,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▉ | 7150/7350 [02:30<00:04, 43.01it/s]2022-02-22 21:55:48,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▉ | 7157/7350 [02:30<00:04, 47.54it/s]2022-02-22 21:55:48,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|██████████████████████████████████████ | 7162/7350 [02:30<00:03, 47.38it/s]2022-02-22 21:55:48,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████ | 7167/7350 [02:30<00:03, 47.13it/s]2022-02-22 21:55:48,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:48,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████ | 7172/7350 [02:30<00:04, 43.37it/s]2022-02-22 21:55:49,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████ | 7178/7350 [02:30<00:03, 44.67it/s]2022-02-22 21:55:49,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████ | 7183/7350 [02:30<00:03, 45.99it/s]2022-02-22 21:55:49,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▏| 7188/7350 [02:30<00:03, 43.85it/s]2022-02-22 21:55:49,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▏| 7196/7350 [02:30<00:02, 52.41it/s]2022-02-22 21:55:49,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▏| 7202/7350 [02:31<00:03, 46.85it/s]2022-02-22 21:55:49,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▏| 7208/7350 [02:31<00:03, 44.51it/s]2022-02-22 21:55:49,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:49,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▎| 7213/7350 [02:31<00:03, 43.87it/s]2022-02-22 21:55:50,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▎| 7222/7350 [02:31<00:02, 48.55it/s]2022-02-22 21:55:50,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▎| 7227/7350 [02:31<00:02, 46.15it/s]2022-02-22 21:55:50,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▎| 7232/7350 [02:31<00:02, 45.97it/s]2022-02-22 21:55:50,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▍| 7239/7350 [02:31<00:02, 50.36it/s]2022-02-22 21:55:50,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▍| 7246/7350 [02:32<00:02, 44.35it/s]2022-02-22 21:55:50,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▍| 7255/7350 [02:32<00:01, 54.47it/s]2022-02-22 21:55:50,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▌| 7261/7350 [02:32<00:01, 48.56it/s]2022-02-22 21:55:50,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:50,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▌| 7267/7350 [02:32<00:01, 47.88it/s]2022-02-22 21:55:51,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▌| 7273/7350 [02:32<00:01, 48.33it/s]2022-02-22 21:55:51,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▌| 7279/7350 [02:32<00:01, 48.84it/s]2022-02-22 21:55:51,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▋| 7285/7350 [02:32<00:01, 48.41it/s]2022-02-22 21:55:51,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▋| 7290/7350 [02:32<00:01, 47.98it/s]2022-02-22 21:55:51,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▋| 7295/7350 [02:33<00:01, 44.36it/s]2022-02-22 21:55:51,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▋| 7300/7350 [02:33<00:01, 45.04it/s]2022-02-22 21:55:51,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▊| 7305/7350 [02:33<00:00, 46.09it/s]2022-02-22 21:55:51,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:51,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▊| 7310/7350 [02:33<00:00, 46.00it/s]2022-02-22 21:55:52,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▊| 7315/7350 [02:33<00:00, 45.02it/s]2022-02-22 21:55:52,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▊| 7320/7350 [02:33<00:00, 42.20it/s]2022-02-22 21:55:52,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▉| 7328/7350 [02:33<00:00, 46.86it/s]2022-02-22 21:55:52,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▉| 7333/7350 [02:33<00:00, 40.13it/s]2022-02-22 21:55:52,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▉| 7341/7350 [02:34<00:00, 47.55it/s]2022-02-22 21:55:52,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:55:52,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|███████████████████████████████████████| 7350/7350 [02:34<00:00, 47.65it/s]
In [18]:
#Tshirt: net aperture
Flux2, Flux_error2 = phot2.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt2 = Flux2['Flux 0']/Flux2['Flux 0'][0] #normalized net aperture sum
std_tshirt2 = np.std(normalized_flux_tshirt2[0:20]) #calculated standard deviation
relative_error_tshirt2 = (Flux_error2['Error 0']/Flux2['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt2[0:seg01_len] - np.median(normalized_flux_tshirt2[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt2*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt2)*10**6))

plt.errorbar(Flux2['Time (JD)'],normalized_flux_tshirt2,yerr=relative_error_tshirt2,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
#plt.plot(phot2.cenArr[:,0,0],'.')
Tshirt Calculated Net Aperture Sum MAD (ppm): 451.86530326812857
Tshirt Calculated Net Aperture Sum std (ppm): 539.0952883966908
Median Relative Errors Net Aperture Sum (ppm): 177.25280082181487
Out[18]:
<ErrorbarContainer object of 3 artists>

$\textbf{25-5-12 Radii}$¶

$\textbf{TSO Photometry Reference File: Radii Parameters}$¶

The original radii parameters are: radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

The altered radii parameters are (to try the pupil = ANY parameters): radius: 25.0, radius_inner: 5.0, and radius_outer: 12.0

In [19]:
original_tsophot=asdf.open("/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf") #the original tsophot reference file
original_tsophot.tree #print the original tsophot reference file

#adjust the radii parameters
original_tsophot.tree['radii'] = [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 70.0}, #For this particular data set (F444W), the outer radius limit is 62 due to edge effects on detector
  {'pupil': 'ANY', 'radius': 25.0, 'radius_inner': 5.0, 'radius_outer': 12.0}]
original_tsophot.write_to('adjusted_jwst_nircam_tsophot_0001.asdf')
adjusted_tsophot=asdf.open('adjusted_jwst_nircam_tsophot_0001.asdf') #the adjusted tsophot reference file
adjusted_tsophot.tree #print the adjusted tsophot reference file
Out[19]:
{'asdf_library': {'author': 'Space Telescope Science Institute',
  'homepage': 'http://github.com/spacetelescope/asdf',
  'name': 'asdf',
  'version': '2.7.2'},
 'history': {'entries': [{'description': 'File created based on values of aperture radii for NIRCam that were specified as constants in tso_photometry_step.py.',
    'time': datetime.datetime(2018, 7, 13, 17, 20, 5)}],
  'extensions': [{'extension_class': 'asdf.extension.BuiltinExtension',
    'software': {'name': 'asdf', 'version': '2.1.0.dev1406'}}]},
 'meta': {'author': 'NIRCam IDT; P. Hodge',
  'date': '2018-07-13T17:20:00',
  'description': 'aperture radii for tso_photometry',
  'exposure': {'type': 'NRC_TSIMAGE'},
  'filename': 'nircam_tsophot.asdf',
  'instrument': {'name': 'NIRCAM'},
  'model_type': 'TsoPhotModel',
  'pedigree': 'GROUND',
  'reftype': 'tsophot',
  'telescope': 'JWST',
  'useafter': '2015-01-01T00:00:00',
  'visit': {'tsovisit': True}},
 'radii': [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 70.0},
  {'pupil': 'ANY', 'radius': 25.0, 'radius_inner': 5.0, 'radius_outer': 12.0}]}
In [56]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True
pipeline_stage3.tso_photometry.override_tsophot = 'adjusted_jwst_nircam_tsophot_0001.asdf' #use the modified tso_phot ref file

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/25512_radii/'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2021-11-08 21:02:57,473 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2021-11-08 21:02:57,480 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2021-11-08 21:02:57,485 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2021-11-08 21:02:57,491 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2021-11-08 21:02:57,496 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2021-11-08 21:02:58,491 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/nrca1_level3_asn.json',).
2021-11-08 21:02:58,500 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/25512_radii/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2021-11-08 21:03:00,237 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185001001_01101_00001-seg001_nrca1_calints.fits' reftypes = ['gain', 'readnoise']
2021-11-08 21:03:00,247 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0050.fits'.
2021-11-08 21:03:00,249 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0025.fits'.
2021-11-08 21:03:00,251 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2021-11-08 21:04:39,845 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:04:40,714 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:04:40,719 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:04:40,720 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:04:41,133 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:05:51,285 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:05:52,430 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:05:52,435 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:05:52,436 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:05:52,779 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:06:52,515 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:06:53,540 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:06:53,544 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:06:53,546 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:06:53,889 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:07:53,287 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:07:54,205 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:07:54,209 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:07:54,210 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:07:54,552 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:08:55,004 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:08:56,037 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:08:56,043 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:08:56,044 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:08:56,455 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:10:07,519 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:10:08,663 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:10:08,669 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:10:08,670 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:10:09,116 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:11:15,589 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:11:16,614 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:11:16,619 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:11:16,620 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:11:16,961 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:12:20,142 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:12:21,171 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:12:21,176 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:12:21,177 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:12:21,575 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:13:32,437 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:13:33,354 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:13:33,357 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:13:33,358 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:13:33,701 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:14:33,338 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:14:34,323 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:14:34,328 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:14:34,329 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:14:34,671 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:14:37,989 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 21:14:39,086 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 21:14:39,091 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 21:14:39,092 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 21:14:39,113 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 21:14:39,623 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg001_nrca1_calints.fits>,).
2021-11-08 21:14:39,626 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:41,190 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:41,708 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg002_nrca1_calints.fits>,).
2021-11-08 21:14:41,711 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:43,207 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:43,894 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg003_nrca1_calints.fits>,).
2021-11-08 21:14:43,897 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:45,277 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:45,969 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg004_nrca1_calints.fits>,).
2021-11-08 21:14:45,972 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:47,415 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:48,153 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg005_nrca1_calints.fits>,).
2021-11-08 21:14:48,156 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:49,645 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:50,436 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg006_nrca1_calints.fits>,).
2021-11-08 21:14:50,440 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:52,155 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:53,035 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg007_nrca1_calints.fits>,).
2021-11-08 21:14:53,038 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:54,443 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:55,138 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg008_nrca1_calints.fits>,).
2021-11-08 21:14:55,142 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:56,593 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:57,458 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg009_nrca1_calints.fits>,).
2021-11-08 21:14:57,461 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:14:59,118 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:14:59,671 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(731, 64, 2048) from jw01185001001_01101_00001-seg010_nrca1_calints.fits>,).
2021-11-08 21:14:59,674 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:15:01,176 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:15:01,815 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(40, 64, 2048) from jw01185001001_01101_00001-seg011_nrca1_calints.fits>,).
2021-11-08 21:15:01,819 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4', 'save_catalog': False}
2021-11-08 21:15:01,944 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 21:15:01,960 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/25512_radii/HD189733b_nrca1_level3_asn_phot.ecsv
2021-11-08 21:15:02,473 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done
In [69]:
#Import the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/25512_radii/HD189733b_nrca1_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA1}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM64}']
['# - {filter: WLP4}']
['# - {pupil: CLEAR}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1981.2}']
['# - {ycenter: 29.2}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       TW93WjUrbkNja0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       U1ZQa09iSzFOa0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=25.0 pixels.  Background calculated as the mean in a circular annulus']
['#     with r_inner=5.0 pixels and r_outer=12.0 pixels.}']
['# - {number_of_integrations: 7350}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59866.27084318895 2.84665812711121 0.0006511336530034178 0.32646901769164693 0.0002004303097494901 0.0008732631585206898 5.361256225558161e-07 1.7146482021620113 0.0010526801982641287 1.1320099249491988 0.0012377845668334133']
['59866.270874726906 2.845075588071925 0.0006510132154484313 0.32573424333795953 0.0002003292216860548 0.0008712977304459586 5.358552248250041e-07 1.7107890931615521 0.0010521492735612124 1.1342864949103728 0.001237269695961189']
['59866.27090626487 2.841704344485092 0.0006507573571702851 0.32506027934836046 0.00020018686432631284 0.0008694949623718305 5.354744369680554e-07 1.7072493663254227 0.0010514015983524836 1.1344549781596693 0.001236499275749651']
['59866.27093780284 2.8423904668729696 0.000650755213778728 0.32537484125856453 0.00020024448610946562 0.0008703363755301062 5.356285679196274e-07 1.7089014771983433 0.0010517042337682017 1.1334889896746263 0.0012367554906230086']
['59866.270969340796 2.8395023340976095 0.0006505273336045998 0.3252618471325619 0.00020023349940560722 0.0008700341305940782 5.35599179882193e-07 1.7083080206542118 0.0010516465304916348 1.1311943134433977 0.0012365865262333256']
['59866.27100087876 2.843916297018776 0.000650890689137272 0.32587574986263734 0.00020033581578650638 0.0008716762424271726 5.35872863206216e-07 1.7115322996987257 0.0010521839064417354 1.1323839973200502 0.0012372346835506122']
['59866.27103241673 2.843253038042309 0.0006508357229712972 0.3254595242528072 0.0002002526307288884 0.0008705628917843844 5.356503537421609e-07 1.7093462408235676 0.0010517470101307166 1.1339067972187415 0.0012368342296421428']
['59866.271063954686 2.840827986785465 0.0006506268183042149 0.3253680549337007 0.00020026548091303352 0.0008703182229730053 5.356847263526875e-07 1.7088658347358232 0.0010518145005936634 1.1319621520496417 0.0012367817108753522']
['59866.27109549265 2.841823239069746 0.0006507603918895115 0.325675647105969 0.00020029915629721118 0.0008711409929675074 5.357748037283579e-07 1.7104813398422745 0.0010519913671072016 1.1313418992274715 0.0012370023945491252']
['59866.27112703061 2.8465172431181465 0.000651101257291488 0.32668464759250115 0.000200472268892891 0.0008738399411189984 5.362378579353144e-07 1.7157807121454893 0.0010529005719164442 1.1307365309726571 0.0012379549513566847']
['59866.271158568576 2.843263714288805 0.0006508533728894149 0.32573721221831287 0.0002003229214095525 0.0008713056718238357 5.358383723855387e-07 1.7108046860205508 0.0010521161838737002 1.132459028268254 0.0012371574586003537']
['59866.27119010654 2.8455073725778344 0.0006510259106695131 0.32638134158561327 0.00020040297699351246 0.0008730286360725166 5.360525109050233e-07 1.7141877184118346 0.0010525366438734899 1.1313196541659998 0.0012376058027738634']
['59866.2712216445 2.8473705595189265 0.0006511975906997034 0.32641409004512156 0.00020043476894607363 0.0008731162340424223 5.361375503403284e-07 1.7143597166235378 0.0010527036184142522 1.1330108428953887 0.001237838119608359']
['59866.271253182465 2.8406557227194913 0.0006506335281752585 0.32522770112329613 0.00020020817495451665 0.0008699427943560697 5.355314401919046e-07 1.708128682370253 0.001051513523920781 1.1325270403492382 0.0012365292875520918']
['59866.27128472043 2.840888065617217 0.0006506649889295813 0.3253677600404309 0.0002002704194684996 0.000870317434170962 5.356979363613288e-07 1.708864285926633 0.001051840438384977 1.132023779690584 0.001236823849883496']
['59866.27131625839 2.842612522407821 0.0006507748085000786 0.3255387606748306 0.0002002780760905022 0.0008707748391497278 5.357184168527423e-07 1.7097623985022619 0.001051880651735831 1.132850123905559 0.0012369158244902967']
['59866.271347796355 2.8457239766790288 0.0006509810752304216 0.3263898641337991 0.00020042952750725347 0.0008730514328064916 5.361235301571832e-07 1.7142324796943231 0.0010526760898490204 1.1314914969847056 0.0012377008162104358']
['59866.271379334314 2.8441838747241333 0.0006509428109328091 0.32551219671849474 0.0002002618356765464 0.000870703783940334 5.356749758080545e-07 1.7096228819248673 0.0010517953554440463 1.134560992799266 0.0012369316928750652']
['59866.27141087228 2.8430211143905733 0.0006507812488848363 0.3256836443776395 0.00020027143084533 0.0008711623846535177 5.357006416658983e-07 1.7105233423195354 0.0010518457502380779 1.1324977720710379 0.0012368895327368617']
['59866.271442410245 2.8413273365815046 0.0006506868483136699 0.32527474649270927 0.00020022995490638713 0.0008700686347441652 5.355896987969549e-07 1.7083757693944817 0.0010516279144243022 1.132951567187023 0.0012366546183008352']
['59866.2714739482 2.8468880624872415 0.0006511539976000408 0.3264595332675986 0.0002004426325287219 0.0008732377888909474 5.361585844251836e-07 1.7145983890104968 0.0010527449187432874 1.1322896734767447 0.0012378503110353548']
['59866.27150548617 2.843254857070872 0.0006508461854963144 0.3258780711231514 0.00020032639418935796 0.0008716824515042318 5.358476616304515e-07 1.7115444911930224 0.0010521344232634349 1.1317103658778496 0.0012371691888302843']
['59866.271537024135 2.8447530434352277 0.000650966913138252 0.32545617636711555 0.0002002600795464852 0.0008705539366153635 5.356702783831814e-07 1.7093286573903128 0.0010517861320718763 1.135424386044915 0.0012369365341922207']
['59866.27156856209 2.8465126627294874 0.0006511168932074663 0.3264263433299639 0.00020042631399748277 0.0008731490100231243 5.361149344266844e-07 1.714424072111155 0.0010526592121716534 1.1320885906183324 0.001237757902657054']
['59866.27160010006 2.8464987403002606 0.0006510999820114965 0.32645276888720676 0.0002004258041298117 0.0008732196950325219 5.36113570595421e-07 1.7145628618025566 0.0010526565342952297 1.131935878497704 0.0012377467292502998']
['59866.27163163802 2.8401277874550073 0.0006506120637473202 0.3250706844211161 0.00020020353559134448 0.0008695227946199362 5.3551903048465e-07 1.7073040148167864 0.0010514891575175657 1.1328237726382209 0.001236497272892483']
['59866.27166317598 2.846296886682044 0.0006510776696308123 0.32648637511549294 0.00020040806597617814 0.000873309587424966 5.360661232873183e-07 1.714739365102379 0.0010525633717236248 1.131557521579665 0.001237655761262434']
['59866.27169471395 2.8461122246830257 0.0006511078835821188 0.3263228868577892 0.00020040376751661874 0.0008728722770997386 5.360546254539308e-07 1.713880708286708 0.0010525407957805606 1.1322315163963177 0.0012376524564049318']
['59866.27172625191 2.843760545816088 0.0006508707174533635 0.32594007277459414 0.000200348535583197 0.000871848298047206 5.35906887046862e-07 1.7118701301186667 0.001052250712096623 1.1318904156974212 0.0012372809915076309']
['59866.27175778987 2.8466856909135343 0.0006511179068595927 0.3266522724366755 0.00020044003778608941 0.0008737533416890317 5.361516438181919e-07 1.7156106745623714 0.001052731290893327 1.131075016351163 0.0012378197362536872']
['59866.27178932784 2.846846838721979 0.0006511317097915372 0.32651391899627713 0.0002004399002559104 0.0008733832638078019 5.361512759424303e-07 1.7148840283417917 0.001052730568570958 1.1319628103801875 0.0012378263826158269']
['59866.2718208658 2.843070426378641 0.0006508184243769931 0.32571229243638405 0.00020029916280562779 0.0008712390145721593 5.357748211375457e-07 1.7106738048129415 0.001051991401290062 1.1323966215656993 0.0012370329542485035']
['59866.27185240376 2.8401897923367203 0.0006505428291014501 0.3255828084837251 0.0002002983092169419 0.0008708926614441468 5.357725378962226e-07 1.7099937420363716 0.0010519869181562075 1.1301960503003488 0.0012368841693817226']
['59866.27188394172 2.841371858599033 0.0006506652731435252 0.3257672457228018 0.00020033339969188662 0.0008713860076338825 5.358664004599688e-07 1.7109624250147155 0.0010521712168691526 1.1304094335843173 0.0012371053177813323']
['59866.27191547969 2.848010367584723 0.000651249244556415 0.3264810000242353 0.000200418007637257 0.0008732952097385252 5.360927159680451e-07 1.7147111345810677 0.0010526155863301314 1.1332992330036553 0.0012377904310182832']
['59866.27194701765 2.841419842629654 0.0006507042105427526 0.3256974499947535 0.00020029913463075812 0.0008711993129258894 5.357747457733477e-07 1.710595850812781 0.0010519912533128051 1.1308239918168732 0.0012369727428948115']
['59866.27197855561 2.8463635722504748 0.0006510863774554672 0.32665154906332117 0.00020046587583037067 0.0008737514067571822 5.362207573050354e-07 1.7156068753325693 0.001052866994907409 1.1307566969179055 0.0012379185675453137']
['59866.27201009358 2.8405936410645807 0.0006505999850100867 0.32548843886161066 0.00020027979678579979 0.0008706402346905799 5.357230194941232e-07 1.709498103264762 0.0010518896890010494 1.1310955377998186 0.0012368315399931592']
['59866.27204163154 2.8405471872072123 0.0006506285381921714 0.32537339627915585 0.00020025614855192085 0.0008703325103937103 5.356597634719849e-07 1.7088938880207767 0.0010517654860920213 1.1316532991864356 0.0012367409318222097']
['59866.2720731695 2.8419646331729735 0.0006507223386796435 0.3255203364933106 0.00020028838850349274 0.0008707255568041591 5.357460012477448e-07 1.7096656328430178 0.0010519348135687645 1.1322990003299558 0.0012369342804105059']
['59866.27210470747 2.840624397129892 0.0006506108230951558 0.32545314738904424 0.00020026322646197076 0.0008705458344837238 5.356786959824254e-07 1.7093127488920392 0.0010518026599893424 1.131311648237853 0.0012367632266077498']
['59866.272136245425 2.8466799504722697 0.0006511594219214115 0.32628931221007174 0.00020039304056414017 0.0008727824691813049 5.360259322184471e-07 1.7137043708512172 0.0010524844567444337 1.1329755796210526 0.0012376316594389677']
['59866.27216778339 2.8451394428928483 0.0006509422783172071 0.3263133237371427 0.0002003890776153893 0.0008728466969665911 5.360153318338603e-07 1.7138304818127246 0.0010524636429379691 1.1313089610801237 0.0012374997250129219']
['59866.272199321356 2.8460300384991575 0.000651033853285566 0.3265750346190227 0.00020044689924465862 0.000873546740336543 5.361699973484121e-07 1.7152050137553714 0.001052767327965644 1.130825024743786 0.0012378061742275217']
['59866.272230859315 2.846180739554259 0.0006511087318323514 0.3261279479837437 0.00020035272290050738 0.000872350840370241 5.359180875888493e-07 1.7128568696625197 0.0010522727043093877 1.1333238698917394 0.001237424916874929']
['59866.27226239728 2.8416827799274578 0.000650779008391148 0.32550664385046735 0.0002002894386985854 0.0008706889307236131 5.357488103862357e-07 1.7095937177020346 0.0010519403292992933 1.1320890622254232 0.0012369687846380244']
['59866.272293935246 2.841753119914027 0.0006507117607519121 0.325616838897452 0.00020031134560322608 0.0008709836884787703 5.358074085738224e-07 1.7101724732009036 0.0010520553865715656 1.1315806467131233 0.0012370312574850725']
['59866.272325473205 2.841805346527384 0.0006506842138749267 0.3255075872660703 0.0002002272619840622 0.0008706914542405308 5.355824955717553e-07 1.7095986726159156 0.0010516137709246965 1.1322066739114685 0.0012366412047900117']
['59866.27235701117 2.8426405252034326 0.0006507978850431094 0.32543111769415783 0.00020025605944285323 0.000870486907847825 5.356595251165465e-07 1.709197046713014 0.0010517650180822122 1.1334434784904186 0.0012368296327457799']
['59866.27238854913 2.840909139523835 0.0006506598587642753 0.3251528716808197 0.00020021946841354215 0.0008697426351012976 5.35561648760451e-07 1.7077356705925404 0.0010515728383064188 1.1331734689312947 0.0012365935816067315']
['59866.272420087094 2.842902273510099 0.000650802391127003 0.32570948414927775 0.00020030938085784504 0.0008712315027608217 5.358021531294642e-07 1.7106590554058707 0.0010520450675306988 1.1322432181042283 0.0012370701582417615']
['59866.27245162506 2.8438645761826864 0.0006508793100936781 0.32560353675434833 0.00020028197160062254 0.0008709481069354313 5.357288368475577e-07 1.7101026090039304 0.0010519011113478075 1.133761967178756 0.0012369882070427248']
['59866.27248316302 2.8467615160206523 0.0006511118914782511 0.3265575387417349 0.00020043215656188152 0.0008734999410868945 5.361305625444053e-07 1.7151131236435657 0.0010526898979090417 1.1316483923770866 0.001237781368572065']
['59866.272514700984 2.84750952336763 0.0006511975445763318 0.326567937444618 0.00020044752962887542 0.0008735277562964003 5.36171683546129e-07 1.7151677386797166 0.001052770638807119 1.1323417846879136 0.0012378950924842513']
['59866.27254623895 2.8433865392438458 0.000650829708908425 0.32606044946234014 0.00020036433014903433 0.0008721702903982616 5.359491355044587e-07 1.7125023606215344 0.00105233366674913 1.1308841786223114 0.0012373299706107074']
['59866.27257777691 2.84371001493143 0.0006508501242145448 0.3256864381319656 0.0002002880775353008 0.0008711698575915141 5.357451694473264e-07 1.7105380153989793 0.0010519331803324622 1.1331719995324507 0.0012370001212912054']
['59866.272609314874 2.844659651414533 0.0006509890667079155 0.32568955860381865 0.00020028881847631617 0.0008711782044573996 5.35747151370438e-07 1.7105544044318208 0.0010519370718293918 1.1341052469827122 0.001237076540906923']
['59866.27264085283 2.8437096142066682 0.0006509052640627947 0.3255745091715435 0.00020027294842966893 0.0008708704618381306 5.357047010112613e-07 1.7099501532118884 0.0010518537207440594 1.1337594609947799 0.001236961564733431']
['59866.2726723908 2.8413119509995997 0.0006507211850372186 0.3253688232078355 0.00020023487966858183 0.0008703202780087398 5.356028719103471e-07 1.708869869789052 0.0010516537797719634 1.1324420812105476 0.0012366946806568304']
['59866.272703928764 2.8459295244251503 0.0006510441820583233 0.3262854913517481 0.00020039674637559673 0.0008727722488705644 5.3603584479343e-07 1.713684303318005 0.0010525039200398989 1.1322452211071454 0.001237587584250644']
['59866.27273546672 2.8410851038522664 0.0006506451287615244 0.3254765679514179 0.0002002767265594576 0.0008706084815135012 5.357148070285977e-07 1.709435756047363 0.0010518735638626977 1.1316493478049034 0.0012368415734985276']
['59866.27276700469 2.84409441221251 0.0006509048699712893 0.32584383972449893 0.00020034815729021 0.0008715908868604588 5.359058751611676e-07 1.7113647044353937 0.001052248725263708 1.1327297077771163 0.0012372972680691732']
['59866.27279854265 2.847203870538202 0.0006511526709819323 0.32616545960962107 0.0002003561149515471 0.0008724511792052291 5.359271608945667e-07 1.7130538845043124 0.0010522905197035038 1.1341499860338895 0.0012374631868402287']
['59866.27283008061 2.841158027863254 0.0006506745388239565 0.3255230479162292 0.0002002912086785272 0.0008707328095160972 5.357535448577804e-07 1.7096798735096073 0.001051949625412433 1.1314781543536467 0.001236921731508961']
['59866.27286161858 2.8445487525215194 0.0006509853781715453 0.32546285781731377 0.00020027295564100303 0.0008705718086460538 5.357047203006642e-07 1.7093637490405136 0.0010518537586187134 1.1351850034810058 0.0012370037559011147']
['59866.272893156536 2.844619561661086 0.0006509570599078386 0.32630018766343954 0.00020039111734435316 0.0008728115596378066 5.36020787849779e-07 1.7137614898289892 0.0010524743558001741 1.1308580718320966 0.0012375166113878428']
['59866.2729246945 2.8432764779178465 0.0006508158200597702 0.3258264722255849 0.00020033322373718112 0.0008715444310066553 5.35865929803479e-07 1.711273488579753 0.001052170292737296 1.1320029893380936 0.0012371837198084036']
['59866.27295623247 2.8476456526168317 0.0006511954334604611 0.3265633060929226 0.0002004367817583855 0.0008735153680188286 5.361429343576217e-07 1.7151434143535853 0.0010527141899074868 1.1325022382632464 0.001237845975148901']
['59866.272987770426 2.8404753726011664 0.0006505990112644404 0.3252212581187732 0.00020022525952342895 0.0008699255601372766 5.355771392438876e-07 1.7080948430607839 0.001051603253799522 1.1323805295403826 0.0012365874319513396']
['59866.27301930839 2.8421402809147702 0.000650742858319724 0.32564209992237025 0.00020029438296987015 0.0008710512585121032 5.35762035683966e-07 1.7103051466511046 0.0010519662971106628 1.1318351342636657 0.0012369718500882887']
['59866.27305084636 2.8466552558593223 0.0006511372433803529 0.3265191697303895 0.00020043543309514295 0.0008733973088546733 5.361393268547373e-07 1.7149116057268359 0.0010527071065921374 1.1317436501324865 0.0012378093399173214']
['59866.273082384316 2.843493899512039 0.0006508578994164752 0.32566660185247487 0.0002002832442183822 0.0008711167980632198 5.357322409384336e-07 1.7104338332587967 0.0010519077952646126 1.1330600662532424 0.001236982625169523']
['59866.27311392228 2.8443097055101974 0.0006509306291865511 0.3260908032209773 0.00020037678877868822 0.0008722514828474804 5.359824607564514e-07 1.71266178162278 0.0010523991007284047 1.1316479238874173 0.001237438706048568']
['59866.27314546024 2.846815046475319 0.0006511286518198165 0.3265872126095757 0.0002004584304550355 0.000873579314914584 5.362008418716275e-07 1.7152689737897884 0.0010528278910453546 1.1315460726855306 0.0012379075447640268']
['59866.273176998206 2.840703636371292 0.0006505853921400137 0.3256304926522787 0.0002002841132063256 0.0008710202105388112 5.357345653708148e-07 1.7102441840981026 0.0010519123592769202 1.1304594522731894 0.001236843144487413']
['59866.27320853617 2.8461173561655 0.0006510359071862232 0.32606964026070384 0.00020036806380910866 0.00087219487461659 5.35959122570957e-07 1.712550631621344 0.0010523532763083438 1.1335667245441563 0.001237455118621558']
['59866.27324007413 2.8473957625748016 0.0006511578707686397 0.32632422545410744 0.0002003798058935297 0.000872875857674879 5.359905311554581e-07 1.7138877387295561 0.0010524149469197989 1.1335080238452455 0.0012375717325327658']
['59866.273271612095 2.840361526086986 0.0006505898770246297 0.3252470434955437 0.00020022405372874423 0.0008699945327452179 5.355739138962501e-07 1.7082302704597883 0.001051596920844245 1.1321312556271979 0.0012365772406186441']
['59866.27330315006 2.8420472614687515 0.0006507020010616084 0.3258249694599318 0.00020033198978491488 0.0008715404112993947 5.358626291378872e-07 1.7112655959030032 0.0010521638118955615 1.1307816655657483 0.0012371183376088885']
['59866.27333468802 2.8400361135450023 0.0006505697618826096 0.3252473465013559 0.00020024185686554793 0.0008699953432472818 5.356215350260796e-07 1.7082318618768693 0.0010516904247140123 1.131804251668133 0.0012366461759578343']
['59866.273366225985 2.8411074119879016 0.0006506519435743461 0.32518613793246326 0.00020021493667019187 0.000869831618099402 5.355495269225515e-07 1.7079103883007525 0.0010515490371333606 1.1331970236871491 0.0012365691768652378']
['59866.273397763944 2.8453467270446673 0.0006509900383588187 0.32640162240063597 0.00020042581489407884 0.0008730828846768997 5.361135993884684e-07 1.714294235297458 0.0010526565908302462 1.1310524917472093 0.0012376889464888877']
['59866.27342930191 2.844488456990072 0.000650983232581016 0.3254716550960405 0.00020024719435908953 0.000870595340249333 5.356358121434051e-07 1.709409953235507 0.0010517184577683275 1.1350785037545652 0.0012368875791729087']
['59866.273460839875 2.841958885627065 0.0006507828447366437 0.3253695089075617 0.00020024052300991396 0.0008703221121684188 5.356179671316675e-07 1.7088734711531604 0.0010516834191697162 1.1330854144739047 0.0012367523297572654']
['59866.27349237783 2.8415532973155733 0.0006507153886066203 0.3252936905036866 0.0002002381477696389 0.0008701193075675103 5.356116136656036e-07 1.7084752652504551 0.0010516709441682716 1.1330780320651181 0.001236706226950139']
['59866.2735239158 2.8469700572352927 0.0006511467924852264 0.3263511749385391 0.00020039533074141304 0.0008729479441229643 5.360320581517838e-07 1.7140292801393862 0.001052496484986413 1.1329407770959066 0.0012376352436289755']
['59866.273555453765 2.8429730789076357 0.0006507925634845284 0.32583462925224516 0.00020032905236418735 0.0008715662500169731 5.358547719105137e-07 1.7113163301063299 0.0010521483842656902 1.1316567488013058 0.001237152853611738']
['59866.27358699172 2.8440359519751732 0.0006509417509940494 0.325487989358949 0.00020027816173586802 0.0008706390323280499 5.357186459432183e-07 1.7094957424314552 0.0010518811015539288 1.134540209543718 0.001237004048090994']
['59866.27361852969 2.84676265012816 0.0006511124682674706 0.3266073282607966 0.00020044446310341378 0.0008736331217267741 5.361634809799889e-07 1.7153746232184695 0.0010527545331061648 1.1313880269096908 0.001237836642416493']
['59866.27365006765 2.8402129023796734 0.0006505911181967263 0.32509697791689174 0.00020019822150461032 0.0008695931263816817 5.355048159775616e-07 1.7074421109080449 0.0010514612473981634 1.1327707914716285 0.0012364625177726048']
['59866.27368160561 2.8463644659765572 0.0006510725203170753 0.326384423934251 0.00020041188399224258 0.0008730368809636431 5.360763359953764e-07 1.7142039072177049 0.001052583424329005 1.1321605587588524 0.0012376701062416441']
['59866.27371314358 2.841105354364153 0.0006506472478708935 0.32556712683808875 0.00020027094487552302 0.000870850715033746 5.356993417583861e-07 1.7099113804521469 0.0010518431978756462 1.131193973912006 0.001236816863597531']
['59866.27374468154 2.84708654909902 0.0006511608989274789 0.3264436322557135 0.00020041969521408462 0.0008731952557036924 5.360972300217252e-07 1.7145148752926131 0.0010526244496538058 1.1325716738064069 0.0012377514889108476']
['59866.2737762195 2.846487160154335 0.0006511138136057328 0.32638718184958637 0.00020041385111502596 0.000873044258036891 5.360815977989839e-07 1.7142183920671554 0.0010525937558562288 1.1322687680871795 0.0012377006153087762']
['59866.27380775747 2.841544071909703 0.0006506725868861147 0.32546596601940003 0.0002002592999762283 0.0008705801226918716 5.356681931317549e-07 1.7093800736313027 0.0010517820376902748 1.1321639982784002 0.0012367781814589774']
['59866.27383929543 2.84115181680427 0.0006507236821260864 0.32508691681096824 0.00020019677979054074 0.0008695662142011658 5.35500959575533e-07 1.7073892689651693 0.0010514536753704871 1.1337625478391007 0.0012365258355286548']
['59866.27387083339 2.8460251365585707 0.0006510728177753424 0.3262854030401751 0.00020038529631435825 0.0008727720126483228 5.360052173338534e-07 1.713683839496718 0.0010524437831636465 1.1323412970618527 0.0012375515063082153']
['59866.27390237135 2.8432767980706775 0.0006508443182251549 0.3258269935828879 0.0002003421613046247 0.0008715458255712248 5.358898366612582e-07 1.711276226800882 0.001052217233742777 1.1320005712697954 0.0012372386324194975']
['59866.27393390932 2.8437101550135275 0.000650891836329721 0.32566312925853913 0.0002003008145281584 0.000871107509315485 5.35779239285535e-07 1.7104155948452686 0.001052000076303353 1.133294560168259 0.0012370789559049723']
['59866.27396544728 2.847427473526066 0.0006511336835130262 0.32643712149276427 0.00020041607547665105 0.0008731778402397148 5.360875476838218e-07 1.7144806801090562 0.0010526054384277892 1.1329467934170099 0.0012377210036244033']
['59866.27399698524 2.8407123451224234 0.0006506383271111387 0.32525730933642427 0.000200216022989106 0.0008700219925657413 5.35552432687677e-07 1.7082841876913042 0.0010515547425898426 1.1324281574311192 0.0012365668640915344']
['59866.27402852321 2.8404131918489766 0.0006506238365288369 0.32535446318625777 0.00020025208700191836 0.0008702818667748406 5.35648899341573e-07 1.7087944495076564 0.0010517441544218402 1.1316187423413202 0.0012367203172180905']
['59866.27406006117 2.8457968328185155 0.0006510440641338392 0.3261464804687262 0.00020037393132839312 0.0008724004124138164 5.359748174398278e-07 1.7129542041424697 0.0010523840931113086 1.1328426286760458 0.0012374856172407088']
['59866.27409159913 2.839939794150284 0.0006505838307649117 0.32509278922596335 0.00020019073310009622 0.0008695819221654408 5.354847854465652e-07 1.7074201114809002 0.0010514219175425223 1.1325196826693837 0.0012364252381529349']
['59866.2741231371 2.841211532825511 0.0006507237290151417 0.32535336553103134 0.00020025932850693075 0.0008702789306865197 5.356682694477604e-07 1.7087886845117193 0.0010517821875364011 1.132422848313792 0.0012368052156755442']
['59866.274154675055 2.842664001502647 0.0006508184876773198 0.3259554399681321 0.00020037455498670234 0.000871889403338181 5.35976485646596e-07 1.711950840168761 0.0010523873686276383 1.1307131613338859 0.0012373697416494386']
['59866.27418621302 2.8412993090458816 0.000650691846648173 0.3254208126585807 0.0002002788586433127 0.0008704593431864663 5.357205100821208e-07 1.7091429236269995 0.0010518847617821045 1.132156385418882 0.00123687567336568']
['59866.274217750986 2.8472628111419525 0.0006511398445949551 0.3265373129019894 0.00020043174810115773 0.0008734458395343957 5.361294699638464e-07 1.7150068954936417 0.001052687752632131 1.1322559156483107 0.0012377942485570163']
['59866.274249288945 2.8436304388981704 0.0006508710686372801 0.32568629263917315 0.00020030541148388425 0.0008711694684167727 5.357915355582568e-07 1.7105372512561616 0.0010520242199783837 1.1330931876420087 0.0012370885608597962']
['59866.27428082691 2.8462681384397817 0.0006510786682105304 0.3263207422078026 0.0002004143426521405 0.0008728665404334096 5.360829125983368e-07 1.7138694443687112 0.0010525963374587212 1.1323986940710704 0.0012376843223658898']
['59866.274312364876 2.8433936895847647 0.0006508841839274886 0.3255550455052776 0.00020028946373751695 0.0008708183990028883 5.357488773621974e-07 1.709847928073937 0.0010519404608062865 1.1335457615108278 0.0012370242333795628']
['59866.274343902835 2.8435267998899776 0.0006508598095408865 0.3258521321492719 0.00020033185748100565 0.0008716130680435316 5.358622752417335e-07 1.7114082570865121 0.0010521631170220887 1.1321185428034655 0.0012372007583643153']
['59866.2743754408 2.8423656001357243 0.00065078291122379 0.325611128461088 0.00020027513113732455 0.000870968413786761 5.357105394770213e-07 1.7101424814132773 0.001051865184544772 1.132223118722447 0.0012369069342510449']
['59866.27440697876 2.846305685823788 0.0006510734220150591 0.3264443330942124 0.00020042796404678894 0.0008731971303576656 5.361193480990108e-07 1.714518556167082 0.0010526678783970007 1.1317871296567061 0.0012377424057788606']
['59866.274438516724 2.841322107744265 0.0006507016911142366 0.32520720193481056 0.0002002199678222487 0.0008698879616304083 5.355629846153128e-07 1.7080210185651816 0.0010515754612513064 1.1333010891790833 0.0012366178235513287']
['59866.27447005469 2.840402306750244 0.0006506360539718371 0.3254237637736426 0.000200252768632435 0.0008704672370444451 5.356507226166333e-07 1.7091584231808963 0.0010517477344140496 1.1312438835693477 0.001236729789231718']
['59866.27450159265 2.8424630220691776 0.0006508109491122942 0.3256244099997386 0.00020030239657561257 0.0008710039402158049 5.35783471061544e-07 1.710212237393585 0.0010520083853761163 1.1322507846755925 0.001237043465035125']
['59866.274533130614 2.8459013027478037 0.0006510900990913496 0.3264980747245802 0.00020044364589963566 0.0008733408823933438 5.361612950636729e-07 1.714800812629098 0.0010527502410695151 1.1311004901187058 0.0012378212258669285']
['59866.27456466858 2.846297460291639 0.0006510457810394419 0.3266842539516015 0.00020047730044225054 0.000873838888179587 5.3625131669081e-07 1.7157786447037895 0.001052926998121064 1.1305188155878494 0.0012379482510918992']
['59866.27459620654 2.8473008435110394 0.0006511326601080992 0.3265971228712102 0.00020045000211970528 0.000873605823605785 5.361782971450756e-07 1.7153210234832468 0.0010527836245782841 1.1319798200277926 0.0012378720051926366']
['59866.274627744504 2.841981307205206 0.0006507157277861413 0.3256501936494703 0.0002003122487991584 0.0008710729082041369 5.358098245082292e-07 1.7103476557220079 0.0010520601302476808 1.131633651483198 0.0012370373785965461']
['59866.27465928246 2.841015011001076 0.0006506342326262187 0.32576581822171174 0.0002003242240937653 0.000871382189249769 5.35841856900358e-07 1.7109549276350409 0.0010521230257025487 1.1300600833660353 0.0012370480046783126']
['59866.27469082043 2.8420294644886 0.0006507296826558222 0.32587783364554224 0.00020035761496895038 0.0008716818162817885 5.359311732506081e-07 1.7115432439366716 0.0010522983979461681 1.1304862205519286 0.0012372473633875398']
['59866.274722358394 2.845968056882806 0.0006510655030961832 0.32600892571262613 0.0002003628012901325 0.0008720324709116462 5.359450460010718e-07 1.712231752692364 0.0010523256370280067 1.133736304190442 0.0012374471850015605']
['59866.27475389635 2.847980602019647 0.00065126810451708 0.32656513813315513 0.00020046144368393508 0.0008735202684937689 5.362089018762332e-07 1.71515303641363 0.0010528437168273903 1.1328275656060172 0.0012379943602554028']
['59866.27478543432 2.8464986435196655 0.000651112701819675 0.3262616743174742 0.0002003945027375058 0.0008727085413288084 5.360298433464942e-07 1.7135592138522806 0.001052492136226396 1.132939429667385 0.001237613609851362']
['59866.27481697228 2.839828159456363 0.0006505175372355547 0.32527426290063455 0.00020023805741788231 0.0008700673411967849 5.3561137198613e-07 1.7083732295201397 0.001051670469631735 1.1314549299362233 0.001236601731741649']
['59866.27484851024 2.843708231930316 0.0006508954524158583 0.32575489437941374 0.00020032564375735808 0.0008713529693590247 5.358456543201618e-07 1.7108975545137277 0.0010521304819188974 1.1328106774165885 0.0012371917559370238']
['59866.27488004821 2.8425265365226453 0.0006508068933152004 0.3254919796340364 0.00020025484772538552 0.0008706497058071165 5.356562839262168e-07 1.7095166997585949 0.001051758654019882 1.1330098367640504 0.001236828960969259']
['59866.274911586166 2.846914924574368 0.0006511466896150633 0.326393118402472 0.00020040931025479538 0.0008730601375618771 5.360694515745875e-07 1.7142495714415547 0.001052569906800396 1.1326653531328135 0.0012376976287035739']
['59866.27494312413 2.8458093022078046 0.0006510233786898362 0.3264506672588575 0.00020042977014354991 0.0008732140734436089 5.361241791784597e-07 1.7145518238385375 0.0010526773641993167 1.131257478369267 0.0012377241504868324']
['59866.2749746621 2.8455260289877344 0.0006510134074460467 0.32627623528589206 0.00020040606957065244 0.0008727474900699833 5.360607831560943e-07 1.713635689526744 0.0010525528864004856 1.1318903394609905 0.0012376130394208466']
['59866.275006200056 2.8417347460919773 0.0006507202907052594 0.32529569188124596 0.00020022714196952065 0.0008701246609982929 5.355821745480993e-07 1.7084857766872164 0.0010516131405962218 1.133248969404761 0.0012366596517272592']
['59866.27503773802 2.8470581413308125 0.0006510944973577401 0.3264111198295465 0.00020039367645208864 0.0008731082890929968 5.360276331379472e-07 1.71434411675182 0.0010524877964920621 1.1327140245789924 0.001237600341893232']
['59866.27506927599 2.8458404502440655 0.0006510660998623058 0.3262154987505962 0.000200385108266052 0.0008725850275520234 5.360047143285176e-07 1.7133166951186776 0.0010524427955149792 1.132523755125388 0.0012375471321211561']
['59866.275100813946 2.840757726965629 0.0006506356866790758 0.32541526255482706 0.00020026534019272664 0.0008704444973638266 5.35684349943739e-07 1.7091137739224112 0.0010518137615164215 1.1316439530432179 0.0012367857476926535']
['59866.27513235191 2.8397952887623696 0.0006505798106824554 0.32506247642075486 0.00020018413364786462 0.0008695008392614423 5.354671327500213e-07 1.7072609055711916 0.001051387256553911 1.132534383191178 0.0012363936482009193']
['59866.27516388987 2.8468198830480382 0.0006511495239857426 0.3261059470528441 0.00020037990173781968 0.0008722919906743537 5.359907875267609e-07 1.7127413185548537 0.001052415450303675 1.1340785644931846 0.0012375677689018673']
['59866.275195427836 2.8458763731574317 0.0006510208146545618 0.32639828793012665 0.00020041551134383033 0.0008730739653917879 5.360860387001751e-07 1.7142767223220938 0.0010526024755453274 1.1315996508353379 0.0012376591100289453']
['59866.2752269658 2.8436263303823246 0.0006508486507073386 0.32581543855567374 0.00020030968242974652 0.0008715149173409946 5.35802959795999e-07 1.7112155386327403 0.001052046651416736 1.1324107917495843 0.0012370958422388827']
['59866.27525850376 2.8467951380362164 0.0006511009014734506 0.3264446310945822 0.00020041244135221226 0.0008731979274708068 5.360778268625068e-07 1.7145201212950747 0.0010525863516397704 1.1322750167411417 0.0012376875258149217']
['59866.275290041725 2.8461754421956367 0.0006510733356960453 0.32635268041893317 0.00020039256237626738 0.0008729519710918121 5.360246531266206e-07 1.714037187074229 0.0010524819452535053 1.1321382551214076 0.001237584232906584']
['59866.27532157969 2.846404560801413 0.0006510606350525994 0.32655341982334524 0.00020045920106378655 0.0008734889235033331 5.36202903152164e-07 1.7150914906688302 0.0010528319383602235 1.1313130701325829 0.0012378752121867695']
['59866.27535311765 2.846791499055449 0.000651125118395986 0.32664717489031014 0.00020045522540877752 0.0008737397063999277 5.361922687799502e-07 1.7155839017348222 0.0010528110578192096 1.1312075973206268 0.0012378913697383101']
['59866.275384655615 2.8430803697939626 0.0006508358857208095 0.3254783981298139 0.00020026106745960382 0.0008706133770082653 5.356729209253019e-07 1.7094453683288546 0.0010517913206911967 1.133635001465108 0.0012368719951649494']
['59866.27541619357 2.8473199325967866 0.0006511796334735336 0.326678213111788 0.00020047275898028727 0.000873822729700314 5.36239168856855e-07 1.7157469176039286 0.0010529031459048702 1.131573014992858 0.0012379983641778766']
['59866.27544773154 2.8410802995964257 0.0006507010546477871 0.325335552576133 0.0002002307588814146 0.0008702312832945341 5.35591849328043e-07 1.708695129076329 0.0010516321369822197 1.1323851705200967 0.0012366656840284412']
['59866.275479269505 2.8420475507849936 0.0006507630630320137 0.3256388454634363 0.00020028978937715347 0.0008710425532477934 5.357497484068666e-07 1.7102880539046026 0.0010519421710984951 1.131759496880391 0.0012369619620433865']
['59866.27551080746 2.841690170942412 0.0006507045047333878 0.32549755258584506 0.000200259608080937 0.0008706646127454015 5.356690172727193e-07 1.709545969463472 0.0010517836558872743 1.13214420147894 0.0012367963499590074']
['59866.27554234543 2.8464873521504117 0.0006510860402735164 0.3261937319106421 0.00020038837120021024 0.0008725268040196843 5.360134422629759e-07 1.7132023734802633 0.0010524599327742135 1.1332849786701484 0.0012375721966552695']
['59866.275573883395 2.8459735150050935 0.0006510331630654291 0.3264509800306572 0.0002004265039058624 0.000873214910068449 5.361154424074802e-07 1.7145534665475695 0.0010526602095896134 1.131420048457524 0.0012377147071374027']
['59866.27560542135 2.8436570936378223 0.000650894246637774 0.3259919906975491 0.00020037999221492658 0.0008719871718971782 5.359910295415306e-07 1.712142808285447 0.001052415925498564 1.1315142853523752 0.001237433877243206']
['59866.27563695932 2.840734608790628 0.0006506500081127075 0.32532514499974513 0.00020024064296035932 0.0008702034443495301 5.356182879838744e-07 1.7086404674356364 0.0010516840491615511 1.1320941413549916 0.0012366829716293107']
['59866.27566849728 2.843620398084684 0.0006509011921664959 0.3256199557296322 0.0002002829006145159 0.0008709920256089932 5.357313218417313e-07 1.7101888431178163 0.0010519059906224577 1.1334315549668676 0.0012370038702733228']
['59866.27570003524 2.8470767470626366 0.0006511275488625411 0.3263940545980445 0.00020041724417713992 0.0008730626417661303 5.360906738091966e-07 1.7142544884351079 0.0010526115765606089 1.1328222586275287 0.001237722996472616']
['59866.27573157321 2.8471532351575517 0.0006511479130259938 0.32674167971448775 0.00020046783479670829 0.0008739924948018419 5.362259972911863e-07 1.7160802506013013 0.001052877283596157 1.1310729845562504 0.0012379596838956145']
['59866.27576311117 2.8445023010988773 0.000650949613789524 0.3262990946282423 0.0002004253632635269 0.0008728086359074769 5.361123913341022e-07 1.7137557490979114 0.001052654218821045 1.1307465520009659 0.0012376656673328524']
['59866.27579464913 2.846363530747661 0.0006511117615277944 0.3260529329682616 0.00020034395931004117 0.0008721501847312478 5.358946460973882e-07 1.7124628832366682 0.0010522266770485356 1.133900647510993 0.0012373873709927829']
['59866.27582618709 2.8479468839988167 0.0006512053092367099 0.3266232850398776 0.00020046323802199587 0.0008736758040841955 5.362137015026525e-07 1.71545842983129 0.001052853140871827 1.1324884541675266 0.0012379693417131745']
['59866.27585772506 2.846664353724129 0.0006510950097368823 0.32635542351933966 0.00020038639984896865 0.0008729593085370069 5.360081691487797e-07 1.7140515941141792 0.0010524495790387009 1.13261275960995 0.0012375681104985735']
['59866.27588926302 2.8406268496633715 0.0006506471992092572 0.3252350364090112 0.00020020788548330098 0.0008699624153137259 5.355306658931675e-07 1.708167208030521 0.0010515120035887657 1.1324596416328505 0.001236535188148769']
['59866.27592080098 2.8405211492209634 0.0006505650096598795 0.3256068769003225 0.00020028683035083755 0.0008709570414016907 5.357418333872882e-07 1.710120151787408 0.0010519266299938946 1.1304009974335554 0.0012368445604375965']
['59866.27595233895 2.842732846815966 0.0006508370191188862 0.32575110207265334 0.00020030339104779734 0.0008713428254200897 5.357861311483336e-07 1.7108776369362046 0.001052013608444314 1.1318552098797614 0.0012370616224778714']
['59866.27598387691 2.841752393829914 0.0006507113799319909 0.325276365076158 0.00020022206306718798 0.0008700729642493193 5.355685891294149e-07 1.7083842703579728 0.0010515864656890125 1.1333681234719413 0.001236632279537173']
['59866.27601541487 2.8464395388076023 0.000651112574455269 0.32630545000650435 0.00020040958197541081 0.0008728256357371513 5.360701783927234e-07 1.713789128185422 0.0010525713339044685 1.1326504106221802 0.0012376808948881776']
['59866.27604695284 2.845552309416729 0.0006509922473400529 0.3265835575315929 0.00020043799510204659 0.0008735695380452 5.361461798978122e-07 1.7152497769516435 0.001052720562510749 1.1303025324650857 0.0012377445167843807']
['59866.276078490795 2.8479566272736014 0.0006512435423687295 0.326647046034579 0.00020046613266760114 0.0008737393617272124 5.362214443120067e-07 1.7155832249715284 0.001052868343842443 1.132373402302073 0.001238002383253966']
['59866.27611002876 2.8462267533249346 0.000651093985310207 0.32635728445321555 0.0002004138320006052 0.0008729642862987735 5.360815466703361e-07 1.7140613679265524 0.0010525936554653635 1.1321653853983822 0.0012376900990284541']
['59866.27614156673 2.840678715135417 0.0006506352166466088 0.3251256763496202 0.0002001861190464789 0.0008696698910443326 5.354724434391552e-07 1.7075928379706946 0.0010513976840676414 1.1330858771647225 0.001236431670252578']
['59866.276173104685 2.841704247604778 0.0006507066793019396 0.3254115583206202 0.0002002565508379361 0.0008704345890077863 5.356608395359827e-07 1.7090943189108203 0.00105176759893874 1.1326099286939577 0.0012367838391026621']
['59866.27620464265 2.8399536547492126 0.0006505560548664043 0.3251592619809135 0.00020020077796271 0.0008697597283424366 5.355116541782905e-07 1.7077692330930332 0.001051474674173897 1.1321844216561794 0.0012364554868463495']
['59866.276236180616 2.8410175104669553 0.0006506449409645695 0.3255859374984781 0.00020027888239969628 0.0008709010311612047 5.357205736274296e-07 1.7100101759373851 0.0010518848865530266 1.1310073345295701 0.0012368511041194335']
['59866.276267718575 2.840053146175861 0.0006505941450627405 0.32522343372675877 0.00020021206164747655 0.0008699313796123209 5.355418366019357e-07 1.708106269573313 0.0010515339372241417 1.131946876602548 0.0012365259248087051']
['59866.27629925654 2.842103111533624 0.0006507395300609809 0.325151921619941 0.00020020795867214432 0.0008697400938091113 5.35530861664028e-07 1.7077306807770012 0.0010515123879839515 1.1343724307566228 0.0012365841006853106']
['59866.2763307945 2.840141120259956 0.0006505416038989205 0.3252754680809478 0.00020025064832098768 0.0008700705649010566 5.356450510528058e-07 1.7083795592486755 0.0010517365983245153 1.1317615610112803 0.001236670631436925']
['59866.276362332464 2.839621176761151 0.0006504916436678776 0.32541057705238896 0.00020025004868888465 0.0008704319642398957 5.356434471130875e-07 1.7090891651911186 0.001051733448996243 1.1305320115700321 0.0012366416725225096']
['59866.27639387043 2.8481054454757277 0.0006512679367393823 0.32666187475380826 0.00020046423921114004 0.0008737790266678016 5.362163795564553e-07 1.7156611069002534 0.0010528583992181727 1.1324443385754743 0.0012380067585554713']
['59866.27642540839 2.8440194274789996 0.0006509330867163743 0.3257889144832959 0.00020031451265711386 0.000871443968816123 5.358158800407346e-07 1.7110762315299155 0.001052072020257951 1.132943195949084 0.0012371618403393119']
['59866.276456946354 2.8412301752972513 0.0006506617133229249 0.3255989313772685 0.00020027132842030733 0.0008709357881366572 5.357003676919714e-07 1.7100784210990991 0.00105184521229153 1.1311517541981522 0.0012368261865779435']
['59866.27648848432 2.842413727610661 0.0006507902767725455 0.32547983953586934 0.00020028509997923032 0.0008706172325863952 5.35737204863008e-07 1.7094529387388098 0.0010519175419077223 1.1329607888718514 0.0012369553344057623']
['59866.27652002228 2.8464049505117393 0.0006511338809661518 0.32625822619114303 0.00020040029793063106 0.0008726993180288083 5.360453447520749e-07 1.7135411039450792 0.0010525225731650792 1.13286384656666 0.0012376506364738323']
['59866.276551560244 2.8463470585342776 0.0006511155523765091 0.3263168745540876 0.00020041716386976112 0.0008728561949509406 5.360904589971579e-07 1.7138491310613846 0.0010526111547781573 1.132497927472893 0.0012377163268334033']
['59866.2765830982 2.842132982503526 0.0006507913271712586 0.32550421144477903 0.00020027656066883587 0.0008706824243473291 5.357143632922538e-07 1.709580942462075 0.0010518726925884238 1.132552040041451 0.0012369177470367822']
['59866.27661463617 2.847854209519106 0.0006512075951474121 0.32643107139535177 0.00020042461591026603 0.0008731616569975401 5.361103922590482e-07 1.7144489043873519 0.001052650293646355 1.133405305131754 0.001237798033885752']
['59866.276646174134 2.8413036287384235 0.0006506818346482628 0.325709948212061 0.00020030704119563332 0.0008712327440698278 5.35795894830201e-07 1.7106614927104047 0.0010520327793888304 1.1306421360280188 0.0012369962889393876']
['59866.27667771209 2.846496528625708 0.0006510696116529709 0.32659374424721466 0.00020045308382350251 0.0008735967862157054 5.361865403113357e-07 1.7153032786093207 0.0010527998099973872 1.131193250016387 0.0012378526080064965']
['59866.27670925006 2.8411675814193336 0.0006506900719332042 0.32513690799239636 0.0002002009857608134 0.0008696999342622632 5.355122100118254e-07 1.7076518276911576 0.0010514757655504907 1.133515753728176 0.0012365269326838088']
['59866.276740788024 2.8420613476366396 0.0006507541867678193 0.3255542649618971 0.00020027213724138683 0.0008708163111484799 5.357025311856332e-07 1.7098438285813924 0.0010518494603014015 1.1322175190552473 0.0012368784494574217']
['59866.27677232598 2.8458716110502804 0.0006510650222468676 0.3262351670206699 0.0002004018148957016 0.0008726376376764655 5.360494024409737e-07 1.7134199948564597 0.001052530540418601 1.1324516161938207 0.0012376211866751419']
['59866.27680386395 2.8473777349423353 0.0006511816693080501 0.32669226317020583 0.00020046123170660863 0.0008738603118221279 5.362083348638075e-07 1.7158207099275518 0.001052842603501096 1.1315570250147835 0.0012379479448627008']
['59866.276835401906 2.842107150982319 0.0006507575120749599 0.3253658758283485 0.00020023763136202419 0.0008703123941429495 5.356102323408215e-07 1.7088543898547717 0.0010516682319434043 1.1332527611275474 0.0012367260851138208']
['59866.27686693987 2.8467826603954016 0.0006511364703276752 0.32623068383692383 0.00020036833451030837 0.0008726256457293398 5.359598466622854e-07 1.7133964487233397 0.0010523546980583424 1.1333862116720619 0.0012375092377498636']
['59866.27689847784 2.846674344251418 0.0006510582986707411 0.32678331510792175 0.00020048466553490097 0.0008741038641912973 5.362710173782326e-07 1.7162989238861437 0.0010529656803303622 1.1303754203652745 0.0012379877350852967']
['59866.276930015796 2.8477848852288647 0.0006512030996653263 0.3264385530943399 0.00020042491755795905 0.0008731816695921063 5.361111991283158e-07 1.7144881990248944 0.0010526518779304572 1.1332966862039704 0.0012377970161235028']
['59866.27696155376 2.8397913802347667 0.0006504886206706704 0.3250362805578185 0.00020018467082702772 0.0008694307686551418 5.354685696360572e-07 1.7071233222574504 0.001051390077873045 1.1326680579773163 0.001236348066473159']
['59866.27699309173 2.8458310312841557 0.0006510383053617997 0.32633417534742276 0.00020041952538340317 0.0008729024723757927 5.360967757462219e-07 1.7139399965725985 0.001052623557685941 1.1318910347115572 0.001237686240225596']
['59866.277024629686 2.843856604154994 0.0006508949002366189 0.3257465663369835 0.0002003174608294019 0.0008713306929032424 5.358237660271669e-07 1.7108538147950816 0.0010520875043561024 1.1330027893599126 0.001237154916724777']
['59866.27705616765 2.8419722289642824 0.0006506895630384663 0.32555112754223636 0.0002002732076141678 0.0008708079189493612 5.357053942968776e-07 1.7098273505369557 0.001051855082007184 1.1321448784273267 0.0012368492313097543']
['59866.27708770561 2.8432654636780046 0.0006508657045888975 0.3256710121914348 0.00020028865375934073 0.0008711285951597943 5.357467107734488e-07 1.7104569968037542 0.0010519362067192266 1.1328084668742504 0.0012370108926023399']
['59866.277119243576 2.845979097419092 0.000651064487621072 0.3263077901141974 0.00020038658236782314 0.0008728318952280205 5.360086573635344e-07 1.7138014186670034 0.00105245053764613 1.1321776787520887 0.0012375528680557113']
['59866.27715078154 2.8410409192352573 0.000650644798574983 0.3254887562655938 0.0002002734223823015 0.0008706410837059223 5.357059687743582e-07 1.7094997703024886 0.0010518562099910793 1.1315411489327687 0.0012368266412110783']
['59866.2771823195 2.8462715330477995 0.0006510715138577799 0.32626009516873433 0.00020037989309068898 0.000872704317306492 5.359907643967845e-07 1.713550920003857 0.0010524154048880724 1.1327206130439424 0.001237526686824485']
['59866.277213857466 2.846672336886552 0.0006510794492605885 0.3264106023750697 0.00020041472640025009 0.0008731069049679915 5.360839390757913e-07 1.7143413990287273 0.00105259835294249 1.1323309378578246 0.001237686447314793']
['59866.27724539543 2.8415487300732023 0.0006506728896415898 0.3254834632544229 0.0002002666530805822 0.0008706269255732889 5.356878617520069e-07 1.70947197087407 0.001051820656935831 1.1320767591991323 0.0012368111835164895']
['59866.27727693339 2.847456859917479 0.0006511752598122269 0.32636438138702817 0.00020041006920832683 0.000872983269695363 5.360714816788919e-07 1.7140986417385935 0.0010525738929008763 1.1333582181788857 0.001237716049426534']
['59866.277308471355 2.847361669583409 0.0006511374936755616 0.3267932061609688 0.00020048110570376946 0.0008741303215019666 5.362614952820787e-07 1.716350872694164 0.001052946983738285 1.1310107968892449 0.001238013483865844']
['59866.277340009314 2.843277816259926 0.0006508635672546313 0.32547060534781597 0.0002002749424230015 0.0008705925323061577 5.357100346901751e-07 1.7094044398519748 0.0010518641933981172 1.1338733764079512 0.0012369485294596925']
['59866.27737154728 2.84487770664101 0.000650997545972733 0.32593075121274645 0.0002003596069634439 0.0008718233640531657 5.359365015828813e-07 1.7118211723358532 0.0010523088601021215 1.1330565343051568 0.0012373971641764607']
['59866.277403085245 2.8436841602104357 0.0006509194972408624 0.32577898797661947 0.00020031099107834966 0.000871417416671498 5.35806460264805e-07 1.7110240965158585 0.0010520535245711643 1.1326600636945772 0.0012371389616574633']
['59866.2774346232 2.8444299937365036 0.0006509396250969408 0.3255857249059427 0.00020026743324239748 0.0008709004625031731 5.356899485857768e-07 1.710009059379951 0.0010518247544243566 1.1344209343565526 0.0012369550151647406']
['59866.27746616117 2.845836008284463 0.0006510162858151009 0.32618754109014303 0.00020037418941495 0.0008725102443611259 5.359755077885886e-07 1.7131698586667177 0.0010523854486079306 1.1326661496177455 0.0012374721559850162']
['59866.277497699135 2.8467420463229383 0.000651121630061751 0.32650780910378374 0.00020043105346859996 0.0008733669206213803 5.361276119099775e-07 1.7148519385702927 0.0010526841043518905 1.1318901077526455 0.0012377815642064692']
['59866.27752923709 2.8444462290436228 0.0006509857952038288 0.3258336168329513 0.0002003444631856967 0.0008715635419239463 5.358959939007712e-07 1.7113110127781057 0.0010522293234542896 1.133135216265517 0.0012373233428228181']
['59866.27756077506 2.8467679213112755 0.0006511192604912638 0.32662796055549115 0.00020045952444592175 0.0008736883104946392 5.362037681583038e-07 1.715482986110773 0.0010528336367958075 1.1312849352005026 0.0012379074917583206']
['59866.27759231302 2.8412510098996573 0.0006506956407123679 0.32538802668573974 0.0002002423830609335 0.0008703716448731602 5.356229425319056e-07 1.7089707283914903 0.0010516931883452392 1.132280281508167 0.001236714752581958']
['59866.27762385098 2.8407211414140154 0.000650595246091913 0.3253843900673508 0.0002002649290572829 0.0008703619173808454 5.35683250208644e-07 1.708951628504994 0.001051811602191612 1.1317695129090215 0.0012367626371872181']
['59866.27765538895 2.843719383041592 0.0006509005006735841 0.3258182379962131 0.00020035180823156466 0.0008715224054888893 5.359156409655967e-07 1.7112302415767497 0.001052267900375865 1.1324891414648421 0.001237311276897836']
['59866.27768692691 2.8472115701714804 0.0006511403596588203 0.3262532691344272 0.00020037563172313862 0.0008726860585316736 5.359793657798102e-07 1.7135150689833363 0.0010523930237559802 1.1336965011881441 0.0012375438757582994']
['59866.27771846487 2.840084423664643 0.0006505519611938264 0.3253117650342469 0.00020023604020430713 0.0008701676546411698 5.356059761960163e-07 1.7085701945075995 0.0010516598750226216 1.1315142291570435 0.001236610830837952']
['59866.27775000284 2.8407862720293706 0.0006506581141445576 0.32529057413940365 0.00020025818340175383 0.000870110971688853 5.356652064368482e-07 1.7084588977909856 0.001051776173328539 1.132327374238385 0.0012367655801661756']
['59866.2777815408 2.8422827722019965 0.0006507776157877053 0.3256746532551645 0.00020031646748029612 0.0008711383345428312 5.358211089444712e-07 1.7104761200376288 0.0010520822871864293 1.1318066521643677 0.0012370887778254875']
['59866.27781307876 2.843860546009968 0.0006509271160278856 0.32566833912421367 0.00020027929303760946 0.0008711214450444756 5.357216720316936e-07 1.7104429575851559 0.0010518870432647558 1.1334175884248123 0.0012370013994206517']
['59866.27784461672 2.846415063756205 0.0006510749465171505 0.3266213346817705 0.00020046646995216326 0.0008736705871239679 5.36222346505373e-07 1.715448186353837 0.0010528701152949752 1.1309668774023682 0.0012379152093998863']
['59866.27787615469 2.84612296998794 0.000651057483104745 0.3259466962268706 0.00020029996715460418 0.0008718660149408217 5.357769726688997e-07 1.711904917157934 0.0010519956258119966 1.134218052830006 0.0012371623349561932']
['59866.27790769265 2.84323435221403 0.0006508527375080036 0.3256605223018646 0.00020029242510330946 0.000871100536037482 5.357567986395786e-07 1.7104019028459276 0.001051956014198054 1.1328324493681026 0.0012370209140225232']
['59866.27793923061 2.8457653492779 0.0006510187322459866 0.32656399127202235 0.00020045953592253183 0.0008735172007858979 5.362037988567782e-07 1.7151470129833106 0.001052833697072121 1.1306183362945894 0.0012378546697515513']
['59866.27797076858 2.848536550296627 0.0006513300182145774 0.32632496606788197 0.00020041221808431544 0.0008728778387226628 5.360772296492393e-07 1.7138916285077836 0.0010525851790142617 1.1346449217888435 0.001237807073702476']
['59866.27800230654 2.8469399936520396 0.0006511561661174738 0.3262251994202921 0.00020039011740655304 0.0008726109756114084 5.360181131431626e-07 1.7133676440141392 0.001052469104026014 1.1335723496379004 0.0012376168904803004']
['59866.2780338445 2.846746580993429 0.0006511112627761718 0.32646002465055723 0.00020043135278860195 0.0008732391032779528 5.361284125529671e-07 1.7146009698033469 0.0010526856764107246 1.132145611190082 0.0012377774476190321']
['59866.27806538247 2.845632092148464 0.0006510256157819699 0.3263035221612977 0.00020038935070154762 0.0008728204789960731 5.3601606230465e-07 1.7137790029479922 0.0010524650772140108 1.131853089200472 0.001237544783496495']
['59866.278096920425 2.846997555725058 0.0006511532191428652 0.3264508431948493 0.00020039894535201045 0.0008732145440500419 5.360417267760516e-07 1.7145527478721077 0.0010525154692857693 1.1324448078529503 0.0012376547692656299']
['59866.27812845839 2.8407525344608247 0.0006506076599516446 0.3255202202033677 0.00020027519674516617 0.0008707252457433315 5.35710714969665e-07 1.709665022076511 0.001051865529123772 1.1310875123843136 0.0012368150300455553']
['59866.27815999636 2.8413083811475497 0.0006506780217779634 0.32570593222933186 0.0002002983553711738 0.0008712220018260846 5.35772661352931e-07 1.710640400364138 0.0010519871605628877 1.1306679807834117 0.0012369554858660237']
['59866.278191534315 2.8407539419830163 0.000650662525827298 0.32498781400950016 0.00020019042727493946 0.0008693011267939742 5.354839674031127e-07 1.7068687710582993 0.0010514203113179594 1.133885170924717 0.0012364652819905272']
['59866.27822307228 2.8473926338806312 0.0006512227320219986 0.32625083753980655 0.00020037403504858834 0.0008726795543248925 5.359750948781769e-07 1.7135022980031858 0.0010523846378602331 1.1338903358774455 0.0012375800873908767']
['59866.278254610246 2.842429902975559 0.0006507911086097379 0.32558040066386346 0.00020028144404119389 0.0008708862208318264 5.357274256930897e-07 1.7099810959236525 0.0010518983405524889 1.1324488070519063 0.001236939443102439']
['59866.278286148205 2.843420340852086 0.0006507894498691471 0.32597931635332567 0.0002003398361659217 0.0008719532696361092 5.358836172105362e-07 1.7120762413515005 0.0010522050218798409 1.1313440995005857 0.001237199384145556']
['59866.27831768617 2.8469489714221266 0.0006511366355239943 0.3262508674090028 0.00020036159448634462 0.0008726796342211989 5.359418179542116e-07 1.7135024548792164 0.0010523192987728185 1.1334465165429102 0.0012374792219230282']
['59866.27834922413 2.840726245882373 0.0006506603853755253 0.32553078971284466 0.00020030326320807937 0.0008707535178387822 5.357857891933245e-07 1.709720534206117 0.0010520129370172238 1.1310057116762562 0.0012369681308540784']
['59866.278380762094 2.846221494926825 0.0006510981557619034 0.32625991097671847 0.00020038487396304447 0.0008727038246162432 5.360040875977305e-07 1.7135499526088156 0.0010524415649319563 1.1326715423180096 0.0012375629503314073']
['59866.27841230006 2.846490044775925 0.000651128849262218 0.32648562200387266 0.00020043859863632456 0.0008733075729470321 5.361477942753527e-07 1.7147354096842053 0.0010527237323336375 1.1317546350917196 0.0012378190639023153']
['59866.27844383802 2.846899505749887 0.0006511119312442074 0.32646107694104154 0.00020042266057989386 0.0008732419180213502 5.361051619986431e-07 1.714606496539084 0.0010526400240540644 1.132293009210803 0.0012377389737941932']
['59866.278475375984 2.8464677839167116 0.0006510534354810776 0.32645287405032275 0.0002004237335545616 0.0008732199763305008 5.361080320696041e-07 1.7145634141298465 0.0010526456594252185 1.1319043697868651 0.0012377129958752418']
['59866.27850691395 2.8471490725054576 0.0006511521694155626 0.32657500765108327 0.0002004487839673023 0.0008735466682007302 5.361750387421113e-07 1.715204872117034 0.0010527772267190248 1.1319442003884235 0.001237876826195884']
['59866.27853845191 2.8443024474821472 0.0006508781731926113 0.326091524416267 0.00020037782791531065 0.0008722534119532836 5.359852403149389e-07 1.712665569413167 0.0010524045583787324 1.1316368780689803 0.0012374157550455245']
['59866.278569989874 2.841843097095211 0.000650727340377145 0.32561147853478734 0.00020029188035363798 0.0008709693501894451 5.357553415033943e-07 1.7101443200356479 0.0010519531531178465 1.131698777059563 0.0012369525083320266']
['59866.27860152783 2.843796924034968 0.0006508658345803324 0.32593945469555935 0.00020033169647542526 0.0008718466447642882 5.358618445722547e-07 1.7118668839052487 0.0010521622714045444 1.1319300401297192 0.0012372032088509644']
['59866.2786330658 2.84657277233405 0.0006511324332224315 0.32630575352488955 0.00020042104961695903 0.0008728264476102828 5.361008528773958e-07 1.713790722294588 0.0010526315631142807 1.132782050039462 0.0012377425634026561']
['59866.278664603764 2.843425277684606 0.0006508316153673241 0.32581342272478764 0.00020031837132463893 0.0008715095252493987 5.358262014862869e-07 1.7112049512856495 0.001052092286368902 1.1322203263989563 0.001237125689086838']
['59866.27869614172 2.8404145042385016 0.0006506303850171367 0.3252022155562567 0.00020023996155354935 0.0008698746237010811 5.35616465307201e-07 1.707994829602189 0.0010516804703442717 1.1324196746363127 0.0012366696040620939']
['59866.27872767969 2.842081691757678 0.0006507269824703467 0.32590761847933386 0.0002003593469307412 0.0008717614869293028 5.359358060284275e-07 1.7116996768872577 0.001052307494384145 1.1303820148704204 0.0012372536799104704']
['59866.278759217654 2.8463356520613003 0.0006510973843083378 0.326320388695435 0.0002004236172207545 0.0008728655948327249 5.361077208914453e-07 1.7138675876861083 0.0010526450484283324 1.132468064375192 0.0012377355944763993']
['59866.27879075561 2.841116134772715 0.000650670631736896 0.32509680584480055 0.00020019696723309796 0.0008695926661106922 5.355014609605671e-07 1.7074412071680702 0.0010514546598376995 1.133674927604645 0.0012364987556400143']
['59866.27882229358 2.8432059480703873 0.0006507939585150539 0.3260382853750323 0.00020036323593866198 0.0008721110042797043 5.359462086306849e-07 1.7123859525999598 0.0010523279198459139 1.1308199954704274 0.0012373062787066596']
['59866.278853831536 2.840043315437904 0.0006506168752426104 0.3250892177286083 0.00020020238092859397 0.0008695723688636207 5.355159419084425e-07 1.7074013536166404 0.0010514830931123635 1.1326419618212635 0.0012364946475628602']
['59866.2788853695 2.8433171650161544 0.0006508530315930159 0.3257964659041527 0.00020030321548175406 0.0008714641679078327 5.357856615314658e-07 1.7111158923537433 0.0010520126863537503 1.132201272662411 0.0012370692628074847']
['59866.27891690747 2.840111836868002 0.000650581767190914 0.3251786648724906 0.00020020616636725415 0.000869811628613105 5.355260674760818e-07 1.70787113903619 0.0010515029746179314 1.1322406978318118 0.0012364930818373433']
['59866.278948445426 2.840988960537926 0.0006506626209545908 0.3255295035084832 0.00020028858088962448 0.0008707500774054721 5.357465158562129e-07 1.7097137789311094 0.0010519358240001287 1.1312751816068165 0.0012369037246780072']
['59866.27897998339 2.8441966165136248 0.0006509664927349472 0.32580622431599904 0.00020032942551856893 0.0008714902704201364 5.358557700510912e-07 1.7111671445168017 0.001052150344110131 1.133029471996823 0.001237246022937518']
['59866.27901152136 2.846050380051549 0.0006510546592672042 0.3266362411073448 0.00020045276252194166 0.0008737104599191608 5.361856808704679e-07 1.7155264764041218 0.0010527981224891896 1.130523903647427 0.0012378433083675405']
['59866.279043059316 2.8462013016035645 0.0006510996667162301 0.326402550420954 0.00020039940163356395 0.0008730853670133855 5.360429472712563e-07 1.71429910935375 0.0010525178657225 1.1319021922498145 0.0012376286331783992']
['59866.27907459728 2.8434333851653437 0.0006508861490268955 0.32568695655429875 0.00020029862527232395 0.000871171244305412 5.357733833042284e-07 1.7105407382053508 0.0010519885781109452 1.132892646959993 0.0012370661855660554']
['59866.27910613524 2.8421933954870724 0.0006507451345857758 0.32556565955461825 0.00020027734738844693 0.0008708467902368175 5.357164676672946e-07 1.7099036741313984 0.001051876824519154 1.132289721355674 0.00123689695777278']
['59866.279137673206 2.8421050321606103 0.0006508082365945144 0.3256275491338145 0.00020029804306345085 0.0008710123370007664 5.357718259694373e-07 1.7102287244423031 0.0010519855202912336 1.1318763077183072 0.0012370225930522364']
['59866.27916921117 2.8465972092197376 0.0006511282643609379 0.3265614457302104 0.00020045003782305867 0.0008735103917848523 5.361783926470113e-07 1.7151336435410212 0.0010527838120958964 1.1314635656787164 0.0012378698524727289']
['59866.27920074913 2.8407224203411348 0.0006506560322026664 0.3252542492871171 0.00020021331518694038 0.0008700138073224918 5.355451896607933e-07 1.7082681160037663 0.0010515405209398129 1.1324543043373685 0.0012365640862567902']
['59866.279232287096 2.8459227083663774 0.0006510433793507441 0.32616099908369695 0.00020037272524460318 0.0008724392478648994 5.359715913188706e-07 1.713030457372358 0.0010523777586376219 1.1328922509940194 0.001237479870006612']
['59866.27926382506 2.8468484028566627 0.0006511469608226138 0.32605694905778215 0.0002003544454256461 0.0008721609272606443 5.359226951248228e-07 1.712483976143814 0.001052281751185116 1.1343644267128488 0.001237452725749853']
['59866.27929536302 2.8408788088950727 0.0006506409368932112 0.32532880294822425 0.00020024102813900427 0.0008702132288971272 5.356193182878292e-07 1.7086596793499174 0.0010516860721586359 1.1322191295451554 0.0012366799194349907']
['59866.279326900985 2.844100677997466 0.0006509600084043557 0.3258498062778885 0.00020033455468007388 0.0008716068466329827 5.358694899066782e-07 1.711396041375465 0.0010521772829835813 1.1327046366220008 0.0012372655201566517']
['59866.279358438944 2.842279710235691 0.0006507639186913611 0.3257397826466663 0.00020031174361280406 0.0008713125473932191 5.358084731988934e-07 1.710818186169466 0.0010520574769580045 1.1314615240662251 0.0012370604725290427']
['59866.27938997691 2.84096898710235 0.0006506298365115004 0.3252696726474852 0.00020023157070655652 0.000870055062852604 5.355940208571903e-07 1.7083491210477166 0.0010516364007697296 1.1326198660546332 0.0012366318383346326']
['59866.279421514875 2.846828152642318 0.0006511254228761276 0.3264482727960069 0.00020040607066442717 0.0008732076685595968 5.360607860818027e-07 1.7145392478781876 0.0010525528921451006 1.1322889047641302 0.0012376719707089725']
['59866.27945305283 2.8468063564071002 0.0006511128962743177 0.3263921462839507 0.000200406518852164 0.0008730575372682984 5.360619849270759e-07 1.7142444657770521 0.00105255524607229 1.132561890630048 0.0012376673825099493']
['59866.2794845908 2.841184259758415 0.000650666206609178 0.3252817994936827 0.00020024587571287086 0.0008700875006259896 5.356322849322472e-07 1.708412812466821 0.0010517115321054143 1.132771447291594 0.0012367148657579463']
['59866.279516128765 2.8419279770319053 0.0006507559141539631 0.3253977355129471 0.00020026281899098014 0.0008703976147528522 5.35677606049277e-07 1.7090217201310247 0.0010518005199106099 1.1329062569008805 0.0012368377393541118']
['59866.27954766672 2.840626769493747 0.0006505966537114726 0.3253565879466164 0.0002002558083344088 0.0008702875502389409 5.356588534333501e-07 1.7088056089633217 0.0010517636992353405 1.1318211605304251 0.0012367226386097141']
['59866.27957920469 2.84099230783786 0.0006506939479107145 0.325253392966513 0.0002002134231051427 0.0008700115167736345 5.355454783282782e-07 1.708263618521602 0.001051541087737094 1.132728689316258 0.0012365845191683999']
['59866.27961074265 2.8436951694490418 0.0006509025686928205 0.3256733025717219 0.00020028575544983498 0.0008711347216361683 5.357389581636261e-07 1.710469026111985 0.0010519209845054358 1.1332261433370567 0.0012370173448961002']
['59866.27964228061 2.8475082667533815 0.0006511821205737563 0.3268930529535088 0.00020052204817755945 0.0008743973989907836 5.36371011199492e-07 1.7168752781171681 0.001053162017739283 1.1306329886362134 0.0012382198471045487']
['59866.27967381858 2.8409230333312934 0.0006506194934847505 0.3254523955174927 0.00020024537838301323 0.0008705438233228163 5.356309546380423e-07 1.7093087999868315 0.001051708920078851 1.1316142333444619 0.0012366880681383549']
['59866.27970535654 2.843709847676142 0.0006508920192873263 0.32560704984783634 0.00020028699808174856 0.0008709575040143247 5.357422820461722e-07 1.7101210601251908 0.0010519275109335533 1.1335887875509514 0.0012370173438682234']
['59866.2797368945 2.843781333554989 0.0006508675965794067 0.32576751996477127 0.00020032330425814074 0.0008713867411963202 5.358393964568879e-07 1.7109638653611936 0.0010521181946330923 1.1328174681937953 0.0012371666515692422']
['59866.27976843247 2.84299666048423 0.0006508299571162477 0.32562456045562715 0.0002002751706812272 0.0008710043426661979 5.357106452519386e-07 1.7102130276030838 0.0010518653922333364 1.132783632881146 0.001236931864113027']
['59866.27979997043 2.840373758902138 0.0006506032824240989 0.32516925160843557 0.0002001869852113196 0.0008697864493273069 5.354747603200953e-07 1.7078216996241364 0.001051402233252729 1.1325520592780016 0.0012364187345676374']
['59866.27983150839 2.846450314730359 0.0006510585788275643 0.32621419424973686 0.00020036998730693932 0.0008725815381779053 5.359642676833567e-07 1.713309843748618 0.0010523633787129167 1.133140470981741 0.0012374756377080856']
['59866.27986304635 2.843629194795827 0.0006508852679450148 0.32595249301820584 0.00020036582866282015 0.0008718815206214112 5.359531438385142e-07 1.711935362490577 0.0010523415370946438 1.13169383230525 0.0012373658887825263']
['59866.27989458432 2.8431767838897013 0.0006508407365257648 0.32563051146175204 0.0002002883587512636 0.0008710202608517634 5.357459216643106e-07 1.7102442828873532 0.001051934657307057 1.132932501002348 0.0012369964379759205']
['59866.27992612228 2.846265438252032 0.0006510937001540204 0.32626355872345486 0.00020041075707009562 0.0008727135818754742 5.360733216217602e-07 1.7135691109425153 0.0010525775056202502 1.1326963273095165 0.0012376762144107002']
['59866.27995766024 2.8463813499716437 0.0006511038497872025 0.3263842702406845 0.00020039951440298923 0.0008730364698528729 5.360432489151465e-07 1.714203100003595 0.001052518457998893 1.1321782499680486 0.0012376313375299138']
['59866.27998919821 2.8415579530985298 0.0006506869042919135 0.3254386776217113 0.00020024914869695915 0.0008705071296938679 5.35641039748992e-07 1.7092367522148704 0.0010517287221478947 1.1323212008836594 0.0012367403738892965']
['59866.28002073617 2.8472125145455083 0.0006511341477315681 0.3265677547709903 0.00020044486516059291 0.0008735272676676471 5.36164556431879e-07 1.7151667792594032 0.0010527566447510134 1.132045735286105 0.001237849842028316']
['59866.28005227413 2.8465982506379457 0.0006510666248452828 0.32676095865657945 0.00020049000104320757 0.0008740440635233793 5.362852891853065e-07 1.7161815055492617 0.0010529937029580229 1.130416745088684 0.0012380159483854306']
['59866.2800838121 2.8474447435511037 0.0006511637876840774 0.32657520914911464 0.0002004250135210415 0.0008735472071823725 5.361114558173733e-07 1.715205930405014 0.0010526523819382432 1.1322388131460897 0.001237776763229675']
['59866.280115350055 2.848517047559155 0.0006512792465377308 0.32654427767573446 0.00020044412786170184 0.0008734644694195898 5.361625842509875e-07 1.715043475187681 0.001052752772382888 1.133473572371474 0.0012379228799608685']
['59866.28014688802 2.8445738964083374 0.0006510279963066926 0.32575341028284477 0.00020030698391175502 0.0008713489995891932 5.35795741603102e-07 1.7108897598888906 0.0010520324785281252 1.1336841365194468 0.0012371781552602426']
['59866.28017842599 2.846123430422769 0.000651072366586024 0.3264422809539789 0.00020043215042211423 0.000873191641143177 5.361305461213075e-07 1.7145077781196374 0.0010526898656623646 1.1316156523031315 0.0012377605502681742']
['59866.280209963945 2.8414064398311902 0.0006507207783318675 0.32583921205710364 0.00020033262569706377 0.0008715785084379219 5.358643301221203e-07 1.7113403994595782 0.0010521671517702929 1.130066040371612 0.0012371310547461178']
['59866.28024150191 2.8398593009369906 0.000650537467498525 0.32540468130138267 0.00020025427420246864 0.0008704161938547547 5.356547498252555e-07 1.709058200112304 0.0010517556418196882 1.1308011008246865 0.0012366846512829933']
['59866.280273039876 2.8463164049108594 0.0006510568138299224 0.3262883059442082 0.000200396274029942 0.0008727797775479226 5.360345813287947e-07 1.7136990858414298 0.0010525014392328887 1.1326173190694295 0.0012375921195699625']
['59866.280304577835 2.843194988843833 0.0006508460780534805 0.325544797976388 0.00020026933720624927 0.0008707909881646152 5.356950414472639e-07 1.7097941070188447 0.0010518347542345025 1.1334008818249883 0.0012369142927192464']
['59866.2803361158 2.8404486993248774 0.0006506066029205923 0.3254633713991665 0.00020025869030417304 0.0008705731824122814 5.356665623364396e-07 1.7093664464241938 0.001051778835631161 1.1310822529006836 0.001236740745203098']
['59866.28036765376 2.8461926400971835 0.0006511219404089493 0.32649512598143454 0.00020043534340169925 0.0008733329948799398 5.361390869361671e-07 1.7147853255327445 0.0010527066355131263 1.131407314564439 0.0012378008893740875']
['59866.280399191724 2.84125998324746 0.0006506247609188989 0.32578539932934647 0.00020032574473605462 0.000871434566225757 5.3584592442535e-07 1.7110577695869038 0.0010521310122691945 1.130202213660556 0.0012370498156902875']
['59866.28043072969 2.84071992294438 0.0006506204721801816 0.3254005178554512 0.0002002714136689163 0.0008704050571656742 5.357005957211732e-07 1.7090363332744287 0.001051845660025821 1.1316835896699513 0.001236804871972583']
['59866.28046226765 2.8428795534930664 0.000650827621420924 0.32565990706739945 0.00020030989904853882 0.0008710988903634267 5.358035392237563e-07 1.7103986715724762 0.001052047789120477 1.1324808819205903 0.001237085746178373']
['59866.280493805614 2.845907195990043 0.0006510494651194293 0.3264464196739473 0.0002004221189214547 0.0008732027116934465 5.361037131311127e-07 1.714529515094261 0.0010526371792093211 1.1313776808957818 0.0012377036951896248']
['59866.28052534358 2.8416545551867465 0.000650700406663497 0.32561191594319105 0.00020031649383629176 0.0008709705202013711 5.358211794434121e-07 1.7101466173486926 0.001052082425610776 1.131507937838054 0.0012370482809943573']
['59866.28055688154 2.8415641432496783 0.0006507293943813339 0.32557855717525963 0.00020028473257289992 0.0008708812897339469 5.357362220977372e-07 1.7099714137356075 0.0010519156122526256 1.1315927295140709 0.001236921662843979']
['59866.280588419504 2.8438683379269163 0.0006508410282378002 0.32595036235926067 0.00020034621726228884 0.0008718758213793412 5.359006858328753e-07 1.7119241720549407 0.001052238536041433 1.1319441658719755 0.001237255018485783']
['59866.28061995746 2.8418514993459376 0.0006507461496326423 0.3254674572045983 0.00020026873708923175 0.0008705841114228862 5.35693436210461e-07 1.7093879054863357 0.0010518316023594106 1.132463593859602 0.0012368590344027386']
['59866.28065149543 2.840898501005855 0.0006506349936746138 0.32530698262238633 0.0002002342902505156 0.0008701548622968418 5.356012952918801e-07 1.7085450767982477 0.0010516506840888425 1.1323534242076074 0.0012366466982685455']
['59866.280683033394 2.8401994247972078 0.0006506409146012322 0.3251622656886887 0.0002002214031927029 0.0008697677628792438 5.355668240489759e-07 1.7077850088691635 0.001051582999961675 1.1324144159280443 0.0012365922551761045']
['59866.28071457135 2.846371165503676 0.0006510727668992717 0.32647777594155714 0.0002004196294949225 0.0008732865857268418 5.360970542313133e-07 1.7146942013737247 0.0010526241044901392 1.1316769641299513 0.0012377048328060859']
['59866.28074610932 2.840833182942796 0.0006506713041294444 0.3252056909691787 0.00020023987623222678 0.000869883919989246 5.356162370834995e-07 1.7080130828213167 0.001051680022228082 1.1328201001214793 0.0012366907516316158']
['59866.280777647284 2.841902365640916 0.0006507659799268891 0.325704859990419 0.0002003124627590705 0.0008712191337231744 5.358103968238197e-07 1.7106347688572425 0.0010520612539867149 1.1312675967836734 0.0012370647690280016']
['59866.28080918524 2.842002643940326 0.0006507575032099972 0.32558793380578466 0.0002002878764298913 0.000870906371029705 5.357446315158978e-07 1.7100206607446673 0.001051932124106572 1.1319819831956586 0.0012369504928296338']
['59866.28084072321 2.8464302947448825 0.000651103094617044 0.3261838612831936 0.0002003642235523991 0.0008725004013448969 5.359488503719979e-07 1.7131505319495464 0.0010523331068928526 1.1332797627953362 0.001237473315947724']
['59866.280872261166 2.8392790453221353 0.0006504881021825261 0.32512763089847474 0.00020019726205352276 0.0008696751192142773 5.355022495677592e-07 1.7076031034583758 0.0010514562082643002 1.1316759418637594 0.0012364040314470687']
['59866.28090379913 2.847653983220574 0.0006512168705359769 0.32650841739991865 0.00020043501655350626 0.0008733685477362834 5.361382126587629e-07 1.714855133402934 0.0010527049188734574 1.13279884981764 0.0012378493683364885']
['59866.2809353371 2.8474294365830066 0.0006512024244564618 0.326464450036725 0.00020042158138423153 0.000873250940623897 5.361022752873116e-07 1.7146242123777573 0.0010526343560096193 1.1328052242052493 0.0012377817598711656']
['59866.280966875056 2.843476656875857 0.000650875963808954 0.3257225414714755 0.00020029902747270876 0.0008712664294393312 5.357744591391756e-07 1.710727633778758 0.0010519906905079243 1.1327490230970991 0.0012370626229821892']
['59866.28099841302 2.8457910432466083 0.0006510931294226875 0.326272628519283 0.00020039981914302156 0.0008727378424273882 5.360440640560289e-07 1.7136167464248058 0.001052520058524273 1.1321742968218025 0.0012376270588417852']
['59866.28102995099 2.843614540887663 0.0006508755181717322 0.3257659694742257 0.00020032498060621986 0.0008713825938310338 5.358438804750917e-07 1.7109557220284966 0.0010521269989822472 1.1326588188591666 0.001237178306527685']
['59866.281061488946 2.8466545648873556 0.0006511345002143149 0.3263528975687031 0.0002004243150344905 0.0008729525519398672 5.36109587454562e-07 1.7140383275667181 0.0010526487134164418 1.1326162373206374 0.0012377582361780654']
['59866.28109302691 2.8473128881804968 0.0006511773972257946 0.32660427139879494 0.0002004382668445478 0.0008736249450091622 5.361469067744898e-07 1.715358568270982 0.0010527219897297681 1.1319543199095148 0.0012378431202371173']
['59866.28112456487 2.8440165997658897 0.0006509417215253777 0.3257345102737626 0.00020030512518843342 0.0008712984444653292 5.357907697542873e-07 1.710790495135308 0.0010520227163258059 1.1332261046305818 0.0012371244563454194']
['59866.281156102836 2.84150528681137 0.0006507265471876429 0.3256291623901921 0.0002003095804473451 0.0008710166522566818 5.358026870060276e-07 1.7102371974274795 0.0010520461157948798 1.1312680893838905 0.0012370311511735851']
['59866.2811876408 2.8416619404778736 0.0006506777141596983 0.32590218195198506 0.00020032382668210892 0.0008717469449091211 5.358407938746513e-07 1.7116711236974005 0.0010521209384564544 1.129990816780473 0.001237069099461538']
['59866.28121917876 2.8408420799399745 0.000650642170417445 0.32519503839983527 0.00020021115859639348 0.0008698554257192018 5.355394210549821e-07 1.7079571344529165 0.0010515291943087894 1.132884945487058 0.00123654716060861']
['59866.281250716725 2.8433505458402366 0.0006509017351052036 0.3256931574139381 0.00020030525141233134 0.0008711878308173955 5.357911073871829e-07 1.7105733057454733 0.0010520233792664462 1.1327772400947633 0.0012371039807898758']
['59866.281282254684 2.8414833092617053 0.0006506827247954112 0.32565601446564374 0.00020031640323219617 0.0008710884781481172 5.358209370889637e-07 1.710378227235524 0.0010520819497489295 1.1311050820261814 0.0012370385755240982']
['59866.28131379265 2.840513239127823 0.0006506671698055693 0.3250077340446249 0.0002001990984688191 0.0008693544103579519 5.355071617454396e-07 1.7069733930915174 0.0010514658533026214 1.1335398460363055 0.0012365064522776254']
['59866.281345330615 2.8476252502753905 0.0006512095602123844 0.32657840705831565 0.00020043813208885805 0.0008735557611833288 5.361465463201345e-07 1.715222726146616 0.0010527212819792964 1.1324025241287745 0.0012378594382417337']
['59866.281376868574 2.843766300944484 0.0006508897710201007 0.32619073457699427 0.00020037623823838076 0.0008725187865328582 5.359809881310513e-07 1.7131866311816928 0.0010523962092351931 1.1305796697627912 0.0012374147547331103']
['59866.28140840654 2.841420875374066 0.0006506958663447849 0.3256280377685056 0.00020031101413368142 0.0008710136440365051 5.358065219348893e-07 1.710231290800975 0.0010520536456600916 1.131189584573091 0.0012370214160736586']
['59866.281439944505 2.844614566893159 0.0006509610916973806 0.3257125581205718 0.0002003024787325117 0.0008712397252436179 5.357836908208148e-07 1.7106752002130874 0.0010520088168724355 1.1339393666800717 0.0012371228288578248']
['59866.28147148246 2.8445165017616656 0.000650969706383765 0.32597978566735775 0.00020035890989456769 0.0008719545249915389 5.359346370121698e-07 1.7120787062361227 0.0010523051990260909 1.132437795525543 0.001237379404437744']
['59866.28150302043 2.84601939679299 0.0006510488027871233 0.3263877982883211 0.00020041322421146508 0.0008730459069322145 5.360799209115797e-07 1.7142216296655521 0.00105259046329551 1.131797767127438 0.0012376636162670384']
['59866.28153455839 2.8474598683925967 0.0006511891807711537 0.3263082019821749 0.00020039351065495787 0.0008728329969225503 5.360271896516797e-07 1.7138035818391542 0.0010524869257088124 1.1336562865534425 0.0012376494164105575']
['59866.28156609635 2.84022761910465 0.0006505993894365397 0.3251523427786069 0.0002002029894342002 0.0008697412203550526 5.355175695836548e-07 1.7077328927447843 0.0010514862890451692 1.1324947263598655 0.0012364881647574228']
['59866.28159763432 2.8478420407669263 0.0006512078000668137 0.32662169275118436 0.00020045101412665501 0.0008736715449141727 5.361810041351343e-07 1.7154500669705064 0.0010527889397408353 1.1323919737964199 0.0012379160514786498']
['59866.28162917228 2.842059952907438 0.0006507675103448523 0.32539418884559945 0.00020025130613800452 0.0008703881278681484 5.356468106297785e-07 1.7090030926764679 0.001051740053245822 1.1330568602309703 0.0012367924207893424']
['59866.28166071024 2.842209988954096 0.0006507970559408009 0.3258891345674498 0.00020036660875507884 0.0008717120448125965 5.359552304862291e-07 1.7116025975181186 0.001052345634217851 1.1306073914359773 0.0012373229739557029']
['59866.28169224821 2.843214305426141 0.0006508610902254755 0.3258228830171169 0.00020032190096518337 0.0008715348303298575 5.358356428264547e-07 1.711254637694942 0.0010521108243969717 1.131959667731199 0.0012371569607704472']
['59866.28172378617 2.8425482072204176 0.0006508300421210567 0.32568832576033974 0.00020030336824580812 0.000871174906757673 5.357860701559084e-07 1.710547929413549 0.001052013488685967 1.1320002778068685 0.0012370578499425625']
['59866.28175532413 2.8423315303546106 0.0006507635190782419 0.3254977229573632 0.00020027856615433603 0.000870665068467574 5.357197277112563e-07 1.7095468642718654 0.0010518832256005044 1.1327846660827452 0.0012369120736991854']
['59866.28178686209 2.8464723896807933 0.0006510815163189728 0.3264427712828245 0.00020042119114978404 0.0008731929527105637 5.361012314597271e-07 1.7145103533761792 0.00105263230645895 1.1319620363046141 0.0012377164107715878']
['59866.28181840006 2.8468317295167855 0.0006511046429831223 0.3265643910071062 0.00020043658342174135 0.0008735182700264782 5.361424038322888e-07 1.7151491124322806 0.0010527131482234316 1.131682617084505 0.0012377973293543124']
['59866.28184993802 2.8399299220715775 0.0006505600678326016 0.3253299917370316 0.0002002373293924766 0.0008702164087562024 5.356094246106339e-07 1.7086659229886114 0.0010516666459688896 1.131263999082966 0.00123662085381972']
['59866.28188147598 2.843150832768659 0.0006508589854013275 0.3253160561490851 0.00020022724378011638 0.0008701791328283608 5.355824468785123e-07 1.708592731875447 0.0010516136753157374 1.134558100893212 0.0012367330920569396']
['59866.28191301395 2.8472180064859254 0.0006511808724965798 0.32647234072619824 0.0002004428559348917 0.0008732720472160664 5.361591820083137e-07 1.7146656550745707 0.0010527460920950196 1.1325523514113547 0.001237865446293232']
['59866.28194455191 2.841916460051906 0.0006507513790534378 0.32560194511631624 0.00020028364647075122 0.0008709438495058445 5.357333169124319e-07 1.7100942495604847 0.0010519099079346179 1.131822210491421 0.0012369283777773745']
['59866.28197608987 2.8405682722571397 0.0006506455908070919 0.32531755049773137 0.00020026151017477664 0.0008701831300211971 5.356741051321613e-07 1.708600580345228 0.0010517936458759277 1.1319676919119117 0.0012367738509289749']
['59866.28200762784 2.8410893981107117 0.0006506699267199558 0.3252549257300436 0.00020022732420028622 0.0008700156167214074 5.355826619922527e-07 1.708271668750229 0.0010516140976905791 1.1328177293604826 0.0012366339652457082']
['59866.282039165795 2.8469679919851307 0.0006511216790907532 0.3266554041009148 0.0002004699031337309 0.0008737617184931291 5.362315298300288e-07 1.7156271223787545 0.0010528881467107717 1.1313408696063763 0.001237955124576818']
['59866.28207070376 2.846073622922571 0.000651035209161552 0.3266940674245856 0.00020047014929342003 0.0008738651379734411 5.362321882759333e-07 1.715830186053496 0.0010528894395662818 1.130243436869075 0.0012379107461841603']
['59866.28210224173 2.8468897791180714 0.000651114870408121 0.3265454738670668 0.00020043603536205827 0.0008734676690794793 5.361409378422438e-07 1.7150497577051829 0.0010527102697587094 1.1318400214128885 0.0012378002611576873']
['59866.282133779685 2.84771638376624 0.0006511977878620272 0.3266913932939587 0.00020047117652245778 0.0008738579850136471 5.362349359831441e-07 1.7158161412497832 0.001052894834676774 1.1319002425164566 0.0012380008448322761']
['59866.28216531765 2.84106814364197 0.0006506255454054966 0.3254085696212269 0.00020023280639163988 0.0008704265946164946 5.355973261578478e-07 1.7090786219602252 0.0010516428907123945 1.1319895216817446 0.0012366350997445128']
['59866.282196855616 2.842114697611917 0.0006507519801413948 0.32537510475620235 0.00020022661064047733 0.0008703370803528214 5.355807533103908e-07 1.7089028611145083 0.001051610350002507 1.1332118364974089 0.0012366739537527024']
['59866.282228393575 2.846844939458797 0.000651107662584034 0.3265023047890062 0.00020043773238639614 0.0008733521972784362 5.361454771668139e-07 1.7148230293540243 0.0010527191827016604 1.1320219101047726 0.0012378040498817638']
['59866.28225993154 2.8409472470564494 0.0006506484534352263 0.32550322335230675 0.00020027133694345807 0.0008706797813254602 5.357003904903171e-07 1.709575752900771 0.0010518452570559775 1.1313714941556785 0.0012368192490209745']
['59866.2822914695 2.8438024443730985 0.0006508878365144204 0.3257145531259461 0.00020033522769861514 0.0008712450616296147 5.358712901457982e-07 1.7106856781824902 0.0010521808177448276 1.1331167661906083 0.0012372305561020537']
['59866.282323007465 2.8440110138263135 0.0006508860584682888 0.32606514230132455 0.0002003448925936073 0.0008721828431465221 5.358971425123942e-07 1.712527007885108 0.0010522315787479376 1.1314840059412055 0.001237272789817493']
['59866.28235454543 2.8465926343641845 0.0006511246935308473 0.32616215169749696 0.0002003511397257452 0.0008724423309604246 5.359138527974345e-07 1.7130365110162655 0.0010522643893158888 1.133556123347919 0.0012374262448921875']
['59866.28238608339 2.8419330192661456 0.0006507688476972474 0.32561369586696326 0.00020029159036330903 0.0008709752812713993 5.357545658160952e-07 1.7101559656878322 0.0010519516300593963 1.1317770535783134 0.0012369730494710966']
['59866.282417621354 2.844362707971324 0.0006509224575629733 0.3260679572558983 0.00020035672570276842 0.0008721903727924884 5.359287945765142e-07 1.7125417923103903 0.0010522937274305066 1.1318209156609338 0.001237344792105018']
['59866.28244915932 2.8474278450717074 0.0006511840940281748 0.3265008381945811 0.00020044431081867625 0.0008733482743246165 5.361630736376571e-07 1.7148153266522117 0.0010527537332913669 1.1326125184194957 0.0012378736394617203']
['59866.28248069728 2.8468121578465255 0.0006511357229682033 0.32609929244574737 0.00020034229241691067 0.0008722741904455506 5.35890187369971e-07 1.7127063678873289 0.001052217922357724 1.1341057899591966 0.001237392535073705']
['59866.282512235244 2.843080933740637 0.0006508396417407265 0.32560706592973865 0.0002002940166765073 0.0008709575470313709 5.357610558957421e-07 1.7101211445889637 0.0010519643733009837 1.1329597891516732 0.0012370211323804168']
['59866.2825437732 2.847595137205718 0.0006512367981558942 0.32675481372966647 0.00020046994890886974 0.000874027626624335 5.362316522727115e-07 1.7161492317734584 0.0010528883871264167 1.1314459054322596 0.0012380158815693796']
['59866.28257531117 2.842448388925236 0.000650786742436119 0.3258997629607193 0.00020033467023723776 0.0008717404744147138 5.358697990074151e-07 1.711658418911341 0.001052177889901459 1.130789970013895 0.0012371748850215566']
['59866.282606849134 2.8411050191759504 0.0006507312157664763 0.32550004763117946 0.00020027932935308155 0.000870671286674783 5.35721769170969e-07 1.7095590736931694 0.0010518872339972771 1.131545945482781 0.0012368984874351488']
['59866.28263838709 2.8478851315978555 0.000651221650168611 0.32650382142277246 0.00020042894046452554 0.000873356254081138 5.361219598924444e-07 1.7148309948675025 0.0010526730066414156 1.133054136730353 0.0012378247438792807']
['59866.28266992506 2.846605496928686 0.0006511324896362619 0.3264572278888909 0.00020042187399608994 0.0008732316222957033 5.361030579868691e-07 1.714586280929049 0.0010526358928366068 1.132019215999637 0.0012377462752712436']
['59866.282701463024 2.8438891908977317 0.0006509000635303261 0.3259301963124703 0.00020035702084098613 0.0008718218797654032 5.35929584033762e-07 1.7118182579436465 0.0010522952775261878 1.1320709329540852 0.001237334329842868']
['59866.28273300098 2.8469207886010324 0.0006511862023962005 0.3262220494988089 0.00020039641294051158 0.0008726025499715025 5.360349528969257e-07 1.7133511003088704 0.001052502168805208 1.133569688292162 0.0012376608119880226']
['59866.28276453895 2.8471807584342885 0.0006511506091203395 0.3265989351160256 0.00020043809147888474 0.0008736106711304988 5.361464376936137e-07 1.715330541575765 0.0010527210686916216 1.1318502168585236 0.0012378282450425096']
['59866.28279607691 2.847811589550104 0.0006512060895999902 0.32662387651055863 0.00020043339631555407 0.0008736773861931465 5.361338787280221e-07 1.715461536294951 0.001052696409220347 1.132350053255153 0.0012378364597625659']
['59866.28282761487 2.841906274476878 0.0006506932724681196 0.32581614933135944 0.00020032972703829747 0.0008715168185756805 5.3585657657807e-07 1.7112192716983166 0.0010521519277221507 1.1306870027785614 0.001237103639087974']
['59866.28285915284 2.8408728319224874 0.0006506577881479975 0.3253014981529565 0.000200241988005449 0.0008701401920376822 5.356218858086593e-07 1.7085162718117466 0.001051691113473997 1.1323565601107408 0.001236693072446765']
['59866.282890690796 2.84271173472521 0.0006508010987897021 0.32579599632814127 0.0002003292274917653 0.0008714629118516415 5.358552403545422e-07 1.711113426093179 0.0010521493040533893 1.131598308632031 0.0012371581257890664']
['59866.28292222876 2.8470171076821975 0.0006511421590624502 0.3267455719595652 0.00020046361804811663 0.0008740029060630823 5.362147180242596e-07 1.7161006930649434 0.0010528551368073353 1.1309164146172541 0.0012379378217059619']
['59866.28295376673 2.8417971426504454 0.0006507435722581702 0.3252365239845414 0.00020020090460707915 0.0008699663943893368 5.355119929358932e-07 1.7081750209272133 0.0010514753393228947 1.133622121723232 0.0012365547242397003']
['59866.282985304686 2.8470712023770433 0.0006511863013759203 0.32630034654086404 0.00020038126415934603 0.0008728119846147386 5.35994431831307e-07 1.7137623242692441 0.0010524226058789183 1.1333088781077991 0.0012375932047585846']
['59866.28301684265 2.8457070884246485 0.0006510476926501067 0.32613495974085943 0.00020035958197568961 0.0008723695959299843 5.359364347438121e-07 1.7128936961179593 0.0010523087288639161 1.1328133923066892 0.0012374234355903475']
['59866.28304838061 2.8436344076228433 0.0006509551146191945 0.32544233741877826 0.00020025584507785623 0.0008705169191862026 5.356589517174053e-07 1.7092559738381212 0.0010517638922156315 1.134378433784722 0.0012369114140541606']
['59866.283079918576 2.8466620345446363 0.000651095962612846 0.32651587446450314 0.00020043482908439132 0.0008733884944369486 5.361377112026903e-07 1.7148942986581048 0.0010527039342667613 1.1317677358865315 0.0012377849270981877']
['59866.28311145654 2.841772479087254 0.0006507120473624867 0.32558995114652983 0.00020030871156253587 0.0008709117671599823 5.358003628495173e-07 1.7100312560216906 0.001052041552324243 1.1317412230655635 0.0012370196426894288']
['59866.2831429945 2.842453554318884 0.0006507856380446752 0.3257441452847101 0.00020032493538046543 0.0008713242168959012 5.358437595019427e-07 1.7108410991844019 0.0010521267614520243 1.1316124551344822 0.001237130821234658']
['59866.283174532466 2.8407621489086736 0.0006506652860885972 0.3254042750966976 0.00020026375603108512 0.0008704151073088129 5.356801125125473e-07 1.7090560666843364 0.0010518054413397328 1.1317060822243372 0.0012367942435800008']
['59866.28320607043 2.8465429632066765 0.0006510856687339398 0.32648095156447177 0.00020041676058390082 0.0008732950801148125 5.360893802587017e-07 1.714710880065503 0.0010526090366801515 1.1318320831411735 0.0012376988050941302']
['59866.28323760839 2.84583752582367 0.000651036809163218 0.3262810931531017 0.00020039500833926707 0.0008727604842477867 5.360311957669907e-07 1.7136612035351981 0.0010524947916978314 1.1321763222884718 0.0012375759424926155']
['59866.283269146355 2.8418844547715763 0.0006507524172631054 0.32542251317732984 0.0002002675025495794 0.0008704638918581428 5.35690133973686e-07 1.709151854922951 0.0010518251184326649 1.1327325998486253 0.0012368568180430846']
['59866.283300684314 2.8418240033463045 0.0006507375257450508 0.3254427367338357 0.00020026824375147408 0.0008705179873032656 5.356921165946165e-07 1.70925807108107 0.0010518290112997589 1.1325659322652344 0.0012368522936974402']
['59866.28333222228 2.8422607099597474 0.0006507299673487054 0.32551973814237234 0.00020028721282137852 0.0008707239562913941 5.35742856447409e-07 1.7096624902435524 0.0010519286387677446 1.132598219716195 0.0012369330424341519']
['59866.283363760245 2.840356661828868 0.0006505994486187006 0.3251333187914625 0.00020022104296676667 0.0008696903336056183 5.355658604903476e-07 1.7076329768459169 0.0010515811080187326 1.1327236849829512 0.0012365688291740428']
['59866.283395298204 2.8432889985838337 0.0006508368874389256 0.3256033064879589 0.00020028225890078203 0.000870947491002085 5.357296053389952e-07 1.710101399621633 0.0010519026202772167 1.1331875989622007 0.0012369671687628833']
['59866.28342683617 2.846377564763308 0.0006511231297499335 0.3261517396559524 0.00020039685911052302 0.0008724144800716936 5.360361463450397e-07 1.7129818259241198 0.0010525045121351 1.1333957388391882 0.0012376296207509312']
['59866.283458374135 2.842463607715507 0.0006507433764259298 0.3258432522570236 0.00020034249671214933 0.0008715893154595747 5.358907338337876e-07 1.711361618996973 0.001052218995336919 1.1311019887185343 0.0012371870336008433']
['59866.28348991209 2.846122139696013 0.000651057817110225 0.3266383310552121 0.00020048113920851195 0.0008737160502642682 5.362615849030096e-07 1.715537453021072 0.0010529471597085713 1.1305846866749407 0.0012379717292243303']
['59866.28352145006 2.847438271089959 0.0006511791928088161 0.3264081897349338 0.00020038542747538116 0.0008731004514620498 5.360055681729313e-07 1.7143287275994423 0.0010524444720345651 1.1331095434905165 0.0012376080590652502']
['59866.28355298802 2.8458765086257656 0.0006510313194839056 0.32640104964319927 0.0002004314678517719 0.0008730813526235007 5.36128720332333e-07 1.7142912271176434 0.0010526862807340963 1.1315852815081222 0.0012377359106831877']
['59866.28358452598 2.845600304547331 0.0006509983184074361 0.3261833908338723 0.0002003784686762007 0.0008724991429527127 5.359869542689388e-07 1.7131480611022707 0.0010524079237195416 1.1324522434450603 0.001237481817432881']
['59866.28361606395 2.846447164783063 0.0006510791791764258 0.3264541529082775 0.00020042343141151513 0.0008732233971131061 5.361072238753291e-07 1.7145701308207855 0.0010526440725394705 1.1318770339622777 0.0012377251879999577']
['59866.28364760191 2.8472384001121647 0.0006511411692563538 0.3266603796595844 0.00020047122715732938 0.0008737750274806401 5.362350714249947e-07 1.7156532545146241 0.0010528951006162257 1.1315851455975405 0.001237971290136481']
['59866.28367913987 2.846794808172223 0.000651126818321329 0.3265300029634529 0.00020041233659283273 0.000873426286377223 5.360775466444717e-07 1.7149685029593116 0.001052585801432945 1.1318263052129114 0.0012377006919750398']
['59866.28371067784 2.8463494325284864 0.0006511227692786355 0.32642986763396975 0.0002004183041479776 0.0008731584370887292 5.360935090965638e-07 1.7144425821111857 0.001052617143634336 1.1319068504173007 0.0012377252165751442']
['59866.2837422158 2.8468926523109985 0.0006511354354207875 0.3266876466072235 0.0002004665686733883 0.0008738479631024853 5.362226105721117e-07 1.7157964632732328 0.0010528706337888042 1.1310961890377658 0.0012379474652647652']
['59866.28377375376 2.8474630808370804 0.0006511509987146476 0.32645249376664726 0.00020042189040479232 0.0008732189591199675 5.36103101878064e-07 1.714561416841635 0.0010526359790167664 1.1329016639954455 0.001237756085603165']
['59866.28380529172 2.8400257984587727 0.0006505782555903073 0.32527655326113 0.0002002260317578135 0.0008700734676202187 5.355792048727871e-07 1.7083852587244224 0.0010516073096523818 1.1316405397343503 0.0012365799611675937']
['59866.28383682969 2.8482516518190617 0.0006512558006708421 0.3265533991003526 0.00020044025900589106 0.0008734888680719598 5.361522355530648e-07 1.715091381829583 0.001052732452762033 1.1331602699894787 0.0012378932647873102']
['59866.28386836765 2.8472731261343283 0.0006511441559302882 0.326626530438355 0.00020043938191665649 0.0008736844851129346 5.361498894507587e-07 1.7154754749913603 0.001052727846200927 1.131797651142968 0.0012378306144093425']
['59866.28389990561 2.840500461047702 0.000650589225170695 0.3251800363807652 0.0002002175140339643 0.0008698152972235486 5.355564210433e-07 1.7078783423359518 0.001051562573707796 1.13262211871175 0.0012365476886603156']
['59866.28393144358 2.8468706240400903 0.0006511128525730338 0.3265301401834415 0.00020044877286756792 0.0008734266534232646 5.361750090517316e-07 1.714969223652529 0.0010527771684221007 1.1319014003875614 0.0012378560954879405']
['59866.28396298154 2.8474002512692893 0.0006511672593012944 0.32654512298753957 0.0002004391581414263 0.0008734667305213081 5.361492908804389e-07 1.715047914850523 0.0010527266709108524 1.1323523364187662 0.0012378417682535217']
['59866.2839945195 2.842575722531238 0.0006507397088516997 0.3256915855167781 0.0002002834456406387 0.0008711836261921343 5.357327797173877e-07 1.7105650499830785 0.0010519088531546152 1.1320106725481596 0.0012369213410809324']
['59866.28402605747 2.847818947283244 0.0006512444784742766 0.32653918258850245 0.0002004378207029678 0.0008734508407083552 5.361457134024263e-07 1.7150167152757483 0.0010527196465492006 1.1328022320074957 0.0012378764174883962']
['59866.284057595425 2.8468797093963376 0.0006511614993103448 0.3261768468078866 0.0002003605244917956 0.0008724816385143371 5.359389558546897e-07 1.713113691217892 0.0010523136790535485 1.1337660181784457 0.0012374875261219043']
['59866.28408913339 2.846452717042224 0.0006511059746023423 0.32642695311527803 0.00020042295962394545 0.0008731506411213927 5.361059619035005e-07 1.7144272747651157 0.0010526415946635792 1.1320254422771083 0.0012377371760510182']
['59866.28412067136 2.8418241019674944 0.000650748618302978 0.3254031176154248 0.0002002407408164191 0.0008704120111934162 5.356185497364058e-07 1.7090499874759708 0.0010516845631114448 1.1327741144915235 0.0012367352928214451']
['59866.284152209315 2.8469529634832753 0.0006511526995063698 0.3260953227917503 0.00020036313971756267 0.0008722635721252817 5.359459512514649e-07 1.7126855188642347 0.0010523274144829972 1.1342674446190406 0.0012374945758858512']
['59866.28418374728 2.847665419923109 0.0006512132141054455 0.32639228121416164 0.0002004032952526561 0.0008730578981894756 5.360533622078114e-07 1.7142451744441263 0.0010525383154026055 1.1334202454789826 0.0012377057629404896']
['59866.284215285246 2.84587628524973 0.0006510445390955227 0.3259013005705107 0.00020031859861591698 0.0008717445873256187 5.358268094615881e-07 1.7116664945930187 0.0010520934801256144 1.1342097906567115 0.0012372387331509342']
['59866.284246823205 2.8401053525235285 0.0006505845313213567 0.3253847043807391 0.0002002597979349122 0.0008703627581292389 5.356695251079901e-07 1.7089532793106044 0.001051784653019497 1.131152073212924 0.001236734081652953']
['59866.28427836117 2.8421764588101928 0.0006507692057766774 0.3255824831096519 0.0002002934615072962 0.0008708917911098256 5.357595708886127e-07 1.709992033138928 0.0010519614574963036 1.1321844256712648 0.001236981595354173']
['59866.28430989913 2.8437643782976147 0.0006508790550210898 0.32571395556836125 0.0002002920759139223 0.0008712434632389692 5.357558646023174e-07 1.7106825397497967 0.0010519541802201803 1.133081838547818 0.001237033201473533']
['59866.284341437095 2.846404028463555 0.0006511434349676269 0.3263633521886039 0.0002004219780003545 0.0008729805167202934 5.361033361850676e-07 1.7140932362846846 0.001052636439077492 1.1323107921788702 0.001237752497785879']
['59866.28437297506 2.8461161798725376 0.000651046148894829 0.32640946989977776 0.0002004036854132528 0.0008731038757404178 5.360544058378546e-07 1.714335451154295 0.0010525403645654035 1.1317807287182426 0.001237619613221389']
['59866.28440451302 2.8432492076737126 0.0006509061013204809 0.32593615933613856 0.000200350823462116 0.0008718378300963709 5.35913006832394e-07 1.7118495763452657 0.001052262728267416 1.131399631328447 0.0012373098245940723']
['59866.284436050984 2.842262613906531 0.0006508176537434137 0.3254478149319996 0.00020027224398308968 0.000870531570838388 5.357028167061314e-07 1.709284742289914 0.0010518500209195888 1.1329778716166168 0.001236912319015629']
['59866.28446758895 2.8408959278380634 0.0006506693719749665 0.3252795758340793 0.00020024724568116361 0.0008700815526189705 5.35635949423435e-07 1.7084011335823492 0.001051718727317036 1.1324947942557142 0.0012367226499970245']
['59866.28449912691 2.84573048127207 0.000651081136730797 0.32618117127946344 0.00020036019178742913 0.0008724932059265676 5.359380659127651e-07 1.7131364037786945 0.0010523119316566657 1.1325940774933754 0.0012374437555354384']
['59866.284530664874 2.8469829443123476 0.0006511277847418913 0.3262177542629835 0.00020036716005972783 0.000872591060761194 5.359567051561457e-07 1.7133285412971824 0.0010523485297254612 1.1336544030151652 0.0012374994222536925']
['59866.28456220283 2.843676370187451 0.0006508563127568048 0.32585020549244875 0.00020032028561738912 0.0008716079144812283 5.358313219762653e-07 1.7113981380905923 0.0010521023404274639 1.1322782320968585 0.0012371472323811467']
['59866.2845937408 2.8408152124934682 0.0006506483494822725 0.3255494085632844 0.00020026882922708056 0.0008708033208989868 5.356936826675045e-07 1.7098183222861576 0.0010518320862766839 1.1309968902073106 0.0012368079933462457']
['59866.284625278764 2.8411471794457097 0.0006506900574985531 0.3252682213354239 0.0002002290296677348 0.0008700511807771665 5.355872239010716e-07 1.7083414986104195 0.0010516230549775989 1.1328056808352902 0.0012366521744968907']
['59866.28465681672 2.84694265667044 0.0006511602977671582 0.32629998454408504 0.0002004045614120038 0.0008728110163193309 5.360567490232557e-07 1.713760423025657 0.0010525449653991797 1.1331822336447832 0.0012376835773231277']
['59866.28468835469 2.839959856330786 0.0006505944504502644 0.32524164040934567 0.00020022897667975332 0.0008699800801758673 5.355870821649509e-07 1.7082018929062275 0.0010516227766793767 1.1317579634245587 0.0012366016348798524']
['59866.284719892654 2.843560895131892 0.0006508233473348848 0.32549423452687143 0.00020026326935909672 0.0008706557373590633 5.35678810726789e-07 1.7095285426831486 0.0010518028852893736 1.1340323524487432 0.0012368752317591437']
['59866.28475143061 2.843784131992302 0.0006508798203979478 0.3258560373054781 0.0002003140113150534 0.0008716235138404015 5.358145390143967e-07 1.7114287673607043 0.001052069387158894 1.1323553646315976 0.001237131575863358']
['59866.28478296858 2.8424474051395627 0.0006507415545442013 0.32575549513954516 0.00020030654112126447 0.0008713545763160757 5.357945571947772e-07 1.7109007097665188 0.0010520301529478176 1.131546695373044 0.0012370254700377079']
['59866.284814506536 2.840433626822175 0.0006505810415585554 0.32556041546402165 0.00020029194766761464 0.000870832762960507 5.357555215597326e-07 1.7098761316387692 0.00105195350665764 1.1305574951834059 0.001236875851411418']
['59866.2848460445 2.8442065369300717 0.0006509192194189165 0.3260286396031075 0.00020035778807968446 0.0008720852030648847 5.359316362998354e-07 1.7123352920331278 0.0010522993071411999 1.131871244896944 0.001237347833884547']
['59866.28487758247 2.840703323059427 0.000650592608007705 0.3254242081404155 0.00020025504082052422 0.000870468425669125 5.356568004311885e-07 1.7091607570399974 0.0010517596681750222 1.1315425660194298 0.0012367170821145394']
['59866.284909120426 2.8418904288059776 0.0006507400744437241 0.32512800147906645 0.00020021901204189102 0.0008696761104702939 5.355604280242467e-07 1.707605049785013 0.0010515704413964866 1.1342853790209646 0.0012366337524529344']
['59866.28494065839 2.846812283143962 0.0006511135547411179 0.3259710628719189 0.00020032776094731816 0.0008719311926215948 5.358513175344073e-07 1.7120328932348683 0.001052141601614066 1.1347793899090937 0.0012373159705647652']
['59866.28497219636 2.8431867086138816 0.0006507949680693383 0.32600706642141025 0.0002003642177580526 0.0008720274975437865 5.35948834872857e-07 1.712221987507407 0.0010523330764603605 1.1309647211064746 0.0012373111954059489']
['59866.285003734316 2.84560944024388 0.0006510105184308109 0.32639662479573395 0.0002004388084217247 0.0008730695167185169 5.361483554246539e-07 1.7142679873725524 0.001052724834147714 1.1313414528713277 0.001237757759635901']
['59866.28503527228 2.8472489644438634 0.0006511404630703417 0.32658111288739 0.0002004514963716183 0.0008735629989324439 5.361822940791626e-07 1.7152369374337713 0.001052791472540012 1.1320120270100922 0.0012378827841522096']
['59866.28506681024 2.8429833238440674 0.0006508046223597525 0.3259516450448716 0.0002003471741754241 0.0008718792524004406 5.359032454539776e-07 1.7119309088491157 0.001052243561845715 1.1310524149949517 0.0012372401423856958']
['59866.285098348206 2.840975039595172 0.0006507181747935344 0.32491586875476197 0.00020016428267092867 0.0008691086823750904 5.354140339079278e-07 1.7064909073254306 0.001051282997221264 1.1344841322697412 0.0012363778076515096']
['59866.28512988617 2.8407960134892996 0.0006506220916429027 0.32545229200506426 0.00020027560911418176 0.000870543546440217 5.35711818004408e-07 1.709308256329119 0.0010518676949274252 1.1314877571601805 0.001236824463602544']
['59866.28516142413 2.8416658346173977 0.0006507483664458061 0.3254146133824368 0.0002002428322100244 0.0008704427609101321 5.356241439486786e-07 1.709110364403555 0.0010516955473215566 1.1325554702138427 0.0012367445009733714']
['59866.285192962096 2.840620613386121 0.000650646358073861 0.3253700139885763 0.00020024479132420915 0.0008703234631959841 5.35629384330302e-07 1.7088761238895813 0.0010517058367868128 1.1317444894965396 0.001236699579690326']
['59866.28522450006 2.8473622076154435 0.0006511540842927856 0.3265036112387449 0.00020042442787380395 0.0008733556918655591 5.361098892853941e-07 1.7148298909597948 0.0010526493060598948 1.1325323166556487 0.0012377690426891256']
['59866.28525603802 2.8466299860411723 0.0006510917951910193 0.3262981204323664 0.0002003913508268562 0.0008728060300572384 5.360214123858207e-07 1.7137506325229328 0.0010524755820738247 1.1328793535182395 0.0012375885328438933']
['59866.285287575985 2.8418860834186894 0.0006507112806767715 0.32575745024700714 0.00020030377397465022 0.0008713598059802244 5.357871554290307e-07 1.710910978188063 0.0010520156196147596 1.1309751052306265 0.0012369971846020631']
['59866.285319113944 2.8406664531169517 0.0006505911249016594 0.3255105095483948 0.00020027013822181602 0.0008706992709745988 5.356971840621705e-07 1.7096140207373678 0.0010518389612490337 1.1310524323795839 0.0012367837370382312']
['59866.28535065191 2.8414692639697035 0.0006507712938443324 0.3255788675604557 0.00020029217043075816 0.0008708821199749253 5.357561174228491e-07 1.7099730439099563 0.0010519546766321333 1.1314962200597471 0.0012369769272626077']
['59866.285382189875 2.8431589804739943 0.0006508722531505239 0.3254580738923124 0.0002002551145666006 0.0008705590122542664 5.356569976925765e-07 1.7093386233839938 0.0010517600554968518 1.1338203570900005 0.0012368645456394894']
['59866.285413727834 2.8461878643660166 0.0006510424800451153 0.3266994061820556 0.00020047861854672393 0.0008738794184716145 5.362548424528679e-07 1.7158582257460904 0.001052933920938676 1.1303296386199262 0.0012379524032395544']
['59866.2854452658 2.847854112161162 0.0006512329280574541 0.32664232866535803 0.0002004728620280664 0.0008737267433636846 5.362394444965764e-07 1.715558448872679 0.0010529036871221977 1.132295663288483 0.0012380268579242552']
['59866.285476803765 2.8436608610093037 0.0006508250136887436 0.32623443612078684 0.00020041714878406855 0.0008726356826121075 5.360904186448463e-07 1.7134161560965697 0.0010526110755465787 1.130244704912734 0.001237563442739918']
['59866.28550834172 2.8468089649332184 0.0006511184231027436 0.3267553079568996 0.0002004953454580862 0.0008740289486194134 5.362995848163295e-07 1.716151827504725 0.0010530217723638982 1.1306571374284935 0.0012380670636020527']
['59866.28553987969 2.8467655826873957 0.0006511473427319572 0.32630792857952606 0.00020039021807194724 0.0008728322656051886 5.360183824103069e-07 1.7138021459008723 0.0010524696327308153 1.1329634367865233 0.0012376126978046994']
['59866.28557141765 2.842087576159008 0.000650765743162648 0.3255029774573913 0.0002002732325188237 0.0008706791235877918 5.35705460913669e-07 1.709574461435879 0.001051855212808948 1.1325131147231289 0.00123688942156823']
['59866.28560295561 2.8420415301284914 0.0006507257667246299 0.3257381954187221 0.00020030724912889673 0.0008713083017600573 5.357964510252716e-07 1.7108098498882467 0.001052033871475298 1.1312316802402447 0.001237020327323145']
['59866.28563449358 2.8425651762694395 0.0006507438702016154 0.3258419436522418 0.00020031984324012065 0.000871585815107985 5.358301386732571e-07 1.7113547460726986 0.0010521000170174404 1.131210430196741 0.0012370861046883824']
['59866.28566603154 2.8431133953266636 0.0006508254734749971 0.3257848644443693 0.0002003227177059851 0.0008714331354763772 5.358378275043677e-07 1.711054960317066 0.0010521151140020228 1.1320584350095977 0.0012371418714260073']
['59866.2856975695 2.8412104490689147 0.0006507104498265619 0.3253295912300327 0.00020025337911200433 0.0008702153374508476 5.356523555719462e-07 1.708663819485466 0.0010517509407143087 1.1325466295834488 0.0012367716566961421']
['59866.28572910747 2.84583017667903 0.000651053305881187 0.32631908126565223 0.00020039095783655486 0.0008728620976241085 5.360203611866772e-07 1.7138607209330476 0.0010524735180491328 1.1319694557459823 0.0012375665288353354']
['59866.28576064543 2.845693023808583 0.0006510318557800143 0.32621805410875115 0.00020038323997163173 0.00087259186281054 5.359997168782296e-07 1.7133301161173906 0.0010524329830442845 1.1323629076911923 0.0012375207719629844']
['59866.28579218339 2.8435942107304606 0.0006508406185886305 0.32585202452634743 0.00020031142758917896 0.0008716127801658776 5.358076278758335e-07 1.7114076918400603 0.0010520558171700576 1.1321865188904003 0.0012370994112221496']
['59866.28582372135 2.844811664846733 0.0006509649807309146 0.32571616642765966 0.0002003093380123505 0.0008712493770067981 5.358020385232079e-07 1.7106941514057756 0.0010520448425018409 1.1341175134409576 0.0012371555103432726']
['59866.28585525932 2.8472524099360337 0.0006511241292168596 0.32673406033392094 0.00020045990268105704 0.0008739721139265393 5.362047798892524e-07 1.7160402328462236 0.0010528356233248796 1.13121217708981 0.0012379117421651275']
['59866.28588679728 2.846670980021618 0.0006511041322012858 0.3266819359403101 0.0002004717800016049 0.0008738326877937857 5.362365502132167e-07 1.715766470274738 0.00105289800421011 1.1309045097468802 0.0012379542795431591']
['59866.28591833524 2.843835671925178 0.0006509056518822422 0.3256721508270612 0.0002002776216237865 0.0008711316408654804 5.357172012119981e-07 1.7104629770328845 0.0010518782648308114 1.1333726948922935 0.0012369826400058027']
['59866.28594987321 2.8417795450427943 0.0006507155881694463 0.3254917700711616 0.000200268681243975 0.0008706491452530422 5.356932868314919e-07 1.7095155991132438 0.0010518313090544906 1.1322639459295505 0.0012368427060034722']
['59866.28598141117 2.840687382697168 0.0006506081687129494 0.32555698686664736 0.00020028198342588976 0.0008708235918979862 5.357288684786455e-07 1.7098581242996185 0.0010519011734553033 1.1308292583975497 0.001236845611995556']
['59866.28601294913 2.844284188475755 0.0006508899983123755 0.32619322452173055 0.00020039570918963063 0.0008725254468187877 5.360330704527004e-07 1.7131997086225346 0.0010524984726346148 1.1310844798532205 0.0012375018484031776']
['59866.2860444871 2.8469603776369383 0.0006511155125104057 0.3263796045147399 0.0002004268960855052 0.0008730239896285502 5.361164914382152e-07 1.7141785951404407 0.001052662269356645 1.1327817824964976 0.001237759776353542']
['59866.286076025055 2.845950705360107 0.0006510665138381147 0.32633533281170474 0.00020041108199163202 0.0008729055684457411 5.360741907456028e-07 1.7139460756917266 0.0010525792121409245 1.1320046296683803 0.0012376633642766216']
['59866.28610756302 2.844169872053288 0.000650956611321007 0.32570394995607044 0.0002003072039568445 0.0008712166994968726 5.357963301957691e-07 1.7106299892650758 0.0010520336342271246 1.1335398827882124 0.0012371415753128904']
['59866.28613910099 2.8401891775503927 0.0006505837244946165 0.3253814270737937 0.00020024287396902028 0.0008703539917494005 5.35624255648689e-07 1.7089360665640425 0.0010516957666440142 1.1312531109863502 0.0012366580643630753']
['59866.286170638945 2.8456406706601154 0.0006510362991469862 0.326375184153912 0.00020041301707338967 0.0008730121657247517 5.360793668435358e-07 1.7141553789596218 0.00105258937538545 1.1314852917004936 0.0012376561137817466']
['59866.28620217691 2.8441099981896807 0.0006509309130329669 0.326010219772817 0.00020036935011101878 0.0008720359323583024 5.359625632651975e-07 1.7122385492269803 0.001052360032095687 1.1318714489627004 0.0012374056290054476']
['59866.286233714876 2.8440622679087273 0.0006509504827642279 0.32567681360126244 0.00020030793934744387 0.0008711441131942644 5.357982972722227e-07 1.7104874663931853 0.0010520374965727094 1.133574801515542 0.001237141635062839']
['59866.286265252835 2.8457193249197372 0.000651095451766745 0.3262636439033754 0.00020037484014420707 0.0008727138097209433 5.359772484067042e-07 1.7135695583160475 0.0010523888663036085 1.1321497666036897 0.0012375167123037717']
['59866.2862967908 2.8405049204304773 0.0006506456416616392 0.3251865183981496 0.00020022305447108302 0.0008698326357967913 5.35571241008919e-07 1.7079123865449035 0.0010515916726422428 1.1325925338855738 0.001236602117491231']
['59866.28632832876 2.8477595462442324 0.0006512086158432473 0.3265698295328141 0.00020044851034141885 0.0008735328173920167 5.361743068276254e-07 1.7151776761177213 0.0010527757896082923 1.1325818701265111 0.0012379052970780283']
['59866.286359866725 2.8461901290682285 0.0006510776473469022 0.3263886251249286 0.0002004141757455673 0.0008730481186151257 5.360824661444517e-07 1.7142259722947932 0.0010525954608485678 1.1319641567734353 0.0012376830398263467']
['59866.28639140469 2.840985189060968 0.0006506409695434417 0.32533952664680166 0.00020024063010749482 0.0008702419134288384 5.356182536040942e-07 1.7087160012962272 0.0010516839816570108 1.1322691877647408 0.0012366781588280652']
['59866.28642294265 2.847168410001998 0.0006511109798215261 0.32649176382188105 0.00020042637198731456 0.0008733240015301515 5.361150895421193e-07 1.7147676671317282 0.0010526595167400976 1.1324007428702698 0.001237755050980461']
['59866.286454480614 2.8420379301743575 0.0006507265137556394 0.32572312764819666 0.0002003122196377176 0.0008712679973876119 5.358097465050788e-07 1.7107307124380078 0.0010520599770888531 1.1313072177363497 0.0012370429220915362']
['59866.28648601857 2.840006351799084 0.0006505660316129145 0.3254028985060315 0.00020026725007411995 0.0008704114251036175 5.356894586338981e-07 1.709048836691342 0.0010518237924060923 1.1309575151077418 0.001236757636628984']
['59866.28651755654 2.8469950511346074 0.000651100313814172 0.32673232253713347 0.00020048356073239606 0.0008739674655408449 5.362680621718494e-07 1.7160311057622557 0.0010529598777961977 1.1309639453723517 0.0012380048961524736']
['59866.286549094504 2.8476322429668395 0.0006511734683973578 0.3265569149152501 0.00020042788787906653 0.0008734982724302779 5.361191443600271e-07 1.7151098472439605 0.0010526674783564419 1.132522395722879 0.0012377946945814377']
['59866.28658063246 2.8470185113578443 0.0006511392953447414 0.3264846102035139 0.00020042586448186826 0.0008733048665095779 5.361137320295071e-07 1.7147300956066907 0.0010526568512703165 1.1322884157511537 0.0012377676795216393']
['59866.28661217043 2.845408865007 0.000651008308626941 0.3258391872529718 0.0002003026566715915 0.0008715784420900195 5.357841667852537e-07 1.7113402691857764 0.001052009751426426 1.1340685958212238 0.0012371484692621179']
['59866.286643708394 2.8465549806284303 0.0006510619323954284 0.326524381499726 0.0002004202176681582 0.000873411249675718 5.360986275200168e-07 1.7149389784649476 0.0010526271936352847 1.1316160021634827 0.00123770176076265']
['59866.28667524635 2.8425089016133462 0.0006508059197684848 0.3255407631893522 0.00020029674851291694 0.00087078019562174 5.357683632111759e-07 1.7097729159104633 0.0010519787211812864 1.132735985702883 0.0012370155920698486']
['59866.28670678432 2.8423004376408807 0.0006507928643213441 0.32563607519910304 0.0002002956367330285 0.0008710351431425445 5.35765389341178e-07 1.7102735041969699 0.0010519728820012001 1.1320269334439108 0.0012370037577620733']
['59866.28673832228 2.8460853269082733 0.0006510542461092079 0.32647228429737524 0.00020042182701228228 0.0008732718962761317 5.361029323111509e-07 1.714665358704702 0.001052635646072911 1.1314199682035713 0.0012377049061711616']
['59866.28676986024 2.8417138791575254 0.0006507025550960717 0.3256167991653862 0.0002002853021456238 0.0008709835822005405 5.35737745632434e-07 1.7101722645240873 0.0010519186037060075 1.131541614633438 0.0012369100872866034']
['59866.28680139821 2.8439567020342595 0.0006509360122168363 0.3258598610757768 0.00020033857717408245 0.0008716337419403055 5.358802495672668e-07 1.7114488501879035 0.001052198409527744 1.132507851846356 0.001237270861619828']
['59866.286832936166 2.841528289793996 0.0006506617123167843 0.325763532087292 0.00020031153089148372 0.0008713760741305509 5.358079041963787e-07 1.7109429206265334 0.0010520563597241793 1.1305853691674628 0.0012370057590452444']
['59866.28686447413 2.846488553475637 0.0006511072017227131 0.3265985282606698 0.0002004667984759572 0.0008736095828440955 5.36223225264797e-07 1.715328404730409 0.0010528718407350694 1.1311601487452279 0.0012379336416577567']
['59866.2868960121 2.8398493909945026 0.0006505887637732991 0.3249417335277577 0.00020017989253170464 0.0008691778673578503 5.354557883029442e-07 1.7066267517214164 0.0010513649817841632 1.1332226392730862 0.0012363794176829714']
['59866.286927550056 2.8414829201258835 0.0006507404575093734 0.32533881905401263 0.00020023503070315348 0.0008702400207079969 5.356032759086438e-07 1.7087122849475453 0.001051654573020764 1.1327706351783382 0.0012367054960640365']
['59866.28695908802 2.843567247463718 0.0006508632971950942 0.3258754335195365 0.0002003459054221105 0.0008716753962495557 5.35899851700004e-07 1.7115306382328601 0.0010522368982253702 1.132036609230858 0.0012372653400231567']
['59866.28699062598 2.847004351350014 0.0006511394808750482 0.32624772510049704 0.00020038440877458112 0.0008726712289450408 5.360028432776731e-07 1.713485951158073 0.001052439121715237 1.1335184001919412 0.0012375826148063678']
['59866.287022163946 2.8396167004995947 0.0006505133388874875 0.32540852116240304 0.00020024612029100926 0.0008704264649952954 5.356329391477044e-07 1.7090783674495957 0.0010517128166544606 1.130538333049999 0.001236635537571926']
['59866.28705370191 2.846598752201315 0.0006511051238061367 0.3262804378578449 0.00020039874796586268 0.0008727587314162016 5.360411987931757e-07 1.713657761858429 0.0010525144325938167 1.1329409903428862 0.0012376285844569398']
['59866.28708523987 2.8464993424960103 0.000651100433256335 0.3264451929286256 0.0002004297283603249 0.0008731994303055161 5.361240674136395e-07 1.7145230721041262 0.0010526771447496057 1.131976270391884 0.0012377644950735862']
['59866.287116777836 2.846051572002962 0.0006510242971350638 0.32659241061230604 0.0002004384410249886 0.0008735932189117057 5.361473726850468e-07 1.7152962742242965 0.0010527229045430076 1.1307552977786655 0.0012377633655952457']
['59866.2871483158 2.8410090934433176 0.0006506587214233767 0.3256556195884992 0.00020031011671982414 0.0008710874219019077 5.358041214667987e-07 1.7103761533009412 0.0010520489323520175 1.1306329401423765 0.001236997868966363']
['59866.28717985376 2.842465064942089 0.0006507569969939418 0.32589948363788745 0.0002003518866602588 0.0008717397272616144 5.359158507523926e-07 1.7116569518796612 0.0010522683122912754 1.1308081130624277 0.001237236141643503']
['59866.287211391726 2.839725967928082 0.0006505210981630239 0.3250912959235427 0.00020019742971839742 0.0008695779277711252 5.355026980500043e-07 1.7074122685060016 0.0010514570888571293 1.1323136994220806 0.0012364221402349344']
['59866.287242929684 2.8470650706202534 0.0006511244832461547 0.3263627957097571 0.00020041260367203748 0.0008729790282100548 5.360782610474235e-07 1.7140903136016656 0.0010525872041598607 1.1329747570185877 0.0012377006564770192']
['59866.28727446765 2.8463029884421918 0.0006511112067325744 0.3262056636452031 0.00020038751928731037 0.0008725587198942227 5.360111635041674e-07 1.7132650401533778 0.0010524554584417562 1.133037948288814 0.001237581631867812']
['59866.287306005615 2.840145540269882 0.000650583578004922 0.3255445184516506 0.0002003000162479433 0.0008707902404714442 5.357771039873467e-07 1.7097926389267366 0.0010519958836551645 1.1303529013431453 0.0012369132270281117']
['59866.287337543574 2.840644493855115 0.0006506423960132468 0.32556463407496206 0.00020029197400382213 0.0008708440472089802 5.357555920057427e-07 1.7098982882088345 0.0010519536449780575 1.1307462056462807 0.0012369082418160532']
['59866.28736908154 2.8473077126040427 0.0006511901517023075 0.3262895034207399 0.00020036827929629275 0.0008727829806455573 5.359596989718061e-07 1.7137053751089284 0.0010523544080687645 1.1336023374951143 0.001237537237361298']
['59866.287400619505 2.8472339883235396 0.0006511662470690727 0.32669287986913365 0.00020050070646265373 0.0008738619614134347 5.363139248226633e-07 1.7158239488925087 0.0010530499289004925 1.131410039431031 0.0012381161634028338']
['59866.28743215746 2.844164014714898 0.0006509006011145068 0.32570317036305635 0.00020030263482338252 0.0008712146141845736 5.357841083440696e-07 1.7106258947639514 0.0010520096366774293 1.1335381199509464 0.0012370916975686982']
['59866.28746369543 2.8434338181460124 0.0006508668423958174 0.3254229624234897 0.00020023024907586185 0.0008704650935345631 5.355904856629382e-07 1.7091542144090848 0.0010516294594320474 1.1342796037369276 0.001236750648463805']
['59866.28749523339 2.8443720002635784 0.0006509352106308376 0.32558065017382354 0.00020028768463760933 0.0008708868882392802 5.357441184959025e-07 1.7099824063751237 0.0010519311167941669 1.1343895938884547 0.001237043137048517']
['59866.28752677135 2.8483768916071015 0.0006512503443780699 0.326441865113978 0.0002004180151225407 0.000873190528823989 5.360927359902284e-07 1.714505594086019 0.0010526156256435962 1.1338712975210825 0.0012377910431093022']
['59866.28755830932 2.8428262004253124 0.0006507644329568951 0.32585451235894547 0.0002003236828337424 0.0008716194348021055 5.358404090985406e-07 1.711420758187739 0.0010521201829503278 1.1314054422375734 0.0012371140717707242']
['59866.28758984728 2.8406447020066885 0.000650611766497873 0.32560289519455055 0.0002003142182342265 0.0008709463908444547 5.358150924969046e-07 1.7100992394671772 0.001052070473919257 1.1305454625395113 0.0012369914926134993']
['59866.28762138524 2.8401906550315656 0.0006505580436580659 0.3257168293284912 0.0002003170737337598 0.0008712511501823295 5.358227305954882e-07 1.71069763302779 0.0010520854712907555 1.1294930220037755 0.0012369759929235899']
['59866.28765292321 2.8470137695204416 0.0006511290960276145 0.32610934145534964 0.00020035271516537586 0.0008723010702699435 5.359180668983548e-07 1.7127591462991054 0.0010522726636836967 1.1342546232213362 0.0012374355976897224']
['59866.28768446117 2.8399619800934115 0.0006505735044044734 0.3252390036522813 0.0002002432113328887 0.0008699730271856063 5.356251580541895e-07 1.708188044392234 0.0010516975385130708 1.1317739357011776 0.001236654194650861']
['59866.28771599913 2.8415580576369166 0.000650700910009747 0.32557531987730826 0.0002003135918655714 0.000870872630373086 5.358134170403053e-07 1.7099544111203167 0.001052067184167917 1.1316036465166 0.0012370355832758099']
['59866.28774753709 2.8407321822411093 0.0006506627703873638 0.32543163265023545 0.00020029282481265969 0.0008704882852899297 5.357578678113247e-07 1.709199751314262 0.001051958113511868 1.1315324309268473 0.0012369227596546227']
['59866.28777907506 2.839958140485898 0.0006505586950966318 0.3252712036022083 0.0002002639526430904 0.0008700591579620465 5.356806384246903e-07 1.7083571617763043 0.0010518064739658108 1.1316009787095935 0.001236739048644549']
['59866.28781061302 2.8461378887737783 0.0006510658356188059 0.32647884367586 0.00020042418674647293 0.0008732894417804924 5.361092443004085e-07 1.7146998092219539 0.0010526480396348369 1.1314380795518244 0.0012377215428589256']
['59866.28784215098 2.846703018581591 0.000651109236611763 0.3264028006482579 0.00020042341523438545 0.0008730860363396428 5.361071806035618e-07 1.7143004235727832 0.001052643987575554 1.132402595008808 0.0012377409270845478']
['59866.28787368895 2.8413315090410944 0.0006506846117761052 0.3253152507736241 0.00020022799402085774 0.000870176978551291 5.355844536772097e-07 1.7085885019623117 0.0010516176156557654 1.1327430070787827 0.0012366446836337985']
['59866.28790522691 2.8462245661567738 0.0006510718371883726 0.32629899727031886 0.0002003931633444601 0.0008728083754873969 5.36026260640209e-07 1.71375523776428 0.0010524851015990553 1.1324693283924938 0.001237586128828138']
['59866.28793676487 2.8404638948217196 0.000650577228769505 0.32516692607662856 0.00020020479841129636 0.0008697802288250817 5.355224083676345e-07 1.7078094856965789 0.001051495789975296 1.1326544091251407 0.0012364845841858203']
['59866.28796830284 2.8462222851044165 0.0006510732311221724 0.32611472520356066 0.00020036128568437885 0.000872315471112635 5.359409919481732e-07 1.7127874222876085 0.0010523176769137545 1.133434862816808 0.0012374444817562632']
['59866.287999840795 2.842309871804177 0.0006507985969145358 0.32540957396452685 0.00020026317156036455 0.0008704292811072636 5.356785491276016e-07 1.709083896872515 0.0010518023716405702 1.133225974931662 0.0012368617718785946']
['59866.28803137876 2.840820270332726 0.0006506223585776852 0.3254573287350485 0.00020027238799670614 0.0008705570190532256 5.357032019242648e-07 1.709334709742902 0.0010518507772936249 1.131485560589824 0.0012368102163122655']
['59866.28806291673 2.8464756089218692 0.0006511154844756687 0.3262595253256402 0.0002003835226779627 0.0008727027930485891 5.360004730817593e-07 1.7135479271304632 0.0010524344678464429 1.132927681791406 0.0012375660318686879']
['59866.288094454685 2.84235832349496 0.0006507540881053169 0.3254221700762951 0.00020024899332305704 0.000870462974106451 5.356406241435373e-07 1.709150052921718 0.0010517279061084928 1.133208270573242 0.0012367750287231455']
['59866.28812599265 2.8468146005421344 0.0006511405335811656 0.32614611121792264 0.0002003613348605343 0.0008723994247148143 5.359411234881433e-07 1.712952264800014 0.001052317935191882 1.1338623357421205 0.0012374801134559176']
['59866.28815753062 2.8443876685722116 0.0006509282123657036 0.32606292897874783 0.0002003770833069626 0.0008721769227897366 5.359832485821783e-07 1.7125153832917428 0.001052400647620602 1.1318722852804688 0.0012374387503088276']
['59866.288189068575 2.8419992953333706 0.0006507104819425468 0.32551690082659984 0.00020027196949924745 0.0008707163668320611 5.357020824967148e-07 1.7096475883749993 0.0010518485793027702 1.1323517069583713 0.0012368547065404075']
['59866.28822060654 2.8472658066888052 0.0006511547403512497 0.32669326250847164 0.0002004641546413618 0.0008738629849250661 5.362161533430394e-07 1.7158259585528974 0.0010528579550491692 1.1314398481359078 0.0012379468362543773']
['59866.2882521445 2.8471771835312043 0.000651168301798531 0.3264170612637902 0.0002004169708494315 0.0008731241816749958 5.360899426922911e-07 1.7143753217636042 0.0010526101410159219 1.1328018617676001 0.0012377432149831165']
['59866.288283682465 2.8467389385572215 0.0006511130855770676 0.32650232027483655 0.0002004453475250687 0.0008733522387010655 5.361658466955882e-07 1.7148231106871668 0.0010527591781778819 1.1319158278700547 0.0012378409176656987']
['59866.28831522043 2.8429693972544534 0.0006508551979070462 0.3251962293347099 0.00020018744143914847 0.0008698586113187344 5.354759806715934e-07 1.707963389362972 0.0010514046294072925 1.1350060078914814 0.0012365533483767314']
['59866.28834675839 2.840146435613698 0.0006505937731662087 0.3250270985219831 0.00020018308518592916 0.0008694062078754636 5.354643282475058e-07 1.7070750972793232 0.0010513817499260985 1.1330713383343747 0.0012363963125795504']
['59866.288378296354 2.846697938702755 0.0006511317444594479 0.3263250845589364 0.00020039251309422542 0.0008728781556711842 5.360245213034175e-07 1.71389225083475 0.0010524816864192514 1.1328056878680048 0.0012376147417070933']
['59866.28840983432 2.840607539353548 0.0006505920726085765 0.32559474285305173 0.00020028962632899754 0.0008709245843663487 5.357493122737578e-07 1.7100564225475408 0.0010519413147531385 1.1305511168060072 0.0012368712845828723']
['59866.28844137228 2.848078544351356 0.0006512274576615569 0.326606488695339 0.00020045439647790137 0.0008736308759958056 5.361900514951365e-07 1.715370213736024 0.0010528067041906586 1.132708330615332 0.0012379415002338084']
['59866.288472910244 2.8403967484973265 0.0006505675576505419 0.3252874877525698 0.00020025051350862857 0.0008701027159960648 5.356446904468673e-07 1.708442687776102 0.0010517358902764108 1.1319540607212244 0.0012366836822578786']
['59866.2885044482 2.8411202737427894 0.0006506617445859474 0.3254181975657284 0.00020024452871598237 0.0008704523481452212 5.356286818866484e-07 1.7091291888956324 0.0010517044575419244 1.131991084847157 0.0012367065019159484']
['59866.28853598617 2.8457512932325884 0.0006510520558787403 0.3262901325943897 0.00020039516493072573 0.0008727846636051611 5.360316146292544e-07 1.713708679592383 0.0010524956141319628 1.1320426136402053 0.001237584662651793']
['59866.288567524134 2.841666591121006 0.0006506669723471008 0.3254995504507139 0.0002002649143761683 0.000870669956780183 5.356832109385271e-07 1.7095564624512285 0.0010518115250849178 1.1321101286697774 0.0012368003044973767']
['59866.28859906209 2.8439535214698637 0.0006509308799964172 0.32560042609219586 0.00020030312158581426 0.0008709397863092489 5.357854103717523e-07 1.7100862714926255 0.0010520121932028061 1.1338672499772382 0.0012371098032027265']
['59866.28863060006 2.843699429127288 0.0006508487127178587 0.3259651646423256 0.00020033879872390556 0.0008719154156065484 5.358808421849053e-07 1.7120019151382648 0.001052199573129756 1.131697513989023 0.0012372259246156033']
['59866.288662138024 2.8439313719698687 0.0006509293577045186 0.32563719942571845 0.000200313265621093 0.0008710381503059562 5.358125443777609e-07 1.7102794087485214 0.001052065470699018 1.1336519632213473 0.0012371543086287836']
['59866.28869367598 2.8414444657925513 0.000650666385335945 0.32521574699288014 0.0002002047534172056 0.0008699108185754635 5.355222880141563e-07 1.7080658980718497 0.0010514955536617943 1.1333785677207016 0.0012365312953486732']
['59866.28872521395 2.8436434957492915 0.0006508642218133451 0.3257306186403318 0.00020032149604641664 0.000871288034840166 5.358345597201812e-07 1.710770055884096 0.0010521086977227766 1.1328734398651956 0.001237156799706734']
['59866.28875675191 2.8464588781803934 0.0006510879504127742 0.32622480473124393 0.00020036564524151634 0.0008726099198683328 5.359526532098223e-07 1.7133655710674578 0.0010523405737474598 1.1330933071129357 0.0012374716975865913']
['59866.28878828987 2.844188568657234 0.0006508925724145762 0.3257797356520052 0.00020033157936464167 0.0008714194166081949 5.358615313157826e-07 1.7110280233823802 0.0010521616563268998 1.1331605452748539 0.0012372167521776567']
['59866.28881982784 2.841688961741165 0.0006506972450940508 0.3255989167216198 0.00020029443475032561 0.0008709357489346583 5.357621741901079e-07 1.7100783441261544 0.0010519665690668363 1.1316106176150105 0.001236948085898207']
['59866.288851365796 2.840895064781652 0.0006506430392582562 0.32549571638640273 0.0002002818840112053 0.0008706597011451031 5.35728602556991e-07 1.709536325558838 0.0010519006513193556 1.1313587392228142 0.0012368635109749602']
['59866.28888290376 2.8465412959674152 0.000651033465408133 0.3267161478306403 0.00020046044942171289 0.0008739242002552744 5.362062423510669e-07 1.7159461545726908 0.0010528384948619376 1.1305951413947244 0.0012378664989991742']
['59866.28891444173 2.846961766497256 0.0006511158341023155 0.32654808719758543 0.0002004337011967993 0.0008734746594067057 5.361346942466311e-07 1.715063483180596 0.0010526980104873915 1.1318982833166602 0.0012377903419815758']
['59866.288945979686 2.841699635024887 0.0006507388135567905 0.325531619566758 0.00020028116522097293 0.0008707557375926034 5.357266798844107e-07 1.7097248926825528 0.0010518968761605723 1.1319747423423343 0.001236910684546653']
['59866.28897751765 2.8437933349038333 0.0006509050168964199 0.3257035500487997 0.00020031412490190375 0.0008712156297957143 5.358148428447952e-07 1.7106278889117632 0.0010520699837284864 1.1331654459920701 0.001237145339757373']
['59866.28900905561 2.8459174384036388 0.0006510286063073217 0.3263152781735217 0.00020039069447994151 0.0008728519248356781 5.360196567411845e-07 1.713840746709673 0.0010524721348736425 1.1320766916939657 0.0012375523588583784']
['59866.289040593576 2.8411327413174545 0.0006506942612092598 0.3254993087213966 0.00020027597666467522 0.0008706693101849605 5.357128011552966e-07 1.709555192864478 0.0010518696253396808 1.1315775484529764 0.0012368640710615313']
['59866.28907213154 2.8466487398268376 0.0006510744350568985 0.3264203942069555 0.00020041614454163823 0.0008731330968746563 5.360877324238909e-07 1.7143928267172035 0.0010526058011640664 1.1322559131096341 0.001237690144029961']
['59866.2891036695 2.847632537019542 0.0006511690498006337 0.3268075627795891 0.00020048672617275639 0.000874168723633387 5.362765293227807e-07 1.7164262751028843 0.0010529765030081743 1.1312062619166579 0.0012380551875040078']
['59866.289135207466 2.8458163996125383 0.0006510597559603458 0.32600692789819874 0.00020033240789318752 0.000872027127011789 5.358637475244139e-07 1.7122212599695312 0.0010521660078423715 1.133595139643007 0.0012373084150243618']
['59866.28916674543 2.8436184860042992 0.0006508988936452396 0.32558817708819165 0.00020029942321794005 0.0008709070217792452 5.357755177074069e-07 1.7100219384884017 0.0010519927690017862 1.1335965475158976 0.0012370764551072188']
['59866.28919828339 2.841007056922239 0.0006507091511121126 0.3253014954877337 0.00020025282831092413 0.0008701401849085497 5.35650882249012e-07 1.7085162578137274 0.0010517480478514922 1.1324907991085118 0.001236768513304115']
['59866.289229821356 2.8443319836471765 0.0006509668018343656 0.32554152212458853 0.0002002578069395478 0.0008707822256771072 5.356641994482605e-07 1.7097769019148559 0.0010517741961110706 1.1345550817323207 0.0012369263263006212']
['59866.289261359314 2.8402716985552687 0.0006506005549263095 0.32543799802013534 0.0002002622652932918 0.0008705053118459663 5.356761249782841e-07 1.7092331828788623 0.0010517976118345157 1.1310385156764065 0.0012367535317641962']
['59866.28929289728 2.8465518789963347 0.0006510770608358273 0.326151276597399 0.00020036861911369792 0.0008724132414488749 5.359606079402058e-07 1.7129793938939024 0.0010523561928240438 1.1335724851024322 0.0012374792506227065']
['59866.289324435245 2.840604787385365 0.0006505683534611548 0.32535297783101597 0.0002002396463102655 0.0008702778936382191 5.356156220714548e-07 1.7087866482721428 0.0010516788146547559 1.131818139113222 0.0012366355613998776']
['59866.289355973204 2.8468654572941574 0.0006511458380480797 0.32647014792516865 0.00020041855657349972 0.000873266181751813 5.360941843027758e-07 1.7146541382624405 0.001052618469398633 1.132211319031717 0.0012377384798601266']
['59866.28938751117 2.8459095019712706 0.0006510392831581007 0.326234920305862 0.00020038759391883935 0.0008726369777456888 5.360113631340287e-07 1.71341869908541 0.0010524558504140722 1.1324908028858607 0.0012375441266014805']
['59866.289419049135 2.841290463064155 0.0006506660690118334 0.32539998132608433 0.00020025705036206116 0.0008704036220177607 5.356621756995742e-07 1.7090335153680902 0.001051770222489817 1.1322569476960647 0.001236764704492973']
['59866.28945058709 2.846992455805717 0.0006511920061890508 0.32624118075449027 0.00020040070333169455 0.0008726537236506494 5.360464291484311e-07 1.713451579592911 0.0010525247023723454 1.1335408762128059 0.001237683028092619']
['59866.28948212506 2.841854356088083 0.000650704492217393 0.32543730271568944 0.0002002629826609967 0.0008705034519948819 5.356780438457841e-07 1.7092295310697976 0.0010518013795220416 1.1326248250182855 0.0012368114157608528']
['59866.28951366302 2.8417491756362834 0.0006507131678307053 0.32577365267869973 0.00020031415499407703 0.0008714031454271821 5.358149233375367e-07 1.710996074993171 0.001052070141775615 1.1307531006431124 0.0012370445464913679']
['59866.28954520098 2.8407865591948953 0.0006505903838320076 0.32548786716984096 0.00020026757612463797 0.0008706387054877047 5.356903307776231e-07 1.7094951006819379 0.001051825504856292 1.1312914585129574 0.001236771903060897']
['59866.28957673895 2.8417987376556333 0.0006506944325847473 0.32555118103569136 0.00020026813496247655 0.0008708080620375593 5.356918255978651e-07 1.7098276314899756 0.0010518284399289736 1.1319711061656577 0.0012368291359926011']
['59866.28960827691 2.8443494576921133 0.0006509586542931372 0.3258088238125977 0.00020032760210282738 0.0008714972237433839 5.358508926455689e-07 1.711180797335072 0.0010521407673467827 1.1331686603570414 0.0012372337547578505']
['59866.28963981487 2.8427206263165834 0.0006507821191085003 0.3255426347191374 0.00020026328582184384 0.0008707852017262183 5.356788547625467e-07 1.709782745373621 0.0010518029717533814 1.1329378809429624 0.0012368536121710584']
['59866.28967135284 2.84387240817607 0.0006508655761271607 0.32590050745307086 0.00020033509747708483 0.0008717424658371985 5.358709418197436e-07 1.7116623290602462 0.0010521801338082188 1.1322100791158238 0.0012372182637546303']
['59866.2897028908 2.846834686859303 0.0006511752008129929 0.326327218268707 0.00020043037740452902 0.0008728838630738247 5.361258035244525e-07 1.7139034572936291 0.0010526805535952155 1.132931229565674 0.0012378067256528262']
['59866.28973442876 2.8432400722872995 0.0006508153516456085 0.3258896634285229 0.0002003456531253556 0.0008717134594487981 5.358991768382281e-07 1.711605375149805 0.0010522355731373719 1.1316346971374944 0.0012372389919952128']
['59866.28976596672 2.843153492012492 0.000650851053397079 0.3256311277181889 0.00020026459595684856 0.0008710219092594632 5.356823592072882e-07 1.7102475195283031 0.0010518098527145408 1.132905972484189 0.0012368957352887394']
['59866.28979750469 2.846049184843311 0.0006510786366210142 0.32619566285512136 0.00020036642495988973 0.000872531969050923 5.359547388574416e-07 1.7132125149953854 0.001052344668906984 1.1328366698479257 0.0012374702797405797']
['59866.28982904265 2.8475463078769927 0.0006512097581516165 0.3261129558775814 0.0002003823960959278 0.000872310738390357 5.359974596178996e-07 1.712778129609146 0.0010524285509239907 1.1347681782678467 0.0012376106026985457']
['59866.28986058061 2.846451082587409 0.0006510766581145566 0.3262778662557515 0.00020039364304659044 0.000872751852707213 5.360275437824823e-07 1.7136442555449134 0.001052487621043017 1.1328068270424956 0.0012375908076542944']
['59866.28989211858 2.840820964260452 0.0006506427030334371 0.32539207601905573 0.0002002942279289254 0.0008703824763254874 5.357616209691301e-07 1.708991995898402 0.0010519654828199867 1.13182896836205 0.0012369184710623999']
['59866.28992365654 2.8456334906017244 0.0006510409769608416 0.326441839119593 0.0002004192252621088 0.0008731904592923106 5.360959729598769e-07 1.7145054575608878 0.0010526219814186387 1.1311280330408366 0.0012376863049447658']
['59866.2899551945 2.8469780077034192 0.0006511214209449418 0.3264221756548964 0.00020042280848783567 0.0008731378620216421 5.361055576336021e-07 1.7144021830614307 0.00105264080088149 1.1325758246419886 0.0012377446265259182']
['59866.28998673247 2.846707721825159 0.0006511154369901752 0.32636337512576424 0.00020041392048109118 0.0008729805780742841 5.360817833443984e-07 1.7140933567529635 0.0010525941201737982 1.1326143650721956 0.0012377017791501146']
['59866.290018270425 2.843880662500932 0.0006509023810301981 0.32587573300741157 0.00020032419873446792 0.0008716761973415844 5.358417890674584e-07 1.7115322111733802 0.001052122892512962 1.1323484513275517 0.0012371889470006684']
['59866.29004980839 2.8435740860294523 0.0006509023402112539 0.32541007901486685 0.00020023600843242166 0.0008704306320527782 5.356058912102579e-07 1.7090865494478302 0.0010516597081534752 1.134487536581622 0.0012367950510274285']
['59866.29008134636 2.8428020525213196 0.0006507807374166565 0.32580874530725507 0.000200332149686622 0.0008714970137515631 5.358630568546451e-07 1.711180385017096 0.0010521646517154518 1.1316216675042237 0.0012371604675675929']
['59866.290112884315 2.8414924479783767 0.0006507389318741555 0.325215103776541 0.000200200747649777 0.0008699090980534491 5.355115730950448e-07 1.7080625198347743 0.0010514745149673163 1.1334299281436024 0.001236551581246197']
['59866.29014442228 2.841422642494523 0.0006506930506064188 0.32570809117972244 0.00020033093174519023 0.0008712277767441779 5.35859799016002e-07 1.7106517393892986 0.0010521582549642345 1.1307709031052244 0.0012371089036931513']
['59866.29017596025 2.8401422193310566 0.0006506125205472643 0.32532039767757415 0.00020026418094419172 0.0008701907458656652 5.356812491011406e-07 1.7086155340208729 0.001051807673026217 1.1315266853101837 0.001236768382895395']
['59866.290207498205 2.841085302654907 0.0006506777218073654 0.32541157914382124 0.00020027968735574078 0.0008704346447072045 5.357227267826137e-07 1.7090944282763723 0.0010518891142633445 1.1319908743785347 0.001236871944205279']
['59866.29023903617 2.8444453975083124 0.0006509641981552936 0.3260404232242885 0.0002003568141297378 0.0008721167227549431 5.359290311074264e-07 1.7123971807998348 0.0010522941918578667 1.1320482167084776 0.0012373671457969802']
['59866.29027057413 2.840599144999401 0.0006506153247970315 0.3254636601312048 0.00020026515845814592 0.000870573954733813 5.356838638268172e-07 1.709367962873975 0.0010518128070280775 1.131231182125426 0.0012367742242984491']
['59866.290302112095 2.842794711965433 0.000650827811572006 0.3257793640777983 0.00020032329879856589 0.0008714184226943839 5.358393818532186e-07 1.7110260718371761 0.0010521181659588546 1.1317686401282567 0.001237145696939625']
['59866.29033365006 2.846383966596865 0.0006510816465471977 0.3268489081204611 0.00020049715352329214 0.0008742793171690775 5.363044211611188e-07 1.7166434250024216 0.0010530312685046858 1.1297405415944435 0.0012380557995983856']
['59866.29036518802 2.8434438243672004 0.0006508165091947409 0.3259406811812562 0.00020034154498765511 0.0008718499254577552 5.358881880916411e-07 1.711873325531808 0.001052213996783903 1.1315704988353925 0.0012372212508958871']
['59866.290396725984 2.846887605677086 0.0006511146554460022 0.32619110656361433 0.000200364128393568 0.000872519781549822 5.359485958342106e-07 1.7131885848929325 0.0010523326071090757 1.1336990207841535 0.0012374789737694739']
['59866.29042826395 2.8434093569032983 0.000650839493886643 0.3257213779773735 0.00020030774244119494 0.0008712633172403801 5.357977705730153e-07 1.7107215229904071 0.001052036462401234 1.1326878339128912 0.0012370823598387962']
['59866.29045980191 2.8417726163384747 0.0006507964845181059 0.3254621348882663 0.00020029644018039288 0.0008705698749026687 5.357675384608344e-07 1.7093599521442557 0.0010519771017877778 1.132412664194219 0.0012370092509544695']
['59866.290491339874 2.84153345170329 0.000650718563552341 0.32535342723449867 0.0002002469243365035 0.000870279095735458 5.356350898672821e-07 1.708789008584552 0.0010517170395824764 1.132744443118738 0.0012367470963377072']
['59866.29052287783 2.8420631696435588 0.0006507095665454863 0.325541076634632 0.00020027730762039902 0.0008707810340480537 5.357163612928172e-07 1.7097745621566807 0.0010518766156533564 1.132288607486878 0.001236878067778782']
['59866.2905544158 2.846913334126752 0.0006511755571298099 0.32644389105838595 0.00020045566164967292 0.0008731959479679715 5.361934356689399e-07 1.7145162345503466 0.0010528133490003832 1.1323970995764052 0.0012379198496012256']
['59866.290585953764 2.846204010880257 0.0006510941419936148 0.3265589103167231 0.00020045172072244137 0.0008735036098757887 5.361828941891203e-07 1.715120327293714 0.0010527926508531586 1.1310836835865428 0.0012378594215131306']
['59866.29061749172 2.841706521928242 0.0006507635522641345 0.32550056799797894 0.0002002650067052501 0.0008706726785898815 5.356834579070945e-07 1.7095618067120744 0.0010518120100065657 1.1321447152161674 0.00123685152922632']
['59866.29064902969 2.840858069078604 0.000650658550620824 0.32525423504461476 0.00020023906670914567 0.000870013769225607 5.356140717120726e-07 1.708268041200708 0.0010516757705312273 1.132590027877896 0.001236680425905756']
['59866.290680567654 2.8436592140549024 0.0006508793510448025 0.3260540720038373 0.00020035276316246074 0.0008721532315067474 5.359181952844609e-07 1.7124688655663725 0.0010522729157692267 1.13119034848853 0.0012373044164141552']
['59866.29071210561 2.8427173063675983 0.0006508052530562956 0.32560941495185075 0.0002002809523349453 0.0008709638303671789 5.357261104413248e-07 1.7101334818899725 0.0010518957580616876 1.1325838244776258 0.0012369446888336768']
['59866.29074364358 2.846972610390831 0.000651132120497751 0.32607286381059214 0.00020034147331589406 0.0008722034972031283 5.35887996378783e-07 1.712567562030421 0.0010522136203565864 1.1344050483604098 0.001237386981185681']
['59866.29077518154 2.8410187066065262 0.0006506738855922823 0.3249505250153184 0.0002001772017149084 0.000869201383470496 5.354485907097665e-07 1.7066729255006219 0.0010513508493430065 1.1343457811059043 0.001236412194135119']
['59866.2908067195 2.8471001292170413 0.000651104124469731 0.3265869305933171 0.0002004281342929254 0.0008735785605569103 5.361198034858035e-07 1.7152674926119598 0.0010526687725468773 1.1318326366050815 0.0012377593165057753']
['59866.29083825747 2.841812615308699 0.000650731617690398 0.3255311347480235 0.0002002649967390369 0.0008707544407640638 5.3568343124874e-07 1.7097223463656697 0.0010518119576630092 1.1320902689430294 0.0012368346827870142']
['59866.290869795426 2.846701177853946 0.0006511130248779482 0.32655411053609923 0.0002004233448749227 0.0008734907710722248 5.361069924009351e-07 1.715095118361866 0.0010526436180405606 1.1316060594920803 0.0012377426056200997']
['59866.29090133339 2.8440581656348303 0.0006509224009964991 0.32602350622233955 0.00020036496822855408 0.0008720714719233049 5.359508422861335e-07 1.7123083309996827 0.0010523370180071116 1.1317498346351476 0.0012373815788135636']
['59866.29093287136 2.8432478297381163 0.0006508316481815612 0.32565972258083675 0.00020029426732258893 0.0008710983968853026 5.357617263421767e-07 1.7103977026304453 0.0010519656897194799 1.132850127107671 0.0012370180461988857']
['59866.290964409316 2.8470369655237615 0.0006511426096727031 0.32655964750109884 0.00020045997367626033 0.0008735055817503662 5.362049697924043e-07 1.7151241990603932 0.0010528359961988463 1.1319127664633684 0.0012379217798485474']
['59866.29099594728 2.8430520489655198 0.0006508186354250021 0.32566979889981607 0.0002003084989507594 0.0008711253497588106 5.357997941400184e-07 1.710450624473824 0.0010520404356657532 1.1326014244916958 0.0012370747651182']
['59866.29102748524 2.8439865382630476 0.0006509240229194568 0.3255899455848942 0.0002002537731133731 0.0008709117522833133 5.356534094755667e-07 1.7100312268114193 0.0010517530100492287 1.1339553114516283 0.0012368857981888476']
['59866.291059023206 2.8432068118289955 0.0006508846744120778 0.3256889938112254 0.0002003240752461598 0.0008711766937089451 5.358414587519181e-07 1.710551438084167 0.001052122243939915 1.1326553737448284 0.0012371790798335052']
['59866.29109056117 2.84068869443829 0.0006506135196992051 0.3256414932726331 0.00020030837052807906 0.000871049635801105 5.35799450625659e-07 1.71030196046551 0.001052039761176886 1.13038673397278 0.0012369662934423504']
['59866.29112209913 2.8402116373200785 0.0006505773022878681 0.32534816280328516 0.00020025288232484903 0.0008702650140505807 5.356510267294011e-07 1.7087613592609516 0.0010517483315380727 1.131450278059127 0.0012366993891586102']
['59866.291153637096 2.846354983135524 0.0006510701669157941 0.3262296408954249 0.00020037629656921962 0.0008726228559932908 5.359811441586368e-07 1.7133909710894164 0.001052396515594641 1.1329640120461075 0.0012375099144182648']
['59866.29118517506 2.846892475507745 0.0006511263187775281 0.32648249605934526 0.00020043882182499287 0.0008732992114424377 5.361483912766939e-07 1.714718991908326 0.0010527249045430298 1.132173483599419 0.0012378187297217254']
['59866.29121671302 2.8420155726250993 0.0006507119203829314 0.3257628000469446 0.00020032111858402305 0.0008713741160155957 5.358335500562186e-07 1.71093907587681 0.001052106715252222 1.1310764967482894 0.0012370749951426804']
['59866.291248250986 2.841925382376967 0.0006507438705417475 0.3254910742030359 0.00020028169688404528 0.000870647283894186 5.357281020156043e-07 1.7095119443436761 0.0010518996685086413 1.1324134380332906 0.0012369157197061745']
['59866.291279788944 2.8474315737586977 0.0006511747270173235 0.3266504137702192 0.000200463062688854 0.0008737483699923245 5.362132325087665e-07 1.7156009126587144 0.0010528522200044853 1.1318306610999833 0.0012379524717348637']
['59866.29131132691 2.846856580795973 0.0006511662972506064 0.3263602134174841 0.00020043164319737215 0.0008729721209061933 5.361291893595435e-07 1.7140767511422486 0.0010526872016668706 1.1327798296537244 0.0012378076955764541']
['59866.291342864875 2.8478471353590296 0.000651223563453198 0.32679035974880566 0.00020048183133477188 0.0008741227077109441 5.362634362528501e-07 1.71633592305045 0.0010529507948254828 1.1315112123085795 0.0012380619959922433']
['59866.291374402834 2.844629304178805 0.0006509689115534534 0.32590891920616216 0.0002003432818095098 0.0008717649662083674 5.35892833869514e-07 1.7117065084357257 0.0010522231187474254 1.1329227957430794 0.0012373091834443186']
['59866.2914059408 2.8457150370719893 0.0006510290977908104 0.32623251768730055 0.0002003919810409022 0.0008726305510461859 5.360230981283522e-07 1.713406080290444 0.001052478892021545 1.1323089567815452 0.0012375583640060034']
['59866.291437478765 2.8422506747301 0.0006507888440576225 0.32571401356921986 0.00020031544810350787 0.0008712436183838995 5.358183822410304e-07 1.710682844376155 0.001052076933316743 1.1315678303539451 0.001237090131383732']
['59866.29146901672 2.8416561443035766 0.0006507524146975222 0.3254820991706382 0.00020027033693252076 0.0008706232768224128 5.356977155880681e-07 1.709464806568478 0.0010518400048976932 1.1321913377350985 0.0012368694761929551']
['59866.29150055469 2.8442246934167237 0.0006509364500208131 0.32585836040999305 0.00020032926412974454 0.0008716297278499289 5.358553383564835e-07 1.7114409685398797 0.0010521494964797508 1.132783724876844 0.0012372294956507833']
['59866.29153209265 2.84743362535044 0.0006511886343697685 0.32656266284989555 0.0002004543511533275 0.0008735136474254274 5.361899302576579e-07 1.7151400359763422 0.0010528064661414261 1.1322935893740977 0.0012379208749680095']
['59866.29156363061 2.8421491750809587 0.0006507611899424138 0.32574731040440735 0.0002003214623291571 0.0008713326831890995 5.358344695307943e-07 1.7108577227122237 0.0010521085206363296 1.131291452368735 0.0012371024474678047']
['59866.29159516858 2.846733480962966 0.0006511396777544828 0.32653995205230296 0.00020044157162477975 0.0008734528989262943 5.361557466418804e-07 1.7150207565772215 0.0010527393467688012 1.1317127243857443 0.0012378380395598667']
['59866.29162670654 2.8437262806055066 0.0006508661211932274 0.32601675592633855 0.00020037278999498294 0.0008720534157388361 5.359717645179127e-07 1.7122728777643832 0.0010523780987131456 1.1314534028411234 0.001237386912153273']
['59866.2916582445 2.8420683357152368 0.0006507735674948696 0.32554110743388975 0.00020029639798768996 0.0008707811164321565 5.357674256007129e-07 1.7097747239174883 0.0010519768801874473 1.1322936117977485 0.0012369970058973118']
['59866.29168978247 2.846589883921504 0.0006510726285370957 0.3267312196220859 0.0002004828685662974 0.0008739645153831705 5.362662107154453e-07 1.7160253131412075 0.0010529562424700493 1.1305645707802963 0.001237987243951588']
['59866.29172132043 2.846140189023462 0.0006510039778708802 0.3263609642660618 0.00020042255400725098 0.0008729741293307758 5.361048769303588e-07 1.7140806946746945 0.001052639464323797 1.1320594943487674 0.001237681712337869']
['59866.29175285839 2.8422457070483933 0.0006507991557401815 0.32557286496616344 0.0002002791574903065 0.0008708660637975642 5.357213094598736e-07 1.70994151767943 0.001051886331356652 1.1323041893689634 0.0012369334643411863']
['59866.29178439635 2.841292924783793 0.0006506704494376128 0.3252241271808243 0.00020022414922567247 0.0008699332345138727 5.355741693384044e-07 1.708109911663993 0.001051597422403742 1.1331830131197997 0.0012366200599123157']
['59866.29181593432 2.8466931306982817 0.0006510582966247017 0.3264852313335037 0.00020043161997007115 0.000873306527953413 5.361291272294634e-07 1.7147333578440322 0.0010526870796747436 1.1319597728542494 0.0012377507799706685']
['59866.29184747228 2.8464574263610753 0.0006510951181205549 0.3264401452046882 0.00020042881618828962 0.0008731859282850792 5.361216274692973e-07 1.714496560948993 0.0010526723539300926 1.1319608654120823 0.0012377576247267238']
['59866.29187901024 2.844412481562263 0.0006509677050254819 0.326034410904547 0.00020036378459843874 0.0008721006405632404 5.359476762259042e-07 1.712365603490268 0.0010523308014623886 1.1320468780719952 0.0012374001247343626']
['59866.29191054821 2.843931348656569 0.0006509091723136485 0.3259463113640586 0.00020033817198222086 0.0008718649854816798 5.358791657304993e-07 1.7119028958196356 0.0010521962814192274 1.1320284528369333 0.001237254931384187']
['59866.291942086165 2.8471840291217143 0.0006511481678183598 0.3266266844150831 0.0002004610214064171 0.0008736848969811262 5.362077723375047e-07 1.7154762836926634 0.0010528414989832832 1.131707745429051 0.0012379293834603707']
['59866.29197362413 2.8465211307269045 0.0006511567459800297 0.3264749562708342 0.00020043717015179525 0.0008732790434657755 5.361439732606641e-07 1.7146793921787513 0.0010527162297888405 1.1318417385481532 0.0012378273580334748']
['59866.2920051621 2.8434213204642926 0.0006508287470034478 0.3258677115402741 0.0002003339931434506 0.000871654740935773 5.3586798786753e-07 1.7114900816190868 0.0010521743337366105 1.1319312388452059 0.001237193956702084']
['59866.292036700055 2.840605080355166 0.0006506441059120694 0.32545959562067084 0.00020026449866838324 0.0008705630826843553 5.356820989729997e-07 1.709346615654784 0.0010518093417457104 1.131258464700382 0.0012367864180777783']
['59866.29206823802 2.8407186445924557 0.0006506334711457971 0.3251068786413689 0.00020019221630265794 0.0008696196095621982 5.354887528250409e-07 1.7074941105113914 0.0010514297074719432 1.1332245340810643 0.001236457982921282']
['59866.29209977599 2.8459592492219477 0.0006510160750877584 0.3264151710423854 0.00020039542488495884 0.0008731191255728089 5.36032309973812e-07 1.7143653941301753 0.001052496979437809 1.1315938550917723 0.0012375668958680098']
['59866.292131313945 2.843651478698571 0.0006508659611205176 0.3257613132052906 0.000200293020891474 0.0008713701389030105 5.357583922972496e-07 1.7109312668345096 0.0010519591433375735 1.1327202118640614 0.0012370305326049379']
['59866.29216285191 2.841787209500765 0.0006507204732235898 0.32549092186976614 0.00020027909020996811 0.0008706468764220367 5.357211294935135e-07 1.7095111442739819 0.0010518859779935301 1.132276065226783 0.001236891767686946']
['59866.29219438987 2.8478562132044076 0.0006511987910798058 0.32666679186899805 0.00020044515163799288 0.000873792179326427 5.361653227225394e-07 1.715686932085074 0.0010527581493592064 1.1321692811193336 0.001237885126554973']
['59866.292225927835 2.8414726059364965 0.0006506663237813774 0.3254222257254349 0.0002002409700336558 0.0008704631229608322 5.356191628634018e-07 1.7091503451966121 0.0010516857669834864 1.1323222607398844 0.0012366930166289516']
['59866.2922574658 2.844029128336915 0.0006509599018285399 0.32572445599110134 0.00020028911354898608 0.0008712715505361731 5.357479406523537e-07 1.7107376890288937 0.0010519386215808093 1.1332914393080211 0.0012370625115013208']
['59866.29228900376 2.8420382434744473 0.0006507285237733945 0.3257605200739909 0.0002003135981715756 0.0008713680173775169 5.358134339080656e-07 1.710927101228944 0.001052067217287687 1.1311111422455034 0.0012370501369563637']
['59866.292320541725 2.8402590209785337 0.0006505933101255681 0.3254957223556461 0.00020029103514277962 0.000870659717112071 5.357530806716958e-07 1.709536356909906 0.0010519487139851872 1.1307226640686276 0.0012368782284587407']
['59866.29235207969 2.8408961124408085 0.0006506798757670616 0.3252123022743987 0.00020024537943830913 0.0008699016043910284 5.356309574608249e-07 1.7080478060630184 0.0010517089256213716 1.13284830637779 0.0012367198409340323']
['59866.29238361765 2.842859099575903 0.0006507790212278572 0.3257980125507019 0.00020029893300384805 0.0008714683049909171 5.357742064469714e-07 1.7111240154973841 0.0010519901943479416 1.1317350840785187 0.0012370111977967329']
['59866.292415155614 2.8427437439161647 0.0006508156766751935 0.32562057696876506 0.0002002878202533458 0.000870993687344772 5.357444812507733e-07 1.710192105928388 0.00105193182906169 1.1325516379877767 0.00123698084787084']
['59866.29244669357 2.846282512551544 0.0006511062474057225 0.32611470497383455 0.00020036718970029902 0.000872315417000687 5.359567844409091e-07 1.7127873160390472 0.0010523486854007304 1.1334951965124966 0.001237488222600687']
['59866.29247823154 2.8460644423653587 0.0006510381365330496 0.32617402359576597 0.00020036738138147587 0.0008724740867804817 5.359572971637123e-07 1.7130988634231405 0.0010523496921296003 1.1329655789422182 0.0012374532434583903']
['59866.292509769504 2.841551504982565 0.0006507439878275243 0.3252530519692022 0.0002002156997408177 0.000870010604649137 5.355515680395604e-07 1.7082618275693393 0.0010515530448572358 1.1332896774132257 0.0012366210186804173']
['59866.29254130746 2.8466595539425925 0.0006511046846169735 0.32644940658201016 0.00020043306140591496 0.0008732107012931569 5.361329828872733e-07 1.7145452026366081 0.00105269465024115 1.1321143513059844 0.0012377816192594337']
['59866.29257284543 2.847141780737842 0.0006511438536688999 0.32639706828578763 0.00020040406365618932 0.0008730707029980842 5.360554175896703e-07 1.7142703166270359 0.0010525423511354483 1.1328714641108062 0.0012376727027387019']
['59866.292604383394 2.843410835860541 0.000650877672646269 0.32577579958678926 0.000200308742664831 0.0008714088881336496 5.358004460442065e-07 1.7110073507709522 0.0010520417156766335 1.132403485089589 0.0012371069138410221']
['59866.29263592135 2.8414136541836017 0.0006506743112843609 0.32537491503064253 0.0002002302548870395 0.0008703365728610454 5.355905012071004e-07 1.7089018646567362 0.0010516294899529386 1.1325117895268655 0.0012366493615831673']
['59866.29266745932 2.8498135128119504 0.000651527010419887 0.329952129091461 0.00020184388421820945 0.0008825800391361543 5.399067547259872e-07 1.732941854471959 0.0010601044339191674 1.1168716583399914 0.001244310594715706']
['59866.29269899728 2.840521832750126 0.0006506572720108675 0.32518154939353444 0.0002002448470396175 0.0008698193443405434 5.356295333619431e-07 1.7078862888315884 0.0010517061294097558 1.1326355439185376 0.001236705570561835']
['59866.29273053524 2.8460770197785283 0.0006510249733609389 0.3264428777211596 0.00020041318116876747 0.0008731932374195918 5.360798057778302e-07 1.7145109124010485 0.0010525902372309215 1.1315661073774799 0.0012376508891660276']
['59866.29276207321 2.840985956442002 0.0006506611638949704 0.325260209548516 0.0002002159335595613 0.0008700297502647398 5.35552193475003e-07 1.7082994198976682 0.0010515542728968556 1.1326865365443337 0.001236578480747903']
['59866.29279361117 2.84738106382971 0.000651159829321016 0.32643041660124256 0.00020041835653103647 0.0008731599055064614 5.360936492145933e-07 1.7144454653426606 0.0010526174187554438 1.1329355984870493 0.0012377449469049542']
['59866.29282514913 2.843005089367929 0.0006508025835260073 0.3258195274702173 0.00020032358412266463 0.0008715258546680784 5.358401450589446e-07 1.7112370140242505 0.0010521196645097933 1.1317680753436783 0.0012371336997965604']
['59866.2928566871 2.842518310479936 0.0006507711622910764 0.3254576389799127 0.0002002679947819945 0.0008705578489188341 5.356914506328795e-07 1.7093363391802139 0.0010518277036869461 1.1331819712997222 0.001236868879030042']
['59866.292888225056 2.8415080132800945 0.0006506929535980935 0.3255454983011939 0.0002002703056454625 0.0008707928614445249 5.356976318991609e-07 1.7097977851953463 0.0010518398405749082 1.1317102280847482 0.0012368380532967358']
['59866.29291976302 2.8419121139335823 0.0006507430191740523 0.3256140051336323 0.00020029899143149605 0.0008709761085204601 5.35774362733509e-07 1.710157589987565 0.0010519905012158406 1.1317545239460174 0.0012369925188343365']
['59866.29295130098 2.846823164993742 0.0006511601731863839 0.3263968066331865 0.00020041849984294774 0.0008730700031106078 5.360940325557544e-07 1.7142689424011897 0.0010526181714440534 1.1325542225925522 0.0012377457679177675']
['59866.292982838946 2.8465731447199034 0.0006510933152509291 0.32645738902099847 0.00020040559212093035 0.0008732320533036261 5.360595060387271e-07 1.7145871272111266 0.001052550378786399 1.1319860175087768 0.0012376529420834574']
['59866.29301437691 2.8439371176225237 0.0006508450637043059 0.325932363319508 0.00020033366438133355 0.0008718276762340043 5.358671084706219e-07 1.7118296392831303 0.0010521726070448192 1.1321074783393934 0.0012372010717598629']
['59866.29304591487 2.8462388006461166 0.0006511377783304471 0.3261158961551374 0.00020036790689149854 0.000872318603259384 5.359587028362796e-07 1.712793572243369 0.001052352452161232 1.1334452284027476 0.0012375080161109537']
['59866.293077452836 2.842347479605302 0.000650768368177517 0.32585013026448045 0.00020030992742029426 0.0008716077132559676 5.358036151145987e-07 1.7113977429857168 0.0010520479381317977 1.130949736619585 0.0012370547009521427']
['59866.2931089908 2.841969208339531 0.0006507690871300827 0.32540789790017755 0.00020025496853925373 0.0008704247978480008 5.356566070879701e-07 1.7090750940135377 0.001051759288546501 1.1328941143259934 0.0012368096077440386']
['59866.29314052876 2.8463626025351907 0.0006510773312466449 0.3265954468862925 0.000200448720896211 0.0008736013405589918 5.361748700349525e-07 1.7153122210414524 0.0010527768954632932 1.1310503814937383 0.0012378371794725602']
['59866.293172066726 2.843725803452858 0.0006508904034510523 0.32549647211817423 0.00020026353203230193 0.0008706617226316087 5.356795133442517e-07 1.70954029473831 0.0010518042648755355 1.134185508714548 0.001236911690022792']
['59866.293203604684 2.846139196047126 0.0006510532726221095 0.3267917555261093 0.00020048834356412593 0.000874126441237958 5.362808556392744e-07 1.7163432538135992 0.0010529849977107455 1.1297959422335269 0.0012380015222914138']
['59866.29323514265 2.8470880816878896 0.0006511550746690504 0.3263848549794613 0.00020040465452446 0.000873038033954835 5.3605699808725e-07 1.7142061711106162 0.0010525454544351891 1.1328819105772734 0.0012376812452806398']
['59866.293266680615 2.8433542518976154 0.0006508886404030865 0.3256478245774195 0.00020029304886575903 0.0008710665712372893 5.357584671249091e-07 1.7103352131166991 0.0010519592902613396 1.1330190387809163 0.0012370425904442094']
['59866.293298218574 2.8471048171954023 0.0006511780240185359 0.3263771881347841 0.00020041235142529418 0.0008730175261190653 5.360775863194223e-07 1.7141659040692443 0.0010525858793345283 1.132938913126158 0.00123772769716894']
['59866.29332975654 2.845214566722656 0.0006509763521396618 0.3259576641314949 0.00020033675765649916 0.0008718953526926926 5.358753825888228e-07 1.711962521699028 0.0010521888532379158 1.1332520450236279 0.0012372839584845433']
['59866.293361294505 2.8432526531308753 0.000650857130462739 0.3257684293947346 0.00020029939393882614 0.0008713891738059683 5.357754393894959e-07 1.7109686417790684 0.0010519926152249273 1.132284011351807 0.0012370543507712072']
['59866.293392832464 2.8440980107995775 0.0006508908506965798 0.3256657873935855 0.00020028356310016992 0.0008711146194891326 5.357330939067155e-07 1.7104295556385793 0.0010519094700639177 1.1336684551609981 0.0012370013875217236']
['59866.29342437043 2.846043573340856 0.0006510997130505343 0.32620141743146586 0.00020036761580093652 0.0008725473618117739 5.359579242059967e-07 1.7132427386106401 0.0010523509233242466 1.1328008347302159 0.0012374866876681471']
['59866.29345590839 2.840437050967866 0.0006506498587772013 0.32491767553098894 0.00020018711062832738 0.0008691135152720246 5.354750957946622e-07 1.7065003966963708 0.001051402891955501 1.1339366542714953 0.0012364438037934368']
['59866.29348744635 2.847063129901737 0.0006511900823202029 0.32630263948340754 0.00020038267097158527 0.0008728181179448231 5.359981948753722e-07 1.7137743670347036 0.0010524299945986622 1.1332887628670332 0.0012376014773921098']
['59866.29351898432 2.840056131310008 0.0006505367514372691 0.3256027564887348 0.00020031016275342815 0.0008709460198240143 5.358042446008429e-07 1.7100985109702462 0.0010520491741251479 1.1299576203397617 0.0012369339229514086']
['59866.29355052228 2.8406424233206726 0.0006506025858526216 0.32564492070366624 0.0002003137092673848 0.0008710588037438114 5.358137310752453e-07 1.7103199616789195 0.0010520678007740797 1.130322461641753 0.0012369843904203991']
['59866.29358206024 2.8411201854340296 0.0006507209846110179 0.32538748835309483 0.0002002466495562122 0.000870370204901707 5.35634354864902e-07 1.7089679010141536 0.0010517155964086776 1.132152284419876 0.0012367471429287366']
['59866.29361359821 2.840467307057598 0.0006506391937733693 0.32535323974407915 0.0002002355856571389 0.0008702785942223983 5.356047603400719e-07 1.708788023865962 0.0010516574876950572 1.1316792831916358 0.0012366546938814972']
['59866.29364513617 2.8414651676030918 0.0006506281874233351 0.3258599831609888 0.00020033661664210073 0.000871634068502742 5.358750053932167e-07 1.7114494913917482 0.0010521881126160752 1.1300156762113436 0.0012371001829279444']
['59866.29367667413 2.842139193187328 0.0006508037929285774 0.32580226528516676 0.0002003404682347392 0.0008714796805154841 5.35885307914346e-07 1.7111463512876406 0.0010522083415690085 1.1309928418996873 0.001237209752207614']
['59866.29370821209 2.8414383190112398 0.0006506842668398666 0.3255241692399036 0.00020027513617771258 0.0008707358089145104 5.357105529594191e-07 1.70968576281462 0.0010518652110173981 1.1317525561966197 0.0012368550591163097']
['59866.29373975006 2.8412993080797007 0.0006506154178845965 0.3256519264458908 0.00020030191723883234 0.0008710775432144847 5.35782188896536e-07 1.7103567565435442 0.0010520058678510102 1.1309425515361564 0.0012369384657217614']
['59866.29377128802 2.8466792915923307 0.0006510879065652532 0.3264256086595344 0.00020039720914039527 0.0008731470448730336 5.360370826304917e-07 1.714420213547975 0.001052506350527286 1.1322590780443558 0.001237612653448481']
['59866.29380282598 2.839730741688853 0.0006505400421916148 0.32538458457714825 0.0002002648220848155 0.0008703624376698494 5.3568296407088e-07 1.7089526500900645 0.001051811040361426 1.1307780915987884 0.0012367331204107268']
['59866.29383436395 2.845854384605431 0.0006510406573524102 0.32619359574050855 0.00020038127364726443 0.0008725264397818715 5.359944572102837e-07 1.7132016583009904 0.0010524226557104225 1.1326527263044408 0.001237516619596859']
['59866.29386590191 2.842149749349984 0.0006507490486591116 0.32554515942331774 0.00020029892692043002 0.000870791954989246 5.357741901746008e-07 1.7097960053745682 0.0010519901623972166 1.1323537439754157 0.0012369954026233327']
['59866.29389743987 2.8461404334570855 0.0006510405348491988 0.32648872000813317 0.00020042138460897124 0.0008733158597149612 5.361017489384821e-07 1.7147516807149852 0.0010526333225261094 1.1313887527421003 0.00123769571773885']
['59866.29392897784 2.846895087298387 0.0006511412163465369 0.3262731438242777 0.0002004007948925562 0.0008727392208028017 5.360466740621071e-07 1.7136194528586013 0.0010525251832592239 1.1332756344397859 0.0012376567153375407']
['59866.293960515795 2.842572315585719 0.0006508202464866735 0.32539413317854055 0.00020024380195125398 0.0008703879789658359 5.356267378833041e-07 1.709002800307461 0.0010517006405002837 1.1335695152782579 0.0012367866551938865']
['59866.29399205376 2.84233439953666 0.0006507776151447026 0.32559076833955825 0.00020027855712439276 0.0008709139530475442 5.357197035573049e-07 1.7100355480018818 0.0010518831781743318 1.132298851534778 0.0012369194496407434']
['59866.29402359173 2.840815172668906 0.000650653750950041 0.3253447440796729 0.00020021830014842266 0.0008702558693991192 5.355585237996341e-07 1.7087434037797946 0.0010515667024602032 1.1320717688891113 0.0012365851500597861']
['59866.294055129685 2.843648828738872 0.0006508314812568609 0.3260682311568752 0.0002003471321892535 0.0008721911054428143 5.359031331463037e-07 1.7125432308659414 0.0010522433413301128 1.1311055978729307 0.0012372540831892859']
['59866.29408666765 2.840820533749081 0.0006505787762948081 0.3253541420692809 0.00020022235487583272 0.0008702810078277116 5.355693696804779e-07 1.7087927629689124 0.001051587998297441 1.1320277707801685 0.0012365638124773295']
['59866.29411820562 2.843779438062205 0.0006508779994252455 0.32572681154570277 0.00020030073273153616 0.0008712778513455604 5.357790204899593e-07 1.7107500606391952 0.0010519996466992446 1.1330293774230096 0.001237071310309614']
['59866.294149743575 2.842532768582291 0.0006507938465208316 0.32548464470187355 0.00020025082710384244 0.0008706300857951675 5.356455292742356e-07 1.7094781759552184 0.0010517375373100969 1.1330545926270725 0.001236804138922767']
['59866.29418128154 2.841577060654668 0.0006507385290286588 0.3249862937406821 0.00020017087099402363 0.0008692970602679705 5.354316568354446e-07 1.7068607864531624 0.0010513175997585275 1.1347162742015056 0.0012364179425762205']
['59866.2942128195 2.8486210850480704 0.0006512878841284758 0.32644033993740984 0.00020041604263060887 0.0008731864491703771 5.360874598248307e-07 1.7144975837048837 0.0010526052659170634 1.1341235013431867 0.001237801984910704']
['59866.294244357465 2.840394717499754 0.000650611365457123 0.32557870703205954 0.00020029459784334176 0.0008708816905818539 5.357626104432121e-07 1.7099722007986322 0.0010519674256478035 1.130422516701122 0.0012369036395314104']
['59866.29427589543 2.8473647151203365 0.0006511630266368906 0.3263988648013263 0.0002004055667273287 0.0008730755084489804 5.360594381140679e-07 1.7142797521078064 0.0010525502454166425 1.1330849630125301 0.0012376895032218502']
['59866.29430743339 2.8417308612522305 0.0006507156531740131 0.3255044289874633 0.00020028555638441068 0.0008706830062463801 5.357384256888988e-07 1.7095820850181898 0.0010519199389937537 1.1321487762340408 0.00123691811343286']
['59866.294338971355 2.841761692856398 0.0006507290513383312 0.32560410126645456 0.00020029759910728984 0.0008709496169336185 5.357706384430922e-07 1.7101055738784379 0.0010519831885887072 1.1316561189779601 0.0012369789518536472']
['59866.29437050932 2.8413107313968595 0.0006506729549447943 0.32562116543935077 0.00020027111513758045 0.0008709952614288489 5.356997971877653e-07 1.7101951966352456 0.001051844092109141 1.131115534761614 0.0012368311478942844']
['59866.29440204728 2.844266168366136 0.0006509507230363623 0.32585445262012913 0.00020034404800394186 0.000871619275008359 5.358948833423078e-07 1.7114204444334513 0.0010522271428778458 1.1328457239326846 0.0012373030364589094']
['59866.294433585244 2.842333192731248 0.00065074167707222 0.32570320496460403 0.000200290610366994 0.000871214706739319 5.357519444504187e-07 1.7106260764947692 0.0010519464830199266 1.1317071162364787 0.0012369543780660459']
['59866.2944651232 2.846524415801977 0.0006510806042311726 0.3260955687651519 0.00020034320865876124 0.0008722642300728907 5.358926382005523e-07 1.7126868107413442 0.0010522227345523176 1.1338376050606327 0.001237367623754067']
['59866.29449666117 2.8412864566732545 0.0006507050436913531 0.3255768120032103 0.0002003087948238614 0.0008708766216203638 5.358005855629883e-07 1.7099622479160206 0.0010520419896211208 1.131324208757234 0.001237016330454587']
['59866.294528199134 2.8468489448621828 0.0006511243162165324 0.32623469765182744 0.00020034743073844727 0.0008726363821744249 5.359039317274793e-07 1.7134175296839678 0.0010522449093405845 1.133431415178215 0.001237409481296156']
['59866.29455973709 2.8467599379529966 0.0006510674994376698 0.32644268253512776 0.0002004162323650926 0.0008731927153217466 5.360879673404771e-07 1.7145098872643267 0.0010526062624217048 1.13225005068867 0.001237686887913664']
['59866.29459127506 2.8425752077160062 0.000650773193595761 0.3253781294087925 0.00020023675903877577 0.0008703451709143484 5.35607898986923e-07 1.7089187468949187 0.0010516636504137385 1.1336564608210875 0.001236730440760789']
['59866.294622813024 2.8459157785463063 0.0006510577334374298 0.32626666960979495 0.00020038841640870864 0.0008727219031013301 5.360135631899673e-07 1.7135854496312761 0.001052460170213806 1.1323303289150302 0.001237557506605312']
['59866.29465435098 2.841750079998739 0.0006507139836199955 0.3254514152461332 0.00020024773639636286 0.0008705412012214308 5.356372620242687e-07 1.7093036515028004 0.001051721304602746 1.1324464284959386 0.0012367483135359053']
['59866.29468588895 2.8430924464652247 0.0006508596966292902 0.3255723835409424 0.00020025562533779873 0.0008708647760462423 5.3565836394066e-07 1.709938989185622 0.0010517627381186909 1.1331534572796027 0.0012368602192613753']
['59866.29471742691 2.8416575153918755 0.0006507167011967791 0.32538388441512445 0.0002002319221517962 0.0008703605648253611 5.355949609285705e-07 1.708948972768511 0.0010516382465955683 1.1327085426233645 0.001236679112348478']
['59866.29474896487 2.842529758388996 0.0006507482512166392 0.32562324740939974 0.0002002850903445286 0.0008710008304343054 5.357371790914045e-07 1.7102061313518895 0.0010519174913052973 1.1323236270371064 0.0012369331812897351']
['59866.29478050284 2.847809114832882 0.0006512279789659393 0.32661302742146436 0.00020044652504908858 0.000873648366257728 5.361689964227877e-07 1.715404555785002 0.0010527653626527763 1.1324045590478802 0.001237906615779031']
['59866.2948120408 2.84782693141989 0.0006512279423361387 0.3265178377220405 0.00020041820716081227 0.0008733937459015139 5.360932496682147e-07 1.7149046098846668 0.0010526166342479638 1.1329223215352233 0.001237780114388203']
['59866.29484357876 2.8421277542257517 0.000650742384413252 0.32550555032173656 0.0002002591184861959 0.0008706860056731439 5.356677076689687e-07 1.7095879743788687 0.0010517810844863232 1.132539779846883 0.0012368140929642866']
['59866.29487511673 2.84227324149302 0.0006507335018429811 0.3259918064327745 0.00020036350911034403 0.000871986679012309 5.359469393302397e-07 1.7121418405082693 0.0010523293545711347 1.1301314009847505 0.0012372757012537384']
['59866.294906654686 2.8463245674480477 0.0006510651185523662 0.32632245160928774 0.0002003924498728483 0.0008728711128652767 5.360243521942633e-07 1.7138784223176877 0.0010524813543742035 1.13244614513036 0.0012375794075132973']
['59866.29493819265 2.845996175551379 0.0006510125038126763 0.3261410457237672 0.0002003722559384322 0.0008723858751613009 5.359703359844683e-07 1.7129256603139034 0.0010523752937942868 1.1330705152374758 0.0012374615303552112']
['59866.29496973061 2.8476495240942885 0.0006511920259984735 0.326653923398338 0.0002004342204926472 0.0008737577578017953 5.361360832970701e-07 1.7156193455795063 0.0010527007378815505 1.1320301785147822 0.0012378327424415457']
['59866.295001268576 2.8461593001988197 0.0006510927357281935 0.3263844968104187 0.00020040918657505174 0.0008730370758981359 5.360691207469815e-07 1.7142042899706864 0.0010525692572219104 1.1319550102281333 0.0012376686922463164']
['59866.29503280654 2.8420264926700285 0.000650789567479727 0.32566505858123507 0.00020028553672628215 0.0008711126700086594 5.357383731059018e-07 1.7104257278426214 0.0010519198357472803 1.1316007648274071 0.0012369569119330857']
['59866.2950643445 2.8414818567769737 0.0006507173598416866 0.32554165313652855 0.00020027632135482162 0.0008707825761174073 5.357137231576602e-07 1.709777590002776 0.0010518714356870884 1.1317042667741977 0.0012368777625997452']
['59866.295095882466 2.845961192961763 0.0006510453447001576 0.3260562927977707 0.00020033844265447283 0.0008721591718484633 5.35879889744396e-07 1.7124805294000562 0.0010521977030171893 1.1334806635617067 0.0012373277848211428']
['59866.29512742043 2.846563105463445 0.0006511086043101115 0.32615692039541017 0.00020036463277976145 0.0008724283378917537 5.359499450032175e-07 1.7130090356901795 0.001052335256196226 1.1335540697732653 0.0012374780426497424']
['59866.29515895839 2.846228584916224 0.0006510532264576453 0.3262650196373617 0.00020039417616065657 0.0008727174896346289 5.360289697949e-07 1.713576783809673 0.0010524904210118518 1.132651801106551 0.0012375808620056369']
['59866.295190496356 2.843701113639346 0.0006508519038134713 0.32594799169698546 0.00020034534477039718 0.0008718694801588454 5.358983520278775e-07 1.711911721097613 0.0010522339536260356 1.1317893925417333 0.0012372568423173493']
['59866.295222034314 2.8475810804172275 0.0006512079226823673 0.3266292508425217 0.00020046220038936563 0.0008736917618485707 5.362109259671531e-07 1.7154897628283705 0.001052847691120618 1.132091317588857 0.00123796608162837']
['59866.29525357228 2.8404008385353343 0.0006506025115847271 0.32531009011609924 0.00020022976516636336 0.0008701631744478508 5.355891912664896e-07 1.7085613976685885 0.0010516269178905639 1.1318394408667458 0.0012366093977131023']
['59866.295285110245 2.84688010076344 0.0006511106447620824 0.3263189582645094 0.000200372592905748 0.0008728617686116734 5.35971237329241e-07 1.713860074918642 0.0010523770635806093 1.133020025844798 0.0012375146688718645']
['59866.295316648204 2.8408812264634653 0.0006506616067694266 0.32551299016687213 0.0002002727305886575 0.0008707059063139702 5.357041183142231e-07 1.7096270491957573 0.0010518525766211005 1.131254177267708 0.0012368323934423048']
['59866.29534818617 2.8438152172273092 0.0006508928769260009 0.32566286148926005 0.00020028230085016174 0.000871106793066672 5.357297175482581e-07 1.710414188494013 0.001051902840599589 1.1334010287332963 0.0012369968162022449']
['59866.295379724135 2.8473051498725557 0.0006511338240155458 0.3264474643816153 0.00020039578747970996 0.0008732055061537735 5.360332798687193e-07 1.7145350020042822 0.0010524988838220063 1.1327701478682735 0.0012376304606883579']
['59866.295411262094 2.841610623846048 0.0006506923039243365 0.32542384629593263 0.00020024816935401002 0.00087046745778109 5.356384201309864e-07 1.709158856596285 0.0010517235785399688 1.132451767249763 0.0012367388406786936']
['59866.29544280006 2.84397932073 0.000650886989606486 0.32611201220987 0.00020038157714490505 0.0008723082141990815 5.359952690279261e-07 1.7127731733711662 0.0010524242497106358 1.1312061473588337 0.0012374371396632591']
['59866.29547433802 2.842843491168291 0.0006508066480220097 0.32544745022092303 0.00020025766684444887 0.000870530595282579 5.356638247116638e-07 1.7092828267905622 0.0010517734603174836 1.133560664377729 0.001236841422712652']
['59866.29550587598 2.847106190254628 0.0006511830980021122 0.32625913615085045 0.00020036527011909152 0.0008727017520554544 5.35951649804979e-07 1.713545883145223 0.0010523386035666573 1.1335603071094051 0.001237520086172443']
['59866.29553741395 2.846294821971851 0.0006510626039155689 0.3263303708082659 0.0002003956524836541 0.0008728922957167507 5.360329187714153e-07 1.7139200147492957 0.0010524981748091077 1.1323748072225552 0.0012375923893567801']
['59866.29556895191 2.8430358167490626 0.000650815991441233 0.325495271224178 0.00020026985746469554 0.0008706585103926905 5.356964330725313e-07 1.7095339875219433 0.0010518374866843253 1.1335018292271193 0.0012369007854755502']
['59866.29560048987 2.844006192683965 0.0006508972323481973 0.32588947340167956 0.00020034106469952993 0.000871712951151127 5.35886903381906e-07 1.7116043771096618 0.001052211474262237 1.1324018155743032 0.0012372615704238346']
['59866.29563202784 2.8472040550432682 0.0006511557365474905 0.32679426423026003 0.00020045423285636015 0.0008741331517029387 5.361896138282947e-07 1.7163564297807776 0.0010528058448338244 1.1308476252624906 0.0012379030415000068']
['59866.2956635658 2.84099358647674 0.0006506760153299604 0.3253169016736017 0.00020023024617889368 0.0008701813944990554 5.355904779139163e-07 1.7085971726554714 0.0010516294442168787 1.1323964138212688 0.0012366502192898265']
['59866.29569510376 2.8414496893666046 0.0006506611359131797 0.3253127156057389 0.00020021583721093635 0.0008701701972991816 5.355519357546682e-07 1.7085751870049313 0.0010515537668641616 1.1328745023616733 0.0012365780357074263']
['59866.29572664172 2.8456422142135436 0.0006509673308720236 0.3265640689532877 0.0002004411459548593 0.0008735174085734167 5.361546080289062e-07 1.7151474209731499 0.0010527371111074544 1.1304947932403937 0.0012377454871521508']
['59866.29575817969 2.844347020513593 0.00065091620466795 0.32581973920778873 0.00020031532209611186 0.0008715264210391899 5.358180451872499e-07 1.7112381260913274 0.0010520762715131927 1.1331088944222656 0.001237156573187254']
['59866.29578971765 2.844275122812789 0.000650932799238036 0.3256887030087978 0.00020031713270535044 0.0008711759158493852 5.358228883370033e-07 1.710549910760493 0.0010520857810154961 1.133725212052296 0.0012371733911375768']
['59866.29582125561 2.842390101355732 0.0006508016255958395 0.32563702472212736 0.00020029900568515775 0.0008710376829960386 5.357744008602438e-07 1.7102784911876436 0.0010519905760775093 1.1321116101680881 0.0012370234145051891']
['59866.29585279358 2.8439832212739793 0.0006508809021825684 0.32586288964240184 0.00020034137661710804 0.0008716418429713788 5.358877377218118e-07 1.71146475652522 0.0010522131124848112 1.1325184647487594 0.0012372543727588795']
['59866.29588433154 2.8411717227843694 0.0006507045295742864 0.32521758917259036 0.00020022988138084327 0.0008699157461722188 5.355895021254633e-07 1.7080755733854536 0.0010516275282607315 1.1330961493989158 0.0012366635933042862']
['59866.2959158695 2.843390560567531 0.0006508465259628551 0.3259245832876681 0.00020032697296102213 0.00087180686563695 5.358492097711452e-07 1.7117887777713663 0.0010521374630305786 1.1316017827961646 0.0012371719530729509']
['59866.29594740747 2.8434364444202664 0.0006508650732553567 0.32560104108690496 0.00020027892684364287 0.0008709414313419872 5.357206925093421e-07 1.7100895015068538 0.001051885119977116 1.1333469429134126 0.0012369671172723115']
['59866.295978945425 2.846774585903116 0.0006510926554805205 0.3263918382503076 0.00020039522469532967 0.0008730567133174255 5.360317744919794e-07 1.7142428479532963 0.0010524959280216895 1.1325317379498199 0.0012376062881720151']
['59866.29601048339 2.8460261392661734 0.0006510512828697675 0.32624851089770657 0.00020037651329028606 0.0008726733308527746 5.359817238599645e-07 1.7134900782442573 0.0010523976538355361 1.1325360610219162 0.0012375009473632377']
['59866.29604202136 2.841414056339902 0.0006506899566316498 0.325541100781799 0.00020026528638581373 0.0008707810986386586 5.356842060170808e-07 1.709774688980037 0.0010518134789170891 1.131639367359865 0.0012368140580107296']
['59866.296073559315 2.8469113647579727 0.0006511359273928769 0.32658965627128 0.0002004365435476631 0.0008735858513992812 5.361422971741938e-07 1.7152818081474792 0.0010527129388007517 1.1316295566104935 0.0012378136077214118']
['59866.29610509728 2.8404050182301805 0.0006506024628108089 0.3252501689955465 0.0002002391191773758 0.0008700028930607655 5.356142120579242e-07 1.7082466859009795 0.0010516760460996628 1.132158332329201 0.0012366511515198252']
['59866.29613663525 2.842214347451023 0.0006507615084519604 0.3255306436080998 0.000200266858903847 0.000870753127027146 5.356884123030992e-07 1.7097197668492636 0.001051821737940373 1.1324945806017592 0.0012368587264868116']
['59866.296168173205 2.8475950445026545 0.0006511924209251512 0.32656364800129933 0.00020044579701822125 0.0008735162825803115 5.361670490326825e-07 1.715145210090858 0.0010527615389612462 1.1324498344117966 0.0012378846581917117']
['59866.29619971117 2.843370940750953 0.0006508453160306901 0.3257023340892508 0.0002003059561204373 0.0008712123772583563 5.357929923918637e-07 1.7106215025695948 0.001052027080464482 1.132749438181358 0.0012370774443945336']
['59866.29623124913 2.8437186948246946 0.0006508939508306381 0.3258504979975194 0.00020033333776686216 0.0008716086968951422 5.358662348183932e-07 1.7113996743567197 0.0010521708916326794 1.132319020467975 0.0012372253313067208']
['59866.296262787095 2.843761499901933 0.0006509092900681831 0.3259954233552972 0.00020034626790113347 0.0008719963538206832 5.359008212853533e-07 1.7121608369500902 0.0010522388020017515 1.1316006629518427 0.001237291154229734']
['59866.29629432506 2.844077481182013 0.00065091727772428 0.3258563456468702 0.0002003089378540177 0.000871624338614464 5.358009681504906e-07 1.7114303868007892 0.001052042740829925 1.1326470943812237 0.001237128623455511']
['59866.29632586302 2.841856038109044 0.0006507582376368199 0.3255689814913378 0.0002002966707078739 0.0008708556759956335 5.357681550925676e-07 1.7099211212780348 0.0010519783125413546 1.131934916831009 0.0012369901591805556']
['59866.296357400985 2.8434811470301344 0.0006508754709717165 0.32531925778562254 0.00020021003532088118 0.0008701876967994687 5.355364164356505e-07 1.7086095471933958 0.0010515232947525275 1.1348715998367387 0.001236664917477594']
['59866.29638893895 2.8439980035968295 0.0006509260822830516 0.3254422501251746 0.0002002259541287596 0.0008705166856868997 5.355789972249274e-07 1.709255515363312 0.0010516069019367625 1.1347424882335175 0.0012367626452951261']
['59866.29642047691 2.841167895287515 0.000650661755444769 0.3258629274144772 0.00020031776177705136 0.0008716419440068831 5.358245710239069e-07 1.7114649549079686 0.0010520890849635052 1.1297029403795462 0.0012370336142149953']
['59866.296452014874 2.8414718003116253 0.0006507256051445669 0.3254794238879892 0.0002002529905102353 0.0008706161207811061 5.356513161115691e-07 1.7094507557142293 0.001051748899738631 1.132021044597396 0.001236777894891473']
['59866.29648355283 2.847778088900555 0.0006512616244547685 0.32642310483911496 0.00020042041970547256 0.000873140347471414 5.360991679441726e-07 1.7144070632306458 0.0010526282547556334 1.133371025669909 0.0012378077177806553']
['59866.2965150908 2.8418298918283322 0.0006507184328060174 0.32538669214076354 0.0002002610944996098 0.0008703680751348452 5.356729932538836e-07 1.7089637192266993 0.0010517914627080347 1.132866172601633 0.0012368103168307687']
['59866.296546628764 2.846234280548555 0.0006510661048177413 0.3264357033777311 0.00020043724239780537 0.0008731740469621113 5.361441665095654e-07 1.7144732320258986 0.001052716609232171 1.1317610485226564 0.0012377800015333199']
['59866.29657816672 2.8474238461716874 0.0006511729707474125 0.3267080084812035 0.0002004594596686411 0.0008739024285292842 5.362035948873053e-07 1.715903405888674 0.0010528332965789975 1.1315204402830135 0.0012379354539786838']
['59866.29660970469 2.8468654654472916 0.0006511552194661981 0.32615739425415013 0.0002003810514454271 0.0008724296054036998 5.3599386284859e-07 1.713011524444066 0.001052421488683966 1.1338539410032256 0.0012375759005741214']
['59866.296641242654 2.840124183806776 0.000650590289694403 0.32527860202204933 0.00020020651436363613 0.0008700789477954713 5.355269983222057e-07 1.7083960190233687 0.0010515048023300218 1.1317281647834072 0.0012364991202454393']
['59866.29667278061 2.843340630639937 0.0006508279225193934 0.3257762998262326 0.00020031030085983207 0.0008714102262106266 5.358046140179329e-07 1.7110099780789527 0.001052049899473908 1.1323306525609844 0.0012370876992816512']
['59866.29670431858 2.8464394778602715 0.0006511025539290479 0.32649439747812214 0.00020044621882288268 0.0008733310462261041 5.361681773065798e-07 1.7147814993598853 0.001052763754321863 1.1316579785003862 0.001237839269916249']
['59866.29673585654 2.845956979145579 0.0006510080729597684 0.32633523715167456 0.00020040090343257757 0.0008729053125673099 5.36046964392879e-07 1.713945573275602 0.0010525257533223614 1.132011405869977 0.0012375871575228937']
['59866.2967673945 2.844005006806034 0.0006508921650918666 0.32546635405496205 0.00020027330331688533 0.0008705811606377168 5.357056502894921e-07 1.7093821116332042 0.001051855584647507 1.1346228951728299 0.00123695625691943']
['59866.29679893247 2.8453762217147864 0.000650979686315044 0.3261003925431878 0.00020035090627462896 0.0008722771330664838 5.359132283453484e-07 1.71271214571002 0.001052263163207085 1.1326640760047664 0.0012373489065891695']
['59866.296830470426 2.847166223157772 0.0006511381638627205 0.3263771751312319 0.0002003904277683615 0.0008730174913362147 5.360189433215822e-07 1.7141658357732767 0.001052470734077529 1.1330003873844952 0.0012376088051271321']
['59866.29686200839 2.843123716928659 0.0006508193286051535 0.3255532096917 0.00020027710125763057 0.0008708134884347292 5.357158092986211e-07 1.7098382861959034 0.0010518755318152868 1.1332854307327556 0.001236934894373085']
['59866.29689354636 2.8431487849123345 0.0006508439758780142 0.3256358186247731 0.0002002746908546276 0.0008710344568387986 5.357093617767258e-07 1.710272156642716 0.001051862872135649 1.1328766282696185 0.0012369370973150404']
['59866.296925084316 2.8427302922397217 0.0006508436184061054 0.3255066699832108 0.00020026162504664012 0.0008706890006253828 5.356744123998066e-07 1.7095938549538383 0.0010517942491945385 1.1331364372858834 0.0012368785543692862']
['59866.29695662228 2.843971969610123 0.000650917566680522 0.32601066291390374 0.00020036883104681101 0.0008720371177044274 5.359611748343664e-07 1.7122408766486543 0.0010523573059181251 1.1317310929614688 0.0012373962897683775']
['59866.29698816024 2.8397240024029635 0.0006505301734221207 0.32508816222726955 0.00020017714302115298 0.0008695695455315954 5.354484337114252e-07 1.707395810017172 0.0010513505410774842 1.1323281923857915 0.0012363363081122115']
['59866.297019698206 2.8458470918389276 0.0006510695635361312 0.3260392452792198 0.00020033284979091353 0.0008721135719014913 5.35864929544707e-07 1.7123909941135493 0.0010521683287337898 1.1334560977253783 0.001237315549305667']
['59866.29705123617 2.8413074404588055 0.0006507045697058963 0.3256053764877541 0.00020027439894333387 0.000870953027988633 5.357085809510899e-07 1.710112271469297 0.001051861338988098 1.1311951689895086 0.0012368624472810104']
['59866.29708277413 2.8463905556378992 0.0006510893831570949 0.3264821635720441 0.0002004302941529768 0.0008732983220811353 5.361255808371238e-07 1.7147172456514923 0.001052680116349668 1.131673309986407 0.001237761209691852']
['59866.297114312096 2.847917019533174 0.0006512696655965551 0.3266223250418201 0.000200450244050597 0.000873673236211318 5.36178944279484e-07 1.7154533878246856 0.001052784895223724 1.1324636317084884 0.0012379451574837537']
['59866.29714585006 2.8429300768015615 0.0006507711495351376 0.32566954709157364 0.00020028552381256588 0.0008711246762037434 5.357383385633509e-07 1.7104493019515423 0.0010519197679231403 1.1324807748500192 0.0012369471642777463']
['59866.29717738802 2.8466190928516792 0.0006511139478926476 0.32639473449636425 0.00020043236003949933 0.000873064460407784 5.361311068211899e-07 1.7142580593296444 0.0010526909665940093 1.1323610335220349 0.0012377833591905244']
['59866.297208925986 2.84749019766893 0.0006511864760739361 0.3265160736001804 0.00020042546843656762 0.0008733890270995938 5.361126726586283e-07 1.714895344538763 0.0010526547712004601 1.1325948531301673 0.0012377907310820693']
['59866.297240463944 2.8411577139532174 0.0006506575460925967 0.32538416225348543 0.00020023831980343562 0.0008703613080076894 5.356120738341603e-07 1.7089504320036002 0.0010516718477071201 1.1322072819496172 0.0012366765614124607']
['59866.29727200191 2.84184414569181 0.0006507223708915764 0.32544783287831347 0.00020026945364488057 0.0008705316188424983 5.356953529058142e-07 1.7092848365457642 0.0010518353657819359 1.132559309146046 0.0012368497243757518']
['59866.297303539875 2.8436108292618774 0.0006508449290644388 0.3259730753330722 0.00020035514995178202 0.0008719365756995835 5.359245796427567e-07 1.7120434628837826 0.0010522854514274265 1.1315673663780947 0.0012372969704055358']
['59866.297335077834 2.8462556434343944 0.0006510720258900468 0.32629425447178795 0.00020037290948697018 0.0008727956891036947 5.359720841438023e-07 1.7137303281081302 0.0010523787262971124 1.1325253153262642 0.0012374957642187314']
['59866.2973666158 2.8409279294280476 0.0006506191110270964 0.32564599622607426 0.00020028961876949607 0.0008710616806296541 5.357492920530515e-07 1.7103256104310625 0.0010519412750498744 1.1306023189969852 0.0012368854731895126']
['59866.29739815376 2.8424527325755857 0.0006507658726587545 0.3258893183719418 0.0002003436218139808 0.0008717125364662683 5.358937433382911e-07 1.7116035628778457 0.0010522249044851934 1.13084916969774 0.0012372038921035547']
['59866.297429691724 2.8459566272131758 0.0006510691115349006 0.32612539736872237 0.0002003694629413861 0.0008723440177990045 5.359628650720998e-07 1.7128434735752227 0.001052360624692154 1.133113153637953 0.0012374788371512886']
['59866.29746122969 2.8411995564492525 0.0006506906202057343 0.3253186666711026 0.00020023273488299688 0.0008701861156432035 5.355971348813099e-07 1.708606442600329 0.0010516425151417905 1.1325931138489236 0.0012366690191306137']
['59866.29749276765 2.8465583843691866 0.0006510954506558107 0.3263837960869149 0.0002004208657907716 0.00087303520155176 5.361003611656916e-07 1.7142006097001834 0.0010526305976406073 1.1323577746690032 0.0012377222874917924']
['59866.29752430561 2.84359803328429 0.0006508384830828759 0.3259678987536653 0.00020035303158070754 0.0008719227290071312 5.359189132691802e-07 1.7120162749667296 0.0010522743255289263 1.1315817583175605 0.0012372841174237126']
['59866.29755584358 2.8433047586139093 0.0006508464474074785 0.3256837147161462 0.00020026798127030716 0.0008711625728000896 5.356914144908319e-07 1.7105237117444654 0.0010518276327222014 1.132781046869444 0.0012369084311544352']
['59866.29758738154 2.8425059985498304 0.0006507467742380134 0.32587002858577396 0.00020032055501686554 0.0008716609387382045 5.358320425856492e-07 1.7115022509757036 0.0010521037553406804 1.1310037475741268 0.0012370908116153569']
['59866.2976189195 2.843687945031079 0.0006508961201655198 0.32580840772977 0.0002003005336247838 0.0008714961107746652 5.357784879046847e-07 1.711178612026103 0.0010519986009705033 1.1325093330049758 0.0012370799552536703']
['59866.29765045746 2.8395540127167083 0.0006505150727856862 0.3252637679393074 0.00020023709458715208 0.0008700392685081667 5.356087965362127e-07 1.7083181089249337 0.0010516654127476475 1.1312359037917745 0.0012365961346741492']
['59866.29768199543 2.843471401686144 0.000650836611146832 0.3259835741735075 0.00020034267104197015 0.0008719646587643232 5.358912001439171e-07 1.7120986038524553 0.0010522199109347173 1.1313727978336887 0.0012372368550025322']
['59866.29771353339 2.847627325708781 0.000651191518395269 0.3265790004224937 0.00020043075998715416 0.0008735573483571438 5.361268268843841e-07 1.7152258425551141 0.0010526825629577424 1.1324014831536668 0.001237817018781539']
['59866.29774507135 2.8471232554217263 0.0006511419997898886 0.32641349040471 0.00020038174161987534 0.0008731146300804799 5.359957089775821e-07 1.7143565672516285 0.0010524251135497656 1.1327666881700977 0.0012375720276091458']
['59866.29777660932 2.8401396149909095 0.0006505812861431141 0.3250633211546492 0.00020018464981196021 0.0008695030988173226 5.354685134234207e-07 1.7072653421987878 0.0010513899674997912 1.1328742727921217 0.001236396729872269']
['59866.29780814728 2.8408623234010557 0.0006506115334658851 0.3254454397368348 0.00020026815924592932 0.0008705252174929883 5.356918905530171e-07 1.709272267525393 0.0010518285674681164 1.1315900558756626 0.0012367856333337886']
['59866.29783968524 2.8420865183446242 0.0006507603426144742 0.3254079470782293 0.0002002481875926911 0.0008704249293930433 5.356384689171418e-07 1.7090753523016244 0.0010517236743313608 1.1330111660429998 0.0012367747210663574']
['59866.29787122321 2.845956286773884 0.0006510621560936898 0.32639343443929125 0.00020040820091980066 0.0008730609829202298 5.360664842443699e-07 1.7142512312987987 0.0010525640804611382 1.1317050554750852 0.001237648203074834']
['59866.297902761165 2.840801397850425 0.0006506251272904783 0.3252563410816599 0.00020020966348717966 0.0008700194026072216 5.355354218277244e-07 1.7082791023196424 0.0010515213418444312 1.1325222955307825 0.001236531515415626']
['59866.29793429913 2.840990390164724 0.0006506164003491324 0.32548026898347315 0.00020026089388382255 0.0008706183813041926 5.356724566321323e-07 1.7094551942409306 0.00105179040905369 1.1315351959237936 0.0012367557418425804']
['59866.2979658371 2.8480924819566233 0.0006511993013747345 0.3266237513935743 0.00020043802819413577 0.0008736770515211041 5.361462684149478e-07 1.7154608791679324 0.0010527207363137385 1.132631602788691 0.0012378535772763603']
['59866.297997375055 2.8462036965363198 0.0006510818205606698 0.32641134776683145 0.00020041584151673313 0.0008731088987962844 5.360869218707559e-07 1.7143453139014257 0.0010526042096467077 1.131858382634894 0.0012376926755986587']
['59866.29802891302 2.840669900122686 0.0006505950391868505 0.32563626088242364 0.0002002780565957956 0.0008710356398218441 5.35718364706878e-07 1.7102744794244942 0.001051880549347666 1.1303954206981917 0.0012368211653713268']
['59866.29806045099 2.843514796249995 0.000650864470793365 0.32572765665360076 0.00020029367674531277 0.000871280111901853 5.357601466229704e-07 1.7107544992310966 0.0010519625879480713 1.1327602970188986 0.0012370326777347198']
['59866.298091988945 2.8404424929382524 0.0006506000943345539 0.32528194546666134 0.00020021866814006189 0.000870087891085168 5.355595081305316e-07 1.7084135791316248 0.0010515686351894008 1.1320289138066275 0.001236558562002718']
['59866.29812352691 2.847564878177246 0.000651183760511079 0.32679521235777614 0.00020047000679043105 0.0008741356878236255 5.362318070985366e-07 1.7163614094421016 0.0010528886911262136 1.1312034687351442 0.0012379882414041022']
['59866.29815506487 2.8415268760464802 0.0006506347679499972 0.32589166843862727 0.00020032354149385526 0.0008717188225961773 5.358400310322936e-07 1.7116159056650593 0.0010521194406189877 1.129910970381421 0.0012370452370846258']
['59866.298186602835 2.8410250338681453 0.0006506411329538034 0.3253595694593262 0.00020023143836199163 0.0008702955254067669 5.355936668522879e-07 1.70882126816873 0.0010516357056827292 1.1322037656994153 0.0012366371906740556']
['59866.2982181408 2.8427514483378045 0.0006507983904031657 0.325711563776946 0.00020029788365560455 0.0008712370655007073 5.357713995736944e-07 1.7106699778200947 0.00105198468306515 1.1320814705177098 0.001237016700920014']
['59866.29824967876 2.846379294119271 0.0006510844740102728 0.3264794748424782 0.00020043036510855692 0.0008732911300710336 5.361257706342888e-07 1.7147031241726798 0.0010526804890155302 1.1316761699465911 0.0012377589443228472']
['59866.298281216725 2.846843184628076 0.000651108948032568 0.3262994482322961 0.0002003913401415486 0.0008728095817534107 5.360213838039801e-07 1.7137576062620594 0.0010524755259535116 1.1330855783660168 0.0012375975092651077']
['59866.29831275469 2.846992467392133 0.0006511326264869126 0.32658443792444025 0.00020045145900973724 0.0008735718929842507 5.36182194140876e-07 1.715254400863657 0.0010527912763116452 1.1317380665284762 0.0012378784951495231']
['59866.29834429265 2.842081681616674 0.0006507570748430382 0.32548326987939635 0.00020025658595272886 0.0008706264083196528 5.356609334635935e-07 1.7094709552489307 0.0010517677833651728 1.1326107263677434 0.0012368105111872055']
['59866.298375830615 2.8404250403644875 0.0006505757746052174 0.3255912404986141 0.00020028333073107888 0.0008709152160130511 5.357324723489095e-07 1.7100380278288556 0.0010519082496380193 1.130387012535632 0.0012368345904605433']
['59866.29840736857 2.842092668480209 0.0006508222710179799 0.3251251976704834 0.0002002108570545175 0.0008696686106384373 5.355386144687618e-07 1.707590323899598 0.001051527610580449 1.134502344580611 0.0012366405881524467']
['59866.29843890654 2.8465363112907847 0.0006511274120163822 0.32624538466804087 0.00020039868299484662 0.0008726649685854715 5.360410250039595e-07 1.713473658970803 0.0010525140913594888 1.1330626523199816 0.0012376400200338714']
['59866.298470444504 2.8431411395269652 0.0006508057315307595 0.32563278246873384 0.00020028350476025727 0.0008710263355070063 5.357329378548587e-07 1.710256210445031 0.0010519091636568133 1.1328849290819343 0.0012369563406921294']
['59866.29850198246 2.8401197733718684 0.000650558135942819 0.3250962636485913 0.00020020374522413705 0.000869591215804695 5.355195912257453e-07 1.707438359498904 0.0010514902585301315 1.1326814138729644 0.0012364698346604168']
['59866.29853352043 2.84325235846846 0.0006508137534328499 0.32570852980040194 0.00020027880806091066 0.0008712289499987878 5.357203747806197e-07 1.7106540430693382 0.0010518844961182284 1.1325983153991217 0.0012369395841476064']
['59866.298565058394 2.8442683760664833 0.0006508951064463853 0.3257542890831726 0.00020030602231904223 0.0008713513502684565 5.357931694647241e-07 1.710894375436831 0.0010520274281462301 1.1333740006296522 0.0012371039362833757']
['59866.29859659635 2.8458781597436307 0.0006510637719972545 0.32585030981842095 0.0002002986601993004 0.0008716081935399539 5.357734767294544e-07 1.7113986860211186 0.0010519887615509475 1.1344794737225121 0.0012371598076387662']
['59866.29862813432 2.843816972869659 0.0006508975155359064 0.32580880477801766 0.00020033114694324448 0.0008714971728282999 5.358603746434656e-07 1.7111806973635384 0.0010521593852061161 1.1326362755061206 0.0012372174213161273']
['59866.29865967228 2.8419539021788784 0.0006507616385636349 0.32558232542588594 0.0002002783826172099 0.0008708913693257787 5.357192367727544e-07 1.7099912049678885 0.0010518822616450102 1.13196269721099 0.0012369102645662898']
['59866.29869121024 2.841667315006694 0.0006507115911494544 0.32556584003020717 0.0002002714014011015 0.0008708472729860962 5.357005629063268e-07 1.7099046220073906 0.0010518455955940208 1.1317626929993032 0.0012368527526859432']
['59866.29872274821 2.846200669068479 0.0006510670717340151 0.32624658109474275 0.00020037222113133705 0.0008726681688749446 5.359702428799096e-07 1.7134799427244893 0.0010523751109839132 1.1327207263439896 0.0012374900832389359']
['59866.29875428617 2.843301124193846 0.0006508320518373076 0.3256117866856432 0.00020029642615077247 0.0008709701744538473 5.357675009333817e-07 1.710145938475017 0.0010519770281027965 1.1331551857188291 0.0012370279007988267']
['59866.29878582413 2.846806751829062 0.0006511580928542227 0.32652611679994226 0.00020042116419360522 0.0008734158913834014 5.361011593553723e-07 1.7149480924366718 0.0010526321648823803 1.1318586593923903 0.0012377565739815383']
['59866.2988173621 2.8432889323905983 0.0006508666884731714 0.32540878015538427 0.00020025334476619878 0.0008704271577686264 5.356522637012784e-07 1.7090797277068503 0.0010517507603266744 1.134209204683748 0.0012368537132627165']
['59866.298848900056 2.846532472710568 0.0006511214048664439 0.32616602159487934 0.0002003466973851186 0.000872452682444419 5.35901970100466e-07 1.7130568361075598 0.0010522410576949506 1.133475636603008 0.0012374046740554361']
['59866.29888043802 2.8471407275204745 0.0006511223606186457 0.32675917182612413 0.00020045763549116395 0.0008740392839788511 5.36198715444237e-07 1.716172120935526 0.0010528237158149367 1.1309686065849485 0.0012379006846593018']
['59866.29891197598 2.8419357468824016 0.000650726127927982 0.32564138231396234 0.0002002815993592726 0.0008710493390007532 5.357278411492238e-07 1.7103013776993823 0.0010518991562987008 1.1316343691830193 0.0012369059497755125']
['59866.298943513946 2.8439488381411753 0.0006508647488172619 0.3257693924962338 0.000200310031745931 0.0008713917499801582 5.358038941724269e-07 1.7109737000852616 0.0010520484860605621 1.1329751380559137 0.0012371058718942684']
['59866.29897505191 2.846704922617404 0.0006511249789908249 0.3264841447624294 0.00020043955324133714 0.0008733036215137911 5.3615034772252e-07 1.7147276510631797 0.0010527287460154263 1.1319772715542245 0.0012378212920098823']
['59866.29900658987 2.8436599122927957 0.0006508493703728731 0.3256741948999976 0.00020029298992670823 0.000871137108500974 5.357583094704339e-07 1.7104737127100715 0.0010519589807075013 1.1331861995827242 0.0012370216651319938']
['59866.299038127836 2.843544923485707 0.0006508416830358476 0.32590959322364116 0.0002003287353702606 0.0008717667691195189 5.358539239920201e-07 1.7117100484434937 0.001052146719381621 1.1318348750422134 0.0012371772773060626']
['59866.2990696658 2.846576283815037 0.000651115570522127 0.3265004257951285 0.000200424381929664 0.0008733471712084584 5.36109766390655e-07 1.7148131606887003 0.0010526490647566388 1.1317631231263368 0.0012377485769369243']
['59866.29910120376 2.8461572886778637 0.0006510535495019932 0.3263404731956856 0.00020040652893754858 0.0008729193183200259 5.360620119041987e-07 1.7139730735067522 0.0010525552990417468 1.1321842151711115 0.00123763620739699']
['59866.299132741726 2.8424155340635826 0.0006507518157823903 0.325718530376332 0.00020031101500899863 0.000871255700269259 5.358065242762516e-07 1.7107065671025843 0.0010520536502573459 1.1317089669609983 0.0012370508513249905']
['59866.299164279684 2.84247964293658 0.0006507721012748422 0.3254235448973948 0.00020024836575096352 0.000870466651578281 5.356389454678932e-07 1.709157273620771 0.001051724610036573 1.133322369315809 0.0012367817039212114']
['59866.29919581765 2.846589808216537 0.0006518410821917787 0.3253359442469403 0.00020025004431671579 0.0008702323309641986 5.356434354180911e-07 1.7086971861709048 0.0010517334260331712 1.1378926220456322 0.0012373520096837524']
['59866.299227355616 2.840910017479881 0.0006506846686632428 0.32544234231197977 0.0002002773776898258 0.0008705169322748952 5.357165487196345e-07 1.709255999537709 0.0010518769836650515 1.1316540179421721 0.0012368652823964625']
['59866.299258893574 2.846449352226072 0.000651083427333533 0.32630167032752055 0.0002003893440475169 0.0008728155255759148 5.360160445059629e-07 1.713769276930255 0.0010524650422663703 1.132680075295817 0.0012375751672286952']
['59866.29929043154 2.841832440303145 0.0006507126965488052 0.3251402033799105 0.00020019134642854648 0.0008697087490053267 5.354864260222726e-07 1.7076691353986897 0.0010514251388053912 1.1341633049044555 0.0012364957888977032']
['59866.299321969505 2.8473273241897 0.0006511700416872247 0.32669791582618174 0.00020045123927560246 0.0008738754319589373 5.361816063799732e-07 1.715850398246753 0.0010527901222458112 1.131476925942947 0.0012378971947174338']
['59866.299353507464 2.841152190826729 0.0006506459037922955 0.3253098540565173 0.00020023538980802735 0.0008701625430184503 5.356042364685727e-07 1.7085601578598597 0.0010516564590757741 1.1325920329668695 0.0012366573494858987']
['59866.29938504543 2.8465504602155143 0.0006511099675503036 0.3262754426575927 0.00020038195592958562 0.0008727453698899518 5.359962822288383e-07 1.713631526562987 0.0010524262391259748 1.1329189336525274 0.0012375561315125067']
['59866.29941658339 2.8434464117847016 0.000650858056622188 0.32568930777838057 0.00020029739207439508 0.0008711775335312092 5.357700846563933e-07 1.7105530870713266 0.0010519821012310666 1.132893324713375 0.001237045896957967']
['59866.29944812135 2.84245914835295 0.0006507972989244918 0.3254410025622346 0.0002002602809356099 0.0008705133486144843 5.356708170735121e-07 1.7092489630369465 0.0010517871897878673 1.1332101853160037 0.0012368481785931828']
['59866.29947965932 2.8465694016941265 0.0006511303438129594 0.32655064047444604 0.0002004301567864537 0.0008734814890980242 5.36125213399121e-07 1.715076893248141 0.0010526793948868367 1.1314925084459855 0.00123778214280757']
['59866.29951119728 2.8400286679994116 0.000650605069363676 0.32528192914378795 0.0002002293657114681 0.0008700878474235547 5.355881227753782e-07 1.7084134934022477 0.0010516248199131726 1.1316151745971639 0.0012366089592668842']
['59866.29954273524 2.8404854557197154 0.0006505680472803296 0.3253177383067655 0.00020023663656371348 0.0008701836323865104 5.356075713816865e-07 1.7086015667372139 0.0010516630071623608 1.1318838889825016 0.001236621957097609']
['59866.29957427321 2.84196700792039 0.0006507818476703749 0.32541219912156377 0.0002002447999869794 0.0008704363030689244 5.356294075021121e-07 1.7090976844619947 0.0010517058822845555 1.1328693234583953 0.0012367709068737032']
['59866.29960581117 2.8461419651284494 0.0006510651852860588 0.3263601905775001 0.00020040746737130336 0.000872972059812137 5.360645220953052e-07 1.7140766311843494 0.0010525602277904587 1.1320653339441 0.0012376465200605027']
['59866.29963734913 2.8469154179696385 0.0006511341818565569 0.3260933846641198 0.00020033979984664698 0.0008722583878800256 5.358835200610891e-07 1.712675339622478 0.0010522048311273477 1.1342400783471605 0.0012373805919884706']
['59866.29966888709 2.8465567808328007 0.000651080347033447 0.3266482058686676 0.00020044663549547662 0.0008737424641360926 5.361692918528483e-07 1.7155893165371199 0.0010527659427283437 1.1309674642956808 0.0012378294504744555']
['59866.29970042506 2.8471069462036356 0.0006511549542318072 0.32634089644272024 0.000200392347936521 0.0008729204504520883 5.360240795275344e-07 1.7139752964428585 0.0010524808189943332 1.133131649760777 0.0012376262152894184']
['59866.29973196302 2.842408394332555 0.0006507803627815124 0.32569525913987046 0.0002003114428281726 0.000871193452667331 5.358076686382061e-07 1.7105843442220088 0.001052055897206789 1.131824050110546 0.0012370677796424974']
['59866.29976350098 2.8464278446600453 0.0006511175886708366 0.32646636217320696 0.00020043553727245377 0.000873256055346132 5.361396055158126e-07 1.7146342551113813 0.0010527076537418792 1.131793589548664 0.001237799466199294']
['59866.29979503895 2.844005508965587 0.000650923316320436 0.3255972860616182 0.000200263004459453 0.000870931387126259 5.356781021538862e-07 1.7100697797353897 0.0010518014940097322 1.1339357292301975 0.0012369266536584533']
['59866.29982657691 2.844086686428925 0.000650874201544163 0.326200402696035 0.0002003710739392019 0.0008725446475233747 5.359671742866493e-07 1.7132374091178308 0.001052369085815136 1.1308492773110943 0.0012373834971483727']
['59866.29985811487 2.8423749092022446 0.0006507740744372982 0.3257013000081288 0.00020030423196202343 0.0008712096112226904 5.357883804870864e-07 1.710616071471265 0.0010520180250106273 1.1317588377309795 0.0012370322634866816']
['59866.29988965284 2.841062252954663 0.0006505829120490793 0.3255452206936633 0.00020027656788280232 0.0008707921188796386 5.357143825886978e-07 1.7097963271726015 0.001051872730476903 1.1312659257820614 0.0012368081365236872']
['59866.299921190795 2.847224774586432 0.0006511422692047489 0.32672127300791187 0.00020047355331803517 0.0008739379094535432 5.362412936094443e-07 1.7159730725205458 0.0010529073178468234 1.1312517020658863 0.001237982259453059']
['59866.29995272876 2.8463749999812116 0.0006510710156595573 0.32636679039449257 0.00020038999106752013 0.0008729897134843698 5.360177752022955e-07 1.7141112940887215 0.001052468440480673 1.13226370589249 0.0012375715274842854']
['59866.29998426673 2.8459408850655716 0.0006510633951125566 0.326073679326219 0.0002003478329736147 0.0008722056786038541 5.359050076554656e-07 1.7125718452007301 0.0010522470219202454 1.1333690398648415 0.001237379222225553']
['59866.300015804685 2.8464895648903408 0.0006510721060870871 0.3261961006426314 0.0002003720965389334 0.0008725331400769103 5.35969909611054e-07 1.7132148142995347 0.0010523744566120453 1.133274750590806 0.0012374921754314944']
['59866.30004734265 2.8420831814116223 0.0006506968972250338 0.3256040628147132 0.00020027825650757966 0.0008709495140800941 5.357188994455103e-07 1.7101053719260149 0.001051881599304515 1.1319778094856074 0.0012368756408846083']
['59866.30007888062 2.841474271865464 0.000650698287167889 0.32524062740656023 0.00020020131155490387 0.0008699773705220745 5.355130814696392e-07 1.7081965725134467 0.001051477476653907 1.1332776993520175 0.0012365327107819236']
['59866.300110418575 2.8445649450779467 0.0006509414729785201 0.3255946047374768 0.00020028477577540283 0.0008709242149247275 5.357363376589455e-07 1.7100556971506138 0.0010519158391565275 1.1345092479273329 0.0012370334409028023']
['59866.30014195654 2.841156851508676 0.0006506655330122992 0.3252790578096306 0.00020022212229073083 0.000870080166969363 5.355687475448702e-07 1.708398412865707 0.0010515867767370317 1.1327584386429688 0.001236608420179306']
['59866.3001734945 2.8454672702926684 0.0006509971711207797 0.32628987707135454 0.0002003847876357251 0.0008727839801134952 5.360038566831154e-07 1.7137073375596354 0.0010524411115321699 1.131759932733033 0.0012375094383681793']
['59866.300205032465 2.847517549331939 0.0006511922644937896 0.32653434734107556 0.00020041422866042357 0.0008734379070355978 5.360826076849717e-07 1.7149913200686742 0.0010525957387627289 1.1325262292632647 0.001237743573846378']
['59866.30023657043 2.8462339395436143 0.0006510740708945752 0.3263889337542189 0.00020041993569472265 0.0008730489441592792 5.360978732768892e-07 1.7142275932469482 0.0010526257126823669 1.132006346296666 0.0012377068864603182']
['59866.30026810839 2.8434237804093483 0.0006508204423097598 0.3260199543101427 0.00020036939148618233 0.0008720619710092955 5.35962673938505e-07 1.7122896759986486 0.0010523602494022183 1.1311341044106997 0.0012373477048308493']
['59866.300299646355 2.8474378339724424 0.0006511548464832696 0.3266056291945957 0.00020044466387878404 0.0008736285769404799 5.361640180286045e-07 1.7153656995514481 0.0010527555875986558 1.1320721344209943 0.0012378598310466501']
['59866.30033118432 2.840839487247888 0.0006506526222457514 0.325300069872028 0.0002002366760337371 0.0008701363715675999 5.356076769589868e-07 1.7085087703362816 0.001051663214462905 1.1323307169116066 0.0012366666290838945']
['59866.30036272228 2.842742186293158 0.0006508090997931062 0.3256935459335643 0.00020029736456194102 0.000871188870058051 5.357700110640729e-07 1.7105753462897286 0.0010519819567328837 1.1321668400034295 0.0012370200166792209']
['59866.300394260245 2.8428648261623684 0.0006507823697387816 0.3256361850089532 0.0002002636340415893 0.000871035436869947 5.356797862061395e-07 1.7102740809293762 0.0010518048006385994 1.1325907452329922 0.0012368552993011058']
['59866.3004257982 2.8416170923128083 0.0006507522294938094 0.32543101782529593 0.00020028126377363 0.0008704866407113034 5.357269435002514e-07 1.7091965221916803 0.001051897393769065 1.132420570121128 0.0012369181829083584']
['59866.30045733617 2.8408876128263496 0.0006506552927428583 0.32508265017173404 0.00020020170499094591 0.0008695548014831068 5.355141338610827e-07 1.7073668601456622 0.001051479543019674 1.1335207526806874 0.001236511843600035']
['59866.300488874134 2.8463974948474116 0.0006511117843258886 0.326570254698888 0.00020044922438921305 0.0008735339546572654 5.361762168147859e-07 1.7151799091328153 0.0010527795398593122 1.1312175857145963 0.0012378575504614524']
['59866.30052041209 2.8465329173748435 0.0006510827824803107 0.32649348779132187 0.00020042436757697457 0.0008733286129294497 5.361097279990337e-07 1.7147767215930771 0.0010526489893748665 1.1317561957817663 0.0012377312650467514']
['59866.30055195006 2.840514571519609 0.0006506434197915675 0.32505297504021197 0.00020017436549815102 0.0008694754242752305 5.354410041901594e-07 1.707211003362458 0.0010513359532465915 1.1333035681571513 0.0012363834948376595']
['59866.300583488024 2.8463516997004374 0.0006510779318695879 0.32620039784035304 0.00020036112072014536 0.0008725446345350422 5.359405506898002e-07 1.7132373836152996 0.0010523168105049652 1.1331143160851378 0.001237446218240988']
['59866.30061502598 2.846246308166099 0.0006510223678280877 0.32648512550169323 0.00020041663266401062 0.0008733062448667613 5.360890380892421e-07 1.7147328020046915 0.0010526083648319886 1.1315135061614077 0.0012376649357264521']
['59866.30064656395 2.845733468872063 0.0006510331396111087 0.32646817397567274 0.00020044045845364698 0.0008732609016876166 5.361527690504807e-07 1.7146437708806344 0.0010527335002817595 1.1310896979914287 0.0012377770281788972']
['59866.30067810191 2.8418039033468876 0.0006507615492410506 0.32541514459472615 0.0002002417627874059 0.0008704441818355384 5.356212833789982e-07 1.709113154384066 0.0010516899306061236 1.1326907489628215 0.0012367466612483436']
['59866.30070963987 2.8467459978887817 0.0006510843610281257 0.3265982840369687 0.00020043199966405408 0.0008736089295767131 5.36130142862644e-07 1.7153271220429032 0.0010526890738658304 1.1314188758458785 0.0012377661860835845']
['59866.30074117784 2.8521382672964632 0.0006521033693484444 0.3266006091799301 0.00020042475960078938 0.0008736151490388258 5.361107766129486e-07 1.7153393339282046 0.0010526510483234736 1.1367989333682587 0.0012382701780516649']
['59866.3007727158 2.846117184255238 0.0006510600326887591 0.32645805536016115 0.00020043185225445737 0.0008732338356762567 5.361297485606948e-07 1.714590626891603 0.0010526882996557635 1.1315265573636353 0.001237752730716774']
['59866.30080425376 2.8454729102937084 0.0006510126981031947 0.3258958927598533 0.00020030925657856465 0.0008717301221189392 5.358018206981734e-07 1.7116380922261205 0.0010520444148033857 1.133834818067588 0.0012371802551813537']
['59866.30083579173 2.8422626102187465 0.0006507967577112436 0.32584842079504456 0.0002003206210031122 0.000871603140642341 5.358322190904783e-07 1.711388764679856 0.001052104101907102 1.1308738455388905 0.0012371173998845934']
['59866.300867329686 2.846321537029583 0.0006510791957474397 0.32643108591029424 0.00020041758629293143 0.0008731616958231678 5.360915889254878e-07 1.7144489806212935 0.001052613373387245 1.1318725564082897 0.0012376990882152286']
['59866.30089886765 2.8430970658624615 0.0006508420987721765 0.3253752215432337 0.00020024786765671424 0.0008703373927432974 5.356376131290377e-07 1.7089034744917735 0.0010517219939953479 1.134193591370688 0.0012368163122257574']
['59866.30093040561 2.8471411849621098 0.0006510982660327594 0.326840431921422 0.00020046593006698435 0.0008742566444131834 5.362209023810885e-07 1.7165989071503258 0.0010528672797635735 1.130542277811784 0.0012379250626865961']
['59866.300961943576 2.8408743529320226 0.0006506578815447582 0.3252295617515718 0.00020022549603777656 0.0008699477713003946 5.355777718897285e-07 1.7081384545775833 0.0010516044959967257 1.1327358983544393 0.0012366194624122814']
['59866.30099348154 2.840338756471606 0.0006505978296298792 0.3256048752006297 0.00020027639859946514 0.0008709516871092421 5.35713929777271e-07 1.7101096386587695 0.0010518718413837457 1.1302291178128363 0.0012368152273541674']
['59866.3010250195 2.8403604704006105 0.0006505653384119773 0.3253312268145322 0.0002002280407785929 0.0008702197124316533 5.355845787482126e-07 1.7086724097401902 0.0010516178612321055 1.1316880606604203 0.0012365821386408095']
['59866.301056557466 2.846245025668162 0.0006511323037806211 0.3261722927389228 0.00020038388107073164 0.0008724694569582569 5.360014317368978e-07 1.71308977278846 0.0010524363501614059 1.133155252879702 0.0012375764817447528']
['59866.30108809543 2.843418388226329 0.0006508541609701071 0.3256320988128208 0.00020028101828572487 0.0008710245068142678 5.35726286851284e-07 1.7102526198152352 0.0010518961044418324 1.1331657684110938 0.001236970716465028']
['59866.30111963339 2.841983210301851 0.0006507299297270828 0.325387428688516 0.0002002436404948897 0.0008703700453065365 5.356263060080356e-07 1.708967587649769 0.001051699792515177 1.133015622652082 0.0012367384101009723']
['59866.301151171356 2.8408360166251065 0.0006506460700646557 0.32516535110815115 0.00020023829773916364 0.0008697760159844364 5.356120148150351e-07 1.707801213803315 0.0010516717318233386 1.1330348028217916 0.0012366704249746094']
['59866.301182709314 2.840810289768532 0.0006506234016399494 0.32554463363894715 0.00020026507289293982 0.0008707905485828328 5.356836349507582e-07 1.7097932439020334 0.0010518123576309865 1.1310170458664988 0.0012367780910198859']
['59866.30121424728 2.8462312492407147 0.0006510586513278018 0.32658677658605545 0.00020041640668093044 0.0008735781486070453 5.36088433613204e-07 1.7152666837502912 0.0010526071779460634 1.1309645654904235 0.0012376830121369332']
['59866.301245785246 2.8404289448138216 0.0006506162944346636 0.3253333141506307 0.00020024977949744546 0.0008702252957906108 5.356427270601769e-07 1.7086833726398674 0.0010517320351756591 1.1317455721739542 0.0012367060428406691']
['59866.301277323204 2.8437861739034647 0.000650901361754987 0.32583437515669295 0.00020033062304011156 0.0008715655703436428 5.358589732691242e-07 1.7113149955708664 0.0010521566336140313 1.1324711783325982 0.0012372171047930543']
['59866.30130886117 2.843857045296888 0.0006508581886584026 0.3260938468643458 0.0002003600279029428 0.0008722596242069276 5.359376275425785e-07 1.7126777671446733 0.0010523110709188173 1.1311792781522145 0.001237325733880131']
['59866.301340399135 2.847135213241584 0.0006511144488700731 0.32639563361973767 0.0002004097091987218 0.000873066865448613 5.360705186989221e-07 1.7142627816162694 0.001052572002094127 1.1328724316253147 0.0012376824492250902']
['59866.301371937094 2.8434696094308176 0.0006508418184451267 0.3259270697478511 0.00020034582611569773 0.000871813516602142 5.358996395654224e-07 1.7118018369109826 0.0010522364817000932 1.131667772519835 0.0012372536870252397']
['59866.30140347506 2.846360979728487 0.000651101421391728 0.3261731327537511 0.00020037559286535368 0.000872471703891235 5.359792618401707e-07 1.7130941846310457 0.0010523928196709753 1.1332667950974413 0.0012375232150684506']
['59866.30143501302 2.844190089270529 0.0006509478815533252 0.3256704861852872 0.00020028783383720412 0.0008711271881601559 5.357445175858691e-07 1.7104542341664246 0.0010519319004054838 1.1337358551041044 0.001237050470914366']
['59866.30146655098 2.839881046689783 0.0006505441233993945 0.32519459988572885 0.00020019525886954946 0.0008698542527496614 5.354968913050488e-07 1.7079548313326096 0.0010514456873400707 1.1319262153571732 0.0012364245589260674']
['59866.30149808895 2.846678411002266 0.0006511217062326967 0.32603590592044374 0.0002003174227633606 0.0008721046395408869 5.358236642053411e-07 1.7123734554645156 0.001052087304429415 1.1343049555377502 0.0012372740894680252']
['59866.30152962691 2.8470271838627093 0.0006511354963239939 0.32655099585847536 0.00020040863119046145 0.0008734824397051663 5.360676351637401e-07 1.7150787597609 0.0010525663402860372 1.1319484241018092 0.0012376887069357285']
['59866.30156116487 2.8432387262144228 0.0006508472637845602 0.3257825237234279 0.0002003394105234514 0.0008714268743451465 5.358824786709877e-07 1.7110426666146425 0.001052202786362665 1.1321960595997802 0.0012372278950966169']
['59866.30159270284 2.840791932153531 0.0006506812822477544 0.32520070948096064 0.0002002171652161678 0.0008698705951409459 5.355554879999965e-07 1.7079869195428605 0.0010515607416815536 1.1328050126106706 0.0012365945675577913']
['59866.3016242408 2.843694945282206 0.0006508821139313929 0.32583023886929335 0.00020031252539598834 0.0008715545063001858 5.358105643696196e-07 1.7112932713723392 0.0010520615829621236 1.1324016739098668 0.0012371261457832699']
['59866.30165577876 2.8444116555167493 0.0006509324011025175 0.3259498600443127 0.00020033327512341612 0.0008718744777506528 5.358660672551313e-07 1.7119215338461802 0.001052170562622984 1.1324901216705692 0.001237245280312459']
['59866.30168731672 2.8402526649416338 0.0006506179525140484 0.3255166649139938 0.00020027159001185995 0.0008707157357958025 5.357010674161507e-07 1.7096463493382028 0.0010518465861967437 1.130606315603431 0.0012368043341722717']
['59866.30171885469 2.847047217251677 0.0006511409575264781 0.3267132504168415 0.00020047874834315806 0.0008739164500413541 5.362551896418442e-07 1.7159309370632434 0.001052934602642637 1.1311162801884336 0.0012380047754393787']
['59866.30175039265 2.8459605383908433 0.000651061685147567 0.3262605486122746 0.00020038663596388078 0.0008727055302103718 5.360088007261814e-07 1.713553301535056 0.0010524508191380295 1.1324072368557874 0.0012375516330931406']
['59866.30178193061 2.849147284371967 0.0006513395337190899 0.326605158305642 0.00020042876430962557 0.0008736273173723349 5.361214887004599e-07 1.7153632263951788 0.0010526720814581175 1.1337840579767884 0.0012378859799136459']
['59866.30181346858 2.84711138066511 0.0006511541628952891 0.3265475626932165 0.00020043222307728514 0.0008734732564241345 5.36130740464662e-07 1.715060728430759 0.0010526902472546488 1.132050652234351 0.0012378039022886132']
['59866.30184500654 2.8415587215671345 0.0006506892061902239 0.32545861143226695 0.00020025911628768076 0.0008705604501053736 5.356677017882199e-07 1.7093414465980408 0.0010517810729394998 1.1322172749690937 0.0012367861045654697']
['59866.3018765445 2.840738654605911 0.0006506647051524136 0.3252948314626537 0.00020023438298914987 0.0008701223594878376 5.356015433559483e-07 1.7084812576820048 0.0010516511711615014 1.132257396923906 0.0012366627447838942']
['59866.30190808247 2.842532066059205 0.0006508076041177877 0.3258401716034145 0.0002003225912411221 0.0008715810751024344 5.35837489226921e-07 1.7113454390935636 0.0010521144497958094 1.1311866269656414 0.001237131906082239']
['59866.301939620425 2.8467848244239513 0.0006511465697112538 0.3264096844990057 0.0002004091721357215 0.000873104449766097 5.36069082123607e-07 1.7143365782510804 0.001052569181385092 1.1324482461728709 0.0012376969487109578']
['59866.30197115839 2.8468486400667343 0.0006511293292003727 0.32632686800336475 0.00020037176611970817 0.0008728829261585204 5.359690257815919e-07 1.713901617664731 0.0010523727212169549 1.1329470224020033 0.0012375208069792224']
['59866.30200269636 2.846727957866844 0.0006510805413273566 0.3263728561169334 0.00020038661850194076 0.0008730059385215107 5.360087540177097e-07 1.7141431518746504 0.0010524507274261596 1.1325848059921937 0.0012375614752225346']
['59866.302034234315 2.8463460350351637 0.0006511499476443734 0.3264124400852497 0.00020040082269461384 0.0008731118206093214 5.360467484290803e-07 1.7143510508679083 0.0010525253292784343 1.1319949841672554 0.0012376614331431463']
['59866.30206577228 2.8398545051094475 0.0006505280898073855 0.3252400646022159 0.0002001979065086283 0.0008699758650919334 5.355039734033163e-07 1.7081936166082767 0.0010514595930075016 1.1316608885011707 0.0012364279483075213']
['59866.30209731025 2.8426091199350165 0.0006507504511724904 0.3257585565497291 0.0002003103981625897 0.0008713627651994975 5.358048742904514e-07 1.7109167886015182 0.001052050410517803 1.1316923313334983 0.0012370473782244065']
['59866.302128848205 2.8421122258471883 0.0006507542073222493 0.3258996200060256 0.00020035117705480024 0.0008717400920290644 5.359139526479156e-07 1.7116576680988742 0.00105226458537185 1.130454557748314 0.0012372315046002508']
['59866.30216038617 2.8437986422360995 0.0006508791743437505 0.3256578938446697 0.00020030605014585665 0.0008710935052483177 5.357932438979185e-07 1.7103880979236854 0.0010520275742954657 1.133410544312414 0.0012370956780590593']
['59866.30219192413 2.8432182102987356 0.0006508624556657207 0.32563026538969453 0.00020027656414480004 0.0008710196026402623 5.357143725900164e-07 1.710242990492093 0.001051872710844538 1.1329752198066425 0.0012369551875531504']
['59866.302223462095 2.8465762114604978 0.000651108825909772 0.32648618534376755 0.00020042908202199083 0.0008733090798097029 5.361223385406853e-07 1.7147383684021404 0.0010526737501154982 1.1318378430583573 0.0012377660228653185']
['59866.30225500006 2.843375601011906 0.0006508317870745938 0.3255803037051243 0.00020027425660734503 0.0008708859614795137 5.357082002203973e-07 1.7099805866865774 0.0010518605914251315 1.1333950143253286 0.0012369287444553695']
['59866.30228653802 2.8473560414384527 0.0006512000440402433 0.3266036043646697 0.00020044859872041045 0.000873623160777595 5.361745432302033e-07 1.715355064940492 0.0010527762537836684 1.1320009764979606 0.0012379011826025492']
['59866.302318075985 2.840808795060025 0.000650684781233949 0.3252023961548859 0.00020020947454299452 0.0008698751067794769 5.355349164260263e-07 1.7079957781244008 0.0010515203494905175 1.132813016935624 0.0012365620606836247']
['59866.30234961395 2.84295145281799 0.0006508262102475573 0.3255197704440642 0.00020027875418582577 0.0008707240426943173 5.3572023067161e-07 1.7096626598952953 0.0010518842131608495 1.1332887929226947 0.0012369458977021658']
['59866.30238115191 2.842487080092678 0.0006507924785190551 0.325841403054461 0.00020031851801266187 0.0008715843690775811 5.358265938581179e-07 1.7113519067986398 0.0010520930567891906 1.1311351732940382 0.0012371057554796995']
['59866.302412689874 2.8476418210363024 0.0006512051325959758 0.32639653691203585 0.00020037896945797223 0.0008730692816407863 5.359882937965749e-07 1.7142675257985076 0.0010524105538759047 1.1333742952377948 0.0012375928646484397']
['59866.30244422783 2.8443442014108227 0.0006509209523897451 0.32579132490395823 0.0002002995990528856 0.0008714504163852548 5.357759880435541e-07 1.7110888913023017 0.0010519936925046515 1.133255310108521 0.0012370888469829255']
['59866.3024757658 2.8412727068091854 0.0006506902763561454 0.32562886832034593 0.0002003144845725424 0.0008710158656571922 5.358158049180728e-07 1.7102356529429934 0.0010520718727549496 1.131037053866192 0.001237033977377559']
['59866.302507303764 2.841196829800783 0.0006506659388766692 0.32530787745581163 0.00020022865407788777 0.0008701572558626045 5.355862192459333e-07 1.7085497765536328 0.0010516210823418477 1.13264705324715 0.0012366378066516067']
['59866.30253884172 2.8442046535397107 0.0006509056822900503 0.3260063207382173 0.00020036064546929944 0.0008720255029359521 5.359392794541474e-07 1.7122180711040824 0.001052314314439598 1.1319865824356283 0.0012373534756131561']
['59866.30257037969 2.844231238449379 0.000650956026711451 0.3257517567300438 0.00020029316820710812 0.0008713445765454632 5.357587863478608e-07 1.7108810752628352 0.0010519599170541393 1.133350163186544 0.0012370785810935823']
['59866.30260191765 2.8469717762048408 0.0006511533033191731 0.32643062052018545 0.00020041219941300699 0.0008731604509637344 5.360771797058607e-07 1.714446536345512 0.001052585080950667 1.1325252398593288 0.0012377140126311058']
['59866.30263345561 2.8414579483803064 0.0006507069779890871 0.32535113679906486 0.00020023758384912996 0.0008702729691115735 5.356101052498639e-07 1.7087769789866851 0.001051667982400893 1.1326809693936213 0.00123669928293456']
['59866.30266499358 2.841126045996399 0.0006506430617297115 0.3255936137193215 0.00020028153202196835 0.000870921564077028 5.357276610304872e-07 1.7100504922233273 0.0010518988026363885 1.131075553773072 0.0012368619505688098']
['59866.30269653154 2.8464091597917953 0.0006510321523534662 0.3266956050224555 0.00020047901524644667 0.0008738692508524575 5.362559035742427e-07 1.7158382616725605 0.0010529360044456233 1.1305708981192348 0.001237948744034219']
['59866.3027280695 2.8468850351514963 0.0006511175922823935 0.3264379094266967 0.0002004165082381376 0.000873179947862911 5.360887052658348e-07 1.7144848184175248 0.0010526077113347564 1.1324002167339715 0.0012377144714921188']
['59866.30275960747 2.8425160875445714 0.0006507688808620157 0.32566820526007334 0.00020031416407452935 0.000871121086974902 5.358149476265934e-07 1.710442254517192 0.001052070189467066 1.1320738330273794 0.0012370738942616437']
['59866.30279114543 2.8437695898171436 0.0006509147507785507 0.32567838653374076 0.00020029739890207204 0.0008711483205888707 5.35770102919562e-07 1.7104957275931765 0.0010519821370907148 1.133273862223967 0.0012370757573968742']
['59866.30282268339 2.8463563445466353 0.000651089517382149 0.3260778378337395 0.00020035346996769785 0.0008722168020833124 5.359200858987012e-07 1.7125936861015731 0.0010522766279816066 1.1337626584450622 0.0012374181433295942']
['59866.30285422135 2.8439904184706712 0.0006509453741615113 0.32568554603427113 0.00020030501293457416 0.0008711674713434838 5.357904694894708e-07 1.7105333300119285 0.0010520221267572172 1.1334570884587427 0.0012371258769135211']
['59866.302885759316 2.844394167459495 0.0006509278751747987 0.32579711615128426 0.0002003115333809287 0.0008714659072363238 5.358079108553277e-07 1.7111193075172495 0.0010520563727989952 1.1332748599422455 0.0012371457918234846']
['59866.30291729728 2.844487125492999 0.0006509425791550628 0.32627091754978405 0.0002003800726490132 0.0008727332658012833 5.359912446924967e-07 1.7136077602404625 0.001052416347946498 1.1308793652525366 0.0012374596602645637']
['59866.30294883524 2.845958498274989 0.0006510484367753284 0.32624354888489127 0.00020039052117631123 0.0008726600580987033 5.360191931759842e-07 1.7134640172525801 0.0010524712246655 1.1324944810224087 0.0012375620169415738']
['59866.302980373206 2.847660403230465 0.000651213362826552 0.3264558488218915 0.0002004222140910908 0.0008732279334666308 5.361039676978021e-07 1.7145790379301025 0.0010526376790498467 1.1330813653003624 0.001237790340598647']
['59866.30301191117 2.8402619064015875 0.0006506135173910552 0.32503718966130946 0.0002001798994732918 0.0008694332003915177 5.354558068708082e-07 1.707128096960659 0.001051365018242079 1.1331338094409285 0.0012363924743361745']
['59866.30304344913 2.8477369259910423 0.0006512037032205615 0.3263610133876557 0.00020039980770289093 0.0008729742607248007 5.360440334551324e-07 1.714080952666259 0.0010525199984395533 1.1336559733247833 0.0012376851821862336']
['59866.303074987096 2.8428282602801325 0.0006508528044376262 0.32540205299904246 0.00020025533421204973 0.000870409163479807 5.356575852162564e-07 1.7090443960033743 0.0010517612090968997 1.1337838642767581 0.0012368552922655484']
['59866.303106525054 2.840570377632231 0.0006506260145889902 0.3254211697108344 0.00020026068386987778 0.000870460298255897 5.356718948715032e-07 1.7091447989014414 0.001051789306039274 1.1314255787307894 0.0012367598615570165']
['59866.30313806302 2.840554422849942 0.0006506520538457449 0.3250708248052512 0.00020016599639730094 0.0008695231701296678 5.354186179083186e-07 1.7073047521284201 0.0010512919978849838 1.133249670721522 0.0012363506622276252']
['59866.303169600986 2.8413036585728264 0.0006506855564729299 0.3255505969525108 0.00020029087381829644 0.0008708064996892339 5.357526491491927e-07 1.7098245638262124 0.0010519478666927335 1.131479094746614 0.001236926031596829']
['59866.303201138944 2.846706387537489 0.0006510919956634556 0.3263576727834448 0.0002003830492340409 0.0008729653250328162 5.359992066793991e-07 1.7140634074760759 0.0010524319812712235 1.132642980061413 0.0012375515593378299']
['59866.30323267691 2.847420512208073 0.0006511737999057914 0.3264989008872656 0.00020041655835944825 0.0008733430922735989 5.360888393339749e-07 1.7148051517188319 0.001052607974576934 1.132615360489241 0.001237744265115659']
['59866.303264214876 2.847415330152389 0.0006511407633754019 0.3268300099289473 0.0002004631897865895 0.0008742287669069781 5.362135724790667e-07 1.7165441697948913 0.001052852887534609 1.1308711603574975 0.0012379351746028809']
['59866.303295752834 2.84141299286107 0.0006506784832703277 0.3255670835414935 0.0002002736416940598 0.0008708505992208527 5.357065554054576e-07 1.7099111530540625 0.0010518573618385494 1.1315018398070074 0.0012368453412795503']
['59866.3033272908 2.8433579725581515 0.0006508382818045934 0.32592648714476824 0.0002003355297445892 0.0008718119582128899 5.358720980804168e-07 1.7117987770208416 0.0010521824041207417 1.1315591955373099 0.001237205835988361']
['59866.30335882876 2.84163686454985 0.0006506748301054592 0.32534747122066776 0.00020022643270433576 0.000870263164154915 5.355802773538113e-07 1.7087577269993057 0.0010516094154639484 1.1328791375505445 0.0012366325635471498']
['59866.303390366724 2.842407100655705 0.0006507607422290821 0.32549117074076 0.000200239555761903 0.000870647542120337 5.356153798660854e-07 1.7095124513695379 0.0010516783390856251 1.132894649286167 0.001236736379560513']
['59866.30342190469 2.8404711684425035 0.0006505702148912394 0.32515423564330215 0.00020020371487619948 0.0008697462835277056 5.355195100488667e-07 1.7077428342610408 0.0010514900991397032 1.1327283341814627 0.0012364760543950926']
['59866.30345344265 2.842649209435508 0.0006507657714618698 0.32547728218948635 0.00020025123498739955 0.0008706103920096212 5.356466203109469e-07 1.7094395072977224 0.00105173967955567 1.1332097021377854 0.001236791188058124']
['59866.30348498061 2.840340943086571 0.0006505907950334072 0.32521353465865943 0.00020020541676372614 0.0008699049008624047 5.355240623818492e-07 1.70805427866943 0.0010514990376246122 1.132286664417141 0.0012364944838969911']
['59866.30351651858 2.8414689305148406 0.0006507703449407849 0.3253874635622499 0.00020024667291140003 0.0008703701385893455 5.356344173370631e-07 1.7089677708101363 0.0010517157190724792 1.1325011597047043 0.0012367732191466995']
['59866.30354805654 2.841448178551836 0.000650709078016248 0.3256053529032229 0.00020027580260292447 0.0008709529649030075 5.357123355622203e-07 1.7101121476009609 0.0010518687111498134 1.1313360309508753 0.001236871088557221']
['59866.3035795945 2.8467038242824887 0.0006510934226848997 0.3264388462951413 0.0002004185576231163 0.0008731824538670116 5.360941871103668e-07 1.7144897389450702 0.0010526184749113253 1.1322140853374185 0.0012377109108302237']
['59866.30361113246 2.8441898976739557 0.0006509290948842808 0.32567406946474964 0.0002002922746778625 0.0008711367729776168 5.357563962706131e-07 1.7104730539115003 0.0010519552241484375 1.1337168437624554 0.0012370604189691217']
['59866.30364267043 2.846678196285154 0.0006511189414390137 0.32636408718666665 0.00020041320885863658 0.0008729824827467614 5.360798798447134e-07 1.7140970965686275 0.0010525903826609066 1.1325810997165267 0.0012377004441991993']
['59866.30367420839 2.843893164832412 0.0006508745568225877 0.32601247829400226 0.00020036692855735107 0.0008720419736156251 5.359560859166903e-07 1.712250411207995 0.0010523473138516338 1.1316427536244171 0.0012373651674787637']
['59866.30370574635 2.8433535634070717 0.0006508427759381659 0.3258747007466466 0.00020031925719675038 0.0008716734361751422 5.358285710816731e-07 1.711526789635749 0.0010520969390585629 1.1318267737713228 0.0012371355173008715']
['59866.30373728432 2.8416760024411003 0.0006506846716681197 0.32550841149126825 0.00020025009320805007 0.000870693658938253 5.356435661962009e-07 1.7096030015297703 0.001051733682815389 1.13207300091133 0.0012367434178164323']
['59866.30376882228 2.842185759540208 0.0006507680366118062 0.3253698108832012 0.00020024119927351634 0.0008703229199149015 5.356197760509138e-07 1.7088750571596703 0.0010516869709743506 1.1333107023805375 0.0012367475580702756']
['59866.30380036024 2.841433497497973 0.0006506817830392134 0.3256165055417739 0.00020029259233500776 0.0008709827967946698 5.35757245963132e-07 1.7101707223832665 0.001051956892515797 1.1312627751147064 0.0012369317226470435']
['59866.30383189821 2.840872255205956 0.0006506654848192266 0.32516889341952926 0.0002002277375108511 0.000869785491217475 5.355837675455204e-07 1.7078198183798807 0.0010516162684393441 1.1330524368260753 0.0012366334740663177']
['59866.303863436166 2.843148314895065 0.0006508201418465205 0.3256520439283362 0.00020029374531205905 0.000871077857465105 5.357603300303082e-07 1.7103573735731943 0.001051962948067537 1.1327909413218706 0.0012370096608919708']
['59866.30389497413 2.8399982746066996 0.0006505503374770365 0.32533091440878603 0.0002002450221704209 0.00087021887678596 5.356300018145993e-07 1.7086707689537084 0.0010517070492143954 1.1313275056529912 0.0012366500956045477']
['59866.3039265121 2.8414982196093383 0.0006506591473421126 0.32556522325564924 0.0002002733855774147 0.0008708456231924884 5.357058703259605e-07 1.7099013826452167 0.0010518560166881026 1.1315968369641216 0.0012368340251880715']
['59866.303958050055 2.842214242610923 0.000650736550179373 0.32555855573013825 0.00020028444663623053 0.0008708277884085679 5.357354572534625e-07 1.7098663641288774 0.001051914110484404 1.1323478784820458 0.001236924150291984']
['59866.30398958802 2.8438491828329733 0.0006508970997533079 0.3258142677185777 0.0002003175159081158 0.000871511785500467 5.358239133557313e-07 1.7112093892782443 0.0010520877936350621 1.132639793554729 0.001237156319946336']
['59866.30402112599 2.846828520950687 0.0006511400507449863 0.3259811006193014 0.00020033213214371397 0.0008719580423209803 5.358630099295942e-07 1.712085612496331 0.0010521645595783296 1.1347429084543559 0.001237349435736261']
['59866.304052663945 2.8416718258002924 0.000650742505567449 0.3255154165775076 0.00020027271069556035 0.0008707123966542492 5.357040651027148e-07 1.7096397929490945 0.001051852472140548 1.132032032851198 0.0012368748650127804']
['59866.30408420191 2.8463715025784975 0.0006511057936072094 0.32632919309103203 0.00020040263480262176 0.0008728891454727282 5.360515955878513e-07 1.713913829259622 0.0010525348466524254 1.1324576733188754 0.001237646297569107']
['59866.30411573987 2.841923470433186 0.0006506915311824427 0.32541828499134307 0.00020024253317398223 0.0008704525819976368 5.356233440652456e-07 1.7091296480637768 0.0010516939767541084 1.1327938223694094 0.0012367132608221774']
['59866.304147277835 2.842739259509891 0.0006507975910179024 0.32607180250612716 0.00020036636612610114 0.0008722006583484775 5.359545814845293e-07 1.7125619879523486 0.0010523443599059934 1.1301772715575422 0.0012373221715869557']
['59866.3041788158 2.8458391498147053 0.0006509995111016201 0.32675375998400785 0.00020047282550915438 0.0008740248079885312 5.362393468131249e-07 1.7161436973949995 0.001052903495321189 1.1296954524197058 0.001237903927578439']
['59866.30421035376 2.8411136157279397 0.0006506804963441849 0.32556534740637977 0.00020028505490208776 0.0008708459552799246 5.357370842873766e-07 1.709902034697373 0.001051917305158024 1.1312115810305667 0.0012368973786105433']
['59866.304241891725 2.8407655089392954 0.0006506195213184079 0.32521269844949796 0.0002002125078589149 0.000869902664109102 5.355430301608613e-07 1.7080498868145901 0.001051536280771612 1.1327156221247052 0.0012365412695497019']
['59866.30427342969 2.8412368087037856 0.0006506411818353282 0.325158345111153 0.00020020047927694887 0.000869757275832276 5.355108552318147e-07 1.7077644176005937 0.00105147310544616 1.1334723911031919 0.0012364989441874443']
['59866.30430496765 2.8408255973142746 0.0006506502726912641 0.3251377157197472 0.00020016999108598974 0.0008697020948303397 5.354293031932083e-07 1.7076560699566556 0.0010513129783928032 1.133169527357619 0.0012363675650430026']
['59866.304336505615 2.846190464751788 0.0006511036210648906 0.32640062074569576 0.00020042288803358093 0.0008730802053771516 5.361057704083678e-07 1.7142889745047045 0.0010526412186637655 1.1319014902470836 0.0012377356182132556']
['59866.30436804357 2.8441860206684133 0.0006509505573216561 0.3257503846729626 0.00020029896284365356 0.0008713409064670316 5.357742862646612e-07 1.710873869080686 0.001051990351069609 1.1333121515877274 0.0012371015830645977']
['59866.30439958154 2.847234260592459 0.0006511623795401201 0.32634986329281673 0.00020040095914042013 0.000872944435637245 5.360471134042825e-07 1.7140223912437855 0.001052526045905568 1.1332118693486735 0.0012376685831990571']
['59866.304431119504 2.846976240952368 0.000651159135581161 0.32640362369115583 0.00020038904268997038 0.0008730882378748627 5.360152384128004e-07 1.714304746277079 0.001052463459506147 1.132671494675289 0.0012376136527391945']
['59866.30446265746 2.841875712142731 0.0006507208529629021 0.3257849095500681 0.0002003263039076114 0.0008714332561283927 5.358474201382458e-07 1.7110551972167445 0.0010521339490945979 1.1308205149259865 0.0012371028555937297']
['59866.30449419543 2.843601694388739 0.0006508628468131547 0.3257466167159473 0.00020030002586325418 0.000871330827660572 5.357771297070821e-07 1.7108540793904796 0.0010519959341557467 1.1327476149982594 0.0012370601807680766']
['59866.304525733394 2.847313591467949 0.0006511947717004195 0.32662888838048 0.0002004624018712643 0.0008736907923086442 5.362114649056425e-07 1.7154878591411766 0.0010528487493238672 1.1318257323267724 0.0012379600638319447']
['59866.30455727135 2.8471269968630124 0.0006511699768958102 0.32654115019408664 0.00020044514894745032 0.0008734561038033935 5.361653155256797e-07 1.7150270493386905 0.0010527581352282054 1.1320999475243219 0.001237869956861244']
['59866.30458880932 2.84337348829565 0.0006508758092665423 0.3259318697766298 0.00020035154941852506 0.0008718263560694885 5.359149486735868e-07 1.7118270471461652 0.0010522665410636822 1.1315464411494847 0.0012372971318686964']
['59866.30462034728 2.842274964328908 0.0006507490590652874 0.3254750292277817 0.00020027351165613093 0.0008706043656232029 5.357062075705136e-07 1.7094276745156602 0.001051856678866234 1.1328472898132478 0.0012368818903799427']
['59866.30465188524 2.8414971289923585 0.0006506566120159425 0.3259312848299956 0.00020032086969779008 0.0008718247914115342 5.358328843171557e-07 1.711823974947456 0.0010521054080766287 1.1296731540449025 0.0012370447916159521']
['59866.30468342321 2.8405176225050983 0.0006506208586053666 0.3254247219720577 0.00020025967642949789 0.0008704698001035077 5.356692000964388e-07 1.7091634557355972 0.0010517840148608082 1.131354166769501 0.0012367526493074939']
['59866.30471496117 2.8420504695856414 0.0006507774670357049 0.32546212754478765 0.00020023327762832427 0.000870569855259796 5.355985866561282e-07 1.7093599135755655 0.0010516453656949803 1.132690556010076 0.0012367171409781367']
['59866.30474649913 2.8468976820887675 0.0006510912869217415 0.3265523864241387 0.00020043088811477574 0.0008734861592917044 5.361271696094988e-07 1.715086063151989 0.0010526832358969315 1.1318116189367784 0.0012377648641983033']
['59866.3047780371 2.8460461531483014 0.0006510243947140574 0.3264335286759918 0.00020040390799814763 0.0008731682299111608 5.360550012241785e-07 1.7144618102730664 0.0010525415336037167 1.131584342875235 0.001237609163861382']
['59866.30480957506 2.8453030429722093 0.0006509721946520013 0.3261454955106473 0.0002003743697908727 0.0008723977777760518 5.359759902712729e-07 1.7129490310433158 0.0010523863959604658 1.1323540119288935 0.001237449766500726']
['59866.30484111302 2.840427826551534 0.000650606773506305 0.325614851422865 0.00020028228747737343 0.0008709783722366729 5.357296817777478e-07 1.710162034783955 0.0010519027703643562 1.130265791767579 0.0012368462362122835']
['59866.30487265098 2.846007652382556 0.0006510419847741071 0.32628833783170574 0.00020039255761012282 0.0008727798628429286 5.360246403777892e-07 1.7136992533177824 0.0010524819202212335 1.1323083990647738 0.0012375677186849954']
['59866.304904188946 2.8442683846370604 0.0006509225197605427 0.32596385642008785 0.000200334363648068 0.0008719119162782156 5.358689789203248e-07 1.7119950442231506 0.0010521762796642227 1.1322733404139098 0.0012372449435012693']
['59866.30493572691 2.84695355492114 0.0006511132423143394 0.326523931892287 0.00020041519495568277 0.0008734100470329219 5.360851924020639e-07 1.7149366170813394 0.0010526008138428717 1.1320169378398008 0.0012377063171931245']
['59866.30496726487 2.8445721847658545 0.000650946756254341 0.3256949357119373 0.0002003005321958057 0.0008711925875386873 5.357784840823497e-07 1.7105826455458892 0.0010519985934653662 1.1339895392199653 0.0012371065920651935']
['59866.304998802836 2.846844530513863 0.0006511356061123877 0.3266226627059838 0.00020044524564745265 0.0008736741394200702 5.361655741859044e-07 1.7154551612709232 0.001052758643106369 1.1313893692429398 0.001237852308711548']
['59866.3050303408 2.8423125761695203 0.0006507508595778549 0.3255842875116912 0.00020026616035742154 0.0008708966176561094 5.356865437801313e-07 1.7100015100403951 0.0010518180691041048 1.1323110661291251 0.0012368500037333566']
['59866.30506187876 2.841700582741392 0.0006506935682137685 0.32555066421813683 0.0002002846691972628 0.0008708066796162404 5.357360525759571e-07 1.7098249171120634 0.0010519152793973887 1.1318756656293285 0.001236902532435136']
['59866.305093416726 2.8400439391642633 0.0006505653952112241 0.32512660429211354 0.00020019154327411028 0.0008696723731726472 5.35486952559155e-07 1.7075977116182435 0.0010514261726581422 1.1324462275460199 0.0012364191562722108']
['59866.305124954684 2.8438980698952614 0.0006508864582003182 0.32589358314913625 0.00020030934137796962 0.0008717239442036075 5.358020475258116e-07 1.7116259619177325 0.0010520448601784118 1.1322721079775289 0.0012371142102879462']
['59866.30515649265 2.846420045744241 0.0006510803451424535 0.3263342734956127 0.00020038874225756086 0.0008729027349097354 5.360144347942619e-07 1.7139405120567897 0.0010524618816048366 1.1324795336874514 0.0012375708577944172']
['59866.305188030616 2.8424989130928418 0.0006508136983190189 0.3256067897589645 0.00020028148960855426 0.0008709568083096257 5.357275475799913e-07 1.7101196941122088 0.0010518985798768606 1.132379218980633 0.0012369515318987382']
['59866.305219568574 2.841237062733212 0.0006506901147233575 0.32530929526012176 0.0002002390374617597 0.0008701610483090632 5.356139934790297e-07 1.7085572230048414 0.0010516756169210069 1.1326798397283706 0.0012366969024885915']
['59866.30525110654 2.847917882790351 0.0006511676642430785 0.32678463441817385 0.00020045393293904615 0.0008741073931786603 5.361888115875714e-07 1.7163058530366275 0.0010528042696378475 1.1316120297537233 0.0012379079760319294']
['59866.305282644505 2.8463242817310723 0.0006511039316736049 0.3260757119372277 0.00020036007831701296 0.0008722111155801467 5.359377623938134e-07 1.7125825206787169 0.0010523113356985976 1.1337417610523555 0.001237455242455497']
['59866.305314182464 2.847683894105584 0.0006512258271973378 0.32645814648660865 0.000200405370336907 0.00087323407942793 5.360589127946327e-07 1.7145911054968943 0.0010525492139543435 1.13309278860869 0.0012377216673407489']
['59866.30534572043 2.8442175253906234 0.000650927243839026 0.32562125503382794 0.00020028587018413186 0.0008709955010826962 5.357392650632983e-07 1.7101956671944745 0.0010519215871015331 1.134021858196149 0.001237030841241268']
['59866.30537725839 2.84138381707892 0.0006506928119208692 0.3252565439972187 0.000200213269416747 0.0008700199453805697 5.355450672313392e-07 1.7082801680526194 0.001051540280550142 1.1331036490263007 0.0012365832350088525']
['59866.305408796354 2.8415691313682734 0.0006507023831444267 0.32541263845947155 0.0002002739638065968 0.0008704374782420287 5.357074170155836e-07 1.7090999919089893 0.0010518590536060758 1.132469139459284 0.0012368593533958927']
['59866.30544033432 2.843810313351378 0.0006508974411260526 0.32583953497793844 0.0002003371210681748 0.0008715793722101418 5.358763546688993e-07 1.7113420954723657 0.0010521907619126828 1.1324682178790124 0.0012372440657844495']
['59866.30547187228 2.841028219800463 0.0006506856749101456 0.32506835883580665 0.0002001882636670853 0.0008695165739745987 5.354781800268959e-07 1.7072918006082283 0.0010514089478313306 1.1337364191922346 0.0012364678010822025']
['59866.30550341024 2.843949987188088 0.0006509230896934551 0.32574681778352765 0.00020029108795255576 0.0008713313654908126 5.357532219311398e-07 1.7108551354176873 0.0010519489913474568 1.1330948517704007 0.001237051958930184']
['59866.30553494821 2.8476661470520295 0.0006511641991039187 0.32644812349244196 0.00020039120893677797 0.0008732072691915231 5.360210328478825e-07 1.7145384637208088 0.0010524748368528256 1.1331276833312207 0.0012376259921329342']
['59866.30556648617 2.8409167968713396 0.0006506956961173971 0.3249838716107609 0.00020017011754328758 0.0008692905813780584 5.354296414504191e-07 1.706848065182568 0.0010513136425592837 1.1340687316887716 0.0012363920349051805']
['59866.30559802413 2.841014255344745 0.0006506436070204006 0.32556280928778436 0.00020027834880549279 0.0008708391661350403 5.357191463307054e-07 1.709888704242565 0.0010518820840624621 1.1311255511021798 0.0012368480190096543']
['59866.30562956209 2.8460235951830053 0.000651069537396554 0.3260052266397274 0.00020032842953362993 0.0008720225763614499 5.358531059178763e-07 1.7122123247884846 0.001052145113096796 1.1338112703945207 0.00123729579387438']
['59866.30566110006 2.8432180703543617 0.0006508519802193621 0.3259900410327693 0.00020036402555868605 0.0008719819567915131 5.359483207639621e-07 1.7121325684494186 0.0010523320670099059 1.131085501904943 0.0012373403248148046']
['59866.30569263802 2.8457422270559243 0.0006510414008584008 0.3262295507315534 0.00020037519087730618 0.000872622614816386 5.359781865731988e-07 1.7133904975396714 0.0010523907083892132 1.1323517295162528 0.0012374898418716896']
['59866.30572417598 2.843383068257676 0.0006508292215045274 0.32567647578394615 0.00020028477513517424 0.0008711432095758484 5.357363359464153e-07 1.7104856921425744 0.0010519158357939825 1.1328973761151018 0.0012369743736869983']
['59866.30575571395 2.8412383814367255 0.0006507138364511536 0.3251975586486414 0.00020020935170604842 0.0008698621670646693 5.355345878527966e-07 1.707970371053789 0.0010515197043384896 1.1332680103829365 0.0012365768013193048']
['59866.30578725191 2.8462794137263976 0.0006510797500050662 0.3264895446896799 0.00020041845772492036 0.0008733180656333584 5.360939198953804e-07 1.7147560120256298 0.0010526179502359265 1.1315234017007678 0.0012377032722044258']
['59866.30581878987 2.840629399763471 0.0006505847402430352 0.32553154284632196 0.00020025515750285216 0.0008707555323751809 5.356571125415962e-07 1.709724489739086 0.001051760281002375 1.130904910024385 0.0012367134643608002']
['59866.30585032784 2.8413303670996966 0.0006507330999455912 0.32544880627580774 0.00020028115501167113 0.0008705342225571673 5.357266525758251e-07 1.7092899489275617 0.0010518968225402897 1.1320404181721349 0.0012369076330248578']
['59866.305881865796 2.8464423335770594 0.0006511202919445785 0.3262985569137751 0.0002003805015744991 0.0008728071975895705 5.359923920136949e-07 1.7137529249673062 0.0010524186007064029 1.1326894086097532 0.0012375550677423677']
['59866.30591340376 2.8408487061185634 0.0006506529747633198 0.3254677379672633 0.0002002468184750867 0.0008705848624273563 5.356348067014374e-07 1.7093893800801645 0.0010517164835876403 1.131459326038399 0.0012367121150123454']
['59866.30594494173 2.841715761556495 0.0006507127110012087 0.3255282627475765 0.00020028416809490687 0.0008707467585276319 5.357347121907984e-07 1.7097072623297087 0.0010519126475572842 1.1320084992267863 0.001236910364719092']
['59866.305976479685 2.846867454530491 0.0006511119718134932 0.3264474426113448 0.00020040189780721289 0.0008732054479210648 5.36049624218736e-07 1.714534887664626 0.001052530975878219 1.132332566865865 0.001237646256012602']
['59866.30600801765 2.842458868755183 0.0006507866088533174 0.32518042037896144 0.00020021226411253912 0.0008698163243699532 5.355423781702636e-07 1.707880359133201 0.0010515350005910668 1.134578509621982 0.001236628104051843']
['59866.30603955562 2.8420738657303626 0.0006507329339250942 0.32525136030312174 0.00020020594221420058 0.000870006079657225 5.355254678951325e-07 1.7082529427684967 0.0010515017973434905 1.1338209229618659 0.0012365716239310007']
['59866.306071093575 2.8415103243323574 0.0006506777411895181 0.32534917183218104 0.00020024539839119164 0.0008702677130747236 5.356310081573784e-07 1.7087666587824635 0.0010517090251638216 1.132743665549894 0.001236718802513542']
['59866.30610263154 2.844041276471614 0.0006508977422127069 0.32594460617968823 0.00020032708521043965 0.0008718604243300592 5.358495100240806e-07 1.7118939400193711 0.0010521380525758386 1.1321473364522427 0.0012371993988422713']
['59866.3061341695 2.846674632100634 0.0006511663447544185 0.3264708802419472 0.00020045043875436367 0.0008732681406061864 5.361794650873312e-07 1.7146579844640086 0.0010527859178275404 1.1320166476366256 0.0012378916743062806']
['59866.306165707465 2.8411141458769387 0.0006506392651506326 0.32553586365156306 0.00020028799768543205 0.000870767089980429 5.35744955859069e-07 1.7097471830439237 0.0010519327609528994 1.131366962833015 0.0012368888336959571']
['59866.30619724543 2.8420600403630423 0.0006507208975957014 0.32569429305824504 0.000200316505225066 0.000871190868521682 5.358212099069367e-07 1.7105792702638922 0.0010520824854257668 1.13148077009915 0.0012370591104338604']
['59866.30622878339 2.8403222347749764 0.0006505843080570883 0.3252393082401981 0.00020021512377779 0.0008699738419195989 5.355500274116126e-07 1.7081896441186875 0.0010515500198413341 1.132132590656289 0.0012365344257716526']
['59866.306260321355 2.8469224890949354 0.0006511867908351591 0.32620329103389956 0.00020037658990835775 0.0008725523734603237 5.359819288035753e-07 1.7132525789595567 0.0010523980562413748 1.1336699101353787 0.0012375725858869116']
['59866.30629185932 2.8462506476950247 0.00065100247849648 0.32675195788599526 0.00020044875117375803 0.0008740199876052262 5.361749510235454e-07 1.716134232594513 0.0010527770544840234 1.1301164151005116 0.0012377979453273528']
['59866.30632339728 2.841488496698494 0.0006507021591597874 0.3253301496414185 0.00020023930575383426 0.0008702168311303824 5.356147111262542e-07 1.7086667523183745 0.0010516770260180371 1.1328217443801194 0.0012367044380082706']
['59866.306354935245 2.84623002243971 0.000651041965347555 0.32653330358073673 0.00020043734994807982 0.0008734351151092562 5.361444541928901e-07 1.7149858381341216 0.001052717174097058 1.1312441843055883 0.0012377677848782877']
['59866.3063864732 2.8461647103146155 0.0006510243160164831 0.3264822674504152 0.0002004115021010576 0.0008732985999425847 5.360753144849595e-07 1.7147177912311724 0.0010525814185979917 1.131446919083443 0.001237643043378215']
['59866.30641801117 2.843211996286814 0.000650821776810969 0.326004543495257 0.00020034380671223487 0.0008720207490367554 5.358942379176374e-07 1.712208736844837 0.001052225875589469 1.131003259441977 0.0012372341243400181']
['59866.306449549134 2.8425597692996876 0.0006508064791933004 0.3254113215917011 0.00020025520754331152 0.0008704339557879941 5.356572463934695e-07 1.7090930755866658 0.0010517605438199135 1.1334666937130218 0.0012368303500870036']
['59866.30648108709 2.8418842113411755 0.0006507135770167056 0.32548176757399994 0.00020024031879037853 0.0008706223898435205 5.356174208703475e-07 1.7094630649894955 0.0010516823465881225 1.13242114635168 0.0012367149701685413']
['59866.30651262506 2.8477159627006685 0.0006511763062619885 0.32661199930140383 0.00020045494071840335 0.0008736456161671444 5.36191507269357e-07 1.715399155994768 0.0010528095625966561 1.1323168067059004 0.0012379170234438047']
['59866.306544163024 2.8422692577325304 0.0006507687008415463 0.3256063625106192 0.0002003003156309477 0.0008709556654745655 5.357779047988598e-07 1.7101174501608154 0.0010519974560448933 1.132151807571715 0.0012370119439681741']
['59866.30657570098 2.842942294410253 0.000650782156603238 0.32552675854867896 0.00020026458582924107 0.0008707427349866245 5.356823321172245e-07 1.7096993621254148 0.001051809799523325 1.133242932284838 0.0012368594381442293']
['59866.30660723895 2.8427256071440645 0.000650785881607475 0.32564689405612923 0.000200292527304412 0.0008710640822110205 5.357570720145476e-07 1.7103303259250486 0.0010519565509685505 1.132395281219016 0.0012369861958911534']
['59866.30663877691 2.841109030967238 0.0006506301789690673 0.3255758452490306 0.00020029150855385813 0.0008708740356757175 5.357543469862044e-07 1.709957170425581 0.0010519512003879104 1.131151860541657 0.0012368997363500756']
['59866.30667031487 2.847437461514343 0.0006511609998006699 0.32637992791452786 0.00020039615006578812 0.000873024854681909 5.360342497404274e-07 1.714180293668739 0.001052500788160652 1.133257167845604 0.0012376463779045295']
['59866.30670185284 2.8402176466104203 0.0006505925135598046 0.3253030445688591 0.0002002276537390484 0.0008701443285038163 5.355835434665878e-07 1.708524393744008 0.0010516158284613888 1.1316932528664123 0.0012365947069960302']
['59866.3067333908 2.841889741642498 0.0006507282897387597 0.3254302458959286 0.00020025423991790902 0.0008704845758982862 5.35654658118413e-07 1.7091924679408017 0.001051755461753724 1.1326972737016965 0.0012367848876806023']
['59866.30676492876 2.8458198913161707 0.0006511298269737309 0.32558941122949986 0.00020027633353716473 0.0008709103229505002 5.357137557438808e-07 1.7100284203230036 0.001051871499669983 1.1357914709931671 0.0012370948643466353']
['59866.30679646673 2.8410425541757887 0.0006506453846398837 0.32551456436755166 0.0002002792240657035 0.0008707101171008537 5.35721487540605e-07 1.709635317056469 0.0010518866810173505 1.1314072371193196 0.001236852863623996']
['59866.30682800469 2.8468353879852737 0.0006511203352173938 0.32664244095140665 0.00020045402362767786 0.0008737270437146036 5.361890541681431e-07 1.7155590386103292 0.0010528047459436862 1.1312763493749445 0.0012378834856379502']
['59866.30685954265 2.8424480904081317 0.0006507808616831951 0.3257458581895272 0.00020031554816951017 0.0008713287986987365 5.358186499048776e-07 1.7108500955332315 0.001052077458873478 1.1315979948749002 0.0012370863791194198']
['59866.30689108061 2.843637283656653 0.000650890714584403 0.32576079732018576 0.00020029670110942302 0.0008713687589758759 5.357682364128503e-07 1.7109285573539168 0.0010519784722133564 1.1327087263027362 0.0012370599938291362']
['59866.306922618576 2.8423646004496708 0.0006507355902189572 0.32548429588312067 0.00020025995290937014 0.0008706291527493059 5.356699396449823e-07 1.7094763439239533 0.0010517854669609777 1.1328882565257175 0.0012368142451022856']
['59866.30695415654 2.848003037252451 0.0006512419934594051 0.326403094858933 0.0002004122861412457 0.0008730868233158319 5.360774116928841e-07 1.714301968796917 0.0010525855364561223 1.1337010684555342 0.001237761061595332']
['59866.3069856945 2.8397390413657004 0.0006505478446391595 0.32515194362642064 0.00020021537768804542 0.0008697401526736495 5.355507065892976e-07 1.7077307963572514 0.0010515513534036 1.132008245008449 0.0012365163755525435']
['59866.307017232466 2.842403378197098 0.0006507586770313845 0.32551930714126437 0.00020027548279385053 0.0008707228034181703 5.357114801135655e-07 1.709660226582271 0.0010518670314803075 1.1327431516148272 0.0012368957545593048']
['59866.30704877043 2.840963615679986 0.0006506490388841354 0.3256032393178354 0.00020028780782214785 0.0008709473113305357 5.357444479988977e-07 1.710101046837371 0.001051931763771785 1.130862568842615 0.0012368931269244193']
['59866.30708030839 2.8442082208445925 0.0006509220697063892 0.32585486194905083 0.00020035080705868794 0.000871620369911237 5.359129629553073e-07 1.711422594270225 0.0010522626421149578 1.1327856265743674 0.0012373181518193295']
['59866.307111846356 2.8410907363246 0.0006506539819336585 0.3257260341215496 0.00020031380544636776 0.0008712757718346888 5.358139883418094e-07 1.7107459775291471 0.0010520683059157972 1.1303447587954527 0.001237011853022703']
['59866.307143384314 2.8437583053865825 0.0006509003895634105 0.3255349222366879 0.00020027715705210565 0.000870764571815204 5.357159585417557e-07 1.7097422386380667 0.0010518758248534961 1.1340160667485157 0.0012369777961002463']
['59866.30717492228 2.842615199876518 0.0006508339373098164 0.3252028355066798 0.00020021337854670006 0.0008698762819897248 5.355453591401034e-07 1.7079980856443266 0.00105154085371166 1.1346171142321912 0.001236657988685168']
['59866.307206460246 2.8472992762864013 0.0006511716137900799 0.32641177256702764 0.00020041783730732999 0.0008731100350828566 5.360922603571234e-07 1.714347544994893 0.0010526146917401785 1.1329517312915083 0.001237748827457836']
['59866.307237998204 2.840212278058206 0.0006505919955327538 0.3251047523335404 0.00020018365892264788 0.0008696139219588127 5.354658629203599e-07 1.7074829429282585 0.001051384763249201 1.1327293351299474 0.0012363979395986833']
['59866.30726953617 2.8472340624464936 0.0006511832730288836 0.3265430187234791 0.0002004061164223317 0.0008734611018822022 5.360609084783858e-07 1.7150368630434827 0.0010525531324702296 1.132197199403011 0.0012377026103816305']
['59866.307301074135 2.8441365482648227 0.0006509291979485931 0.3253725128202871 0.00020022341819325343 0.0008703301472534418 5.355722139195297e-07 1.7088892480057096 0.0010515935829477597 1.135247300259113 0.0012367529601496434']
['59866.307332612094 2.847152885435796 0.0006511871779995827 0.3265058757636333 0.00020043279392197022 0.0008733617491820255 5.361322674016934e-07 1.7148417844728643 0.0010526932453884992 1.1323111009629319 0.0012378238201285476']
['59866.30736415006 2.841940186887312 0.0006507200167442499 0.32550288865779964 0.00020025966915091542 0.0008706788860601621 5.356691806271552e-07 1.7095739950514688 0.0010517839766329591 1.1323661918358432 0.0012368047839871408']
['59866.30739568802 2.8465536438903385 0.0006511240003926759 0.3263090489710232 0.00020039741548921142 0.0008728352625101461 5.360376345873672e-07 1.713808030309996 0.0010525074342920767 1.1327456135803424 0.001237632563860313']
['59866.307427225984 2.8401575824975804 0.0006506032006939295 0.32546880890853075 0.0002002725511212577 0.0008705877270592298 5.357036382617221e-07 1.7093950047716953 0.001051851634040219 1.1307625777258852 0.0012368008670704692']
['59866.30745876395 2.841253975914773 0.0006507030733576744 0.32521307392097476 0.00020024026922412178 0.000869903668447615 5.35617288286906e-07 1.708051858828649 0.0010516820862611438 1.133202117086124 0.0012367092221859247']
['59866.30749030191 2.8413026784557593 0.0006507124487128642 0.3251963373331518 0.00020022823632884638 0.00086985890020085 5.355851018203045e-07 1.7079639565816795 0.0010516188882817561 1.1333387218740798 0.0012366604130078914']
['59866.30752183987 2.8405100927480547 0.0006505749226576636 0.32553387895770713 0.0002002980470556495 0.000870761781176434 5.357718366480618e-07 1.7097367592316552 0.0010519855412586634 1.1307733335163994 0.0012368998783281967']
['59866.30755337784 2.8472419971309035 0.0006511625877189403 0.3264900869737973 0.00020045159946304602 0.0008733195161744987 5.361825698356385e-07 1.7147588601564985 0.0010527920139865863 1.132483136974405 0.0012378948825965633']
['59866.3075849158 2.8413606692014497 0.0006506876054704422 0.3255597018473263 0.00020026897801062903 0.0008708308541264813 5.356940806446e-07 1.709872383651924 0.0010518328677028837 1.1314882855495256 0.0012368293097646619']
['59866.30761645376 2.840878674272181 0.0006506439571202996 0.32539275010868435 0.00020025166793699483 0.0008703842794296299 5.356477783961267e-07 1.708995536285107 0.0010517419534506033 1.1318831379870742 0.0012367290307845342']
['59866.30764799172 2.8471613049825013 0.0006511221067835507 0.32634812791108947 0.00020038583913677027 0.0008729397937115299 5.360066693148633e-07 1.7140132768439573 0.0010524466341216925 1.133148028138544 0.001237579862318521']
['59866.30767952969 2.8414848827707138 0.0006506739437806179 0.32564730011404086 0.00020030606170525332 0.000871065168364362 5.357932748178364e-07 1.7103324585821476 0.0010520276350065826 1.1311524241885662 0.0012369877630488372']
['59866.30771106765 2.840445602309725 0.0006506025060784834 0.3253007542322447 0.00020022162242911437 0.0008701382021442612 5.355674104785321e-07 1.7085123646651508 0.001051584151413416 1.1319332376445743 0.0012365730259145545']
['59866.30774260561 2.8472741416573077 0.0006511853469288019 0.32667815393847377 0.00020046348281981056 0.0008738225714192138 5.362143563057158e-07 1.7157466068197154 0.0010528544265746354 1.1315275348375924 0.0012379599345748588']
['59866.30777414358 2.8460183661363745 0.0006511224997993687 0.3264359437739386 0.00020045254702600034 0.0008731746899914344 5.361851044461943e-07 1.7144744946110222 0.001052796990682775 1.1315438715253523 0.001237878028456635']
['59866.30780568154 2.844019977371345 0.000650902145489558 0.3259073935721246 0.0002003495374538017 0.0008717608853310829 5.359095669234852e-07 1.7116984956519152 0.0010522559740220678 1.1323214817194298 0.001237301999460132']
['59866.3078372195 2.847235605375399 0.0006511717586562196 0.32616667386295356 0.00020037316976843485 0.0008724544271786751 5.359727803636628e-07 1.7130602618852606 0.0010523800933216116 1.1341753434901385 0.001237549401070938']
['59866.30786875747 2.8477617994911393 0.0006512111735616058 0.3266037826995854 0.00020046333478164108 0.0008736236378008448 5.362139603224143e-07 1.7153560015734528 0.001052853649063241 1.1324057979176865 0.0012379728587159195']
['59866.307900295425 2.840633813292815 0.0006506304725131152 0.3253511815895734 0.00020024335915071968 0.0008702730889204952 5.356255534481135e-07 1.7087772142309527 0.0010516983148672254 1.131856599061862 0.0012366848253525234']
['59866.30793183339 2.846793704073735 0.000651119014541968 0.3265372845222227 0.0002004104367501379 0.0008734457636221242 5.360724648065561e-07 1.7150067464402454 0.001052575823267531 1.1317869576334898 0.0012376881007852602']
['59866.30796337136 2.846544500003591 0.0006510899065122902 0.326326990724521 0.00020040913099856112 0.0008728832544220268 5.360689720869276e-07 1.7139022622086186 0.0010525689653285773 1.1326422377949725 0.0012376669556609543']
['59866.307994909315 2.842639957720241 0.0006507907522750914 0.32578877719654287 0.00020031814202069745 0.000871443601591495 5.358255881273666e-07 1.7110755104860447 0.0010520910820414784 1.1315644472341964 0.0012371031679524502']
['59866.30802644728 2.8403308744026656 0.0006505718204684298 0.3254154932943722 0.00020022614185544234 0.0008704451145628043 5.355794993699612e-07 1.7091149857897698 0.001051607887896231 1.1312158886128958 0.0012365770673408022']
['59866.30805798524 2.844163034014051 0.0006509209511688711 0.325851025473719 0.0002003148994729836 0.0008716101078269831 5.358169147240579e-07 1.711402444714911 0.0010520740518539056 1.1327605892991401 0.001237157182921751']
['59866.308089523205 2.8463259038275774 0.0006510629368435168 0.32626776553898973 0.00020038551397788312 0.0008727248345727355 5.360057995561376e-07 1.713591205561921 0.001052444926354428 1.1327346982656565 0.0012375472802040666']
['59866.30812106117 2.8405630383864295 0.000650616581098768 0.32514989295736063 0.00020019557771947785 0.0008697346673943629 5.354977441881111e-07 1.707720026036558 0.0010514473619720474 1.1328430123498716 0.0012364641080915481']
['59866.30815259913 2.841722241955264 0.0006507372424639246 0.32556167214927406 0.00020026872388630127 0.0008708361244339496 5.356934008942989e-07 1.7098827318764396 0.0010518315330162883 1.1318395100788246 0.001236854289145228']
['59866.308184137095 2.840186234685958 0.0006505881525436396 0.3252182503945036 0.0002002230683108578 0.000869917514856857 5.355712780285588e-07 1.7080790461896198 0.0010515917453301354 1.132107188496338 0.001236571932026854']
['59866.30821567506 2.845425826777339 0.0006509961603338104 0.32603137376292285 0.00020034020972355463 0.0008720925165951336 5.3588461642976e-07 1.7123496521161916 0.0010522069838421989 1.1330761746611475 0.0012373097985612421']
['59866.30824721302 2.8467774170360376 0.0006511031377728218 0.3265260037653053 0.0002004363933585905 0.0008734155890301037 5.361418954374996e-07 1.7149474987673599 0.0010527121499925973 1.1318299182686777 0.0012377956886173303']
['59866.308278750985 2.8398390442847647 0.0006505522798024706 0.32532902076781844 0.00020023613020275058 0.0008702138115368771 5.356062169304222e-07 1.7086608233603913 0.001051660347703522 1.1311782209243735 0.001236611400435919']
['59866.30831028894 2.8429406244062903 0.0006508206152931039 0.32552800622948713 0.00020028656440336328 0.0008707460723743223 5.357411220115717e-07 1.7097059150708358 0.0010519252332109417 1.1332347093354544 0.0012369778371322537']
['59866.30834182691 2.8469939377194065 0.0006511039326172776 0.32663701230385067 0.00020046928175399166 0.0008737125227718668 5.362298677181458e-07 1.7155305268059386 0.001052884883161721 1.1314634109134678 0.0012379430149486506']
['59866.308373364875 2.842657263956702 0.0006507868847414945 0.32546170521156415 0.00020026189027191562 0.0008705687255720623 5.356751218437331e-07 1.7093576954388874 0.0010517956421844307 1.1332995685178144 0.0012368498867161278']
['59866.30840490283 2.8414711306969034 0.00065071191068182 0.32554486060920357 0.00020027899086893334 0.0008707911556994419 5.357208637688624e-07 1.7097944359727077 0.0010518854562443977 1.1316766947241956 0.0012368868193014548']
['59866.3084364408 2.840911458123166 0.0006506484531478528 0.3253152532196113 0.00020021779084456636 0.000870176985093996 5.355571614765036e-07 1.708588514808883 0.0010515640275449915 1.1323229433142827 0.0012365800878270429']
['59866.308467978764 2.8413378030928866 0.0006507274847970001 0.3250661100843171 0.00020018787078927941 0.000869510558849971 5.354771291286633e-07 1.7072799899386402 0.001051406884397476 1.1340578131542465 0.0012364880492866227']
['59866.30849951672 2.846898758790951 0.0006511436065488539 0.3262525619424933 0.00020038341135137098 0.0008726841668830687 5.360001752972656e-07 1.713511354739986 0.0010524338831479569 1.1333874040509648 0.0012375803306239703']
['59866.30853105469 2.8437964382663674 0.0006509165037279816 0.3257024016337762 0.00020029695470609766 0.0008712125579313831 5.357689147517464e-07 1.7106218573202532 0.0010519798041286642 1.1331745809461142 0.001237074695853101']
['59866.30856259265 2.846797742056009 0.0006511750153438392 0.3264571742772539 0.00020044209695974734 0.0008732314788913833 5.361571518461976e-07 1.7145859993553252 0.001052742105881026 1.132211742700684 0.0012378589750463769']
['59866.30859413061 2.8418975759283924 0.000650735602975639 0.3255851515298663 0.00020027439949354985 0.0008708989287949915 5.357085824228478e-07 1.7100060479509784 0.001051861341877888 1.131891527977414 0.0012368787764034193']
['59866.30862566858 2.843385837913617 0.0006508536554773291 0.3255244660273245 0.00020027808318525209 0.0008707366027831672 5.357184358302971e-07 1.7096873215720825 0.0010518806889981728 1.1336985163415347 0.0012369573415180787']
['59866.30865720654 2.8407337969374096 0.000650690678409863 0.3252210214539977 0.00020018778548184423 0.0008699249270890603 5.354769009421087e-07 1.7080936000735176 0.001051406436354224 1.132640196863892 0.0012364682985732294']
['59866.3086887445 2.847134466997712 0.0006510894703690197 0.3265945072914344 0.00020043470855816224 0.0008735988272620814 5.361373888103352e-07 1.7153072861945085 0.0010527033012508523 1.1318271808032037 0.0012377809737145959']
['59866.30872028247 2.846320633137175 0.0006510906037328683 0.32629362614376367 0.0002003903794036316 0.0008727940084060317 5.360188139520724e-07 1.713727028065986 0.0010524704800610905 1.1325936050711891 0.001237583567145772']
['59866.30875182043 2.8419399206307774 0.0006507211013930803 0.3256390771060626 0.00020026386918902254 0.0008710431728623986 5.356804151956581e-07 1.7102892705150348 0.001051806035656631 1.1316506501157426 0.0012368241137857645']
['59866.30878335839 2.842468549909328 0.0006507703956490494 0.32599655128764243 0.000200372529143742 0.0008719993708964517 5.359710667739731e-07 1.7121667609645088 0.0010523767286961239 1.1303017889448193 0.0012373353979234472']
['59866.30881489635 2.846794690504897 0.0006511199134533934 0.3262549489511824 0.00020038988804709862 0.0008726905518281455 5.360174996357523e-07 1.713523891550328 0.0010524678994070307 1.133270798954569 0.001237596792569293']
['59866.30884643432 2.843195117076517 0.0006508050145819295 0.32548929740546517 0.0002002366623343585 0.0008706425311863497 5.35607640314889e-07 1.7095026124236616 0.0010516631425123873 1.1336925046528554 0.001236746753512624']
['59866.30887797228 2.8432269205083283 0.0006508214657008262 0.32556498262240574 0.00020027884789257142 0.0008708449795291241 5.357204813252532e-07 1.7099001188151564 0.0010518847053181271 1.133326801693172 0.00123694381986377']
['59866.30890951024 2.840531026449316 0.0006506399586445696 0.3255217775283745 0.00020028032884444877 0.0008707294113899338 5.357244426834341e-07 1.709673201304488 0.0010518924834267268 1.130857825144828 0.0012368549439908685']
['59866.308941048206 2.8411464859484963 0.0006506304502304943 0.32544935140396514 0.00020022335703485732 0.0008705356807057533 5.355720503285876e-07 1.7092928119956154 0.0010515932617376962 1.1318536739528808 0.0012365954758526583']
['59866.30897258617 2.8463288352254184 0.0006510285551631217 0.32618771743095765 0.00020034491951094872 0.0008725107160504085 5.358972145128638e-07 1.7131707848264583 0.001052231720120529 1.13315805039896 0.0012373478785150072']
['59866.30900412413 2.8473345470247637 0.0006511409573805264 0.326674718290067 0.0002004574581774491 0.0008738133814960766 5.361982411525698e-07 1.715728562447831 0.001052822784545426 1.1316059845769328 0.001237909674425567']
['59866.309035662096 2.8476823477945494 0.0006512007785653212 0.3269269589168445 0.0002004968803680528 0.0008744880931364166 5.363036905055461e-07 1.717053355655696 0.0010530298338658236 1.1306289921388535 0.0012381172339546707']
['59866.309067200054 2.8436896357913413 0.0006508662316403205 0.32580884559912343 0.0002003429247227797 0.0008714972820195732 5.358918787078634e-07 1.711180911760102 0.0010522212432919102 1.1325087240312393 0.0012372535699380482']
['59866.30909873802 2.8423986021556034 0.0006507656292263473 0.3257730376943272 0.0002003148433983024 0.0008714015004220928 5.358167647314075e-07 1.7109928450332312 0.0010520737573440253 1.1314057571223721 0.0012370752180341901']
['59866.309130275986 2.8401176219394095 0.0006505758717220247 0.3252664317051407 0.00020022164195765055 0.0008700463937434544 5.355674627148861e-07 1.7083320992917055 0.0010515842539792573 1.131785522647704 0.0012365591001177354']
['59866.309161813944 2.841897959603849 0.000650730628778962 0.3254696709122382 0.0002002556509484504 0.000870590032809667 5.356584324459006e-07 1.7093995321020916 0.001051762872628416 1.1324984275017576 0.001236792420526032']
['59866.30919335191 2.8409173807913435 0.0006506538002502525 0.3252615127293981 0.00020022193104297128 0.0008700332361080865 5.355682359814032e-07 1.7083062643350742 0.001051585772284513 1.1326111164562693 0.0012366013926287287']
['59866.309224889876 2.8408369562216613 0.000650622722233838 0.32541311071402107 0.00020025812323496155 0.0008704387414629691 5.356650454983206e-07 1.7091024722375057 0.001051775857326479 1.1317344839841557 0.0012367466922299892']
['59866.309256427834 2.8429122461829497 0.0006508068377850179 0.3253292256999788 0.0002002341997009547 0.0008702143597043782 5.356010530833051e-07 1.7086618996847627 0.0010516502085134176 1.134250346498187 0.0012367367145734978']
['59866.3092879658 2.847591037720533 0.0006511904974224583 0.3266643075077875 0.00020044180796984336 0.0008737855339757197 5.361563788349082e-07 1.7156738839694723 0.0010527405880769085 1.1319171537510606 0.0012378658286413045']
['59866.30931950376 2.8465814808155883 0.0006510706090095772 0.3264069145795808 0.00020041492533548155 0.0008730970405834342 5.360844712022693e-07 1.7143220303549414 0.0010525993977703865 1.132259450460647 0.0012376826855469386']
['59866.309351041724 2.8424053080998006 0.0006507663671507289 0.3258055524740866 0.00020032550763651028 0.0008714884733283492 5.358452902141822e-07 1.711163615935329 0.0010521297669984786 1.1312416921644717 0.00123712324010942']
['59866.30938257969 2.842446422648202 0.0006508099122994969 0.3255005643531257 0.00020026553738044684 0.000870672668840362 5.356848773958463e-07 1.7095617875689375 0.0010518147971662125 1.1328846350792645 0.0012368782921068182']
['59866.30941411765 2.846256847342903 0.0006510992320654937 0.32645074857383327 0.00020042173384558754 0.0008732142909508415 5.361026831020753e-07 1.71455225091299 0.0010526351567520355 1.1317045964299128 0.001237728154009053']
['59866.309445655614 2.84396264326091 0.0006509232456403904 0.3257725639125402 0.00020032713820546002 0.0008714002331159862 5.358496517790294e-07 1.7109903566835096 0.0010521383309110297 1.1329722865774006 0.0012372130532318463']
['59866.30947719358 2.8420166284262396 0.0006507095511590941 0.32553269031162385 0.00020025334744263785 0.0008707586016991275 5.35652270860413e-07 1.7097305163425622 0.0010517507743836021 1.1322861120836774 0.0012367710424270842']
['59866.30950873154 2.840342888226899 0.0006506190372814776 0.32498989306594805 0.0002001726895805451 0.0008693066880059179 5.354365213234166e-07 1.7068796904724162 0.0010513271511583251 1.1334631977544827 0.0012363631790197234']
['59866.3095402695 2.8473557130147773 0.0006511425896068038 0.3267336312168336 0.00020045621980979017 0.0008739709660928314 5.361949286763634e-07 1.7160379790800084 0.001052816280513604 1.1313177339347689 0.0012379050014093788']
['59866.30957180746 2.8437321386032544 0.0006508987514451804 0.3256110469644091 0.0002003042509142658 0.0008709681957934957 5.357884311819277e-07 1.7101420533845018 0.0010520181245497154 1.1335900852187526 0.0012370979423691542']
['59866.30960334543 2.8407437222989262 0.0006506330506385775 0.32522464933128636 0.00020023192190040474 0.000869934631200042 5.355949602561303e-07 1.7081126540508738 0.0010516382452752352 1.1326310682480525 0.0012366350979609293']
['59866.30963488339 2.846142026440465 0.0006510710040936859 0.32618070875522287 0.00020038669182341658 0.0008724919687329678 5.360089501433452e-07 1.713133974554742 0.0010524511125179444 1.1330080518857228 0.0012375567852069736']
['59866.30966642135 2.840292805323948 0.000650587527009603 0.32507857651995653 0.00020019388387501947 0.0008695439049819837 5.354932133693148e-07 1.7073454649157382 0.0010514384657301444 1.1329473404082095 0.0012364412551825626']
['59866.30969795932 2.843265010228656 0.0006508257974621566 0.3256939621063668 0.0002002930734337134 0.0008711899832674409 5.357585328410667e-07 1.7105775320712544 0.0010519594192947132 1.1326874781574015 0.001237009635566806']
['59866.30972949728 2.8474061942121427 0.0006511415381933703 0.3265892252761029 0.00020044610181205186 0.0008735846985419218 5.361678643174685e-07 1.7152795445173474 0.0010527631397691801 1.1321266496947953 0.0012378592533957527']
['59866.30976103524 2.843557533431889 0.0006508320026218708 0.32565840975107563 0.00020027448382154605 0.0008710948852324299 5.357088079895274e-07 1.7103908075161536 0.0010518617847770277 1.1331667259157354 0.001236929872673107']
['59866.30979257321 2.847472707058375 0.0006511752203783278 0.3263956982225261 0.00020040208203793645 0.0008730670382528671 5.36050117012523e-07 1.7142631209166288 0.001052531943476557 1.1332095861417464 0.0012376803544022594']
['59866.309824111166 2.843935476719965 0.0006508584587278851 0.3259986570764676 0.00020032817770264285 0.0008720050036141094 5.358524323019702e-07 1.7121778207797669 0.001052143790455057 1.131757655940198 0.0012371836117128182']
['59866.30985564913 2.8406884440433844 0.0006506125741594183 0.32567501612110306 0.00020028915129737164 0.0008711393051631304 5.357480416244907e-07 1.7104780258461296 0.0010519388198391368 1.1302104181972548 0.0012368799466152324']
['59866.3098871871 2.8464376026739964 0.0006510891969226352 0.32632216597176533 0.00020038514661482288 0.0008728703488211822 5.36004816906609e-07 1.7138769221206165 0.0010524429969265908 1.1325606805533799 0.0012375594547855816']
['59866.309918725055 2.840837694852123 0.0006506294548175441 0.3253461064329446 0.00020023003119306362 0.0008702595135210928 5.355899028541256e-07 1.7087505589965577 0.00105162831508962 1.1320871358555653 0.0012366247614270093']
['59866.30995026302 2.843384934276237 0.0006508320200119846 0.3258632156165565 0.00020031426648286536 0.0008716427149108416 5.358152215558857e-07 1.7114664685743517 0.0010520707273259735 1.1319184657018855 0.0012371075675013403']
['59866.30998180099 2.8471601016375896 0.0006511767570027577 0.32637186961485704 0.000200401023661461 0.000873003299753749 5.360472859898723e-07 1.714137970666266 0.001052526384776581 1.1330221309713235 0.00123767643570987']
['59866.310013338945 2.842117635661538 0.0006507482530295805 0.3257268271639515 0.00020030075689590843 0.0008712778931223922 5.357790851265861e-07 1.7107501426678127 0.0010519997736129646 1.1313674929937254 0.001237003157838645']
['59866.31004487691 2.843508654586425 0.0006508714956638704 0.3257103463180323 0.00020030526353831784 0.0008712338089527388 5.357911398226568e-07 1.710663583603111 0.0010520234429533502 1.132845070983314 0.0012370881247474427']
['59866.31007641487 2.8410956502261104 0.0006506381408513172 0.3252940633224748 0.0002002098270860603 0.0008701203048104181 5.355358594339519e-07 1.7084772233323255 0.0010515222010822496 1.132618426893785 0.0012365390934779691']
['59866.310107952835 2.841913559866492 0.0006507619681111799 0.3252815864842594 0.000200222080477659 0.0008700869308528361 5.355686357002136e-07 1.7084116937198501 0.0010515865571305621 1.133501866146642 0.0012366589773569936']
['59866.3101394908 2.8406255971159933 0.0006506251838091456 0.32515917005623063 0.00020020080035195766 0.000869759482455585 5.355117140666844e-07 1.7077687502953292 0.0010514747917644836 1.1328568468206641 0.0012364919601529354']
['59866.31017102876 2.840900464755444 0.0006506312500026606 0.32557191617672265 0.0002002791876040383 0.0008708635259063129 5.357213900102815e-07 1.7099365345416107 0.001051886489517008 1.1309639302138332 0.0012368452653054218']
['59866.310202566725 2.842103668706028 0.0006506987621591217 0.3253890836100043 0.0002002525741903636 0.0008703744720113313 5.356502025087877e-07 1.7089762794643084 0.0010517467131846829 1.1331273892417197 0.0012367619123219297']
['59866.31023410469 2.841587476903059 0.0006506821612185773 0.3256008036835724 0.00020026668860384693 0.0008709407963182245 5.356879567722283e-07 1.7100882546406115 0.0010518208435075995 1.1314992222624474 0.001236816219882775']
['59866.31026564265 2.8476950112945723 0.0006512122982402152 0.3265617973664997 0.00020044587405364098 0.0008735113323672659 5.361672550926463e-07 1.7151354903702716 0.001052761943559039 1.1325595209243007 0.001237895458908186']
['59866.310297180615 2.845973571601836 0.0006510071959974236 0.3265452909792016 0.00020042740666190268 0.0008734671798776678 5.361178571652317e-07 1.7150487971596724 0.0010526649509553711 1.1309247744421635 0.0012377050812735246']
['59866.31032871857 2.8457843692120743 0.0006510566657136565 0.32585237774553694 0.0002002857225739144 0.0008716137249823482 5.357388702247141e-07 1.711409546982862 0.0010519208118377858 1.1343748222292123 0.0012370982888791214']
['59866.31036025654 2.844681342520443 0.0006509833126295632 0.3258038209741456 0.00020030466718916012 0.0008714838417859194 5.357895446644003e-07 1.7111545219230337 0.0010520203108674376 1.1335268205974094 0.0012371442954642678']
['59866.310391794505 2.8456773394974775 0.0006510480426693514 0.3262285282915097 0.00020039758928026434 0.0008726198799191261 5.360380994563612e-07 1.7133851275814589 0.0010525083470602121 1.1322922119160186 0.0012375933801111792']
['59866.31042333246 2.8407433737840453 0.0006506474436101963 0.3256080605369805 0.00020029012232326834 0.000870960207479421 5.357506389954375e-07 1.7101263683664942 0.0010519439197650647 1.130617005417551 0.0012369026260005969']
['59866.31045487043 2.8457453667067805 0.0006510134915555874 0.3264038447567528 0.00020040374166875358 0.0008730888291972578 5.360545563141743e-07 1.7143059073358868 0.0010525406600249664 1.1314394593708936 0.0012376026855146966']
['59866.310486408394 2.8476574799240986 0.0006512260935047797 0.3262146179047759 0.00020038101301163473 0.0008725826714013277 5.359937600430768e-07 1.7133120688276047 0.0010524212868258127 1.134345411096494 0.0012376130210310474']
['59866.31051794635 2.8470096267393914 0.0006511371397739901 0.32631292235606213 0.00020039945254625733 0.0008728456233231787 5.360430834562448e-07 1.7138283737188138 0.0010525181331210993 1.1331812530205776 0.0012376485750574663']
['59866.31054948432 2.8410458162596353 0.0006506665046123999 0.32516561806896865 0.00020019650827625754 0.0008697767300707174 5.355002333093096e-07 1.707802615908449 0.0010514522493500923 1.1332432003511863 0.0012364945341116096']
['59866.31058102228 2.8408628086679864 0.0006506222396471946 0.3253530776669095 0.00020024725329876295 0.0008702781606865545 5.356359697995458e-07 1.7087871726203232 0.001051718767325436 1.1320756360476631 0.0012366978872255204']
['59866.31061256024 2.843474928873537 0.0006508550614994593 0.3259996599994357 0.00020037168736996606 0.000872007686305671 5.359688151360335e-07 1.7121830882323306 0.001052372307615368 1.1312918406412062 0.0012373761695277472']
['59866.31064409821 2.8466662475085442 0.0006511281255329736 0.32638157697078646 0.00020039944428459956 0.0008730292656979593 5.360430613573596e-07 1.7141889546785003 0.0010525180897300397 1.132477292830044 0.0012376437957138781']
['59866.31067563617 2.841561369237352 0.0006507160660514093 0.32536931864468455 0.0002002412363020143 0.0008703216032393871 5.356198750974429e-07 1.7088724718733432 0.0010516871654517557 1.1326888973640086 0.0012367203776898683']
['59866.31070717413 2.8437647439443205 0.0006508733710985859 0.3257749158643595 0.00020032689651218553 0.0008714065242883889 5.358490052802167e-07 1.7110027093716365 0.0010521370615135795 1.132762034572684 0.001237185734405173']
['59866.3107387121 2.847761505862548 0.0006512053726949095 0.32637347102778597 0.00020038617473640556 0.0008730075833299433 5.360075670012643e-07 1.7141463814484557 0.0010524483967248191 1.1336151244140924 0.0012376251715262414']
['59866.31077025006 2.8469314206472243 0.0006511592498378479 0.3261346548674474 0.00020035478081845053 0.0008723687804323281 5.359235922579775e-07 1.7128920948920558 0.0010522835127019462 1.1340393257551684 0.0012374606901852422']
['59866.31080178802 2.841922062465498 0.0006507355096190522 0.32572603168740855 0.00020030591568622453 0.0008712757653236708 5.357928842354799e-07 1.710745964744793 0.0010520268680999187 1.131176097720705 0.0012370194964847123']
['59866.31083332598 2.844003840219788 0.000650918658856641 0.3258975196109268 0.00020032921648674773 0.0008717344737389394 5.358552109175179e-07 1.7116466366120104 0.0010521492462539272 1.1323572036077774 0.0012372199225846776']
['59866.310864863946 2.8439470162816187 0.0006509242543702913 0.3253775285026761 0.00020023329626906803 0.0008703435635668063 5.355986365177503e-07 1.7089155908754 0.0010516454635980464 1.1350314254062188 0.0012367944720259182']
['59866.31089640191 2.8412555826872072 0.0006506479057259137 0.3256117879426915 0.00020029643759682315 0.0008709701778162918 5.357675315501136e-07 1.7101459450771614 0.001051977088218609 1.1311096376100458 0.0012369310778545506']
['59866.31092793987 2.8434022356665825 0.0006508399072331122 0.32576565696336757 0.0002002973083222668 0.0008713817579041793 5.357698606300872e-07 1.7109540806899557 0.0010519816613564434 1.1324481549766268 0.0012370359738817093']
['59866.310959477836 2.8469399690873063 0.0006511316434854436 0.32635553602556217 0.0002003907539298847 0.000872959609476863 5.36019815762232e-07 1.7140521850082049 0.0010524724471107389 1.1328877840791014 0.0012376068313787387']
['59866.3109910158 2.847381431128657 0.0006511536719687726 0.3264272206142858 0.00020038853925796466 0.0008731513566472643 5.360138917961244e-07 1.7144286796968793 0.0010524608154304867 1.1329527514317779 0.0012376085295985242']
['59866.31102255376 2.8469616886192326 0.0006511006469143664 0.326527018687911 0.00020042718668464277 0.0008734183038191719 5.361172687540001e-07 1.7149528292432303 0.0010526637956126197 1.1320088593760023 0.0012377532544921358']
['59866.311054091726 2.8412043741827144 0.0006507192400105151 0.32521896710812326 0.00020023217158083396 0.0008699194319747621 5.355956281195673e-07 1.708082810441824 0.0010516395566220272 1.1331215637408905 0.0012366815622350145']
['59866.311085629684 2.8417607870091293 0.0006507330751469627 0.32538396897530386 0.00020024572621246296 0.0008703607910131013 5.356318850376437e-07 1.7089494168871002 0.0010517107469141963 1.132811370122029 0.0012367493805395817']
['59866.31111716765 2.8478996204082176 0.0006512401770744455 0.32622341907231167 0.0002003657597390346 0.0008726062134066771 5.359529594761416e-07 1.713358293447015 0.0010523411750999717 1.1345413269612026 0.0012375523088123364']
['59866.311148705616 2.844522611836825 0.0006509855570789534 0.32602936748821276 0.00020035615821583977 0.0008720871500650948 5.359272766210548e-07 1.712339114959101 0.0010522907469319317 1.1321834968777242 0.0012373754529664623']
['59866.311180243574 2.8472014887590027 0.0006511517957242551 0.3266508644070742 0.0002004471476179576 0.0008737495753886776 5.361706617154419e-07 1.7156032794489193 0.0010527686324472564 1.1315982093100834 0.001237869320461489']
['59866.31121178154 2.846784346930986 0.000651151206392313 0.32623994480519136 0.0002003738902339268 0.000872650417643249 5.359747075173497e-07 1.7134450882625598 0.0010523838772790275 1.1333392586684263 0.0012375418048466095']
['59866.311243319506 2.84256469386598 0.0006507867284030155 0.32569900091795867 0.00020030466512397553 0.0008712034614484854 5.357895391402938e-07 1.7106039964178503 0.00105202030002088 1.1319606974481298 0.001237040855235397']
['59866.311274857464 2.8473017653625945 0.0006511587607175197 0.326482231857875 0.0002004159383380375 0.0008732985047370602 5.360871808554481e-07 1.7147176042955623 0.0010526047181619617 1.1325841610670322 0.0012377335837554053']
['59866.31130639543 2.8471359258043885 0.0006511287222832414 0.3269411267510949 0.00020051085853531645 0.0008745259902936244 5.363410803276533e-07 1.717127766549868 0.0010531032486098555 1.1300081592545204 0.001238141779125007']
['59866.31133793339 2.84152729763345 0.0006506841104453428 0.3256404390420471 0.00020029113768754063 0.0008710468158681818 5.357533549659077e-07 1.7102964235401632 0.0010519492525606128 1.1312308740932868 0.0012369264495308034']
['59866.311369471354 2.840664538822572 0.0006506627019342152 0.32533009535372737 0.0002002433613524697 0.0008702166859177036 5.356255593375152e-07 1.7086664671939464 0.0010516983264310384 1.1319980716286258 0.0012367017916644985']
['59866.31140100932 2.8399998341884003 0.0006505821796881381 0.3253277757043948 0.00020024424001570667 0.0008702104811503504 5.356279096500778e-07 1.7086542841617376 0.0010517029412589636 1.1313455500266627 0.0012366633532132033']
['59866.31143254728 2.8406123002425683 0.0006506148906867522 0.32544679394195275 0.0002002767699335918 0.0008705288398196854 5.357149230488979e-07 1.709279379947231 0.0010518737916680244 1.1313329202953373 0.0012368258606535525']
['59866.311464085244 2.842579142891509 0.000650806875426159 0.32561489553086376 0.00020029037976092293 0.0008709784902199676 5.357513276084671e-07 1.7101622664436122 0.0010519452718535868 1.1324168764478968 0.001236987649120668']
['59866.31149562321 2.8414506534461257 0.0006506489147689031 0.32555289332546977 0.0002002771799023105 0.000870812642195244 5.357160196631515e-07 1.70983662460856 0.0010518759448650762 1.1316140288375658 0.0012368455900700574']
['59866.31152716117 2.847113924058141 0.0006511583216529898 0.3263315223979272 0.00020038301250544416 0.0008728953760728348 5.359991084350675e-07 1.7139260630143236 0.0010524317883689295 1.1331878610438173 0.0012375862915479316']
['59866.31155869913 2.84588584485433 0.0006510128544625083 0.326108626508251 0.00020033831380732606 0.0008722991578772579 5.358795450946429e-07 1.7127553913248479 0.0010521970262989814 1.1331304535294822 0.0012373101142510079']
['59866.31159023709 2.8470911133214525 0.0006511303236545553 0.32651651370700646 0.0002004233842258531 0.0008733902043294568 5.361070976596761e-07 1.7148976560241938 0.001052643824715615 1.1321934572972587 0.0012377518814747988']
['59866.31162177506 2.840435057654835 0.0006505987859845938 0.32535316911992035 0.00020025623545183593 0.0008702784053117433 5.356599959182209e-07 1.7087876529407582 0.0010517659424991385 1.1316474047140768 0.0012367256680952848']
['59866.31165331302 2.841212810492269 0.0006506303826687118 0.3254970223874928 0.0002002601896614833 0.0008706631945321479 5.356705729268159e-07 1.7095431848082605 0.0010517867104069504 1.1316696256840084 0.0012367599520684313']
['59866.31168485098 2.840725687949318 0.0006506531400363965 0.325606332322305 0.00020029536009742973 0.0008709555847246592 5.35764649376086e-07 1.710117291608745 0.0010519714290831395 1.1306083963405729 0.0012369290182732578']
['59866.31171638895 2.8467901650739496 0.0006511421412803896 0.3266900406685095 0.0002004628555649205 0.0008738543669123631 5.362126784785505e-07 1.7158090371245247 0.0010528511321687 1.1309811279494248 0.0012379344064449153']
['59866.31174792691 2.8460096512574573 0.0006510468754205121 0.326442582468851 0.00020040138829433105 0.0008731924476571653 5.360482613364888e-07 1.7145093617061504 0.0010525282998651842 1.1315002895513069 0.0012376097349374345']
['59866.31177946487 2.8441488780898125 0.0006509109875693585 0.3262051867837975 0.00020036104495223367 0.0008725574443505274 5.359403480202594e-07 1.7132625356291886 0.0010523164125642525 1.130886342460624 0.0012373580508044614']
['59866.31181100284 2.8415245492134344 0.0006507021167294932 0.3257091423731222 0.00020030587496699964 0.0008712305885530136 5.35792775316725e-07 1.710657260363037 0.0010520266542384435 1.1308672888503974 0.001237001748561568']
['59866.311842540796 2.8437901532878334 0.0006509441412129696 0.3256509337756254 0.00020028672657785071 0.0008710748879476006 5.357415558077283e-07 1.710351542939209 0.0010519260849677033 1.1334386103486243 0.0012370435575253485']
['59866.31187407876 2.846644813250379 0.0006510957787075233 0.3265231203617198 0.00020041622399932376 0.0008734078762917246 5.360879449631079e-07 1.7149323548409656 0.0010526062184838434 1.1317124584094134 0.0012377017266860433']
['59866.31190561673 2.848321693135384 0.0006512342005233763 0.3265009418469408 0.00020041486712569855 0.0008733485515815142 5.360843154984928e-07 1.7148158710448573 0.001052599092046736 1.1335058220905267 0.0012377684890596198']
['59866.311937154685 2.8463602597451825 0.0006511066587672167 0.3262195613556256 0.0002003867646047484 0.0008725958945044983 5.360091448241641e-07 1.7133380323299663 0.0010524514947728384 1.1330222274152162 0.0012375758683574073']
['59866.31196869265 2.846107300934482 0.0006510312380708294 0.32637129767338713 0.00020038718721009555 0.0008730017698829574 5.360102752397939e-07 1.7141349667719914 0.0010524537143387373 1.1319723341624908 0.0012375380777048606']
['59866.31200023062 2.8423676680539476 0.0006507847789376391 0.32548899379319735 0.00020025956460042422 0.0008706417190620942 5.356689009678699e-07 1.7095010178214147 0.0010517834275232366 1.1328666502325329 0.001236838391589394']
['59866.312031768575 2.8472827771936333 0.000651144958034289 0.3263519815083412 0.00020038032868775331 0.000872950101594745 5.359919295636078e-07 1.7140335163253215 0.0010524176926877801 1.1332492608683118 0.001237567273426276']
['59866.31206330654 2.84717487978621 0.0006511899657235402 0.32639587996029906 0.0002004196122786271 0.0008730675243783278 5.360970081799097e-07 1.7142640754217389 0.0010526240140684197 1.1329108043644711 0.001237766410294179']
['59866.3120948445 2.841128948664881 0.0006506803300917102 0.32529963497768055 0.00020023206923285396 0.0008701352082804551 5.355953543517197e-07 1.708506486227314 0.0010516390190801156 1.1326224624375671 0.0012366606318711874']
['59866.312126382465 2.845921752896123 0.000651073128028621 0.32618767441612473 0.00020036712367066061 0.0008725106009911936 5.359566078200126e-07 1.7131705589082182 0.0010523483386064107 1.1327511939879047 0.001237470502197384']
['59866.31215792043 2.843250373749006 0.0006508416996587493 0.32564264408244964 0.00020030048726119693 0.0008710527140712034 5.357783638879783e-07 1.7103080046347146 0.0010519983574642697 1.1329423691142912 0.001237051115403972']
['59866.31218945839 2.8478302541660296 0.0006511848076572693 0.32668634369216537 0.0002004629102413783 0.000873844477970184 5.362128247311309e-07 1.7157896202319611 0.00105285141933497 1.1320406339340685 0.001237957093327267']
['59866.312220996355 2.8463605677165633 0.0006510857779863724 0.32634448229448926 0.00020038078420400306 0.0008729300421501426 5.359931480117222e-07 1.7139941296979477 0.001052420085105058 1.1323664380186156 0.0012375381714632714']
['59866.31225253432 2.8465830919739012 0.000651071896620978 0.326471689537557 0.00020042135386404126 0.0008732703053691565 5.361016666996992e-07 1.7146622349661609 0.0010526331610506369 1.1319208570077404 0.0012377120773075997']
['59866.31228407228 2.841719327674135 0.0006507226539750853 0.3255463283550151 0.00020026912178523914 0.0008707950817330741 5.356944652234217e-07 1.7098021447217182 0.0010518336228216342 1.1319171829524166 0.0012368483910708144']
['59866.312315610245 2.8399701315292445 0.0006505368478055292 0.32495827756204515 0.00020015873953218818 0.0008692221205483635 5.353992067158136e-07 1.7067136426578002 0.001051253884097627 1.1332564888714443 0.0012362576265419361']
['59866.3123471482 2.8460466190006817 0.0006510085694246416 0.32643877358154866 0.00020039026885843023 0.0008731822593673863 5.360185182576986e-07 1.714489357045949 0.0010524698994665452 1.1315572619547327 0.0012375399172339606']
['59866.31237868617 2.8427515842801148 0.0006508002848990324 0.32541682520274 0.00020022847226259307 0.0008704486772485268 5.355857329131117e-07 1.709121981106828 0.0010516201274295856 1.1336296031732869 0.0012367076870625814']
['59866.312410224135 2.840394593301526 0.0006505991536079887 0.32533793319946624 0.00020024110136423475 0.0008702376511595949 5.356195141560207e-07 1.7087076323501378 0.0010516864567449305 1.1316869609513882 0.0012366582640229021']
['59866.31244176209 2.842529518637223 0.0006507735108811094 0.3255937913454575 0.00020028231169393507 0.0008709220392043821 5.357297465539745e-07 1.7100514251337056 0.00105190289755218 1.1324780935035172 0.001236934059820166']
['59866.31247330006 2.8426394671475315 0.0006508279330653756 0.32526724660202944 0.0002002056944093189 0.0008700485734891342 5.355248050485469e-07 1.7083363792123396 0.0010515004958472633 1.1343030879351919 0.0012366205122126956']
['59866.312504838024 2.8407578843815267 0.0006506802854386999 0.3251712970276046 0.00020021044094081414 0.0008697919205638019 5.355375014174547e-07 1.7078324423718731 0.0010515254251093182 1.1329254420096535 0.0012365640110847155']
['59866.31253637598 2.8465320302116983 0.0006511089692094995 0.32628100474169497 0.0002003925569476916 0.0008727602477585025 5.360246386058698e-07 1.7136607391895746 0.0010524819167420777 1.1328712910221237 0.001237602955254283']
['59866.31256791395 2.841321704909818 0.0006506504877505687 0.3255147075802827 0.00020026724565383217 0.0008707105001767203 5.356894468101896e-07 1.709636069224174 0.001051823769190295 1.1316856356856437 0.0012368020450515642']
['59866.31259945191 2.8446327802604534 0.0006509948930727293 0.32597180448771584 0.0002003632996115787 0.0008719331763496614 5.359463789476501e-07 1.7120367882758187 0.0010523282542624932 1.1325959919846347 0.0012374122617486545']
['59866.31263098987 2.843490992964762 0.0006508713337252604 0.32563534758728696 0.0002002694311776 0.0008710331968733483 5.356952928086921e-07 1.7102696827063393 0.0010518352477815126 1.1332213102584228 0.0012369280017611758']
['59866.31266252784 2.846844031077005 0.000651121556748116 0.326566337108569 0.00020045350893474798 0.0008735234756007229 5.361876774299253e-07 1.7151593335534088 0.0010528020427245169 1.1316846975235961 0.0012378818291044608']
['59866.3126940658 2.8444924116900783 0.000650925983457069 0.325992664614432 0.00020035219817336462 0.0008719889745392479 5.359166840103863e-07 1.712146347764874 0.0010522699483895201 1.1323460639252043 0.001237326424280689']
['59866.31272560376 2.8418343084935827 0.0006507477179255165 0.32517967802991565 0.00020019593967047228 0.0008698143386805391 5.35498712361051e-07 1.7078764602411538 0.0010514492629751697 1.1339578482524288 0.0012365347326283621']
['59866.31275714173 2.8418857210798625 0.0006507464560730628 0.3253441808691607 0.00020024276023194085 0.0008702543628825308 5.356239514164469e-07 1.7087404457413904 0.0010516951692854037 1.133145275338472 0.0012367431743049583']
['59866.31278867969 2.8408131947568678 0.0006506377803763242 0.3253957253589065 0.00020025433215775995 0.000870392237846097 5.356549048482991e-07 1.709011162599299 0.0010517559462067225 1.1318020321575688 0.0012367376810117124']
['59866.31282021765 2.846675337836148 0.0006511210700220703 0.3263373593611176 0.00020040172781225486 0.0008729109892080348 5.360491695038138e-07 1.7139567193336007 0.001052530083047557 1.132718618502547 0.0012376502832168637']
['59866.31285175561 2.8427597103040885 0.0006508353443640625 0.32557687380934874 0.00020027960372446117 0.0008708767869439343 5.357225030795626e-07 1.7099625725280923 0.0010518886750234308 1.1327971377759962 0.001236954497997415']
['59866.312883293576 2.8407394516428015 0.0006506297979019342 0.325370567185248 0.00020023764878149925 0.000870324942926821 5.356102789357049e-07 1.7088790293342857 0.001051668323432244 1.1318604223085158 0.0012366589652886113']
['59866.31291483154 2.840137692463763 0.000650591378400099 0.325287680443147 0.00020021126079124745 0.0008701032314188857 5.355396944132371e-07 1.7084436998064443 0.0010515297310464678 1.1316939926573188 0.0012365208922307772']
['59866.3129463695 2.843318864321311 0.0006508045534261136 0.32572932641619035 0.0002003116705720646 0.0008712845783047089 5.35808277824192e-07 1.7107632689925965 0.0010520570933406754 1.1325555953287145 0.0012370815229436553']
['59866.312977907466 2.8434966302379663 0.000650828315658724 0.3257568864755792 0.0002002808875456044 0.0008713582979632575 5.357259371380666e-07 1.7109080172036724 0.0010518954177815357 1.132588613034294 0.0012369565337605696']
['59866.31300944543 2.843467764476902 0.0006508498313692997 0.32556622626587856 0.00020027461668090893 0.0008708483061174627 5.35709163371449e-07 1.7099066505560852 0.001051862482567799 1.133561113920817 0.0012369398470528546']
['59866.31304098339 2.847699009217333 0.0006511781332673493 0.3266972640566474 0.00020045022248402184 0.0008738736885582121 5.361788865916346e-07 1.715846975087434 0.0010527847819538964 1.1318520341298992 0.0012378969094231']
['59866.313072521356 2.843815818877292 0.000650885496663055 0.3255020634612079 0.00020025983090072737 0.0008706766787640849 5.356696132873588e-07 1.7095696610357558 0.0010517848261592823 1.1342461578415362 0.0012368925783208596']
['59866.313104059314 2.8438470027285385 0.0006508544608796833 0.3256691910350988 0.00020025035796932501 0.0008711237237978948 5.356442743989848e-07 1.7104474319070315 0.0010517350733683037 1.133399570821507 0.001236833939459948']
['59866.31313559728 2.8440104540099655 0.0006509035501768766 0.32587677488068434 0.0002003407844613345 0.000871678984220264 5.358861537803255e-07 1.7115376831968716 0.0010522100024229755 1.132472770813094 0.0012372636424108727']
['59866.313167135246 2.8421305424505547 0.0006507547331259055 0.32546106558968035 0.0002002440197785715 0.0008705670146647596 5.356273205437128e-07 1.709354336080254 0.0010517017845513208 1.1327762063703006 0.0012367531549643208']
['59866.313198673204 2.8466812027762063 0.0006511567803250171 0.32613875806955434 0.0002003724060867185 0.0008723797559768294 5.359707376120643e-07 1.7129136453232898 0.0010523760823882274 1.1337675574529165 0.0012375381090479743']
['59866.31323021117 2.840722048294963 0.0006506906674631428 0.32525266996418045 0.00020020536881271524 0.0008700095828342211 5.355239341189852e-07 1.7082598212404436 0.0010514987857810675 1.1324622270545195 0.0012365468212820288']
['59866.313261749136 2.8461787420895934 0.0006511224406791833 0.325976720495616 0.0002003422518618758 0.0008719463260464276 5.358900788904035e-07 1.712062607645042 0.0010522177093585914 1.1341161344445514 0.0012373853646475126']
['59866.313293287094 2.8453068707104743 0.0006509826326231245 0.3261645352434374 0.00020035159897372008 0.0008724487066430887 5.359150812274397e-07 1.7130490296399026 0.0010522668013325635 1.1322578410705717 0.0012373535505923916']
['59866.31332482506 2.843037201682237 0.0006508624941539483 0.325477004843422 0.00020025267170385675 0.000870609650144124 5.35650463344997e-07 1.709438050648225 0.001051747225335382 1.133599151034012 0.0012368485001393555']
['59866.31335636302 2.846875704869271 0.0006511457571129664 0.32625208245514603 0.00020037481083792907 0.0008726828843153129 5.359771700161327e-07 1.7135088364240865 0.0010523887123840812 1.1333668684451847 0.0012375430493359182']
['59866.313387900984 2.8459178467689794 0.0006510672296162848 0.32607287900284954 0.0002003517323185428 0.0008722035378404873 5.359154379079048e-07 1.7125676418216889 0.001052267501673019 1.1333502049472906 0.0012373986554693687']
['59866.31341943895 2.8421746761590474 0.0006507182394566754 0.3258615418579025 0.0002003281324898101 0.000871638237819021 5.358523113633849e-07 1.7114576778251183 0.0010521435529927002 1.1307169983339291 0.0012371096488451208']
['59866.31345097691 2.8399589687488893 0.0006505371286649892 0.3251355067813058 0.000200191492380589 0.0008696961862005594 5.354868164254494e-07 1.7076444683892114 0.0010514259053602364 1.132314500359678 0.0012364040562187917']
['59866.31348251487 2.8459570479434633 0.0006510386087479312 0.3263262196506325 0.00020038755652639547 0.0008728811918973069 5.360112631139905e-07 1.713898212450801 0.0010524556540251865 1.1320588354926622 0.001237543604795413']
['59866.31351405283 2.8468176248587582 0.0006511168586133847 0.32634535967052397 0.00020039009680677456 0.0008729323890196028 5.360180580413715e-07 1.7139987377653572 0.0010524689958339001 1.132818887093401 0.0012375961177872935']
['59866.3135455908 2.840928956390887 0.0006506452760643547 0.3253082175629605 0.0002002403458399646 0.0008701581656060318 5.356174932245548e-07 1.708551562830675 0.0010516824886552764 1.1323773935602117 0.0012366791549181283']
['59866.31357712876 2.8443952530394125 0.000650948919354783 0.325931026080481 0.0002003735020683274 0.0008718240992894457 5.359736692236709e-07 1.7118226159689132 0.0010523818385941566 1.1325726370704994 0.0012374336466299829']
['59866.31360866672 2.8462232143761446 0.0006510814303526444 0.3265040948311085 0.00020041738488766104 0.0008733569854137122 5.360910501919694e-07 1.714832430835654 0.001052612315586455 1.1313907835404906 0.0012376993640922356']
['59866.31364020469 2.8464673390255193 0.0006511209053045701 0.32654492122220885 0.00020043256000790724 0.0008734661908246739 5.361316417112837e-07 1.71504685515866 0.0010526920168482524 1.1314204838668593 0.001237787912229185']
['59866.31367174265 2.8465348114321722 0.0006510893005069944 0.32637179534636174 0.00020041115750391093 0.0008730031010949566 5.360743927313583e-07 1.7141375806006396 0.001052579608739028 1.1323972308315327 0.001237675688525832']
['59866.31370328061 2.843470360064752 0.0006508874727265951 0.3256120181370461 0.00020030475222868044 0.0008709707935569541 5.357897721343165e-07 1.7101471540811246 0.0010520207575035738 1.1333232059836276 0.0012370942471658364']
['59866.31373481858 2.8439243386875126 0.0006509119227980016 0.3255980264502295 0.00020029201354441423 0.0008709333675717599 5.357556977718047e-07 1.7100736683310374 0.0010519538526492344 1.1338506703564752 0.0012370502169856156']
['59866.313766356536 2.8431624410325878 0.0006508623601564971 0.32578648366541874 0.0002003042638759919 0.0008714374666870322 5.357884658528989e-07 1.7110634646293004 0.001052018192626008 1.1320989764032874 0.0012370788533818604']
['59866.3137978945 2.8410758411558765 0.000650649675281782 0.3253600314959526 0.00020025019273382065 0.0008702967612960608 5.356438324149967e-07 1.7088236948316842 0.0010517342055347725 1.1322521463241924 0.001236725450144917']
['59866.31382943247 2.847046114111641 0.0006511253501779302 0.3266515576668533 0.00020045765531905675 0.0008737514297705379 5.361987684813319e-07 1.7156069205191875 0.0010528238199530291 1.1314391935924537 0.0012379023457061628']
['59866.313860970426 2.8438518704489386 0.0006508590986815393 0.32608155207659917 0.0002003681318020719 0.0008722267372112278 5.359593044434981e-07 1.7126131936796176 0.0010523536334142432 1.131238676769321 0.0012373624109761477']
['59866.31389250839 2.8434911691823386 0.000650844899274837 0.32568490998424915 0.00020030001663447845 0.0008711657699904577 5.357771050212791e-07 1.7105299894130734 0.001051995885685286 1.1329611797692651 0.0012370506967828126']
['59866.31392404636 2.844002412837283 0.0006508742879147065 0.3259609864984083 0.00020034296223829268 0.0008719042396022226 5.35891979057096e-07 1.7119799711050858 0.0010522214403271676 1.1320224417321973 0.0012372579755866016']
['59866.313955584315 2.8466477563825334 0.000651118045321761 0.3262848661621867 0.00020036533787273888 0.000872770576567891 5.359518310373805e-07 1.7136810197593841 0.0010523389594156456 1.1329667366231493 0.0012374861592953817']
['59866.31398712228 2.840936202224718 0.0006506739191240957 0.3252949056020483 0.0002002220078484878 0.000870122557801302 5.35568441426405e-07 1.7084816470695816 0.001051586175674831 1.1324545551551364 0.0012366123215861657']
['59866.31401866024 2.8411344972965855 0.0006507042542057324 0.3253609996076447 0.00020023440676481457 0.0008702993508718803 5.356016069528317e-07 1.7088287794519157 0.00105165129603369 1.1323057178446698 0.0012366836599918259']
['59866.314050198205 2.8465990451695466 0.0006511073722433394 0.326597114011197 0.00020044538698592057 0.000873605799906375 5.361659522483551e-07 1.715320976949564 0.0010527593854302553 1.1312780682199826 0.0012378380886857196']
['59866.31408173617 2.840780342961926 0.0006506382779710217 0.3253852610150809 0.00020025641354696704 0.000870364247055407 5.356604723000773e-07 1.7089562028102991 0.001051766877872726 1.131824140151627 0.0012367472393950345']
['59866.31411327413 2.8474681122145578 0.0006511472497155471 0.32671927187357785 0.00020045724238095737 0.0008739325566733575 5.36197663924362e-07 1.7159625623612285 0.0010528216511604903 1.1315055498533293 0.0012379120202843264']
['59866.314144812095 2.841913547141127 0.0006507494916199344 0.3256948133426294 0.00020029627155958968 0.0008711922602163304 5.357670874216019e-07 1.7105820028499443 0.0010519762161743157 1.1313315442911827 0.0012369837752533512']
['59866.31417635006 2.841627581408196 0.0006506675824684909 0.32556286533495365 0.00020025893990929927 0.0008708393160540998 5.356672299984507e-07 1.70988899860795 0.0010517801465824543 1.1317385828002462 0.0012367739403870053']
['59866.31420788802 2.8415529501537273 0.0006507076227036939 0.32560007818742753 0.00020027570384380388 0.0008709388557081799 5.357120713941158e-07 1.7100844442616994 0.0010518681924569532 1.131468505892028 0.001236869881817546']
['59866.314239425985 2.8422836502168023 0.0006507270126622846 0.3257273503548289 0.00020031610700943275 0.0008712792925915404 5.35820144730694e-07 1.7107528905190594 0.001052080393957105 1.1315307596977429 0.001237060548379633']
['59866.31427096394 2.847365181372979 0.000651193025731622 0.3263412112877301 0.0002003949507161392 0.0008729212926225021 5.360310416324421e-07 1.7139769500405992 0.001052494489055353 1.1333882313323795 0.00123765787124447']
['59866.31430250191 2.8438998396189232 0.0006508706221011563 0.32611969754302395 0.0002003793244020131 0.0008723287714891781 5.35989243226804e-07 1.7128135375158822 0.0010524124180778 1.131086302103041 0.0012374184677944274']
['59866.314334039875 2.846465778379863 0.000651085285397333 0.32642537440593855 0.00020042029708655906 0.0008731464182744165 5.360988399541524e-07 1.7144189832244672 0.0010526276107487348 1.1320467951553959 0.001237714399920885']
['59866.31436557783 2.8470967024352447 0.0006510948605980737 0.32670250567567266 0.0002004628602036674 0.0008738877092233832 5.362126908866094e-07 1.7158745045991213 0.0010528511565318667 1.1312221978361234 0.0012379095586139218']
['59866.3143971158 2.8459320028233357 0.0006510330614199191 0.3260972972257623 0.00020033041189529635 0.0008722688534854972 5.358584084835604e-07 1.7126958887907684 0.00105215552466017 1.1332361140325673 0.0012372854541837586']
['59866.314428653764 2.847488801939047 0.0006511809204907225 0.3268505153386735 0.000200491992901591 0.0008742836162736681 5.362906171535026e-07 1.7166518662745458 0.0010530041643991126 1.1308369356645012 0.0012380849572840378']
['59866.31446019172 2.8463792687040805 0.0006510630154282445 0.32667552170808917 0.0002004656430558895 0.0008738155305372463 5.362201346628622e-07 1.7157327820803003 0.001052865772352361 1.1306464866237802 0.0012379052405776672']
['59866.31449172969 2.8459444306296002 0.0006510005699980676 0.3264045699052982 0.0002003957948396839 0.0008730907688775178 5.360332995557147e-07 1.7143097158891714 0.0010524989224773315 1.1316347147404289 0.001237560392043052']
['59866.31452326765 2.846033412726694 0.0006510670493158121 0.3264762081501452 0.000200430241485811 0.0008732823920839352 5.361254399591444e-07 1.7146859671751324 0.0010526798397364023 1.1313474455515615 0.001237749226496327']
['59866.31455480561 2.8468895850070135 0.0006511064624803238 0.3267295893224601 0.00020046023012496272 0.0008739601545387307 5.362056557601124e-07 1.716016750643173 0.0010528373430932917 1.1308728343638406 0.0012379039124646883']
['59866.31458634358 2.8406160480938785 0.0006506673685115566 0.32544516797765977 0.00020024818055120857 0.0008705244905717103 5.356384500820703e-07 1.7092708402188015 0.0010517236373487845 1.131345207875077 0.0012367257714642772']
['59866.31461788154 2.8461775182941356 0.0006510513479281074 0.32648141794141583 0.00020040749194727826 0.0008732963276139048 5.360645878329167e-07 1.714713329524243 0.0010525603568659573 1.1314641887698926 0.001237639350733806']
['59866.3146494195 2.8397358272988544 0.0006504981267923008 0.32544797215749677 0.00020026103080093258 0.0008705319913966242 5.356728228680122e-07 1.7092855680540797 0.0010517911281561585 1.1304502592447747 0.0012366941377027292']
['59866.31468095747 2.844506480148081 0.000650998694812603 0.32555985173819046 0.00020030559245970447 0.0008708312550655057 5.357920196455907e-07 1.7098731708938575 0.0010520251704816412 1.1346333092542233 0.0012371565220191982']
['59866.31471249543 2.8400797456054425 0.0006505374391404375 0.32532117216136514 0.0002002167086963073 0.0008701928175114413 5.355542668673509e-07 1.7086196016878423 0.0010515583439932106 1.1314601439176002 0.0012365168460417926']
['59866.31474403339 2.842377475757675 0.000650787592237477 0.3256289770997498 0.0002003007801095693 0.0008710161566282819 5.357791472201806e-07 1.710236224263392 0.0010519998955334522 1.132141251494283 0.0012370239570892096']
['59866.31477557135 2.843868173079623 0.0006508807542372958 0.3258537150899087 0.00020032931424531042 0.0008716173022086907 5.358554724092572e-07 1.7114165708503608 0.0010521497596917566 1.1324516022292623 0.0012372004174974773']
['59866.31480710932 2.843749677312428 0.0006509291454225789 0.32581010904382934 0.00020032406600667665 0.0008715006615736954 5.358414340374741e-07 1.7111875474991038 0.0010521221954132177 1.132562129813324 0.0012372024355139695']
['59866.31483864728 2.841383211319744 0.0006506828937736652 0.3259183430666174 0.0002003420324381926 0.0008717901738381902 5.358894919599193e-07 1.7117560035011419 0.0010522165569232806 1.129627207818602 0.0012371531477198586']
['59866.31487018524 2.8439419703085056 0.0006509192295762822 0.32538727779378707 0.00020021904399179013 0.0008703696416823012 5.355605134861689e-07 1.7089667951354364 0.0010515706092005784 1.1349751751730692 0.0012367281793371802']
['59866.314901723206 2.844187195328564 0.0006509402917251282 0.3258241346275169 0.00020033315757169755 0.0008715381782287144 5.358657528192139e-07 1.7112612112789756 0.001052169945229504 1.1329259840495882 0.0012372489066616516']
['59866.31493326117 2.842627806411895 0.000650796682842928 0.32538158197823264 0.00020024490197566262 0.0008703544060991008 5.356296803088865e-07 1.7089368801377767 0.0010517064179394046 1.1336909262741182 0.0012367791686207737']
['59866.31496479913 2.84308539347061 0.0006508258543887151 0.325553598308854 0.0002002685031263036 0.0008708145279362591 5.356928103893431e-07 1.7098403272523846 0.001051830373562519 1.1332450662182256 0.0012368999262225983']
['59866.314996337096 2.8394651441023386 0.000650492426047288 0.32522423899964503 0.00020021761004341206 0.0008699335336150165 5.355566778563789e-07 1.7081104989477156 0.001051563077959097 1.131354645154623 0.0012364971909679765']
['59866.315027875055 2.842177434083002 0.0006507599151540605 0.32545818535175736 0.0002002660001925918 0.0008705593103941256 5.356861153595538e-07 1.7093392087802384 0.0010518172279022678 1.1328382253027636 0.0012368540528628798']
['59866.31505941302 2.8403800148253335 0.0006505955872965104 0.3253137716443701 0.00020023368458505351 0.000870173022068396 5.355996752136926e-07 1.7085807334263137 0.00105164750307276 1.1317992813990199 0.0012366232607099311']
['59866.315090950986 2.8430980377681423 0.0006508378701043387 0.32543744492115034 0.00020025335653468636 0.0008705038323764288 5.35652295180488e-07 1.7092302779472184 0.0010517508221359578 1.133867759820924 0.0012368386010412251']
['59866.315122488944 2.847464534074339 0.0006511647413398802 0.32657790601332193 0.00020045076512011776 0.0008735544209516067 5.361803380742726e-07 1.7152200946077834 0.0010527876319333916 1.1322444394665556 0.0012378922886568731']
['59866.31515402691 2.8405104188933548 0.0006505890325756883 0.3254503285360479 0.0002002477960294416 0.0008705382944099722 5.356374215351806e-07 1.7092979439918483 0.0010517216178016892 1.1312124749015064 0.001236682841580319']
['59866.315185564876 2.8403472906406058 0.0006506020281296538 0.32525935563549696 0.00020019929999272058 0.0008700274661558667 5.355077007962811e-07 1.7082949350603833 0.0010514669117264736 1.1320523555802224 0.0012364730751059751']
['59866.315217102834 2.8475015850000176 0.0006511876984152713 0.32657300930960376 0.00020041606483254095 0.0008735413228910756 5.360875192121792e-07 1.7151943766260702 0.0010526053825238495 1.1323072083739474 0.0012377493728075802']
['59866.3152486408 2.8413957390582523 0.0006506812067602314 0.32548362238221495 0.0002002626831273502 0.0008706273512199223 5.356772426313225e-07 1.7094728066292804 0.001051799806341125 1.131922932428972 0.001236797827233772']
['59866.31528017876 2.8452519276566908 0.0006509747596261987 0.32615011344134615 0.0002003622705793286 0.0008724101301541623 5.359436264170753e-07 1.7129732848810197 0.0010523228496813477 1.132278642775671 0.0012373970735507092']
['59866.315311716724 2.842514877538543 0.0006508062576412169 0.3255216305316616 0.00020026629945280676 0.0008707290181923965 5.356869158426207e-07 1.7096724292629288 0.0010518187996470944 1.1328424482756143 0.0012368797727653324']
['59866.31534325469 2.8479753426131245 0.0006511901517866619 0.326757204558777 0.00020045737013602342 0.0008740340217885539 5.36198005652938e-07 1.7161617886490388 0.0010528223221429802 1.1318135539640857 0.0012379351581510531']
['59866.31537479265 2.84577932917275 0.0006509894680134663 0.3264577208594006 0.00020040338116605663 0.0008732329409292061 5.360535920152463e-07 1.7145888700598775 0.0010525387666284489 1.1311904591128723 0.0012375884383429704']
['59866.315406330614 2.8434343556791584 0.0006508966516958059 0.325229599432866 0.00020022391729868446 0.0008699478720930708 5.355735489631678e-07 1.70813865248354 0.0010515962042998133 1.1352957031956183 0.0012367380596094656']
['59866.31543786858 2.845192892172821 0.0006509526630136514 0.3260692932460293 0.00020034980767568602 0.0008721939463964089 5.359102897327056e-07 1.71254880906528 0.0010522573932546535 1.1326440831075408 0.0012373297826948331']
['59866.31546940654 2.8411764715206442 0.0006506490266109919 0.3253878331689948 0.00020023868210316008 0.0008703711272404454 5.356130429399087e-07 1.7089697120220315 0.0010516737505418072 1.1322067594986127 0.0012366736972251422']
['59866.3155009445 2.8466454197010966 0.0006511069890057675 0.32641799539516325 0.0002004221531620568 0.0008731266803577776 5.361038047203745e-07 1.7143802279157736 0.001052637359044416 1.132265191785323 0.0012377341074674155']
['59866.31553248246 2.8428417192520445 0.0006507722700327787 0.3256819292340552 0.00020029759814657502 0.0008711577968622645 5.35770635873302e-07 1.710514334212475 0.001051983183542936 1.1323273850395696 0.0012370016838714273']
['59866.31556402043 2.8408734405153817 0.0006506713566291029 0.3253177850892415 0.0002002308005617482 0.000870183757523692 5.355919608176417e-07 1.7086018124434954 0.0010516323558915348 1.1322716280718863 0.0012366502441254507']
['59866.31559555839 2.84437041027576 0.0006509557296970217 0.32587893892894126 0.00020033977087212658 0.0008716847727745023 5.35883442557927e-07 1.7115490489965404 0.0010522046789502447 1.1328213612792197 0.0012372865668187664']
['59866.31562709635 2.847850030640301 0.0006511567457461233 0.3266866632669666 0.0002004583659669386 0.000873845332792189 5.362006693741587e-07 1.715791298671043 0.0010528275523473667 1.132058731969258 0.0012379220341008673']
['59866.31565863432 2.8459143243293767 0.0006510205676796544 0.326560981416539 0.0002004425669264584 0.0008735091498047522 5.361584089474607e-07 1.7151312049187972 0.0010527445741935842 1.1307831194105795 0.0012377798342338472']
['59866.31569017228 2.8468051868449087 0.0006511393430944884 0.32644046255014436 0.00020041997970694168 0.0008731867771438693 5.360979910039852e-07 1.71449822767933 0.0010526259438389794 1.1323069591655788 0.0012377414195899013']
['59866.31572171024 2.8460333230390193 0.0006510926313471043 0.3261658670684626 0.0002003812254356489 0.0008724522691058802 5.359943282503354e-07 1.7130560245192366 0.0010524224024981562 1.1329772985197828 0.0012375437478628734']
['59866.31575324821 2.8460775674751027 0.0006510503663055062 0.32660769629514663 0.0002004553496579286 0.0008736341061719177 5.361926011306489e-07 1.7153765561719887 0.0010528117103882806 1.130701011303114 0.0012378526071375503']
['59866.315784786166 2.843216916665498 0.0006509991629786963 0.3254986842132395 0.00020027140175887676 0.0008706676397049572 5.357005638633301e-07 1.7095519128846615 0.0010518455974730923 1.1336650037808367 0.0012370040707784633']
['59866.31581632413 2.8468041706874945 0.0006510950443153759 0.32638182912189284 0.00020037950961253776 0.000873029940170144 5.359897386414343e-07 1.7141902790015382 0.001052413390822152 1.1326138916859563 0.001237537353744856']
['59866.3158478621 2.8458239878714426 0.0006510006947646755 0.32617491149152167 0.00020036017013213452 0.0008724764617888594 5.359380079876023e-07 1.7131035267411854 0.0010523118179208747 1.1327204611302573 0.0012374013361557464']
['59866.315879400056 2.846044034947303 0.0006510408315941247 0.3262312687054316 0.00020037509914458735 0.0008726272101783158 5.359779411998267e-07 1.7133995205117207 0.0010523902265997234 1.1326445144355821 0.0012374891326574898']
['59866.31591093802 2.844079405157749 0.0006509390538732007 0.3254131641343044 0.00020023480315783698 0.0008704388843554422 5.35602667253822e-07 1.7091027528062206 0.0010516533779298162 1.1349766523515283 0.0012368089905755578']
['59866.31594247599 2.8433584189640055 0.0006508756492331495 0.3256643580078663 0.0002002829272329276 0.0008711107960638755 5.357313930426018e-07 1.7104220483606425 0.00105190613042504 1.132936370603363 0.001236990548868687']
['59866.315974013945 2.842219508117516 0.0006507192904952324 0.3254322366068032 0.00020024585443773727 0.0008704899007970418 5.356322280239669e-07 1.709202923355059 0.001051711420366267 1.1330165847624571 0.001236742700302472']
['59866.31600555191 2.842069057760722 0.0006507337597693895 0.32532591850820325 0.00020022742205279728 0.0008702055133864146 5.355829237352918e-07 1.7086445299800592 0.0010516146116218345 1.1334245277806627 0.0012366679899957578']
['59866.31603708987 2.8424191931745018 0.0006507544631387189 0.3258310499581413 0.00020031121326425394 0.0008715566758598401 5.358070545838798e-07 1.711297531292759 0.0010520546915139387 1.1311216618817428 0.0012370531295103904']
['59866.316068627835 2.847487675041851 0.0006511581751890292 0.3265213073258594 0.0002004129212207294 0.0008734030266510659 5.360791104498436e-07 1.7149228325937995 0.0010525888719576126 1.1325648424480514 0.0012377197996657021']
['59866.3161001658 2.840206038532143 0.0006505526715118112 0.32542245010989346 0.00020025275804121773 0.0008704637231607605 5.356506942864722e-07 1.7091515236864154 0.0010517476787879085 1.1310545148457276 0.001236685876949724']
['59866.31613170376 2.8446806291190305 0.0006509620498191983 0.3259485619642233 0.00020035612693979717 0.0008718710055512787 5.359271929616131e-07 1.7119147161986519 0.001052290582667002 1.1327659129203786 0.0012373629462184776']
['59866.316163241725 2.847218460450113 0.0006511608214620718 0.3264323788407244 0.00020041165766625704 0.0008731651542478574 5.360757306021101e-07 1.714455771222292 0.0010525822356421063 1.1327626892278209 0.001237715548175951']
['59866.31619477969 2.845015285657369 0.0006509105238910907 0.3261052960969007 0.000200365658396614 0.0008722902494498808 5.359526883980378e-07 1.7127378996685962 0.0010523406428393594 1.1322773859887727 0.0012373784136971721']
['59866.31622631765 2.8417824212250307 0.0006507096797443739 0.3255583428582116 0.00020025007935938098 0.0008708272190032004 5.356435291527698e-07 1.7098652461040527 0.0010517336100807826 1.131917175120978 0.0012367565135816272']
['59866.316257855615 2.8465935388024333 0.0006510932042851259 0.3267052310101136 0.00020046092148095395 0.0008738949991468766 5.36207505049582e-07 1.7158888183304288 0.0010528409741646743 1.1307047204720044 0.0012379000272826125']
['59866.31628939357 2.843794897522622 0.000650911929849365 0.32570400550290435 0.0002002834406130967 0.0008712168480775986 5.357327662693514e-07 1.710630281002649 0.0010519088267494576 1.133164616519973 0.0012370119321225828']
['59866.31632093154 2.8473768613664485 0.0006511413548404384 0.32644186645273177 0.0002004221036582318 0.0008731905324049853 5.3610367230393e-07 1.7145056011172888 0.0010526370990453352 1.1328712602491597 0.001237751964761123']
['59866.316352469505 2.840844533276433 0.000650589759759474 0.3254775708469934 0.0002002742456564568 0.0008706111641317911 5.357081709281622e-07 1.709441023356058 0.0010518605339099622 1.131403509920375 0.0012368013657419856']
['59866.31638400746 2.8438588197920764 0.0006508738583351494 0.3255946632010704 0.00020025934375604164 0.000870924371307415 5.356683102371952e-07 1.7100560042073025 0.0010517822676262693 1.133802815584774 0.00123688427832079']
['59866.31641554543 2.847221164267784 0.0006511451927744483 0.3264016038157086 0.00020039256348854549 0.0008730828349645794 5.360246561018232e-07 1.7142941376875453 0.001052481951095302 1.1329270265802387 0.0012376220422466008']
['59866.316447083394 2.8434032155292703 0.0006507979799439793 0.32584951580349214 0.00020031020321860117 0.0008716060696508646 5.358043528400414e-07 1.7113945157746437 0.0010520493866523171 1.1320086997546266 0.001237071510727929']
['59866.31647862135 2.84037106280823 0.0006506124589175086 0.32522569616025493 0.0002002320985998424 0.0008699374313345785 5.35595432904684e-07 1.7081181521021793 0.0010516391733185 1.1322529107060506 0.0012366250533434558']
['59866.31651015932 2.840678338748649 0.0006506156188498032 0.3253587778294539 0.00020023151804199134 0.0008702934078974009 5.355938799861673e-07 1.7088171104488126 0.0010516361241701226 1.1318612282998366 0.0012366241228242598']
['59866.31654169728 2.846846767077052 0.0006511154839274451 0.3263485306150163 0.00020041547267031655 0.000872940870893388 5.360859352534376e-07 1.7140153918855898 0.0010526022724281331 1.132831375191462 0.0012377087368726702']
['59866.31657323524 2.8469298998070123 0.0006511549402237725 0.32619272953335715 0.0002003712207431807 0.0008725241227877558 5.359675669686475e-07 1.7131971088936828 0.0010523698568444366 1.1337327909133295 0.0012375318467710659']
['59866.31660477321 2.846520234255191 0.0006510761339869195 0.3264479574577029 0.00020042210780320821 0.0008732068250696837 5.361036833912155e-07 1.7145375916896162 0.0010526371208151694 1.131982642565575 0.0012377176739327119']
['59866.31663631117 2.8473762981753286 0.000651148380951564 0.32642861407338053 0.0002003972438421469 0.0008731550839733639 5.360371754532701e-07 1.7144359982845618 0.0010525065327843851 1.1329402998907667 0.0012376446241024323']
['59866.31666784913 2.8435676123589806 0.0006508889104356893 0.32592589692174845 0.0002003460952459448 0.0008718103794412744 5.359003594546519e-07 1.7117956771100236 0.0010522378951992898 1.131771935248957 0.0012372796619283736']
['59866.3166993871 2.8421827237017343 0.0006507725935737527 0.3254352246473237 0.0002002624218765573 0.0008704978934259325 5.356765438186322e-07 1.7092186168451877 0.0010517984342256162 1.1329641068565466 0.0012368447415848792']
['59866.31673092506 2.844360705405091 0.000650927483164013 0.3257288569037241 0.0002002916506837964 0.000871283322418493 5.357547271657378e-07 1.710760803065778 0.0010519519468686787 1.1335999023393128 0.0012370567840075247']
['59866.31676246302 2.843582744925666 0.0006508682012964501 0.32590602409720815 0.0002003485486388439 0.0008717572221596141 5.359069219690593e-07 1.7116913030315555 0.001052250780666197 1.1318914418941106 0.0012372797262024046']
['59866.31679400098 2.8466294096719627 0.0006511365178579972 0.3262549637762888 0.00020038426790714852 0.0008726905914834223 5.360024664751821e-07 1.7135239694132818 0.0010524383818652759 1.1331054402586809 0.001237580426684035']
['59866.31682553895 2.8427694670771366 0.0006507813219681076 0.3257159331554095 0.0002002884069894507 0.000871248753033156 5.357460506953345e-07 1.7106929262363944 0.00105193491065888 1.1320765408407423 0.001236965393729939']
['59866.31685707691 2.843487364890671 0.0006508553356351255 0.3259133570049618 0.00020035430041024288 0.0008717768367565256 5.359223072270372e-07 1.7117298162025307 0.001052280989549595 1.1317575486881404 0.0012372986498385048']
['59866.31688861487 2.839965810789315 0.0006505433779761407 0.3253129736061193 0.00020023125693493897 0.0008701708874174315 5.355931815579645e-07 1.708576542048946 0.0010516347528095535 1.131389268740369 0.00123658495055755']
['59866.316920152836 2.84645802907122 0.0006510937325211231 0.3263015377689281 0.00020039713373615393 0.0008728151709985159 5.36036880933723e-07 1.7137685807191605 0.001052505954496607 1.1326894483520593 0.0012376153816024999']
['59866.3169516908 2.8467787791033565 0.0006510859357938876 0.32658817250284755 0.00020045150822778078 0.0008735818825071731 5.361823257928914e-07 1.7152740152460482 0.001052791534809773 1.1315047638573084 0.0012378541560118137']
['59866.31698322876 2.8398884000044538 0.0006505311906492379 0.3255580742104457 0.00020029529507674325 0.0008708265004045467 5.357644754540078e-07 1.7098638351388955 0.0010519710875879374 1.1300245648655582 0.0012368645839898817']
['59866.317014766726 2.8409778761872224 0.0006506819074641417 0.32525193712022665 0.00020021350212097368 0.0008700076225697209 5.355456896855905e-07 1.708255972270098 0.0010515415027362064 1.1327219039171244 0.0012365785363970593']
['59866.317046304684 2.846229878234251 0.0006511136135724178 0.3260167486827515 0.00020035979930270396 0.0008720533963631607 5.359370160659735e-07 1.7122728397203337 0.001052309870287311 1.1339570385139175 0.0012374590905898381']
['59866.31707784265 2.8402445177577946 0.0006506194402463119 0.3251730313634223 0.00020022090462142362 0.0008697965596918416 5.355654904341257e-07 1.7078415512784786 0.00105158038141504 1.132402966479316 0.001236578729642163']
['59866.317109380616 2.842245390484168 0.0006507221952903791 0.32567026269201294 0.00020028132803047677 0.0008711265903440324 5.357271153791556e-07 1.710453060357211 0.001051897731252504 1.1317923301269568 0.0012369026689508335']
['59866.317140918574 2.8426262632407475 0.0006507776368890545 0.3257356049141754 0.00020030100991094737 0.0008713013724894066 5.357797619096805e-07 1.7107962442971398 0.001052001102473463 1.1318300189436077 0.0012370197461157536']
['59866.31717245654 2.8409153835836456 0.0006506423643318302 0.32577330768455015 0.0002003323641230411 0.0008714022226116486 5.358636304448313e-07 1.710994263049108 0.0010521657779571487 1.1299211205345376 0.0012370886429708607']
['59866.317203994506 2.8419521676611192 0.0006507295587784757 0.3257945945501689 0.0002003254870040923 0.0008714591622736008 5.358452350250846e-07 1.7111060638139124 0.0010521296586349386 1.1308461038472069 0.0012371037859643394']
['59866.317235532464 2.8414480987799564 0.0006506838876884775 0.3256946059421231 0.00020028707085238462 0.0008711917054463175 5.357424766983812e-07 1.7105809135615713 0.0010519278931322722 1.1308671852183851 0.0012369081671842466']
['59866.31726707043 2.8434798316471985 0.0006508370282425117 0.3258130549423575 0.00020031187193059115 0.000871508541478109 5.358088164326767e-07 1.7112030196552392 0.001052058150895962 1.1322768119919593 0.001237099506991323']
['59866.31729860839 2.8427407396142983 0.0006508318076048207 0.32545372736275885 0.00020026211275654172 0.0008705473858397497 5.356757169618509e-07 1.709315794972473 0.0010517968106961227 1.1334249446418252 0.0012368745177990747']
['59866.317330146354 2.841814477789109 0.0006507558524875324 0.3256270892562992 0.00020030921637541422 0.0008710111068868206 5.358017131598522e-07 1.7102263091192185 0.0010520442036523858 1.1315881686698905 0.0012370449409723793']
['59866.31736168432 2.8464247336982367 0.0006511183517155866 0.3260823901341 0.00020034042211055102 0.0008722289789086034 5.358851845380007e-07 1.712617595242122 0.001052208099320121 1.1338071384561146 0.0012373750410508868']
['59866.31739322228 2.8437416331083742 0.0006509036397026734 0.325467323330414 0.0002002430225349237 0.0008705837533264461 5.356246530436118e-07 1.7093872023656198 0.0010516965469271203 1.1343544307427544 0.0012368270594535907']
['59866.317424760244 2.8455936685647742 0.0006509457420762975 0.3263016424888092 0.00020037692043310045 0.0008728154511108976 5.359828129152831e-07 1.7137691307185359 0.0010523997921906537 1.1318245378462384 0.0012374472440189895']
['59866.31745629821 2.842758321835248 0.0006507919040481516 0.3256528846495278 0.000200295714086563 0.0008710801062875152 5.357655962520584e-07 1.7103617891256713 0.0010519732882697636 1.1323965327095769 0.0012370035980577088']
['59866.31748783617 2.8434908151244103 0.0006508856793888358 0.32577091586008655 0.00020032057232816192 0.0008713958247849866 5.358320888911684e-07 1.7109817009458328 0.0010521038462613548 1.1325091141785775 0.001237163962840578']
['59866.31751937413 2.841453014855885 0.000650689079047427 0.3252677435339787 0.00020023879676563875 0.0008700499027189848 5.356133496474762e-07 1.708338989149048 0.0010516743527607076 1.133114025706837 0.0012366952825357757']
['59866.31755091209 2.8466105843422373 0.0006510510738110181 0.3267614653094174 0.00020045026741744446 0.0008740454187553726 5.361790067828333e-07 1.716184166541058 0.001052785017948763 1.1304264178011794 0.0012378302770282591']
['59866.31758245006 2.847232837057536 0.0006511229100814748 0.32699990191176426 0.00020051871568292325 0.0008746832063835664 5.363620971995898e-07 1.7174364596206106 0.0010531445151414037 1.1297963774369255 0.001238173822128941']
['59866.31761398802 2.8432113508219485 0.000650833985056353 0.3258654044368624 0.00020033886988649098 0.0008716485697271647 5.358810325357832e-07 1.7114779644793194 0.001052199946882831 1.131733386342629 0.0012372184949816121']
['59866.31764552598 2.84679588839177 0.0006511012235115457 0.32654515107081294 0.0002004338038005484 0.0008734668056404975 5.361349686986285e-07 1.7150480623467066 0.001052698549372628 1.1317478260450635 0.0012377831147295018']
['59866.31767706395 2.8467867257151886 0.0006511442343178014 0.326420156501529 0.00020042103182980975 0.0008731324610428306 5.361008052990306e-07 1.714391578264333 0.0010526314696943791 1.1323951474508556 0.0012377486921327221']
['59866.31770860191 2.8415549952938504 0.0006506873405750884 0.3251064013160305 0.00020019974415864906 0.0008696183327775417 5.355088888837277e-07 1.7074916035505807 0.0010514692445307199 1.1340633917432696 0.0012365199502550226']
['59866.31774013987 2.8434190802696033 0.0006508827859201997 0.3257994547587747 0.00020031990128714723 0.0008714721627143415 5.358302939416808e-07 1.7111315901196151 0.0010521003218862774 1.1322874901499882 0.0012371594433703559']
['59866.31777167784 2.8413595769019175 0.0006506791765560463 0.3254074572296682 0.0002002504396799116 0.0008704236191103565 5.356444929644261e-07 1.709072779567585 0.0010517355025205443 1.1322867973343325 0.0012367420741875793']
['59866.317803215796 2.8409016357570454 0.000650697689103339 0.3250617329153429 0.00020019026941827815 0.0008694988504788955 5.354835451565926e-07 1.7072570006057928 0.0010514194822388559 1.1336446351512526 0.0012364830812574223']
['59866.31783475376 2.8438667608615162 0.0006508886701649774 0.3257223638649018 0.00020030076474346814 0.0008712659543643037 5.357791061178116e-07 1.710726700971123 0.0010519998148291396 1.1331400598903933 0.0012370770676678462']
['59866.31786629173 2.8437206038908815 0.0006509232737853879 0.3256604135170408 0.00020030698675982457 0.0008711002450518947 5.357957492213263e-07 1.710401331497063 0.0010520324934864735 1.1333192723938186 0.0012371230640913838']
['59866.317897829686 2.840991041521753 0.0006506562920391906 0.3253185036721552 0.00020022670640950177 0.0008701856796417211 5.355810094803679e-07 1.7086055865134202 0.0010516108529910807 1.1323854550083328 0.0012366240319914604']
['59866.31792936765 2.8467365229108204 0.0006511161088724355 0.3262705872340073 0.00020038237979091303 0.0008727323822485329 5.359974160040559e-07 1.713606025388694 0.001052428465288409 1.1331304975221264 0.001237561255769789']
['59866.31796090562 2.8411749897900815 0.0006506621808746885 0.3254182899738685 0.00020027031329860606 0.0008704525953252595 5.356976523703479e-07 1.7091296742325028 0.0010518398807699899 1.1320453155575787 0.0012368218984149788']
['59866.317992443575 2.84708531377813 0.0006511289507730665 0.32668965397233274 0.00020048872951200863 0.0008738533325492034 5.362818880008426e-07 1.71580700615721 0.0010529870247479446 1.13127830762092 0.0012380430464335086']
['59866.31802398154 2.846219267130318 0.0006510743130885452 0.32633576598207 0.0002003778667969274 0.0008729067271214526 5.359853443183255e-07 1.7139483507461661 0.0010524047625889044 1.1322709163841518 0.0012375191091387355']
['59866.3180555195 2.841490042209327 0.0006507020663381678 0.3257103862886037 0.00020029999772126485 0.0008712339158689408 5.357770544308348e-07 1.7106637935325828 0.001051995786351181 1.1308262486767442 0.001236975470103349']
['59866.318087057465 2.845283250595009 0.0006509724413393993 0.3262424523516049 0.0002003796528701367 0.0008726571250114295 5.359901218373168e-07 1.7134582581491853 0.001052414143225508 1.1318249924458237 0.0012374734939563181']
['59866.31811859543 2.844017381609362 0.0006508861908890625 0.3260545553786881 0.0002003731942131574 0.0008721545244730815 5.359728457501909e-07 1.7124714042998326 0.0010523802217077595 1.1315459773095293 0.0012373992744994422']
['59866.31815013339 2.847280810707166 0.0006511820928642367 0.32647992018389893 0.00020040074764727587 0.0008732923213027726 5.360465476869827e-07 1.7147054631507297 0.0010525249351222472 1.1325753475564362 0.0012376780102761535']
['59866.318181671355 2.843472141923144 0.0006508416934986486 0.3257192546294577 0.00020029408870493912 0.0008712576375543851 5.357612485626492e-07 1.7107103709530345 0.0010519647516015712 1.1327617709701097 0.001237022533589564']
['59866.31821320932 2.843458839408522 0.0006508564747359796 0.3259970999861667 0.00020036683190368927 0.0008720008385953156 5.359558273804206e-07 1.712169642784489 0.0010523468062168554 1.1312891966240328 0.0012373552243638698']
['59866.31824474728 2.84145125315475 0.000650709926147724 0.32497785798235646 0.0002001737863822522 0.0008692744956858486 5.354394551286817e-07 1.7068164809997715 0.0010513329116714927 1.1346347721549783 0.0012364159086451594']
['59866.318276285245 2.846769640306354 0.0006511920782476806 0.32630492377281467 0.00020040462092830994 0.0008728242281288667 5.360569082218156e-07 1.7137863643530185 0.0010525452779848211 1.1329832759533354 0.0012377005635373515']
['59866.3183078232 2.8459663537346938 0.0006510176814875218 0.32641987138525347 0.00020039533325919096 0.0008731316983930053 5.3603206488652e-07 1.7143900808049028 0.0010524964982100366 1.131576272929791 0.0012375673316445364']
['59866.31833936117 2.8456954831103216 0.0006510101109328725 0.3260571499088115 0.00020036197717494673 0.0008721614645116385 5.359428415976182e-07 1.712485031033674 0.0010523213086919472 1.1332104520766475 0.0012374143611838207']
['59866.318370899135 2.8442623257223203 0.0006509460305932762 0.3259045532009299 0.00020033357434239997 0.0008717532876988838 5.358668676279101e-07 1.7116835777359767 0.0010521721341512603 1.1325787479863436 0.0012372537874783653']
['59866.31840243709 2.8469602211356815 0.0006511768352251457 0.3264900835521588 0.00020042169967027728 0.0008733195070220503 5.361025916874609e-07 1.7147588421857083 0.0010526349772598596 1.1322013789499732 0.0012377688257848077']
['59866.31843397506 2.8415954461561186 0.0006506692614437127 0.32543146444970306 0.0002002402508622162 0.0008704878353748681 5.356172391711406e-07 1.7091988679081043 0.0010516819898225642 1.1323965782480143 0.0012366913501374766']
['59866.318465513024 2.8436774916311647 0.0006509145729545578 0.3257504709866551 0.00020029302609724767 0.0008713411373451966 5.35758406222033e-07 1.710874322408903 0.0010519591706788219 1.1328031692222618 0.0012370561337546042']
['59866.31849705098 2.8411340083369603 0.0006506580039612064 0.3252291832975674 0.00020022885179530258 0.0008699467589839989 5.355867481149064e-07 1.7081364668989885 0.0010516221207736481 1.1329975414379718 0.0012366345147290878']
['59866.31852858895 2.841531223909409 0.0006507376462979201 0.3252272899698378 0.0002002011865864003 0.0008699416945727879 5.355127471947641e-07 1.708126522950829 0.0010514768203067244 1.1334047009585801 0.0012365528650048476']
['59866.31856012691 2.840828496985906 0.0006506318320666962 0.3252729494910812 0.00020022530607658747 0.0008700638279930417 5.355772637676741e-07 1.7083663313607207 0.001051603498301405 1.1324621656251852 0.0012366049080196225']
['59866.31859166487 2.8472314279633655 0.0006511465953638209 0.32635430585539627 0.0002004071358709212 0.0008729563189279093 5.360636353738858e-07 1.7140457240304428 0.0010525584867170233 1.1331857039329227 0.0012376878671999357']
['59866.31862320284 2.8477608243076444 0.0006511859154501051 0.3263874851979827 0.00020040104327643824 0.000873045069455324 5.360473384574451e-07 1.714219985283523 0.0010525264877964194 1.1335408390241215 0.001237681341862136']
['59866.3186547408 2.8459782743478517 0.000651083973199381 0.3262349800102685 0.00020036748069595265 0.0008726371374473933 5.35957562817324e-07 1.7134190126589735 0.001052350213739247 1.1325592616888782 0.0012374778028369363']
['59866.31868627876 2.848079375177397 0.0006512463644403286 0.3265311839069678 0.00020044160110421026 0.0008734294452511374 5.36155825495613e-07 1.7149747053937385 0.001052739501597743 1.1331046697836584 0.00123789429493031']
['59866.31871781673 2.8419868647424638 0.0006507598628890498 0.3253564024354267 0.00020025450217881307 0.0008702870540200695 5.356553596330223e-07 1.7088046346398462 0.0010517568391744385 1.1331822301026175 0.0012368026713658006']
['59866.31874935469 2.842922507146863 0.0006508214852199105 0.3254608195757138 0.00020026048499369138 0.0008705663566086446 5.356713629029633e-07 1.7093530439900937 0.0010517882615214884 1.1335694631567692 0.0012368618163312525']
['59866.31878089265 2.840954023663639 0.0006506490947430584 0.3253897871799768 0.00020026982571866683 0.0008703763539716495 5.356963481559364e-07 1.708979974684752 0.0010518373199509812 1.131974048978887 0.0012368128363384754']
['59866.31881243061 2.8412276342098433 0.0006507026364522196 0.32550730013175405 0.0002002538748456181 0.0008706906861927028 5.356536815964014e-07 1.709597164557532 0.001051753544357238 1.1316304696523112 0.0012367697599609566']
['59866.31884396858 2.8426333860565043 0.000650787588846742 0.3258250285714671 0.00020031832179897907 0.0008715405694152441 5.358260690114369e-07 1.7112659063627476 0.0010520920262551423 1.1313674796937567 0.0012371023068067602']
['59866.31887550654 2.845423419643471 0.000650995189941068 0.3262053379328582 0.00020035402572355181 0.0008725578486550679 5.359215724750256e-07 1.7132633294792974 0.001052279546867394 1.1321600901641735 0.0012373709961373165']
['59866.3189070445 2.8414811693571904 0.0006507018715509716 0.325330819864441 0.00020022347051893425 0.0008702186238918448 5.355723538840801e-07 1.7086702723972744 0.001051593857767512 1.132810896959916 0.0012366335622706894']
['59866.318938582466 2.847466711251179 0.0006511442546390016 0.32662422703268157 0.0002004386786340269 0.0008736783237953066 5.361480082590462e-07 1.7154633772724872 0.0010527241524896371 1.132003333978692 0.0012378275249744634']
['59866.318970120425 2.8414223405124277 0.0006506729891493136 0.3254295375000388 0.00020023856940201796 0.000870482681029252 5.356127414786673e-07 1.7091887473741534 0.001051673158624044 1.1322335931382743 0.0012366858013977424']
['59866.31900165839 2.8471383948992592 0.0006511410519619777 0.32676001997370696 0.00020049100274693578 0.0008740415526659146 5.362879686155562e-07 1.7161765754921585 0.0010529989640070156 1.1309618194071007 0.0012380595655096724']
['59866.319033196356 2.8475130071610306 0.0006512272287699659 0.326491867044534 0.00020041797695003564 0.0008733242776376381 5.360926338836255e-07 1.7147682092675105 0.0010526154251577504 1.1327447978935201 0.0012377787107441462']
['59866.319064734314 2.8428737092025527 0.0006508248461479289 0.3254791768114752 0.00020024733085082042 0.0008706154598828115 5.356361772414499e-07 1.7094494580434623 0.0010517191746366621 1.1334242511590904 0.0012368048361248824']
['59866.31909627228 2.840478903531152 0.000650577263820744 0.32560816241104557 0.0002002964154282853 0.0008709604799796063 5.357674722520904e-07 1.7101269034193571 0.0010519769717872128 1.130352000111795 0.0012368938213812373']
['59866.319127810246 2.8412963303290817 0.0006506409959986501 0.32569809387847204 0.00020030445882110844 0.0008712010352330589 5.357889873063262e-07 1.7105992325550003 0.0010520192164974183 1.1306970977740813 0.001236963272516188']
['59866.319159348204 2.843968139642932 0.0006508894340749352 0.3260831683691525 0.00020039258873687682 0.0008722310605885277 5.360247236379029e-07 1.7126216826110952 0.0010524820837020843 1.131346457031837 0.0012374876128286177']
['59866.31919088617 2.843249919996259 0.0006508619603678303 0.3259118817641313 0.00020035033669124478 0.0008717728906746696 5.359117047821367e-07 1.711722068088925 0.0010522601716977142 1.131527851907334 0.0012372844298685563']
['59866.31922242413 2.8436157621624742 0.0006508766280766267 0.32574840342150224 0.00020031010270265252 0.0008713356068710076 5.35804083972645e-07 1.710863463348226 0.0010520488587324188 1.1327522988142482 0.0012371124387607557']
['59866.319253962094 2.8431967759495214 0.0006508437393168862 0.32596172556366093 0.00020035095130053888 0.000871906216507907 5.359133487839389e-07 1.7119838527503202 0.0010522633996877043 1.1312129231992012 0.0012372775902481674']
['59866.31928550006 2.840026634978408 0.000650583497619947 0.3252109413384159 0.00020019994760130992 0.0008698979640601226 5.355094330670069e-07 1.7080406582899996 0.00105147031303209 1.1319859766884084 0.0012364662173157846']
['59866.31931703802 2.8417632933292154 0.000650699251441504 0.32560346428961007 0.00020030408165677365 0.00087094791310146 5.357879784396331e-07 1.7101022284118177 0.0010520172355922986 1.1316610649173977 0.0012369922311032497']
['59866.319348575984 2.840740047320039 0.000650626557410621 0.32537996037048267 0.00020024832317426083 0.0008703500685043249 5.35638831580621e-07 1.7089283632903502 0.0010517243864194372 1.1318116840296886 0.0012367049374031535']
['59866.31938011395 2.846763907503153 0.0006511274968926903 0.32642194602306746 0.00020042829806178798 0.0008731372477856644 5.36120241546711e-07 1.714400977011909 0.001052669632677458 1.1323629304912437 0.001237772342868847']
['59866.31941165191 2.8413949540302577 0.0006506909874437837 0.325526873113313 0.000200291668666595 0.0008707430414324701 5.357547752674401e-07 1.7096999638304256 0.0010519520413161505 1.131694990199832 0.0012369324388865311']
['59866.319443189874 2.8436217574328557 0.0006508679781635231 0.32606965571879354 0.00020035812397011123 0.0008721949159650167 5.359325347640667e-07 1.7125507128087896 0.0010523010712715926 1.1310710446240662 0.0012373223790096153']
['59866.31947472783 2.8466922729466857 0.0006510825967913978 0.3266743475736456 0.00020048147232732641 0.000873812389876733 5.362624759535299e-07 1.7157266154078028 0.0010529489092821766 1.130965657538883 0.0012379862492787048']
['59866.3195062658 2.8467203968707406 0.0006510815753007928 0.326616685784076 0.00020045074607379903 0.000873658151913077 5.361802871277891e-07 1.7154237698743489 0.0010527875319002052 1.1312966269963918 0.0012378484580192713']
['59866.31953780376 2.847452564146476 0.0006511753967152109 0.3264477285872073 0.00020040656665562746 0.000873206212870176 5.360621127952692e-07 1.7145363896386938 0.0010525554971409004 1.132916174507782 0.0012377004774373889']
['59866.31956934172 2.847120889303687 0.0006511502495638378 0.32652171113693573 0.00020043956746843868 0.0008734041067944084 5.361503857782097e-07 1.7149249534502928 0.001052728820737598 1.1321959358533942 0.0012378346486985336']
['59866.31960087969 2.8456165716211017 0.0006509941671131472 0.32644109832050183 0.0002004140029149553 0.0008731884777488283 5.360820038445153e-07 1.7145015668093586 0.0010525945531247654 1.131115004811743 0.0012376383554509227']
['59866.31963241765 2.8417726448740437 0.0006507469977299303 0.32559140054922653 0.0002002791354350479 0.0008709156441281118 5.357212504648579e-07 1.7100388684308119 0.0010518862155202095 1.1317337764432318 0.0012369059242545272']
['59866.31966395561 2.840088360741559 0.0006505556364824314 0.32543755688949416 0.00020026249803134814 0.0008705041318775277 5.356767475230255e-07 1.709230866016251 0.0010517988341982572 1.130857494725308 0.001236730942355642']
['59866.31969549358 2.846716223908113 0.0006510890320539975 0.3264317128341317 0.00020041097866926055 0.0008731633727648093 5.360739143713818e-07 1.7144522732885068 0.0010525786694814106 1.1322639506196064 0.0012376747485136263']
['59866.319727031536 2.8466305201184503 0.0006511112420075288 0.32629232573308375 0.0002003705398696293 0.000872790529972624 5.359657457183731e-07 1.713720198177961 0.001052366280827885 1.1329103219404892 0.001237505813518507']
['59866.3197585695 2.8444649656869267 0.0006509519957126164 0.32585542777473325 0.00020035201924835014 0.0008716218834230737 5.359162054086973e-07 1.7114255660437672 0.0010522690086573012 1.1330393996431596 0.0012373393096894874']
['59866.31979010747 2.8428557929751372 0.0006507875092895872 0.3258047857859644 0.00020030346440468656 0.0008714864225349969 5.357863273686954e-07 1.711159589211998 0.0010520139937220934 1.1316962037631393 0.0012370359029690503']
['59866.319821645426 2.8439564976459044 0.0006508602510419597 0.32582989136800067 0.0002003206536726932 0.0008715535767783629 5.358323064774583e-07 1.7112914462605078 0.001052104273491036 1.1326650513853966 0.0012371509482211553']
['59866.31985318339 2.8408942106184845 0.000650671139322406 0.3253208147736141 0.0002002288470331819 0.0008701918615445979 5.355867353768383e-07 1.7086177246513345 0.00105162209576251 1.13227648596715 0.0012366414047099716']
['59866.31988472136 2.8471756769364562 0.0006511491962283428 0.3262225250038942 0.00020037415216656398 0.0008726038218872132 5.359754081538869e-07 1.7133535977095284 0.0010523852529756514 1.1338220792269278 0.0012375419170393552']
['59866.319916259316 2.843837588435182 0.0006508877061393423 0.3258276312108748 0.00020031393171697658 0.0008715475311451067 5.358143260996508e-07 1.711279575687368 0.001052068969101768 1.132558012747814 0.0012371353692099307']
['59866.31994779728 2.8484963842936795 0.0006512426664966684 0.32659907406601674 0.00020043680006660971 0.0008736110428040775 5.361429833297962e-07 1.71533127135513 0.0010527142860641268 1.1331651129385494 0.00123787090552658']
['59866.31997933524 2.8408169111413937 0.0006506487038527871 0.3252986338183301 0.00020023868673082869 0.0008701325303063467 5.356130553183345e-07 1.708501228037448 0.0010516737748467895 1.1323156831039456 0.0012366735480820344']
['59866.320010873205 2.8466084935683753 0.0006511360892160965 0.3263234003149063 0.00020040787670897044 0.0008728736505323142 5.36065617021576e-07 1.7138834050152643 0.0010525623776731642 1.132725088553111 0.001237685648932158']
['59866.32004241117 2.8432979189608294 0.0006508426307776652 0.3258178428680355 0.00020031337503329118 0.0008715213485711982 5.35812837041495e-07 1.7112281663237159 0.001052066045342916 1.1320697526371135 0.001237109168101617']
['59866.32007394913 2.8474050721776907 0.0006511735687735738 0.326682948670732 0.00020045404937503106 0.0008738353967190406 5.361891230390428e-07 1.7157717892370379 0.0010528048811713816 1.1316332829406528 0.0012379116020490312']
['59866.320105487095 2.8415323759199618 0.0006507211708023133 0.32521389759470704 0.00020021711436756876 0.0008699058716702367 5.355553519864523e-07 1.7080561848461506 0.0010515604746195839 1.1334761910738111 0.0012366153298065238']
['59866.32013702506 2.840072031729493 0.0006505457097546849 0.3250518449297441 0.00020018469319605062 0.0008694724013732607 5.354686294703523e-07 1.70720506790832 0.0010513901953574088 1.132866963821173 0.0012363782040192704']
['59866.32016856302 2.8415265650566486 0.0006506720983227927 0.3254465383837793 0.0002002357011638644 0.000870528156234029 5.356050693058925e-07 1.7092780377299335 0.0010516580943480275 1.132248527326715 0.0012366725221106478']
['59866.320200100985 2.8428300176301193 0.0006507794232964012 0.32549234160613794 0.00020025295474953938 0.000870650674036515 5.356512204562493e-07 1.7095186008725733 0.0010517487119198498 1.133311416757546 0.0012368060522212282']
['59866.32023163894 2.8467062081678876 0.0006511113767458661 0.32621328568811925 0.00020039524504914468 0.0008725791078909717 5.360318289358495e-07 1.7133050718913827 0.0010524960349219785 1.1334011362765049 0.0012376162282607577']
['59866.32026317691 2.8408651136873027 0.0006506614564665745 0.32543359107571757 0.00020026624237707178 0.0008704935238293608 5.356867631722786e-07 1.7092100371623822 0.0010518184998795786 1.1316550765249205 0.0012368033342533206']
['59866.320294714875 2.8405120590165147 0.0006506606778290096 0.32533923959528444 0.00020025271032661086 0.0008702411456024874 5.356505666559589e-07 1.7087144936727126 0.0010517474281859815 1.1317975653438022 0.0012367424834494579']
['59866.32032625283 2.846671570888549 0.0006510688555817977 0.3265557491631854 0.00020042322113805302 0.0008734951541915634 5.361066614205241e-07 1.7151037245965621 0.001052642968162043 1.131567846291987 0.0012377188182820795']
['59866.3203577908 2.848405151545919 0.0006512496653817878 0.3267203638634561 0.00020047525881006524 0.0008739354776075916 5.362458555840155e-07 1.7159682976021855 0.0010529162752629477 1.1324368539437335 0.0012380463680224138']
['59866.320389328765 2.846526281060515 0.0006510961883408372 0.3264718513023812 0.00020044428859564817 0.000873270738069516 5.361630141938795e-07 1.71466308457133 0.0010527536165737825 1.1318631964891852 0.0012378272996186285']
['59866.32042086672 2.8466618386605136 0.0006510911785550317 0.3267797804300381 0.0002004735901600416 0.0008740944093768868 5.362413921571323e-07 1.7162803594014606 0.0010529075113447563 1.130381479259053 0.001237955552610185']
['59866.32045240469 2.8413032451030302 0.0006506711731025877 0.32551687021333053 0.0002002784769600862 0.0008707162849454538 5.357194891279662e-07 1.7096474275910218 0.00105188275714331 1.1316558175120084 0.0012368630927803244']
['59866.32048394265 2.846779759692661 0.0006511462205745243 0.32656636012008355 0.00020044854881502027 0.0008735235371536017 5.361744097396228e-07 1.7151594544122037 0.0010527759916755266 1.1316203052804572 0.001237872646606619']
['59866.32051548061 2.839427058482041 0.0006505062124639808 0.32512097956342856 0.00020019300133652446 0.000869657327737794 5.354908526909291e-07 1.7075681699759904 0.001051433830548973 1.1318588885060508 0.0012363945294593956']
['59866.32054701858 2.8439028051685558 0.0006508885098355386 0.3258326788446245 0.00020033688231889228 0.000871561032924303 5.358757160448914e-07 1.7113060863688263 0.0010521895079773755 1.1325967187997295 0.0012372383007867155']
['59866.32057855654 2.8464338618741154 0.0006511044239758343 0.3262634156711738 0.00020039727229871138 0.0008727131992287909 5.360372515709658e-07 1.7135683596175095 0.0010525066822411314 1.1328655022566059 0.0012376216251678608']
['59866.3206100945 2.847082725300984 0.0006511311059855639 0.32655889082509243 0.00020042054542549482 0.0008735035577381522 5.360995042292648e-07 1.7151202249217041 0.0010526289150498678 1.13196250037928 0.0012377396131582142']
['59866.32064163247 2.845951132365517 0.00065103452663207 0.32629813929558904 0.00020040813617024807 0.0008728060805139633 5.360663110475403e-07 1.7137507315944804 0.0010525637403899584 1.1322004007710367 0.0012376333796608522']
['59866.32067317043 2.845044710965763 0.0006509668644032627 0.3258891671594514 0.00020034435361223238 0.0008717121319920615 5.358957008056706e-07 1.7116027686945978 0.0010522287479634055 1.133441942271165 0.0012373128935688222']
['59866.32070470839 2.842114692671762 0.000650770797305539 0.3253663961301506 0.00020026263082862847 0.0008703137858841883 5.356771027388843e-07 1.708857122532304 0.001051799531662965 1.1332575701394583 0.0012368447297183747']
['59866.32073624635 2.845953796990509 0.0006510509639261477 0.32624134142998956 0.00020037772646766934 0.0008726541534372032 5.35984968955383e-07 1.713452423476836 0.0010524040255654903 1.1325013735136729 0.0012375061982291705']
['59866.32076778432 2.8422820272963065 0.0006508127407343534 0.3255778671433871 0.00020027602700847355 0.0008708794439863267 5.35712935818563e-07 1.7099677896186298 0.0010518698897503862 1.1323142376776767 0.0012369266301869527']
['59866.32079932228 2.8469672432359276 0.0006511182198998422 0.3266603401035858 0.00020045071129346002 0.0008737749216733677 5.361801940947996e-07 1.7156530467625306 0.0010527873492303574 1.131314196473397 0.0012378675773219935']
['59866.32083086024 2.8418901338574396 0.0006506823471707856 0.3258134283069257 0.0002003119663345969 0.000871509540180909 5.358090689514021e-07 1.7112049806036016 0.0010520586467153198 1.130685153253838 0.0012370185580855902']
['59866.32086239821 2.8409008990410944 0.0006506505501204038 0.32525257426536686 0.0002002416655207275 0.0008700093268520492 5.35621023202987e-07 1.7082593186206243 0.0010516894197517201 1.1326415804204701 0.0012366878239837625']
['59866.32089393617 2.8459739427222455 0.000651034070439591 0.32658312637846976 0.0002004376419202902 0.000873568384765355 5.361452351814704e-07 1.7152475124919633 0.0010527187075645495 1.1307264302302822 0.0012377649365406657']
['59866.32092547413 2.8441709251323974 0.0006509435133823244 0.3257962356683203 0.00020029719898295118 0.0008714635520562225 5.357695681613048e-07 1.7111146831319344 0.0010519810870953318 1.133056242000463 0.0012370899988363015']
['59866.320957012096 2.846588747920096 0.0006511144484011702 0.32640232612757036 0.0002004239570985324 0.0008730847670570711 5.361086300213344e-07 1.7142979313422815 0.0010526468335006955 1.1322908165778147 0.0012377460890650397']
['59866.320988550055 2.8410867526478034 0.0006507155036319548 0.32521062976368176 0.00020021558289248857 0.000869897130637281 5.355512554851205e-07 1.7080390218680765 0.0010515524311580282 1.1330477307797269 0.0012366055078889744']
['59866.32102008802 2.846885938995518 0.0006511378482681217 0.3263869688915307 0.0002003987439187974 0.0008730436884011393 5.3604118796779e-07 1.7142172735899723 0.0010525144113382216 1.1326686654055458 0.0012376457827350613']
['59866.321051625986 2.8465805878557506 0.0006510789890087746 0.3266000451125957 0.00020043020370267477 0.0008736136402303467 5.361253388940537e-07 1.7153363713896836 0.0010526796412955609 1.131244216466067 0.001237755338153239']
['59866.321083163944 2.840282845304267 0.0006506092110670291 0.32523275713893307 0.0002002200448064092 0.0008699563185557498 5.355631905381646e-07 1.7081552370742283 0.0010515758655798802 1.1321276082300384 0.0012365695073853862']
['59866.32111470191 2.8442842999210125 0.0006509994518555567 0.32593431879368207 0.00020034367675000002 0.0008718329068790612 5.358938902851653e-07 1.711839909630683 0.0010522251930147062 1.1324443902903294 0.0012373270154373381']
['59866.321146239876 2.84173910339039 0.0006507366646179032 0.3254864726014162 0.00020026731787042368 0.0008706349751942883 5.356896399804e-07 1.7094877762679423 0.0010518241484791162 1.1322513271224477 0.0012368477052579476']
['59866.321177777834 2.846574426579115 0.0006511318128510075 0.3261734830005445 0.0002003677373021675 0.0008724726407569237 5.359582492063581e-07 1.713096024162524 0.0010523515614609639 1.1334784024165911 0.0012375041198379778']
['59866.3212093158 2.846394857644589 0.000651092498617469 0.32613053101063916 0.0002003513884752179 0.0008723577496391241 5.35914518170681e-07 1.7128704359802478 0.0010522656957732033 1.1335244216643414 0.0012374104154471153']
['59866.32124085376 2.8437161904133474 0.0006509120759100329 0.32600155662361296 0.00020037043517318284 0.0008720127595344609 5.35965465668676e-07 1.7121930494937656 0.0010523657309515907 1.1315231409195818 0.0012374005666100142']
['59866.321272391724 2.8469763214686266 0.0006511182267108218 0.3265466351158315 0.00020041610775749146 0.0008734707752724383 5.3608763403097e-07 1.7150558567007959 0.0010526056079700182 1.1319204647678307 0.0012377130164480685']
['59866.32130392969 2.846292857033993 0.0006510795463074003 0.3264454927208845 0.00020044461704681643 0.000873200232211733 5.361638927590391e-07 1.714524646643301 0.0010527553416324392 1.131768210390692 0.0012378200131503304']
['59866.32133546765 2.846115819952572 0.0006510400131500702 0.32634569781218004 0.00020041247261323874 0.0008729332935055864 5.360779104817823e-07 1.714000513719433 0.001052586515825834 1.1321153062331388 0.0012376556354741057']
['59866.321367005614 2.8443927517290004 0.0006509394338356893 0.3261808813227056 0.0002003863233853142 0.000872492430329067 5.360079646182155e-07 1.7131348808965632 0.0010524491774438773 1.1312578708324372 0.0012374859262329497']
['59866.32139854358 2.8406823752725248 0.0006505945501498208 0.32551497770921545 0.00020028302637764133 0.000870711222737307 5.35731658242119e-07 1.7096374879685687 0.0010519066511430744 1.131044887303956 0.0012368431070284077']
['59866.32143008154 2.8406801944234976 0.0006506157360906235 0.3253500662291616 0.00020022795763032373 0.0008702701054730521 5.355843563371531e-07 1.7087713562455968 0.0010516174245290115 1.1319088381779008 0.001236608282206526']
['59866.321461619504 2.8456962326661124 0.0006510412778965931 0.32641134160202423 0.00020042839008302607 0.0008731088823062081 5.361204876918356e-07 1.7143452815232367 0.00105267011598228 1.1313509511428756 0.0012377274007661686']
['59866.32149315746 2.8435550542237173 0.0006508559064138157 0.32560266699780693 0.00020028587595939654 0.0008709457804471481 5.357392805113978e-07 1.7100980409548685 0.0010519216174338056 1.1334570132688488 0.0012369933306765656']
['59866.32152469543 2.846850967003995 0.0006511642507628695 0.3265748889300208 0.00020044863845235898 0.0008735463506369664 5.361746495081193e-07 1.715204248582042 0.0010527764624598686 1.131646718421953 0.0012378825313336822']
['59866.32155623339 2.8411836061157754 0.0006506903852786379 0.3254010241934365 0.0002002671311091212 0.0008704064115554765 5.356891404176358e-07 1.709038992612587 0.0010518231675899225 1.1321446135031883 0.0012368225229890345']
['59866.32158777135 2.846952244303777 0.0006511511358183718 0.3264479540829516 0.00020041661206527666 0.0008732068160426525 5.360889829902449e-07 1.7145375739650819 0.0010526082566453606 1.1324146703386953 0.0012377325816328587']
['59866.32161930932 2.8442031167360855 0.0006509475323003981 0.32593762036438056 0.0002003384923187061 0.0008718417381613576 5.358800225899124e-07 1.7118572498129232 0.0010521979638587508 1.1323458669231623 0.0012372765434438976']
['59866.32165084728 2.8429842989687586 0.0006508811766029061 0.32558735237066605 0.00020029599391865394 0.000870904815764609 5.357663447673611e-07 1.7100176069887925 0.0010519747579761237 1.1329666919799661 0.0012370518168108027']
['59866.32168238524 2.846286822157617 0.000651102630553282 0.3263672728405239 0.00020039920704788286 0.0008729910039662297 5.36042426779273e-07 1.7141138279439283 0.0010525168437388805 1.1321729942136889 0.0012376293232900788']
['59866.32171392321 2.843999891869787 0.000650922175885453 0.3257933700469785 0.00020031539411162472 0.0008714558868830869 5.358182378196003e-07 1.7110996325996772 0.0010520766497459282 1.1329002592701098 0.001237160036535318']
['59866.321745461166 2.842415869845822 0.0006507401876467096 0.3257049287751743 0.00020029603346850868 0.0008712193177136588 5.357664505581994e-07 1.710635130121714 0.001051974965695949 1.131780739724108 0.0012369778172099401']
['59866.32177699913 2.847453810672672 0.0006511712726172113 0.32696095423920657 0.00020050897213339875 0.0008745790263060962 5.363360344421094e-07 1.7172319025168414 0.0010530933410367582 1.1302219081558305 0.0012381557297924525']
['59866.3218085371 2.8432279849926285 0.0006508374882616864 0.3256220405411108 0.00020028443655618837 0.0008709976022149131 5.3573543029063e-07 1.710199792757935 0.0010519140575430063 1.1330281922346934 0.001236977211020224']
['59866.321840075056 2.8463262968251186 0.0006510430460909616 0.3263357723727206 0.0002003800042660288 0.0008729067442156313 5.359910617766985e-07 1.7139483843105074 0.001052415988792168 1.1323779125146112 0.0012375122065372908']
['59866.32187161302 2.8431862868979465 0.0006508761017261356 0.32563038065695227 0.00020028322240085516 0.0008710199109655372 5.357321825793197e-07 1.7102435958873545 0.0010519076806767603 1.132942691010592 0.0012369921052557175']
['59866.32190315099 2.8459530645009483 0.0006510695258698304 0.32653572907451656 0.0002004538121101611 0.0008734416029970628 5.3618848838565e-07 1.7149985770720408 0.0010528036350323589 1.1309544874289075 0.0012378558161004513']
['59866.321934688945 2.846212141638319 0.00065104562807837 0.3261746583793097 0.0002003616063182494 0.0008724757847458393 5.359418496030542e-07 1.7131021973703242 0.0010523193609151757 1.1331099442679946 0.0012374313909049193']
['59866.32196622691 2.8437008208368146 0.0006508937976284845 0.3254366786623646 0.00020024860728161438 0.000870501782731497 5.356395915317083e-07 1.7092262534788059 0.0010517258785799077 1.1344745673580088 0.001236846821342849']
['59866.32199776487 2.8463313900307163 0.0006511026373486935 0.3262990023734694 0.00020038418419537034 0.0008728083891376765 5.360022425568074e-07 1.7137552645665413 0.0010524379422025753 1.132576125464175 0.0012375622273445549']
['59866.322029302835 2.847622512180341 0.0006511785399174305 0.3263836417623488 0.0002003845232129222 0.0008730347887531459 5.36003149385701e-07 1.7141997991720002 0.0010524397227569442 1.133422713008341 0.0012376036768229602']
['59866.3220608408 2.84670143826265 0.0006510942378743996 0.3265065915564479 0.00020041377408975958 0.0008733636638368938 5.360813917661791e-07 1.714845543888907 0.0010525933513117626 1.1318558943737431 0.0012376899732238979']
['59866.32209237876 2.843942879927578 0.0006508981067913398 0.3257695834758928 0.00020028637506766582 0.0008713922608264902 5.357406155626279e-07 1.7109747031296891 0.001051924238800766 1.132968176797889 0.0012370177644646504']
['59866.322123916725 2.843788986120866 0.0006509045280130147 0.3258881208876385 0.00020034180097727323 0.0008717093333478458 5.358888728313571e-07 1.7115972735695302 0.0010522153412671916 1.1321917125513357 0.0012372686971656066']
['59866.32215545469 2.8409419612673643 0.0006506641081574077 0.32558059134821393 0.00020026700135830484 0.0008708867308882457 5.356887933506813e-07 1.70998209741709 0.0010518224861255508 1.1309598638502742 0.0012368081192988707']
['59866.32218699265 2.8468693660852793 0.0006511320502073976 0.32642416887007286 0.0002003980810704068 0.0008731431936190871 5.360394149325316e-07 1.7144126516285338 0.0010525109299916325 1.1324567144567455 0.0012376397717264666']
['59866.322218530615 2.847303980260933 0.000651154293364696 0.32641523635233216 0.00020043461018539512 0.0008731193002686218 5.361371256756772e-07 1.714365737144602 0.0010527027845871593 1.132938243116331 0.0012378146333134198']
['59866.32225006857 2.8426825858406737 0.0006507966726401447 0.32538481659884017 0.0002002522090577584 0.0008703630582984069 5.356492258254432e-07 1.7089538686913874 0.0010517447954714204 1.1337287171492862 0.001236811798100545']
['59866.32228160654 2.843318346592725 0.0006508535624342004 0.3255627019359728 0.00020027269095684443 0.0008708388789825789 5.357040123041567e-07 1.7098881404200255 0.0010518523684708218 1.1334302061726997 0.0012369332095109125']
['59866.322313144505 2.843227651299558 0.0006508185816385233 0.3256943698566864 0.00020030050215502255 0.0008711910739477587 5.357784037270701e-07 1.7105796736170507 0.0010519984356881437 1.1326479776825074 0.0012370390191486608']
['59866.32234468246 2.841438125130083 0.0006506850409339865 0.3253136519362989 0.0002002437662280698 0.0008701727018645093 5.356266423283235e-07 1.7085801047074525 0.0010517004528785181 1.1328580204226304 0.0012367153532968464']
['59866.32237622043 2.841844464306651 0.0006507497146118634 0.32534027334586574 0.00020024793263252716 0.000870243910753999 5.356377869310849e-07 1.7087199230350092 0.0010517223352548696 1.1331245412716417 0.0012367679901830327']
['59866.322407758395 2.8430932425568547 0.0006508308865281316 0.32554302889649916 0.0002002681016158491 0.0008707862561005978 5.356917363998719e-07 1.7097848156328739 0.0010518282647891234 1.1333084269239808 0.0012369007807695378']
['59866.32243929635 2.841902288748167 0.000650728424468044 0.325466403234093 0.00020027672728017314 0.000870581292185646 5.357148089564202e-07 1.709382369926959 0.0010518735676479684 1.1325199188212078 0.0012368853967636322']
['59866.32247083432 2.8465345572178964 0.0006510722598529103 0.3263182780800248 0.00020039318150942217 0.0008728599492045651 5.360263092291755e-07 1.7138565025211387 0.0010524851970032678 1.1326780546967576 0.0012375864323193686']
['59866.32250237228 2.841011952972875 0.0006506599920922202 0.325633422459054 0.00020028789275863915 0.0008710280473998295 5.357446751932244e-07 1.7102595717387292 0.0010519322098668023 1.1307523812341456 0.0012368992681155173']
['59866.32253391024 2.84040740067321 0.0006505875384704976 0.32564256569712124 0.00020031149751613807 0.0008710525044004054 5.358078149215679e-07 1.7103075929470655 0.0010520561844334984 1.1300998077261446 0.0012369665963225815']
['59866.32256544821 2.8471055955450617 0.0006511504927657521 0.32626860422695136 0.0002003830737864614 0.0008727270779565138 5.359992723540055e-07 1.7135956104356689 0.0010524321102230116 1.1335099851093928 0.0012375824460849236']
['59866.32259698617 2.840841871950123 0.0006506516006885237 0.3253004287189601 0.00020022199912667402 0.0008701373314375673 5.355684180966609e-07 1.7085106550365552 0.0010515861298669854 1.1323312169135678 0.0012366005393849553']
['59866.32262852413 2.8469391362766814 0.0006511060128108795 0.3264351132756963 0.00020042384248535665 0.0008731724685141153 5.36108323445646e-07 1.7144701327505059 0.0010526462315407388 1.1324690035261755 0.0012377411396149842']
['59866.3226600621 2.843595647716548 0.0006508861375290716 0.3258064426237057 0.00020031584007428307 0.0008714908543655252 5.358194307130711e-07 1.7111682910908914 0.0010520789919867808 1.1324273566256566 0.0012371430674774178']
['59866.32269160006 2.843738044548723 0.0006509043685573666 0.3257914403839021 0.00020032873961833793 0.0008714507252794379 5.358539353550873e-07 1.711089497814612 0.0010521467416929515 1.132648546734111 0.0012372102743924164']
['59866.32272313802 2.843438815745148 0.0006508353874855473 0.3258722367000143 0.00020035485027156876 0.0008716668451633517 5.359237780362477e-07 1.711513848214361 0.0010522838774767267 1.1319249675307868 0.0012372906127506654']
['59866.32275467598 2.839993822021799 0.0006505560434846037 0.3251610978007877 0.0002002002651339216 0.0008697646389274385 5.355102824264143e-07 1.7077788750041374 0.0010514719807453866 1.1322149470176615 0.0012364531903824617']
['59866.32278621395 2.8442341791670938 0.0006509781540575323 0.325792851263523 0.00020032194215463905 0.0008714544992032324 5.358357530030174e-07 1.7110969078966545 0.0010521110407281464 1.1331372712704393 0.0012372187353423872']
['59866.32281775191 2.8419006438195806 0.0006506988901998495 0.3257676037204213 0.00020031896243138592 0.0008713869652320465 5.358277826217605e-07 1.7109643052543135 0.0010520953909211447 1.130936338565267 0.0012370585100571565']
['59866.32284928987 2.840446895655362 0.000650629878340982 0.3253098681135055 0.0002002369225368673 0.0008701625806191083 5.356083363235525e-07 1.7085602316885793 0.0010516645091222022 1.1318866639667826 0.0012366557638798451']
['59866.322880827836 2.847188656608276 0.0006511413801098181 0.32671665817786866 0.00020046644876946088 0.0008739255653692926 5.362222898443345e-07 1.7159488349677976 0.0010528700040412864 1.1312398216404782 0.0012379500564648062']
['59866.3229123658 2.8439202982093144 0.000650863879377997 0.32552545274567446 0.00020026206926633078 0.0008707392421294334 5.356756006310602e-07 1.7096925039163575 0.001051796582281149 1.1342277942929568 0.0012368911997331382']
['59866.32294390376 2.8442117044520923 0.000650919589173084 0.3257809309416845 0.000200319761848102 0.000871422613856277 5.358299209599446e-07 1.7110343011643092 0.001052099589538351 1.133177403287783 0.0012371781835596775']
['59866.322975441726 2.846428148416547 0.0006510822372464343 0.3264259084535963 0.00020042091139053518 0.0008731478467840733 5.361004831392677e-07 1.7144217880966195 0.0010526308371351639 1.1320063603199275 0.0012377155403992058']
['59866.323006979685 2.843388628501655 0.0006508392180511066 0.3259111886822178 0.00020032093726018887 0.0008717710367685771 5.358330650379915e-07 1.7117184279528246 0.00105210576292116 1.1316702005488306 0.0012371411496370542']
['59866.32303851765 2.842791824072881 0.0006507556199032224 0.325973558700984 0.00020035893038903356 0.0008719378686473566 5.359346918322632e-07 1.7120460015807983 0.0010523053066650923 1.1307458224920828 0.0012372668811825285']
['59866.323070055616 2.8457076962119947 0.0006510028526135718 0.32655101416673693 0.00020042764497824056 0.0008734824886774408 5.361184946311678e-07 1.7150788559177361 0.0010526662026168097 1.1306288402942586 0.001237703861286173']
['59866.323101593574 2.843595247737587 0.0006508643278664618 0.32570116314386627 0.00020030217403273939 0.0008712092451281708 5.357828757876227e-07 1.7106153526463566 0.0010520072165585053 1.1329798950912304 0.0012370705545684266']
['59866.32313313154 2.8412191593108824 0.0006506872095632847 0.32528285094258136 0.00020024325041180318 0.0008700903131182524 5.356252625853225e-07 1.7084183347824653 0.0010516977437594706 1.1328008245284171 0.001236714190473294']
['59866.323164669506 2.8411638569871274 0.0006506918488799363 0.3253638822833279 0.0002002362666359446 0.0008703070616632133 5.356065818718881e-07 1.7088439195552938 0.001051661064264415 1.1323199374318336 0.0012366854395069716']
['59866.323196207464 2.8430641982186975 0.0006508154406159733 0.3255853116526922 0.00020027418693907637 0.0008708993571032141 5.357080138666271e-07 1.710006888932207 0.0010518602255203593 1.1330573092864904 0.001236919832396548']
['59866.32322774543 2.8466550218047426 0.000651138953019945 0.3264493620113078 0.00020043074183236442 0.0008732105820721889 5.361267783226273e-07 1.7145449685467848 0.001052682467606956 1.1321100532579578 0.0012377892848732292']
['59866.32325928339 2.8428049922985146 0.0006507802287595786 0.3257841511706615 0.00020031589190676557 0.0008714312275597994 5.358195693583788e-07 1.7110512141316259 0.0010520792642162058 1.1317537781668887 0.001237087581514778']
['59866.323290821354 2.840367441871486 0.00065062515135812 0.3252731575959288 0.00020024272343867965 0.0008700643846470782 5.356238529991462e-07 1.7083674243483655 0.0010516949760434858 1.1320000175231206 0.0012366791864565703']
['59866.32332235932 2.8401550722101887 0.0006505824409542192 0.3252531519168767 0.0002002365667827735 0.0008700108719964724 5.356073847265348e-07 1.7082623525046048 0.0010516626406658273 1.131892719705584 0.001236629217773125']
['59866.32335389728 2.841156678099467 0.0006506605174423571 0.325256740765117 0.00020026518175892573 0.0008700204717097069 5.356839261534438e-07 1.7082812014974635 0.0010518129294061227 1.1328754766020035 0.0012367981029352548']
['59866.323385435244 2.846785670550056 0.0006511315372990478 0.32636331833574667 0.0002003912576171291 0.0008729804261681998 5.36021163061639e-07 1.7140930584860645 0.0010524750925269386 1.1326926120639915 0.0012376090251994']
['59866.32341697321 2.8439587102718127 0.0006509156655622361 0.32596248757998003 0.00020036969648085126 0.0008719082548047793 5.359634897605079e-07 1.7119878549368701 0.001052361851264975 1.1319708553349426 0.0012373991553545583']
['59866.32344851117 2.8428334052269824 0.0006508100102867263 0.32569010775721097 0.00020029657173677862 0.0008711796733729777 5.357678903574578e-07 1.710557288640814 0.001051977792735182 1.1322761165861683 0.0012370169545715185']
['59866.323480049134 2.8463184942168063 0.000651091502656861 0.3262040988083756 0.0002003819747499638 0.0008725545341544542 5.359963325709596e-07 1.713256821472561 0.001052426337972499 1.1330616727442453 0.0012375465008193324']
['59866.32351158709 2.846601329239207 0.000651102038637664 0.3263837642710516 0.0002004232084784436 0.0008730351164483664 5.361066275576768e-07 1.714200442600061 0.001052642901672498 1.1324008866391462 0.001237736217115593']
['59866.32354312506 2.847917546893073 0.0006512503769316784 0.3267830626149486 0.0002004573488233192 0.0008741031888046625 5.361979486441611e-07 1.7162975977675874 0.0010528222102065086 1.1316199491254855 0.001237966744205098']
['59866.32357466302 2.840244610854085 0.0006506227841352981 0.32521034452675046 0.00020024713782206758 0.0008698963676647168 5.35635660914052e-07 1.70803752377495 0.001051718160830187 1.1322070870791348 0.0012366976579002637']
['59866.32360620098 2.843481163788004 0.0006508057929001978 0.32582830223103376 0.00020034574688381304 0.0008715493260388077 5.358994276301938e-07 1.7112830999529085 0.001052236065566245 1.1321980638350957 0.0012372343827063593']
['59866.32363773895 2.8435383161488774 0.0006508866827229466 0.32577778901693843 0.00020033041816130783 0.0008714142096066273 5.358584252443453e-07 1.7110177994587104 0.001052155557569894 1.132520516690167 0.0012372084671029764']
['59866.32366927691 2.8468194907755775 0.0006511201541202312 0.3263848823329454 0.0002004052227256494 0.0008730381071219308 5.360585179532662e-07 1.714206314773873 0.0010525484386851335 1.1326131760017044 0.0012376654115228661']
['59866.32370081487 2.841584374030658 0.0006507015287670825 0.32550508327684846 0.00020028482841286658 0.0008706847563873861 5.357364784574757e-07 1.7095855214120195 0.0010519161156137952 1.1319988526186386 0.0012369074313900105']
['59866.32373235284 2.843761754961448 0.0006508829077107466 0.3260944869623241 0.00020040030399164926 0.0008722613363877228 5.360453609645288e-07 1.7126811290038033 0.0010525226049981579 1.1310806259576445 0.0012375186437311174']
['59866.323763890796 2.8413873932195797 0.0006507039160795816 0.32527792940825045 0.0002002229157776588 0.0008700771486389858 5.355708700216242e-07 1.7083924863878701 0.0010515909442103928 1.1329949068317096 0.0012366321604853276']
['59866.32379542876 2.841518465865109 0.0006507157865076193 0.3251196864628204 0.00020020445508870887 0.0008696538688578999 5.355214900233173e-07 1.7075613784811998 0.0010514939868104458 1.133957087383909 0.0012365559587454']
['59866.32382696673 2.840932578987185 0.000650643737398408 0.3254036525572778 0.00020023826152880197 0.0008704134420949317 5.356119179569166e-07 1.7090527970445264 0.0010516715416428676 1.1318797819426585 0.0012366690359660723']
['59866.323858504686 2.8406050726482928 0.0006506007819901353 0.3255143265882996 0.00020027199793703162 0.0008707094810715539 5.357021585641756e-07 1.7096340682158593 0.0010518487286608803 1.1309710044324335 0.0012367971238289996']
['59866.32389004265 2.848007784098856 0.0006514244969322132 0.3262828742155722 0.00020040594672595462 0.0008727652483636882 5.360604545621298e-07 1.7136705578548963 0.001052552241207745 1.1343372262439597 0.0012378287828592588']
['59866.32392158062 2.841290072977449 0.0006507016076638918 0.32540242024685684 0.00020025633081510803 0.0008704101458210675 5.356602510028619e-07 1.7090463248259289 0.0010517664433566597 1.13224374815152 0.0012367801880639466']
['59866.323953118575 2.8412676192414614 0.0006506714425964257 0.3258530176055891 0.00020033068844115218 0.0008716154365267211 5.358591482086015e-07 1.7114129075923799 0.0010521569771068918 1.1298547116490816 0.001237096451650083']
['59866.32398465654 2.8437037252717525 0.0006508561773653777 0.32567562206098766 0.00020027992877506997 0.0008711409259753632 5.357233725486574e-07 1.7104812083035068 0.0010518903822220062 1.1332225169682457 0.0012369669113706438']
['59866.3240161945 2.8467384015886346 0.0006511326605020368 0.3262580229827411 0.00020037394769621632 0.0008726987744721419 5.35974861221676e-07 1.7135400366740605 0.0010523841790767664 1.133198364914574 0.0012375323033939518']
['59866.324047732465 2.8471904512381228 0.0006511529611620296 0.32663602345932297 0.00020046637526726377 0.0008737098777383452 5.362220932352925e-07 1.7155253332947635 0.001052869618000335 1.1316651179433592 0.0012379558196229181']
['59866.32407927043 2.846851622779684 0.0006510976073625501 0.3265943521478019 0.00020044379527082138 0.0008735984122725688 5.361616946126235e-07 1.7153064713645059 0.0010527510255820452 1.131545151415178 0.0012378258424258581']
['59866.32411080839 2.844221707111638 0.0006509443371191727 0.3258464404616588 0.00020034326243991018 0.0008715978435020499 5.358927820582951e-07 1.7113783637692164 0.001052223017016335 1.1328433433424214 0.0012372961680884968']
['59866.324142346355 2.8465027622496546 0.0006511214340222877 0.32621247032698136 0.0002003496147807029 0.0008725769269034843 5.359097737631248e-07 1.7133007895324652 0.0010522563801507506 1.1332019727171894 0.0012374177190468873']
['59866.32417388431 2.847026180083648 0.0006511112374042351 0.32657183984804206 0.00020044461453261024 0.0008735381947299277 5.361638860338569e-07 1.7151882344960194 0.001052755328427575 1.1318379455876286 0.0012378366713774178']
['59866.32420542228 2.8475326743695266 0.0006511588804376341 0.326920381261685 0.00020051932825953476 0.0008744704987442724 5.363637357642242e-07 1.7170188091475054 0.0010531477324555397 1.1305138652220212 0.0012381954748540468']
['59866.324236960245 2.846994508157536 0.0006511246546637299 0.32656033233007475 0.00020043771339702053 0.0008735074135808988 5.361454263726459e-07 1.715127795851233 0.0010527190829675449 1.131866712306303 0.0012378129032915234']
['59866.3242684982 2.842337369798454 0.0006507965831771336 0.3260539528918751 0.000200379232048602 0.0008721529128973767 5.359889961931587e-07 1.7124682399783357 0.0010524119330283719 1.1298691298201184 0.0012373791130674324']
['59866.32430003617 2.841996619107949 0.0006507471917742435 0.3257816298900714 0.00020032956516295532 0.0008714244834544409 5.35856143582089e-07 1.7110379721117197 0.00105215107753653 1.1309586469962292 0.0012371312774169705']
['59866.324331574135 2.8431005229414965 0.0006508142273613059 0.3258009166817474 0.0002003314133362572 0.0008714760731726192 5.358610872109409e-07 1.7111392682864883 0.001052160784329082 1.1319612546550082 0.0012371747954981473']
['59866.32436311209 2.8471668670137147 0.0006511630388940714 0.3265555706514361 0.00020044649181435377 0.0008734946766953063 5.361689075240931e-07 1.7151027870348536 0.0010527651881005976 1.132064079978861 0.001237872305408861']
['59866.32439465006 2.8463641041670567 0.0006510828233221546 0.3263457287284972 0.00020038670734625786 0.0008729333762028083 5.360089916649741e-07 1.7140006760950486 0.001052451194045472 1.132363428072008 0.0012375630726039332']
['59866.32442618802 2.842267940592263 0.0006507746360852018 0.32559741884751375 0.00020029774161614008 0.000870931742311665 5.35771019636167e-07 1.7100704771403035 0.0010519839370595593 1.1321974634519594 0.0012370035694383252']
['59866.32445772598 2.8441900761125813 0.0006509579573936953 0.32595441626392896 0.0002003678191789406 0.0008718866650594552 5.359584682163272e-07 1.7119454635710556 0.0010523519914860326 1.1322446125415258 0.001237413017661763']
['59866.32448926395 2.8474544625858353 0.0006511718773762918 0.3266411592725995 0.0002004445944424041 0.0008737236153865765 5.361638322951071e-07 1.7155523071039893 0.0010527552229117863 1.131902155481846 0.0012378684797884666']
['59866.32452080191 2.841635255426179 0.0006507275602177984 0.32544206868005315 0.0002002606627999318 0.0008705162003442447 5.356718385120738e-07 1.7092545623952373 0.0010517891953777932 1.1323806930309417 0.001236813190882307']
['59866.32455233987 2.8475662425648913 0.0006512011518134324 0.326197113542382 0.0002003609291433753 0.0008725358494550981 5.359400382462718e-07 1.7132201341511661 0.00105231580432445 1.1343461084137252 0.001237510198808137']
['59866.32458387784 2.8446782424065185 0.0006509776910762076 0.32606722285949075 0.00020035887932045448 0.0008721884083753716 5.359345552303002e-07 1.7125379351864012 0.0010523050384477653 1.1321403072201173 0.0012373834685421748']
['59866.3246154158 2.8430069470662582 0.0006508055200216696 0.32545829780040947 0.00020023866067269625 0.0008705596111799882 5.356129856161398e-07 1.7093397993718984 0.0010516736379868501 1.1336671476943598 0.0012367559442861683']
['59866.32464695376 2.843078028102119 0.0006508482455680003 0.32568692058815707 0.00020027333991617244 0.0008711711481005509 5.357057481879368e-07 1.7105405493075478 0.0010518557768706537 1.1325374787945712 0.0012369333102860115']
['59866.32467849172 2.847366371631609 0.0006511758611815634 0.3266722990836258 0.00020045636858563037 0.0008738069104261021 5.361953266328404e-07 1.715715856531648 0.0010528170618993194 1.1316505150999612 0.0012379231672490284']
['59866.32471002969 2.847735367010602 0.0006512212765566207 0.32642097322260444 0.0002004332950142999 0.0008731346456679782 5.361336077600331e-07 1.7143958677657796 0.001052695877175945 1.1333394992448225 0.0012378439969815528']
['59866.32474156765 2.840922171119156 0.0006506531797125104 0.3253962105703851 0.00020024818426286664 0.000870393535725177 5.356384600102842e-07 1.7090137109789134 0.001051723656842787 1.1319084601402427 0.0012367183230763443']
['59866.32477310561 2.8432643734825476 0.0006508359752354997 0.3256006413180941 0.0002003010026891594 0.0008709403620111915 5.35779742592315e-07 1.7100874018807464 0.0010520010645439046 1.1331769716018012 0.001237050405788807']
['59866.32480464358 2.840148374329591 0.0006505783117875212 0.32545034911442305 0.00020026646118727356 0.0008705383494545122 5.35687348461778e-07 1.70929805207155 0.0010518196490928234 1.130850322258041 0.0012367605726194748']
['59866.32483618154 2.8414622052499374 0.0006506753599255399 0.32548304779917164 0.00020025772969182548 0.0008706258142832574 5.356639928204142e-07 1.7094697888611958 0.0010517737903982432 1.1319924163887416 0.0012367726267115222']
['59866.3248677195 2.8408080628327284 0.0006506624160792237 0.32544624632310776 0.00020027631256988793 0.0008705273750088264 5.357136996590783e-07 1.7092765037978348 0.0010518713895477309 1.1315315590348936 0.0012368488185090071']
['59866.324899257466 2.844613015232122 0.0006509651144422433 0.32565772568424645 0.00020028591679609046 0.000871093055440543 5.357393897443674e-07 1.7103872147281851 0.0010519218319122398 1.134225800503937 0.0012370509773951942']
['59866.324930795425 2.8468179891553262 0.0006511295636967144 0.32643962595157694 0.00020043964106423946 0.0008731845393489552 5.361505826376296e-07 1.7144938337792908 0.0010527292072701653 1.1323241553760355 0.0012378240959682212']
['59866.32496233339 2.841078516551936 0.0006506797258093512 0.3253095935152053 0.00020026790379760816 0.0008701618461035311 5.356912072612017e-07 1.708558789470616 0.001051827225827774 1.1325197270813199 0.001236820366331297']
['59866.324993871356 2.8409496058430133 0.000650645256009474 0.32558492797111316 0.000200288603202085 0.0008708983308037204 5.357465755392109e-07 1.7100048737978635 0.0010519359411874213 1.1309447320451498 0.0012368946897490908']
['59866.325025409315 2.8468539156317436 0.0006511300691894832 0.32617714653776236 0.0002003810422989749 0.0008724824402536871 5.35993838382992e-07 1.7131152654294244 0.0010524214406458766 1.1337386502023192 0.0012375626269946274']
['59866.32505694728 2.8471102663760335 0.0006511069046123694 0.32673873213189686 0.000200486440529983 0.0008739846103927745 5.362757652646404e-07 1.7160647696002986 0.0010529750027835243 1.1310454967757348 0.0012380212266842859']
['59866.325088485246 2.8436243784582804 0.0006509058881038815 0.32571144644403377 0.0002002940679274341 0.0008712367516500692 5.357611929854621e-07 1.7106693615758077 0.0010519646424760195 1.1329550168824727 0.0012370562170685704']
['59866.325120023204 2.8460904899200608 0.0006510378556668911 0.32642510448132733 0.00020039647696654342 0.0008731456962603638 5.360351241584291e-07 1.71441756555319 0.0010525025050763836 1.1316729243668708 0.0012375830528507598']
['59866.32515156117 2.843660529734397 0.000650912103075996 0.32582256735761556 0.0002003257392944078 0.0008715339859807822 5.358459098696359e-07 1.7112529798194096 0.0010521309836891166 1.1324075499149875 0.0012372009427612978']
['59866.32518309913 2.8458767933253712 0.0006510202704039018 0.32638236916970503 0.00020040291276614082 0.0008730313847294519 5.360523391049615e-07 1.7141931153871064 0.0010525363065448574 1.1316836779382649 0.0012376025489113454']
['59866.325214637094 2.8397326314919553 0.0006505390881938521 0.3252049916980319 0.0002002069485833179 0.0008698820495277406 5.355281598047055e-07 1.708009410178739 0.0010515070828955773 1.1317232213132162 0.0012364741204924812']
['59866.32524617506 2.8468192645802692 0.0006511242571170551 0.3263057296679369 0.0002003678724162463 0.0008728263837959645 5.359586106193585e-07 1.713790596995467 0.0010523522710937307 1.1330286675848023 0.0012375007477502264']
['59866.32527771302 2.8457999065702397 0.000650978803623434 0.3266659061762031 0.00020045298720878485 0.0008737898102106896 5.361862818792367e-07 1.7156822803372014 0.0010527993025671474 1.1301176262330384 0.0012378044168013256']
['59866.325309250984 2.8440933767646346 0.0006508811650572561 0.32615944817509496 0.00020038001138228121 0.0008724350993813652 5.359910808117699e-07 1.7130223118439862 0.0010524160261674435 1.1310710649206484 0.0012374270819568982']
['59866.32534078895 2.840395632670009 0.0006506407723812359 0.32516521446848706 0.00020021111983878877 0.0008697756504906891 5.355393173833121e-07 1.7078004961580204 0.0010515289907499412 1.1325951365119884 0.0012365462518937338']
['59866.32537232691 2.843334546170308 0.000650836372029624 0.3255456084226828 0.0002002865245462559 0.0008707931560055216 5.357410153988716e-07 1.7097983635645109 0.0010519250238773944 1.1335361826057972 0.0012369859494012613']
['59866.325403864874 2.8444650209398104 0.0006509594841109845 0.32579376637471574 0.00020032984040062218 0.0008714569470094476 5.358568798078908e-07 1.7111017141529188 0.0010521525231125116 1.1333633067868916 0.0012372441884470758']
['59866.32543540283 2.846757907915066 0.0006510944249564037 0.3264375573089042 0.0002004039681288024 0.0008731790059925375 5.36055162066043e-07 1.714482969059371 0.0010525418494159791 1.132274938855695 0.001237646272155869']
['59866.3254669408 2.8418142307064 0.0006507579750037953 0.3253088921174321 0.00020024541100552038 0.0008701599699535702 5.356310418991057e-07 1.708555105658782 0.0010517090914155484 1.133259125047618 0.0012367610743377875']
['59866.32549847876 2.8427447679696605 0.0006508246894707207 0.3258563833510773 0.00020032417321117206 0.0008716244394684293 5.358417207958836e-07 1.7114305848270868 0.0010521227584620381 1.1313141831425737 0.0012371479601480286']
['59866.32553001672 2.846990295829273 0.0006511169793334188 0.32651932919589155 0.00020043794529360588 0.000873397735404638 5.361460466665592e-07 1.714912443255733 0.0010527203009117955 1.13207785257354 0.0012378099016925406']
['59866.32556155469 2.8416756640936547 0.0006507265299641644 0.32542687729768366 0.0002002400510035684 0.000870475565325816 5.356167045746412e-07 1.7091747757231286 0.001051680940144792 1.132500888370526 0.0012367205895686528']
['59866.32559309265 2.8414490374011416 0.0006507109456615501 0.32548540420597527 0.00020026016552907258 0.0008706321173721773 5.356705083756822e-07 1.7094821649473493 0.0010517865836610954 1.1319668724537923 0.0012368022284800538']
['59866.32562463061 2.845808660678931 0.000651044713196583 0.3263514392362389 0.00020039735608664457 0.0008729486510857436 5.360374756930455e-07 1.7140306682575575 0.0010525071223038056 1.1317779924213736 0.0012375905870203841']
['59866.32565616858 2.843017838609825 0.0006508139436121951 0.3254995149427 0.00020026050590696523 0.0008706698618007557 5.356714188433147e-07 1.709556275959559 0.0010517883713601116 1.1334615626502658 0.0012368579414501948']
['59866.325687706536 2.844186271237599 0.0006509549659304287 0.32579549489434056 0.00020032669997021324 0.0008714615705799102 5.35848479555403e-07 1.711110792512293 0.0010521360292553216 1.1330754787253061 0.001237227784899224']
['59866.3257192445 2.846084288075374 0.0006510233012060904 0.32631724162345077 0.00020040058628499404 0.0008728571768148668 5.360461160633729e-07 1.7138510589466953 0.0010525240876312712 1.1322332291286787 0.0012375937515022107']
['59866.32575078247 2.84754997551832 0.0006511458845327154 0.3268039628101767 0.0002004798574287966 0.0008741590941724295 5.362581563050658e-07 1.716407367700508 0.0010529404276722512 1.1311426078178117 0.001238012321089946']
['59866.325782320426 2.8415614085478733 0.0006506721639567047 0.32543178452796806 0.00020025384529406818 0.0008704886915435749 5.356536025497586e-07 1.709200548991429 0.0010517533891495178 1.1323608595564443 0.0012367535957237392']
['59866.32581385839 2.8464974037980024 0.000651074234513756 0.3263509019179494 0.00020041350901098967 0.0008729472138275623 5.360806827141364e-07 1.7140278462077176 0.0010525919590913323 1.1324695575902848 0.0012376782664292858']
['59866.32584539636 2.8422489639953943 0.0006508020584762145 0.3255881668922592 0.00020030045644539284 0.0008709069945064209 5.357782814596162e-07 1.7100218849383364 0.0010519981956165591 1.1322270790570579 0.0012370301220654954']
['59866.325876934316 2.841746238008377 0.0006507171692714872 0.3255026640320977 0.00020026404801917912 0.0008706782852149385 5.356808935436143e-07 1.709572815294631 0.0010518069748906467 1.132173422713746 0.0012368228437465531']
['59866.32590847228 2.8436293191541986 0.0006508830030270709 0.32578126068630103 0.00020029839845535745 0.0008714234958812465 5.357727765976503e-07 1.7110360330162873 0.0010519873868453649 1.1325932861379113 0.001237063517250136']
['59866.32594001024 2.8421089055042854 0.0006507855353075642 0.32540039482385463 0.00020024674492433089 0.0008704047280717792 5.35634609962507e-07 1.709035687100077 0.001051716097291654 1.1330732184042085 0.0012367815337673588']
['59866.325971548205 2.8478508776272413 0.0006511950883123972 0.32671763705108103 0.00020047541832674716 0.0008739281837308121 5.3624628227088e-07 1.7159539761086189 0.001052917113060647 1.1318969015186224 0.0012380183722458073']
['59866.32600308617 2.8417830208613153 0.0006507549938572548 0.32557270686638884 0.00020029039830756225 0.0008708656409007469 5.357513772183718e-07 1.709940687323471 0.0010519453692624068 1.1318423335378442 0.0012369604366926118']
['59866.32603462413 2.8416224674646076 0.000650694320862987 0.32552445146843123 0.00020026650878244233 0.0008707365638399769 5.356874757728096e-07 1.709687245107307 0.0010518198990674492 1.1319352223573005 0.0012368218138752254']
['59866.326066162095 2.8414569939904952 0.0006506470654548015 0.32533361649366865 0.00020023966577612312 0.0008702261045198376 5.356156741401516e-07 1.7086849605759908 0.001051678916891403 1.1327720334145044 0.001236677058903746']
['59866.32609770006 2.8423784543219726 0.000650789205639118 0.3254476595171335 0.00020026873102788444 0.0008705311551233599 5.356934199971268e-07 1.7092839260353652 0.0010518315705246033 1.1330945282866074 0.0012368816608425593']
['59866.32612923802 2.842736360314942 0.0006507711525766469 0.3259314628278627 0.00020035545813613584 0.0008718252675332216 5.359254039967616e-07 1.7118249098102032 0.0010522870700427301 1.1309114505047386 0.0012372595405997283']
['59866.326160775985 2.846887863357096 0.0006510926974081504 0.3264324953333937 0.0002003993205749237 0.0008731654658509524 5.360427304496887e-07 1.7144563830535384 0.0010525174399943474 1.1324314803035578 0.0012376246046804644']
['59866.32619231394 2.8470394207849097 0.0006511501194366976 0.3262533424744509 0.00020038146352779966 0.0008726862547069223 5.359949651165993e-07 1.7135154541725364 0.001052423652982141 1.1335239666123733 0.001237575057682846']
['59866.32622385191 2.8461723871178535 0.0006510605563989419 0.3263556807967513 0.00020040321981674018 0.0008729599967214071 5.360531604263173e-07 1.714052945361089 0.0010525379192055683 1.1321194417567644 0.0012376251126508734']
['59866.326255389875 2.846556928628379 0.0006511177287245923 0.326560937480915 0.00020044859551593354 0.0008735090322825383 5.361745346586345e-07 1.7151309741644698 0.0010527762369534326 1.1314259544639094 0.0012378578681550244']
['59866.32628692783 2.8397882416361684 0.0006505472062161547 0.32523705085643106 0.00020022511856640678 0.0008699678037047254 5.355767622017558e-07 1.7081777881115079 0.0010516025134790273 1.1316104535246605 0.001236559547240266']
['59866.3263184658 2.8461987367179287 0.0006510643100329168 0.3261634648831165 0.00020036671880049184 0.0008724458435651733 5.359555248437323e-07 1.7130434079995616 0.001052346212187457 1.133155328718367 0.0012374640544694324']
['59866.326350003765 2.843711709352304 0.0006508847498833293 0.32560866771357344 0.00020029274482896557 0.0008709618315996915 5.357576538651014e-07 1.7101295573191884 0.001051957693429441 1.1335821520331155 0.00123703918547315']
['59866.32638154172 2.846352189980081 0.0006510526195783164 0.3263068677478975 0.00020037990037520724 0.0008728294280153151 5.359907838819457e-07 1.7137965743061845 0.001052415443147097 1.1325556156738965 0.001237516779051617']
['59866.32641307969 2.840719596331772 0.0006506835365610996 0.3253613269808776 0.00020025358451459418 0.0008703002265536997 5.356529049977864e-07 1.7088304988491472 0.0010517520195094234 1.1318890974826248 0.0012367584142805783']
['59866.32644461765 2.8469320156487834 0.0006511057179239709 0.3266576660220162 0.00020046745250590096 0.0008737677688447957 5.362249747118303e-07 1.7156390022164716 0.0010528752757662868 1.1312930134323118 0.0012379357827582268']
['59866.32647615561 2.840303820478707 0.0006505466836332262 0.3252586512875612 0.00020020361172809478 0.0008700255821145956 5.355192341407871e-07 1.708291235753998 0.0010514895573954558 1.1320125847247091 0.0012364632129173436']
['59866.32650769358 2.843949780316005 0.0006509086615858631 0.32602271958698387 0.0002003822120746629 0.0008720693677736365 5.359969673843879e-07 1.7123041995114698 0.0010524275844257507 1.1316455808045351 0.0012374513752821644']
['59866.32653923154 2.8423634106937365 0.000650786665895466 0.3255751473433317 0.00020028828787884944 0.0008708721688666117 5.35745732089604e-07 1.7099535049544732 0.001051934285077991 1.1324099057392634 0.0012369676732355947']
['59866.3265707695 2.841134708977754 0.0006506924087139518 0.32512479892563045 0.0002002113857986761 0.0008696675440465989 5.35540028792232e-07 1.7075882296514207 0.001051530387598089 1.1335464793263335 0.001236574610284455']
['59866.32660230747 2.847077791094266 0.0006511328153510814 0.3266017217031777 0.00020044742962297768 0.0008736181248972149 5.36171416043054e-07 1.715345177012488 0.0010527701135660593 1.1317326140817783 0.0012378605960466304']
['59866.32663384543 2.8440880375363626 0.0006509312787265556 0.32567747225232246 0.00020028024552409945 0.0008711458750021968 5.357242198120819e-07 1.7104909256949712 0.00105189204581985 1.1335971118413914 0.0012370078438246293']
['59866.32666538339 2.8406793740266423 0.0006506211255309219 0.3253714163376034 0.00020024000767748714 0.0008703272143015237 5.356165886828765e-07 1.7088834891680853 0.0010516807125918442 1.131795884858557 0.0012366649385443145']
['59866.32669692135 2.8418332984188677 0.0006507086594088405 0.32553983164604605 0.0002002899776119838 0.0008707777038617085 5.357502519111307e-07 1.7097680233510824 0.0010519431597268056 1.1320652750677853 0.0012369341820507938']
['59866.32672845932 2.8408730634334827 0.0006506384003714193 0.32533487805415473 0.00020023873801526014 0.0008702294790339111 5.356131924976752e-07 1.70869158641888 0.001051674044197795 1.1321814770146026 0.0012366683562205453']
['59866.32675999728 2.841927433111622 0.0006507343640143813 0.32553229425367314 0.00020027936029795316 0.0008707575422944114 5.357218519445705e-07 1.7097284362062666 0.0010518873965228634 1.1321989969053556 0.0012369002819438797']
['59866.32679153524 2.846124045827267 0.0006510586935294091 0.32623455491600273 0.00020039379553911073 0.0008726360003742222 5.360279516806064e-07 1.713416780021023 0.0010524884219491111 1.132707265806244 0.0012375820379906745']
['59866.32682307321 2.8403033386352265 0.0006506240691908574 0.3254635866560519 0.00020026909416019734 0.0008705737581971108 5.356943913299435e-07 1.7093675769750627 0.0010518334777321289 1.1309357616601639 0.001236796403733668']
['59866.32685461117 2.847432332971154 0.0006512204464129321 0.3266789314066635 0.00020045696100614714 0.0008738246510478775 5.361969112824812e-07 1.715750690161048 0.0010528201733516131 1.1316816428101062 0.001237949266828968']
['59866.32688614913 2.8421930365978105 0.0006507799993931287 0.32557982522128076 0.00020027714168974612 0.0008708846815960029 5.357159174493951e-07 1.7099780736411805 0.0010518757441688347 1.13221496295663 0.0012369143821545855']
['59866.326917687096 2.84741324159114 0.0006511845355898609 0.3268334165594593 0.00020046639057496874 0.0008742378792109323 5.362221341814591e-07 1.7165620617618662 0.001052869698397945 1.1308511798292737 0.001237972496138732']
['59866.326949225055 2.8405723262186937 0.000650640679067834 0.3251453922815818 0.00020023963484780175 0.0008697226286582712 5.3561559141082e-07 1.7076963880335179 0.0010516787544527402 1.1328759381851758 0.0012366735607366721']
['59866.32698076302 2.844313180120383 0.0006509491036835755 0.32581974144016623 0.00020031119663250962 0.0008715264270105162 5.358070100960761e-07 1.7112381378159993 0.0010520546041623406 1.1330750423043838 0.001237155457380207']
['59866.327012300986 2.8392606331192995 0.000650516504587358 0.32516226963866135 0.00020021012478524397 0.0008697677734449189 5.355366557414583e-07 1.707785029614818 0.0010515237646283823 1.1314756035044815 0.0012364764252984363']
['59866.327043838945 2.8455316616024 0.0006510034851002281 0.32634358492154936 0.0002004067536155744 0.0008729276417915009 5.360626128893821e-07 1.7139894166047762 0.001052556479073395 1.1315422449976236 0.0012376108755388444']
['59866.32707537691 2.840108018958432 0.0006505505693056537 0.32542437554137443 0.00020025302789309374 0.000870468873445429 5.356514161059675e-07 1.7091616362467146 0.001051749096077173 1.1309463827117174 0.0012366859764398805']
['59866.327106914876 2.8426454306576616 0.0006507589224970126 0.32576924022642684 0.00020031812559192117 0.0008713913426777639 5.358255441824767e-07 1.7109729003488807 0.0010520909957558887 1.131672530308781 0.0012370863504865333']
['59866.327138452834 2.84634956610635 0.0006510663230567684 0.32640480574081665 0.00020042354101326473 0.000873091399707577 5.361075170460891e-07 1.7143109545210962 0.0010526446481789113 1.1320386115852537 0.001237718914923079']
['59866.3271699908 2.8416742195385822 0.0006507217193378671 0.32564200771664253 0.00020030122549822137 0.0008710510118734923 5.357803385782575e-07 1.7103046623773244 0.0010520022347595662 1.1313695571612579 0.0012369912925955264']
['59866.32720152876 2.8456755338532065 0.0006510001158257095 0.3260368742384473 0.0002003427541849963 0.0008721072296685634 5.358914225409523e-07 1.7123785411683157 0.0010522203476102747 1.1332969926848908 0.001237323244237404']
['59866.327233066724 2.8461937457513686 0.0006510676062589046 0.3261418628088594 0.00020036770852441735 0.0008723880607601471 5.359581722295313e-07 1.7129299517272027 0.001052351410317318 1.1332637940241659 0.0012374702092238618']
['59866.32726460469 2.8439401180327053 0.0006508784084251221 0.3258163281870039 0.00020031589571268437 0.0008715172969918136 5.358195795387282e-07 1.7112202110661971 0.0010520792842052752 1.1327199069665081 0.001237139249562435']
['59866.32729614265 2.843779678017736 0.000650878358819667 0.3258245776703389 0.00020030717648192274 0.0008715393633119937 5.357962567038429e-07 1.7112635381845533 0.0010520334899260647 1.1325161398331824 0.0012371002796482582']
['59866.327327680614 2.8440038721716165 0.0006508632038500573 0.32601339836601956 0.00020032553989286184 0.000872044434691416 5.358453764958259e-07 1.7122552435190104 0.0010521299364120895 1.1317486286526062 0.0012371743261240385']
['59866.32735921858 2.846981457255219 0.0006511260461805457 0.32632478073568644 0.0002003837869636259 0.0008728773429825782 5.360011800123422e-07 1.7138906551244038 0.0010524358559013966 1.1330908021308153 0.0012375727690934442']
['59866.32739075654 2.840322261660357 0.0006505737594179688 0.32547374727160194 0.00020027825308412532 0.0008706009365532393 5.357188902882047e-07 1.7094209415525314 0.0010518815813241877 1.1309013201078255 0.001236810849553117']
['59866.327422294504 2.843203004174059 0.0006508064433915434 0.3255067992231273 0.0002002666519334513 0.0008706893463257451 5.356878586835774e-07 1.7095945337349125 0.0010518206509109837 1.1336084704391463 0.0012368814447806854']
['59866.32745383246 2.842308529419543 0.0006507616766742779 0.32558937793060455 0.00020028650801617493 0.0008709102338801844 5.357409711830044e-07 1.7100282454338476 0.0010519249370597424 1.1322802839856954 0.0012369465764680626']
['59866.32748537043 2.8445035956807176 0.0006509928087256782 0.32547183260388424 0.00020026543774171585 0.0008705958150602703 5.356846108748958e-07 1.7094108855246022 0.0010518142738535497 1.1350927101561155 0.0012369740917636948']
['59866.32751690839 2.841451652974971 0.0006506902192486095 0.3254161444354877 0.0002002764701616819 0.000870446856282589 5.35714121197112e-07 1.70911840564857 0.0010518722172357243 1.1323332473264012 0.0012368641488935649']
['59866.32754844635 2.847040719448949 0.0006511821697317174 0.3264630551739185 0.00020043134395626762 0.0008732472095430469 5.361283889275946e-07 1.7146168864176394 0.001052685630022414 1.1324238330313097 0.0012378147090062366']
['59866.32757998432 2.843980395103939 0.0006509564238680556 0.3258084485362064 0.0002003413924335351 0.0008714962199266998 5.358877800287454e-07 1.7111788263456218 0.001052213195554281 1.1328015687583173 0.0012372941746705347']
['59866.32761152228 2.842058083008443 0.0006507298152053601 0.3256165006403469 0.00020029117671276693 0.0008709827836839751 5.357534593534316e-07 1.7101706966404775 0.0010519494575250365 1.1318873863679655 0.0012369506674012592']
['59866.32764306024 2.847445828518485 0.0006511842556041774 0.3267554793377645 0.00020048771586713077 0.0008740294070414605 5.362791766295342e-07 1.7161527276143096 0.0010529817009828299 1.1312931009041753 0.0012380676061312082']
['59866.32767459821 2.8438999004048657 0.000650889145076723 0.325662606946679 0.00020029534997444056 0.0008711061121975962 5.357646222983756e-07 1.710412851610709 0.0010519713759161795 1.1334870487941566 0.0012370531334286686']
['59866.327706136166 2.8417927118790822 0.0006507253286672865 0.32553479818109365 0.00020027478326196984 0.0008707642399822453 5.3570960895463e-07 1.709741587085576 0.0010518633574683291 1.1320511247935061 0.001236875085105078']
['59866.32773767413 2.8420985420003957 0.0006507893220366435 0.32553887330621734 0.00020027102644731837 0.0008707751404243824 5.356995599525785e-07 1.7097629900536626 0.001051843626298941 1.132335551946733 0.0012368919742089932']
['59866.3277692121 2.8464969980743704 0.0006510996575583661 0.3260576576995051 0.0002003492002096859 0.000872162822787251 5.359086648383077e-07 1.7124876980016028 0.0010522542027819638 1.1340093000727676 0.0012374044089726397']
['59866.327800750056 2.8479641600910046 0.0006512120780142192 0.3267866136228292 0.00020047985903943978 0.0008741126872997407 5.362581606133318e-07 1.716316248019061 0.0010529404361315116 1.1316479120719436 0.0012380471447373945']
['59866.32783228802 2.8461828452518523 0.0006509991507902917 0.3263577879387134 0.00020038066790171744 0.0008729656330585342 5.359928369178793e-07 1.7140640122831587 0.0010524194742737262 1.1321188329686935 0.0012374920784232388']
['59866.32786382599 2.8413647879503223 0.0006506727615978421 0.325437683629389 0.00020026198461012634 0.0008705044708906496 5.356753741864652e-07 1.7092315316669593 0.0010517961376582266 1.132133256283363 0.001236790264304391']
['59866.327895363946 2.8441817661689526 0.0006509370800242728 0.3255108749001219 0.0002002607819986981 0.0008707002482440668 5.356721573536346e-07 1.709615939601481 0.0010517898214217338 1.1345658265674716 0.0012369239712273707']
['59866.32792690191 2.8406661203186268 0.0006506270393865443 0.32510973247656255 0.00020022099953180832 0.0008696272432088847 5.355657443073506e-07 1.7075090991416102 0.0010515808798939514 1.1331570211770166 0.0012365831518096294']
['59866.32795843987 2.8436156652727345 0.0006509046833671049 0.3259434276137716 0.00020033305453886195 0.0008718572718159182 5.358654772194646e-07 1.71188775007233 0.0010521694040906617 1.1317279152004045 0.0012372297125973532']
['59866.327989977835 2.8476619857567558 0.0006512114350156647 0.32638306565740655 0.0002004116340712488 0.0008730332477455947 5.360756674884598e-07 1.7141967734107488 0.0010525821117187439 1.133465212346007 0.001237742071275535']
['59866.3280215158 2.8467998829438237 0.0006511131681116209 0.3266709499893641 0.00020044814771656347 0.0008738033017702963 5.361733368521932e-07 1.7157087709525425 0.0010527738850659848 1.1310911119912812 0.0012378534690201742']
['59866.32805305376 2.84243805498573 0.0006507296082108061 0.3259334792097094 0.00020034976307021745 0.0008718306610985673 5.359101704187425e-07 1.7118355000509948 0.0010522571589822347 1.1306025549347354 0.0012372122500329333']
['59866.328084591725 2.845902553096417 0.0006510583142195596 0.3262256688659103 0.00020039045044797606 0.0008726122313188143 5.360190039866707e-07 1.7133701095898652 0.0010524708531931518 1.1325324435065516 0.0012375668973172867']
['59866.32811612969 2.846659782512403 0.0006510700644417052 0.32654156184844874 0.00020045497217048068 0.0008734572049265291 5.361915913996693e-07 1.7150292113889114 0.0010528097277861382 1.1316305711234917 0.0012378612812965952']
['59866.32814766765 2.8462727119311984 0.0006510564306993317 0.32641347448038666 0.00020040681263140564 0.0008731145874849374 5.360627707492353e-07 1.7143564836154763 0.0010525567890304918 1.131916228315722 0.0012376389902104463']
['59866.328179205615 2.8467287878187433 0.0006511050408736103 0.3265793746747716 0.00020043666733526015 0.0008735583494344545 5.36142628290294e-07 1.7152278081658174 0.0010527135889456941 1.1315009796529258 0.00123779791347455']
['59866.32821074357 2.841099790285343 0.0006506332447330068 0.32538958658485406 0.00020025093428297451 0.0008703758174051731 5.356458159648014e-07 1.7089789211389395 0.0010517381002257066 1.1321208691464038 0.001236720118142411']
['59866.32824228154 2.841844406042043 0.0006507350125322479 0.32564790871539306 0.00020028993079553698 0.0008710667962956826 5.357501266830814e-07 1.7103356550178208 0.001051942913842106 1.1315087510242223 0.001236947836619623']
['59866.328273819505 2.8404319099538577 0.0006506092012788446 0.32544982624610813 0.0002002692313579051 0.0008705369508481776 5.356947583163868e-07 1.7092953059144336 0.0010518341983083252 1.1311366040394242 0.0012367891952631271']
['59866.32830535746 2.8466396487602 0.0006511196095043841 0.326717221680543 0.00020045884837913266 0.0008739270726673778 5.362019597655082e-07 1.715951794540667 0.0010528300860248566 1.1306878542195329 0.0012379046554239338']
['59866.32833689543 2.841627316264354 0.0006507086920725636 0.3257077148572794 0.00020029803775952677 0.0008712267701294383 5.357718117821141e-07 1.7106497629058792 0.0010519854924344893 1.130977553358475 0.001236970201028069']
['59866.328368433395 2.839978422558345 0.0006505284622805403 0.32556025272383426 0.0002002928252538963 0.000870832327651175 5.357578689915765e-07 1.7098752769108942 0.0010519581158292873 1.1301031456474508 0.001236852116340587']
['59866.32839997135 2.8434841971747526 0.0006508827504148347 0.32546087780336225 0.00020027625021589254 0.0008705665123602089 5.3571353287006e-07 1.709353349807575 0.0010518710620582592 1.1341308473671776 0.0012369644643170435']
['59866.32843150932 2.8405472893292183 0.0006506239871097513 0.32540551916219496 0.00020024650946612977 0.0008704184350260134 5.356339801417238e-07 1.7090626006417804 0.001051714860641438 1.131484688687438 0.0012366954842226235']
['59866.32846304728 2.8466151000818893 0.0006511218594340488 0.3262287780371497 0.000200368925237015 0.0008726205479569936 5.359614267811992e-07 1.7133864392707443 0.0010523578006145745 1.133228660811145 0.001237504188416022']
['59866.32849458524 2.84714350896546 0.0006511894754666257 0.3262911421773309 0.00020039069500040645 0.0008727873641113048 5.360196581333621e-07 1.713713982023797 0.0010524721376071768 1.133429526941663 0.0012376369958101282']
['59866.32852612321 2.840568126592207 0.0006505866697874717 0.32543018295458614 0.00020025901060825328 0.0008704844075381891 5.356674191091734e-07 1.709192137366524 0.00105178051790049 1.1313759892256832 0.0012367316898746373']
['59866.32855766117 2.840875488538332 0.0006506479352920197 0.3252490343443889 0.00020023979491414363 0.0008699998580130274 5.356160195679551e-07 1.7082407265986812 0.001051679595137309 1.1326347619396508 0.0012366780933322716']
['59866.32858919913 2.8398329486120186 0.0006505733700299604 0.3254446731754944 0.00020026569500177 0.0008705231670387613 5.356852990128668e-07 1.709268241467933 0.0010518156250092963 1.1305647071440856 0.0012367545507520222']
['59866.3286207371 2.841466347836661 0.0006507294578646121 0.3256096817065844 0.00020027925333473187 0.0008709645439022117 5.357215658315385e-07 1.7101348829127332 0.0010518868347412387 1.1313314649239277 0.0012368972230685595']
['59866.32865227506 2.840302159354758 0.0006506053526060547 0.3252785247726053 0.00020023944686563852 0.0008700787411630197 5.356150885824084e-07 1.7083956133014986 0.0010516777671514628 1.1319065460532596 0.0012366541354640493']
['59866.32868381302 2.847021953972636 0.0006511841496060243 0.32640930275860425 0.00020040400506593983 0.0008731034286590067 5.360552608681943e-07 1.7143345733119972 0.0010525420434135497 1.1326873806606386 0.0012376936413552796']
['59866.32871535098 2.8406923135086846 0.0006506226866453838 0.32532599874678286 0.0002002413122665682 0.0008702057280144242 5.356200782929766e-07 1.7086449514011706 0.0010516875644252532 1.132047362107514 0.0012366715867781464']
['59866.32874688895 2.8471467190253668 0.0006511674497351592 0.3266153507740685 0.00020045328852930232 0.0008736545809308624 5.361870878733511e-07 1.7154167582671667 0.0010528008851328904 1.1317299607582 0.0012379049847751598']
['59866.32877842691 2.8460004540089026 0.0006510430877306988 0.3263473458248736 0.00020042072257733006 0.0008729377017302328 5.360999780879245e-07 1.714009169248286 0.0010526298454691704 1.1319912847606166 0.0012376941034255484']
['59866.32880996487 2.8478152302741226 0.0006511712588645904 0.32668404975725096 0.00020045324748727776 0.0008738383419856333 5.36186978091148e-07 1.7157775722544695 0.0010528006695760387 1.1320376580196532 0.0012379068051477265']
['59866.32884150284 2.840353275367595 0.0006506076561576717 0.32515458470081293 0.00020021279528991323 0.0008697472172122143 5.355437990022761e-07 1.7077446675462866 0.0010515377903881997 1.1326086078213082 0.0012365363103708181']
['59866.3288730408 2.840673147505245 0.0006506339649404772 0.3253949131040855 0.00020025734909402413 0.0008703900651676128 5.356629747696341e-07 1.709006896555071 0.0010517717914602107 1.131666250950174 0.0012367491490377451']
['59866.32890457876 2.848307874990443 0.0006512206978122183 0.3263692105104791 0.0002003987677116411 0.0008729961869872625 5.360412516106252e-07 1.7141240047819284 0.0010525145363006361 1.1341838702085145 0.001237689478982178']
['59866.328936116726 2.8474882873338965 0.0006511668560125957 0.32664469701060234 0.0002004450888477192 0.0008737330783864171 5.361651547665321e-07 1.7155708876607267 0.0010527578195783573 1.1319173996731697 0.0012378680467047794']
['59866.328967654685 2.8459882123002362 0.0006510385092166695 0.32623566900740325 0.00020036965916272835 0.0008726389804272214 5.359633899392689e-07 1.7134226313414038 0.0010523616552664304 1.1325655809588324 0.001237463613185521']
['59866.32899919265 2.8460747793482364 0.000651071343342088 0.3261891438133605 0.0002003838957241036 0.0008725145314421758 5.360014709328068e-07 1.713178276330675 0.001052436427122393 1.1328965030175613 0.0012375444748595579']
['59866.329030730616 2.8477965494724247 0.0006511998219899046 0.3265750826571348 0.0002004360284366359 0.0008735468688323918 5.361409193176185e-07 1.7152052660563804 0.0010527102333856928 1.1325912834160443 0.0012378449190567626']
['59866.329062268574 2.843426288012034 0.0006508844814193556 0.325687179526828 0.00020031760326863303 0.0008711718407286087 5.358241470340195e-07 1.710541909279559 0.001052088252461308 1.1328843787324747 0.0012371500713816543']
['59866.32909380654 2.848288365550691 0.0006512798569125042 0.3262767939644489 0.00020038087001336932 0.0008727489844641669 5.359933775408785e-07 1.713638623762862 0.0010524205357845028 1.1346497417878292 0.0012376406732815919']
['59866.329125344506 2.847513144697643 0.0006511452324820873 0.3265504944670553 0.00020043431666153693 0.0008734810985467978 5.36136340536636e-07 1.7150761264026015 0.001052701242970257 1.1324370182950414 0.0012378085557691366']
['59866.329156882464 2.8462857093647895 0.0006510870579863164 0.3264451046870297 0.00020043185758017218 0.0008731991942704543 5.361297628063055e-07 1.7145226086503662 0.0010526883276269548 1.1317631007144233 0.0012377669700712295']
['59866.32918842043 2.847976495552408 0.0006511921880166462 0.3267329403387992 0.00020046237362692163 0.0008739691180818357 5.36211389355613e-07 1.7160343505189035 0.0010528486009817313 1.1319421450335045 0.0012379585785974813']
['59866.32921995839 2.8400079782423067 0.0006505511596415374 0.325204470974047 0.00020021058428752188 0.0008698806566572165 5.355378848516918e-07 1.7080066752838603 0.0010515261779806824 1.1320013029584464 0.0012364967101814752']
['59866.329251496354 2.8469644330599486 0.0006511280112297228 0.3265437246571558 0.00020043607887592542 0.000873462990165129 5.361410542363119e-07 1.7150405706783394 0.0010527104982979278 1.1319238623816092 0.0012378073679836638']
['59866.32928303432 2.848234151144505 0.000651257674673103 0.3264369937616397 0.00020042481746985894 0.0008731774985751792 5.361109314053599e-07 1.7144800092523096 0.0010526513522576626 1.1337541418921955 0.0012378252817867726']
['59866.32931457228 2.8405748759333873 0.0006506126647085857 0.32514570013876654 0.00020020827265261224 0.0008697234521371404 5.35531701521902e-07 1.7076980049304966 0.0010515140370410308 1.1328768710028907 0.001236518746147236']
['59866.329346110244 2.843039027211435 0.0006507842529571821 0.3255694306398559 0.00020027684336986753 0.0008708568774108745 5.357151194816085e-07 1.7099234802513439 0.0010518741773627499 1.133115546960091 0.001236915287681254']
['59866.32937764821 2.8418145203550944 0.0006507280504573014 0.32561007347437104 0.00020029036894184842 0.0008709655918312838 5.35751298668817e-07 1.7101369405166547 0.0010519452150307166 1.1316775798384398 0.0012369461310331913']
['59866.32940918617 2.8405187290604497 0.000650577487447941 0.3256845477478524 0.00020029785989767634 0.0008711648010541028 5.357713360242539e-07 1.7105280869109896 0.0010519845582861152 1.12999064214946 0.0012369003913195713']
['59866.329440724134 2.8428459169795035 0.0006508259190801494 0.3256944827116236 0.00020033669763170852 0.0008711913758203823 5.358752220301313e-07 1.710580266342561 0.0010521885379816624 1.1322656506369424 0.0012372045491374937']
['59866.32947226209 2.8423197628526378 0.0006507921324416575 0.3256147667450957 0.0002002914596316334 0.0008709781457343947 5.357542161254667e-07 1.7101615900477718 0.0010519509434434528 1.132158172804866 0.001236984715774423']
['59866.32950380006 2.840820980624237 0.0006506818220121024 0.32543327791231974 0.0002002723708218579 0.0008704926861570456 5.35703155983727e-07 1.7092083923966375 0.0010518506870895899 1.1316125882275994 0.0012368414212937048']
['59866.32953533802 2.8421516957408497 0.0006507987511661994 0.3254614231268257 0.0002002486068939915 0.0008705679710312137 5.356395904948662e-07 1.7093562139013956 0.001051725876544073 1.132795481839454 0.001236796803808889']
['59866.32956687598 2.840406871276779 0.0006506066639573824 0.3253431343498539 0.00020025292670638437 0.0008702515635763002 5.356511454443713e-07 1.7087349493164596 0.0010517485646343717 1.1316719219603193 0.0012367150336258614']
['59866.32959841395 2.846081668339348 0.0006510766453903913 0.32638073679246876 0.00020043504166608454 0.0008730270183276679 5.361382798317203e-07 1.7141845419772521 0.0010527050507672508 1.131897126362096 0.001237775715581658']
['59866.329629951906 2.846368757910068 0.0006510645243534164 0.32639259607322785 0.00020040472585828738 0.0008730587403974885 5.360571888961784e-07 1.7142468281156926 0.0010525458290876438 1.1321219297943754 0.0012376339269757175']
['59866.32966148987 2.8399220096559463 0.0006505277131025407 0.3252694102975172 0.00020021774450939246 0.0008700543610997599 5.355570375357983e-07 1.7083477431592293 0.0010515637841879857 1.131574266496717 0.0012365163556258276']
['59866.32969302784 2.8405895150226437 0.0006505948773918446 0.3253020153142332 0.0002002531878165606 0.0008701415753784143 5.3565184388093e-07 1.7085189879949223 0.0010517499360113477 1.1320705270277214 0.0012367099993079958']
['59866.329724565796 2.846470990106506 0.0006511293916649671 0.32618434683502 0.00020036036407827893 0.0008725017001343641 5.359385267689061e-07 1.7131530821167018 0.0010523128365455827 1.1333179079898044 0.0012374699150478773']
['59866.32975610376 2.8424929650749426 0.0006507822707900917 0.325737563051971 0.00020032715081490888 0.0008713066102593129 5.358496855077035e-07 1.7108065286343015 0.0010521383971371266 1.1316864364406412 0.0012371389455938205']
['59866.32978764173 2.8414728408596592 0.000650722867052939 0.32542710936243907 0.0002002541249035705 0.000870476186069563 5.35654350469665e-07 1.7091759945506255 0.0010517548576868198 1.1322968463090337 0.0012367815208731974']
['59866.329819179686 2.843725631441499 0.0006508990729921205 0.3258125921322935 0.00020033422906554952 0.0008715073035199678 5.358686189291809e-07 1.7112005889301132 0.0010521755728232643 1.132525042511386 0.0012372320070495938']
['59866.32985071765 2.8432269670594583 0.0006508410143250069 0.32551794616469854 0.00020027545290892773 0.0008707191629787101 5.357114001751926e-07 1.709653078596106 0.0010518668745216795 1.1335738884633524 0.0012369389425689575']
['59866.32988225561 2.841853141817392 0.0006507116471372473 0.32558677183550433 0.00020026542008006867 0.0008709032629067833 5.356845636322327e-07 1.7100145579595816 0.0010518141810927977 1.1318385838578104 0.0012368260666997533']
['59866.329913793576 2.8405079968557407 0.0006506018886279588 0.32526934489018755 0.0002002257782785432 0.0008700541861434602 5.355785268479327e-07 1.7083473996333383 0.0010516059783536934 1.1321605972224025 0.0012365912627847148']
['59866.32994533154 2.842329287318151 0.0006507604227473197 0.32548803139916416 0.00020026130683755759 0.000870639144780286 5.356735612309256e-07 1.7094959632309044 0.0010517925779283488 1.1328333240872466 0.0012368333577323309']
['59866.3299768695 2.8441196590512017 0.0006509642498682998 0.32558314668316257 0.0002002630796106038 0.0008708935660846883 5.356783031736699e-07 1.7099955182939213 0.0010518018887111546 1.1341241407572804 0.0012369485307412553']
['59866.330008407465 2.8446341714411902 0.0006509908317633708 0.3257688656250402 0.00020033001256566482 0.0008713903406666315 5.358573403275137e-07 1.710970932904623 0.0010521534273406766 1.1336632385365673 0.0012372614508278747']
['59866.33003994543 2.840725882936605 0.0006505716822152542 0.32532132595813706 0.00020022536095522575 0.000870193228898273 5.355774105610615e-07 1.7086204094439972 0.0010516037865295471 1.132105473492608 0.0012365735067288426']
['59866.33007148339 2.840520190184915 0.0006505465577391902 0.32560139876223093 0.00020028005895486714 0.000870942388078057 5.357237207630811e-07 1.710091380053734 0.0010518910659394283 1.130428810131181 0.001236804608007868']
['59866.330103021355 2.8421106303290946 0.0006507514750205269 0.3256154921133506 0.00020029905723006913 0.0008709800860023498 5.357745387363351e-07 1.7101653997549928 0.0010519908467965817 1.1319452305741018 0.00123699726110658']
['59866.33013455931 2.8419234343578745 0.0006507445330648131 0.3255508744111864 0.00020027882326390488 0.000870807241855952 5.357204154466982e-07 1.7098260210671556 0.001051884575965887 1.132097413290719 0.0012369032332679368']
['59866.33016609728 2.840756720279246 0.0006506269994960007 0.3256021788716652 0.00020028003772410737 0.0008709444747717144 5.357236639734952e-07 1.7100954772671493 0.001051890954433337 1.1306612430120966 0.0012368468266086329']
['59866.330197635245 2.8405810824818705 0.0006505951412969603 0.3253607674896284 0.00020027456001938925 0.0008702987299856672 5.357090118090802e-07 1.708827560344687 0.001051862184975784 1.1317535221371835 0.001236805600755932']
['59866.3302291732 2.8438940290373766 0.0006509264592804516 0.3259093458234925 0.00020034495620967603 0.0008717661073555427 5.358973126772984e-07 1.711708749072965 0.0010522319128659456 1.1321852799644117 0.0012372943278965245']
['59866.33026071117 2.8435217119565923 0.0006508623173483805 0.3258742976319302 0.00020033822452202604 0.0008716723578944742 5.358793062678052e-07 1.7115246724366082 0.0010521965573635822 1.131997039519984 0.0012372305167073264']
['59866.330292249135 2.8434168459280103 0.0006508614477408524 0.325418189717129 0.0002002298739846191 0.0008704523271512146 5.35589482341503e-07 1.709129147673997 0.0010516274894150164 1.1342876982540133 0.0012367461342768164']
['59866.33032378709 2.8441633046128043 0.0006509644612278672 0.3259972806079024 0.00020035732293342487 0.0008720013217355184 5.359303920926678e-07 1.712170591428059 0.001052296864146139 1.1319927131847454 0.001237369556791133']
['59866.33035532506 2.840953277923556 0.0006506832953984255 0.3253226485647529 0.0002002447694060878 0.0008701967667029902 5.356293257021111e-07 1.7086273559073157 0.0010517057216706293 1.1323259220162403 0.0012367189154797035']
['59866.33038686302 2.845299317706622 0.0006510378767310938 0.3260326162551544 0.00020034500127055562 0.000872095840104048 5.358974332094283e-07 1.712356177810685 0.0010522321495302293 1.132943139895937 0.0012373531482335744']
['59866.33041840098 2.840601309665102 0.0006506389067720987 0.3254615565761977 0.00020027372204679047 0.0008705683279913348 5.357067703388068e-07 1.7093569147909542 0.0010518577838591937 1.1312443948741477 0.0012368248802764141']
['59866.33044993895 2.8464958932943434 0.0006510597384770586 0.3261104606532182 0.00020036058730791642 0.0008723040639820962 5.359391238798348e-07 1.7127650244391714 0.0010523140089701494 1.133730868855172 0.0012374342635229736']
['59866.33048147691 2.84730179505943 0.000651201678304319 0.32666873832907634 0.00020046631893210783 0.0008737973858599226 5.362219425459053e-07 1.7156971550896867 0.0010528693221224152 1.1316046399697435 0.0012379811934326288']
['59866.33051301487 2.8401396819113076 0.0006505794623610788 0.3249419301954156 0.00020015595752725018 0.0008691783934188572 5.353917652059382e-07 1.7066277846397881 0.0010512392727271545 1.1335118972715195 0.0012362676269198135']
['59866.33054455284 2.8450099181622397 0.0006510264673897164 0.3256711451954502 0.00020028954910663132 0.0008711289509286431 5.35749105713736e-07 1.7104576953542554 0.001051940909173484 1.1345522228079843 0.0012370994857466677']
['59866.3305760908 2.8430889034239395 0.0006508298435368942 0.32543426314972346 0.00020025432584499286 0.0008704953215419686 5.356548879624489e-07 1.7092135669628334 0.0010517559130514332 1.133875336461106 0.0012368387064920438']
['59866.33060762876 2.8426938302009788 0.0006508323567195941 0.32579454792906604 0.00020032681003426446 0.0008714590375680719 5.358487739627612e-07 1.7111058189551789 0.0010521366073228176 1.1315880112457999 0.0012371637713019042']
['59866.33063916672 2.843769256340974 0.0006508959559664856 0.3258526138551878 0.00020032561976439313 0.0008716143565456768 5.358455901420279e-07 1.711410787054558 0.0010521303559054263 1.1323584692864161 0.0012371919136945587']
['59866.33067070469 2.8467787342225757 0.000651122583529857 0.3260296510154962 0.00020034933592458172 0.000872087908464568 5.359090278584172e-07 1.7123406040729843 0.0010522549155702822 1.1344381301495914 0.001237417078484218']
['59866.33070224265 2.8469614154170024 0.0006511184570305462 0.32641145140839917 0.00020042139015179986 0.0008731091760243149 5.361017637648448e-07 1.7143458582373907 0.0010526333516376045 1.1326155571796117 0.001237736732130729']
['59866.33073378061 2.8411679280403126 0.0006506856816681703 0.3252344191985893 0.00020023026109609667 0.0008699607643542373 5.355905178155397e-07 1.7081639663791457 0.0010516295225635331 1.133003961661167 0.0012366553719833089']
['59866.33076531858 2.8404988924693155 0.0006506230440834023 0.3251998378494866 0.00020024340728189122 0.000869868263637456 5.356256821928844e-07 1.7079823416464632 0.001051698567656992 1.1325165508228523 0.0012366811321857067']
['59866.33079685654 2.842238791776518 0.0006507696236413784 0.32567172407062045 0.0002002998232074944 0.0008711304993462024 5.357765876286633e-07 1.7104607356650237 0.0010519948697872606 1.1317780561114945 0.0012370102299953127']
['59866.3308283945 2.8468322637877685 0.0006511171876294983 0.32643579284817387 0.0002004077140671352 0.0008731742862841823 5.360651819753233e-07 1.7144737019336864 0.0010525615234618447 1.1323585618540821 0.001237674978618727']
['59866.33085993247 2.844014971111234 0.0006508907518117971 0.3258455187595687 0.00020031195115281723 0.0008715953780660214 5.358090283420698e-07 1.7113735228968945 0.0010520585669790822 1.1326414482143397 0.001237128125599045']
['59866.330891470425 2.8470940019021382 0.0006511119970928769 0.3266164579696773 0.00020042812936924662 0.0008736575425384945 5.36119790315588e-07 1.715422573370154 0.0010526687466872197 1.1316714285319842 0.0012377634358027856']
['59866.33092300839 2.8414969977265745 0.0006506961701146476 0.325291834097611 0.00020023542774335094 0.0008701143419170342 5.356043379407452e-07 1.708465515218545 0.001051656658315919 1.1330314825080294 0.0012366839664126304']
['59866.330954546356 2.8473466621688193 0.0006511895093429126 0.32648167904515657 0.00020042870599849025 0.0008732970260332493 5.361213327255788e-07 1.714714700867419 0.0010526717752021547 1.1326319613014002 0.001237806787582585']
['59866.330986084315 2.8468217666706424 0.0006511093290781545 0.3261920675566639 0.00020037958445007207 0.000872522352084177 5.359899388223337e-07 1.7131936321253358 0.001052413783876429 1.1336281345453065 0.001237545203580745']
['59866.33101762228 2.8437846096787336 0.0006509207571742678 0.3254977079763175 0.00020028011920449464 0.0008706650283951795 5.357238819231825e-07 1.709546785589903 0.0010518913823765474 1.1342378240888307 0.001237001743102396']
['59866.331049160246 2.841212157523442 0.0006506856391999865 0.32517166159719146 0.00020021143638329576 0.0008697928957411439 5.35540164099665e-07 1.7078343571281067 0.0010515306532736125 1.1333778003953352 0.0012365712740619221']
['59866.331080698204 2.847023091044629 0.0006511364411944499 0.32648022498466134 0.00020040545632227575 0.0008732931366061003 5.360591427945734e-07 1.7147070639950701 0.0010525496655581711 1.1323160270495587 0.0012376750233877999']
['59866.33111223617 2.847204484800818 0.0006511770577962952 0.3264300185972509 0.00020043725322695373 0.0008731588408963329 5.36144195476162e-07 1.7144433749855617 0.0010527166661079502 1.1327611098152561 0.0012378384142131304']
['59866.33114377413 2.8468984988891526 0.0006511368903648514 0.3264917471049335 0.0002004190768148777 0.00087332395681444 5.360955758823876e-07 1.714767579332634 0.0010526212017588114 1.1321309195565186 0.0012377360964220816']
['59866.331175312094 2.846749882489191 0.000651123936481846 0.32642255828173805 0.00020039683102887067 0.0008731388854998472 5.360360712301862e-07 1.7144041926561873 0.00105250436464743 1.1323456898330038 0.00123762991975045']
['59866.33120685006 2.840972671743873 0.000650659901302126 0.32534411585546863 0.00020022810913314983 0.0008702541889791616 5.35584761587971e-07 1.7087401042829236 0.0010516182202371315 1.1322325674609492 0.0012366321960458593']
['59866.33123838802 2.847523444174649 0.0006511275053001981 0.32663099973784504 0.00020043160509879075 0.0008736964399214389 5.36129087450677e-07 1.7154989482029679 0.001052687001569279 1.132024495971681 0.001237787118785528']
['59866.331269925984 2.8460543367515063 0.0006510320372437893 0.3263149682778105 0.00020038021506132362 0.0008728510959040095 5.359916256273397e-07 1.7138391191061475 0.0010524170959103133 1.1322152176453588 0.001237507356455749']
['59866.33130146395 2.8469849399846745 0.000651145832220219 0.32644314949212716 0.00020041519103407537 0.0008731939643724132 5.360851819122622e-07 1.7145123397695756 0.0010526007932461943 1.1324726002150989 0.001237723444376925']
['59866.33133300191 2.839572927072199 0.0006505213206422785 0.3255944698032285 0.00020030163507463156 0.0008709238539927508 5.357814341431358e-07 1.7100549884623346 0.0010520043858961742 1.1295179386098644 0.0012368877138022516']
['59866.331364539874 2.845860521962641 0.0006510073768274144 0.3264034416412747 0.00020042297710614628 0.0008730877509145523 5.361060086661673e-07 1.7143037901327454 0.0010526416864818607 1.1315567318298958 0.0012376853900741848']
['59866.33139607783 2.841975134049295 0.0006507443407116671 0.3256631580346188 0.0002003144372482081 0.0008711075862878433 5.358156783314891e-07 1.710415745980141 0.0010520716242027738 1.131559388069154 0.001237062205154181']
['59866.3314276158 2.8464159994278058 0.0006510980436752668 0.3263094703354352 0.0002003890850668076 0.0008728363896064321 5.360153517654579e-07 1.7138102433583784 0.0010524636820735695 1.1326057560694274 0.0012375817001562422']
['59866.331459153764 2.841733606975988 0.0006507110877702962 0.32549071792013795 0.0002002421130257604 0.0008706463308826843 5.356222202221139e-07 1.7095100731099684 0.0010516917700932795 1.1322235338660198 0.0012367216740354872']
['59866.33149069172 2.8479652181175927 0.0006512272968607681 0.326643526014103 0.000200459840912213 0.0008737299461195059 5.362046146654395e-07 1.7155647374690286 0.0010528352989086817 1.1324004806485641 0.0012379657340995816']
['59866.33152222969 2.8441995134281357 0.0006509077580792485 0.3257598520434466 0.00020031078486035307 0.0008713662304806553 5.358059086578552e-07 1.710923592665161 0.001052052441493451 1.1332759207629748 0.0012371318641034531']
['59866.33155376765 2.843801249668872 0.0006509294680995477 0.32573457439212705 0.00020029881052893847 0.0008712986159738106 5.357738788421434e-07 1.7107908318914238 0.001051989551097366 1.133010417777448 0.0012370898059795002']
['59866.33158530561 2.8461395907200506 0.0006509951159671467 0.3264258564682124 0.00020040179132365564 0.0008731477077297739 5.360493393887446e-07 1.7144215150641409 0.0010525304166158385 1.1317180756559098 0.0012375843078007208']
['59866.33161684358 2.8405946750576065 0.0006506379705718361 0.3251876619665718 0.00020021500135173313 0.0008698356946970796 5.355496999374594e-07 1.7079183926815746 0.0010515493768473378 1.132676282376032 0.0012365621135623805']
['59866.331648381536 2.840501023022364 0.0006505912900117076 0.32545100637180235 0.00020026294007251965 0.0008705401075345256 5.35677929927017e-07 1.709301504053584 0.0010518011558430654 1.1311995189687802 0.0012367516719503178']
['59866.3316799195 2.8404198092605677 0.0006506073852428299 0.3254972912156132 0.00020027611009857757 0.0008706639136132271 5.357131580740383e-07 1.709544596720658 0.0010518703261479915 1.1308752125399097 0.0012368189652342796']
['59866.33171145747 2.846649904795858 0.0006510882731061725 0.32647681149226937 0.00020043103094583513 0.0008732840059474887 5.361275516644421e-07 1.71468913598881 0.0010526839860600585 1.131960768807048 0.0012377639168612371']
['59866.331742995426 2.8419464753631893 0.0006507483437640419 0.32552496352622173 0.00020027695810111103 0.0008707379335295316 5.357154263731132e-07 1.7096899344864587 0.0010518747799428102 1.1322565408767307 0.001236896907422514']
['59866.33177453339 2.846717880138643 0.0006511333843745526 0.32625107657089264 0.000200386631371852 0.0008726801937026892 5.360087884430876e-07 1.7135035534185539 0.0010524507950202312 1.133214326720089 0.001237589334224312']
['59866.33180607136 2.8467960602760343 0.0006511143547137635 0.32664922780758787 0.0002004523496911492 0.0008737451976929111 5.361845766005304e-07 1.7155946838633818 0.0010527959542602375 1.1312013764126525 0.0012378728627048276']
['59866.331837609316 2.8459409113959073 0.0006510555395181159 0.3263582891794603 0.00020039702697745028 0.0008729669738138711 5.360365953677498e-07 1.7140666448501067 0.0010525053937891296 1.1318742665458006 0.0012375948123244684']
['59866.33186914728 2.8431027888731526 0.0006508442536073252 0.3257146148555094 0.00020028147279089057 0.0008712452267483565 5.357275025948769e-07 1.7106860023923816 0.001051898491548795 1.132416786480771 0.0012369675335174755']
['59866.33190068524 2.844494221033456 0.0006509115263801948 0.3261833737989073 0.00020039825120816184 0.0008724990973863448 5.360398700294176e-07 1.7131479716329163 0.0010525118235722786 1.1313462494005397 0.0012375245265989836']
['59866.331932223206 2.842651118421779 0.000650812848540363 0.32567340126674893 0.0002003092682256269 0.0008711349856328306 5.358018518525857e-07 1.7104695444682192 0.0010520444759749314 1.13218157395356 0.0012370751566718125']
['59866.33196376117 2.847895985533487 0.0006511926112804967 0.3265528025633081 0.000200442096248491 0.00087348727241113 5.361571499436772e-07 1.7150882487568704 0.001052742102145436 1.1328077367766167 0.001237868228292456']
['59866.33199529913 2.8451977677356597 0.0006510370125782706 0.3257956881496227 0.00020033164648887685 0.0008714620875132451 5.358617108645865e-07 1.7111118075085225 0.0010521620088701517 1.1340859602271371 0.0012372930472028495']
['59866.332026837095 2.8467092104756437 0.0006511408906003826 0.3263479584484865 0.00020039659289493146 0.0008729393404205899 5.360354342521434e-07 1.714012386809278 0.0010525031139439677 1.1326968236663657 0.00123763777587532']
['59866.33205837506 2.8471460792253733 0.0006511333112792187 0.3266359826039842 0.00020044168684616996 0.0008737097684555029 5.361560548444654e-07 1.7155251187184044 0.0010527399519231616 1.131620960506969 0.0012378352052808243']
['59866.33208991302 2.8422036994477713 0.0006507659360939249 0.32565118998546366 0.00020028869537373523 0.0008710755732763777 5.357468220866688e-07 1.710352888579116 0.001051936425282223 1.1318508108686554 0.0012369585871870343']
['59866.332121450985 2.844400175018154 0.0006509729020761249 0.32576894058565553 0.00020033683907073026 0.000871390541176757 5.358756003615508e-07 1.710971326605334 0.0010521892808336673 1.13342884841282 0.0012372825069234116']
['59866.33215298894 2.846854861489276 0.0006511296335872979 0.3263333500258647 0.00020039538663246944 0.0008729002647454465 5.360322076532612e-07 1.7139356619005501 0.0010524967785318774 1.1329191995887258 0.001237626465681592']
['59866.33218452691 2.8453140851052563 0.0006509824969191244 0.32627999126702406 0.00020040309665356684 0.0008727575368424761 5.360528309804712e-07 1.713655416318404 0.001052537272340162 1.1316586687868524 0.0012375835006012022']
['59866.332216064875 2.8400487056842216 0.0006506077692962751 0.3254692545303282 0.00020026398200876578 0.0008705889190409409 5.356807169741424e-07 1.7093973452223121 0.0010518066281972993 1.1306513604619095 0.0012367649948912876']
['59866.33224760283 2.840535110779918 0.0006506089856753773 0.325479556052412 0.00020027635092920973 0.0008706164743041512 5.357138022653923e-07 1.7094514498551052 0.0010518715910147571 1.131083660924813 0.0012368208828385215']
['59866.3322791408 2.8475065443102974 0.0006512424733676295 0.3261299025534492 0.00020036072232494098 0.0008723560685959593 5.359394850332273e-07 1.7128671352597122 0.0010523147180931773 1.1346394090505851 0.0012375310198267802']
['59866.332310678765 2.8464234728460354 0.0006510499915470873 0.3265711740582019 0.00020043188115444045 0.0008735364138266652 5.36129825864479e-07 1.7151847377006404 0.001052688451441389 1.131238735145395 0.001237747578180435']
['59866.33234221672 2.8401488455046757 0.0006505808689697376 0.32521882020159887 0.00020021367219156985 0.0008699190390184674 5.355461446028351e-07 1.7080820388739437 0.0010515423959641275 1.132066806630732 0.0012365261329949306']
['59866.33237375469 2.843905299880187 0.0006508995826898734 0.3260045898878773 0.000200353994001336 0.0008720208731311226 5.359214876221273e-07 1.7122089805035574 0.0010522793802591177 1.1316963193766294 0.0012373205570361968']
['59866.33240529265 2.842975393084177 0.0006508433213147835 0.32577692500418065 0.00020030924922028124 0.0008714118984822358 5.358018010156999e-07 1.7110132615765792 0.0010520443761569392 1.1319621315075976 0.0012370911034776306']
['59866.33243683061 2.84256904421456 0.000650801844688559 0.3255774443745868 0.000200257236690665 0.0008708783131334805 5.356626741049244e-07 1.7099655691942586 0.0010517712011064338 1.1326034750203016 0.0012368369741105338']
['59866.33246836858 2.84384980861877 0.0006509045664777425 0.32556543029886464 0.00020025354630375918 0.0008708461770067937 5.356528027886559e-07 1.7099024700570622 0.0010517518188222646 1.1339473385617076 0.0012368745462081106']
['59866.33249990654 2.8413341530684635 0.0006506728993144452 0.32578534423273997 0.00020031844858857558 0.0008714344188493322 5.358264081575044e-07 1.7110574802139706 0.0010520926921668886 1.1302766728544928 0.0012370425436553254']
['59866.3325314445 2.8402313953273652 0.0006506199885205362 0.3249422723763181 0.00020017936202468032 0.0008691793087093121 5.354543692640322e-07 1.7066295818083936 0.001051362195507775 1.1336018135189716 0.0012363934792797122']
['59866.33256298247 2.842999102573492 0.0006508069217122188 0.32570423906720036 0.00020030262994426957 0.0008712174728324261 5.357840952930621e-07 1.7106315077058845 0.0010520096110518359 1.1323675948676077 0.0012370423885598944']
['59866.33259452043 2.845962949389174 0.0006509928228731307 0.3265602242459444 0.0002004426434791868 0.0008735071244695775 5.361586137162865e-07 1.715127228182481 0.0010527449762562334 1.130835721206693 0.001237765583810224']
['59866.33262605839 2.841268447814772 0.0006507089376920866 0.32541313471523314 0.00020026308664904623 0.0008704388056631631 5.356783220006094e-07 1.7091025982942918 0.0010518019256777638 1.13216584952048 0.001236814219053054']
['59866.33265759635 2.841116139436711 0.00065066712067908 0.3254650320509669 0.00020027423518972519 0.0008705776244449332 5.357081429309845e-07 1.70937516833491 0.0010518604789376323 1.131740971101801 0.001236842014601586']
['59866.33268913432 2.8416330473800135 0.0006506590543612235 0.32566514527468016 0.0002003014786612064 0.0008711129019026143 5.35781015757089e-07 1.710426183165337 0.0010520035643970926 1.1312068642146766 0.0012369594595322958']
['59866.33272067228 2.8477988112853225 0.0006511975911400539 0.32651142984693116 0.00020042889316041398 0.0008733766056494405 5.36121833359954e-07 1.71487095507842 0.0010526727581954517 1.1329278562069025 0.0012378118752675742']
['59866.33275221024 2.8433514973823204 0.0006508330751680344 0.3255892691278462 0.00020029453782494138 0.0008709099428466246 5.357624499016139e-07 1.710027673990789 0.0010519671104251124 1.1333238233915315 0.0012370200051530457']
['59866.33278374821 2.846719915384939 0.0006511457159195475 0.3261092353889459 0.00020035986868764455 0.0008723007865557846 5.359372016618772e-07 1.712758589227657 0.0010523102347040156 1.1339613261572823 0.0012374762920651047']
['59866.33281528617 2.842981564557726 0.0006508344826380519 0.3255763927568701 0.00020026686895756643 0.000870875500189651 5.356884391955219e-07 1.709960045991965 0.0010518217907435213 1.1330215185657608 0.0012368971676229388']
['59866.33284682413 2.846339642763404 0.0006510983981253961 0.3266078383285283 0.00020045075188473006 0.0008736344860931744 5.361803026712916e-07 1.7153773021456318 0.0010527875624198007 1.130962340617772 0.0012378573325013196']
['59866.3328783621 2.8431316249000114 0.0006508245917240603 0.32598403248232566 0.00020035660582488915 0.0008719658846822034 5.359284739184125e-07 1.7121010109365844 0.001052293097819796 1.131030613963427 0.0012372927757454872']
['59866.332909900055 2.846424508048262 0.0006511139464000803 0.32643040661116485 0.00020042995932438264 0.0008731598787842723 5.3612468521316e-07 1.7144454128737652 0.0010526783577961274 1.1319790951744968 0.0012377726350865244']
['59866.33294143802 2.845645964489033 0.0006510088984810307 0.3265706423349177 0.0002004531447395428 0.0008735349915344124 5.361867032540066e-07 1.7151819450363326 0.0010528001299345735 1.1304640194527003 0.001237820948074373']
['59866.332972975986 2.846137441311564 0.0006511169460698271 0.3261524296034358 0.00020038127058857744 0.0008724163255935838 5.359944490286845e-07 1.7129854495978774 0.00105242263964589 1.1331519917136865 0.001237556742092467']
['59866.333004513945 2.8471396601823056 0.0006511374122236055 0.32660916713367605 0.00020043813353897336 0.0008736380404781773 5.361465501990088e-07 1.715384281164265 0.0010527212895954485 1.1317553790180406 0.0012378214908316779']
['59866.33303605191 2.8479091300238846 0.0006511930488405323 0.32687096707041263 0.00020048491680749135 0.00087433832205856 5.362716895004985e-07 1.7167592808319994 0.0010529670000393454 1.1311498491918852 0.001238059727973609']
['59866.333067589876 2.84369802464951 0.0006508873255017997 0.3257643096599852 0.0002003108769085447 0.0008713781540387482 5.35806154875077e-07 1.7109470045167292 0.0010520529249398356 1.1327510201327806 0.0012371215249009893']
['59866.333099127834 2.847421034630127 0.0006511481760937209 0.32663051353522443 0.0002004499627852052 0.0008736951393911798 5.361781919302836e-07 1.7154963946177755 0.0010527834179895233 1.1319246400123515 0.0012378799911234863']
['59866.3331306658 2.8399800710320235 0.0006505743837287725 0.32537055951706495 0.0002002664539438328 0.0008703249224154054 5.356873290864939e-07 1.7088789890602152 0.001051819611049542 1.1311010819718084 0.0012367584739764194']
['59866.33316220376 2.8470342486875726 0.0006511699081206409 0.32630261952300166 0.00020040172108202906 0.0008728180645532724 5.360491515013146e-07 1.7137742622006389 0.0010525300476997325 1.1332599864869337 0.0012376759473111873']
['59866.333193741724 2.843423453094618 0.0006508832550003485 0.3259030657296437 0.0002003227896276899 0.0008717493089021122 5.358380198857935e-07 1.7116757653867845 0.0010521154917420689 1.1317476877078334 0.001237172590871421']
['59866.33322527969 2.8436041312226434 0.000650881757654679 0.32552922965921854 0.0002002494742484572 0.0008707493448934699 5.356419105579021e-07 1.7097123406471564 0.0010517304319771913 1.133891790575487 0.0012368443572230799']
['59866.33325681765 2.846670997355809 0.000651106628521187 0.32650971024256353 0.00020042254441015697 0.0008733720059261586 5.361048512593513e-07 1.7148619235428757 0.0010526394139188917 1.1318090738129334 0.0012377356654147665']
['59866.333288355614 2.843472064610962 0.0006508482229270992 0.3257805408598713 0.0002003276980029749 0.0008714215704369698 5.358511491662835e-07 1.7110322524152906 0.001052141271024028 1.1324398121956716 0.0012371760842658655']
['59866.33331989358 2.8424689109503944 0.0006507879896974343 0.325493969830626 0.00020025522259155924 0.0008706550293302249 5.35657286645621e-07 1.7095271524717752 0.0010517606228548282 1.1329417584786192 0.0012368206884275522']
['59866.33335143154 2.8447139384298654 0.0006509833023666683 0.32599053064050176 0.00020035489091703776 0.0008719832664300139 5.359238867577151e-07 1.7121351399186018 0.0010522840909508288 1.1325787985112636 0.0012373686063693492']
['59866.333382969504 2.841281177890318 0.0006506381884288923 0.32567916112577744 0.00020031404138611423 0.0008711503925241903 5.358146194506652e-07 1.7104997958286632 0.0010520695450951377 1.1307813820616548 0.001237004599813081']
['59866.33341450746 2.844143294641972 0.000650935431556378 0.3259863784737734 0.00020036145559379723 0.0008719721599113691 5.359414464342877e-07 1.7121133323202384 0.0010523185692951536 1.1320299623217336 0.0012373727438968773']
['59866.33344604543 2.846696797036656 0.0006511420909057971 0.32618351793096045 0.00020038348498816876 0.0008724994829212813 5.360003722663473e-07 1.7131487286289941 0.0010524342698958443 1.1335480684076618 0.0012375798620696654']
['59866.333477583394 2.840377902866054 0.0006505835240815816 0.3253824217449999 0.00020024473571025964 0.000870356652368547 5.356292355700504e-07 1.7089412906775203 0.001051705544696742 1.1314366121885338 0.0012366662745269155']
['59866.33350912135 2.840781004616393 0.0006505942274434211 0.3254065721284092 0.00020024090446006313 0.0008704212515769026 5.356189874623697e-07 1.709068130926519 0.0010516854225843652 1.1317128736898738 0.0012366547929228903']
['59866.33354065932 2.841430613446275 0.0006507492879210581 0.32531261797157796 0.00020022331612050501 0.0008701699361402013 5.355719408878916e-07 1.7085746742204726 0.0010515930468513919 1.1328559392258024 0.0012366578232946889']
['59866.33357219728 2.8444470034711253 0.0006509674180594154 0.3258566641565648 0.00020032886170512492 0.000871625190587444 5.358542619217366e-07 1.7114320596458235 0.001052147382905068 1.1330149438253019 0.0012372439915913616']
['59866.33360373524 2.840976046084855 0.0006506788310261842 0.32522589296611326 0.00020021081935030322 0.0008699379577652538 5.355385136147773e-07 1.7081191857463933 0.0010515274125541137 1.1328568603384617 0.001236564935819527']
['59866.33363527321 2.8440500609266315 0.00065097150385389 0.3254828579814767 0.000200236945131567 0.0008706253065450315 5.356083967615045e-07 1.7094687919195204 0.0010516646277918436 1.134581269007111 0.001236835635069734']
['59866.333666811166 2.8466932175510395 0.000651090404036267 0.32627944134874975 0.00020040648616455003 0.0008727560658809357 5.360618974918601e-07 1.7136525280921733 0.0010525550743936453 1.1330406894588663 0.0012376554039230474']
['59866.33369834913 2.8416884388821453 0.00065079185955226 0.32511504048573925 0.00020021624059336237 0.0008696414414592787 5.355530147514255e-07 1.7075369773410676 0.0010515558854693402 1.1341514615410777 0.0012366486262171228']
['59866.3337298871 2.8421851950275543 0.0006507169440569334 0.3256846378686913 0.00020030097162709922 0.000871165042115901 5.35779659505249e-07 1.7105285602347233 0.001052000901402832 1.131656634792831 0.0012369876465976389']
['59866.333761425056 2.845756225425786 0.0006510590967950179 0.32624885314297836 0.0002003823937959938 0.0008726742463154091 5.359974534658682e-07 1.7134918757509368 0.0010524285388445055 1.1322643496748495 0.001237531323601114']
['59866.33379296302 2.8468747179538703 0.0006511172837809115 0.32647936649530734 0.00020041052633943123 0.0008732908402561124 5.360727044465374e-07 1.7147025551224127 0.001052576293799534 1.1321721628314576 0.0012376875904310403']
['59866.33382450099 2.8401709895436227 0.0006505437092521233 0.3254476054202894 0.00020026426954387547 0.0008705310104211726 5.356814860940418e-07 1.7092836419132849 0.0010518081383606905 1.1308873476303378 0.0012367325812677908']
['59866.333856038946 2.8434350304973295 0.0006508178993362109 0.32583431079751096 0.00020031354264278035 0.000871565398191005 5.35813285375591e-07 1.7113146575499527 0.001052066925644855 1.1321203729473768 0.0012370969057160458']
['59866.33388757691 2.8471215031538284 0.0006511172655967287 0.3266948377741207 0.00020047261110949332 0.0008738671985606079 5.362387733212618e-07 1.7158342320069369 0.001052902369272549 1.1312872711468915 0.001237964899655038']
['59866.33391911487 2.8408697824608122 0.0006506835011024256 0.32531298412863596 0.00020023646814415898 0.0008701709155638271 5.356071208807687e-07 1.7085765973142646 0.001051662122605877 1.1322931851465476 0.0012366819472810335']
['59866.333950652835 2.8445732109326407 0.0006509590693747657 0.3258344962354073 0.00020032064829162647 0.0008715658942138257 5.358322920837881e-07 1.7113156314884836 0.0010521042452291307 1.133257579444157 0.0012372029149781453']
['59866.3339821908 2.840431509615617 0.0006505960047009295 0.3251506688711846 0.00020021324864627913 0.0008697367428652957 5.355450116729756e-07 1.707724101214205 0.0010515401714615501 1.132707408401412 0.0012365322048091582']
['59866.33401372876 2.8460516364079655 0.0006510738883280436 0.32638656335821814 0.00020041221675693086 0.0008730426036510337 5.360772260986543e-07 1.7142151436881206 0.0010525851720427043 1.131836492719845 0.001237672312232429']
['59866.334045266725 2.8414910912263003 0.0006506689127699224 0.32542279432351473 0.0002002638023410926 0.0008704646438884799 5.356802363859356e-07 1.709153331531065 0.001051805684564562 1.1323377596952353 0.001236796358390305']
['59866.33407680469 2.8403938749601148 0.0006505880970794341 0.3252339479825471 0.00020023144066542615 0.0008699595039111721 5.355936730136827e-07 1.7081614915049745 0.0010516357177805997 1.1322323834551402 0.0012366092976253075']
['59866.33410834265 2.840741349933881 0.0006506809538009788 0.32517644939753726 0.00020020958949282136 0.0008698057024989854 5.355352239022136e-07 1.7078595031383261 0.0010515209532185996 1.1328818467955548 0.0012365605600604863']
['59866.334139880615 2.841421148337636 0.0006506579846838309 0.3255284979018469 0.0002002829295441414 0.000870747387535439 5.357313992248052e-07 1.7097084973836498 0.0010519061425637679 1.131712650953986 0.0012368760430197564']
['59866.33417141857 2.846432762329515 0.0006511349929675282 0.3261791613400692 0.00020038226242556162 0.0008724878295939641 5.359971020666471e-07 1.7131258473743132 0.001052427848873748 1.133306914955202 0.001237570667134547']
['59866.33420295654 2.8426476017508975 0.0006508115337619529 0.3254000617619569 0.00020024304635343068 0.0008704038371735039 5.356247167550928e-07 1.709033937825404 0.001051696672024321 1.1336136639254935 0.0012367786958161178']
['59866.334234494505 2.8427388153069715 0.0006507814077998762 0.32552897262280256 0.00020024608389770427 0.0008707486573537026 5.356328418002358e-07 1.70971099066598 0.0010517126255131528 1.1330278246409915 0.0012367764096237275']
['59866.33426603246 2.840082076755074 0.0006505717771551809 0.32529332264538985 0.00020025551428954862 0.000870118323593287 5.356580669006949e-07 1.7084733332215853 0.001051762154882083 1.1316087435334887 0.0012367082387018586']
['59866.33429757043 2.8414066516977328 0.0006506831237264495 0.3254585889753957 0.00020028730824834753 0.0008705603900360952 5.357431117024311e-07 1.7093413286522885 0.0010519291399598083 1.1320653230454443 0.0012369088256613712']
['59866.334329108395 2.841360419357731 0.0006506841642007283 0.3255423307972416 0.00020028434732165696 0.0008707843887737471 5.357351915995918e-07 1.7097811491451764 0.0010519135888742486 1.1315792702125547 0.0012368961476210937']
['59866.33436064635 2.8458472210442034 0.0006510242212156721 0.32649463241910953 0.00020044455409716624 0.0008733316746634062 5.361637243767199e-07 1.7147827332936425 0.0010527550110145288 1.131064487750561 0.0012377906324680572']
['59866.33439218432 2.842824987856167 0.0006508089279157441 0.3260048974217733 0.00020035260295888337 0.0008720216957452355 5.359177667602384e-07 1.712210595702591 0.0010522720743638833 1.1306143921535758 0.0012372666564410882']
['59866.33442372228 2.8425942078320747 0.0006507862465785916 0.32596257760668407 0.00020034519017174247 0.0008719084956147785 5.358979384961113e-07 1.7119883277661978 0.0010522331416583112 1.130605880065877 0.0012372216144005774']
['59866.33445526024 2.8409298082078847 0.0006506763043222484 0.3252583043645142 0.0002002447353583618 0.0008700246541395064 5.356292346287683e-07 1.7082894136791713 0.001051705542848539 1.1326403945287133 0.0012367150851610078']
['59866.33448679821 2.8469356347284767 0.0006511643014214889 0.32630705911590774 0.00020039917816170772 0.0008728299399004374 5.360423495124234e-07 1.7137975793902718 0.001052516692025776 1.1331380553382049 0.0012376616397217044']
['59866.33451833617 2.8427361005006966 0.0006508384754212307 0.32566545665303426 0.00020029803157582704 0.0008711137348001644 5.357717952415026e-07 1.7104278185558524 0.0010519854599570747 1.1323082819448442 0.0012370384509180505']
['59866.33454987413 2.8475564691888255 0.0006511984005336937 0.326421585786832 0.00020040810424405624 0.0008731362841994871 5.360662256490319e-07 1.714399085014874 0.0010525635727103794 1.1331573841739515 0.0012377194477968256']
['59866.3345814121 2.842038475806908 0.0006507355810452237 0.325529089212204 0.00020026020407919943 0.0008707489692155438 5.356706114923754e-07 1.7097116030052735 0.0010517867861302493 1.1323268728016347 0.0012368153620959208']
['59866.33461295006 2.8468132005989055 0.0006511418804742013 0.3263142016420032 0.000200390204871278 0.000872849045250593 5.360183471001933e-07 1.7138350926575798 0.0010524695633995695 1.1329781079413257 0.001237609764986508']
['59866.33464448802 2.846713370526218 0.0006511599652128882 0.32615257836799005 0.00020036773800620315 0.0008724167235198722 5.35958251089564e-07 1.7129862309243176 0.00105235156515863 1.1337271396019004 0.0012375189360118366']
['59866.33467602598 2.8434353027188397 0.0006508503833043729 0.32579474461026625 0.00020029214470437676 0.0008714595636653026 5.357560486080462e-07 1.7111068519446757 0.001051954541514584 1.132328450774164 0.0012370184230077609']
['59866.33470756395 2.846933861271806 0.0006511904161856885 0.3262579782484759 0.0002003874764770313 0.0008726986548136641 5.360110489921082e-07 1.7135398017251888 0.0010524552335978536 1.133394059546617 0.0012376231158392295']
['59866.33473910191 2.8461090117024495 0.0006511000045485745 0.326083022135212 0.0002003513636249134 0.0008722306694313095 5.359144516992726e-07 1.7126209145756934 0.001052265565256898 1.133488097126756 0.001237414253897446']
['59866.33477063987 2.84568985579213 0.000651023536428216 0.3260603793132613 0.00020035871905111304 0.0008721701027583852 5.359341265301672e-07 1.7125019921914986 0.0010523041966970224 1.1331878636006316 0.0012374068722007592']
['59866.33480217784 2.8472696831149724 0.0006511335331766608 0.326651632867089 0.00020045123628191692 0.0008737516309216174 5.361815983722446e-07 1.7156073154784086 0.001052790106522673 1.1316623676365638 0.0012378779771928825']
['59866.3348337158 2.8405371051090533 0.0006506478744155994 0.3251194033426172 0.0002002112862478428 0.0008696531115473144 5.355397625063966e-07 1.7075598915053425 0.0010515298647470737 1.1329772136037108 0.001236550732051272']
['59866.33486525376 2.847437528658528 0.0006511931525322038 0.32622488186288146 0.0002003971328988244 0.000872610126185667 5.360368786939729e-07 1.7133659761705962 0.0010525059500988677 1.1340715524879317 0.0012376676843556796']
['59866.334896791726 2.8414794039866265 0.0006506686365453804 0.32592150792362956 0.00020035224212376014 0.0008717986394287391 5.359168015721123e-07 1.7117726256493149 0.0010522701792214293 1.1297067783373116 0.0012371912562989295']
['59866.334928329685 2.841158379952695 0.0006506765840143633 0.32517730137488216 0.00020021954654973493 0.0008698079814301761 5.355618577648429e-07 1.7078639778092553 0.0010515732486855826 1.13329440214344 0.0012366027310077197']
['59866.33495986765 2.846318589580109 0.0006510894312324375 0.3262170841261345 0.00020038555940907595 0.0008725892682302348 5.360059210788084e-07 1.7133250216708744 0.0010524451649636343 1.1329935679092344 0.00123756142179607']
['59866.334991405616 2.8430489819707425 0.0006508349621487964 0.3253781011984803 0.0002002421564594932 0.0008703450954553462 5.356223364018327e-07 1.7089185987315143 0.001051691998211624 1.1341303832392282 0.0012367870500039947']
['59866.335022943575 2.846179772927657 0.0006510894682485794 0.3263078356480809 0.00020039516517470166 0.0008728320170253757 5.36031615281859e-07 1.713801657815551 0.0010524956154133493 1.1323781151121057 0.0012376043455517368']
['59866.33505448154 2.8424130598951702 0.0006507941242297499 0.3254963828019327 0.000200255524423346 0.0008706614837220065 5.356580940073158e-07 1.709539825640403 0.0010517622081058088 1.1328732342547672 0.0012368252643488384']
['59866.3350860195 2.843349377181347 0.0006508690676304005 0.3256677757942348 0.00020027777838523686 0.0008711199382083289 5.357176205289681e-07 1.7104399989193004 0.0010518790881577568 1.1329093782620465 0.001236964089738122']
['59866.335117557464 2.847238434067978 0.0006511551062858441 0.3267619925760909 0.00020049501247846054 0.0008740468291267576 5.362986941381216e-07 1.7161869357987967 0.0010530200235213264 1.1310514982691813 0.001238084868811094']
['59866.33514909543 2.841549837844135 0.0006507382822351908 0.325437500179524 0.0002002517624674188 0.0008705039801855601 5.356480312530048e-07 1.709230568169769 0.0010517424499339224 1.132319269674366 0.0012367790800945073']
['59866.33518063339 2.8443222837711533 0.0006509363388727435 0.32561430618460724 0.0002002859987608157 0.0008709769137935824 5.357396089895974e-07 1.7101591711376434 0.0010519222623992421 1.1341631126335099 0.001237036201328074']
['59866.335212171354 2.840664846615856 0.0006506472960462156 0.32557790772428463 0.00020028598568765403 0.0008708795525350735 5.357395740205503e-07 1.709968002753596 0.0010519221937376787 1.13069684386226 0.0012368840711764956']
['59866.33524370932 2.8443362497838938 0.000650927985900374 0.32565479573947953 0.00020028217081067656 0.0008710852182104146 5.357293697091512e-07 1.710371826362813 0.0010519021576190998 1.1339644234210808 0.0012370147097072188']
['59866.33527524728 2.840163339502456 0.0006505495100543959 0.32528754411753796 0.00020023890089672928 0.0008701028667651958 5.35613628184918e-07 1.7084429838105988 0.0010516748996676959 1.1317203556918571 0.0012366223189086767']
['59866.335306785244 2.847184825030772 0.0006511572707731499 0.3267103789176123 0.000200466995283992 0.000873908769145616 5.362237517012941e-07 1.7159158556597285 0.0010528728743907142 1.1312689693710436 0.0012379608559677895']
['59866.3353383232 2.8413172049151396 0.0006506794377990886 0.32542086960426764 0.00020025950250741542 0.0008704594955089465 5.356687348769576e-07 1.7091432227114898 0.0010517831014044928 1.1321739822036498 0.0012367826903601907']
['59866.33536986117 2.843012520177834 0.0006507916915056304 0.3257699892619506 0.00020031847692616835 0.0008713933462526573 5.358264839569659e-07 1.7109768343589846 0.0010520928409987833 1.1320356858188494 0.001237105157944809']
['59866.335401399134 2.8446773340278697 0.0006509685323524759 0.32595620385270385 0.00020035221620008956 0.000871891446632392 5.35916732229586e-07 1.7119548521675623 0.0010522700430676973 1.1327224818603074 0.001237348889218732']
['59866.33543293709 2.847439909770043 0.0006511846557230496 0.32636024237051575 0.00020040275625627112 0.0008729721983518758 5.360519204609379e-07 1.7140769032064904 0.001052535484539239 1.1333630065635525 0.0012376883299374676']
['59866.33546447506 2.846374900631565 0.0006510569317673394 0.3263971640815215 0.00020040376470803752 0.0008730709592395055 5.360546179413328e-07 1.7142708197558902 0.001052540781029609 1.1321040808756746 0.0012376256397363145']
['59866.335496013024 2.8402048236625657 0.0006505706854462823 0.3253805204919824 0.00020027099673372133 0.0008703515667581975 5.356994804724803e-07 1.7089313051049497 0.001051843470240133 1.131273518557616 0.0012367768200644978']
['59866.33552755098 2.8479248744001913 0.0006512128544236287 0.32652905956942485 0.00020043814300963305 0.0008734237629180155 5.361465755318207e-07 1.7149635481587442 0.0010527213393363081 1.132961326241447 0.0012378612200326016']
['59866.33555908895 2.847042826864766 0.0006511080773410309 0.3263876162088018 0.00020039697278267598 0.0008730454198926257 5.360364504036117e-07 1.7142206733655556 0.0010525051091527101 1.1328221534992104 0.0012376222093883466']
['59866.335590626906 2.8439271423923174 0.0006509607948718506 0.32552538218544896 0.00020029848429459253 0.0008707390533897919 5.35773006206702e-07 1.709692133326938 0.0010519878376816837 1.1342350090653794 0.0012371048327002752']
['59866.33562216487 2.84626481337588 0.0006510888498818993 0.32620568375662395 0.00020037576575389284 0.0008725587736897192 5.359797242950549e-07 1.713265145780588 0.001052393727699017 1.132999667595292 0.0012375173730258364']
['59866.33565370284 2.8405173013094633 0.0006506515729597558 0.32497719685400284 0.00020017251598688073 0.0008692727272514705 5.35436056982412e-07 1.7068130086869897 0.0010513262394268948 1.1337042926224736 0.001236379525510877']
['59866.335685240796 2.8436134355856084 0.0006508603876690611 0.3258011629132548 0.00020034347494090468 0.0008714767318106284 5.358933504714663e-07 1.7111405615191955 0.0010522241330929868 1.132472874066413 0.0012372529533203824']
['59866.33571677876 2.8465318414539156 0.00065106839080068 0.32647535529276905 0.00020042564726977674 0.0008732801107987727 5.361131510147497e-07 1.7146814878821905 0.001052655710450508 1.131850353571725 0.0012377294107533564']
['59866.33574831673 2.8443105490236835 0.000650961584776314 0.3257303384390833 0.00020031379409840642 0.0008712872853374136 5.358139579874541e-07 1.710768584238883 0.0010520682463151599 1.1335419647848006 0.0012371736255510567']
['59866.335779854686 2.848334517663126 0.0006512412146988782 0.3265278641767462 0.00020041352966021936 0.0008734205653944231 5.360807379482032e-07 1.714957269835852 0.001052592067543169 1.1333772478272741 0.0012377662058633179']
['59866.33581139265 2.843615356048494 0.0006508994597544463 0.3258832102866368 0.00020033671716168934 0.0008716961981138461 5.358752742703496e-07 1.7115714825978825 0.0010521886405550913 1.1320438734506115 0.0012372433236925552']
['59866.33584293061 2.8476860365493213 0.0006511801951043398 0.3264119910650959 0.00020041077746014947 0.0008731106195374385 5.360733761625646e-07 1.714348692568781 0.001052577612710869 1.1333373439805403 0.0012377218093239848']
['59866.335874468576 2.8396768369920853 0.000650523577581928 0.3251759317212631 0.0002002149912434468 0.0008698043177807004 5.355496728990773e-07 1.7078567842503314 0.0010515493237575988 1.131820052741754 0.0012365018824429883']
['59866.33590600654 2.8429014934475245 0.0006508183610821822 0.32562797541936117 0.00020028055255825192 0.0008710134772604626 5.357250410894444e-07 1.710230963336981 0.0010518936583941802 1.1326705301105435 0.0012369497999885']
['59866.3359375445 2.8431560184820346 0.0006508247954864134 0.3255876377635957 0.00020027903498720826 0.000870905579154449 5.357209817796445e-07 1.7100191059012382 0.0010518856879580265 1.1331369125807964 0.0012369464074691605']
['59866.335969082465 2.8460405764276464 0.0006510684345823596 0.3260127290030964 0.00020034306772222715 0.0008720426442306102 5.358922612132235e-07 1.7122517279574392 0.0010522219943394284 1.1337888484702072 0.0012373605908873808']
['59866.33600062043 2.842826512925198 0.000650839673592869 0.32540551981436916 0.0002002658182805959 0.0008704184367704966 5.356856287680688e-07 1.709062604067065 0.0010518162724821214 1.133763908858133 0.001236895206466844']
['59866.33603215839 2.841571465354848 0.0006507132642129851 0.32546726287771255 0.0002002603433713263 0.0008705835916231477 5.356709840811237e-07 1.7093868848619358 0.0010517875177065458 1.1321845804929123 0.0012368042426455432']
['59866.336063696355 2.8464843019390775 0.0006511062779706889 0.32601681612284944 0.0002003423303663444 0.0008720535767568574 5.358902888798863e-07 1.7122731939225286 0.001052218121671977 1.134211108016549 0.001237377210388064']
['59866.336095234314 2.8432855434880375 0.0006508473472296608 0.3259179638085467 0.00020034394832249132 0.0008717891593710195 5.358946167070879e-07 1.7117540115995102 0.001052226619340816 1.1315315318885273 0.001237248207856972']
['59866.33612677228 2.846721919106752 0.0006511146525665217 0.326141408121692 0.00020035377042695168 0.0008723868445297228 5.359208895890447e-07 1.7129275636643488 0.0010522782060239059 1.1337943554424033 0.0012374327107603515']
['59866.336158310245 2.8420330269355842 0.0006507532448188325 0.32556264605899177 0.00020027117254360134 0.0008708387295187513 5.356999507415802e-07 1.7098878469484862 0.0010518443936113515 1.132145179987098 0.0012368736451286652']
['59866.3361898482 2.847093526773886 0.0006511229142758328 0.32648511024036353 0.00020041853335183414 0.0008733062040446426 5.360941221877696e-07 1.714732721850649 0.0010526183474361037 1.132360804923237 0.0012377263166201838']
['59866.33622138617 2.8418695383231167 0.0006507173608313995 0.32550361023212493 0.0002002764135783986 0.0008706808161798375 5.357139698440156e-07 1.709577784832589 0.0010518719200546145 1.1322917534905277 0.0012368781750385779']
['59866.336252924135 2.8409698948601863 0.000650651423819018 0.3253138421511649 0.00020021702954022602 0.0008701732106651172 5.355551250840841e-07 1.7085811037351097 0.0010515600290978257 1.1323887911250765 0.0012365782507039074']
['59866.33628446209 2.8459602919202043 0.0006510966317755735 0.3259416810462832 0.0002003359049818499 0.0008718525999697127 5.358731017924315e-07 1.7118785769237563 0.0010521843749046738 1.134081714996448 0.0012373434376530372']
['59866.33631600006 2.8478652440610626 0.0006512516985660209 0.32669051892766765 0.00020048525193401394 0.000873855646194869 5.36272585921383e-07 1.715811548989851 0.0010529687601576363 1.1320536950712115 0.0012380920744246113']
['59866.33634753802 2.847224399074542 0.0006511927942997258 0.32630894863342697 0.00020041451611129085 0.0008728349941198197 5.360833765795335e-07 1.7138075033268225 0.0010525972484836707 1.1334168957477195 0.0012377451364732883']
['59866.33637907598 2.8420640700257858 0.0006507711682086891 0.3254202887837202 0.00020025222360924575 0.0008704579418877502 5.356492647488237e-07 1.7091401721834045 0.0010517448718972992 1.1329238978423812 0.0012367984431320928']
['59866.33641061395 2.847152051740005 0.0006511539483491132 0.3265610790976711 0.00020046917662596862 0.0008735094110893745 5.362295865140361e-07 1.7151317179499534 0.0010528843310187428 1.1320203337900516 0.001237968852174975']
['59866.33644215191 2.846357693118413 0.0006510446476323188 0.3265811638157808 0.00020045172909396864 0.0008735631351594209 5.361829165818925e-07 1.7152372049148152 0.001052792694821264 1.131120488203598 0.0012378334263864865']
['59866.33647368987 2.8473407685073493 0.0006511897009380527 0.32598442299235897 0.0002003346460729999 0.0008719669292469451 5.358697343711478e-07 1.7121030619346584 0.001052177762988445 1.1352377065726909 0.0012373867914016049']
['59866.33650522784 2.84174669279932 0.0006507211960501576 0.32584131923117327 0.00020032941711115493 0.0008715841448609325 5.358557475623266e-07 1.7113514665502798 0.0010521502999535448 1.13039522624904 0.001237116942201214']
['59866.3365367658 2.8411439119739432 0.0006506707699901749 0.32525927196037935 0.0002002402693560684 0.0008700272423355544 5.356172886398464e-07 1.7082944955902277 0.0010516820869541407 1.1328494163837155 0.0012366922264410915']
['59866.33656830376 2.8468444279002973 0.000651143438899706 0.3262994123558255 0.00020039889920960263 0.0008728094857884084 5.36041603350971e-07 1.713757417835218 0.0010525152269411902 1.1330870100650794 0.0012376494176321502']
['59866.33659984172 2.8465349869083187 0.0006511512360298054 0.32612197096361034 0.00020035513797081914 0.0008723348526005068 5.359245475952027e-07 1.7128254777500544 0.0010522853885022014 1.1337095091582643 0.001237458068396005']
['59866.33663137969 2.8402555055209517 0.000650535659845179 0.3253465911760324 0.00020026366089831603 0.0008702608101472869 5.356798580444725e-07 1.7087531049161364 0.0010518049416928363 1.1315024006048153 0.0012367256284639989']
['59866.33666291765 2.843121655949618 0.0006507848170111491 0.32576849327393254 0.0002003002867275616 0.0008713893446747096 5.357778274859729e-07 1.7109689772790575 0.0010519973042413951 1.1321526786705607 0.0012370202933595703']
['59866.33669445561 2.8423340220424915 0.0006507522708736051 0.3255344431049907 0.00020026622428544 0.000870763290198767 5.356867147794614e-07 1.7097397221900772 0.0010518184048605042 1.1325942998524143 0.0012368510317942293']
['59866.33672599358 2.846987961301679 0.0006511051549337026 0.3266253631507936 0.0002004303484040928 0.0008736813627669615 5.361257259519689e-07 1.7154693442793782 0.001052680401282 1.1315186170223008 0.0012377697483879923']
['59866.33675753154 2.846186066327637 0.000651079844093613 0.3265155585875064 0.0002004370660259262 0.0008733876495061009 5.361436947371891e-07 1.7148926396402648 0.0010527156829092763 1.1312934266873722 0.001237786440557541']
['59866.3367890695 2.842936078228636 0.0006507974727240612 0.32578358376968913 0.0002003100059558405 0.0008714297098342621 5.358038251872103e-07 1.711048234084502 0.0010520483506084061 1.131887844144134 0.0012370703628015235']
['59866.33682060747 2.8415834812235854 0.0006506908018135747 0.325429397280995 0.0002002464168676294 0.0008704823059611188 5.35633732452496e-07 1.7091880109295958 0.0010517143743047764 1.1323954702939896 0.0012367302230818491']
['59866.336852145425 2.8464114057092247 0.0006511050013991592 0.32638486756039725 0.00020041861018554958 0.0008730380676072408 5.360943277082e-07 1.7142062371869606 0.0010526187509745251 1.132205168522264 0.001237717236589266']
['59866.33688368339 2.8456585865275157 0.0006509844169831716 0.32661976581096763 0.00020047785403861854 0.0008736663905938275 5.362527974907838e-07 1.7154399464861745 0.0010529299056650134 1.1302186400413412 0.0012379184534526714']
['59866.336915221356 2.8409277268207394 0.0006506535011070005 0.3251630250202083 0.00020021382275101787 0.0008697697939946184 5.355465473302365e-07 1.7077889969548756 0.001051543186717531 1.1331387298658637 0.0012365650213534498']
['59866.336946759315 2.842268755076361 0.0006507483641094724 0.32567114577988104 0.00020030501302029666 0.0008711289524919214 5.357904697187676e-07 1.7104576984237452 0.0010520221272074404 1.1318110566526156 0.0012370222267708945']
['59866.33697829728 2.8402366799725147 0.000650613939430573 0.32516944920675356 0.00020021558841288318 0.0008697869778777112 5.35551270251475e-07 1.7078227374304285 0.0010515524601516974 1.1324139425420863 0.0012365520913542043']
['59866.337009835246 2.843329251513281 0.0006508763101695698 0.3256466741084755 0.00020029870122833182 0.0008710634938789816 5.357735864769025e-07 1.7103291707377914 0.001051988977039558 1.1330000807754896 0.0012370613480958371']
['59866.337041373205 2.8467331615113705 0.0006511142727573393 0.3267289180589179 0.00020047993567319817 0.0008739583589940104 5.362583655989025e-07 1.716013225099359 0.0010529408386197384 1.1307199364120115 0.0012379960443481058']
['59866.33707291117 2.8475306942031215 0.0006512091335484543 0.3262329214110604 0.00020036378137068886 0.0008726316309559678 5.359476675920832e-07 1.7134082006883427 0.0010523307845099205 1.134122493514779 0.0012375271373364681']
['59866.33710444913 2.841570449663243 0.0006506765957445415 0.3256140649048177 0.0002002852421928127 0.0008709762684007895 5.357375852662788e-07 1.7101579039118577 0.001051918288827798 1.1314125457513853 0.0012368961632328352']
['59866.337135987094 2.8431793141602144 0.0006508299628744217 0.32579864108341366 0.00020034738612872318 0.0008714699862360932 5.359038124021331e-07 1.7111273166145677 0.001052244675045815 1.1320519975456467 0.0012372544187584837']
['59866.33716752506 2.846283245013775 0.0006510764724338315 0.326094107465548 0.00020036766748994376 0.0008722603212820454 5.359580624675262e-07 1.7126791358484665 0.001052351194800125 1.1336041091653086 0.0012374746907125546']
['59866.33719906302 2.846919570352555 0.0006511534828337738 0.3264957083451837 0.00020043438674364805 0.0008733345526290046 5.361365279973823e-07 1.714788384165881 0.0010527016110485718 1.132131186186674 0.001237813208893334']
['59866.337230600984 2.8469126491404158 0.0006511372803375386 0.3265769764856397 0.00020043689900360118 0.0008735519345831132 5.361432479736827e-07 1.7152152126346625 0.0010527148056911828 1.1316974365057533 0.0012378159071391801']
['59866.33726213895 2.8414625334842105 0.0006506854374086691 0.32565306082620615 0.00020030679030122017 0.0008710805775377542 5.357952237195111e-07 1.7103627144233517 0.0010520314616660725 1.1310998190608588 0.0012369970633720048']
['59866.33729367691 2.8435168707752987 0.000650877583669681 0.3256856587808822 0.00020030530537242395 0.0008711677729263487 5.357912517235774e-07 1.710533922168499 0.001052023662670294 1.1329829486067997 0.0012370915146996616']
['59866.337325214874 2.8406924093894217 0.0006506246009144509 0.32545452590060986 0.0002002518225515561 0.0008705495218270814 5.356481919704409e-07 1.7093199889737913 0.0010517427655018703 1.1313724204156304 0.0012367195381737166']
['59866.33735675283 2.8435579957820547 0.0006508966725361846 0.32575591119244807 0.00020029670478725493 0.0008713556892047494 5.357682462505835e-07 1.7109028949183198 0.0010519784915297003 1.1326551008637349 0.0012370631450980103']
['59866.3373882908 2.840968420487063 0.0006506593976709501 0.32549468126989717 0.00020026946728572784 0.0008706569323399177 5.356953893933481e-07 1.7095308890225693 0.0010518354374250414 1.1314375314644938 0.0012368166554508602']
['59866.337419828764 2.8410430855850666 0.0006506427960229962 0.3254951492246582 0.00020026791956749665 0.00087065818405947 5.356912494436505e-07 1.709533346768163 0.0010518273086528186 1.1315097388169035 0.001236801008749772']
['59866.33745136672 2.8462682958347756 0.0006510607858414015 0.32620435409644677 0.0002003713171418285 0.0008725552170176212 5.35967824822787e-07 1.7132581622712542 0.0010523703631398556 1.1330101335635214 0.0012374827384959899']
['59866.33748290469 2.840723222592705 0.000650641923723682 0.3253338772732749 0.00020024949996701194 0.0008702268020721636 5.356419793517695e-07 1.70868633021678 0.0010517305670536344 1.1320368923759248 0.0012367182777746162']
['59866.33751444265 2.8410749771218153 0.000650689699970109 0.3251572658871993 0.00020022647763063593 0.0008697543890452687 5.355803975259583e-07 1.7077587494075595 0.0010516096514214073 1.1333162277142559 0.0012366405882914583']
['59866.33754598061 2.8399552767288117 0.000650571423684295 0.3250929473841006 0.00020022012915931847 0.0008695823452183707 5.355634161714835e-07 1.7074209421433857 0.001051576308609866 1.132534334585426 0.0012365500030909235']
['59866.33757751858 2.8389678603477124 0.0006504951291445066 0.32493577288788145 0.00020015474952596768 0.0008691619234032236 5.35388533955932e-07 1.7065954458397137 0.0010512329281826033 1.1323724145079987 0.0012362178539141466']
['59866.337609056536 2.8403377205351488 0.0006505774101084892 0.3254327437346697 0.00020024008527557712 0.0008704912572996759 5.356167962479118e-07 1.7092055868417526 0.001051681120144838 1.1311321336933962 0.0012366422866021403']
['59866.3376405945 2.84766861266258 0.000651204864847848 0.32652028954299556 0.00020042665850725626 0.0008734003042111706 5.361158559465734e-07 1.714917487095565 0.001052661021571724 1.1327511255670148 0.0012378057207566662']
['59866.33767213247 2.8406944474159275 0.0006506105257535846 0.32521121255489227 0.00020021918949283404 0.0008698986895297506 5.355609026829817e-07 1.708042082746283 0.0010515713733867333 1.1326523646696445 0.001236566378949313']
['59866.337703670426 2.84359312266042 0.0006508642301327888 0.32584261004725223 0.00020032739871713614 0.0008715875976300013 5.358503486146762e-07 1.711358246046493 0.0010521396991446227 1.132234876613927 0.001237183168565789']
['59866.33773520839 2.8433673354770486 0.0006508747595869164 0.3257176579086111 0.0002003208170374211 0.000871253366528915 5.358327434573569e-07 1.7107019848141343 0.0010521051314990606 1.1326653506629143 0.001237159310838334']
['59866.33776674636 2.845259194214975 0.0006513247739268135 0.32581195352666253 0.00020033952553062732 0.0008715055953310122 5.358827863005766e-07 1.711197234908942 0.0010522033903919504 1.1340619593060333 0.0012374796708969121']
['59866.337798284316 2.8406892704250852 0.0006505920187319103 0.3255990681254355 0.0002002947754520991 0.000870936153920636 5.357630855240805e-07 1.710079139314262 0.0010519683584669071 1.1306101311108232 0.0012368942566174448']
['59866.33782982228 2.8481362392558482 0.0006512634512615669 0.32645676927622136 0.00020041244691759995 0.0008732303955650591 5.360778417492121e-07 1.7145838722490618 0.0010525863808697477 1.1335523670067864 0.0012377730697270808']
['59866.33786136024 2.842817789179743 0.0006508414275829058 0.3257393276459586 0.00020031969477927433 0.0008713113303241141 5.358297415593488e-07 1.7108157964598667 0.0010520992372861047 1.1320019927198763 0.001237136762430152']
['59866.337892898206 2.8404484997052535 0.0006506448297502546 0.3250565611139337 0.0002001872319786075 0.0008694850165669802 5.354754203912493e-07 1.7072298377832655 0.0010514035292994092 1.133218661921988 0.001236441699355045']
['59866.33792443617 2.8471868004167105 0.0006511763997944417 0.32649623789665794 0.00020043248166377826 0.0008733359691119416 5.361314321506889e-07 1.7147911654236239 0.0010526916053769867 1.1323956349930866 0.0012378167552915206']
['59866.33795597413 2.847455921079307 0.0006511939279164544 0.3266602952571521 0.00020045807691161687 0.0008737748017148534 5.361998961878851e-07 1.7156528112245384 0.0010528260341996685 1.1318031098547687 0.0012379403014862477']
['59866.337987512095 2.8449354127289457 0.0006510487247946146 0.3258526266996031 0.00020033489110946393 0.0008716143909028562 5.358703898125678e-07 1.7114108545147222 0.0010521790499446635 1.1335245582142235 0.0012373137012088521']
['59866.33801905006 2.8434654458139965 0.0006508652232256293 0.32550088225687324 0.0002002694705051906 0.0008706735191925107 5.356953980050021e-07 1.709563457231477 0.0010518354543339844 1.1339019885825194 0.0012369249620726908']
['59866.33805058802 2.842929728758428 0.0006507700066903266 0.3258233756692417 0.00020033366474235377 0.000871536148111721 5.358671094363051e-07 1.7112572251535805 0.0010521726089409338 1.1316725036048476 0.0012371615903402832']
['59866.338082125985 2.841957266946424 0.0006507365797912767 0.32515041189100513 0.00020021431778900506 0.0008697360554759539 5.35547871493979e-07 1.7077227515283884 0.0010515457867069594 1.1342345154180355 0.0012366109484472497']
['59866.338113663944 2.8476394725007643 0.0006512222994974879 0.3262346644774047 0.00020038483257801582 0.0008726362934370574 5.360039768980351e-07 1.7134173554485541 0.0010524413475736126 1.1342221170522102 0.0012376280836524992']
['59866.33814520191 2.8403621621600523 0.0006506177924326572 0.32523942442993203 0.0002002258481965427 0.0008699741527123803 5.355787138697013e-07 1.7081902543588867 0.0010516063455700772 1.1321719078011656 0.0012365999425332337']
['59866.338176739875 2.8420112329579963 0.0006507597022708854 0.32564712508404736 0.0002002864529405815 0.0008710647001813594 5.35740823862787e-07 1.7103315393069713 0.001051924647797172 1.131679693651025 0.0012369452917339939']
['59866.33820827783 2.8435911102767375 0.0006508667361400055 0.3259165579824328 0.00020032481609854675 0.0008717853989647144 5.358434404379598e-07 1.711746628058996 0.001052126134971359 1.1318444822177416 0.0012371729515727838']
['59866.3382398158 2.846798592705886 0.0006510912272646569 0.3264723947523094 0.00020041873506300537 0.000873272191729052 5.360946617395339e-07 1.7146659388251546 0.0010526194068435156 1.1321326538807313 0.0012377105485066335']
['59866.338271353765 2.8417897948559645 0.0006507369473366557 0.32565464747075157 0.00020031512772563677 0.0008710848216103985 5.358175252709154e-07 1.710371047640502 0.001052075250659857 1.1314187472154624 0.0012370614001253255']
['59866.33830289172 2.8436464206918655 0.0006508701512102192 0.3257016003886912 0.00020029315883497354 0.0008712104147025444 5.357587612785911e-07 1.7106176491002691 0.0010519598678307433 1.1330287715915963 0.00123703335333486']
['59866.33833442969 2.8467097474805056 0.0006511336348738538 0.3268537285552654 0.00020050702464304116 0.0008742922112199509 5.363308251527474e-07 1.7166687424121083 0.0010530831126210145 1.1300410050683973 0.0012381272360107427']
['59866.33836596765 2.8444457936447884 0.0006509568358703553 0.32590073961225613 0.0002003486598880285 0.0008717430868335332 5.359072195464987e-07 1.7116635483836982 0.001052251364958133 1.1327822452610903 0.0012373268514109758']
['59866.33839750561 2.847785397420223 0.0006512269088412671 0.32651468791946403 0.0002004213882932722 0.0008733853205796683 5.361017587935193e-07 1.7148880668039077 0.0010526333418764296 1.1328973306163153 0.0012377937789587136']
['59866.33842904358 2.8409340539520667 0.0006506068223297425 0.32538015424459377 0.00020024009537994715 0.0008703505870929488 5.356168232758182e-07 1.7089293815367321 0.001051681173214008 1.1320046724153345 0.0012366578052779183']
['59866.33846058154 2.841309209723012 0.0006506516181084196 0.3257017263438874 0.00020031146857044444 0.0008712107516166969 5.358077374955138e-07 1.7106183106296606 0.0010520560324077965 1.1306908990933515 0.0012370001711692442']
['59866.3384921195 2.8400958800408045 0.0006505706783556017 0.32535029247603986 0.00020025729103084232 0.0008702707106547165 5.356628194579972e-07 1.7087725445170163 0.001051771486506525 1.1313233355237882 0.0012367155967983152']
['59866.33852365747 2.8466224619161324 0.0006511261795482088 0.3263570817165191 0.00020039720727095062 0.0008729637440038595 5.360370776299647e-07 1.7140603031329786 0.0010525063407087743 1.1325621587831538 0.0012376327803210534']
['59866.33855519543 2.846533104218484 0.0006510984564307723 0.32628356065094877 0.00020040373177110084 0.0008727670844911385 5.360545298392103e-07 1.7136741630827144 0.001052540608041496 1.1328589411357697 0.001237647337306915']
['59866.33858673339 2.847198369900968 0.0006510866307399714 0.32653123773924353 0.00020041595564581293 0.0008734295892456379 5.360872271515492e-07 1.714974988126279 0.0010526048090641435 1.1322233817746892 0.0012376957157529834']
['59866.33861827135 2.846778139050744 0.000651122759957244 0.32622059631330286 0.00020039862095710061 0.0008725986628848383 5.360408590608681e-07 1.713343468032053 0.0010525137655309907 1.1334346710186909 0.0012376372954814201']
['59866.33864980932 2.840142367199679 0.0006505803117057491 0.32544565548211185 0.00020026925529276915 0.0008705257945842033 5.356948223391081e-07 1.709273400641344 0.0010518343240166447 1.130868966558335 0.0012367741051456007']
['59866.33868134728 2.841571917280467 0.0006506900801869721 0.32534376184221325 0.0002002209556682817 0.0008702532420386656 5.355656269779879e-07 1.7087382449696074 0.0010515806495182865 1.1328336723108599 0.0012366161259238977']
['59866.33871288524 2.846221944162461 0.0006510634548610026 0.32635691492381935 0.0002004035052173392 0.0008729632978545714 5.360539238366718e-07 1.7140594271209 0.0010525394181582941 1.132162517041561 0.0012376279121903097']
['59866.33874442321 2.842236690864021 0.0006507409467270784 0.3258148842943146 0.00020032579448716302 0.000871513434762254 5.358460575032463e-07 1.7112126275961903 0.0010521312735670327 1.1310240632678306 0.0012371111496405813']
['59866.33877596117 2.842145320740955 0.0006507744659902044 0.32555992337785394 0.0002002762459981157 0.0008708314466925068 5.357135215880426e-07 1.7098735471525945 0.0010518710399060698 1.1322717735883605 0.0012369074703379847']
['59866.33880749913 2.8405730681151633 0.0006506292948054807 0.3249506775677987 0.00020018317273850887 0.0008692017915290058 5.354645624395367e-07 1.706673726721632 0.001051382209761076 1.1338993413935312 0.001236415395512835']
['59866.3388390371 2.8464380979962396 0.0006511024273216602 0.3264632395974593 0.00020043101007289344 0.0008732477028525955 5.361274958319741e-07 1.714617855028673 0.001052683876433264 1.1318202429675666 0.00123777126908275']
['59866.338870575055 2.8467339124677427 0.0006510694407118666 0.32640606471323114 0.00020041590027713635 0.0008730947672988876 5.360870790473716e-07 1.7143175667711719 0.0010526045182622707 1.1324163456965708 0.0012376864257537163']
['59866.33890211302 2.846887622862205 0.0006511515583526837 0.3262791864494273 0.00020040436177905572 0.0008727553840576222 5.360562150304743e-07 1.7136511893352278 0.0010525439169068052 1.1332364335269773 0.001237678087776724']
['59866.338933650986 2.841172385270144 0.0006506583892965329 0.32508586781015014 0.00020017457522070455 0.0008695634082572077 5.354415651713539e-07 1.707383759507091 0.0010513370547305912 1.133788625763053 0.0012363923091848932']
['59866.338965188945 2.8425489127777217 0.0006507911535808662 0.3254810669505831 0.0002002525186371389 0.0008706205157648644 5.356500539109673e-07 1.7094593852446593 0.0010517464214135448 1.1330895275330624 0.001236810276693767']
['59866.33899672691 2.843012107880846 0.0006508576139572248 0.32537335871059136 0.0002002275967668355 0.0008703324099025718 5.355833910731542e-07 1.7088936907068875 0.0010516155292375816 1.1341184171739584 0.0012367339467240846']
['59866.339028264876 2.840373710691219 0.0006505960589534105 0.325128878129084 0.00020016896217610463 0.0008696784553977502 5.354265509899443e-07 1.7076096540393066 0.0010513075744543311 1.1327640566519122 0.0012363344402024714']
['59866.339059802835 2.8410964375823817 0.000650639812937548 0.3255578167714488 0.00020026392556458822 0.0008708258117879265 5.356805659931362e-07 1.7098624830433236 0.001051806331746787 1.1312339545390582 0.001236781599831611']
['59866.3390913408 2.843880691813429 0.0006508861824206725 0.32586603976247613 0.00020034208822392673 0.0008716502691424907 5.358896411796729e-07 1.7114813012735093 0.0010522168499155816 1.13239939053992 0.0012372603289980758']
['59866.33912287876 2.8439167118767132 0.0006509264599145199 0.32575461829372493 0.000200308530610799 0.000871352230864872 5.357998788266033e-07 1.7108961044838495 0.0010520406019474738 1.1330206073928637 0.0012371316358265405']
['59866.339154416724 2.8412238624668857 0.0006506751629820883 0.3252361490092113 0.0002002178075305222 0.0008699653913779533 5.355572061093163e-07 1.708173051518967 0.0010515641151813142 1.1330508109479187 0.0012365942164100669']
['59866.33918595469 2.8474613879452493 0.0006511510935683573 0.32650437317704883 0.00020042822879480688 0.0008733577299537507 5.36120056266334e-07 1.7148338927366011 0.0010526692688802885 1.1326274952086481 0.0012377844466223626']
['59866.33921749265 2.840643455656441 0.0006506379391954697 0.3253293617499486 0.00020024279744621198 0.0008702147236207681 5.356240509598957e-07 1.7086626142329233 0.0010516953647385083 1.1319808414235177 0.0012366862448224252']
['59866.339249030614 2.841279945999248 0.0006507040404706562 0.32532734998524543 0.0002002487348621649 0.0008702093424056951 5.356399327934772e-07 1.7086520482418355 0.001051726548645824 1.1326278977574125 0.0012367475415020215']
['59866.33928056858 2.8462131231777095 0.0006510649203114658 0.3265469437274557 0.00020042885245666103 0.0008734716007693372 5.361217244825845e-07 1.7150574775601666 0.0010526725444152366 1.131155645617543 0.0012377419021047254']
['59866.33931210654 2.847753872236027 0.0006512120934170962 0.32660930824507123 0.00020044262296489414 0.0008736384179332373 5.36158558843159e-07 1.7153850222955425 0.0010527448685130995 1.1323688499404845 0.001237880829802829']
['59866.339343644504 2.841863249863133 0.0006507327067336448 0.3254185928960781 0.00020024802258058726 0.000870453405603697 5.356380275307217e-07 1.7091312652104944 0.0010517228076711517 1.1327319846526385 0.0012367594429753047']
['59866.33937518246 2.846048629855355 0.0006510280047894731 0.32657962038437216 0.00020044164926834228 0.0008735590066764293 5.36155954328549e-07 1.715229098657417 0.0010527397545606213 1.130819531197938 0.0012377796467273644']
['59866.33940672043 2.8483247633533857 0.0006512488339238144 0.3264440430739714 0.0002004058335455949 0.0008731963545903555 5.360601518190421e-07 1.7145170329515305 0.0010525516467730825 1.1338077304018552 0.0012377358412891887']
['59866.339438258394 2.847783597908954 0.0006512671502521848 0.32637412844210295 0.0002004052358763204 0.0008730093418297452 5.36058553129641e-07 1.7141498342547425 0.0010525485077537836 1.1336337636542115 0.001237742809380171']
['59866.33946979635 2.8410837862298637 0.0006506409971185381 0.3253205832557437 0.00020024963775871658 0.000870191242263699 5.356423479270789e-07 1.708616508696133 0.001051731290749562 1.1324672775337308 0.0012367184057307246']
['59866.33950133432 2.8465145900934794 0.0006511142695935255 0.32628071160653316 0.00020038627570562482 0.0008727594636591748 5.36007837081102e-07 1.7136591996141448 0.0010524489270253405 1.1328553904793346 0.0012375776889008224']
['59866.33953287228 2.845947502445879 0.0006509985604995883 0.32654511484232485 0.0002004251529176441 0.0008734667087338931 5.36111828685581e-07 1.7150478720710338 0.0010526531140632569 1.130899630374845 0.0012376904719353737']
['59866.33956441024 2.8468304929532406 0.0006510882657964762 0.3264869200252867 0.0002004273722592015 0.0008733110449894569 5.361177651423754e-07 1.7147422270235646 0.0010526647702689155 1.132088265929676 0.0012377475705583798']
['59866.33959594821 2.8436376112759625 0.0006508732555044804 0.3255933550802186 0.0002002882197647023 0.0008709208722502767 5.357455498929113e-07 1.7100491338246777 0.0010519339273356214 1.1335884774512848 0.0012370129272609664']
['59866.339627486166 2.847327864106432 0.0006512085455044598 0.32637462399405914 0.00020041988614166335 0.0008730106673682896 5.360977407287491e-07 1.714152436943588 0.0010526254524247025 1.133175427162844 0.0012377774084343048']
['59866.33965902413 2.8402636713924365 0.0006505998457984397 0.32548174471599955 0.0002002674139681732 0.0008706223287012726 5.356898970296748e-07 1.7094629449369727 0.0010518246531941871 1.1308007264554638 0.0012367761561495377']
['59866.3396905621 2.845877664221603 0.0006510315910481897 0.32650575025920203 0.00020042577731138155 0.0008733614134736117 5.361134988595265e-07 1.7148411253109352 0.0010526563934421301 1.1310365389106676 0.0012377106346789341']
['59866.339722100056 2.8470053443720644 0.0006511673087899233 0.3262900823017316 0.00020038507355282605 0.0008727845290786881 5.36004621475047e-07 1.713708415450271 0.001052442613197616 1.1332969289217933 0.0012376002254811276']
['59866.33975363802 2.847589948150442 0.0006511503567569573 0.3266072758984767 0.00020042638644479546 0.0008736329816642189 5.361151282140445e-07 1.7153743482062855 0.001052659592672245 1.1322155999441563 0.001237775829926247']
['59866.33978517599 2.842107624390742 0.0006507289902427892 0.3255070467696859 0.0002002654572189883 0.0008706900084813492 5.356846629741258e-07 1.7095958338744008 0.0010518143761501487 1.1325117905163413 0.001236835357118532']
['59866.339816713946 2.8461370283962966 0.0006510930931478232 0.32647666289359156 0.00020043734638443427 0.0008732836084648986 5.361444446605908e-07 1.7146883555335692 0.0010527171553804322 1.1314486728627273 0.001237794661960161']
['59866.33984825191 2.8431413994504444 0.0006508157338857167 0.325846303745129 0.00020033496637059098 0.0008715974778026967 5.358705911265239e-07 1.7113776457202154 0.0010521794452236922 1.131763753730229 0.0012371914582733105']
['59866.33987978987 2.8406285625381025 0.0006506357716568525 0.32550439861927294 0.00020026840126560982 0.0008706829250153278 5.356925379249242e-07 1.7095819255213915 0.0010518298385798835 1.131046637016711 0.0012367994650251477']
['59866.339911327836 2.8421530233007952 0.0006507568331887223 0.3253251433483993 0.00020022917824596753 0.0008702034399323897 5.355876213289736e-07 1.7086404587626016 0.0010516238353254596 1.1335125645381936 0.0012366879747803987']
['59866.3399428658 2.8436439439772885 0.0006508237054876957 0.3259227712859779 0.0002003320720675939 0.0008718020187625654 5.35862849233603e-07 1.7117792609557665 0.001052164244052489 1.131864683021522 0.0012371827238073123']
['59866.33997440376 2.843523883058059 0.0006508546359998486 0.32564670133526014 0.00020030250249709403 0.0008710635667071726 5.357837543880542e-07 1.7103293137356101 0.0010520089416864184 1.1331945693224488 0.0012370669224381814']
['59866.340005941725 2.84687241852331 0.0006506695705562013 0.3263222818578534 0.00020021416291685987 0.0008728706588017495 5.355474572306605e-07 1.713877530766037 0.0010515449733028356 1.132994887757273 0.001236574996078383']
['59866.34003747969 2.8405435465296653 0.000650130328934113 0.3253444463593455 0.000200058905734184 0.000870255073035056 5.351321639857296e-07 1.708741840122613 0.0010507295469232352 1.1318017064070522 0.0012355978412806835']
['59866.34006901765 2.8424854537290445 0.0006503190929605173 0.32553160877612564 0.00020007931912786103 0.0008707557087290322 5.351867672211746e-07 1.7097248360090633 0.0010508367601253206 1.1327606177199812 0.0012357883391178567']
['59866.340100555615 2.8466164516706365 0.0006506605790241394 0.32637411548262074 0.00020020503611424103 0.0008730093071647763 5.355230441928216e-07 1.7141497661902352 0.0010514970384151315 1.1324666854804013 0.0012365295026370462']
['59866.34013209357 2.8453525765948062 0.0006505178490117931 0.3263868908225475 0.00020024764086854784 0.0008730434795765245 5.356370064994963e-07 1.7142168635638 0.0010517208028810287 1.1311357130310062 0.0012366447020448702']
['59866.34016363154 2.8435565694016542 0.0006503777928467925 0.32579698909279337 0.00020013363870739607 0.0008714655673709979 5.353320651974717e-07 1.7111186401932426 0.0010511220520346433 1.1324379292084117 0.0012360618276210074']
['59866.340195169505 2.8451325601657853 0.0006504972630901386 0.3262088949869262 0.00020018215058658883 0.0008725673633229295 5.35461828312971e-07 1.713282011485957 0.001051376841316118 1.1318505486798283 0.0012363413572891665']
['59866.34022670746 2.8448643409057106 0.0006505040296123672 0.325700708998932 0.00020013058536232604 0.0008712080303481511 5.353238978872051e-07 1.7106129674313657 0.0010511060155584352 1.134251373474345 0.0012361146178591438']
['59866.34025824543 2.8441059028800746 0.0006504332878873635 0.3256920847019943 0.00020009562801845935 0.0008711849614491876 5.352303914321842e-07 1.7105676717541718 0.001050922416063337 1.1335382311259028 0.0012359212703794557']
['59866.340289783395 2.843548765868042 0.0006503663529966187 0.3257200544936043 0.00020011946053000756 0.000871259777089389 5.352941403736832e-07 1.7107145719201908 0.0010510475868172667 1.1328341939478512 0.0012359924849547111']
['59866.34032132135 2.8463198274873784 0.0006506298451835767 0.32637976445751316 0.00020024984143288398 0.0008730244174551549 5.356428927296087e-07 1.7141794351760147 0.0010517323604668277 1.1321403923113638 0.0012367134484175106']
['59866.34035285932 2.8413035362768913 0.0006502149061420026 0.32538095621207 0.00020007458048971696 0.0008703527322540924 5.351740919659788e-07 1.708933593550788 0.0010508118723199422 1.1323699427261031 0.001235712351309072']
['59866.34038439728 2.8410526943889587 0.0006502293811183582 0.32529736154980154 0.00020006610941898786 0.0008701291271496197 5.351514329276625e-07 1.7084945459548402 0.0010507673814022472 1.1325581484341185 0.0012356821346481055']
['59866.34041593524 2.8470518313614575 0.0006507385846632819 0.3263976816638485 0.0002002562556968837 0.0008730723437064938 5.356600500711524e-07 1.714273538150465 0.0010517660488281707 1.1327782932109924 0.0012367993075019055']
['59866.34044747321 2.8472763245731665 0.000650716832154222 0.3266699603358173 0.00020029176720443557 0.0008738006545727515 5.357550388436486e-07 1.7157035731923178 0.0010519525588468255 1.1315727513808487 0.0012369464748780402']
['59866.34047901117 2.8425806441206882 0.0006503268126411112 0.3255640589588748 0.00020009943830059864 0.0008708425088464905 5.352405834529748e-07 1.7098952676411494 0.0010509424280493627 1.1326853764795388 0.001235882255845692']
['59866.34051054913 2.840919306408325 0.0006501944834313389 0.3254388631639099 0.00020008978974116144 0.0008705076259956841 5.352147747819135e-07 1.7092377267012078 0.0010508917528422345 1.1316815797071171 0.0012357695345315686']
['59866.34054208709 2.8468210256643056 0.0006507045871100258 0.3262512501080294 0.00020020982872534542 0.0008726806578924898 5.355358638188314e-07 1.713504464853096 0.0010515222096919403 1.1333165608112097 0.001236574064567687']
['59866.34057362506 2.8414958512499533 0.0006502474309258525 0.3251628871231812 0.00020001916230802676 0.0008697694251375848 5.350258553684467e-07 1.7077882727057838 0.001050520810441317 1.1337075785441695 0.0012354819685434315']
['59866.34060516302 2.8473829925353273 0.0006507156164067586 0.32664456965194366 0.00020029222462331306 0.0008737327377181805 5.357562623810506e-07 1.7155702187602084 0.0010519549612568963 1.131812773775119 0.0012369478784284428']
['59866.34063670098 2.8406320840540866 0.0006501929597802526 0.32525236293713045 0.00020005570720382985 0.000870008761575857 5.351236083232675e-07 1.7082582087034164 0.0010507127479192746 1.1323738753506702 0.0012356165115390285']
['59866.34066823895 2.843000837131564 0.0006503241157745838 0.3257258154561922 0.00020013423557391403 0.0008712751869326299 5.353336617396011e-07 1.7107448290766398 0.001051125186837784 1.1322560080549242 0.0012360362510714482']
['59866.34069977691 2.8443895568677147 0.0006505329438898903 0.3285629051112094 0.00020113579025977867 0.0008788640414299553 5.380126933199744e-07 1.7256455100378645 0.0010563854530450563 1.1187440468298502 0.0012406221570209265']
['59866.34073131487 2.8474679608163718 0.0006506867477417797 0.32695450712385 0.0002003373225463879 0.0008745617810913452 5.358768935975302e-07 1.7171980416168593 0.0010521918200965751 1.1302699191995125 0.0012371341358013359']
['59866.34076285284 2.8435060583754357 0.0006503403480448864 0.3256865107619311 0.00020012230213262996 0.0008711700518674472 5.353017412997951e-07 1.7105383968588819 0.0010510625112007876 1.1329676615165538 0.0012359914929912948']
['59866.340794390795 2.842497283265244 0.0006503366976099276 0.3254111764317026 0.00020007745332145432 0.0008704335675034343 5.351817764260069e-07 1.7090923131917153 0.001050826960721924 1.1334049700735287 0.0012357892707246904']
['59866.34082592876 2.8430326151496077 0.0006503167397649677 0.3259017198275391 0.0002001592541509819 0.0008717457087849212 5.354005832557268e-07 1.7116686965732097 0.001051256586927426 1.131363918576398 0.0012361441152134477']
['59866.34085746673 2.8443022493789707 0.0006504611413419959 0.3260154300681806 0.00020019105993728312 0.0008720498692366567 5.354856596945295e-07 1.7122659142236378 0.0010514236341243861 1.1320363351553329 0.0012363621454862094']
['59866.340889004685 2.846738128533428 0.0006506287339326057 0.3262590394535957 0.00020021563702670868 0.0008727014934025791 5.355514002872839e-07 1.71354537528149 0.001051552715476411 1.1331927532519381 0.001236560092694471']
['59866.34092054265 2.84605208507882 0.0006505979447963124 0.3260945066921981 0.00020016614313902794 0.0008722613891626298 5.354190104238012e-07 1.7126812326270908 0.0010512927685873317 1.133370852451729 0.001236322842568721']
['59866.340952080616 2.8439007049243554 0.0006504378541039432 0.32586935075299706 0.0002001377545461168 0.0008716591256216156 5.353430745433099e-07 1.7114986909296066 0.001051143668834647 1.1324020139947488 0.0012361118131392905']
['59866.340983618575 2.8471848380244396 0.0006506709605649612 0.3265083503667409 0.00020023317811120614 0.0008733683684310468 5.355983204604766e-07 1.7148547813379251 0.0010516448430210406 1.1323300566865144 0.0012366606546564333']
['59866.34101515654 2.8410591463625803 0.0006502263787366275 0.3250333618261926 0.00020002225010514574 0.0008694229614187414 5.350341148335686e-07 1.707107992784625 0.0010505370278631604 1.1339511535779552 0.001235484678381934']
['59866.3410466945 2.846653550257037 0.0006506021612351408 0.3263147360497709 0.00020020081275463482 0.0008728504747234981 5.355117472422706e-07 1.7138378994210657 0.0010514748569045947 1.1328156508359715 0.0012364799015375761']
['59866.341078232464 2.8470994784402794 0.0006506639570211959 0.32668143152863127 0.00020028308813743037 0.0008738313385566087 5.357318234417108e-07 1.7157638210537358 0.0010519069755117142 1.1313356573865436 0.001236879893157247']
['59866.34110977043 2.8467183784873464 0.0006506796498679694 0.3263881812132001 0.00020024039061864116 0.0008730469312076318 5.356176130018274e-07 1.714223640825631 0.0010516827238374012 1.1324947376617154 0.0012366974401082744']
['59866.34114130839 2.8464317428083428 0.0006506156374510107 0.32654595304893197 0.00020026936151918456 0.0008734689508301092 5.356951064812779e-07 1.7150522744166596 0.0010518348819284905 1.1313794683916831 0.0012367931623910712']
['59866.341172846354 2.847196728787603 0.0006506468752547925 0.3266682405438873 0.000200289055169618 0.0008737960543477642 5.357477844949588e-07 1.7156945406716773 0.0010519383149664814 1.1315021881159257 0.0012368975603393136']
['59866.34120438432 2.8473320491054697 0.0006507001195384607 0.32631306486681844 0.00020019865038959866 0.000872846004521352 5.355059631904341e-07 1.7138291221996766 0.0010514634999453712 1.133502926905793 0.0012365217900565833']
['59866.34123592228 2.844561491493531 0.0006504940944387336 0.3259342267883763 0.0002001694194435612 0.0008718326607765537 5.354277741223145e-07 1.7118394264095396 0.001051309976069124 1.1327220650839913 0.0012362828287581001']
['59866.341267460244 2.840497818270007 0.0006501486202728548 0.32516419359979554 0.00020004003659872377 0.0008697729197965966 5.350816914448831e-07 1.7077951344527078 0.0010506304443210284 1.132702683817299 0.0012355231924075316']
['59866.3412989982 2.847352188118445 0.0006506818246276274 0.3265319868463597 0.00020025656892144305 0.0008734315930120319 5.35660887907067e-07 1.7149789225123935 0.0010517676939151423 1.1323732656060517 0.0012367708433110457']
['59866.34133053617 2.8428040155015877 0.0006503679075940489 0.3257740973032133 0.00020015718567781797 0.0008714043347412855 5.353950503527235e-07 1.7109984102059521 0.0010512457230977834 1.1318056052956356 0.0012361617958663999']
['59866.341362074134 2.840669385286878 0.0006501330374668264 0.3252561109454625 0.00020005237699992508 0.0008700187870221223 5.35114700450781e-07 1.7082778936211265 0.0010506952573525478 1.1323914916657516 0.0012355701073710785']
['59866.34139361209 2.84046517394457 0.0006500817683195284 0.3256984538131636 0.0002001482369622753 0.0008712019980126447 5.353711136751952e-07 1.7106011229682963 0.001051198723541362 1.1298640509762736 0.0012359713030149339']
['59866.34142515006 2.846316877732151 0.0006506427158607967 0.3261256034873528 0.00020018800223244048 0.0008723445691401625 5.354774807224249e-07 1.7128445561310548 0.0010514075747502126 1.133472321601096 0.0012364440270165235']
['59866.341456688024 2.8423510892206343 0.000650304575631866 0.3255159273416409 0.0002001025697384924 0.0008707137628834353 5.352489596516265e-07 1.7096424755338284 0.001050958874676956 1.1327086136868059 0.0012358845404607968']
['59866.34148822598 2.8418251148583806 0.0006502431205104712 0.32595010192458945 0.00020018697872541873 0.0008718751247496727 5.354747429711341e-07 1.711922804225785 0.0010514021991881236 1.1299023106325956 0.001236229226409414']
['59866.34151976395 2.8421289897140403 0.0006503101431887917 0.32552668538266893 0.00020008699261913541 0.0008707425392768403 5.352072928357476e-07 1.7096989778501521 0.001050877062075291 1.1324300118638881 0.001235817899987786']
['59866.341551301906 2.8469092730725043 0.0006506612475974057 0.3265206141936035 0.00020024834098868256 0.0008734011726103141 5.356388792319366e-07 1.714919192193296 0.0010517244799825764 1.1319900808792083 0.0012367232677198377']
['59866.34158283987 2.8455551761483093 0.0006505813938960255 0.32607162083988106 0.0002001795354126573 0.000872200172414342 5.354548330548491e-07 1.712561033822905 0.0010513631061589146 1.1329941423254044 0.001236373944676859']
['59866.34161437784 2.84343919046425 0.0006503507245395708 0.3256868139646275 0.00020013214861621517 0.0008711708628961512 5.353280793928146e-07 1.7105399893100186 0.0010511142259255 1.1328992011542316 0.0012360409300877166']
['59866.341645915796 2.846351229941816 0.0006506337776874713 0.3263200904602599 0.00020022731580592097 0.0008728647970915093 5.355826395383917e-07 1.7138660213248944 0.001051614053602526 1.1324852086169217 0.0012366149078845065']
['59866.34167745376 2.8434534451887057 0.0006503893656265052 0.325665299712772 0.00020013944302521997 0.0008711133150048954 5.353475910104625e-07 1.7104269942897692 0.0010511525368971637 1.1330264508989365 0.0012360938405903458']
['59866.34170899173 2.847652582791568 0.0006507371849488758 0.32681456285353927 0.00020031141728935598 0.0008741874479421462 5.358076003251152e-07 1.7164630401971601 0.0010520557630743488 1.1311895425944078 0.0012370449516865335']
['59866.341740529686 2.847256394929734 0.0006506725736674285 0.326650599432679 0.00020026281575140877 0.000873748866615824 5.35677597383835e-07 1.7156018877766754 0.0010518005028960545 1.1316545071530586 0.001236793877740098']
['59866.34177206765 2.84146089151674 0.0006502372051174818 0.32557858892576724 0.00020009503557299175 0.0008708813746625223 5.352288067158029e-07 1.709971580492475 0.0010509193044799987 1.131489311024265 0.001235815442308324']
['59866.34180360561 2.8461893277999994 0.0006505983663087622 0.32615628760144577 0.00020018156512095108 0.0008724266452482682 5.354602622667481e-07 1.7130057121924673 0.0010513737663915498 1.1331836156075321 0.0012363919406482653']
['59866.341835143576 2.8419646457509846 0.0006502897990718321 0.3255021071252872 0.00020008946433125452 0.0008706767955599514 5.352139043517418e-07 1.7095698903639034 0.001050890043756589 1.1323947553870812 0.0012358182337397394']
['59866.34186668154 2.842086649483293 0.0006503034821326747 0.32535605808622436 0.00020008131778476143 0.000870286132929688 5.351921133745401e-07 1.7088028260831114 0.001050847257272907 1.1332838234001816 0.001235789050360891']
['59866.3418982195 2.8461469186667614 0.0006505807634448645 0.3263943490545445 0.0002002168317289109 0.0008730634293998699 5.355545959639395e-07 1.714256034950339 0.0010515589901728514 1.1318908837164223 0.0012365401892287407']
['59866.341929757466 2.8416823925665122 0.0006502451670589449 0.3254164034279805 0.0002000789007142333 0.0008704475490546134 5.351856480178619e-07 1.709119765903259 0.0010508345625747548 1.1325626266632531 0.0012357475693624454']
['59866.34196129543 2.843397850734393 0.0006503575715986451 0.3256473358927466 0.00020011701019346124 0.0008710652640678557 5.352875860346313e-07 1.710332646495518 0.0010510347174026325 1.1330652042388751 0.0012359769205455733']
['59866.34199283339 2.8438511651304283 0.0006504349803466395 0.32551182557129077 0.00020008649224861598 0.0008707027911687016 5.352059544081586e-07 1.7096209326223255 0.0010508744340788656 1.1342302325081028 0.0012358813615631192']
['59866.342024371355 2.846076760181129 0.0006505767925808601 0.32617681100037654 0.00020019804635629593 0.0008724815427337956 5.355043474780656e-07 1.7131135031532383 0.0010514603275015542 1.132963257027891 0.0012364541978393197']
['59866.342055909314 2.8447007181995394 0.0006517061293031632 0.3253329106091043 0.0002000587696302866 0.0008702242163682802 5.351317999250902e-07 1.7086812531990774 0.0010507288320918415 1.136019465000462 0.0012364270935079013']
['59866.34208744728 2.8410893554119148 0.0006501555166553813 0.3258350059066551 0.0002001607183977629 0.000871567257519682 5.354044999298965e-07 1.7113183083332726 0.0010512642772991748 1.1297710470786422 0.0012360658463701608']
['59866.342118985245 2.840437759940878 0.0006501538428354279 0.3252684642459185 0.00020006014108301715 0.0008700518305318883 5.351354683869605e-07 1.7083427744008326 0.00105073603509988 1.1320949855400453 0.0012356157310471126']
['59866.3421505232 2.843341816237678 0.0006503841812888453 0.32538992644957376 0.00020007272412637516 0.0008703767265001332 5.351691264298104e-07 1.7089807061427196 0.0010508021225124745 1.1343611100949584 0.0012357931396263224']
['59866.34218206117 2.8444437989984266 0.0006505510263419375 0.32560176086151993 0.00020011143803420228 0.0008709433566476659 5.352726812163161e-07 1.710093281835714 0.0010510054518603062 1.1343505171627126 0.001236053840944898']
['59866.342213599135 2.843690560299015 0.0006503833401853554 0.3256944371361733 0.00020010497784488703 0.0008711912539118412 5.352554010303861e-07 1.7105800269757003 0.0010509715222945747 1.1331105333233145 0.0012359367418540623']
['59866.34224513709 2.8465203841702644 0.00065063856784383 0.3264176045782614 0.0002002534248975764 0.0008731256349722015 5.356524780425363e-07 1.7143781753059948 0.00105175118118475 1.1321422088642696 0.001236734042989594']
['59866.34227667506 2.846471983225498 0.000650670004366596 0.3262633786807379 0.00020023069469875734 0.000872713100284073 5.355916776475865e-07 1.71356816534001 0.0010516317998884317 1.132903817885488 0.0012366490598059777']
['59866.34230821302 2.845930472373871 0.0006505855512505018 0.3260082046541817 0.00020016940096275916 0.0008720305421718867 5.354277246885162e-07 1.7122279656207022 0.001051309879006088 1.133702506753169 0.0012363308704354651']
['59866.34233975098 2.8471369147114896 0.000650697116494944 0.3262675402204529 0.00020022008964929597 0.0008727242318742665 5.355633104871913e-07 1.7135900221662443 0.0010515761010992436 1.1335468925452452 0.0012366159605220698']
['59866.34237128895 2.8453897374107022 0.0006505105752519594 0.32633605987418035 0.00020022196671218488 0.0008729075132455215 5.355683313920193e-07 1.713949894297166 0.0010515859596228199 1.1314398431135362 0.0012365261982628924']
['59866.34240282691 2.8412114433870475 0.0006501986241608567 0.32517581624631775 0.00020002043501416287 0.0008698040088998877 5.350292596957184e-07 1.707856177764274 0.001050527494822284 1.1333552656227734 0.0012354619655166462']
['59866.34243436487 2.8399521334435542 0.0006501002327960692 0.3255241889399358 0.00020009698072827908 0.0008707358616095944 5.352340097591485e-07 1.7096858662811754 0.0010509295206317178 1.1302662671623789 0.0012357520665638054']
['59866.34246590284 2.840132476226314 0.0006501479508595789 0.32519138853597607 0.00020003714745640787 0.0008698456627969361 5.350739633561289e-07 1.7079379649998743 0.001050615270254243 1.1321945112264398 0.0012355099368674884']
['59866.3424974408 2.8468994917821275 0.0006506717683782242 0.326424728793519 0.0002002237696639228 0.0008731446913431915 5.35573154058931e-07 1.7144155924029363 0.0010515954289071576 1.1324838993791913 0.001236619058668786']
['59866.34252897876 2.8456313162164557 0.0006505525842744609 0.32615915394249795 0.0002002044138572698 0.0008724343123465377 5.355213797344545e-07 1.7130207665047161 0.00105149377025877 1.1326105497117396 0.0012364699000781145']
['59866.34256051672 2.8440371787944048 0.0006504402366366097 0.3258259901269125 0.00020014063055423338 0.0008715431414539364 5.35350767499749e-07 1.7112709565489104 0.0010511587739192932 1.1327662222454944 0.001236125911638212']
['59866.34259205469 2.8440425586946683 0.0006504300133484498 0.32597592892689586 0.00020018005038950127 0.0008719442087006359 5.354562105525011e-07 1.712058450246302 0.0010513658108692295 1.1319841084483662 0.0012362965948869943']
['59866.34262359265 2.8434651231921375 0.0006503576981753124 0.325786929512671 0.00020014057622450511 0.0008714386592718063 5.353506221746261e-07 1.7110658062640285 0.0010511584885740815 1.132399316928109 0.0012360822398518791']
['59866.34265513061 2.841361071969276 0.000650227514358742 0.3254542915006766 0.000200085771712385 0.0008705488948370304 5.352040270652537e-07 1.709318757881705 0.0010508706497499212 1.1320423140875708 0.0012357689682683287']
['59866.34268666858 2.841134963775981 0.0006502110462381187 0.3255765728318388 0.00020011570110124748 0.0008708759818673214 5.352840843792233e-07 1.7099609917638592 0.0010510278419183167 1.1311739720121219 0.0012358939797318955']
['59866.34271820654 2.840027902265349 0.0006500644293776459 0.32522375839670126 0.00020003890032392588 0.0008699322480631817 5.350786520541135e-07 1.7081079747725907 0.0010506244764912074 1.1319199274927585 0.001235473817182909']
['59866.3427497445 2.8471295798028673 0.0006507041782701022 0.3264739315640438 0.0002002062752321778 0.000873276302505256 5.355263586759259e-07 1.7146740103153562 0.0010515035463874885 1.1324555694875111 0.001236557979103137']
['59866.34278128247 2.8416484918007408 0.0006502572557396821 0.32552694452259 0.000200086920292391 0.0008707432324432166 5.352070993708922e-07 1.7097003388791492 0.0010508766822079358 1.1319481529215916 0.0012357897474289312']
['59866.342812820425 2.846994494234974 0.0006506688659729701 0.32626618111203287 0.0002001934319814568 0.0008727205964318591 5.354920046114282e-07 1.7135828839917695 0.001051436092339584 1.1334116102432044 0.0012364820376458711']
['59866.34284435839 2.842890526389791 0.0006503390884590508 0.3257268099168755 0.00020015678545658286 0.0008712778469886544 5.353939798117505e-07 1.7107500520844303 0.0010512436210954983 1.1321404743053607 0.001236144846234342']
['59866.34287589636 2.842152701478836 0.0006502473668555369 0.325766723807417 0.0002001402530028887 0.000871384611576515 5.353497575978536e-07 1.7109596838624843 0.0010511567909815584 1.1311930176163516 0.0012360227495192824']
['59866.342907434315 2.8435077783564413 0.0006503886976010349 0.32570995842316197 0.00020011557502452334 0.000871232771383226 5.352837471399988e-07 1.7106615463401365 0.001051027179750648 1.1328462320163049 0.0012359868893082042']
['59866.34293897228 2.845983668677769 0.0006505517143557988 0.32629042794632845 0.00020022026466582789 0.0008727854536340854 5.35563778634186e-07 1.7137102308105487 0.001051577020303718 1.1322734378672203 0.0012365402390064446']
['59866.342970510246 2.8434242396029497 0.000650394695605348 0.32562918703934396 0.00020011383297648222 0.0008710167181900325 5.352790873827409e-07 1.7102373268873108 0.0010510180303386673 1.1331869127156389 0.0012359822653131172']
['59866.343002048205 2.847456087439415 0.0006507009492692095 0.326404349935778 0.00020022684992716252 0.0008730901804869889 5.355813933718827e-07 1.7143085605870694 0.0010516116067603074 1.1331475268523457 0.0012366481701975083']
['59866.34303358617 2.8465112070377643 0.0006506240076065969 0.3263328256277798 0.00020022427866672553 0.0008728988620471715 5.355745155767815e-07 1.7139329077089276 0.0010515981022412055 1.1325782993288367 0.0012365962024490347']
['59866.34306512413 2.8462830546734064 0.0006506217692553257 0.3263378531674962 0.00020022619500205722 0.0008729123100773808 5.35579641530406e-07 1.7139593128544968 0.0010516081670276117 1.1323237418189096 0.0012366035838489646']
['59866.343096662094 2.8470665527057992 0.0006507037041035145 0.32644435746579925 0.00020025581874569306 0.0008731971955485651 5.356588812822132e-07 1.7145186841691138 0.0010517637539164551 1.1325478685366854 0.0012367790039398581']
['59866.34312820006 2.8405453638416898 0.0006501426117526134 0.32534897817718467 0.0002000810294430441 0.0008702671950722038 5.351913420970676e-07 1.7087656416868944 0.0010508457428731308 1.1317797221547954 0.0012357031160157733']
['59866.34315973802 2.840592995409767 0.0006501477978498709 0.32528779737533664 0.00020005699787054026 0.0008701035441976418 5.351270606927944e-07 1.7084443139460959 0.001050719526630989 1.1321486814636712 0.0012355985119336646']
['59866.343191275984 2.8463234790873075 0.0006506182575831811 0.326144799212061 0.00020018880228148345 0.0008723959152657682 5.354796207520031e-07 1.7129453740129257 0.0010514117766884635 1.1333781050743819 0.0012364347298825628']
['59866.34322281395 2.84505433664245 0.0006504707268463427 0.32648344670466345 0.00020026897615935756 0.0008733017542979254 5.35694075692684e-07 1.7147239847934006 0.001051832857979819 1.1303303518490495 0.0012367152168587575']
['59866.34325435191 2.841530496905259 0.0006502107939413606 0.3255782053270354 0.0002000922122886528 0.0008708803485846342 5.352212547887727e-07 1.7099695657932532 0.0010509044763059496 1.1315609311120056 0.0012357889362175634']
['59866.343285889874 2.842383447487575 0.0006503003799170615 0.32554110303387096 0.00020008846895778055 0.0008707811046626651 5.352112418541182e-07 1.7097747008081459 0.0010508848159547298 1.132608746679429 0.0012358193559434487']
['59866.34331742783 2.846402203690488 0.0006506197945266924 0.32621247425826927 0.00020019518061083127 0.0008725769374191802 5.35496681972917e-07 1.7133008101799858 0.001051445276317391 1.133101393510502 0.0012364640254047467']
['59866.3433489658 2.8408124517724436 0.0006501957402147485 0.32526009780113907 0.00020007815746891233 0.0008700294513546992 5.351836599310256e-07 1.7082988329891757 0.0010508306589753801 1.1325136187832678 0.0012357182423335979']
['59866.343380503764 2.8477940461763334 0.0006507576501742474 0.32627321024585193 0.00020019322130913848 0.0008727393984720768 5.354914410897336e-07 1.7136198017114073 0.0010514349858673242 1.134174244464926 0.0012365278196490883']
['59866.34341204172 2.8441653454517457 0.000650435495099217 0.3257374149511883 0.0002001319253028158 0.0008713062141085289 5.353274820578337e-07 1.7108057507940562 0.0010511130530610074 1.1333595946576895 0.0012360845374003334']
['59866.34344357969 2.8434716351615195 0.0006503898569797365 0.3255042940759129 0.000200066175768951 0.0008706826453751175 5.351516104053871e-07 1.7095813764491228 0.0010507677298789446 1.1338902587123967 0.001235766882634857']
['59866.343475117654 2.847545479177996 0.0006507073123282873 0.32700180602635665 0.00020033496760277206 0.0008746882996482654 5.358705944224518e-07 1.7174464602224613 0.0010521794516952314 1.1300990189555349 0.0012371344328274035']
['59866.34350665561 2.8463728100726176 0.0006506009347969926 0.32630059469297146 0.00020021333812341298 0.0008728126483901089 5.355452510129444e-07 1.713763627589136 0.00105154064140448 1.1326091824834816 0.0012365351984007838']
['59866.34353819358 2.840502588376946 0.0006501614856704538 0.32536809454861837 0.00020007573627235761 0.0008703183289378787 5.351771835377502e-07 1.7088660427973654 0.0010508179426069204 1.1316365455795807 0.0012356894051313433']
['59866.343569731536 2.84644969930043 0.0006506655542415748 0.32651568015622257 0.00020025443612903387 0.0008733879746869765 5.356551829582517e-07 1.714893278131421 0.0010517564922743377 1.1315564211690088 0.0012367527572306903']
['59866.3436012695 2.8422988298466034 0.0006502695194697973 0.3257990649271052 0.00020016641101595306 0.0008714711199641369 5.354197269605537e-07 1.7111295426843762 0.0010512941755039553 1.1311692871622272 0.0012361512413131422']
['59866.34363280747 2.8471156144731102 0.000650667868332766 0.32671001862803445 0.00020028661722043797 0.0008739078054167545 5.357412632905383e-07 1.715913963382534 0.001051925510611544 1.1312016510905762 0.0012368977139424519']
['59866.343664345426 2.846845837767241 0.0006506474050266503 0.3263730905827744 0.00020025316036843848 0.0008730065656878566 5.356517704606894e-07 1.714144383312891 0.0010517497918510427 1.1327014544543499 0.0012367375106814807']
['59866.34369588339 2.8475217311372933 0.0006507109661630112 0.3264988920573349 0.00020024609769918547 0.0008733430686546558 5.35632878717445e-07 1.7148051053431457 0.0010517126979999237 1.1327166257941477 0.0012367394069160561']
['59866.34372742136 2.848750276996473 0.0006508535020956786 0.32674875475460435 0.00020028224339684812 0.0008740114196355753 5.357295638679411e-07 1.7161174094254432 0.0010519025388489923 1.13263286757103 0.0012369758414888972']
['59866.343758959316 2.8459781296649873 0.0006506071296822841 0.32642298901751055 0.00020023657275983637 0.0008731400376633323 5.356074007144188e-07 1.7144064549239 0.001051662672057964 1.1315716747410873 0.0012366422332241113']
['59866.34379049728 2.8422794129215934 0.0006502971045800212 0.3256364086031245 0.00020011475324206357 0.0008710360349559572 5.352815489762909e-07 1.710275255268511 0.0010510228636663003 1.1320041576530824 0.0012359350242526787']
['59866.34382203524 2.8464616513363152 0.000650652214485424 0.3263998391740657 0.0002002442320167876 0.0008730781147723061 5.356278882539852e-07 1.7142848696116895 0.0010517028992478342 1.1321767817246258 0.0012367001627318914']
['59866.343853573206 2.840311675629346 0.0006501253800343292 0.3253551900339807 0.0002000671584960718 0.0008702838110001849 5.35154239075622e-07 1.708798266985193 0.0010507728912608812 1.131513408644153 0.0012356320968530774']
['59866.34388511117 2.8417297712833554 0.0006502920167506964 0.3254367349745307 0.00020008481609126892 0.0008705019333593892 5.352014709001386e-07 1.7092265492359806 0.0010508656307314545 1.1325032220473747 0.0012357986409210465']
['59866.34391664913 2.8474496394334743 0.0006507349394191725 0.3263088337215337 0.00020021284840244244 0.0008728346867450998 5.355439410715462e-07 1.7138068997979712 0.0010515380693405592 1.133642739635503 0.0012366035228210152']
['59866.343948187096 2.8410385513192424 0.0006502163844030682 0.3251019965681774 0.00020000535614558794 0.0008696065506364677 5.349889256374001e-07 1.7074684693706796 0.0010504482990839703 1.1335700819485628 0.0012354039726318695']
['59866.34397972506 2.8447318583375107 0.0006505398652151117 0.32573369305953387 0.00020015331420464506 0.0008712962585210592 5.353846946536896e-07 1.7107862030437706 0.0010512253897302787 1.1339456552937401 0.0012362349842354697']
['59866.34401126302 2.8404181441668523 0.0006501448584245286 0.32525198781909315 0.00020007086413849107 0.0008700077581827498 5.351641511984516e-07 1.7082562385456574 0.0010507923536685457 1.132161905621195 0.0012356588960810066']
['59866.344042800985 2.845478702584109 0.0006504998650268206 0.3264755303626564 0.00020023464737239384 0.0008732805790884863 5.356022505475475e-07 1.7146824073668931 0.0010516525597289595 1.130796295217216 0.00123657720372987']
['59866.344074338944 2.846338286496056 0.0006506128415395006 0.32622002065958217 0.0002001854841506188 0.0008725971230842475 5.354707451733656e-07 1.7133404446406628 0.001051394349530561 1.1329978418553932 0.0012364170606235158']
['59866.34410587691 2.8417449046830647 0.0006502346941793588 0.32556568551263765 0.0002000924061003898 0.0008708468596712225 5.352217732105538e-07 1.709903810465534 0.0010509054942247364 1.1318410942175308 0.0012358023771243773']
['59866.344137414875 2.8464944605551934 0.0006506432588088836 0.32628507976707843 0.00020018950604351802 0.0008727711479338471 5.354815032260631e-07 1.7136821416338153 0.0010514154729176367 1.1328123189213781 0.0012364510289227235']
['59866.34416895283 2.8406810716859336 0.0006501517812673016 0.325460032365146 0.00020006143221336503 0.0008705642509203568 5.351389219966587e-07 1.7093489094808088 0.0010507428162466652 1.131332162205125 0.0012356204128206277']
['59866.3442004908 2.846202922493579 0.0006506201180041349 0.3263363157127386 0.00020023911596808039 0.0008729081975811715 5.356142034734667e-07 1.7139512379870725 0.0010516760292441198 1.1322516845065067 0.0012366604256781215']
['59866.344232028765 2.8437895878968824 0.0006504858551182982 0.32587607353277787 0.0002001546909332696 0.0008716771082036902 5.353883772279064e-07 1.7115339996469427 0.0010512326204478446 1.1322555882499397 0.0012362127122799806']
['59866.34426356672 2.8430895629020254 0.0006503728189613631 0.32561815637022484 0.00020010287952684438 0.0008709872125511096 5.352497882961229e-07 1.710179392700761 0.0010509605017166197 1.1329101702012645 0.0012359218340219575']
['59866.34429510469 2.846980794854826 0.0006506714518602424 0.3263217320525755 0.00020022635359770867 0.00087286918814246 5.35580065753631e-07 1.7138746431332745 0.0010516089999879658 1.1331061517215513 0.0012366304327169073']
['59866.34432664265 2.8457252102882467 0.0006505694425108051 0.32600775737981985 0.0002001760380289016 0.0008720293457697757 5.354454779974944e-07 1.7122256164906506 0.0010513447375467523 1.133499593797596 0.0012363520359088948']
['59866.34435818061 2.8453211609221403 0.0006504905665398427 0.3265108773815585 0.0002002538775170799 0.0008733751278747355 5.356536887422224e-07 1.714868053474572 0.0010517535583880247 1.1304531074475683 0.0012366582085358905']
['59866.34438971858 2.847746289176509 0.0006507202195126888 0.3264959409849306 0.00020025019163648277 0.0008733351749107808 5.356438294797572e-07 1.7147896060132912 0.0010517341997714432 1.1329566831632176 0.0012367625604987886']
['59866.34442125654 2.841972577538623 0.0006502764888149761 0.32531838174222366 0.0002000492390416805 0.0008701853534946402 5.35106306811019e-07 1.7086049461251245 0.0010506787764794144 1.1333676314134984 0.0012356315807107768']
['59866.3444527945 2.847010528016503 0.0006507066280711614 0.3263326578680828 0.0002002150266090607 0.0008728984133112886 5.355497674976028e-07 1.713932026618082 0.0010515495095013694 1.133078501398421 0.001236598353042859']
['59866.34448433247 2.8429930181929626 0.0006503625135568515 0.32584067676308814 0.00020016483840336614 0.0008715824263404027 5.354155204216162e-07 1.7113480922431101 0.0010512859159840658 1.1316449259498524 0.0012361931387070719']
['59866.34451587043 2.8462500400328707 0.0006506039617842946 0.32630597576941567 0.00020018818691963378 0.0008728270420861636 5.354779747372105e-07 1.7137918895452506 0.001051408544745976 1.13245815048762 0.0012364244590973889']
['59866.34454740839 2.8467549717678824 0.0006506551493948682 0.32608552858808515 0.00020018402864286185 0.0008722373738744085 5.354668518749752e-07 1.7126340787189347 0.0010513867050570475 1.1341208930489477 0.0012364328234905336']
['59866.34457894635 2.8460884396354764 0.0006506015353141505 0.3264373926561588 0.00020025441854195692 0.0008731785655673555 5.356551359150546e-07 1.7144821042865486 0.001051756399905236 1.1316063353489278 0.001236718999002907']
['59866.34461048432 2.8479014133573393 0.0006507232955934232 0.3268835628113784 0.00020031314825751093 0.0008743720140658981 5.358122304450848e-07 1.7168254349337104 0.0010520648542936498 1.1310759784236288 0.0012370453771256267']
['59866.34464202228 2.8410933791633997 0.000650204019073816 0.32518101727458043 0.0002000219768635705 0.0008698179209899241 5.350333839470584e-07 1.707883494089183 0.0010505355927708537 1.1332098850742167 0.0012354716905288248']
['59866.34467356024 2.8474481663723674 0.000650724023204507 0.3266170562802799 0.0002002885186440208 0.0008736591429433669 5.357463493571286e-07 1.7154257157577728 0.0010519354970799412 1.1320224506145946 0.0012369357478835684']
['59866.34470509821 2.8461184749171142 0.0006505265063444683 0.32644789884802383 0.00020021893070688388 0.000873206668296236 5.355602104634327e-07 1.7145372838656716 0.0010515700142168273 1.1315811910514426 0.0012365210189304175']
['59866.34473663617 2.8422272578248142 0.0006503102215419043 0.3258026519260966 0.00020017359298156126 0.0008714807147308654 5.354389378063967e-07 1.7111483819647932 0.0010513318959115613 1.131078875860021 0.0012362047320742947']
['59866.34476817413 2.843625249642562 0.0006504493444049704 0.32524264534992803 0.00020003864329593221 0.0008699827682642907 5.350779645368747e-07 1.7082071709555045 0.0010506231265542659 1.1354180786870576 0.0012356752419982837']
['59866.3447997121 2.846832660633374 0.0006506277265036094 0.32635090520207327 0.0002002099005741354 0.0008729472226121765 5.355360560052192e-07 1.7140278634562671 0.0010515225870490305 1.1328047971771067 0.001236533941939946']
['59866.344831250055 2.84042958404925 0.0006501520792346192 0.3254296103188958 0.00020007144068126653 0.000870482875810446 5.351656933771511e-07 1.7091891298261335 0.001050795381729341 1.1312404542231167 0.0012356652703692898']
['59866.34486278802 2.841223155692652 0.000650214580532795 0.3251371780071022 0.00020000770580027138 0.0008697006565173075 5.349952106652561e-07 1.7076532458356208 0.0010504606397073078 1.133569909857031 0.0012354135163222576']
['59866.34489432599 2.8428477787043986 0.0006503264107326574 0.3256559947912363 0.0002000911784034183 0.0008710884255215762 5.35218489277081e-07 1.7103781239035523 0.0010508990462364408 1.1324696548008464 0.001235845154490271']
['59866.344925863945 2.8443161269334793 0.0006504923795870698 0.3259736178204163 0.00020018989686612242 0.0008719380267843294 5.354825486268927e-07 1.7120463120820184 0.0010514175255573659 1.132269814851461 0.0012363733857334615']
['59866.34495740191 2.843273911837481 0.0006503372646612473 0.32578266326261296 0.00020012137200485803 0.0008714272475947441 5.352992533261378e-07 1.7110433994885137 0.001051057626075935 1.1322305123489673 0.0012359857163978284']
['59866.344988939876 2.846121005620039 0.0006506192638845975 0.3263246556065738 0.00020023966468404536 0.0008728770082780941 5.356156712189823e-07 1.713889997933686 0.0010516789111557005 1.1322310076863529 0.0012366624271430645']
['59866.345020477835 2.8456219709559565 0.0006505513226702061 0.32618000530615354 0.00020019649151389236 0.0008724900870960503 5.355001884721118e-07 1.713130279969294 0.00105145216131246 1.1324916909866625 0.0012364338522365837']
['59866.3450520158 2.8468721058750495 0.0006506789348745154 0.3263984781149093 0.00020023173690316247 0.0008730744741119267 5.355944654120031e-07 1.7142777211917508 0.0010516372736510634 1.1325943846832986 0.0012366584134762821']
['59866.34508355376 2.84240723346015 0.0006503583476833946 0.3254178253874065 0.00020007799626506838 0.0008704513526154793 5.35183228731217e-07 1.7091272341775552 0.0010508298123165357 1.1332799992825948 0.0012358030890294298']
['59866.345115091724 2.8430436602267264 0.0006503264569861704 0.3255708792106776 0.00020010135891555822 0.0008708607521538442 5.352457208540604e-07 1.709931088291374 0.0010509525153128058 1.1331125719353523 0.0012358906464968891']
['59866.34514662969 2.843697040731512 0.0006504367899424085 0.32564271566448744 0.00020012710080739173 0.0008710529055440631 5.353145771453183e-07 1.7103083805907955 0.0010510877143245366 1.1333886601407166 0.0012360636718691167']
['59866.34517816765 2.844033078479894 0.0006504596764886339 0.3256662253989631 0.00020008360931398115 0.000871115791097888 5.351982429241629e-07 1.7104318560869913 0.0010508592926154472 1.1336012223929028 0.001235881484453075']
['59866.345209705614 2.8417391595147388 0.0006502221819659412 0.3255978874414214 0.00020012766867511067 0.0008709329957408532 5.353160961193433e-07 1.7100729382427595 0.0010510906968230602 1.1316662212719792 0.00123595329153999']
['59866.34524124358 2.844249084942665 0.0006504917577762882 0.3257371887441914 0.00020014910367362296 0.0008713056090335421 5.353734320179719e-07 1.7108045627320978 0.0010512032755967595 1.1334445222105671 0.0012361908645351825']
['59866.34527278154 2.8456179755868094 0.0006505975356074591 0.326053158192316 0.00020018531659093649 0.0008721507871769883 5.354702969724967e-07 1.7124640661361137 0.0010513934694902128 1.1331539094506957 0.0012364082582323552']
['59866.345304319504 2.841895826631931 0.0006502073753604522 0.32549940740763295 0.0002000891229394291 0.0008706695741581089 5.352129911719679e-07 1.7095557111745427 0.0010508882507322956 1.1323401154573882 0.0012357733394519855']
['59866.34533585746 2.846467305375693 0.0006506288545795322 0.32651149950762587 0.00020024676591319957 0.0008733767919829515 5.35634666105065e-07 1.7148713209434134 0.0010517162075273088 1.1315959844322794 0.0012366991904206534']
['59866.34536739543 2.8471828712700002 0.0006506407606028018 0.32644802162747016 0.0002002356968945542 0.0008732069967156611 5.3560505788603e-07 1.7145379287157048 0.0010516580719251798 1.1326449425542955 0.0012366560150677225']
['59866.345398933394 2.8467936215290814 0.0006506441680222997 0.32623083231317507 0.00020018220364290617 0.0008726260428844543 5.354619702318813e-07 1.7133972285355834 0.0010513771199732469 1.133396392993498 0.0012364188941393081']
['59866.34543047135 2.8432048474196727 0.000650405079678817 0.3252896053652481 0.00020006212484353957 0.0008701083803410278 5.351407746944068e-07 1.7084538096914292 0.0010507464540101868 1.1347510377282435 0.0012357568038602862']
['59866.34546200932 2.846842254864561 0.0006506237223217818 0.32649822253840133 0.00020026975122673592 0.0008733412777765419 5.356961488994823e-07 1.714801588962192 0.0010518369287118485 1.1320406659023692 0.0012367991561485743']
['59866.345493547284 2.8402700088739614 0.0006501239644756471 0.32499394259756453 0.00019998317411263432 0.0008693175199886737 5.349295915165196e-07 1.7069009590208222 0.0010503317968100542 1.1333690498531392 0.0012352562700005895']
['59866.34552508524 2.846833853639922 0.0006506516581430348 0.32640806376693443 0.0002002269547703578 0.0008731001145136504 5.355816738141143e-07 1.714328066002807 0.0010516121574073414 1.132505787637115 0.001236622703111666']
['59866.34555662321 2.8430991532419294 0.000650369771423793 0.3257641003059761 0.00020012086648273685 0.0008713775940433632 5.352979011186685e-07 1.710945904968362 0.0010510549710227776 1.1321532482735674 0.0012360005629826908']
['59866.345588161166 2.8471847156641568 0.0006506925663476408 0.3265584450272633 0.00020025504748598797 0.0008735023652855785 5.356568182604574e-07 1.715117883546551 0.00105175970318271 1.1320668321176057 0.0012367696993131185']
['59866.34561969913 2.8469124422372256 0.0006506576635643932 0.326731246861537 0.00020031168984370568 0.0008739645882452425 5.358083293733844e-07 1.7160254562055515 0.0010520571945572777 1.1308869860316741 0.0012370043394324874']
['59866.3456512371 2.8436902481096538 0.0006504327881345614 0.3258498071279776 0.0002001680459631093 0.0008716068489068631 5.354241002365471e-07 1.7113960458402189 0.0010513027624112885 1.132294202269435 0.0012362444378577018']
['59866.345682775056 2.8470135985110456 0.000650656102537695 0.3267815822118684 0.00020030002908970576 0.0008740992289144444 5.357771383374303e-07 1.716289822541326 0.0010519959511013958 1.1307237759697197 0.001236951431909626']
['59866.34571431302 2.847291519717113 0.000650671084518242 0.3264983424253104 0.00020023316789067978 0.0008733415984587973 5.355982931218667e-07 1.714802218620328 0.0010516447893418057 1.1324893010967851 0.0012366606742263279']
['59866.34574585098 2.847093907434256 0.0006506294455107681 0.32671500373716755 0.0002003050320865861 0.0008739211399505425 5.357905207186702e-07 1.7159401456784011 0.0010520222273455151 1.1311537617558547 0.0012369597577102775']
['59866.345777388946 2.8463833051128375 0.0006506040393547578 0.3263360464051821 0.0002002380323869724 0.0008729074772176618 5.356113050316251e-07 1.7139498235566288 0.0010516703381668719 1.1324334815562087 0.0012366471267927443']
['59866.34580892691 2.847681363586431 0.0006507841358827112 0.3266179873418322 0.00020028577215925654 0.0008736616334147681 5.357390028592065e-07 1.715430605786934 0.0010519210722650027 1.132250757799497 0.0012369551058109426']
['59866.34584046487 2.8463804132189834 0.0006506270702967881 0.3263452304696778 0.00020023820388277987 0.0008729320434237485 5.356117637611289e-07 1.7139980591894841 0.0010516712388801465 1.1323823540294993 0.0012366600095784952']
['59866.345872002836 2.8417515928067143 0.0006502317653095587 0.32571560142151657 0.00020013930636846126 0.000871247865687125 5.353472254709893e-07 1.7106911839365366 0.0010511518191620866 1.1310604088701777 0.0012360103136889065']
['59866.3459035408 2.8421268099353236 0.0006502512734796305 0.32598284419594425 0.0002001795576095421 0.0008719627061670538 5.354548924286968e-07 1.7120947699366822 0.0010513632227391917 1.1300320399986414 0.0012362003659562718']
['59866.34593507876 2.846141034043856 0.0006506488282747305 0.32647284722496506 0.00020023484855444015 0.0008732734020359388 5.356027886839698e-07 1.7146683152571696 0.0010516536163573539 1.1314727187866864 0.0012366564707034773']
['59866.345966616725 2.843497663173607 0.0006504035469764501 0.32564594010687853 0.00020011646293414433 0.000871061530517933 5.352861221854643e-07 1.7103253156873872 0.0010510318431415143 1.1331723474862196 0.001235998668776385']
['59866.345998154684 2.8469083860142845 0.0006506891911303791 0.32636122279657837 0.0002002132195795521 0.0008729748208670724 5.355449339231725e-07 1.7140820525030378 0.0010515400188001686 1.1328263335112467 0.0012365811071628767']
['59866.34602969265 2.844174018156388 0.0006504624214586864 0.3259448519378221 0.00020016235131643727 0.0008718610817018543 5.354088677799586e-07 1.7118952307658724 0.0010512728535527168 1.1322787873905158 0.0012362345951908843']
['59866.346061230615 2.8472122510797617 0.0006506902709897153 0.32669022065646275 0.00020028883600840182 0.0008738548483572784 5.357471982665403e-07 1.7158099824394053 0.0010519371639096733 1.1314022686403564 0.0012369194094907705']
['59866.346092768574 2.840622831448062 0.0006501774941100566 0.32523351393631084 0.00020006510047299662 0.0008699583428926169 5.351487341252791e-07 1.7081592118503721 0.0010507620823161589 1.13246361959769 0.0012356503257316056']
['59866.34612430654 2.8463948930619924 0.0006506394677407952 0.32601054844397115 0.00020015308004315402 0.0008720368115118962 5.353840683014412e-07 1.712240275441025 0.001051224159890515 1.1341546176209674 0.0012362863549030799']
['59866.346155844505 2.846027035528981 0.0006505871183246415 0.32625672840059167 0.00020020681492626316 0.000872695311629313 5.355278022890595e-07 1.7135332373980656 0.0010515063809152477 1.1324937981309153 0.00123649879402911']
['59866.34618738246 2.847337549049418 0.000650705996797343 0.3264975006958475 0.00020024468428269846 0.0008733393469393894 5.356290980078559e-07 1.7147977977723083 0.0010517052745940047 1.1325397512771096 0.0012367304794808263']
['59866.34621892043 2.8425630196445564 0.0006503659618968646 0.3257128000392137 0.00020014331967990924 0.0008712403723452597 5.353579605693946e-07 1.71067647079419 0.001051172897478515 1.1318865488503664 0.0012360988410266432']
['59866.34625045839 2.846746252365084 0.0006506393188578271 0.32634778048705604 0.00020023412973792118 0.0008729388643963657 5.356008659410762e-07 1.7140114521378993 0.0010516498410605105 1.1327348002271846 0.0012366482569616854']
['59866.34628199635 2.8466871773836315 0.0006506416960867109 0.3261837202825993 0.00020020307776069722 0.0008725000241862151 5.355178058458162e-07 1.7131497914002065 0.0010514867529448383 1.133537385983425 0.0012365108201326308']
['59866.34631353432 2.846813802651355 0.0006506286785002742 0.32618271788487063 0.00020018260907724486 0.0008724973428996023 5.354630547172443e-07 1.7131445267062533 0.0010513792493552776 1.133669275945102 0.0012364125538273543']
['59866.34634507228 2.8464908406113127 0.0006506285622779068 0.326459796321914 0.00020025877366663903 0.0008732384925278315 5.356667853204485e-07 1.714599770598288 0.0010517792734592386 1.1318910700130247 0.001236752669748588']
['59866.34637661024 2.841375102765408 0.0006502224400872568 0.3256401908814254 0.0002001223491903077 0.0008710461520700369 5.353018671731064e-07 1.7102951201755536 0.0010510627583524565 1.1310799825898543 0.0012359296677353856']
['59866.34640814821 2.8406606928313733 0.0006501470965084372 0.3253925601721873 0.0002000753588738 0.0008703837713736236 5.351761740445409e-07 1.7089945387194712 0.0010508159604716387 1.1316661541119022 0.0012356801486955611']
['59866.34643968617 2.8436088862929942 0.0006503737012665656 0.3260336779938792 0.00020018923760703767 0.0008720986801202887 5.354807851925714e-07 1.7123617541695337 0.0010514140630621728 1.1312471321234605 0.0012363080050311404']
['59866.34647122413 2.8465810372298472 0.0006506329242197765 0.3263520839097896 0.00020023981760186992 0.0008729503755056137 5.356160802547413e-07 1.7140340541480548 0.0010516797142955353 1.1325469830817925 0.0012366702970232268']
['59866.34650276209 2.846783084112426 0.0006506904290951409 0.3262783559395224 0.00020020126744993286 0.000872753162549107 5.355129634944434e-07 1.7136468274134582 0.0010514772450101516 1.133136256698968 0.0012365283786837068']
['59866.34653430006 2.8479714473244733 0.0006507977105322735 0.32654497452347553 0.00020025762400872527 0.0008734663333987927 5.356637101315437e-07 1.7150471351022876 0.0010517732353399437 1.1329243122221857 0.0012368365286534438']
['59866.34656583802 2.840604140400988 0.0006501876445209297 0.3254908032773892 0.00020011230943491314 0.0008706465592024905 5.352750121025438e-07 1.7095105214148594 0.001051010028544712 1.1310936189861287 0.0012358665191634698']
['59866.34659737598 2.841924006634378 0.0006502542612421079 0.32568139329130236 0.00020012296145793758 0.0008711563632834692 5.353035049112541e-07 1.7105115193870923 0.0010510659740437898 1.1314124872472857 0.0012359491437984574']
['59866.34662891395 2.843046852435662 0.0006503903784133027 0.3258136300619736 0.00020016432869480373 0.0008715100798500379 5.354141570159482e-07 1.7112060402414582 0.0010512832389432969 1.1318408121942036 0.0012362055220778252']
['59866.34666045191 2.847289457502771 0.0006507197782515318 0.3261678812134922 0.00020019929515311739 0.0008724576566880241 5.355076878509573e-07 1.7130666030120392 0.0010514668863083898 1.134222854490732 0.0012365350147936706']
['59866.34669198987 2.8466193803955 0.0006505924266450562 0.32636372383185536 0.00020024470244801512 0.0008729815108187897 5.356291465977708e-07 1.7140951881925177 0.0010517053700000794 1.1325241922029823 0.0012366708094294562']
['59866.34672352784 2.8420814250682844 0.0006502765393468804 0.32536568743434124 0.00020005626415408765 0.0008703118902129074 5.351250980944707e-07 1.7088534003904479 0.0010507156730781917 1.1332280246778366 0.001235662981268401']
['59866.346755065795 2.841646456830439 0.0006502441392833219 0.32558274338965487 0.0002001115483730384 0.0008708924873257763 5.352729763586889e-07 1.7099934001557504 0.0010510060313710001 1.1316530566746887 0.0012358928427054377']
['59866.34678660376 2.8427421786137876 0.0006503612770996788 0.3258049680896394 0.00020017566821649266 0.0008714869101741738 5.354444887962691e-07 1.7111605466892827 0.0010513427952546883 1.131581631924505 0.0012362408599802333']
['59866.34681814173 2.848206203590599 0.0006507441584870511 0.3266780529996897 0.00020028058168240998 0.0008738223014207863 5.357251189928682e-07 1.7157460766790427 0.0010518938113571953 1.1324601269115562 0.0012369108901519896']
['59866.346849679685 2.8457775959231113 0.000650592335776739 0.32632383048681646 0.00020022218047933084 0.0008728748011875391 5.355689031919849e-07 1.713885664321515 0.0010515870823494266 1.1318919316015963 0.001236570167493787']
['59866.34688121765 2.846204206081225 0.000650603945590465 0.3262219385628554 0.0002002214095384971 0.0008726022532319165 5.355668410231694e-07 1.7133505176620558 0.001051583033290426 1.1328536884191693 0.0012365728324373675']
['59866.346912755616 2.8435609966914455 0.0006503807813061433 0.325777219153251 0.00020013014443192182 0.00087141268529364 5.353227184543751e-07 1.7110148064771586 0.0010511036997474887 1.1325461902142868 0.001236047793701865']
['59866.346944293575 2.843246196781106 0.000650432001285017 0.3253976624574041 0.00020006784268300447 0.0008703974193385533 5.351560691887706e-07 1.7090213364359461 0.0010507764846796454 1.1342248603451597 0.0012357965079459261']
['59866.34697583154 2.844075777889765 0.0006504647202315516 0.3257634080538393 0.00020013825724207862 0.0008713757423568181 5.35344419191162e-07 1.7109422691903327 0.0010511463090445306 1.1331335086994325 0.0012361281953275924']
['59866.3470073695 2.8431813544486717 0.0006504239652188866 0.3256332487070015 0.00020011186883229658 0.0008710275826351568 5.35273833546504e-07 1.7102586591754283 0.0010510077144553391 1.1329226952732434 0.0012359888957331677']
['59866.347038907465 2.8473028122909243 0.0006506716208555361 0.32675830455107274 0.00020031714153699693 0.0008740369641282385 5.35822911960536e-07 1.7161675659195 0.001052085827400194 1.1311352463714244 0.0012370360327828456']
['59866.34707044543 2.8412686420426163 0.0006502000504855868 0.32541802798092057 0.0002000841556112629 0.0008704518945273987 5.35199704200008e-07 1.709128298219121 0.0010508621618238597 1.1321403438234954 0.001235747299735903']
['59866.34710198339 2.8398996990417587 0.0006500859585242839 0.325190533403405 0.00020003923667540063 0.0008698433754259162 5.350795517515895e-07 1.7079334737573793 0.0010506262430430707 1.1319662252843794 0.0012354866474556634']
['59866.347133521354 2.8476744390695448 0.0006507557067867331 0.32645309382586607 0.000200248526019119 0.0008732205642021662 5.35639374164854e-07 1.7145645684131623 0.0010517254517810875 1.1331098706563825 0.0012367737933185814']
['59866.34716505932 2.8469184781461188 0.000650683282148217 0.3261897604401787 0.0002001975180481205 0.0008725161808405987 5.355029343207951e-07 1.7131815149169052 0.0010514575527737421 1.1337369632292136 0.0012365078725799213']
['59866.34719659728 2.8460161475378536 0.0006505683924541578 0.32663933481531177 0.00020028399604860833 0.0008737187351950503 5.357342519888009e-07 1.715542724870335 0.001051911743952775 1.1304734226675186 0.001236833679330473']
['59866.347228135244 2.8433211093248314 0.0006503686445282229 0.3256546197742858 0.0002001273087802704 0.0008710847475258701 5.353151334463547e-07 1.7103709021758708 0.0010510888066190675 1.1329502071489606 0.0012360287428637626']
['59866.3472596732 2.841174183209636 0.0006501937842467579 0.32564300949778174 0.0002001237598046893 0.0008710536915108065 5.353056403874194e-07 1.7103099238328874 0.0010510701670414355 1.1308642593767486 0.001235920892742586']
['59866.34729121117 2.8461458817451373 0.0006505839210418236 0.32617661132859477 0.00020019741398374772 0.000872481008637139 5.355026559618148e-07 1.7131124544569054 0.0010514570062171624 1.1330334272882319 0.001236455124232704']
['59866.347322749134 2.8415183402183195 0.0006502755278114643 0.3252812938086357 0.00020005844897119676 0.0008700861479827144 5.351309422027508e-07 1.7084101565579606 0.0010507271479579662 1.133108183660359 0.0012356722063421029']
['59866.34735428709 2.8421139778318345 0.0006502827717367847 0.32566901115457353 0.00020011124955645219 0.0008711232426403358 5.352721770622725e-07 1.7104464871563736 0.0010510044619561566 1.131667490675461 0.00123591183434314']
['59866.34738582506 2.845972648464712 0.000650568434684418 0.32631967899382064 0.0002002117291075322 0.0008728636964710434 5.355409470998194e-07 1.7138638602616632 0.0010515321906908205 1.1321087882030487 0.0012365109123120468']
['59866.347417363024 2.842526340456815 0.000650316262952767 0.3255669453282673 0.00020010526247619495 0.0008708502295180267 5.352561623829847e-07 1.7099104271442613 0.0010509730172069062 1.1326159133125537 0.001235902716542787']
['59866.34744890098 2.846770759356171 0.0006506590538548056 0.32625152522099155 0.00020021729723329533 0.0008726813937847222 5.355558411290456e-07 1.7135059097741154 0.00105156143504882 1.1332648495820556 0.001236583461010685']
['59866.34748043895 2.8468386318666288 0.0006506704534005548 0.32616143723423385 0.00020019850828297824 0.0008724404198619376 5.355055830732729e-07 1.713032758583161 0.0010514627535870705 1.1338058732834677 0.0012365055443100076']
['59866.34751197691 2.8465073275527484 0.0006506232421024955 0.3264744845309316 0.00020024415508314191 0.0008732777816214502 5.356276824662541e-07 1.7146769145532121 0.001051702495184569 1.1318304129995362 0.0012366845764144594']
['59866.34754351487 2.8478904777525766 0.000650774343519021 0.32648504861408395 0.0002002488646759531 0.0008733060392021717 5.356402800288735e-07 1.714732398183214 0.0010517272304409304 1.1331580795693625 0.001236785112068205']
['59866.34757505284 2.846491279136145 0.0006506547591519247 0.3259300792885317 0.00020015800195211287 0.0008718215667412303 5.3539723378279e-07 1.7118176433221204 0.0010512500102526938 1.1346736358140248 0.0012363163833191478']
['59866.347606590796 2.8462175827439826 0.0006506097464277891 0.32632669313266827 0.00020022413667458095 0.0008728824584016171 5.355741357658287e-07 1.7139006992261991 0.0010515973564841439 1.1323168835177835 0.0012365880649235102']
['59866.34763812876 2.841026987483435 0.0006502179388307133 0.32531999711174386 0.00020007226589504234 0.0008701896744029438 5.351679007191935e-07 1.708613430208739 0.0010507997158353064 1.1324135572746958 0.0012357036095993336']
['59866.34766966673 2.840713596104813 0.0006502033645440338 0.32549943139978793 0.0002000876471859449 0.0008706696383340764 5.352090437188284e-07 1.7095558371837603 0.001050880499926181 1.1311577589210529 0.001235764637942631']
['59866.347701204686 2.8421726710720234 0.0006502735525333542 0.32550029308162576 0.00020007114714100217 0.000870671943223553 5.351649081942256e-07 1.7095603628236649 0.001050793840026272 1.1326123082483586 0.0012357278775529455']
['59866.34773274265 2.840781421153502 0.0006501185053186734 0.3256422254284057 0.00020010602823691703 0.0008710515942248079 5.352582106956594e-07 1.7103058058214586 0.0010509770390594382 1.1304756153320434 0.001235802090784738']
['59866.34776428061 2.8485064478685027 0.000650819959442076 0.3264827814948056 0.00020023644711629655 0.0008732999749460418 5.356070646339074e-07 1.7147204910441471 0.001051662012165423 1.1337859568243556 0.0012367536567320155']
['59866.347795818576 2.8458921094790486 0.0006505732390760568 0.32636687929527697 0.0002002339259813263 0.0008729899512826771 5.356003209180634e-07 1.7141117610046062 0.0010516487709103274 1.1317803484744424 0.0012366125815141597']
['59866.34782735654 2.844081058808529 0.000650444789201249 0.3258416807053197 0.00020018681663449056 0.0008715851117583646 5.35474309398488e-07 1.7113533650489483 0.0010514013478702237 1.1327276937595805 0.0012363345898673145']
['59866.3478588945 2.8439803912613364 0.0006504756144115343 0.32559003607821974 0.00020012009932795087 0.0008709119943414658 5.352958490770499e-07 1.7100317020914901 0.0010510509418484816 1.1339486891698463 0.0012360528335409629']
['59866.347890432466 2.847560550806469 0.000650720769341237 0.32648164976603783 0.00020025115988108692 0.0008732969477153253 5.356464194110995e-07 1.714714547090535 0.0010517392850897423 1.132846003715934 0.0012367671743109669']
['59866.34792197043 2.840362062482832 0.0006501391612812608 0.32508741893207466 0.00020001856757787732 0.0008695675573113527 5.350242645408318e-07 1.7073919061558545 0.0010505176868585995 1.1329701563269776 0.0012354223324168312']
['59866.34795350839 2.841183565267916 0.0006501915393692921 0.32553843748889544 0.00020010884258644818 0.0008707739746683981 5.352657387232136e-07 1.70976070109714 0.0010509918203069758 1.131422864170776 0.0012358530835902706']
['59866.347985046355 2.8465192748319774 0.0006506218535596198 0.32598802246629727 0.00020015801526178002 0.0008719765573825722 5.353972693844592e-07 1.7121219667347547 0.0010512500801564079 1.1343973080972227 0.0012362991253568893']
['59866.348016584314 2.845554714017661 0.0006505230204999385 0.3264133978447645 0.00020025501500435023 0.0008731143824943812 5.356567313762018e-07 1.7143560811174605 0.001051759532585873 1.1311986329002004 0.001236680360718006']
['59866.34804812228 2.8420477390436023 0.0006503160212411911 0.32570219648983456 0.00020012531236876228 0.0008712120091973939 5.353097932991285e-07 1.710620779883585 0.0010510783212645078 1.1314269591600172 0.00123599213788567']
['59866.348079660245 2.8433183830663893 0.0006504057672849035 0.32545808449922364 0.0002000730534401614 0.0008705590406264069 5.351700073023634e-07 1.7093386790925613 0.001050803852101688 1.133979703973828 0.0012358059708988342']
['59866.348111198204 2.8429583676306467 0.0006503439649107409 0.32556628850346175 0.00020009192540096382 0.0008708484725950931 5.352204874006415e-07 1.709906977434148 0.0010509029695428772 1.1330513901964987 0.0012358577280940797']
['59866.34814273617 2.8478064192295234 0.0006507089032926055 0.3265577789963062 0.00020025878758554402 0.0008735005837373589 5.356668225517516e-07 1.7151143854848017 0.0010517793465627313 1.1326920337447217 0.0012367949994563333']
['59866.348174274135 2.8432330826895678 0.0006503715193106041 0.3258942666166124 0.0002001616464074448 0.0008717257723923012 5.35406982237932e-07 1.7116295515578386 0.001051269151299605 1.1316035311317292 0.0012361836196959476']
['59866.34820581209 2.840822315447495 0.0006501547022785274 0.3255086345430611 0.00020010322133404365 0.0008706942555734698 5.35250702586969e-07 1.7096041730202791 0.0010509622969224982 1.1312181424272159 0.001235808596202298']
['59866.34823735006 2.8466630286176215 0.0006506393810737392 0.32631402792637554 0.0002002128291338145 0.0008728485805833521 5.355438895304137e-07 1.7138341802855859 0.001051537968139782 1.1328288483320357 0.0012365531539903813']
['59866.34826888802 2.84675332894055 0.0006506613463424663 0.3265302113137875 0.00020025671759133523 0.0008734268436879062 5.356612855801465e-07 1.714969597236279 0.0010517684747444079 1.131783731704271 0.0012367607335658619']
['59866.34830042598 2.841139696718903 0.000650218298539797 0.325359845978551 0.00020008223780967218 0.0008702962650605734 5.351945743243269e-07 1.708822720475583 0.0010508520893365138 1.13231697624332 0.0012357483357945116']
['59866.34833196395 2.8428138301692525 0.0006503544354412393 0.32579828169552866 0.00020015650479060184 0.0008714690249191455 5.353932290658978e-07 1.7111254290731548 0.0010512421470094636 1.1316884010960977 0.0012361516668059627']
['59866.34836350191 2.840834345227286 0.0006501991297814751 0.32523889524330224 0.00020005721673578864 0.000869972737205356 5.351276461295364e-07 1.7081874750173438 0.0010507206761333438 1.1326468702099421 0.00123562650004874']
['59866.34839503987 2.84371716725009 0.0006503947268330486 0.3260067259826677 0.00020017157976824566 0.0008720265869133883 5.354335527164694e-07 1.712220199488801 0.0010513213223122147 1.131496967761289 0.0012362401964992643']
['59866.34842657784 2.847489387862658 0.0006507245824840778 0.3263997627818222 0.00020022778866450206 0.0008730779104327572 5.355839043750399e-07 1.7142844683919234 0.0010516165371034772 1.1332049194707345 0.0012366647983017007']
['59866.3484581158 2.8470429992893864 0.000650648902056427 0.3267424706928369 0.00020033201767689622 0.0008739946105684662 5.358627037453949e-07 1.7160844048993535 0.00105216395838706 1.1309585943900329 0.0012370905339044354']
['59866.34848965376 2.839897811260644 0.0006500978673078609 0.3252483088128191 0.00020006900350492818 0.0008699979173082256 5.351591742399841e-07 1.7082369160337139 0.0010507825814334464 1.1316608952269303 0.0012356258618700755']
['59866.34852119172 2.8467416678658717 0.000650592557334477 0.32671636372288826 0.00020025863106408692 0.0008739247777396178 5.356664038767331e-07 1.7159472884605476 0.001051778524496255 1.1307943794053241 0.0012367330917584982']
['59866.34855272969 2.8467022910196014 0.0006506362247303549 0.3263960878720084 0.00020023840781945699 0.0008730680805157441 5.356123092658388e-07 1.7142651673950022 0.0010516723099761398 1.1324371236245991 0.001236665736770417']
['59866.34858426765 2.8470740651668054 0.0006506635359092521 0.32624442930765657 0.00020019723299223027 0.0008726624131177808 5.355021718324928e-07 1.713468641321726 0.0010514560556314616 1.1336054238450795 0.0012364962086015476']
['59866.34861580561 2.841583375911716 0.000650150472684515 0.32539698187742505 0.0002000765820286369 0.0008703955988735477 5.351794458283804e-07 1.709017761961266 0.0010508223846041854 1.1325656139504499 0.0012356873881031257']
['59866.34864734358 2.846706295442871 0.0006506371863091452 0.32649647215528327 0.00020026161897738166 0.0008733365957240118 5.356743961653111e-07 1.7147923957735467 0.001051794217318181 1.131913899669324 0.001236769915462147']
['59866.34867888154 2.844037111974698 0.0006504145789051495 0.3254261957017577 0.0002000659920769752 0.0008704737421432814 5.35151119052682e-07 1.709171195912593 0.001050766765110164 1.134865916062105 0.001235779073747586']
['59866.3487104195 2.845998831369956 0.0006506280888375927 0.32626664660469956 0.00020021701333637463 0.0008727218415656217 5.355550817408396e-07 1.7135853288061953 0.0010515599439935642 1.1324135025637605 0.0012365659003046325']
['59866.34874195747 2.847010203900694 0.0006506458943165109 0.3265132138965394 0.00020026820630778404 0.000873381377755556 5.356920164375013e-07 1.7148803250868667 0.0010518288146417229 1.1321298788138274 0.001236803919423586']
['59866.348773495425 2.8474681275086695 0.0006507066388866309 0.3265175231183984 0.00020023997339848107 0.000873392904376728 5.35616496990889e-07 1.7149029575546133 0.0010516805325550477 1.1325651699540562 0.001236709776967258']
['59866.34880503339 2.846420722309329 0.0006506107615869991 0.3261993337338577 0.00020018334456688473 0.000872541788185316 5.354650220586188e-07 1.7132317948206812 0.0010513831122210334 1.1331889274886477 0.001236406410431619']
['59866.34883657136 2.8390706868232236 0.000650011614491478 0.32491808721786786 0.00019998014128875272 0.0008691146164821386 5.349214790978257e-07 1.7065025589173732 0.001050315868113197 1.1325681279058504 0.001235183598411263']
['59866.348868109315 2.840341911610935 0.0006501099610272758 0.32533295805742657 0.0002000596236712305 0.000870224343286516 5.351340843761461e-07 1.7086815024024506 0.0010507333176010007 1.1316604092084845 0.0012355903310335879']
['59866.34889964728 2.839775957454938 0.0006500520972164871 0.32548211235877916 0.0002000835101159631 0.0008706233120990149 5.351979775820634e-07 1.7094648758339244 0.0010508587716174533 1.1303110816210136 0.0012356665759746422']
['59866.348931185246 2.840190483961859 0.0006501125353735294 0.32534052460806445 0.00020005458073693973 0.0008702445828484685 5.351205951674055e-07 1.7087212426894143 0.0010507068316015743 1.1314692412724445 0.0012355691622179703']
['59866.348962723205 2.841897017656481 0.0006502571278179496 0.3255582837934294 0.00020011034673028322 0.0008708270610124096 5.352697621169356e-07 1.7098649358898603 0.0010509997202220757 1.1320320817666207 0.001235894309471862']
['59866.34899426117 2.845826795972036 0.0006505961794428804 0.3262748983301019 0.00020019082499785195 0.0008727439138830473 5.3548503126139e-07 1.7136286677001153 0.0010514224001988023 1.1321981282719207 0.0012364321462763263']
['59866.34902579913 2.8427650994532083 0.0006503386314661069 0.325687704573419 0.0002001208458343866 0.000871173245161555 5.35297845886954e-07 1.7105446668772009 0.00105105486257556 1.1322204325760075 0.0012359840855451732']
['59866.349057337095 2.8451885852250847 0.0006504860780385957 0.3261338236183703 0.0002001944924200539 0.0008723665569466212 5.354948411499925e-07 1.7128877290880793 0.0010514416618700312 1.1323008561370054 0.0012363905960650328']
['59866.34908887506 2.8470155290622134 0.0006507284744804253 0.3263989152890605 0.000200246393273668 0.0008730756434972571 5.356336693416458e-07 1.7142800172744777 0.0010517142503869118 1.1327355117877358 0.0012367499391415086']
['59866.34912041302 2.843949629630421 0.0006504482463031004 0.32588468035880425 0.00020016331339921015 0.0008717001303701848 5.35411441229185e-07 1.7115792035651485 0.0010512779065084568 1.1323704260652725 0.001236231433766179']
['59866.349151950984 2.8470111882183318 0.0006506946019438148 0.32671818896020666 0.0002003542480842398 0.0008739296600176269 5.359221672616247e-07 1.7159568747910015 0.0010522807147281504 1.1310543134273303 0.0012372138730177603']
['59866.34918348895 2.841525408026038 0.000650236328012211 0.32534963552659374 0.00020007213776080646 0.0008702689533983852 5.351675579763866e-07 1.7087690941522782 0.0010507990428613786 1.13275631387376 0.0012357127136778973']
['59866.34921502691 2.845833750407465 0.0006505795358470066 0.32632013717750386 0.00020023446424080295 0.0008728649220542035 5.356017606938008e-07 1.7138662666885707 0.001051651597903377 1.1319674837188942 0.0012366182983587267']
['59866.349246564874 2.84036911741845 0.0006501539755382333 0.32534115471666974 0.00020007743572627093 0.0008702462683089596 5.35181729361126e-07 1.7087245520833496 0.0010508268683102466 1.1316445653351004 0.0012356930440327362']
['59866.34927810283 2.847882595021536 0.0006507640660620903 0.3267002034668722 0.00020028315088113492 0.0008738815511072382 5.357319912731515e-07 1.7158624131663456 0.0010519073050479775 1.1320201818551903 0.001236932838957299']
['59866.3493096408 2.8415781586006643 0.0006502445699438815 0.3256529497096273 0.00020013771554762416 0.0008710802803150184 5.353429702272952e-07 1.7103621308278747 0.0010511434640106312 1.1312160277727896 0.0012360099444073144']
['59866.349341178764 2.843947761430405 0.0006504652960289912 0.32570480817744135 0.00020012359206759164 0.0008712189951300398 5.353051917119871e-07 1.7106344967302591 0.001051069286069284 1.1333132647001458 0.0012360630022196593']
['59866.34937271672 2.8427203612388317 0.000650348257985116 0.32557858473689144 0.00020013162018367222 0.0008708813634578115 5.353266659028768e-07 1.709971558492077 0.001051111450544497 1.1327488027467547 0.0012360372721443443']
['59866.34940425469 2.8463022522953114 0.0006505526577393583 0.32640248703242536 0.00020021151500514492 0.0008730851974571222 5.355403744031259e-07 1.7142987764308055 0.0010515310662034922 1.132003475864506 0.0012365016553498001']
['59866.349435792654 2.8462595291597337 0.0006505905594951313 0.32642112356926384 0.00020022447412934504 0.000873135047826197 5.355750384144636e-07 1.7143966574015959 0.0010515991288305938 1.1318628717581378 0.001236579477373554']
['59866.34946733061 2.8407824663828722 0.0006501801534195132 0.32505966759230864 0.00020002327473690244 0.0008694933260020891 5.350368555933825e-07 1.7072461533209489 0.001050542409332471 1.1335363130619234 0.0012354649269431708']
['59866.34949886858 2.8469750530152425 0.0006506914786176892 0.3263887242636636 0.00020022085897213133 0.0008730483837986505 5.355653683280666e-07 1.7142264929814266 0.0010515801416603537 1.1327485600338159 0.001236616429892505']
['59866.349530406536 2.8402844273630166 0.0006501379427335646 0.3252507321887498 0.0002000461549360859 0.0008700043995310549 5.35098057220256e-07 1.7082496438484758 0.0010506625784458294 1.1320347835145408 0.0012355448993574738']
['59866.3495619445 2.8413375961834464 0.0006502356517896435 0.32544778997556534 0.00020009937003113212 0.000870531504083096 5.352404008408226e-07 1.7092846112162048 0.0010509420694912403 1.1320529849672416 0.0012358339841114718']
['59866.34959348247 2.8466455946935287 0.00065062477535933 0.32659073123936955 0.00020027131460337942 0.0008735887268023924 5.357003307334441e-07 1.7152874539882854 0.0010518451397236316 1.1313581407052433 0.001236806693170604']
['59866.349625020426 2.84852032908979 0.0006508349438482671 0.32678965821133626 0.00020031618076004698 0.0008741208311873136 5.358203420042201e-07 1.7163322385049176 0.0010520807813027679 1.1321880905848722 0.0012371176558923648']
['59866.34965655839 2.8404865507838117 0.0006501307249958504 0.32533264012059476 0.000200041222685167 0.000870223492845871 5.350848640754776e-07 1.708679832566149 0.0010506366737666334 1.1318067182176628 0.0012355190730405764']
['59866.34968809636 2.8459309342862587 0.0006506117267934318 0.3263910829709321 0.00020023677302420748 0.0008730546930410218 5.356079363961766e-07 1.7142388811498537 0.001051663723866636 1.131692053136405 0.001236645546281622']
['59866.349719634316 2.8463836299790533 0.0006505540278149457 0.32649475084452645 0.00020021630442171925 0.0008733319914363556 5.355531854841735e-07 1.7147833552758744 0.001051556220702307 1.1316002747031788 0.0012365237678281678']
['59866.34975117228 2.8466362004529344 0.000650649052955388 0.3261667091741379 0.00020017629831193395 0.0008724545216316084 5.354461742215481e-07 1.7130604473431614 0.0010513461045794851 1.133575753109773 0.0012363950912739022']
['59866.34978271024 2.8461799529639467 0.000650587843864173 0.32607603616003983 0.00020019287881795197 0.0008722119828349907 5.354905249693083e-07 1.712584223529621 0.0010514331870690756 1.1335957294343257 0.0012364369330677837']
['59866.349814248206 2.8475555866573137 0.000650760737411053 0.32626661462133777 0.00020020667542347786 0.0008727217560141909 5.355274291368266e-07 1.713585160826354 0.001051505648232552 1.1339704258309597 0.001236589529965678']
['59866.34984578617 2.8467892058581947 0.0006506718844033871 0.32641744851135956 0.00020023937983251413 0.0008731252175130607 5.356149092773143e-07 1.7143773556268886 0.0010516774150867339 1.132411850231306 0.001236688839828584']
['59866.34987732413 2.8470071582537284 0.0006506964405611598 0.32616760887663904 0.00020019117108949702 0.0008724569282215305 5.354859570125846e-07 1.7130651726714237 0.001051424217907022 1.1339419855823047 0.0012364864511026216']
['59866.349908862096 2.8433461088765526 0.0006503585969105109 0.3257853579789984 0.00020013454454185112 0.0008714344556188276 5.353344881895917e-07 1.711057552410706 0.0010511268095685458 1.1322885564658467 0.0012360557731628287']
['59866.34994040006 2.8462522628231595 0.0006506432614832165 0.32602425276144986 0.00020018347694458394 0.0008720734688206094 5.354653761521513e-07 1.7123122518983713 0.0010513838074820586 1.1339400109247881 0.0012364241037560646']
['59866.34997193802 2.8412720630794404 0.000650249758131834 0.3253798626972988 0.00020008020368938236 0.0008703498072409633 5.351891333108988e-07 1.7089278503009393 0.0010508414059316302 1.132344212778501 0.0012357558045062436']
['59866.350003475985 2.839792788446665 0.0006500802883163522 0.32548801064605026 0.0002000988281906126 0.0008706390892683422 5.352389514862503e-07 1.7094958542334575 0.0010509392236901923 1.1302969342132074 0.0012357498262787721']
['59866.350035013944 2.846101064636951 0.000650554898155824 0.32641982019219784 0.00020022387407987786 0.0008731315614580833 5.355734333583492e-07 1.7143898119338123 0.0010515959773102828 1.1317112527031385 0.0012365580354393817']
['59866.35006655191 2.8463136254487327 0.0006506347368883693 0.3261785982635915 0.00020019169211114228 0.0008724863234359009 5.354873506793123e-07 1.7131228900398716 0.0010514269543652431 1.133190735408861 0.0012364563078457599']
['59866.350098089875 2.841273216073014 0.0006502270550399346 0.3256017189103242 0.0002001121435248568 0.0008709432444335455 5.352745683142148e-07 1.7100930615038037 0.0010510091571683657 1.1311801545692102 0.0012358865124102879']
['59866.350129627834 2.8418915853962488 0.0006502650325204659 0.32549957096637444 0.00020008311051868723 0.0008706700116569694 5.351969087101021e-07 1.7095565702015467 0.001050856672892265 1.132335015194702 0.001235776824301639']
['59866.3501611658 2.8463539255282706 0.0006506303097666108 0.3263493543605208 0.00020023167452160083 0.0008729430743079912 5.355942985492486e-07 1.7140197182800463 0.0010516369460168112 1.1323342072482243 0.0012366325510088118']
['59866.350192703765 2.8424954222063796 0.0006502961501280859 0.32568780165449807 0.00020013280894696177 0.0008711735048411116 5.353298456936952e-07 1.7105451767568176 0.0010511176940491691 1.131950245449562 0.00123601516560868']
['59866.35022424172 2.841249978891706 0.0006502161638799691 0.3253451641873444 0.0002000715866724878 0.0008702569931337839 5.351660838851261e-07 1.708745610227649 0.001050796148489957 1.1325043686640568 0.0012356996420862599']
['59866.35025577969 2.8444458112092446 0.000650480861682872 0.3257855961297266 0.00020013713582990461 0.0008714350926417787 5.353414195560235e-07 1.7110588032023455 0.0010511404192747092 1.133387008006899 0.0012361316808692767']
['59866.35028731765 2.840399692383815 0.0006501582026761983 0.325108047250237 0.00020001912886797622 0.0008696227354424991 5.350257659205586e-07 1.7075002481630097 0.0010505206348107995 1.1328994442208051 0.0012354348597439']
['59866.35031885561 2.843258367205115 0.0006503958872948697 0.3256880879668611 0.00020014508868011592 0.0008711742706903191 5.353626924202722e-07 1.7105466804982201 0.001051182188445987 1.1327116867068947 0.001236122487262559']
['59866.35035039358 2.84152523140175 0.0006502502799819714 0.3255744095225306 0.00020010185346735812 0.000870870195289677 5.352470437173137e-07 1.7099496298452237 0.0010509551127487297 1.1315756015565264 0.001235852772634883']
['59866.35038193154 2.845974298006694 0.0006505573547512684 0.3263812301390565 0.00020021707249735757 0.0008730283379671317 5.355552399889552e-07 1.71418713308328 0.0010515602547130126 1.131787164923414 0.0012365289487565843']
['59866.3504134695 2.8469833149219426 0.0006506963439890414 0.326502024634135 0.00020027329658963902 0.0008733514478997373 5.357056322949626e-07 1.71482155795239 0.001051855549315331 1.1321617569695526 0.001236853196101365']
['59866.35044500747 2.842110148679475 0.0006502753652702704 0.32567236350053475 0.0002001244479176566 0.0008711322097400111 5.353074810022119e-07 1.7104640940154137 0.0010510737810801292 1.1316460546640612 0.001235966886268181']
['59866.35047654543 2.8469839633698606 0.0006506539780510035 0.32645585093595186 0.00020026967397622047 0.0008732279391214738 5.356959422641648e-07 1.7145790490333608 0.0010518365229843514 1.1324049143364998 0.0012368147275309289']
['59866.35050808339 2.841352269271787 0.0006502003359297675 0.32556318800890394 0.00020011691863512364 0.000870840179165935 5.352873411277067e-07 1.7098906933240754 0.0010510342365290107 1.1314615759477118 0.0012358937831380588']
['59866.35053962135 2.8430315680636418 0.0006503583992228939 0.3258618102395623 0.00020016286816774872 0.0008716389557058746 5.354102502915731e-07 1.7114590873926592 0.0010512755681079242 1.1315724806709826 0.001236182174091021']
['59866.35057115932 2.8463518153955887 0.0006506334798069302 0.3263829583094505 0.00020022580074767753 0.0008730329606034462 5.355785869500133e-07 1.7141962096084586 0.0010516060963638527 1.13215560578713 0.001236607984348838']
['59866.35060269728 2.84179247084313 0.0006502499086653381 0.3253705585145368 0.00020007975203978063 0.0008703249197337698 5.351879252055768e-07 1.7088789837948362 0.0010508390338223774 1.132913487048294 0.001235753866562443']
['59866.35063423524 2.8434156911719715 0.0006503497787669158 0.32569715816567313 0.00020013686884019682 0.0008711985323201638 5.353407053924647e-07 1.710594318097023 0.0010511390170178407 1.1328213730749486 0.0012360615145855034']
['59866.35066577321 2.8467970096294204 0.0006506476333836741 0.32662692675368016 0.00020026268715879342 0.0008736855452060947 5.356772534149212e-07 1.7154775564794127 0.0010517998275146715 1.1313194531500077 0.0012367801825658709']
['59866.35069731117 2.8414710776209002 0.0006502261950300842 0.32561147531367224 0.0002001287098822604 0.0008709693415733713 5.353188812162283e-07 1.7101443031180266 0.0010510961653480062 1.1313267745028737 0.0012359600533644217']
['59866.35072884913 2.8475112989876896 0.0006506903197905429 0.32644164918892093 0.00020024266477666278 0.0008731899512518853 5.356236960857015e-07 1.7145044600258454 0.0010516946679446574 1.1330068389618442 0.0012367132112387018']
['59866.3507603871 2.843671322174724 0.0006504335908872573 0.32565117276891725 0.00020010115301670434 0.0008710755272243026 5.352451701007768e-07 1.7103527981560782 0.0010509514339112624 1.1333185240186456 0.0012359461042434781']
['59866.350791925055 2.839694852470818 0.0006500777041347887 0.3254675388060276 0.0002000974010691344 0.0008705843296963455 5.352351341175503e-07 1.709388334065271 0.0010509317283042773 1.1303065184055472 0.0012357420924164447']
['59866.35082346302 2.8415351365701307 0.000650231292446383 0.32564766323879135 0.00020013175645473158 0.0008710661396769502 5.353270304106532e-07 1.7103343657499546 0.0010511121662538424 1.1312007708201761 0.0012359763427037505']
['59866.35085500099 2.847123255587469 0.0006506468951461372 0.3263764241883368 0.00020022800800551421 0.0008730154826593452 5.355844910843896e-07 1.7141618917454664 0.0010516176891045917 1.1329613638420024 0.0012366249011729427']
['59866.350886538945 2.8407698334044964 0.0006501566113226426 0.3255045973156259 0.00020010627704495655 0.0008706834565028362 5.352588762255648e-07 1.709582969094674 0.0010509783458243517 1.1311868643098224 0.0012358232489471268']
['59866.35091807691 2.8473887035397247 0.0006506977912881976 0.3264675091712902 0.0002002473383851379 0.0008732591234203279 5.356361973947922e-07 1.7146402792609778 0.0010517192142076573 1.132748424278747 0.0012367380163643838']
['59866.350949614876 2.8468483601183747 0.0006507001840912298 0.326169080669958 0.00020019975187526162 0.0008724608650817309 5.355089095246862e-07 1.7130729026783509 0.001051469285059147 1.1337754574400238 0.0012365267433416692']
['59866.350981152835 2.8412234215429315 0.0006502123089395551 0.3254237986228746 0.00020007124183785081 0.0008704673302617147 5.351651614962686e-07 1.709158606212577 0.0010507943373836703 1.1320648153303545 0.0012356960735448238']
['59866.3510126908 2.840608788426098 0.0006501735264874181 0.32507665498885563 0.00020000903891068404 0.0008695387651303364 5.349987765662958e-07 1.7073353728406284 0.0010504676413376263 1.1332734155854698 0.0012353978630556721']
['59866.35104422876 2.846515379288607 0.0006506586795922381 0.3265206795578015 0.0002002581062545257 0.0008734013474512419 5.356650000778112e-07 1.714919535492655 0.0010517757681435173 1.131595843795952 0.0012367655330670405']
['59866.351075766725 2.8413484731257412 0.0006502067668956483 0.3255722662183227 0.00020010946691707357 0.0008708644622231353 5.352674087283422e-07 1.7099383729953923 0.0010509950993543781 1.131410100130349 0.0012358638835178457']
['59866.35110730469 2.8475962076815007 0.0006506709271604016 0.3265010377963139 0.0002002426194393973 0.0008733488082339011 5.356235748142746e-07 1.7148163749806404 0.0010516944298287673 1.1327798327008602 0.001236702805521453']
['59866.35113884265 2.8406607717221517 0.000650174343363057 0.3254124448393571 0.00020005237385901597 0.0008704369603328137 5.351146920492481e-07 1.7090989749966237 0.0010506952408561765 1.131561796725528 0.0012355918282043635']
['59866.351170380614 2.845687295556354 0.000650591770559345 0.326249814546902 0.00020020316792212248 0.0008726768179488 5.355180470161776e-07 1.7134969251412921 0.0010514872264817357 1.1321903704150618 0.001236484953153008']
['59866.35120191857 2.8467606459830357 0.0006506063571242185 0.32647987271305473 0.00020026300208342022 0.0008732921943242935 5.356780957983002e-07 1.7147052138290693 0.0010518014815305685 1.1320554321539664 0.001236759875028433']
['59866.35123345654 2.846577261060232 0.0006505775214819738 0.3267226229667851 0.00020027673655978448 0.000873941520422075 5.357148337782019e-07 1.7159801626406783 0.0010518736163854228 1.1305970984195537 0.0012368060544423994']
['59866.351264994504 2.8438052754195082 0.0006504058517809562 0.32569328145055587 0.00020012167595193369 0.0008711881625995945 5.353000663459618e-07 1.7105739571982979 0.0010510592224366266 1.1332313182212104 0.0012360231636583505']
['59866.35129653246 2.8415076519210176 0.0006501695536801184 0.32556255371591325 0.00020009569583740873 0.0008708384825127445 5.352305728392603e-07 1.709887361953326 0.001050922772255298 1.1316202899676917 0.0012357827971684044']
['59866.35132807043 2.8459652451782533 0.0006505828896326254 0.3264363801262725 0.00020023359482053342 0.0008731758571785079 5.355994351050022e-07 1.7144767863774817 0.0010516470316204488 1.1314884588007716 0.0012366161794990548']
['59866.351359608394 2.8426853094994105 0.000650339520788621 0.3257983211878271 0.00020013769013513057 0.0008714691305560279 5.353429022521024e-07 1.7111256364906886 0.0010511433305416523 1.1315596730087218 0.001236059785625991']
['59866.35139114635 2.8435733276797697 0.0006503942744828368 0.326077983956759 0.00020017725288120185 0.000872217192943831 5.35448727573103e-07 1.7125944535544069 0.0010513511180735393 1.1309788741253628 0.001236265297480495']
['59866.35142268432 2.8469382509377326 0.0006506484886948191 0.3265701919125783 0.0002002668617724075 0.0008735337867118613 5.356884199761343e-07 1.7151795793727853 0.001051821753006342 1.1317586715649472 0.0012367992787587591']
['59866.35145422228 2.840446220687169 0.0006501357234670052 0.32547827146431757 0.00020011002413467688 0.0008706130381941501 5.352688992146605e-07 1.709444703068895 0.0010509980259174206 1.131001517618274 0.0012358289968317953']
['59866.35148576024 2.847519079055729 0.0006507584541936486 0.3262798750484436 0.000200206060933077 0.0008727572259725338 5.355257854530487e-07 1.7136548059266996 0.0010515024208670011 1.1338642731290296 0.0012365855840958486']
['59866.35151729821 2.841729122964946 0.0006502639501695459 0.32544670073231324 0.0002000928205834011 0.000870528590495738 5.352228818999669e-07 1.709278890400805 0.0010509076711313083 1.1324502325641412 0.001235819622005061']
['59866.351548836166 2.840860253149885 0.0006501833242565201 0.3250066688568238 0.00019997445348751662 0.00086935156111587 5.349062649519089e-07 1.706967798617772 0.0010502859952075453 1.1338924545321132 0.0012352485688598724']
['59866.35158037413 2.840435317730865 0.0006501427526068717 0.32524340390926954 0.00020003862633803573 0.000869984797314187 5.350779191766554e-07 1.7082111549856593 0.0010506230374896835 1.1322241627452057 0.0012355138063458817']
['59866.3516119121 2.84384105444815 0.0006504357039292694 0.3256911475048126 0.00020010815397030835 0.000871182454565757 5.352638967624984e-07 1.7105627495000661 0.001050988203625569 1.1332783049480837 0.0012359784824607849']
['59866.351643450056 2.8414722334710065 0.0006501988416482386 0.32566010981466387 0.0002001346076715335 0.0008710994326866087 5.353346570534743e-07 1.7103997364215542 0.0010511271411320039 1.1310724970494523 0.0012359720063597924']
['59866.35167498802 2.847423094722835 0.0006506684774023936 0.3262232983216429 0.00020018898620573718 0.0008726058904139743 5.354801127260223e-07 1.713357659252326 0.0010514127426771913 1.1340654354705089 0.0012364619779633836']
['59866.35170652598 2.8469682900081734 0.000650700516958166 0.326610246482159 0.0002002624655301231 0.0008736409275982845 5.356766605863764e-07 1.7153899500113394 0.0010517986634985457 1.131578339996834 0.0012368070145770322']
['59866.351738063946 2.8418289133278885 0.0006502691671854866 0.32575406473718743 0.00020012505475243582 0.0008713507501714396 5.353091042081742e-07 1.7108931971490937 0.0010510769682375832 1.1309357161787947 0.0012359663356870266']
['59866.35176960191 2.843254005028226 0.0006503696076790158 0.3259727048026411 0.00020017995130484884 0.0008719355845777403 5.354559455136403e-07 1.7120415168205942 0.0010513652904666432 1.1312124882076315 0.0012362643732594441']
['59866.35180113987 2.8410404929873736 0.0006501595773411325 0.3252786828663323 0.00020004239006079792 0.0008700791640436604 5.350879866570256e-07 1.708396443625695 0.0010506428049411654 1.1326440493616785 0.001235539469051086']
['59866.351832677836 2.844913904978391 0.0006505388340078523 0.3261122927436553 0.00020019934809748386 0.0008723089645913273 5.355078294704133e-07 1.7127746467628955 0.0010514671643775415 1.1321392582154954 0.001236440039919625']
['59866.3518642158 2.842985202740454 0.0006503520789805983 0.32590173506539066 0.0002001548365960413 0.0008717457495442388 5.353887668573204e-07 1.7116687766039427 0.00105123338548341 1.1313164261365112 0.0012361429761112985']
['59866.35189575376 2.8432243768539887 0.0006502958643348531 0.32597360170007383 0.0002001606890146246 0.0008719379836644607 5.354044213337335e-07 1.7120462274163541 0.0010512641229759696 1.1311781494376345 0.001236139542053181']
['59866.351927291726 2.841015679752746 0.000650216280798608 0.32521326317114563 0.0002000561637452033 0.000869904174667786 5.351248295134576e-07 1.7080528527896304 0.0010507151457206057 1.1329628269631158 0.0012356308223989267']
['59866.351958829684 2.846029335902858 0.0006505808610921782 0.3262138757674809 0.000200208076578929 0.0008725806862783201 5.35531177049702e-07 1.713308171047694 0.001051513007242274 1.132721164855164 0.0012365011367641886']
['59866.35199036765 2.846638802027014 0.0006506599121331645 0.32646458361396596 0.000200277716449356 0.0008732512979260515 5.357174548583531e-07 1.714624913938897 0.0010518787628642648 1.1320138880881172 0.001236853771883319']
['59866.352021905615 2.8396802027104737 0.0006500523655651639 0.32540199140556486 0.00020009465336710892 0.0008704089987250773 5.352277843636092e-07 1.709044072508219 0.0010509172970961603 1.1306361302022547 0.001235716489860342']
['59866.352053443574 2.8463055590370168 0.0006506236204908406 0.3264129366411642 0.0002002518703446514 0.0008731131488333266 5.356483198109008e-07 1.7143536588296442 0.0010517430165160263 1.1319519002073726 0.0012367192358538133']
['59866.35208498154 2.844830416982936 0.000650486280139439 0.32604933412209136 0.00020017848078184898 0.0008721405582748206 5.354520120513822e-07 1.7124439817336732 0.0010513575671315598 1.132386435249263 0.0012363191879989717']
['59866.352116519505 2.8398547492058954 0.0006500826532298638 0.32514478154663007 0.00020002810278803995 0.0008697209950198429 5.350497700169797e-07 1.7076931803919648 0.0010505677667439074 1.1321615688139306 0.0012354351818495619']
['59866.35214805746 2.843407658309739 0.000650441206218577 0.3257416287413866 0.00020014120083052355 0.0008713174854621293 5.353522929163962e-07 1.710827882045098 0.001051161769067876 1.1325797762646412 0.00123612896879613']
['59866.35217959543 2.846980186644645 0.0006506620186878288 0.32645000757557663 0.00020024654600017704 0.0008732123088746169 5.356340778656602e-07 1.7145483591154236 0.0010517150525219383 1.1324318275292213 0.0012367156561894671']
['59866.35221113339 2.8465820719592987 0.0006506407384421889 0.32600113913557194 0.00020019110215195522 0.000872011642806975 5.354857726134158e-07 1.7121908568044746 0.001051423855840101 1.134391215154824 0.0012364568310904598']
['59866.35224267135 2.8418505982039433 0.0006502691713911169 0.32542739568758483 0.00020005672199443204 0.0008704769519529625 5.35126322759243e-07 1.709177498359164 0.001050718077701849 1.1326730998447792 0.001235661148564265']
['59866.35227420932 2.8430201222380393 0.0006503353005230956 0.32580663916541824 0.00020012248839090018 0.0008714913800896441 5.353022395170119e-07 1.711169323347785 0.0010510634894480054 1.1318507988902544 0.0012359896690333147']
['59866.35230574728 2.8406197809324034 0.0006501604994484554 0.32545944617121464 0.0002000899617924431 0.0008705626829260411 5.352152349972403e-07 1.7093458307311695 0.0010508926564729156 1.131273950201234 0.001235752422806351']
['59866.35233728524 2.840892959354605 0.000650183391049146 0.32531567791630595 0.00020007347932104528 0.0008701781211037148 5.35171146479638e-07 1.7085907453587499 0.0010508060888710362 1.132302213995855 0.0012356908506599095']
['59866.35236882321 2.840358429189928 0.0006501220073977152 0.3254124680712003 0.00020009369405158303 0.0008704370224750436 5.352252183164171e-07 1.7090990970126065 0.0010509122586742808 1.1312593321773217 0.0012357488417695213']
['59866.35240036117 2.8463770868977614 0.0006505518797534168 0.326639948922575 0.00020028690656217444 0.0008737203778539836 5.35742037242935e-07 1.7155459502236081 0.0010519270302635213 1.1308311366741532 0.001236837994746982']
['59866.35243189913 2.841179824761128 0.0006501899737539173 0.3255453659707892 0.0002001215649699105 0.0008707925074774992 5.352997694831453e-07 1.7097970901827164 0.0010510586395478493 1.1313827345784118 0.0012359090847381515']
['59866.35246343709 2.8424180264599417 0.0006503323082046839 0.3253467378766425 0.0002000658787998253 0.000870261202552787 5.35150816050693e-07 1.7087538754025342 0.00105076617016715 1.1336641510574075 0.0012357352691667305']
['59866.35249497506 2.8404171490365555 0.0006501382545866556 0.32522594589076825 0.00020003757591655186 0.0008699380993319842 5.350751094325968e-07 1.7081194637120183 0.0010506175205701254 1.1322976853245372 0.0012355067481021303']
['59866.35252651302 2.840405938261398 0.0006501587948682914 0.32545339024005104 0.00020008035207691967 0.0008705464840793232 5.351895302287149e-07 1.709314024370016 0.0010508421852779394 1.131091913891382 0.0012357086051753075']
['59866.35255805098 2.845541142324225 0.0006505586685445554 0.32633133476623427 0.00020023476289056057 0.0008728948741818869 5.356025595439718e-07 1.7139250775537516 0.0010516531664420197 1.1316160647704736 0.0012366086542257382']
['59866.35258958895 2.844685530553787 0.0006505513444298507 0.3259520504079912 0.00020018050366007724 0.0008718803366953015 5.354574229937234e-07 1.7119330378570967 0.0010513681914920024 1.13275249269669 0.0012363624572999013']
['59866.35262112691 2.846950748993117 0.0006506933405205259 0.3261926635178355 0.0002002194786388249 0.0008725239462046198 5.355616761117838e-07 1.713196762173506 0.001051572892010635 1.133753986819611 0.001236611244736749']
['59866.35265266487 2.8420471751497605 0.0006502677773440804 0.325865485055328 0.0002001259152492456 0.000871648785371321 5.353114059278514e-07 1.7114783878956301 0.001051081487653601 1.1305687872541303 0.001235969447818237']
['59866.35268420284 2.8418470854399844 0.0006502877373582453 0.3254827355606359 0.0002000834101294931 0.0008706249790848308 5.351977101309551e-07 1.7094681489529198 0.0010508582464784301 1.1323789364870647 0.0012357901098286178']
['59866.352715740795 2.843787311203922 0.0006504371129283475 0.32584790540104674 0.00020016733990323195 0.0008716017620288553 5.354222116160497e-07 1.7113860577786069 0.0010512990541136134 1.1324012534253152 0.001236243559762696']
['59866.35274727876 2.846766494784792 0.000650645954887938 0.32650932349003514 0.00020023608866176 0.0008733709714122655 5.356061058135483e-07 1.7148598922795966 0.0010516601295260505 1.1319066025051954 0.0012366604977303941']
['59866.35277881673 2.8462533814904494 0.0006506142592864448 0.3260267679193119 0.00020017456873661538 0.000872080196548448 5.354415478272389e-07 1.712325461761092 0.0010513370206755009 1.1339279197293575 0.00123636905713047']
['59866.352810354685 2.8458714893466386 0.0006505535797128727 0.3261680935906995 0.00020019449622866886 0.0008724582247700802 5.354948513375538e-07 1.7130677184385477 0.001051441681873261 1.132803770908091 0.001236426128184658']
['59866.35284189265 2.839847779264864 0.0006500858512125175 0.32527375309600487 0.0002000592605416864 0.0008700659775341492 5.351331130507355e-07 1.7083705519748156 0.0010507314104080169 1.1314772272900484 0.0012355760238709408']
['59866.35287343062 2.842226877712601 0.0006502835328604797 0.32545360940419615 0.00020006872134143764 0.0008705470703155761 5.351584194884836e-07 1.709315175442207 0.0010507810994823405 1.132911702270394 0.001235722295719723']
['59866.352904968575 2.8440180434575555 0.000650473241849955 0.3258836224363736 0.00020012077862286342 0.0008716973005620462 5.352976661046658e-07 1.7115736472498615 0.0010510545095738625 1.132444396207694 0.0012360546187197162']
['59866.35293650654 2.847217914061006 0.000650658449437731 0.32658073294017204 0.0002002619397795345 0.0008735619826218916 5.356752542703258e-07 1.7152349419126685 0.0010517959022034375 1.1319829721483377 0.0012367825345292742']
['59866.3529680445 2.847734232938836 0.0006507577211075322 0.32641817272416024 0.0002002249488008883 0.0008731271546903225 5.355763081005552e-07 1.7143811592655476 0.001051601621853405 1.1333530736732886 0.0012366695527366155']
['59866.352999582465 2.84690108298345 0.0006506479115755524 0.32651163780063586 0.00020026056894041337 0.000873377161899189 5.356715874497828e-07 1.7148720472722472 0.0010517887024181377 1.1320290357112026 0.0012367708677730317']
['59866.35303112043 2.8471008871621835 0.0006506442811288487 0.3268100833763705 0.00020031763332191784 0.0008741754659096441 5.358242274227393e-07 1.716439513531358 0.0010520884103041904 1.1306613736308255 0.00123702384926972']
['59866.35306265839 2.846743559145361 0.000650662478825347 0.32636430094230584 0.00020022473620580046 0.0008729830545159478 5.355757394356964e-07 1.7140982192347998 0.0010516005052825655 1.1326453399105614 0.0012366184876758442']
['59866.353094196355 2.8416521262384995 0.000650251249056052 0.3255533997209848 0.00020010989657112243 0.000870813996738931 5.352685579983539e-07 1.7098392842488699 0.0010509973559407692 1.1318128419896296 0.001235889205832563']
['59866.35312573432 2.8406678483883385 0.0006501846798216672 0.32516049629258437 0.00020003466114332607 0.0008697630299693901 5.35067312784414e-07 1.707775715822397 0.0010506022118872168 1.1328921325659416 0.001235518160731406']
['59866.35315727228 2.846451748652833 0.0006506176444163853 0.3266748095437478 0.00020028367779126825 0.0008738136255880828 5.35733400690837e-07 1.7157290417213644 0.0010519100724331316 1.1307227069314687 0.0012368581647514004']
['59866.353188810244 2.8426851110790134 0.0006503304493355183 0.3256790100600562 0.00020013771817172353 0.0008711499884425724 5.353429772464277e-07 1.7104990024162616 0.0010511434777926657 1.1321861086627518 0.0012360551380254027']
['59866.3532203482 2.841550893376167 0.0006502557980410584 0.3252552317114564 0.0002000752231432621 0.0008700164351828249 5.351758109825907e-07 1.7082732757954646 0.0010508152476011666 1.1332776175807024 0.0012357367387421621']
['59866.35325188617 2.8430374703103354 0.000650329645245266 0.32590467368092313 0.00020017590175650652 0.0008717536099675638 5.35445113486145e-07 1.7116842105090502 0.0010513440218303913 1.1313532598012852 0.0012362252625324139']
['59866.353283424134 2.847166696101816 0.0006506624626226364 0.3267087334345436 0.00020027933187852953 0.0008739043676873949 5.357217759262216e-07 1.7159072134167206 0.0010518872472611844 1.1312594826850952 0.0012368623291283739']
['59866.35331496209 2.843683462880095 0.0006504499578605347 0.3255714647364961 0.00020010035007916646 0.000870862318361043 5.352430223448416e-07 1.7099341635320175 0.001050947216802345 1.1337492993480776 0.0012359511317950101']
['59866.35334650006 2.840461389357249 0.0006501681618943165 0.3252191297077568 0.00020005129878164434 0.0008699198669081305 5.351118163538212e-07 1.7080836644314958 0.0010506895944414096 1.1323777249257532 0.0012355837740147318']
['59866.353378038024 2.846250050111912 0.0006505980449361808 0.326460642875187 0.00020025882151115945 0.0008732407569503187 5.356669132984641e-07 1.7146042167814446 0.0010517795247434846 1.1316458333304673 0.0012367368292180885']
['59866.35340957598 2.846533349176732 0.0006506563435161219 0.32625767710702624 0.00020022956223185586 0.0008726978492985333 5.355886484424561e-07 1.7135382200999278 0.0010516258520580667 1.132995129076804 0.0012366368141352676']
['59866.35344111395 2.846604737442372 0.0006506597703059657 0.32647562583453493 0.00020025741438332335 0.0008732808344636357 5.356631494102174e-07 1.7146829087948263 0.0010517721343661942 1.1319218286475459 0.0012367630166381237']
['59866.35347265191 2.839369159507518 0.0006500661659379381 0.32521955451587714 0.0002000503108575041 0.0008699210032158989 5.351091737822191e-07 1.7080858955665816 0.0010506844057642023 1.1312832639409363 0.0012355256940320286']
['59866.35350418987 2.841534095382909 0.0006502402819972563 0.3255619235555417 0.00020010741285208527 0.0008708367969137852 5.352619143653788e-07 1.709884052287509 0.0010509843111979268 1.1316500430954 0.0012358723424027468']
['59866.35353572784 2.84365260360211 0.000650418471736774 0.32559484730709415 0.00020010003248081837 0.0008709248637676458 5.352421728095976e-07 1.7100569711507045 0.001050945548743794 1.1335956324514056 0.001235933143337776']
['59866.353567265796 2.8418333130577853 0.0006502751874968212 0.3255735305181273 0.00020011632170498589 0.000870867844064538 5.352857444154026e-07 1.7099450132254588 0.0010510311013917327 1.1318882998323265 0.0012359304978706305']
['59866.35359880376 2.842940005498442 0.0006503107365821462 0.3258362028529959 0.00020015875706016673 0.0008715704591991233 5.353992536009301e-07 1.7113245948161553 0.0010512539761563379 1.1316154106822869 0.001236138736751876']
['59866.35363034173 2.8461590681635336 0.000650628105358948 0.326200607763 0.00020019172981742184 0.0008725451960514612 5.354874515388212e-07 1.7132384861502101 0.0010514271524024257 1.1329205820133235 0.0012364529866889594']
['59866.353661879686 2.8395647274340856 0.0006500962681197369 0.3250792694186874 0.00020001304765161244 0.000869545758398086 5.350094994391417e-07 1.707349104089745 0.001050488695649225 1.1322156233443406 0.0012353751080178114']
['59866.35369341765 2.8416342302878013 0.0006502001133836157 0.32556488835091263 0.00020009735977288988 0.0008708447273648532 5.352350236553412e-07 1.7098996236917683 0.001050931511412237 1.131734606596033 0.0012358063072841455']
['59866.35372495561 2.841487275302695 0.00065024920955007 0.32550803927451466 0.00020011488966279562 0.0008706926633057112 5.352819138844228e-07 1.709601046609846 0.0010510235801617419 1.1318862286928493 0.0012359104338812324']
['59866.353756493576 2.845727212984226 0.0006505845823631037 0.32629357671787307 0.0002002140142621181 0.0008727938761980517 5.355470595981064e-07 1.713726768476224 0.0010515441925531414 1.1320004445080019 0.0012365296145668376']
['59866.35378803154 2.84016413215283 0.0006500959905073132 0.3253739600407754 0.00020007030384470954 0.0008703340183844411 5.351626524837472e-07 1.7088968489536525 0.001050789410949105 1.1312672831991777 0.0012356306822980932']
['59866.3538195695 2.8461954000725846 0.0006505969957426285 0.3263481709338142 0.00020021875212911097 0.0008729399087918544 5.355597327905707e-07 1.714013502803646 0.0010515690763083561 1.1321818972689386 0.0012365573068472578']
['59866.353851107466 2.8458620140886373 0.000650517463435621 0.32659072499079345 0.0002002659051102665 0.0008735887100882449 5.356858610264097e-07 1.7152874211701337 0.0010518167285203074 1.1305745929185036 0.0012367260814868733']
['59866.35388264543 2.841218277915144 0.0006502121875065175 0.32526227651117434 0.00020005035035643165 0.0008700352791273325 5.351092794368337e-07 1.708310275793983 0.001050684613216553 1.1329080021211608 0.0012356027052544147']
['59866.35391418339 2.8430598277765906 0.0006503679534016134 0.3257038069555267 0.00020012325803731696 0.0008712163169885802 5.353042982234263e-07 1.7106292382118 0.0010510675317085974 1.1324305895647906 0.0012360102875881764']
['59866.353945721356 2.8499137876855665 0.0006511686461193154 0.3296475024128441 0.00020183749129056198 0.0008817652014605317 5.398896544564759e-07 1.7313419244372066 0.001060070857618498 1.1185718632483599 0.0012440943810100903']
['59866.353977259314 2.841264110241866 0.0006502447754077376 0.32530641673641447 0.00020006941054099707 0.0008701533486237384 5.35160263009772e-07 1.7085421047080593 0.0010507847192279258 1.1327220055338068 0.0012357049785883239']
['59866.35400879728 2.844720455105819 0.0006504742269681634 0.3260426477874441 0.00020019084641773654 0.0008721226731788494 5.354850885568609e-07 1.7124088644298534 0.0010514225126981962 1.1323115906759655 0.0012363680763261473']
['59866.354040335245 2.845587028718726 0.0006505392309593752 0.3259534569060533 0.00020013610473694078 0.0008718840988989828 5.353386615133012e-07 1.7119404249267507 0.0010511350038704874 1.1336466037919755 0.0012361577922656254']
['59866.354071873204 2.838432231699574 0.0006499676384284169 0.32499942751937594 0.0002000092426145698 0.0008693321914578965 5.349993214483185e-07 1.706929766383277 0.0010504687112109761 1.1315024653162968 0.0012352904291046145']
['59866.35410341117 2.8402914444996163 0.0006501012170292989 0.3257038804053749 0.00020014180093946038 0.0008712165134575955 5.353538981315843e-07 1.7106296239778096 0.0010511649209005273 1.1296618205218067 0.0012359527836105987']
['59866.354134949135 2.845641223355649 0.0006505463419922653 0.3258830775321947 0.00020014977783587028 0.0008716958430125743 5.353752353163602e-07 1.7115707853581656 0.0010512068163648649 1.1340704379974835 0.00123622259882736']
['59866.35416648709 2.844668949137913 0.0006504170641897993 0.3264051460339585 0.00020024303061592187 0.0008730923099485119 5.356246746592555e-07 1.7143127417749922 0.0010516965893693376 1.130356207362921 0.0012365710951984827']
['59866.35419802506 2.841512413503975 0.0006501776736284292 0.32575519684196375 0.0002001264953214044 0.0008713537784079313 5.353129575472031e-07 1.7108991430775409 0.0010510845342510738 1.130613270426434 0.0012359246358199488']
['59866.35422956302 2.8448451919163134 0.0006504462433426752 0.32645970345093733 0.00020023505832164121 0.0008732382441097641 5.356033497845908e-07 1.7145992828305534 0.0010516547180758468 1.13024590908576 0.001236550832570092']
['59866.35426110098 2.845071931132897 0.0006504818809786424 0.3261974345912278 0.00020020478256938887 0.0008725367082199852 5.35522365992544e-07 1.713221820332079 0.0010514957067720005 1.1318501108008179 0.0012364343487793687']
['59866.35429263895 2.843893530552693 0.0006503754733356197 0.32601348137593605 0.00020017143741719032 0.0008720446567323998 5.354331719454759e-07 1.7122556794954626 0.0010513205746701172 1.1316378510572302 0.001236229431392586']
['59866.35432417691 2.841704287414461 0.000650233052941638 0.32537447127443064 0.00020005226801059558 0.0008703353858695387 5.35114408918167e-07 1.708899534004363 0.0010506946849295987 1.1328047534100982 0.0012356222497499434']
['59866.35435571487 2.84466289975728 0.0006504544462324052 0.32612914575677165 0.00020018677864605604 0.0008723540442609653 5.354742077842504e-07 1.7128631604872462 0.0010514011483511345 1.1317997392700336 0.0012363395008562936']
['59866.35438725284 2.840209745666101 0.0006501580972605173 0.3249974579043109 0.00019999752421041562 0.0008693269229877522 5.349679762055237e-07 1.7069194217663388 0.0010504071649706703 1.1332903238997623 0.001235338319512164']
['59866.3544187908 2.8440742648170634 0.0006504041009263602 0.32599146025865056 0.00020014989403099808 0.000871985753040494 5.353755461235695e-07 1.7121400223668624 0.0010512074266333935 1.131934242450201 0.0012361482711677545']
['59866.35445032876 2.841290561381197 0.0006501610465380346 0.32577661469867764 0.00020013644880494027 0.0008714110684544262 5.353395818515007e-07 1.711011631820786 0.0010511368109503165 1.130278929560411 0.0012359603479765173']
['59866.35448186672 2.8414454249130063 0.0006502249646912634 0.32515804599920944 0.00020002093148521405 0.0008697564757458163 5.350305876927251e-07 1.7077628466345034 0.0010505301023383093 1.133682578278503 0.0012354780453843336']
['59866.35451340469 2.837283976708132 0.0006498432618021272 0.32483272223234977 0.00019996803110542777 0.0008688862759878164 5.348890858955079e-07 1.7060542134051984 0.0010502522642091795 1.1312297633029336 0.00123504092376979']
['59866.35454494265 2.8385709498703386 0.0006499689551870085 0.3248695099320641 0.00019998571380851917 0.0008689846784122621 5.349363848804527e-07 1.706247426113782 0.0010503451355489454 1.1323235237565565 0.0012351860371936788']
['59866.35457648061 2.8420231819509088 0.0006502339954926661 0.3257765888694595 0.00020015270577045008 0.0008714109993645481 5.353830671694934e-07 1.7110114961631278 0.001051222194172532 1.131011685787781 0.001236071337106103']
['59866.35460801858 2.8407428771218903 0.0006501345561803171 0.3253308818474546 0.0002000718646296601 0.0008702187896885339 5.351668273852595e-07 1.708670597938312 0.0010507976083490552 1.1320722791835782 0.0012356579441139333']
['59866.35463955654 2.844131892664034 0.0006504453511143577 0.32600635082448026 0.00020016661720544373 0.0008720255834128845 5.354202784912538e-07 1.7122182291201697 0.0010512952584319525 1.1319136635438645 0.0012362446663940702']
['59866.3546710945 2.8439144676866466 0.0006505413318256693 0.32494987828389604 0.0001999711176467955 0.0008691996535460806 5.348973420016546e-07 1.706669528801975 0.0010502684750356907 1.1372449388846715 0.0012354221521679587']
['59866.35470263247 2.839269605688016 0.0006500097428164246 0.32554175584557166 0.00020009323382358602 0.0008707828508510529 5.352239872649772e-07 1.7097781294410277 0.0010509098415104308 1.1294914762469883 0.0012356877278421735']
['59866.354734170425 2.842455410599422 0.0006502271938803703 0.32590715849583185 0.0002001563262079037 0.000871760256531856 5.353927513798614e-07 1.7116972610075203 0.0010512412090751245 1.130758149591902 0.0012360839305319321']
['59866.35476570839 2.8445984554574393 0.0006504266809260627 0.3260441024701744 0.0002001548209099813 0.0008721265642703984 5.353887248991021e-07 1.712416504570244 0.0010512333030986412 1.1321819508871953 0.0012361821568054499']
['59866.35479724636 2.8434858573444286 0.0006503436449337678 0.3259509802922439 0.00020015178668257648 0.0008718774742715896 5.353806087261619e-07 1.711927417501281 0.0010512173670303388 1.1315584398431475 0.0012361249165241902']
['59866.354828784315 2.838019539234578 0.000649857673427705 0.32527863396733053 0.000200053672893615 0.0008700790332450411 5.351181668018141e-07 1.7083961868032067 0.0010507020635168855 1.1296233524313712 0.0012354310268046173']
['59866.35486032228 2.8386542543540787 0.0006499007659782862 0.32514575561829345 0.000200039300097316 0.0008697236005378286 5.350797213971581e-07 1.7076982963145666 0.0010506265761413658 1.130955958039512 0.0012353894965207095']
['59866.35489186025 2.837549006959665 0.0006498585618998225 0.32501593341533974 0.00019998775996751852 0.0008693763426332377 5.349418580958998e-07 1.707016457013339 0.0010503558821823452 1.130532549946326 0.0012351370894396938']
['59866.354923398205 2.842856622871579 0.0006502319947057698 0.3262970066107677 0.00020021113607729038 0.000872803050725925 5.355393608192414e-07 1.7137447826195784 0.001051529076036189 1.1291118402520006 0.0012363312843605332']
['59866.35495493617 2.838535201895099 0.000649914339028936 0.32528564069935995 0.0002000605698978024 0.0008700977753633168 5.351366154120486e-07 1.7084329868663863 0.0010507382872783741 1.1301022150287128 0.0012354916415856928']
['59866.35498647413 2.8432540575530734 0.000650294991418113 0.32601637913616566 0.00020015055827772224 0.0008720524078729786 5.353773228991927e-07 1.7122708988243995 0.0010512109153241714 1.1309831587286738 0.0012360938331535214']
['59866.355018012095 2.8425166325650375 0.0006502337217026461 0.32591167149343636 0.0002001423805374476 0.0008717723282272665 5.353554484825871e-07 1.7117209637260313 0.001051167965007603 1.1307956688390062 0.0012360250739760496']
['59866.35504955006 2.8423702488541482 0.0006502281392914467 0.3259460954647667 0.00020015571964601464 0.0008718644079784947 5.353911289038457e-07 1.7119017618947834 0.0010512380233509172 1.1304684869593649 0.0012360817185223477']
['59866.35508108802 2.83784800682574 0.0006498530324178639 0.32525680614269475 0.00020005053146631907 0.0008700206465864239 5.351097638827804e-07 1.7082815448670945 0.0010506855644239449 1.1295664619586456 0.0012354145535129319']
['59866.355112625984 2.8393495466480605 0.0006499836460258004 0.32507494380206015 0.00020000890170891636 0.0008695341879229909 5.349984095689928e-07 1.7073263855150218 0.0010504669207401069 1.1320231611330387 0.0012352973292572905']
['59866.35514416395 2.84268415854904 0.0006502438861078841 0.3258299660792111 0.00020014362618665544 0.0008715537766213619 5.353587804360121e-07 1.711291838651319 0.0010511745072828542 1.131392319897721 0.001236035984986697']
['59866.35517570191 2.836602662434432 0.0006497502609359613 0.32509539586980074 0.00020000995167570513 0.0008695888946066441 5.350012180967998e-07 1.7074338018371888 0.0010504724352715605 1.129168860597243 0.00123517923349274']
['59866.355207239874 2.8422389668753656 0.0006501811087979406 0.3257403636461997 0.00020010650745395494 0.00087131410149318 5.35259492540372e-07 1.7108212376376035 0.0010509795559556457 1.131417729237762 0.0012358371661648818']
['59866.35523877783 2.8375111355279503 0.0006498110174728236 0.3250505395721598 0.00020002114732305522 0.0008694689097075121 5.350311650315373e-07 1.7071982120386544 0.0010505312359404162 1.130312923489296 0.0012352612015746162']
['59866.3552703158 2.8391095337824934 0.0006499303683714515 0.3253532884929229 0.00020004734267623693 0.0008702787246193639 5.351012342743089e-07 1.7087882798998053 0.0010506688165768747 1.1303212538826881 0.001235440992463218']
['59866.355301853764 2.838333191119114 0.0006498685181634454 0.32497532296844855 0.0001999822888961888 0.0008692677148456091 5.349272236749563e-07 1.7068031668510955 0.0010503271475640168 1.1315300242680184 0.001235117892271793']
['59866.35533339172 2.838488081628201 0.0006499112967537114 0.3253659295549569 0.00020007731297336015 0.0008703125378548034 5.351814010126801e-07 1.708854672032337 0.0010508262235995806 1.129633409595864 0.0012355648286725576']
['59866.35536492969 2.8402653022817734 0.0006500075021824312 0.3256116378170175 0.0002000873562136974 0.0008709697762491809 5.352082654050219e-07 1.710145156601983 0.0010508789717105958 1.1301201456797905 0.0012356602955816628']
['59866.355396467654 2.834705010418995 0.0006495556422253862 0.3247632478204303 0.00019995439337019386 0.0008687004407596587 5.34852606685843e-07 1.7056893267879745 0.0010501806374484971 1.1290156836310206 0.0012348286940375842']
['59866.35542800561 2.8401548350376897 0.0006500338686528708 0.3254848563680608 0.00020007885229289028 0.0008706306519753352 5.351855184969191e-07 1.709479287647378 0.0010508343082609784 1.1306755473903116 0.0012356361818165356']
['59866.35545954358 2.8393235104731307 0.0006500605920961941 0.32543494226012204 0.00020007008548207053 0.0008704971380760332 5.351620683914214e-07 1.7092171337191284 0.0010507882640865048 1.1301063767540023 0.0012356110833666007']
['59866.35549108154 2.837632859082169 0.000649774632742194 0.32534636283608914 0.00020006080990816905 0.0008702601993669396 5.351372574092964e-07 1.7087519056517289 0.0010507395478370222 1.1288809534304403 0.001235419228741403']
['59866.3555226195 2.8382268812980342 0.00064986509007676 0.32495336934655683 0.00019998279707577097 0.0008692089916953093 5.349285829907963e-07 1.7066878642151095 0.0010503298165744275 1.1315390170829247 0.0012351183582498262']
['59866.35555415747 2.840989867152423 0.0006500972299102109 0.3259321317247076 0.00020014301053844922 0.0008718270567473273 5.35357133655252e-07 1.7118284229238845 0.001051171273836393 1.1291614442285387 0.0012359560895419202']
['59866.355585695426 2.8405113006262934 0.0006500392308809242 0.3256579266216413 0.00020008539579692558 0.0008710935929225538 5.352030215391437e-07 1.7103882700716455 0.001050868675404021 1.130123030554648 0.0012356682299993252']
['59866.35561723339 2.839805007066003 0.0006499468378093198 0.3257585823748933 0.00020011417540218736 0.0008713628342785319 5.352800033280117e-07 1.710916924237885 0.001051019828793001 1.128888082828118 0.0012357481832859006']
['59866.35564877136 2.839844838389745 0.000649972953265182 0.32584503499391315 0.00020014179515485432 0.0008715940840543344 5.353538826584977e-07 1.7113709821108885 0.001051164890519193 1.1284738562788565 0.0012358852968768943']
['59866.355680309316 2.8347879442404924 0.0006496121501304961 0.324705368685283 0.00019995820024968876 0.0008685456214241868 5.348627896049921e-07 1.7053853397336294 0.0010502006315634914 1.129402604506863 0.001234875423730476']
['59866.35571184728 2.8368161704097536 0.0006497595276069011 0.3247378577290813 0.00019994087253180816 0.0008686325254900159 5.348164401604005e-07 1.7055559754678642 0.0010501096246418496 1.1312601949418895 0.001234875567610514']
['59866.35574338524 2.8374140543119015 0.0006497834769932992 0.32481627001707203 0.00019996807786588263 0.0008688422684014926 5.348892109737857e-07 1.7059678047115128 0.001050252509799804 1.1314462496003888 0.0012350096766075513']
['59866.355774923206 2.840717457750967 0.0006500707868669132 0.32584224975187737 0.0002001511574053206 0.0008715866338856335 5.35378925489425e-07 1.7113563537388519 0.0010512140620027343 1.1293611040121152 0.001235978572666232']
['59866.35580646117 2.835610203701016 0.0006496342139751486 0.32511245349225937 0.0002000390571800071 0.0008696345215802859 5.350790716242089e-07 1.7075233901904379 0.0010506253003151635 1.1280868135105782 0.001235248207296589']
['59866.35583799913 2.8352733507877788 0.000649637161702934 0.3249342442825967 0.00020000290734520834 0.0008691578345782303 5.349823754073992e-07 1.706587417450613 0.001050435437737439 1.1286859333371657 0.0012350882764888059']
['59866.355869537096 2.8341798730018697 0.0006495157083746759 0.32454318476038674 0.00019993582737939483 0.0008681118000235602 5.348029450184638e-07 1.7045335334053926 0.0010500831269926198 1.129646339596477 0.0012347247584057167']
['59866.35590107506 2.83405972223329 0.0006494701056643925 0.32465444204118343 0.00019993835664569234 0.0008684093991192536 5.348097104845755e-07 1.7051178678633585 0.0010500964109542666 1.1289418543699314 0.0012347120678323142']
['59866.35593261302 2.838856643195469 0.000649858998383032 0.3254180554571552 0.0002000524958594701 0.0008704519680228366 5.351150183849679e-07 1.7091284425270756 0.001050695881614864 1.1297282006683935 0.001235426466213928']
['59866.355964150986 2.834749867978347 0.0006495736895419194 0.3245285450219336 0.00019989765788773597 0.0008680726405825452 5.347008464760636e-07 1.7044566440227606 0.0010498826569734032 1.1302932239555863 0.0012345847769831906']
['59866.355995688944 2.839260921725287 0.0006498675631692265 0.3257119709519366 0.00020011116164176938 0.0008712381546420932 5.352719419016618e-07 1.7106721163442051 0.001051004000219377 1.128588805381082 0.0012356930274694605']
['59866.35602722691 2.834534245487842 0.0006495670177286204 0.32447003856944734 0.00019991822714457498 0.0008679161432528652 5.347558666256712e-07 1.7041493622344925 0.0010499906887845324 1.1303848832533496 0.0012346731377393253']
['59866.356058764875 2.8403041444298367 0.0006499883762735744 0.32563399135628246 0.0002000750773485573 0.0008710295691276618 5.351754210002722e-07 1.7102625596443408 0.001050814481872675 1.1300415847854959 0.0012355953887110845']
['59866.356090302834 2.8330731551740866 0.0006494259187975934 0.32462832522730384 0.00019992856223598215 0.0008683395399591401 5.34783511682558e-07 1.7049806997232344 0.001050044969726797 1.1280924554508522 0.0012346450754992903']
['59866.3561218408 2.832872985890381 0.0006493981283162091 0.3245297318733614 0.0001999071881421981 0.0008680758152593763 5.347263386963421e-07 1.704462877486142 0.0010499327108308724 1.128410108404239 0.0012345349838434147']
['59866.356153378765 2.834693534545016 0.0006495805742997162 0.32471368041736337 0.00019995900481921072 0.0008685678542518548 5.348649417262774e-07 1.7054289937886733 0.0010502048572437537 1.1292645407563426 0.001234862407187911']
['59866.35618491672 2.838346384828629 0.000649866160405635 0.32524267321256284 0.00020000363596774508 0.0008699828427933 5.349843243801448e-07 1.708207317292872 0.0010504392645364763 1.130139067535757 0.0012352119959425166']
['59866.35621645469 2.8388999169235083 0.0006498207578336443 0.32560564717357604 0.00020005289034828017 0.0008709537520388277 5.351160735924321e-07 1.7101136931385297 0.001050697953509875 1.1287862237849786 0.0012354081134675016']
['59866.35624799265 2.836176438346932 0.0006496605226915505 0.32484566130070947 0.0001999735461573085 0.0008689208863523281 5.349038379588394e-07 1.7061221706970036 0.0010502812298177969 1.1300542676499286 0.0012349694151886686']
['59866.35627953061 2.841172709974832 0.0006501389603450594 0.32554321265149333 0.00020005855369019282 0.0008707867476218691 5.351312223127652e-07 1.7097857807326333 0.0010507276979526935 1.1313869292421987 0.0012356008105385498']
['59866.35631106858 2.8388632221485253 0.0006498766535919121 0.3257069120412703 0.00020009813176660865 0.000871224622698577 5.352370886404904e-07 1.710645546435243 0.0010509355660010958 1.1282176757132822 0.0012356396031083924']
['59866.35634260654 2.833539090549791 0.0006494182871735366 0.32441960473669385 0.00019989707792304173 0.0008677812391556923 5.34699295144166e-07 1.7038844786591065 0.0010498796109403453 1.1296546118906843 0.0012345004289929028']
['59866.3563741445 2.837376978253716 0.0006497251616830931 0.32525292941699613 0.0002000162583500978 0.0008700102768375508 5.350180876498093e-07 1.7082611839127948 0.0010505055585614382 1.1291157943409214 0.0012351942010439495']
['59866.35640568247 2.8350128036471034 0.0006495328674254616 0.3247321890330488 0.0001999536598494768 0.0008686173624480922 5.34850644611087e-07 1.7055262029046683 0.0010501767849237227 1.1294866007424351 0.0012348134375113793']
['59866.35643722043 2.8310498368795045 0.0006492208866334003 0.3241472267573373 0.00019986178016160076 0.0008670526626547852 5.346048781153692e-07 1.702453922044839 0.0010496942235378192 1.1285959148346656 0.0012342389244265973']
['59866.35646875839 2.8376942000014234 0.0006497428073669099 0.32535104939644494 0.00020004699461927838 0.000870272735320666 5.351003032661504e-07 1.7087765199393117 0.0010506669885466302 1.1289176800621117 0.0012353407774969133']
['59866.35650029635 2.8366575479653005 0.0006496574843541514 0.32549550762837487 0.0002000546109820383 0.0008706591427438923 5.351206760692028e-07 1.7095352291406245 0.001050706990451882 1.127122318824676 0.0012353299262795408']
['59866.35653183432 2.836618581379087 0.0006496607549639469 0.3251271052250103 0.00019998718975103137 0.0008696737131045242 5.34940332839218e-07 1.7076003425683317 0.0010503528873478539 1.1290182388107555 0.0012350304791786716']
['59866.35656337228 2.835941728727609 0.0006496391101708694 0.325144594223117 0.00020001825057825256 0.0008697204939532368 5.350234166070967e-07 1.7076921965499843 0.001050516021944604 1.1282495321776247 0.0012351578384262939']
['59866.35659491024 2.830642961721737 0.0006491866996107862 0.3244743418104892 0.00019987785326497124 0.000867927653876111 5.346478716254909e-07 1.7041719632903845 0.0010497786410975382 1.1264709984313526 0.001234292739286811']
['59866.35662644821 2.83168634926641 0.000649293727697863 0.3240315364149041 0.00019980655994959206 0.0008667432056822434 5.344571710615916e-07 1.7018463047001269 0.0010494042014159246 1.129840044566283 0.0012340306004217161']
['59866.356657986165 2.8319900766769956 0.0006492997231653888 0.3245484429057797 0.00019991655577515578 0.0008681258648946658 5.347513959247503e-07 1.7045611497152298 0.0010499819105838015 1.1274289269617659 0.0012345250678118531']
['59866.35668952413 2.831457257424633 0.0006492485568741018 0.3242710142486289 0.0001998641156979289 0.0008673837784721297 5.346111253784178e-07 1.7031040664318746 0.0010497064900101309 1.1283531909927584 0.0012342639117192452']
['59866.3567210621 2.836532777130859 0.0006496810090421556 0.32518944573875747 0.00020000549328224283 0.000869840466061125 5.349892924605348e-07 1.7079277612329702 0.0010504490193395109 1.1286050158978886 0.00123512289094704']
['59866.356752600055 2.8313048720515797 0.0006492044337210256 0.3244917409866999 0.00019989329655208235 0.00086797419446266 5.346891804571097e-07 1.704263345518382 0.001049859750798752 1.1270415265331977 0.0012343710516332822']
['59866.35678413802 2.836017039553802 0.000649601760128485 0.3249409348439983 0.0001999774013487465 0.0008691757309802323 5.349141501063002e-07 1.7066225569537727 0.001050301477671988 1.1293944826000293 0.0012349557242111908']
['59866.35681567599 2.835739455189115 0.0006495200785222122 0.32514503853561394 0.00020001571298672852 0.0008697216824327354 5.350166288720614e-07 1.707694530124023 0.001050502694258028 1.1280449250650921 0.001235083901217596']
['59866.356847213945 2.8358592978440376 0.0006495963136977419 0.3250240439085257 0.0001999943000924113 0.0008693980371724219 5.349593520993473e-07 1.7070590541414166 0.0010503902315777906 1.128800243702621 0.0012350283435467139']
['59866.35687875191 2.8354337863522483 0.0006495342987109041 0.32510524699236976 0.00020000181763773776 0.0008696152451083562 5.349794605783158e-07 1.7074855409263119 0.001050429714483917 1.1279482454259364 0.0012350293074549403']
['59866.35691028987 2.8310905391469987 0.0006491673140309592 0.3243168260953745 0.0001998834921201525 0.0008675063193437554 5.346629548469274e-07 1.7033446748706644 0.001049808256933574 1.1277458642763343 0.0012343077322661796']
['59866.356941827835 2.8318903825844757 0.000649196326575862 0.32441718918450313 0.00019986527728246017 0.0008677747778603739 5.346142324695098e-07 1.7038717919354158 0.0010497125907692236 1.1280185906490598 0.0012342416269349487']
['59866.3569733658 2.83277241186591 0.0006493663449053112 0.3242937373416245 0.00019986020636906732 0.0008674445598599042 5.346006684202247e-07 1.7032234104076915 0.0010496859578207319 1.1295490014582186 0.0012343084136234796']
['59866.35700490376 2.836014006977514 0.0006495801443793553 0.3254132896564209 0.00020004969891776144 0.0008704392201111618 5.351075369211281e-07 1.7091034120610342 0.0010506811917949657 1.12691059491648 0.0012352673114608003']
['59866.357036441725 2.834883844646982 0.0006494954361136444 0.3250984455443509 0.00020000029682221496 0.0008695970520987363 5.349753925899462e-07 1.7074498190354566 0.0010504217270074316 1.1274340256115256 0.0012350020753430855']
['59866.35706797969 2.8290118517350153 0.0006490170208856362 0.3235980997740054 0.00019973620959177493 0.0008655838177172656 5.342689927894087e-07 1.6995698517542301 0.0010490347142425155 1.1294419999807852 0.0012335708026234822']
['59866.35709951765 2.8321579583070555 0.0006492754411621254 0.3246160721631085 0.00019991611246584806 0.0008683067645686408 5.347502101286555e-07 1.7049163453944776 0.001049979582278614 1.127241612912578 0.0012345103165620954']
['59866.357131055614 2.828557585357162 0.0006489674341581665 0.3240863901626967 0.0001998318066367797 0.0008668899324907863 5.345247027433162e-07 1.7021344021150038 0.0010495367995629187 1.126423183242158 0.0012339717274859293']
['59866.35716259357 2.827842943304444 0.0006489207049815643 0.3237530446177949 0.00019976709587909153 0.0008659982754953446 5.343516096852103e-07 1.7003836376985029 0.0010491969321380858 1.127459305605941 0.0012336580902996346']
['59866.35719413154 2.8307139249699875 0.0006491744695416168 0.32425776847696597 0.00019987661095273405 0.0008673483477152353 5.346445485980386e-07 1.703034498303393 0.0010497721163483932 1.1276794266665946 0.0012342807574321265']
['59866.357225669504 2.8355261788311603 0.0006495001934913512 0.32523801456864265 0.00019998915408967423 0.0008699703815124933 5.349455871956032e-07 1.7081828496252243 0.001050363204252491 1.127343329205936 0.0012349548016801516']
['59866.35725720746 2.8302178110051117 0.0006491077185332616 0.32389257047986064 0.00019977864098207873 0.000866371489455629 5.343824913693939e-07 1.701116441595907 0.0010492575681831868 1.1291013694092047 0.0012338080380063792']
['59866.35728874543 2.8346508634650514 0.0006494523669307601 0.3249179696585339 0.0001999686292307655 0.0008691143020258512 5.348906858048203e-07 1.706501941483897 0.0010502554056237685 1.1281489219811545 0.00123483796263069']
['59866.357320283394 2.8335176058803047 0.0006493801112320786 0.32461666579354087 0.00019990557063067973 0.0008683083524546523 5.347220120584656e-07 1.7049194632013704 0.0010499242154972676 1.1285981426789342 0.0012345182814164153']
['59866.35735182135 2.833521976400819 0.0006493411626348106 0.32497851302549347 0.00019996349043413747 0.0008692762478430451 5.348769401765027e-07 1.7068199213523818 0.00105022841614568 1.1267020550484372 0.0012347565231946706']
['59866.35738335932 2.8294633074560678 0.0006489695268656842 0.32430498115622974 0.00019986875159989562 0.0008674746356359317 5.346235258273874e-07 1.7032824640558286 0.001049730838234746 1.1261808434002392 0.0012341378689357573']
['59866.35741489728 2.834491552609181 0.0006494777417681687 0.3249500340092428 0.00019997081457725336 0.000869200070091605 5.348965313291213e-07 1.7066703466871997 0.0010502668832838937 1.1278212059219812 0.001234861070394214']
['59866.35744643524 2.829417554991167 0.0006490146865176063 0.3241922284956777 0.00019986116329154358 0.0008671730365893163 5.346032280663129e-07 1.702690275712593 0.0010496909836740734 1.126727279278574 0.0012341277180754797']
['59866.35747797321 2.8304585218308986 0.0006491024398035896 0.3240879380807993 0.00019982911458184602 0.0008668940729751144 5.34517501838278e-07 1.702142531936971 0.0010495226606189393 1.1283159898939277 0.0012340307097117276']
['59866.35750951117 2.8259222464177913 0.0006486639944905634 0.323547781043859 0.00019972594112125917 0.0008654492215049479 5.342415259349453e-07 1.6993055727093436 0.0010489807831998907 1.1266166737084478 0.0012333392320327404']
['59866.35754104913 2.8281724997845727 0.0006488889178480843 0.3242921802939006 0.00019987173391670883 0.0008674403949549986 5.346315031460882e-07 1.7032152326360328 0.0010497465016633869 1.12495726714854 0.0012341088061676641']
['59866.3575725871 2.8334998067080455 0.0006493175442969242 0.3249358239847685 0.00019995371992718362 0.0008691620600809068 5.348508053113225e-07 1.7065957142057169 0.0010501771004578972 1.1269040925023286 0.0012347004558426083']
['59866.357604125056 2.8323577317108226 0.0006492070295853814 0.3249415815811086 0.00019996335968637015 0.0008691774609198623 5.34876590442831e-07 1.7066259536822932 0.0010502277294452216 1.1257317780285294 0.0012346854056636209']
['59866.35763566302 2.833558093620793 0.0006493687834042929 0.3248765022453567 0.00019996879361665505 0.000869003381962248 5.348911255161966e-07 1.706284150448302 0.001050256268995037 1.127273943172491 0.0012347947389843169']
['59866.35766720098 2.8324819054640518 0.0006492129045450716 0.3250958740932881 0.00019997757472621565 0.0008695901737937352 5.349146138690101e-07 1.7074363135151687 0.0010503023882679394 1.125045591948883 0.0012347520002936564']
['59866.357698738946 2.829856938551462 0.0006489794709436341 0.3240829945461099 0.00019981583714839905 0.0008668808496476833 5.344819863901324e-07 1.702116567994275 0.001049452926199575 1.127740370557187 0.0012339067217643032']
['59866.35773027691 2.832741001408744 0.000649247933891055 0.3249096033323552 0.0001999436682030344 0.0008690919231659039 5.348239182258612e-07 1.7064580006951429 0.0010501243077890461 1.1262830007136013 0.0012346189458578816']
['59866.35776181487 2.833413496368191 0.0006493137540628077 0.32532086489971435 0.0002000197651997741 0.0008701919956255498 5.350274680272994e-07 1.7086179879186678 0.00105052397688957 1.1247955084495234 0.0012349935130335763']
['59866.357793352836 2.8324057959034343 0.0006492980346126589 0.32444643334894396 0.0001998888300788057 0.0008678530022860436 5.346772332083674e-07 1.7040253852360503 0.0010498362924307022 1.128380410667384 0.0012344003316009375']
['59866.3578248908 2.832804624169092 0.0006492536774630698 0.3249100745406735 0.00019994041796651382 0.0008690931835883087 5.34815224255971e-07 1.7064604755287474 0.0010501072372190853 1.1263441486403445 0.0012346074466644125']
['59866.35785642876 2.8313110718962626 0.0006491321642283409 0.3245631256669266 0.00019991331808092832 0.0008681651394159223 5.347427355039012e-07 1.7046382650573877 0.0010499649058872287 1.126672806838875 0.001234422484496514']
['59866.357887966726 2.830974937486542 0.0006490561051198974 0.32462105313760836 0.00019988855216686289 0.00086832008804281 5.346764898292171e-07 1.704942505974834 0.0010498348328091538 1.126032431511708 0.0012342718516489125']
['59866.357919504684 2.8249658814213126 0.0006486034314294317 0.3236937863043685 0.00019975607601643378 0.0008658397670331413 5.34322132952199e-07 1.7000724070607591 0.0010491390547081607 1.1248934743605534 0.001233442000004851']
['59866.35795104265 2.828032810068669 0.0006488871505358142 0.32384334882899646 0.00019977266566539094 0.0008662398277910545 5.343665081561602e-07 1.7008579245220403 0.0010492261852173895 1.1271748855466286 0.0012336653200428081']
['59866.357982580615 2.8317570440021678 0.0006491528969461284 0.3245322960526797 0.00019986785888941437 0.0008680826741133844 5.346211379402304e-07 1.7044763448144944 0.0010497261496292772 1.1272806991876734 0.001234230315957706']
['59866.358014118574 2.8260374389354603 0.000648727354110111 0.3234870700920399 0.0001997188978854585 0.0008652868274195391 5.342226861737177e-07 1.698986712668277 0.0010489437914152232 1.1270507262671834 0.001233341095366261']
['59866.35804565654 2.831252760879931 0.000649120843472666 0.32458511537496926 0.0001998779004584401 0.0008682239590920927 5.346479978620261e-07 1.7047537572214773 0.0010497788889623956 1.126499003658454 0.0012342583137827296']
['59866.358077194505 2.8269727492575023 0.000648722070535917 0.3237573674894513 0.0001997369365009527 0.000866009838627991 5.342709371791368e-07 1.7004063418563617 0.0010490385320428188 1.1265664074011406 0.0012334188933654938']
['59866.358108732464 2.8306400899554642 0.0006490410395180336 0.3245892090073599 0.0001998938298908214 0.0008682349090388182 5.34690607070499e-07 1.704775257391596 0.0010498625519475915 1.1258648325638683 0.0012342875066047453']
['59866.35814027043 2.8242224279217383 0.0006485170254430025 0.32392106462213205 0.00019978585341586568 0.0008664477076672535 5.344017837137454e-07 1.7012660957044752 0.00104929544861274 1.122956332217263 0.0012335295986594125']
['59866.35817180839 2.8260593130873444 0.0006487245310108108 0.3235616091883695 0.0001997112947736857 0.0008654862100352442 5.342023488153728e-07 1.6993781995187476 0.0010489038591054922 1.1266811135685968 0.0012333056485646981']
['59866.35820334635 2.8306549581666864 0.0006490017086221791 0.32483280683874177 0.00019991841901714598 0.0008688865022991694 5.347563798604295e-07 1.706054657766501 0.001049991696518624 1.1246003004001854 0.001234376676931546']
['59866.35823488432 2.823538524799192 0.0006484607499407133 0.32339244528502586 0.0001997201920410237 0.000865033718078776 5.34226147875488e-07 1.698489733639842 0.0010489505884507548 1.1250487911593503 0.0012332066660640693']
['59866.35826642228 2.830748713324968 0.0006490335065520971 0.32489041793147155 0.00019994153903025625 0.0008690406046552177 5.348182229590993e-07 1.7063572370350397 0.001050113125158909 1.124391476289928 0.0012344966862079141']
['59866.35829796024 2.827296162589608 0.0006494729033451064 0.3235772607258173 0.00019973562862182531 0.0008655280759100644 5.342674387685807e-07 1.6994604029717295 0.001049031662929755 1.1278357596178785 0.0012338081220387102']
['59866.35832949821 2.829551756324251 0.0006488969880029767 0.3247452559156963 0.00019991263924394245 0.0008686523146995905 5.347409197011809e-07 1.7055948314900018 0.0010499613405669246 1.1239569248342494 0.0012342957983094767']
['59866.35836103617 2.827067100237538 0.0006487590982005276 0.323809252770856 0.00019975656837147309 0.000866148625165962 5.343234499393966e-07 1.7006788485864286 0.0010491416406064762 1.1263882516511092 0.0012335260635886096']
['59866.35839257413 2.82850955465293 0.0006488667885211101 0.32407566700219514 0.00019979452293080924 0.0008668612493983596 5.344249735651315e-07 1.7020780829947226 0.0010493409817794602 1.1264314716582076 0.00123375224631511']
['59866.35842411209 2.8293557304077575 0.0006489272022857091 0.32484462667426395 0.0001999341372730083 0.000868918118857991 5.347984241985349e-07 1.7061167367345795 0.001050074250383447 1.123238993673178 0.0012344077305269585']
['59866.35845565006 2.8232511288529114 0.000648470268708399 0.323038451516672 0.00019965536007410917 0.0008640868297080659 5.340527305980962e-07 1.6966305226715968 0.0010486100844228424 1.1266206061813147 0.0012329220569654935']
['59866.35848718802 2.825382253308785 0.0006486183291167134 0.3236967150155654 0.00019972802355698702 0.0008658476009636265 5.342470961860337e-07 1.7000877889472974 0.0010489917203623268 1.1252944643614875 0.0012333245178195685']
['59866.35851872598 2.8223731167709034 0.0006483339780795749 0.32328267733698657 0.00019968614061291137 0.0008647401027590531 5.341350646300525e-07 1.6979132213077026 0.0010487717469165514 1.1244598954632008 0.0012329878848808215']
['59866.35855026395 2.8230396317890367 0.0006484109922682638 0.3231676774900636 0.00019965761451908593 0.0008644324927743035 5.34058760952079e-07 1.69730923051504 0.0010486219249951994 1.1257304012739968 0.0012329009516076107']
['59866.35858180191 2.824194165829553 0.0006485531657358426 0.32347754691120456 0.00019971493285973798 0.0008652613541203138 5.342120802335008e-07 1.698936695962209 0.0010489229667003045 1.125257469867344 0.001233231770129748']
['59866.35861333987 2.8230726823176977 0.0006484220839415816 0.32327819003629277 0.00019968276048456921 0.0008647280997996152 5.341260232160367e-07 1.6978896535519579 0.001048753994141645 1.1251830287657398 0.001233019115493023']
['59866.35864487784 2.828408715523501 0.000648830244611023 0.3243855328830142 0.00019985783216273142 0.0008676901012744584 5.345943177198166e-07 1.703705529847764 0.0010496734882496398 1.124703185675737 0.0012340158500830395']
['59866.358676415795 2.822443701863455 0.0006483178005304445 0.3233940583644915 0.000199675353298662 0.0008650380328614743 5.341062099344983e-07 1.6984982056958586 0.0010487150908543173 1.1239454961675965 0.0012329311871593694']
['59866.35870795376 2.8272064447759355 0.0006487145972873295 0.32407980540646786 0.0001998007400738733 0.0008668723191041834 5.344416036332081e-07 1.702099818311281 0.0010493736348417717 1.1251066264646545 0.001233699985504861']
['59866.35873949173 2.827777727838602 0.0006487524315362389 0.32424850951264306 0.00019983831235864907 0.0008673235811616234 5.345421047230454e-07 1.7029858692890918 0.0010495709682702158 1.1247918585495102 0.0012338877318702301']
['59866.358771029685 2.82761075369367 0.0006487673395832782 0.3241464762387125 0.00019981815683209618 0.0008670506551127848 5.344881912494065e-07 1.702449980245339 0.00104946510941227 1.125160773448331 0.001233805526322391']
['59866.35880256765 2.8226070525529234 0.0006483503481277548 0.32363061345057 0.00019975177461878396 0.000865670787672616 5.343106272597928e-07 1.6997406168622375 0.0010491164633339494 1.122866435690686 0.0012332897176072276']
['59866.35883410562 2.8207590270634695 0.0006482104468600749 0.32286070382824433 0.00019961630339524784 0.0008636113772166976 5.339482589426081e-07 1.695696973887838 0.001048404954806974 1.1250620531756315 0.0012326109413283459']
['59866.358865643575 2.8260606620423383 0.0006486360349183991 0.3240732783453091 0.00019980639181440364 0.0008668548600445652 5.344567213213169e-07 1.702065537527884 0.0010494033183529603 1.1239951245144544 0.0012336839264434254']
['59866.35889718154 2.826029640608761 0.000648587249324823 0.3240570766264375 0.00019978960039167485 0.0008668115225043131 5.344118063981432e-07 1.7019804444665836 0.001049315128107536 1.1240491961421772 0.001233583259477071']
['59866.3589287195 2.8212027225724365 0.0006482542306888728 0.3229147746371506 0.00019961399387676473 0.0008637560097631583 5.339420812739905e-07 1.6959809592287323 0.0010483928249830081 1.1252217633437043 0.0012326236502200802']
['59866.358960257465 2.823137178344227 0.0006483881826235456 0.32337958978956327 0.00019966900731818672 0.0008649993312611497 5.3408923524271e-07 1.6984222152813198 0.0010486817611249303 1.1247149630629072 0.0012329398490931948']
['59866.35899179543 2.8221658016075306 0.0006483362301214505 0.3231628540955497 0.00019967290311693494 0.000864419590806583 5.340996560095683e-07 1.6972838975606601 0.0010487022222528096 1.1248819040468705 0.0012329299324154944']
['59866.35902333339 2.827212364504151 0.0006487104279417185 0.3241730234821608 0.00019981864229250818 0.0008671216656173271 5.344894897943519e-07 1.7025894090449625 0.0010494676590993078 1.1246229554591887 0.0012337777704334392']
['59866.359054871355 2.825880018878594 0.0006486214806643092 0.3242885841780613 0.00019985068319203602 0.0008674307758018598 5.345751951311748e-07 1.703196345473011 0.001049635941134643 1.122683673405583 0.0012338741565089888']
['59866.35908640932 2.8256645770549453 0.000648559465545461 0.3242692614021164 0.0001998372633199037 0.0008673790898303323 5.345392986776366e-07 1.7030948603052334 0.0010495654586129396 1.122569716749712 0.0012337815982831014']
['59866.35911794728 2.826402321163715 0.0006486485894017479 0.3240205983750045 0.0001997935464166347 0.0008667139478147181 5.344223615137386e-07 1.7017888570115784 0.0010493358530285436 1.1246134641521366 0.0012336331403557618']
['59866.359149485244 2.8209752879855374 0.0006481990665322781 0.3232685648382424 0.00019967518216473142 0.0008647023536172966 5.341057521729692e-07 1.697839101041189 0.0010487141920416567 1.1231361869443484 0.0012328679923020557']
['59866.3591810232 2.819477960244825 0.0006480427227311497 0.32287429498324743 0.0001995973875570905 0.000863647731830161 5.338976614779785e-07 1.695768356004451 0.0010483056069174924 1.123709604240374 0.0012324382402292837']
['59866.35921256117 2.821163872921984 0.0006482434148356301 0.32289654799064826 0.00019960678162292002 0.0008637072557986736 5.339227894109616e-07 1.6958852310433208 0.0010483549454985296 1.125278641878663 0.0012325857441285713']
['59866.359244099134 2.820486716876589 0.0006481158033591147 0.32310969727930783 0.0001996341067730685 0.0008642774030744163 5.339958807171273e-07 1.6970047126014067 0.0010484984599425865 1.1234820042751823 0.0012326407080190912']
['59866.35927563709 2.819010445202397 0.0006480673009179755 0.32256181665563805 0.000199541857726931 0.0008628118919906967 5.337491262349712e-07 1.6941271883174267 0.0010480139586498479 1.1248832568849705 0.0012322031017831577']
['59866.35930717506 2.822573417050785 0.0006483006574347734 0.3232829727346239 0.00019966703010071242 0.0008647408929102155 5.340839464370864e-07 1.6979147727658819 0.001048671376579372 1.124658644284903 0.0012328849899675292']
['59866.359338713024 2.825163060587825 0.0006485154351096537 0.3237002006199571 0.00019972498681301997 0.0008658569245126786 5.342389732816092e-07 1.700106095693052 0.0010489757710767857 1.1250569648947728 0.0012332568418142267']
['59866.35937025098 2.8206666611106384 0.0006481273128549459 0.3231761231628415 0.00019965974903959089 0.0008644550838763261 5.34064470523331e-07 1.697353588040134 0.001048633135712137 1.1233130730705043 0.0012327613179289989']
['59866.35940178895 2.8178962517229316 0.0006478942432196578 0.32261099659213177 0.00019954470346442396 0.0008629434420746282 5.337567382213367e-07 1.6943854863032133 0.001048028904750126 1.1235107654197183 0.0012321248051999124']
['59866.35943332691 2.8192148620097153 0.0006480459383909406 0.32286049674620854 0.00019956905210867187 0.0008636108232985527 5.338218677522549e-07 1.6956958862721039 0.0010481567862850414 1.1235189757376114 0.0012323133476922095']
['59866.35946486487 2.8215071487701517 0.000648258082495638 0.32323223672152007 0.0001996749775013369 0.0008646051805189845 5.341052047243825e-07 1.6976483021088242 0.0010487131171288704 1.1238588466613275 0.0012328981075332515']
['59866.35949640284 2.8238077087757336 0.0006483758422766307 0.3237872136441299 0.00019976225507602167 0.0008660896733010899 5.343386611518137e-07 1.7005630968704302 0.0010491715077522148 1.1232446119053034 0.0012333499444711488']
['59866.3595279408 2.8205151382624347 0.0006481460888637745 0.3229544898012918 0.0001996039418147906 0.0008638622427831377 5.339151932848906e-07 1.6961895472756925 0.0010483400305398667 1.1243255909867422 0.001232521874914087']
['59866.35955947876 2.8236659819558185 0.0006483480595822225 0.3236171368886231 0.0001997019855837533 0.0008656347395810238 5.341774479146347e-07 1.6996698365999114 0.0010488549663012256 1.123996145355907 0.0012330660755607455']
['59866.35959101673 2.8186270149374812 0.0006479551950283312 0.323071499468074 0.0001996329350505325 0.0008641752287807499 5.339927465081603e-07 1.6968040938449267 0.0010484923059376706 1.1218229210925545 0.001232551033578203']
['59866.359622554686 2.8186240753564293 0.0006479547567465478 0.32308270824245505 0.00019963627614063043 0.0008642052108286279 5.340016834998309e-07 1.6968629634582724 0.0010485098536797816 1.121761111898157 0.0012325657305207194']
['59866.35965409265 2.8232326760682294 0.0006482990157287722 0.3236451545786338 0.0001997010708882849 0.0008657096833433637 5.341750012204293e-07 1.6998169883331609 0.001048850162228387 1.1234156877350685 0.0012330362024699066']
['59866.35968563061 2.823707695990611 0.0006483448255987511 0.32362420112780854 0.00019970323034150877 0.000865653635523638 5.341807774835378e-07 1.6997069386964736 0.001048861503894479 1.1240007572941375 0.0012330699360670761']
['59866.359717168576 2.8180158032878158 0.000647900347921935 0.3228844818861228 0.0001996028063788493 0.000863674980501546 5.339121561379558e-07 1.6958218586456029 0.0010483340671158053 1.122193944642213 0.001232387592080077']
['59866.35974870654 2.819994233532008 0.0006480910579851532 0.32274200115961943 0.0001995710922921452 0.000863293862654179 5.338273249839288e-07 1.6950735355022029 0.0010481675015343761 1.124920698029805 0.001232346189474829']
['59866.3597802445 2.8177798842104487 0.0006478754465313797 0.32280621153639166 0.00019959298338387738 0.0008634656172568866 5.338858808739936e-07 1.6954107748760068 0.0010482824757556586 1.122369109334442 0.0012323306144029075']
['59866.359811782466 2.8190844755817466 0.0006479498134328778 0.32308584436696386 0.00019963714913253934 0.0008642135995633797 5.340040186423113e-07 1.6968794347004406 0.00104851443872132 1.122205040881306 0.0012325670322277755']
['59866.35984332043 2.816855648696058 0.0006478227089937958 0.3223386373760213 0.00019951429966472232 0.0008622149157630212 5.336754119186258e-07 1.6929550282354062 0.0010478692209281635 1.1239006204606519 0.0012319513652968028']
['59866.35987485839 2.8164116953603173 0.0006477606719264365 0.3223545986500955 0.0001995072110887849 0.0008622576101439785 5.33656450878291e-07 1.6930388584563842 0.0010478319910125257 1.123372836903933 0.001231887076595847']
['59866.359906396356 2.8171238058726944 0.0006478491629288958 0.32272942030675267 0.00019958557776948935 0.000863260210470615 5.338660717960695e-07 1.6950074595942892 0.0010482435807221081 1.1221163462784052 0.001232283710203449']
['59866.359937934314 2.8171334752096824 0.000647797118266468 0.3226352037560408 0.00019957934659872595 0.0008630081931636091 5.338494042056788e-07 1.6945126247691222 0.0010482108539849053 1.1226208504405601 0.001232228509995652']
['59866.35996947228 2.815796363811799 0.0006477007361646302 0.3224243666792298 0.00019951258328403283 0.0008624442307608944 5.336708208182735e-07 1.693405287180829 0.001047860206323702 1.1223910766309702 0.0012318795621427262']
['59866.360001010245 2.8172322866763926 0.0006478404779154711 0.3225399046952483 0.0001995513873254655 0.0008627532802796234 5.337746167007265e-07 1.6940121044918504 0.0010480640090623188 1.1232201821845422 0.0012321263944569674']
['59866.360032548204 2.815827878033755 0.0006477298043382942 0.32239034960942037 0.0001995374070373648 0.0008623532394195554 5.337372212056496e-07 1.6932266260998972 0.001047990583179437 1.122601251933858 0.0012320057474950762']
['59866.36006408617 2.8161631340433733 0.0006477286416185778 0.3226918086074112 0.00019956947796268015 0.0008631596039518205 5.338230068576408e-07 1.6948099191565715 0.0010481590229132363 1.1213532148868017 0.0012321484206407433']
['59866.360095624135 2.8161142594130855 0.0006477194953090653 0.3226401007993842 0.00019957957518646667 0.0008630212921325945 5.33850015648853e-07 1.6945383445345812 0.0010482120545507703 1.1215759148785043 0.0012321887257676794']
['59866.360127162094 2.8208901028907265 0.0006481006917611986 0.32345625199705774 0.00019967637837167834 0.0008652043929295712 5.341089518746257e-07 1.6988248529257235 0.001048720474641168 1.122065249965003 0.0012328216175071481']
['59866.36015870006 2.8215223026059792 0.000648148069501297 0.323439374271897 0.0001996749201434002 0.0008651592471583531 5.341050512991867e-07 1.698736209411224 0.0010487128158792028 1.1227860931947553 0.0012328400099719122']
['59866.36019023802 2.8224376645286466 0.0006482307776565594 0.3236235131527315 0.00019972123561179416 0.0008656517952776846 5.342289392947584e-07 1.6997033253819935 0.0010489560693896754 1.122734339146653 0.0012330904170459948']
['59866.36022177598 2.814597824541493 0.0006476094001771909 0.3222709755918647 0.00019949061781028503 0.0008620339290839129 5.33612065965764e-07 1.6925996617219785 0.0010477448414405726 1.1219981628195144 0.0012317334078294669']
['59866.36025331395 2.819528852477987 0.0006479611179679301 0.323549564001885 0.00019973123484578594 0.0008654539906912195 5.34255685975715e-07 1.6993149369846903 0.0010490085863749262 1.1202139154932966 0.001232993359546827']
['59866.36028485191 2.815075272313064 0.0006476369709511108 0.32253834239415824 0.00019954753972188343 0.0008627491013226304 5.337643248498166e-07 1.6940038991289823 0.0010480438010603123 1.1210713731840816 0.001232002213911841']
['59866.36031638987 2.819300077640138 0.0006479391435626886 0.32341010322024966 0.0001996621109686675 0.0008650809508128208 5.340707883836297e-07 1.6985824748962695 0.0010486455408018252 1.1207176027438686 0.0012326729509502116']
['59866.36034792784 2.8170575411110033 0.0006478074445681505 0.3224263136377138 0.00019952382449304104 0.0008624494386275621 5.337008896246599e-07 1.6934155128031187 0.0010479192462869804 1.1236420283078845 0.0012319858895200831']
['59866.3603794658 2.8202465324218053 0.0006479891655753586 0.3234181847486925 0.00019968207815302105 0.0008651025678749958 5.341241980658061e-07 1.6986249198985952 0.0010487504104675475 1.1216216125232101 0.0012327884579922458']
['59866.36041100376 2.8205598718928755 0.0006481089483149291 0.3232584897217767 0.00019963274415715334 0.0008646754039603597 5.339922358926159e-07 1.697786185513533 0.0010484913033463937 1.1227736863793425 0.0012326310161921543']
['59866.36044254172 2.8130393483914755 0.0006474172840806352 0.32260869801410763 0.00019957015802664663 0.0008629372936703488 5.338248259423783e-07 1.6943734139396411 0.001048162594677766 1.1186659344518344 0.0012319878102513729']
['59866.36047407969 2.815209962996102 0.000647639977414598 0.3224289722768697 0.0001995099364741021 0.0008624565501496386 5.336637409378719e-07 1.6934294762440636 0.0010478463050110406 1.1217804867520382 0.00123183579233227']
['59866.36050561765 2.814378909981172 0.0006475685462129582 0.32231170690005584 0.00019952372060154153 0.0008621428801601688 5.337006117280936e-07 1.6928135866599574 0.0010479187006383485 1.1215653233212144 0.0012318598236779738']
['59866.36053715561 2.812812184646819 0.0006474267433594416 0.3222198283629868 0.00019947469868080396 0.0008618971167427134 5.335694843162408e-07 1.692331031318208 0.0010476612325672479 1.1204811533286108 0.0012315662573492898']
['59866.36056869358 2.819609484424071 0.0006479466868433551 0.32350341486919576 0.00019970503754748064 0.0008653305476225322 5.341856115299849e-07 1.6990725570861123 0.0010488709955224823 1.1205369273379586 0.0012328687173578557']
['59866.36060023154 2.8182318949356953 0.0006478425373315519 0.3231869333334343 0.0001996448652542652 0.000864483999709696 5.340246582879276e-07 1.6974103641461886 0.0010485549645707208 1.1208215307895066 0.0012325451175928973']
['59866.3606317695 2.8177707432794254 0.0006478118756506107 0.32307381462195484 0.00019963865938864373 0.0008641814215233406 5.340080583855777e-07 1.6968162532665696 0.001048522370738675 1.1209544900128559 0.0012325012730920054']
['59866.36066330747 2.8127085658867115 0.0006473855343698004 0.3222633617468731 0.00019950152722233305 0.0008620135630155709 5.336412472574223e-07 1.6925596730402999 0.0010478021387727576 1.1201488928464116 0.0012316644641005266']
['59866.360694845425 2.818162124457341 0.0006478374371584117 0.32315958893209984 0.0001996176012844383 0.0008644108569090529 5.339517306313518e-07 1.6972667485929616 0.001048411771451882 1.1208953758643794 0.001232420621177223']
['59866.36072638339 2.8146361060658798 0.0006475680924316675 0.3222787492506751 0.00019950612659168563 0.0008620547226339229 5.33653549986289e-07 1.6926404897619494 0.0010478262951243993 1.1219956163039304 0.0012317809785386822']
['59866.36075792136 2.8190717393050333 0.000647930062941635 0.32272574250831343 0.00019954705998166677 0.0008632503728268957 5.337630416056673e-07 1.6949881434260161 0.001048041281416317 1.1240835958790172 0.0012321541681203317']
['59866.360789459315 2.818321375257737 0.00064789987968538 0.3229972457912411 0.00019962698296014674 0.0008639766096259482 5.339768254223347e-07 1.6964141060464346 0.001048461044958754 1.1219072692113023 0.00123249536181372']
['59866.36082099728 2.813258857064196 0.0006474632268408369 0.32230658831194314 0.00019950200401396053 0.0008621291885870631 5.3364252261447e-07 1.6927867033190291 0.001047804642930465 1.1204721537451667 0.0012317074327362761']
['59866.36085253525 2.811611640060946 0.0006473025206086891 0.3220484954362654 0.0001994429823459401 0.0008614388229241906 5.33484647148672e-07 1.6914311735097973 0.0010474946551782569 1.1201804665511488 0.0012313592513208229']
['59866.360884073205 2.8181237889667 0.0006478222753318899 0.3228730379333603 0.00019956231784881346 0.0008636443693813669 5.338038544624308e-07 1.6957617538516825 0.00104812141727318 1.1223620351150174 0.0012321656567860209']
['59866.36091561117 2.8183275602685534 0.0006478855155842081 0.3229641767479208 0.0001996043554823882 0.0008638881541350615 5.339162997931754e-07 1.6962404240962226 0.0010483422031638036 1.1220871361723308 0.0012323867153771792']
['59866.36094714913 2.8111291111711827 0.000647244382704165 0.32201009804942304 0.00019941844665566038 0.0008613361147911188 5.334190172933747e-07 1.691229506562096 0.0010473657912587206 1.1198996046090868 0.0012312190672829518']
['59866.360978687095 2.8147415323894114 0.0006475647505732976 0.3223343630683504 0.00019949412272577638 0.0008622034825328679 5.336214411695551e-07 1.6929325791404959 0.0010477632496101702 1.1218089532489155 0.0012317255917690113']
['59866.36101022506 2.8150487026092748 0.0006475471839963825 0.32287819363293174 0.0001995880759507143 0.0008636581602229112 5.3387275411356e-07 1.695788832105734 0.0010482567014218189 1.1192598705035408 0.001232136140033802']
['59866.36104176302 2.8153627856261547 0.0006475458599192104 0.3226884254188272 0.00019955068175948307 0.0008631505543520464 5.337727294013353e-07 1.6947921503089665 0.0010480603033586296 1.1205706353171883 0.0012319683600542234']
['59866.361073300985 2.8107596561706867 0.0006472511260256067 0.32171767908150445 0.00019939482000064771 0.0008605539311911511 5.333558189919631e-07 1.6896936926549604 0.0010472417016840743 1.1210659635157263 0.001231117054502768']
['59866.36110483895 2.813008094457807 0.0006474069549528383 0.32210626637389794 0.00019944226003677117 0.0008615933528450523 5.334827150633834e-07 1.6917345922998843 0.0010474908615376638 1.1212735021579225 0.001231410926671606']
['59866.36113637691 2.810631720364968 0.0006471897633816296 0.3219281923412981 0.0001994429157647892 0.0008611170274244712 5.334844690525497e-07 1.6907993295236246 0.0010474943054873383 1.1198323908413435 0.0012312996832024162']
['59866.361167914874 2.815881541384563 0.0006475920868589483 0.3227199081473887 0.00019955263924271272 0.000863234766652426 5.337779654203607e-07 1.6949575007741005 0.0010480705842579449 1.1209240406104626 0.0012320014044428348']
['59866.36119945283 2.813218232586178 0.0006474279233098587 0.3220031479362954 0.00019943816062935544 0.0008613175241212144 5.334717496691991e-07 1.691193003867098 0.0010474693310365307 1.12202522871908 0.0012314036362393256']
['59866.3612309908 2.816158001648251 0.0006475981426225478 0.3228827078621257 0.00019958182972162355 0.000863670235212667 5.338560462440562e-07 1.6958125412926772 0.0010482238955967626 1.1203454603555738 0.0012321350127434195']
['59866.361262528764 2.8129489954172344 0.0006474074107262508 0.32226473587113325 0.00019947892037523658 0.0008620172386234437 5.33580776812664e-07 1.6925668900794815 0.001047683405332125 1.120382105337753 0.0012315749564162086']
['59866.36129406672 2.814904404211957 0.0006475606442718131 0.32290119266539696 0.00019957727032671519 0.0008637196797137208 5.338438504417508e-07 1.6959096253434716 0.0010481999491949328 1.1189947788684855 0.001232094932017004']
['59866.36132560469 2.810324810223368 0.0006471507427603585 0.3218195726470128 0.0001993954451890154 0.0008608264835377042 5.333574912914434e-07 1.6902288479359917 0.0010472449852364253 1.1200959622873763 0.001231067074922453']
['59866.361357142654 2.8096265135843552 0.0006470902720937353 0.32169533700713526 0.00019938713950829807 0.0008604941689798102 5.33335274650403e-07 1.6895763498273912 0.0010472013629637504 1.120050163756964 0.0012309981782405207']
['59866.36138868061 2.8097371012491488 0.0006470886268687638 0.3220014121058507 0.00019942095444777395 0.0008613128809952372 5.334257253187717e-07 1.6911838871105607 0.0010473789624357876 1.118553214138588 0.0012311483996561784']
['59866.36142021858 2.8143271453943743 0.0006474577938644948 0.3226443555470899 0.0001995465623940731 0.0008630326730423251 5.337617106220512e-07 1.6945606908985815 0.0010480386680360983 1.1197664544957928 0.0012319036669053134']
['59866.36145175654 2.80995624984243 0.0006470900243551239 0.32174937241041146 0.0001993902594643571 0.0008606387068207073 5.33343620136605e-07 1.6898601492143461 0.0010472177492875897 1.1200961006280838 0.0012310119877738314']
['59866.3614832945 2.8150432103574707 0.0006474688588271174 0.32323429712481233 0.0001996505045215731 0.0008646106918361059 5.340397426117506e-07 1.6976591235546867 0.0010485845825712874 1.117384086802784 0.0012323739489120543']
['59866.36151483247 2.8117301669651606 0.0006472552613689099 0.32219071659520215 0.00019946660867799405 0.0008618192464612837 5.335478445862101e-07 1.6921781333781627 0.0010476187430566914 1.119552033586998 0.0012314399718108139']
['59866.36154637043 2.8096938395422404 0.0006470332455567859 0.32211992435017367 0.00019944172287982874 0.0008616298861969332 5.33481278236785e-07 1.6918063253685591 0.0010474880403352352 1.1178875141736813 0.0012312120920057192']
['59866.36157790839 2.807551758490053 0.0006468746159392442 0.3217650702335197 0.00019940039079782397 0.0008606806965037906 5.333707201668801e-07 1.6899425957642844 0.001047270960072605 1.1176091627257687 0.0012309440411968128']
['59866.36160944636 2.810815837385606 0.000647167084452229 0.32216492590396406 0.00019947415071290913 0.0008617502596378166 5.335680185717178e-07 1.6920426780670383 0.0010476583545846068 1.1187731593185677 0.001231427327587513']
['59866.361640984316 2.814096073221958 0.0006473839117467436 0.3225986255067643 0.00019951682641707635 0.000862910350992483 5.336821706602579e-07 1.694320512115359 0.0010478824916863253 1.119775561106599 0.001231731969858401']
['59866.36167252228 2.8142408073198286 0.0006474158122109678 0.32280785541945756 0.00019956656517004532 0.0008634700144353034 5.338152155072872e-07 1.6954194087156387 0.001048143724632591 1.11882139860419 0.0012319709823642225']
['59866.36170406024 2.807117560012122 0.000646895519646691 0.3214415086155529 0.00019934781465488346 0.0008598152102702741 5.33230085662045e-07 1.6882432175186601 0.0010469948248680854 1.1188743424934617 0.001230720104913995']
['59866.361735598206 2.809757489929212 0.0006470734416431766 0.3222174319950064 0.00019945619276267625 0.0008618907067627211 5.335199833356277e-07 1.6923184453519244 0.0010475640376190981 1.1174390445772877 0.0012312978728937904']
['59866.36176713617 2.8080160551084443 0.0006469656452097912 0.32147895412553856 0.00019934389318977905 0.0008599153722536492 5.332195962409437e-07 1.6884398851131228 0.0010469742289379153 1.1195761699953215 0.0012307394452693323']
['59866.36179867413 2.8085008470615085 0.0006469473390241276 0.3217723138554562 0.00019939850494693674 0.000860700072272481 5.333656757552728e-07 1.689980639997144 0.0010472610553935754 1.1185202070643645 0.001230973833034019']
['59866.361830212096 2.8120693223070123 0.000647204420286766 0.32270126896731544 0.00019952201402965284 0.0008631849092130337 5.336960468650377e-07 1.6948596059207746 0.001047909737550698 1.1172097163862378 0.0012316608216925231']
['59866.36186175006 2.811937285810556 0.0006472287220465677 0.3221994870093382 0.00019944396824544174 0.0008618427062051949 5.334872843046229e-07 1.6922241964776168 0.001047499833221858 1.1197130893329392 0.0012313248634060199']
['59866.36189328802 2.812833163016427 0.000647313725000467 0.32232707503620694 0.0001994572611612534 0.0008621839879725142 5.335228411661276e-07 1.6928943016607507 0.0010475696489561628 1.1199388613556762 0.0012314289374495463']
['59866.361924825986 2.8053824698314855 0.0006467035901609907 0.3216957240251984 0.00019938909019721248 0.0008604952042039752 5.333404924954981e-07 1.689578382485286 0.001047211608178637 1.1158040873461996 0.0012308036747715704']
['59866.361956363944 2.8115535164327428 0.000647156726631595 0.3225445508857837 0.0001995299457230259 0.0008627657082492076 5.337172631374312e-07 1.6940365067530658 0.0010479513956041277 1.117517009679677 0.0012316712046537258']
['59866.36198790191 2.8090167863592415 0.0006469660464145853 0.3217237634009624 0.0001993548872064476 0.0008605702059729509 5.332490038392166e-07 1.6897256481142986 0.0010470319706220989 1.1192911382449429 0.0012307887766461452']
['59866.362019439875 2.811606205691602 0.0006472230787592959 0.3224022424361265 0.0001995011370861688 0.0008623850512205236 5.336402036927329e-07 1.693289088425034 0.0010478000897382815 1.1183171172665678 0.0012315773389171352']
['59866.362050977834 2.8058536116782173 0.0006467370526850759 0.3212815326123305 0.000199300923888267 0.0008593872947797039 5.331046588167949e-07 1.6874030074177024 0.001046748549833335 1.118450604260515 0.0012304273005317983']
['59866.3620825158 2.807768705162787 0.0006468763958322434 0.3214682274666042 0.00019932419901590523 0.000859886679803359 5.331669168271264e-07 1.6883835476187197 0.0010468707931507628 1.1193851575440674 0.0012306045380369036']
['59866.36211405376 2.804076497326201 0.0006465125359356499 0.3213110419826193 0.00019930294290050547 0.0008594662285973339 5.331100594181045e-07 1.6875579936061937 0.0010467591538892095 1.1165185037200072 0.0012303183268458611']
['59866.362145591724 2.807785814304707 0.0006468946014811034 0.32157532341194517 0.0001993640396759814 0.0008601731478552264 5.33273485532793e-07 1.6889460263232414 0.0010470800403150284 1.1188397879814658 0.0012307921173990014']
['59866.36217712969 2.808360173229663 0.000646929884077497 0.32169467528237633 0.0001993779094234232 0.0008604923989501236 5.333105853456467e-07 1.6895728743822287 0.0010471528856272226 1.1187872988474343 0.0012308726338618235']
['59866.36220866765 2.8047567216200937 0.0006466293799679834 0.32117687426272534 0.00019930264947188775 0.0008591073469868384 5.331092745338195e-07 1.686853331211793 0.0010467576127725197 1.1179033904083007 0.0012303784194039665']
['59866.36224020561 2.804838092521737 0.0006466338803885257 0.32130970915264534 0.00019932392953012746 0.0008594626634464322 5.331661959868974e-07 1.6875509934487676 0.001046869377784283 1.1172870990729695 0.001230475871120102']
['59866.36227174358 2.804932959514788 0.0006466044489335717 0.321219732554913 0.00019927321075142296 0.0008592219874751432 5.330305296954956e-07 1.687078427284207 0.0010466029976440281 1.117854532230581 0.0012302337778073537']
['59866.36230328154 2.8044187921224397 0.0006465893464809434 0.32109436530915725 0.00019928779204375592 0.0008588866460152467 5.330695328005621e-07 1.6864199858674227 0.0010466795800617432 1.117998806255017 0.001230290992530174']
['59866.3623348195 2.8052470988821985 0.0006466308936750664 0.32134718507180127 0.0001993292834609977 0.0008595629067704756 5.331805170719893e-07 1.687747820755259 0.0010468974971691056 1.1174992781269395 0.0012304982252055272']
['59866.36236635746 2.805417833931462 0.0006466927657804309 0.32140835848767907 0.00019933683206356902 0.0008597265378885052 5.332007086251433e-07 1.6880691097041969 0.001046937143191014 1.117348724227265 0.0012305644701134943']
['59866.36239789543 2.8091924349831796 0.0006469670030996112 0.3218454560489703 0.00019937726506335528 0.000860895718350571 5.333088617643032e-07 1.6903647901731633 0.0010471495013831685 1.1188276448100163 0.001230889264453432']
['59866.36242943339 2.804002661893356 0.0006465726155571995 0.3211904658589733 0.00019929628001321383 0.0008591437027805757 5.330922370408317e-07 1.6869247156458684 0.0010467241597332659 1.1170779462474874 0.001230320126535281']
['59866.36246097135 2.8105678574880666 0.0006470783267427663 0.3222291471308386 0.00019945109800538106 0.0008619220432631696 5.335063555069322e-07 1.6923799744266734 0.0010475372794400268 1.1181878830613932 0.0012312776749201745']
['59866.36249250932 2.8047784679419596 0.0006465659855589912 0.3212480766550594 0.0001992842406450899 0.0008592978043431397 5.330600332601826e-07 1.6872272933564045 0.0010466609277578252 1.117551174585555 0.0012302628464587316']
['59866.36252404728 2.805599015337228 0.0006467106175058036 0.32115812240579533 0.00019927095740224793 0.000859057188151165 5.330245022726432e-07 1.686754844568253 0.0010465911628269326 1.118844170768975 0.0012302795149486026']
['59866.36255558524 2.803933109844322 0.0006465225260212312 0.321030327771006 0.00019925593651128466 0.0008587153537338986 5.329843232970727e-07 1.6860836542594853 0.0010465122715928817 1.1178494555848366 0.0012301135359174644']
['59866.36258712321 2.807207607057187 0.0006468314424338303 0.3215175811330174 0.00019934390728158316 0.0008600186945927602 5.3321963393473e-07 1.6886427580515622 0.0010469743029494914 1.118564849005625 0.0012306689668459196']
['59866.362618661165 2.805895383101004 0.0006466586376038621 0.321391798136602 0.00019931340679387187 0.0008596822410526523 5.331380490038734e-07 1.6879821330703888 0.0010468141113123524 1.117913250030615 0.0012304418625966663']
['59866.36265019913 2.8041362551883564 0.0006465526844568105 0.321307593097788 0.0001992980981134782 0.0008594570032684423 5.330971002281278e-07 1.6875398797152732 0.0010467337085791925 1.1165963754730832 0.0012303177762083492']
['59866.3626817371 2.80365977762088 0.0006464916951945708 0.32108826909156196 0.00019925983981019222 0.0008588703394074407 5.329947641259047e-07 1.6863879679178675 0.0010465327721123543 1.1172718097030123 0.0012301147731251416']
['59866.362713275055 2.803909945782034 0.0006464998349514769 0.32118908358176745 0.00019929365960021434 0.0008591400053646087 5.330852277688685e-07 1.6869174557865938 0.0010467103970599493 1.1169924899954402 0.001230270170290121']
['59866.36274481302 2.808430645064105 0.0006469138319334707 0.3217995747030115 0.00019937008700813684 0.0008607729915773768 5.332896613782562e-07 1.6901238167174975 0.001047111801513324 1.1183068283466073 0.0012308292451901383']
['59866.36277635099 2.8081935664380455 0.0006468581788990844 0.32178064141975293 0.00019938187247528705 0.000860722347449317 5.333211860060478e-07 1.6900243772045849 0.0010471736999752472 1.1181691892334606 0.0012308526563031374']
['59866.362807888945 2.803797465011791 0.0006465051709341114 0.3212159501178282 0.00019928677860628244 0.0008592118699363369 5.330668219840341e-07 1.6870585615432154 0.0010466742573859373 1.1167389034685757 0.0012302422270101723']
['59866.36283942691 2.8087270340979584 0.0006468905026681315 0.3220931497464245 0.00019943569079704953 0.0008615582675324624 5.334651431814665e-07 1.6916657024497086 0.0010474563592282014 1.1170613316482498 0.001231110127864208']
['59866.36287096487 2.8083632058777614 0.000646831926342219 0.3222819892323563 0.0001994409153947836 0.0008620633891734201 5.334791183168454e-07 1.6926575064724596 0.0010474837993423509 1.1157056994053018 0.0012311026971054333']
['59866.362902502835 2.802982790257654 0.0006464255240236072 0.32100686877455714 0.0001992574895332583 0.0008586526038978514 5.329884774336076e-07 1.685960445244523 0.0010465204282208945 1.1170223450131311 0.0012300694959199825']
['59866.3629340408 2.8072966620736572 0.000646794702002237 0.3218008910498321 0.0001994149251491474 0.0008607765126379369 5.33409597710708e-07 1.6901307303037403 0.0010473472959514046 1.117165931769917 0.001230966995851181']
['59866.36296557876 2.8017727486420276 0.0006463190077298964 0.3211841020479369 0.00019929815029711936 0.000859126680394301 5.330972398127401e-07 1.6868912922685764 0.001046733982652938 1.1148814563734513 0.0012301952244231152']
['59866.362997116725 2.8013195757201452 0.0006462361324631955 0.3208770274954874 0.0001992366915429208 0.0008583052949670729 5.329328454509423e-07 1.6852785057536104 0.0010464111950783655 1.1160410699665348 0.0012298770377913077']
['59866.36302865469 2.8032368318238143 0.0006464536122983428 0.321307283718282 0.00019933009680390423 0.000859456175717557 5.331826926609642e-07 1.6875382548229096 0.0010469017689280686 1.1156985770009047 0.0012304087071531536']
['59866.36306019265 2.806927949499476 0.0006432415723316938 0.3216653315742659 0.0001980439571952921 0.0008604139082577805 5.297424325564785e-07 1.6894187582682034 0.001040146834008887 1.1175091912312725 0.0012229738986071865']
['59866.363091730615 2.8008841102399415 0.0006427438204941336 0.32078914011059123 0.00019791620943929674 0.0008580702073747764 5.294007235340322e-07 1.6848169123455423 0.001039475889912273 1.1160671978943992 0.0012221414584622791']
['59866.36312326857 2.8015300781674117 0.0006428403897719334 0.32107084486797377 0.00019797438632204053 0.0008588237318223383 5.295563393065087e-07 1.686296454138518 0.0010397814407670197 1.1152336240288938 0.0012224521304679667']
['59866.36315480654 2.8061966608817857 0.0006431941084451734 0.3218163518957584 0.0001980820565634839 0.0008608178684371562 5.298443435275105e-07 1.690211932225622 0.0010403469357325836 1.1159847286561637 0.0012231191306764676']
['59866.363186344504 2.801172488228503 0.0006427707994016191 0.32105225349966193 0.00019794990672974432 0.0008587740022733354 5.294908595061925e-07 1.6861988103973842 0.0010396528714797498 1.114973677831119 0.0012223061783937302']
['59866.36321788246 2.802587457381543 0.0006428619149235033 0.3211913191988739 0.000197972632176361 0.0008591459853564298 5.295516471896044e-07 1.6869291974730773 0.001039772227817022 1.1156582599084655 0.0012224556136722047']
['59866.36324942043 2.799284493506401 0.0006425962029848906 0.32062120168081065 0.0001978702426036128 0.0008576209934044457 5.29277768086681e-07 1.683934882777367 0.0010392344674559496 1.1153496107290342 0.001221858485438903']
['59866.363280958394 2.801643196476639 0.000642777504248186 0.3210508021577486 0.00019796263255320885 0.0008587701201180476 5.295248994676932e-07 1.6861911878033016 0.0010397197087878619 1.1154520086733373 0.0012223665541929078']
['59866.36331249635 2.8056250359441384 0.0006430345532435839 0.32199317859282645 0.0001981129888944486 0.0008612908573936099 5.299270835842229e-07 1.6911406438698868 0.0010405093954540367 1.1144843920742515 0.0012231734295239168']
['59866.36334403432 2.799500571559297 0.0006426393731826469 0.32038144671507196 0.0001978346065521515 0.0008569796793216198 5.29182446175045e-07 1.6826756655203359 0.0010390473033201233 1.116824906038961 0.001221722007046368']
['59866.36337557228 2.799604376654168 0.0006425913526262998 0.32068224762295555 0.00019789089270296997 0.0008577842835464299 5.293330044797572e-07 1.6842555022214052 0.0010393429238601364 1.1153488744327626 0.0012219481821453128']
['59866.36340711024 2.8059911080675106 0.0006431832723845889 0.32167092208087034 0.00019805577575839682 0.0008604288621529146 5.297740457117451e-07 1.6894481201726383 0.0010402089062941011 1.1165429878948723 0.0012229960304959776']
['59866.36343864821 2.802464105109175 0.0006428534224302481 0.32101906173057837 0.00019794024585738276 0.0008586852185066191 5.294650178996223e-07 1.686024483879088 0.001039602131603901 1.116439621230087 0.0012223064733386869']
['59866.36347018617 2.8003111040689834 0.0006426712055954333 0.32072470806017606 0.0001978957016039442 0.0008578978598232281 5.293458676790999e-07 1.6844785087194123 0.0010393681806929844 1.1158325953495711 0.0012220116585117066']
['59866.36350172413 2.8051054276903216 0.0006430837320378585 0.3214940269959219 0.000198021219130428 0.0008599556902675667 5.296816111208572e-07 1.6885190493483293 0.0010400274113993066 1.1165863783419923 0.0012227893125447585']
['59866.3635332621 2.8015617127316705 0.0006427782251739548 0.32102027652889176 0.00019795042161599338 0.0008586884679378198 5.294922367615146e-07 1.686030864122331 0.001039655575714251 1.1155308486093396 0.001222312383505751']
['59866.363564800056 2.8034308589619052 0.0006429365727975228 0.3212365907232536 0.0001979631588225004 0.0008592670809343514 5.295263071712082e-07 1.6871669680843153 0.00103972247280725 1.11626389087759 0.0012224525582209917']
['59866.36359633802 2.799325471393822 0.0006425899384525128 0.32056499346535966 0.00019790053148697166 0.0008574706435669433 5.293587870027701e-07 1.6836396715617632 0.0010393935477256916 1.1156857998320586 0.0012219904975302402']
['59866.36362787598 2.804426558697744 0.0006430430018327127 0.3212868305247529 0.00019798684973796382 0.0008594014660225625 5.295896773611642e-07 1.6874308325879879 0.0010398468998842638 1.116995726109756 0.0012226143616876665']
['59866.363659413946 2.7987328584807685 0.0006425596857010343 0.3205144583482128 0.00019786726337460404 0.0008573354685468818 5.292697990274651e-07 1.6833742560305294 0.0010392188202447692 1.115358602450239 0.001221825972075869']
['59866.36369095191 2.7985637112026636 0.0006425082455766507 0.3204735091945806 0.00019784709626779025 0.0008572259347617391 5.292158545780991e-07 1.683159186946327 0.0010391129005661254 1.1154045242563366 0.001221708830187018']
['59866.36372248987 2.8043926104639625 0.0006429886978999752 0.32143528607431837 0.00019801848873366153 0.0008597985657627772 5.296743076562861e-07 1.6882105361046134 0.0010400130710801552 1.1161820743593491 0.001222727137854019']
['59866.363754027836 2.803707466274948 0.0006428907855724731 0.3212920562496433 0.0001979793333772173 0.0008594154441729415 5.295695720507966e-07 1.6874582786220762 0.0010398074231996709 1.116249187652872 0.00122250073190781']
['59866.3637855658 2.803686403785775 0.0006429024573196528 0.32155293066166424 0.00019802655367717536 0.0008601132500922579 5.296958803558824e-07 1.6888284173406738 0.0010400554289767615 1.1148579864451011 0.0012227178190292653']
['59866.36381710376 2.8022033035626066 0.0006428323214522084 0.3209512422718704 0.00019790641610736455 0.0008585038100681117 5.293745276149338e-07 1.6856682892430168 0.001039424454345402 1.1165350143195898 0.0012221442589951776']
['59866.363848641726 2.8028356661260236 0.0006428075888417373 0.32149924231700444 0.00019802978385380013 0.0008599696405890809 5.297045206680991e-07 1.6885464407405697 0.001040072394190127 1.114289225385454 0.0012226823714394965']
['59866.363880179684 2.804198148193165 0.0006429942460811836 0.32130253679397436 0.00019797226052845095 0.0008594434782979261 5.295506530786469e-07 1.6875133234977646 0.0010397702758847215 1.1166848246954002 0.0012225235486921712']
['59866.36391171765 2.803236858665292 0.000642872912695057 0.32131626217079023 0.00019799382898063117 0.0008594801919376916 5.296083459488877e-07 1.6875854105608732 0.001039883555570542 1.1156514481044186 0.0012225560891112762']
['59866.363943255616 2.797873970642369 0.0006424645634080844 0.32039517731137324 0.00019783013022279934 0.0008570164069228458 5.291704725625525e-07 1.6827477799967083 0.0010390237931869712 1.1151261906456609 0.0012216100679201128']
['59866.363974793574 2.797907191489575 0.0006424422257077176 0.32070044065081676 0.00019790054017153759 0.0008578329475853195 5.29358810232881e-07 1.6843510538383235 0.0010393935933379077 1.1135561376512513 0.0012219128672880787']
['59866.36400633154 2.80269248442824 0.0006428084864242786 0.32170591574594565 0.00019804630334615853 0.0008605224657625557 5.29748708212069e-07 1.689631910430387 0.0010401591562298241 1.1130605739978532 0.0012227566481143382']
['59866.364037869505 2.7974232322439505 0.0006424010192400424 0.32044745966611227 0.00019784400606983894 0.0008571562555815551 5.292075886910557e-07 1.683022372195968 0.0010390966705348685 1.1144008600479824 0.001221638637338102']
['59866.364069407464 2.7968512090413444 0.0006423851234420992 0.31997551410429503 0.00019776909147478064 0.0008558938611440174 5.290072016639421e-07 1.6805436665141547 0.0010387032115272094 1.1163075425271898 0.0012212956269702516']
['59866.36410094543 2.7976132072108584 0.0006423957980079247 0.3204431723287881 0.00019782691027249002 0.0008571447874987342 5.291618596044308e-07 1.682999854668005 0.0010390068816832458 1.1146133525428534 0.0012215595202377085']
['59866.36413248339 2.7977835103182005 0.0006424572810548383 0.3205339552577164 0.00019786663244141542 0.0008573876203035627 5.292681113613184e-07 1.6834766557653171 0.001039215506520039 1.1143068545528834 0.0012217693018618844']
['59866.364164021354 2.8016634704336134 0.0006427120568760444 0.3213337931391321 0.00019797344957953674 0.0008595270850514528 5.295538336392837e-07 1.6876774849744334 0.0010397765209009284 1.11398598545918 0.0012223804651051466']
['59866.36419555932 2.800106757887442 0.0006426290695656151 0.32068783915678895 0.00019788931866432903 0.0008577992401892712 5.293287941263064e-07 1.6842848695209505 0.0010393346568504677 1.1158218883664917 0.0012219609854579024']
['59866.36422709728 2.7948408568570513 0.0006421654914984708 0.3201995212979557 0.00019779279761533624 0.0008564930519366096 5.290706125790859e-07 1.6817201748842212 0.0010388277185679423 1.11312068197283 0.0012212860219197419']
['59866.36425863524 2.7981154522977425 0.0006424369172358967 0.32041367724414865 0.0001978529734235024 0.0008570658918934018 5.2923157522319e-07 1.6828449435091843 0.00103914376798058 1.1152705087885582 0.0012216975743449931']
['59866.36429017321 2.7983175637438746 0.0006424813560383342 0.32068480366367136 0.00019790005557762766 0.0008577911206307101 5.293575140057186e-07 1.6842689268049968 0.0010393910482018262 1.1140486369388778 0.001221931276274958']
['59866.36432171117 2.8013856379234885 0.0006427066401947617 0.3213561091671408 0.00019801079542492938 0.0008595867775920875 5.296537290325306e-07 1.687794691003891 0.001039972665046898 1.1135909469195975 0.0012225444652016492']
['59866.36435324913 2.8016582177480327 0.0006426792474176859 0.32136600588260633 0.00019798718887970726 0.000859613250049007 5.295905845222545e-07 1.687846669551504 0.0010398486810908995 1.1138115481965287 0.0012224245967043718']
['59866.36438478709 2.7953136205262945 0.0006421427397098585 0.32038388217421776 0.00019783471760713084 0.0008569861938655148 5.2918274323301e-07 1.6826884567973623 0.0010390478865920738 1.1126251637289322 0.0012214613415059594']
['59866.36441632506 2.7959796191622535 0.0006422408065669172 0.32030024616010067 0.000197825301100409 0.000856762478150099 5.2915755527349e-07 1.6822491920173355 0.001038998430149207 1.113730427144918 0.0012214708311999271']
['59866.36444786302 2.799954715271723 0.0006425733754642256 0.3209330441852372 0.00019790941509437968 0.0008584551324976498 5.293825495243074e-07 1.6855727110569183 0.0010394402053276245 1.1143820042148045 0.0012220214741595267']
['59866.36447940098 2.795715828490115 0.000642252920981082 0.32040491196673915 0.00019784501929871788 0.0008570424458895817 5.292102989496199e-07 1.682798907388336 0.001039101992115115 1.112916921101779 0.0012215652927806736']
['59866.36451093895 2.8003964084932877 0.0006425763585919871 0.3209661655511744 0.000197930735630525 0.0008585437279448911 5.294395792506419e-07 1.68574666781079 0.0010395521829334297 1.1146497406824978 0.0012221182911907491']
['59866.36454247691 2.794985272419651 0.0006421293595805799 0.32052064126315694 0.00019785202226450625 0.0008573520070590848 5.29229030993679e-07 1.6834067293233033 0.0010391387723976168 1.1115785430963476 0.00122153162166822']
['59866.36457401487 2.7949952537393976 0.0006421803251998614 0.32030463364906236 0.00019783191797829785 0.0008567742141258304 5.291752545814539e-07 1.6822722355517983 0.0010390331826591276 1.1127230181875993 0.001221468593431921']
['59866.36460555284 2.794242260500445 0.0006420990171587395 0.3202437741986657 0.00019782056684235005 0.0008566114228255869 5.291448917344656e-07 1.6819525955812273 0.0010389735653484773 1.1122896649192175 0.001221375133744398']
['59866.364637090795 2.7999031765307762 0.0006425619776409706 0.32115398593777067 0.00019797208962341284 0.0008590461236245589 5.29550195929376e-07 1.6867331194210646 0.0010397693782742271 1.1131700571097116 0.0012222954860043656']
['59866.36466862876 2.8010645015625606 0.0006426209065698115 0.32133555518673484 0.00019799088438264553 0.000859531798304998 5.296004695232602e-07 1.6876867394261286 0.001039868090244987 1.113377762136432 0.0012224104362571365']
['59866.36470016673 2.7934715024661627 0.0006419650676807039 0.32013750824200515 0.00019777350520872825 0.0008563271748880253 5.290190078416775e-07 1.6813944760609516 0.0010387263929029847 1.112077026405211 0.0012210944547558704']
['59866.364731704685 2.7937366919334883 0.0006420695159846585 0.31982297318922026 0.00019771941639662186 0.0008554858335699349 5.288743271389431e-07 1.679742506245905 0.001038442313007468 1.1139941856875832 0.001220907736399878']
['59866.36476324265 2.794314529427333 0.0006421382298399183 0.32012346063059605 0.00019780185147345178 0.000856289599311649 5.29094830499643e-07 1.681320696589265 0.0010388752703437594 1.112993832838068 0.0012213121360052732']
['59866.36479478062 2.795451939663505 0.0006421871429678827 0.32020276829881156 0.0001978050043512324 0.0008565017372515076 5.29103264047269e-07 1.6817372284601448 0.0010388918295758005 1.1137147112033603 0.0012213519395131798']
['59866.364826318575 2.792281213127307 0.0006419526011915849 0.3198362286959572 0.0001977635352546816 0.0008555212903669158 5.289923394808553e-07 1.6798121255039768 0.001038674029698958 1.11246908762333 0.0012210433580130207']
['59866.36485785654 2.7935413566420104 0.0006419921277127075 0.3202427747630405 0.00019780823500410477 0.0008566087494622248 5.291119056333876e-07 1.6819473464445407 0.0010389087972904663 1.1115940101974697 0.001221263845830463']
['59866.3648893945 2.792745440243905 0.0006419435778844048 0.32007089782531817 0.00019777892070926687 0.0008561490004833674 5.290334936178127e-07 1.6810446314354945 0.0010387548356579144 1.1117008088084104 0.0012211073522789598']
['59866.364920932465 2.798792824583469 0.0006424016218303633 0.3209185318710466 0.00019788634835672572 0.0008584163139003533 5.29320848930717e-07 1.6854964909193624 0.0010393190564954083 1.1132963336641064 0.0012218281159495335']
['59866.36495247043 2.797393262268792 0.0006422943029972886 0.3206254920603262 0.00019785078595154182 0.0008576324696247422 5.292257240135194e-07 1.683957416283226 0.0010391322791572573 1.113435845985566 0.0012216128131488017']
['59866.36498400839 2.7987723377955778 0.0006424347102792078 0.32113215460434597 0.0001979525738478022 0.0008589877275803769 5.29497993708255e-07 1.686618459056439 0.0010396668794527427 1.1121538787391387 0.0012221413900210293']
['59866.365015546355 2.791526557248195 0.0006418273275935504 0.31970071483375695 0.00019771172092655756 0.0008551588079967202 5.288537427338985e-07 1.679100393034438 0.0010384018956226763 1.112426164213757 0.00122074600768491']
['59866.36504708432 2.795066670739275 0.0006421489784763743 0.32030854817960785 0.0001978342396786994 0.0008567846849978673 5.291814648351561e-07 1.6822927950609656 0.0010390453764637575 1.1127738756783094 0.0012214624860833682']
['59866.36507862228 2.793741879901823 0.0006420029610552581 0.3201228248914696 0.0001977877065545839 0.0008562878987902289 5.29056994638173e-07 1.6813173576232647 0.001038800979803487 1.1124245222785585 0.0012211778239242651']
['59866.365110160245 2.795529830075048 0.0006421899908455867 0.3202242983273169 0.00019778379395496347 0.0008565593273432982 5.290465289311154e-07 1.6818503063409502 0.0010387804304357326 1.1136795237340977 0.0012212586814424292']
['59866.3651416982 2.798381462006519 0.0006424218790372738 0.32083887101456754 0.00019790545512116757 0.000858203231226747 5.293719570989088e-07 1.6850781040681069 0.0010394194071489894 1.113303357938412 0.0012219241280143943']
['59866.36517323617 2.7943641913718826 0.0006420779171509218 0.3202564522178628 0.00019781716998180108 0.0008566453349167438 5.291358055639216e-07 1.6820191818165064 0.0010389557246943334 1.1123450095553762 0.0012213488648080834']
['59866.365204774134 2.7925029576480886 0.0006418834746795856 0.31999812722249493 0.00019777099779836205 0.000855954348363181 5.290123008374063e-07 1.680662432891255 0.0010387132237308933 1.1118405247568337 0.0012210403581455296']
['59866.36523631209 2.792866083104523 0.0006419592623522769 0.3198402747058337 0.0001976998484815048 0.0008555321129294645 5.288219854512644e-07 1.6798333755558494 0.0010383395403440378 1.1130327075486735 0.0012207623419657682']
['59866.36526785006 2.7971287274748464 0.0006422672595736072 0.32059754203839796 0.0001978333615656221 0.0008575577068659286 5.291791159942007e-07 1.6838106199495693 0.0010390407645253263 1.1133181075252772 0.0012215207501575919']
['59866.365299388024 2.79368000433539 0.0006420141454591176 0.3200634079145878 0.0001977856647042019 0.0008561289659234338 5.290515329477302e-07 1.6810052936690538 0.0010387902557993799 1.1126747106663362 0.0012211745815047666']
['59866.36533092598 2.7917898267367294 0.0006418308272933715 0.319818825635257 0.00019775075759518538 0.0008554747393898508 5.289581608645533e-07 1.679720722874249 0.0010386069201427804 1.1120691038624804 0.001220922252001562']
['59866.36536246395 2.7968255512366276 0.0006422215711286716 0.3207298244212464 0.00019785758583783347 0.0008579115454392783 5.292439128457174e-07 1.6845053803636894 0.001039167992845764 1.1123201708729382 0.001221604954057601']
['59866.36539400191 2.79287315704166 0.0006419228107981385 0.320016324007505 0.00019776839886388378 0.0008560030224519664 5.290053490177594e-07 1.680758004241098 0.001038699573864936 1.112115152800562 0.0012210494256049515']
['59866.36542553987 2.7975154435790843 0.0006423072775057414 0.3210733179486698 0.00019793553169288646 0.0008588303469991019 5.294524081083259e-07 1.6863094430077195 0.0010395773723365885 1.1112060005713649 0.0012219982617872594']
['59866.36545707784 2.790913179849113 0.0006417796243699302 0.31945550010472135 0.00019765913971053685 0.0008545028897405025 5.287130946592182e-07 1.6778125005500073 0.001038125733773828 1.1131006792991058 0.0012204860201492918']
['59866.3654886158 2.796255965966112 0.0006421293055920177 0.3205682088839395 0.0001978428227810401 0.0008574792444032641 5.292044235438046e-07 1.6836565592643882 0.0010390904557827736 1.1125994067017237 0.001221490491325634']
['59866.36552015376 2.7896790959101234 0.000641658135922274 0.31946990668658204 0.0001976793408816518 0.000854541425517245 5.287671302262634e-07 1.677888165370704 0.0010382318323616166 1.1117909305394194 0.0012205123928597397']
['59866.36555169173 2.795683245862522 0.000642112553597094 0.3206329165872886 0.00019785353693326898 0.0008576523292914008 5.292330825402461e-07 1.6839964106475243 0.0010391467275906985 1.1116868352149976 0.0012215295546770199']
['59866.365583229686 2.7960025302553184 0.000642157873808787 0.32063917189788543 0.00019785833010091102 0.00085766906145278 5.292459036549234e-07 1.6840292641695664 0.0010391719017904992 1.111973266085752 0.0012215747936027107']
['59866.36561476765 2.794895437292615 0.0006420304357638626 0.3209684468980939 0.00019793124135247562 0.0008585498302581541 5.294409319926295e-07 1.685758649674863 0.0010395548390361115 1.1091367876177518 0.001221833599067619']
['59866.36564630561 2.7950461433910583 0.0006420936796577883 0.32004460792588896 0.00019774333704698573 0.0008560786783413919 5.289383118405798e-07 1.6809065542326103 0.0010385679466753453 1.114139589158448 0.0012210273024457403']
['59866.365677843576 2.789274865822159 0.000641619674353856 0.31970161912183803 0.00019772135351168397 0.0008551612268524862 5.288795086757073e-07 1.6791051424466283 0.0010384524869311133 1.1101697233755308 0.0012206798819229235']
['59866.36570938154 2.791603023964515 0.0006417990083570537 0.32010586438981065 0.00019776093780431676 0.0008562425316023913 5.289853916310233e-07 1.6812282793582494 0.001038660387627714 1.1103747446062657 0.0012209510096457806']
['59866.3657409195 2.7897607739720764 0.0006416681892016344 0.3195120776559902 0.0001976853617181437 0.0008546542275044096 5.287832351991917e-07 1.6781096515545706 0.0010382634544020154 1.1116511224175059 0.0012205445775472972']
['59866.365772457466 2.790972714269546 0.0006417294902085617 0.31975289362544546 0.0001977188284634291 0.0008552983796374225 5.288727544923239e-07 1.6793744413101128 0.0010384392251230519 1.1115982729594334 0.0012207263259541449']
['59866.36580399543 2.794364795760956 0.0006420212995529563 0.32043100815072056 0.00019781995296810006 0.0008571122498673376 5.291432496988131e-07 1.6829359671781543 0.001038970341219013 1.1114288285828018 0.0012213315352566719']
['59866.36583553339 2.7882960379042867 0.0006414929437519337 0.3191176304612228 0.0001976026160244889 0.000853599131355906 5.285619009779357e-07 1.6760379751114645 0.0010378288656748367 1.1122580627928222 0.0012200827641235818']
['59866.365867071356 2.7939142703952684 0.0006419796645934231 0.32009648455977496 0.00019774932315883196 0.0008562174417483487 5.289543239294911e-07 1.6811790155450368 0.0010385993863384032 1.1127352548502316 0.001220994092964414']
['59866.365898609314 2.793069578904723 0.00064184367372263 0.32043207955710484 0.00019781256966747672 0.0008571151157433396 5.291235003073755e-07 1.6829415943125257 0.0010389315633796048 1.1101279845921972 0.0012212051813205477']
['59866.36593014728 2.7941303830057285 0.0006419849325886298 0.32023218619622124 0.00019779773842069375 0.0008565804263908038 5.290838286059011e-07 1.681891734223851 0.0010388536681759126 1.1122386487818774 0.001221213166303646']
['59866.365961685246 2.7885675119467175 0.0006415444492937935 0.31936735584689346 0.0001976416217397569 0.0008542671150457382 5.286662363122844e-07 1.6773495580193984 0.0010380337276247739 1.111217953927319 0.0012202841063073222']
['59866.365993223204 2.795344272909788 0.0006420666754928764 0.3204192972129043 0.00019780585325024109 0.0008570809245960485 5.291055347443012e-07 1.6828744601518084 0.0010388962880789974 1.1124698127579797 0.0012212923946225136']
['59866.36602476117 2.790094622820954 0.0006416207883661937 0.31976202112201013 0.00019769682602566188 0.0008553227945314783 5.288139007657572e-07 1.6794223798424903 0.0010383236661011654 1.110672242978464 0.0012205708794041502']
['59866.366056299135 2.7943854006397277 0.0006419884534934387 0.3206005285636401 0.00019784800517592475 0.0008575656954416421 5.292182857919214e-07 1.683826305481303 0.0010391176742433025 1.1105590951584248 0.0012214396077349493']
['59866.366087837094 2.794144517817207 0.0006419792767650734 0.32052534472062966 0.0001978221457160071 0.000857364588210453 5.291491150209704e-07 1.6834314323562483 0.0010389818577521382 1.1107130854609588 0.0012213192426773153']
['59866.36611937506 2.78870385051444 0.000641516745930212 0.3196815055494851 0.00019768902211449735 0.0008551074256010038 5.287930262945423e-07 1.6789995039363714 0.0010382826791727803 1.1097043465780687 0.001220481321929629']
['59866.36615091302 2.7878531735176133 0.0006415008610641415 0.31903483883666717 0.00019757564012798227 0.0008533776742753238 5.284897438809044e-07 1.675603145150563 0.0010376871855461254 1.1122500283670502 0.0012199664133871364']
['59866.36618245098 2.78681001720129 0.0006413739511088532 0.31911685251713495 0.0001975850524159501 0.0008535970504542752 5.285149205557932e-07 1.6760338892706668 0.0010377366198316706 1.1107761279306234 0.0012199417352073184']
['59866.36621398895 2.7930489084578927 0.0006418604215618157 0.3203593180155425 0.00019779608534741276 0.0008569204878608752 5.290794068448261e-07 1.682559443358942 0.0010388449860683443 1.1104894650989507 0.0012211403301205191']
['59866.36624552691 2.7901620538495893 0.000641675235730988 0.31963479582704546 0.0001976965974076862 0.000854982483025933 5.288132892417083e-07 1.6787541797638943 0.0010383224653765033 1.111407874085695 0.0012205984803595157']
['59866.36627706487 2.7890266824860652 0.0006415969275539158 0.3195833725861228 0.00019769248373562232 0.0008548449323875691 5.28802285691402e-07 1.6784840997170316 0.0010383008599559997 1.1105425827690336 0.0012205389355657579']
['59866.36630860284 2.7875817927183464 0.0006414558907890327 0.3191781500734124 0.00019761525904566138 0.0008537610136321072 5.285957194538218e-07 1.6763558302175021 0.0010378952680969611 1.1112259625008443 0.001220119767631856']
['59866.3663401408 2.7909385107740965 0.0006417333386011607 0.3198504265664299 0.00019772771976750753 0.0008555592678672034 5.288965376014772e-07 1.6798866941514177 0.001038485923148674 1.1110518166226788 0.0012207680739805354']
['59866.36637167876 2.786610024357722 0.0006413319550302546 0.31943357589292876 0.0001976421606979071 0.0008544442452584826 5.286676779568847e-07 1.6776973523788277 0.0010380365582873274 1.1089126719788944 0.0012201748124280917']
['59866.36640321672 2.789168859467103 0.0006415583946290523 0.3196052971371386 0.0001976791479931903 0.000854903577776968 5.287666142741271e-07 1.6785992496698456 0.001038230819291966 1.1105696097972573 0.0012204590971624876']
['59866.36643475469 2.78767200130993 0.0006414174028552546 0.3193811675114913 0.00019763102426443045 0.0008543040594943613 5.286378894117381e-07 1.6774220982746395 0.0010379780686157062 1.1102499030352906 0.0012201699699684351']
['59866.36646629265 2.786787871241235 0.0006413650649939352 0.3189890678727947 0.000197581351389124 0.0008532552427601913 5.285050207790892e-07 1.6753627514327454 0.0010377171816655672 1.1114251198084897 0.0012199205284438009']
['59866.36649783061 2.785817371884937 0.0006412590526657366 0.31915934082990083 0.00019760092638745005 0.0008537107012946168 5.285573814134523e-07 1.6762570421738492 0.001037819991530725 1.1095603297110876 0.0012199522562160341']
['59866.36652936858 2.7868803259739146 0.0006413793848889165 0.319289460347293 0.00019762460987299808 0.0008540587544775696 5.286207317293282e-07 1.6769404430004884 0.001037944379585074 1.1099398829734262 0.0012201213261281555']
['59866.36656090654 2.7890326502298945 0.0006415431660747936 0.3195672054593782 0.00019767612074270862 0.0008548016873768634 5.287585167635701e-07 1.6783991883370708 0.0010382149198671672 1.1106334618928237 0.0012204375665195082']
['59866.3665924445 2.7890174402761443 0.000641566234964532 0.31948490606753044 0.00019767170036424608 0.0008545815469562578 5.287466928126013e-07 1.6779669436319877 0.0010381917035937294 1.1110504966441566 0.0012204299436089788']
['59866.36662398247 2.7868061091024634 0.0006413726495343215 0.3194162704014124 0.00019764884609309538 0.0008543979552665924 5.286855605399224e-07 1.6776064621922921 0.0010380716706570137 1.1091996469101713 0.0012202260729026072']
['59866.366655520425 2.7914945215041334 0.0006416741043559751 0.3200816321129763 0.00019775950990416174 0.0008561777133395248 5.289815721794618e-07 1.6811010089967244 0.0010386528881521102 1.110393512507409 0.00122087897773193']
['59866.36668705839 2.7859782875215995 0.0006412691557558879 0.31916069158801674 0.00019761524117336554 0.0008537143144010213 5.285956716477002e-07 1.6762641364916846 0.001037895174229861 1.1097141510299149 0.0012200215255533415']
['59866.36671859636 2.7928787256235243 0.0006418385589650872 0.32017744563978573 0.00019777034772280877 0.0008564340023547649 5.290105619678653e-07 1.6816042313013957 0.0010387098094685335 1.1112744943221287 0.001221013842698164']
['59866.366750134315 2.792034263299254 0.0006417799797971449 0.320134220950196 0.00019776003320672592 0.0008563183817999445 5.28982971947358e-07 1.6813772108728784 0.001038655636589947 1.1106570524263757 0.0012209369655672203']
['59866.36678167228 2.7889535960720258 0.0006415219547758234 0.31930760643731865 0.00019763132272642691 0.0008541072929637104 5.286386877596719e-07 1.677035748095161 0.0010379796361682087 1.1119178479768648 0.0012202262673616235']
['59866.36681321025 2.79167014989072 0.0006417693060691172 0.3199674668926973 0.00019773748501427966 0.0008558723358750445 5.289226583963393e-07 1.6805014017473598 0.001038537211209452 1.1111687481433603 0.0012208306112148164']
['59866.366844748205 2.7908264457675136 0.0006416551818973344 0.32017651566693495 0.00019777919564459442 0.0008564315147955021 5.290342290348951e-07 1.6815993469902046 0.0010387562796459792 1.109227098777309 0.0012209569939025933']
['59866.36687628617 2.789796036836875 0.0006415485183645303 0.3196774135683971 0.00019767985785371987 0.000855096480071303 5.287685130608865e-07 1.6789780124390603 0.0010382345475510497 1.1108180243978145 0.0012204570771412885']
['59866.36690782413 2.790667465399149 0.000641643832262628 0.3199064658657732 0.00019771984335680004 0.0008557091658755714 5.288754692031928e-07 1.6801810182025905 0.0010384445554453784 1.1104864471965585 0.001220685832724711']
['59866.366939362095 2.7876240622964366 0.000641408872073614 0.3193350643258112 0.00019762971988440353 0.0008541807393280879 5.286344003608313e-07 1.6771799596943868 0.0010379712178802708 1.1104441026020497 0.0012201596577180375']
['59866.36697090006 2.7902281791747585 0.0006415737254419916 0.3196072235222188 0.00019766139266644384 0.0008549087306123935 5.287191210301286e-07 1.6786093672385445 0.0010381375665254404 1.111618811936214 0.001220387828605677']
['59866.36700243802 2.784752477957854 0.0006411801622752748 0.3190501082633722 0.00019758796853896124 0.0008534185180524379 5.285227208144805e-07 1.675683341719392 0.0010377519356037882 1.109069136238462 0.0012198528929115826']
['59866.367033975985 2.787780023414223 0.000641466931324991 0.31890650205521986 0.000197546745870599 0.0008530343896846038 5.284124554121731e-07 1.6749291074328776 0.001037535429992642 1.1128509159813456 0.0012198194917583164']
['59866.36706551395 2.790180846406762 0.0006415931263788792 0.3202507656033924 0.00019778037181000913 0.0008566301239452744 5.290373751279984e-07 1.6819893151438676 0.001038762456985342 1.1081915312628943 0.0012209296383735016']
['59866.36709705191 2.7912916595677864 0.000641654728547017 0.31996223094250675 0.00019772885152260605 0.0008558583303732864 5.28899564902625e-07 1.680473902008964 0.001038491867240578 1.1108177575588223 0.001220731808789944']
['59866.367128589874 2.789814173123921 0.0006415331808393261 0.31992032515084134 0.00019771287041002393 0.0008557462377029043 5.288568174561788e-07 1.6802538085653433 0.001038407932825756 1.1095603645585779 0.0012205965169019954']
['59866.36716012783 2.7904915429458037 0.0006416396732416468 0.31989018318190515 0.00019771139009468943 0.0008556656117642368 5.288528578006692e-07 1.6800954999049642 0.0010384001580603438 1.1103960430408395 0.0012206458776145496']
['59866.3671916658 2.7847702756457426 0.0006411801326991561 0.3188702399303607 0.00019755251195213282 0.000852937393106144 5.284278789479441e-07 1.6747386550964323 0.0010375657140343111 1.1100316205493104 0.0012196944590788456']
['59866.367223203764 2.785878514813777 0.0006412405982189147 0.3191229073986661 0.0001976049546432418 0.0008536132464933596 5.285681564860792e-07 1.676065690119045 0.0010378411483363541 1.1098128246947319 0.001219960554273897']
['59866.36725474172 2.7865707659434795 0.0006412909243345609 0.3190642742519262 0.00019758119857516172 0.0008534564102726421 5.285046120211485e-07 1.6757577429197805 0.0010377163790712275 1.110813023023699 0.0012198808683746847']
['59866.36728627969 2.783850962131571 0.000641084256106743 0.31877219485479663 0.00019754427805853127 0.0008526751349814072 5.284058543283209e-07 1.6742237124726713 0.0010375224687948072 1.1096272496588997 0.001219607271494397']
['59866.36731781765 2.7829591932908855 0.0006409893677165645 0.31882879859398255 0.0001975499964300701 0.0008528265427946665 5.284211502459149e-07 1.674521001018816 0.0010375525022587716 1.1084381922720694 0.0012195829469409283']
['59866.36734935561 2.7837638317036095 0.0006410339988781408 0.31881144345130197 0.0001975290481930412 0.0008527801199922181 5.283651163724323e-07 1.6744298500593593 0.0010374424800054685 1.1093339816442502 0.0012195128072462367']
['59866.36738089358 2.790416465809458 0.0006416411774843252 0.3198358398076845 0.00019771598577039096 0.0008555202501401778 5.288651506494885e-07 1.679810083023553 0.0010384242950125576 1.1106063827859052 0.0012206672016220467']
['59866.36741243154 2.7884029870062967 0.0006414125238240517 0.3196836714998584 0.00019768744354553764 0.0008551132192431618 5.287888038230642e-07 1.6790108797261472 0.0010382743883694204 1.1093921072801496 0.0012204194898731476']
['59866.3674439695 2.788807577798506 0.0006415262168489172 0.31967794051975823 0.00019766977763135293 0.0008550978895992677 5.287415497463123e-07 1.6789807800407472 0.0010381816052066855 1.109826797757759 0.0012204003164101582']
['59866.36747550747 2.7826139929941207 0.0006409468017589256 0.318658126840956 0.00019752452671259276 0.0008523700175318038 5.283530219864918e-07 1.6736246157613237 0.0010374187327342056 1.108989377232797 0.0012194467719883638']
['59866.36750704543 2.7855138998632576 0.0006411851735157911 0.31916010519004395 0.00019760620423038121 0.0008537127458609206 5.285714989729709e-07 1.676261056670399 0.001037847711294019 1.1092528431928586 0.0012199370059862553']
['59866.36753858339 2.7865730097076744 0.0006412912965719191 0.31911954192085384 0.0001976039026898475 0.0008536042442676505 5.285653426443548e-07 1.6760480142901988 0.001037835623371048 1.1105249954174756 0.0012199825032339047']
['59866.36757012135 2.784372495433179 0.0006411131050641548 0.3192447080044427 0.00019764309311399753 0.0008539390476442996 5.286701720515033e-07 1.6767053991829974 0.0010380414554306593 1.1076670962501818 0.0012200639641746672']
['59866.367601659316 2.784431921992056 0.0006411189946664718 0.3189276568225613 0.0001975608723977288 0.0008530909760004415 5.284502420780794e-07 1.6750402144042085 0.0010376096239376512 1.1093917075878477 0.0012196996749241928']
['59866.36763319728 2.789181390959988 0.000641466650920367 0.32015442502793456 0.00019775015005676637 0.0008563724251418387 5.28956535776444e-07 1.6814833247265473 0.0010386037292897394 1.1076980662334408 0.0012207281313779683']
['59866.36766473524 2.789200541946399 0.0006414413435008642 0.3198669623228201 0.00019770797747070898 0.0008556034989153926 5.288437294649482e-07 1.67997354161145 0.0010383822346150683 1.109227000334949 0.0012205263873904474']
['59866.367696273206 2.788242772586565 0.0006414132815655599 0.3195345566699487 0.00019766013543769597 0.0008547143560117595 5.287157581029047e-07 1.6782277136026718 0.0010381309634332771 1.110015058983893 0.0012202978714263187']
['59866.36772781117 2.788009858151417 0.0006413514565281471 0.31976104907473285 0.00019770791601964654 0.0008553201944284682 5.288435650911608e-07 1.6794172745521683 0.0010383819118678916 1.108592583599249 0.0012204788755587675']
['59866.36775934913 2.781254031011005 0.0006408188450768822 0.3187522936482663 0.00019754658893340085 0.0008526219017815284 5.284120356251001e-07 1.6741191893291298 0.0010375346057426515 1.1071348416818751 0.0012194781057154034']
['59866.367790887096 2.7858178404225793 0.0006412452211635018 0.31901729797786194 0.00019758385153800207 0.0008533307547058292 5.28511708359802e-07 1.6755110187912918 0.0010377303126995908 1.1103068216312875 0.0012198686960327406']
['59866.367822425054 2.783800158962946 0.0006410463604850802 0.3190191665238245 0.00019755904691900867 0.0008533357528289609 5.284453591543514e-07 1.6755208325831121 0.0010376000363393314 1.108279326379834 0.00121965334079096']
['59866.36785396302 2.785357787640577 0.0006411780252503 0.31900484534589213 0.0001975771481455679 0.0008532974454968797 5.284937776364174e-07 1.675445616312459 0.0010376951058065542 1.1099121713281181 0.001219803423785468']
['59866.367885500986 2.782609087984003 0.0006409204206684262 0.318630999622317 0.00019749553875461474 0.0008522974556672872 5.282754828805701e-07 1.6734821408735137 0.00103726648505575 1.1091269471104894 0.001219303385810809']
['59866.367917038944 2.782234821201818 0.0006409096335330859 0.31882030997282473 0.0001975258672582359 0.0008528038368111825 5.283566077758287e-07 1.6744764179244997 0.0010374257734151046 1.1077584032773182 0.0012194332264217841']
['59866.36794857691 2.7848230097549393 0.0006411377821366665 0.3188800183355519 0.00019753916733759926 0.000852963549098106 5.283921837989245e-07 1.6747900122665542 0.0010374956267731055 1.1100329974883851 0.00121961257424497']
['59866.367980114876 2.786544016333423 0.0006412776879976286 0.31941067301503073 0.00019764170663271987 0.0008543829829689279 5.286664633901782e-07 1.6775770641545733 0.0010380341734911758 1.1089669521788499 0.0012201442613310495']
['59866.368011652834 2.7838524569785177 0.0006410159076467286 0.31838281929292567 0.000197442493015839 0.0008516336048067695 5.281335922665176e-07 1.6721786727569627 0.0010369878834865494 1.111673784221555 0.0012191165917803239']
['59866.3680431908 2.7875105732725953 0.0006413319548710841 0.3197620434451669 0.0001976814556531966 0.0008553228542430874 5.287727869715552e-07 1.6794224970859606 0.001038242939355024 1.1080880761866347 0.0012203503912644625']
['59866.36807472876 2.787723962122411 0.0006413020793881964 0.31984557541575137 0.0001976954470791876 0.0008555462916552678 5.288102122590741e-07 1.6798612154188624 0.001038316423735229 1.1078627467035485 0.001220397211085776']
['59866.368106266724 2.7875252078783785 0.0006413238999756709 0.3195258271966848 0.000197660155275475 0.0008546910057794817 5.287158111664441e-07 1.678181865528807 0.0010381310676232931 1.1093433423495715 0.0012202509816610198']
['59866.36813780469 2.7867859801758716 0.0006413104198161423 0.31950475409494405 0.00019766034341598543 0.0008546346379087535 5.287163144184144e-07 1.6780711874734457 0.0010381320557562262 1.108714792702426 0.0012202447376462662']
['59866.36816934265 2.7832894270876882 0.0006409692243590584 0.3188682119727484 0.000197536552416913 0.0008529319685770957 5.283851892182016e-07 1.6747280040585526 0.0010374818929459718 1.1085614230291356 0.0012195122897151179']
['59866.36820088061 2.783325066354999 0.0006409321385252622 0.31893128326679643 0.00019756572624107192 0.0008531006762781873 5.284632254925508e-07 1.6750592608550234 0.0010376351168123524 1.1082658054999754 0.0012196231556660239']
['59866.36823241858 2.782153496888254 0.0006409308048057391 0.3184220003443191 0.00019746076721886518 0.0008517384091429847 5.281824734386636e-07 1.6723844555899114 0.0010370838614436196 1.1097690412983428 0.0012191534900149945']
['59866.36826395654 2.7827044701079036 0.0006409483471431018 0.31854114230299113 0.00019747883696177098 0.0008520570987505864 5.282308077059553e-07 1.673010201171172 0.00103717876555552 1.1096942689367315 0.0012192434438719555']
['59866.3682954945 2.7864634132592614 0.000641212373090813 0.3194863795372334 0.00019764810532355736 0.0008545854883005724 5.286835790754909e-07 1.677974682443453 0.0010380677800607004 1.1084887308158085 0.0012201385263177712']
['59866.36832703246 2.7813628406984736 0.0006408340130829492 0.3184649321699352 0.00019751142826054407 0.0008518532463238714 5.283179852908548e-07 1.672609937867307 0.0010373499383431936 1.1087529028311667 0.0012193289658269523']
['59866.36835857043 2.7804885335051153 0.0006408002497945358 0.3184492444642536 0.0001974924856119893 0.0008518112837036194 5.282673161118171e-07 1.6725275444551135 0.001037250449642801 1.1079609890500017 0.001219226580837595']
['59866.36839010839 2.7806298784148042 0.000640745637313463 0.31857555542398364 0.00019750281563229633 0.000852149149478539 5.28294947604155e-07 1.6731909423528555 0.0010373047039511363 1.1074389360619488 0.0012192440365141797']
['59866.36842164635 2.7813860440655667 0.0006408241699162492 0.31847648555077 0.00019745616752629298 0.000851884150150246 5.281701698452255e-07 1.6726706173884982 0.001037059703394396 1.1087154266770685 0.0012190768823799926']
['59866.36845318432 2.7865863739691115 0.0006412311567136504 0.31950050424393367 0.0001976314580329156 0.000854623270097061 5.286390496873444e-07 1.6780488668273827 0.0010379803468115317 1.1085375071417287 0.0012200740127989423']
['59866.36848472228 2.782253635368341 0.000640894940854769 0.31840827092201895 0.0001974611898569314 0.0008517016846820626 5.281836039418128e-07 1.6723123472795116 0.0010370860811813624 1.1099412880888293 0.0012191365243455522']
['59866.36851626024 2.780269173389858 0.0006407090603220406 0.318243968095455 0.00019744139458218978 0.0008512621954885899 5.281306540960146e-07 1.6714494122660453 0.0010369821144022573 1.1088197611238129 0.0012189503704289721']
['59866.36854779821 2.785345636158784 0.0006411322887822374 0.3192975860473106 0.00019761631077060208 0.0008540804896930972 5.285985326844619e-07 1.6769831199963794 0.001037900791862406 1.1083625161624044 0.0012199543702400347']
['59866.368579336166 2.7828973223067877 0.0006409163914273948 0.3187970619675535 0.00019751746810534206 0.000852741651349738 5.283341411085878e-07 1.6743543170564785 0.001037381660217133 1.1085430052503091 0.0012193992495303449']
['59866.36861087413 2.7807227595687833 0.0006407955722414629 0.31846981629334914 0.00019749186953356863 0.0008518663107336866 5.28265668180288e-07 1.6726355897759935 0.00103724721393681 1.1080871697927899 0.001219221369655215']
['59866.3686424121 2.785246837067315 0.0006411247225714158 0.3193882775483913 0.00019763311409823513 0.0008543230779400452 5.286434794517424e-07 1.6774594409054164 0.001037989044633588 1.1077873961618985 0.0012200254778780744']
['59866.368673950055 2.785331179999395 0.0006410904367921763 0.3194196161805277 0.0001976143951742183 0.000854406904800789 5.285934087074291e-07 1.6776240345615954 0.001037890730957029 1.1077071454377998 0.0012199238162905498']
['59866.36870548802 2.7790404711354153 0.0006405849565527251 0.3182514666008775 0.0001974193393990902 0.0008512822530382335 5.280716592823828e-07 1.671488795172676 0.0010368662783565663 1.1075516759627393 0.0012187865956576045']
['59866.36873702599 2.7798804223709244 0.000640661195146477 0.3185377687312135 0.0001974920158655994 0.000852048074874548 5.282660595998851e-07 1.6729924828320037 0.0010372479824873918 1.1068879395389206 0.001219151403288647']
['59866.368768563945 2.7852869264892566 0.0006411381181040107 0.3193100776239819 0.00019763165392991313 0.0008541139030741768 5.286395736869325e-07 1.6770487270167116 0.001037981375682317 1.108238199472545 0.0012200259926531513']
['59866.36880010191 2.7793517157384464 0.0006406151321817888 0.3182489819604961 0.00019745768988940667 0.0008512756069407796 5.28174241973204e-07 1.6714757455908409 0.0010370676989989848 1.1078759701476055 0.0012189738142746708']
['59866.36883163987 2.7857318952355294 0.0006411473209082221 0.31963568096667644 0.00019766526219122736 0.000854984850662027 5.287294715174683e-07 1.678758828606494 0.0010381578896598077 1.1069730666290354 0.0012201810074618832']
['59866.368863177835 2.7856986631403444 0.0006411244076490728 0.31959607597244194 0.00019765520666466146 0.0008548789123325556 5.287025742610254e-07 1.6785508191829934 0.0010381050770202809 1.107147843957351 0.0012201240334567048']
['59866.3688947158 2.7804342620491647 0.0006406940582060214 0.31853399289016693 0.0001974698930192078 0.0008520379749793061 5.282068837955408e-07 1.67297265173407 0.0010371317910672678 1.1074616103150947 0.001219069820913839']
['59866.36892625376 2.7855842805355087 0.000641119189756685 0.31924895796701663 0.0001976008053689868 0.0008539504157544104 5.285570577044333e-07 1.6767277204150033 0.0010378193559295527 1.1088565601205054 0.0012198782033532281']
['59866.368957791725 2.7819842761321505 0.0006408269850485278 0.3186711287977374 0.0001975025224659975 0.0008524047961148563 5.282941634215398e-07 1.6736929033494612 0.001037303164212172 1.1082913727826893 0.0012192854789797878']
['59866.36898932969 2.78497661578837 0.0006411090673638408 0.31920434887681526 0.00019760414999655518 0.0008538310921037822 5.285660041583881e-07 1.67649342897487 0.001037836922250815 1.1084831868134999 0.0012198878282215862']
['59866.36902086765 2.780532643334972 0.0006407013024177473 0.3185848932978059 0.00019748518561397974 0.0008521741271050395 5.282477895442913e-07 1.6732399858078042 0.0010372121093171205 1.1072926575271678 0.001219141960000503']
['59866.369052405615 2.7857104389805425 0.0006411331958746081 0.319612290189544 0.00019764020272955126 0.0008549222833039869 5.286624406402083e-07 1.6786359778862607 0.0010380262748400802 1.1070744610942818 0.0012200616058669997']
['59866.36908394357 2.78448433495019 0.0006410760724959326 0.31904317464714016 0.00019759431029276977 0.0008533999715096339 5.28539684200472e-07 1.675646925667753 0.001037785243134295 1.1088374092824371 0.0012198265211062261']
['59866.36911548154 2.780559989509488 0.0006406990186891801 0.3188026387426125 0.00019752913500409308 0.0008527565685147321 5.283653485809706e-07 1.6743836068414522 0.001037442935945867 1.1061763826680358 0.0012193371469340457']
['59866.369147019504 2.7797690439478577 0.0006406740468863519 0.3185696229657371 0.00019748661079813367 0.0008521332809061923 5.28251601730895e-07 1.6731597844839134 0.001037219594528013 1.1066092594639443 0.0012191340047864269']
['59866.36917855746 2.7852238791100756 0.0006410838978414625 0.31936657136543084 0.0001976016882397808 0.0008542650166574601 5.285594192716767e-07 1.6773454378436494 0.0010378239928559919 1.1078784412664262 0.0012198636006616299']
['59866.36921009543 2.784912676471205 0.0006410596554680612 0.31927922741285264 0.00019760597278380403 0.0008540313826775946 5.285708798827723e-07 1.6768866985969153 0.0010378464957132565 1.1080259778742898 0.001219870005587938']
['59866.369241633394 2.7801044774619763 0.000640691096584106 0.3184097623675636 0.0001974571898605044 0.0008517056741094706 5.281729044593976e-07 1.6723201805019097 0.0010370650727967669 1.1077842969600666 0.001219011503824762']
['59866.36927317135 2.7777165764307004 0.0006404958830460267 0.3181110934844016 0.00019742273582512636 0.000850906772780009 5.280807442906601e-07 1.6707515414096723 0.001036884116728605 1.106965035021028 0.0012187549580301073']
['59866.36930470932 2.778249618456977 0.0006405236532271618 0.318228774609665 0.0001973972731543022 0.0008512215548437785 5.280126348801393e-07 1.67136961454656 0.001036750384213772 1.106880003910417 0.0012186557797470429']
['59866.36933624728 2.785169192671588 0.0006410920165452709 0.31934450511312445 0.00019760986414873823 0.000854205992235106 5.285812887897412e-07 1.677229543661368 0.0010378669335542974 1.1079396490102198 0.00121990440012465']
['59866.36936778524 2.7782097610378043 0.0006405125183959794 0.31823325149518833 0.00019743993742867035 0.0008512335299439584 5.281267563954186e-07 1.6713931276007792 0.0010369744612850334 1.106816633437025 0.0012188405636420806']
['59866.36939932321 2.778569952414255 0.0006405242054510153 0.31817626343124505 0.00019744001782566055 0.0008510810941107851 5.281269714471564e-07 1.6710938205422536 0.001036974883538133 1.1074761318720014 0.0012188470645891466']
['59866.36943086117 2.7807905127858694 0.0006407352017489976 0.31856210833737403 0.0001974874118236961 0.0008521131802297305 5.282537443725387e-07 1.673120316897973 0.0010372238015950424 1.1076701958878965 0.0012191697229490242']
['59866.36946239913 2.7808878140881963 0.0006407262790484884 0.318719279813819 0.00019750924626494448 0.0008525335939673652 5.283121487297544e-07 1.6739457973414864 0.0010373384782822715 1.10694201674671 0.0012192625981257278']
['59866.3694939371 2.779781623658211 0.0006406634021840909 0.3185887356919451 0.00019750484255935333 0.0008521844050213515 5.283003693765988e-07 1.6732601664492917 0.0010373153495764357 1.1065214572089195 0.0012192098791286828']
['59866.36952547506 2.778264844760371 0.0006405398658524176 0.3181827655979672 0.0001974450810301637 0.0008510984865809471 5.281405148761407e-07 1.671127970577559 0.001037001475998759 1.107136874182812 0.0012188779188129703']
['59866.36955701302 2.7791940223505107 0.0006406046671178018 0.31849038704635 0.0001974853956174727 0.0008519213348853372 5.282483512769632e-07 1.672743629445116 0.0010372132122766426 1.1064503929053948 0.001219092115983998']
['59866.36958855098 2.784489080024496 0.0006409871127853187 0.31936905785725506 0.00019762300417733433 0.0008542716677072884 5.28616436697362e-07 1.6773584971494488 0.001037935946309529 1.1071305828750473 0.0012199079913658719']
['59866.369620088946 2.784933965927042 0.000641041716421735 0.3195174327414678 0.0001976328972748688 0.0008546685516779296 5.286428994767755e-07 1.6781377770035077 0.0010379879058554033 1.1067961889235343 0.0012199808912007636']
['59866.36965162691 2.779855386094714 0.0006406455468280598 0.3186517963507262 0.00019751145648002908 0.0008523530842744547 5.283180607743932e-07 1.673591367388268 0.0010373500865547747 1.1062640187064459 0.0012192300516087283']
['59866.36968316487 2.7787763572755337 0.0006405450861825234 0.31822307682835865 0.00019744335513776062 0.0008512063140024414 5.281358983331626e-07 1.6713396892245729 0.0010369924114378183 1.1074366680509609 0.0012188729502340258']
['59866.369714702836 2.784235876881936 0.0006409748822520688 0.31927783429452194 0.00019760009946188578 0.0008540276562629955 5.285551694925932e-07 1.6768793817989598 0.0010378156484342742 1.1073564950829764 0.0012197992129088732']
['59866.3697462408 2.784070727212942 0.0006409826501401097 0.319517467389865 0.00019765435025577614 0.0008546686443579914 5.287002834760269e-07 1.6781379589803833 0.0010381005790744545 1.1059327682325588 0.0012200457245756637']
['59866.36977777876 2.77804355958866 0.0006405078182529461 0.3180656132205901 0.00019739289533463505 0.0008507851188506188 5.280009247685428e-07 1.6705126744778893 0.0010367273914634195 1.1075308851107708 0.0012186278962233285']
['59866.369809316726 2.78268628032421 0.0006408748300272874 0.3193353361437469 0.00019764575607776166 0.0008541814664065429 5.286772951413578e-07 1.6771813873095949 0.0010380554415848828 1.1055048930146152 0.0012199506742350242']
['59866.369840854684 2.7838189032394043 0.0006409825873643693 0.3191225135406366 0.00019757221234846073 0.0008536121929731533 5.284805750060358e-07 1.676063621536957 0.0010376691825024198 1.1077552817024472 0.0012196786501450132']
['59866.36987239265 2.7836150376790223 0.0006409140307351123 0.31915671315508454 0.0001975804721903574 0.0008537036725982159 5.285026690340528e-07 1.6762432413607382 0.0010377125640249863 1.107371796318284 0.0012196795318149926']
['59866.369903930616 2.778299494055922 0.000640568777536407 0.3182054923679025 0.00019745673078354155 0.0008511592778040684 5.281716764868279e-07 1.6712473338650344 0.0010370626616782645 1.1070521601908876 0.001218945168168648']
['59866.369935468574 2.780309554452381 0.0006406542123445643 0.31845632136972246 0.00019746687343196595 0.000851830213526933 5.281988067831771e-07 1.6725647130762735 0.0010371159318905774 1.1077448413761073 0.0012190353874995158']
['59866.36996700654 2.7771399964529824 0.0006404124045403079 0.31806215092232193 0.00019740052578440487 0.000850775857642487 5.280213352525575e-07 1.6704944901382455 0.0010367674673550675 1.106645506314737 0.0012186118451972061']
['59866.369998544506 2.7840146700376924 0.0006409465099742141 0.3191508802953483 0.00019758040080734154 0.0008536880704392348 5.285024780935515e-07 1.6762126065932161 0.0010377121891141888 1.1078020634444763 0.0012196962802617246']
['59866.370030082464 2.7781700668006852 0.0006404965302260683 0.31822681383716667 0.00019743867373346144 0.0008512163100263771 5.281233761712328e-07 1.6713593163716738 0.0010369678242303647 1.1068107504290114 0.0012188265150220065']
['59866.37006162043 2.784622354345946 0.0006410312375650696 0.3189970214691238 0.00019753827926959435 0.0008532765176202103 5.28389808329802e-07 1.675404524522709 0.0010374909625503906 1.1092178298232371 0.0012195526003038742']
['59866.37009315839 2.7838778253099856 0.0006409483616685174 0.31885238570026486 0.0001975102342039446 0.0008528896353082474 5.283147913411046e-07 1.6746448828795426 0.0010373436670375242 1.109232942430443 0.0012193837320008884']
['59866.370124696354 2.784338734723602 0.0006410300339441843 0.31908724356471174 0.00019758242263289585 0.0008535178502670831 5.285078862201237e-07 1.6758783800667634 0.0010377228079458817 1.1084603546568386 0.0012197492080544949']
['59866.37015623432 2.785053294366837 0.0006410622895670383 0.3193709910788085 0.0001976007496199972 0.0008542768388294115 5.285569085829667e-07 1.6773686506239942 0.0010378190631302375 1.107684643742843 0.0012198480507429838']
['59866.37018777228 2.7799140201499757 0.0006406543986367797 0.3186576916983524 0.00019752044982800234 0.0008523688535806052 5.283421168380047e-07 1.6736223303484896 0.0010373973205252225 1.106291689801486 0.0012192748907139705']
['59866.37021931024 2.781033675246639 0.0006407980176685385 0.3182192561020593 0.00019743899497198813 0.0008511960940448491 5.281242354434922e-07 1.6713196223847653 0.0010369695114075008 1.1097140528618736 0.0012189864097013714']
['59866.37025084821 2.779708194959919 0.0006406506383461279 0.3184816793868164 0.0001974835813020642 0.0008518980430020171 5.282434982136759e-07 1.6726978959391616 0.0010372036833091608 1.1070102990207575 0.0012191081662770499']
['59866.37028238617 2.7813919714037603 0.000640804095966767 0.3185219387405446 0.00019748370141094577 0.000852005731660026 5.282438194896795e-07 1.672909342124709 0.0010372043141331187 1.1084826292790513 0.001219189353080209']
['59866.37031392413 2.78362091237949 0.0006409405769716727 0.3190491998437013 0.00019757487988776305 0.0008534160881451937 5.284877103348737e-07 1.6756785706076749 0.0010376831926878312 1.1079423417718153 0.0012196684924993312']
['59866.37034546209 2.779186566906443 0.0006406190027936861 0.3181300564029986 0.0001974066214856874 0.0008509574961788353 5.280376404792925e-07 1.6708511365703709 0.001036799482592896 1.108335430336072 0.0012187476661906982']
['59866.37037700006 2.7817745044267803 0.0006408385148973593 0.31870289757293585 0.00019751649598430727 0.0008524897735536598 5.283315408082857e-07 1.6738597561603776 0.001037376554539429 1.1079147482664027 0.0012193539757117085']
['59866.37040853802 2.777304663128816 0.0006404168012323652 0.3180691581930103 0.0001973812962052482 0.0008507946012016069 5.27969898570602e-07 1.6705312930305163 0.0010366664716662196 1.1067733700982996 0.001218528232244778']
['59866.37044007598 2.784546183805915 0.0006410100452536385 0.31935241490498845 0.0001976248157478858 0.0008542271499237444 5.286212824185053e-07 1.6772710866858638 0.0010379454608607447 1.1072750971200513 0.0012199281363414385']
['59866.37047161395 2.778557881702977 0.0006405306234215683 0.31827592381517733 0.00019744050537856645 0.0008513476729802515 5.281282755892572e-07 1.6716172469284525 0.00103697744421516 1.1069406347745245 0.0012188526159268923']
['59866.37050315191 2.784724364113762 0.0006410909529071745 0.3191490227447553 0.00019760062123352472 0.0008536831017273201 5.285565651654588e-07 1.6762028505501856 0.0010378183888315375 1.1085215135635764 0.0012198625406562484']
['59866.37053468987 2.783511202609902 0.0006409174393123647 0.3193151883146235 0.00019760385409171773 0.0008541275735225505 5.285652126505299e-07 1.6770755688793253 0.0010378353681287696 1.1064356337305767 0.0012197858071619366']
['59866.37056622784 2.7843131732300255 0.0006410248279584238 0.31934211153637626 0.00019760505678967992 0.0008541995897213052 5.285684297148279e-07 1.6772169723549175 0.0010378416848197476 1.107096200875108 0.0012198476104860881']
['59866.370597765796 2.7799341053887394 0.0006407009298143416 0.31845007341746423 0.000197481052358746 0.000851813501048175 5.282367336114929e-07 1.6725318982009678 0.0010371904010438341 1.1074022071877716 0.0012191232954391574']
['59866.37062930376 2.7836347489976916 0.0006409850304455537 0.31920493555212126 0.00019760028587579792 0.000853832661385714 5.285556681261322e-07 1.6764965102527378 0.0010378166274989387 1.1071382387449538 0.0012198053785619073']
['59866.37066084173 2.777938068061138 0.000640454126540845 0.31858099297308107 0.00019749447791200987 0.0008521636942317686 5.282726452613364e-07 1.6732195009090394 0.0010372609134034134 1.1047185671520985 0.0012190536045136326']
['59866.370692379685 2.779140681611077 0.0006405514195112397 0.31833875268708284 0.00019745673110004827 0.0008515157322329011 5.281716773334431e-07 1.6719472304993848 0.0010370626633405898 1.107193451111692 0.0012189360478437503']
['59866.37072391765 2.7830794252930264 0.0006408648553411941 0.3192961582732664 0.00019761796745090427 0.0008540766705788659 5.286029640938604e-07 1.676975621183122 0.0010379094929144131 1.1061038041099045 0.0012198212485005104']
['59866.37075545562 2.7801013467806204 0.0006406930514297512 0.3184213515090658 0.0001974681678891588 0.0008517366735910887 5.282022692917631e-07 1.6723810478417325 0.0010371227305102878 1.107720298938888 0.0012190615834696296']
['59866.370786993575 2.777718206411952 0.0006404902393811825 0.3182074870551743 0.0001974356375154472 0.0008511646133391815 5.281152546736652e-07 1.671257810163731 0.001036951877707181 1.1064603962482211 0.001218809641996244']
['59866.37081853154 2.7780626145292624 0.0006405367267606413 0.3181979140833696 0.0001974184531049101 0.0008511390068554369 5.280692885580165e-07 1.6712075319504707 0.0010368616234501583 1.1068550825787917 0.0012187572869578809']
['59866.3708500695 2.7839541696443604 0.0006409764009840054 0.31905057305404405 0.00019754810654413807 0.0008534197613084535 5.284160950410752e-07 1.67568578284687 0.00103754257638728 1.1082683867974903 0.001219567687516672']
['59866.370881607465 2.7839294049122865 0.0006410314181948366 0.31904782459582864 0.00019755272704541444 0.0008534124095318003 5.284284542951541e-07 1.6756713476671674 0.0010375668437259161 1.108258057245119 0.0012196172491040964']
['59866.37091314543 2.7832273462867936 0.000640941659856228 0.3189094089412275 0.00019753417065339367 0.0008530421652354797 5.283788183032877e-07 1.674944374691321 0.0010374693836837905 1.1082829715954725 0.0012194871600064024']
['59866.37094468339 2.777175161787783 0.0006404118290638411 0.31793694728766375 0.00019737594431096461 0.0008504409538214968 5.279555829331207e-07 1.6698369080234443 0.0010366383629777556 1.1073382537643386 0.001218501705539264']
['59866.370976221355 2.7778353978606143 0.0006404948277379171 0.31817934253257946 0.00019742556655010982 0.0008510893303157876 5.280883161204693e-07 1.6711099922929595 0.0010368989839816692 1.1067254055676548 0.0012187670521232685']
['59866.37100775932 2.7787006559593044 0.0006405714851769528 0.31842168269612947 0.00019746845160085254 0.0008517375594744209 5.282030281845105e-07 1.6723827872695876 0.0010371242205927129 1.1063178686897168 0.0012189989649552002']
['59866.37103929728 2.7836642132068468 0.0006409656373143867 0.3192561264185034 0.00019760533712330126 0.0008539695904516951 5.285691795716606e-07 1.676765369845081 0.0010378431571601958 1.1068988433617657 0.0012198177597830262']
['59866.371070835245 2.7808380082961097 0.0006407515237499161 0.3182869394809915 0.0001974408606532674 0.0008513771384872394 5.281292259039599e-07 1.671675102316132 0.0010369793101537156 1.1091629059799777 0.0012189703051652715']
['59866.3711023732 2.7832249316899196 0.0006409174014527328 0.3188168533810126 0.0001975242227731696 0.000852794590867096 5.283522089871372e-07 1.6744582635557388 0.001037417136413706 1.1087666681341808 0.0012194299612563802']
['59866.37113391117 2.7791797039916446 0.0006406170809747132 0.318432071884307 0.00019748012689612277 0.0008517653492332977 5.282342581165158e-07 1.6724373523335454 0.0010371855404208128 1.1067423516580992 0.0012190750960029393']
['59866.371165449134 2.7787330969865494 0.0006405611961725394 0.3184935083808137 0.00019747945836030172 0.0008519296840585966 5.282324698681031e-07 1.6727600230084754 0.0010371820292032654 1.105973073978074 0.0012190427423778864']
['59866.37119698709 2.7827870943978397 0.0006408355057497061 0.31930401611410697 0.00019760505222729107 0.0008540976893051148 5.285684175110171e-07 1.6770168913556038 0.0010378416608576213 1.1057702030422358 0.0012197481127024495']
['59866.37122852506 2.7782700539433165 0.0006405130132232045 0.3184893916785998 0.00019746499835388614 0.0008519186724030239 5.281937911874614e-07 1.6727384016733184 0.0010371060837914188 1.105531652269998 0.0012189528084160775']
['59866.371260063024 2.778216089782106 0.00064048961283784 0.3181470655514147 0.00019742804865582075 0.0008510029934905699 5.280949554380017e-07 1.6709404703330606 0.0010369120202511596 1.1072756194490456 0.0012187754025637814']
['59866.37129160098 2.779275716132176 0.0006406058964978312 0.31859224995315205 0.0001975075826404285 0.0008521938052237448 5.283076987454658e-07 1.6732786237035298 0.001037329740758553 1.1059970924286462 0.0012191919068341936']
['59866.37132313895 2.7775794471850865 0.0006404586279938218 0.31822632503167125 0.00019744446105214702 0.0008512150025337585 5.281388565136875e-07 1.6713567491159205 0.0010369982198116965 1.106222698069166 0.001218832458570232']
['59866.37135467691 2.783364475401412 0.0006409203068484993 0.3193003730310312 0.00019761347128008765 0.0008540879445205836 5.285909374079705e-07 1.6769977575159203 0.001037885878571889 1.106366717885492 0.0012198302901099466']
['59866.37138621487 2.778878991083531 0.0006406107935334245 0.31828743027175344 0.00019745433796179035 0.0008513784512901938 5.281652759925481e-07 1.6716776799987052 0.0010370500943371343 1.1072013110848258 0.0012189565566320167']
['59866.37141775284 2.7790408729725 0.0006405673257566577 0.318310506354301 0.000197420382963949 0.0008514401768801878 5.280744506858402e-07 1.671798877911245 0.0010368717592644382 1.1072419950612549 0.0012187819919850995']
['59866.3714492908 2.7840039808078605 0.0006409733086416253 0.3188832388392796 0.0001975346555482233 0.0008529721635365516 5.28380115335372e-07 1.6748069266768888 0.0010374719304003326 1.1091970541309717 0.0012195059609364707']
['59866.37148082876 2.7806691207793284 0.000640741572861078 0.3182170569747108 0.00019741612496703765 0.0008511902116584961 5.280630610848971e-07 1.6713080723461704 0.0010368493958352817 1.109361048433158 0.0012188545577042722']
['59866.37151236673 2.783895024105889 0.0006409693146261241 0.3193178579605008 0.00019762247971055977 0.0008541347144862088 5.28615033815351e-07 1.6770895901286806 0.0010379331917571416 1.1068054339772084 0.0012198962959380812']
['59866.37154390469 2.7792818399854444 0.0006405973155781834 0.31833747367769694 0.0001974461072899811 0.0008515123110452368 5.281432599908102e-07 1.6719405130131142 0.0010370068660188084 1.1073413269723302 0.0012189126961748022']
['59866.37157544265 2.7832868829108595 0.000640946567466693 0.31897404167368226 0.00019755016016582942 0.000853215049585996 5.284215882182755e-07 1.67528383231976 0.0010375533622154905 1.1080030505910994 0.0012195611841117299']
['59866.37160698061 2.779875667499121 0.0006406194156495646 0.3186990221198205 0.00019753447768615154 0.0008524794072087853 5.283796395769197e-07 1.6738394018898135 0.001037470996250796 1.1060362656093075 0.0012193191968343684']
['59866.371638518576 2.7824342210044035 0.0006408268785552012 0.3189050277562612 0.00019752554540152195 0.0008530304461221354 5.283557468499969e-07 1.6749213642660779 0.0010374240829911867 1.1075128567383257 0.0012193882959291135']
['59866.37167005654 2.7836735622765563 0.0006409572953672957 0.3193762279481117 0.00019763755809814194 0.0008542908467896792 5.286553665870746e-07 1.6773961551896623 0.001038012384969233 1.106277407086894 0.0012199573623016804']
['59866.3717015945 2.781936559330523 0.0006407993497875217 0.31906968480531117 0.00019759292277005241 0.0008534708828157695 5.28535972753428e-07 1.6757861596917605 0.0010377779557250654 1.1061503996387627 0.0012196749124570065']
['59866.371733132466 2.7769364976682476 0.0006403749949151118 0.3184748080419324 0.00019749986375275068 0.0008518796630271605 5.282870517012794e-07 1.6726618069429224 0.001037289200382094 1.1042746907253251 0.0012190361025588429']
['59866.37176467043 2.7825228219353697 0.0006408533444235923 0.31878092214586234 0.00019750755901939648 0.0008526984793765822 5.283076355622051e-07 1.6742695490854116 0.0010373296166985109 1.1082532728499581 0.001219321837227064']
['59866.37179620839 2.783575799109217 0.0006409325116084298 0.3194285475136422 0.0001976193208914086 0.0008544307949825297 5.286065843753134e-07 1.6776709428237513 0.0010379166013204236 1.1059048562854656 0.0012198628430004864']
['59866.371827746356 2.7829749089018105 0.0006409048130992215 0.3190663570222705 0.00019757530314468973 0.000853461981418787 5.284888424933961e-07 1.675768681839656 0.0010376854156758917 1.1072062270621545 0.0012196515901519566']
['59866.371859284314 2.7827919450504757 0.000640888435867826 0.31903858448172906 0.0001975569119991297 0.0008533876934001418 5.284396485148245e-07 1.6756228176561403 0.0010375888235248409 1.1071691273943354 0.0012195608037046664']
['59866.37189082228 2.7784105975159283 0.0006405339051915624 0.31829841216072596 0.00019746117052615378 0.00085140782644842 5.281835522344378e-07 1.6717353579870062 0.001037085979654169 1.106675239528922 0.0012189466817277945']
['59866.371922360246 2.780758949956591 0.000640710804809816 0.3186107507723229 0.00019748988947610173 0.0008522432925652959 5.28260371778045e-07 1.673375791871444 0.0010372368144753244 1.1073831580851468 0.0012191679723085578']
['59866.371953898204 2.783270405559189 0.0006409343858036509 0.3189226283364974 0.0001975373022031541 0.0008530775254388729 5.283871948011685e-07 1.675013804288327 0.0010374858308989186 1.108256601270862 0.0012194973293211933']
['59866.37198543617 2.778940374683873 0.0006406161072623877 0.3186252649556569 0.00019748745748751598 0.0008522821161623135 5.282538665174573e-07 1.6734520218259292 0.0010372240414260295 1.1054883528579436 0.0012191073410476047']
['59866.372016974135 2.7791206568331495 0.0006405954541746292 0.31817385065959 0.0001974117951865149 0.0008510746402530463 5.280514794719106e-07 1.6710811484222163 0.00103682665539136 1.1080395084109331 0.001218758404787115']
['59866.372048512094 2.778675361517096 0.0006405541297746973 0.31827604691906514 0.0001974377798610097 0.0008513480022675164 5.281209851759522e-07 1.671617893482485 0.0010369631295221097 1.107057468034611 0.0012188527906025844']
['59866.37208005006 2.783703390078102 0.0006409013190139881 0.31955358495942776 0.00019764770371301008 0.0008547652542693928 5.286825048182842e-07 1.678327652097835 0.0010380656707616076 1.105375737980267 0.0012199732937763909']
['59866.37211158802 2.7829480759386556 0.0006408669190373352 0.3186771814774914 0.00019750756969521765 0.0008524209862644665 5.28307664118671e-07 1.6737246926338836 0.0010373296727690005 1.109223383304772 0.0012193290195527406']
['59866.372143125984 2.779210168124486 0.0006405615206309803 0.318641894684943 0.00019750344326552384 0.0008523265985760641 5.282966264433248e-07 1.6735393628410873 0.0010373080003441377 1.1056708052833986 0.0012191500930119421']
['59866.37217466395 2.7838874940970224 0.000640994280817378 0.3191319175378636 0.0001975458604727976 0.0008536373474713633 5.284100870855059e-07 1.6761130122786954 0.0010375307797941052 1.107774481818327 0.0012195670490222142']
['59866.37220620191 2.7777125884543947 0.000640478921044479 0.3180560788545078 0.00019740152722959496 0.0008507596156322785 5.280240139912507e-07 1.6704625990257764 0.0010367727270461922 1.1072499894286183 0.0012186512773755657']
['59866.37223773987 2.779188936393732 0.0006405898962384289 0.31868591822729897 0.0001974988544491173 0.0008524443559605745 5.282843519422485e-07 1.6737705789248898 0.001037283899417633 1.105418357468842 0.001219144496421081']
['59866.37226927784 2.7827100885587948 0.0006408989890856399 0.3189847004769175 0.00019755295366794874 0.0008532435605309091 5.284290604816507e-07 1.6753398134291888 0.001037568033970319 1.107370275129606 0.0012195486621402313']
['59866.3723008158 2.778373470896452 0.0006405263965203516 0.31832073168760294 0.00019745500769050893 0.0008514675283480829 5.281670674318102e-07 1.6718525823928727 0.0010370536118199 1.106520888503579 0.0012189151973898951']
['59866.37233235376 2.7847121837169695 0.000641044836250602 0.31946323372692714 0.00019763692648085948 0.0008545235761976799 5.286536770910638e-07 1.677853118313693 0.001038009067651573 1.1068590654032764 0.001220000535495968']
['59866.37236389172 2.7810384464634956 0.0006407814140050252 0.31858393786714123 0.00019750543709876913 0.0008521715714493578 5.283019596940254e-07 1.6732349677896075 0.0010373184721574008 1.1078034786738882 0.0012192745520239663']
['59866.37239542969 2.780221373931302 0.0006406555870321105 0.31849155957155784 0.00019747537720026873 0.0008519244712413493 5.282215532833502e-07 1.6727497876657451 0.0010371605945392265 1.1074715862655569 0.0012190741076983055']
['59866.37242696765 2.779507399365877 0.0006406245878483751 0.318211030800591 0.00019745090843173937 0.0008511740924080911 5.281561024352356e-07 1.6712764222720116 0.0010370320820994715 1.1082309770938654 0.001218948482036655']
['59866.37245850561 2.780347587001795 0.0006406579540131145 0.31841755887285816 0.00019744550808716796 0.000851726528770924 5.28141657199388e-07 1.672361128533919 0.00103700371894521 1.107986458467876 0.0012189418883385976']
['59866.37249004358 2.776400961787922 0.0006402926739976232 0.31799877624274886 0.00019737526477874704 0.000850606338423648 5.279537652707439e-07 1.6701616399304038 0.0010366347940060244 1.1062393218575182 0.0012184360485962894']
['59866.37252158154 2.7775473542915585 0.0006404669784007706 0.31805978728364176 0.00019739344704093834 0.0008507695352092158 5.280024005128336e-07 1.6704820760695471 0.0010367302890805586 1.1070652782220114 0.001218608896536896']
['59866.3725531195 2.777261293260214 0.0006404352782662236 0.31809776868028117 0.00019743489193769216 0.0008508711306213284 5.281132603478639e-07 1.6706815581947543 0.001036947961857627 1.1065797350654598 0.0012187774289215492']
['59866.37258465747 2.7821982112195722 0.0006408126016478596 0.3191167322599435 0.0001975897929011063 0.0008535967287815617 5.285276007515119e-07 1.6760332576677708 0.0010377615173377433 1.1061649535518014 0.001219667888114561']
['59866.372616195426 2.784334594335764 0.0006410060231355133 0.31939448323031194 0.00019761355821351843 0.0008543396773510189 5.285911699438567e-07 1.6774920337726469 0.0010378863351550337 1.1068425605631171 0.0012198757176030489']
['59866.37264773339 2.783006967371463 0.000640864342094115 0.3190095326647653 0.00019755304474406704 0.0008533099834795437 5.284293040986999e-07 1.6754702345838515 0.0010375685123112765 1.1075367327876113 0.0012195308617282132']
['59866.37267927136 2.783192005098535 0.0006408612447833238 0.31935789325853425 0.00019761171066457308 0.0008542418038236909 5.285862279850793e-07 1.6772998595511255 0.0010378766316416655 1.1058921455474096 0.0012197913910062985']
['59866.372710809315 2.7830516698987813 0.0006408631423215675 0.31903504461877835 0.00019755870473089224 0.0008533782247163355 5.284444438446002e-07 1.675604225938962 0.0010375982391328375 1.1074474439598192 0.0012195555227368037']
['59866.37274234728 2.779316961003212 0.0006405980707471263 0.31843627091542825 0.0001974718950633589 0.0008517765811082412 5.282122390093717e-07 1.6724594060684257 0.0010371423060050362 1.106857554934786 0.0012190283225382355']
['59866.37277388524 2.783049679027386 0.0006408727373631701 0.31899782531949494 0.00019757096362280413 0.0008532786678178587 5.284772348235011e-07 1.675408746425919 0.0010376626240693495 1.107640932601467 0.0012196153438219163']
['59866.372805423205 2.7769476981985495 0.0006404246923483543 0.3180091790291194 0.0001973883318769407 0.000850634164555964 5.279887180988008e-07 1.6702162764134423 0.001036703423723428 1.1067314217851072 0.0012185638166831321']
['59866.37283696117 2.7831036519286387 0.0006408798508526085 0.3190291863366542 0.00019754608551423433 0.0008533625545556955 5.284106890427673e-07 1.675573457650495 0.001037531961734424 1.1075301942781437 0.001219507915041696']
['59866.37286849913 2.7772299765125847 0.0006404981850679552 0.31795330115664805 0.0001974159400781786 0.0008504846983439762 5.280625665306813e-07 1.6699228001924793 0.00103684842478035 1.1073071763201054 0.0012187258022397153']
['59866.372900037095 2.7767834030571956 0.0006404178374320003 0.318031039978645 0.00019740750900747227 0.0008506926398194545 5.280400144873457e-07 1.6703310923248162 0.0010368041439468081 1.1064523107323794 0.0012186459040288747']
['59866.37293157506 2.778230077161221 0.0006405163159375623 0.3181460014900723 0.00019740086938115108 0.0008510001472616221 5.280222543302145e-07 1.6709348817755902 0.0010367692719598272 1.107295195385631 0.0012186679918100487']
['59866.37296311302 2.7779787629664905 0.0006405148416605734 0.3183000311188169 0.0001974307397448989 0.0008514121569556945 5.281021537594989e-07 1.671743860918156 0.0010369261541223682 1.1062349020483344 0.0012188006857113572']
['59866.372994650985 2.783342269108963 0.0006409004303009818 0.31926436652609375 0.00019758732393355708 0.000853991631692949 5.285209965768936e-07 1.6768086477210806 0.0010377485500712032 1.1065336213878822 0.0012197030026751875']
['59866.37302618894 2.7827665123346965 0.0006408411910629164 0.3191487634182445 0.00019758724867800244 0.0008536824080618399 5.28520795277843e-07 1.6762014885412002 0.0010377481548214415 1.1065650237934963 0.0012196715398000578']
['59866.37305772691 2.7835409255620416 0.0006408992713061547 0.31946115584696666 0.00019762712316408039 0.0008545180181326906 5.286274544637682e-07 1.6778422050786066 0.0010379575796432795 1.105698720483435 0.00121988024539284']
['59866.373089264875 2.78319123615079 0.0006409388377649889 0.31895797084123567 0.00019755527369589833 0.0008531720621503072 5.284352662617565e-07 1.6751994266871622 0.0010375802189910629 1.1079918094636279 0.0012195799705624379']
['59866.37312080283 2.778387959598304 0.0006404808487451457 0.31838662189220523 0.0001974564590490909 0.0008516437762768861 5.281709496316845e-07 1.6721986443918342 0.001037061234501528 1.1061893152064697 0.0012188977486709603']
['59866.3731523408 2.7792903245959355 0.0006406164819087822 0.3181823755256797 0.00019742346102400547 0.0008510974431871198 5.280826841055564e-07 1.67112592187857 0.0010368879255462473 1.1081644027173656 0.0012188215812976011']
['59866.373183878764 2.7828803634377373 0.0006408759882582047 0.3192753615842201 0.00019760508495207882 0.0008540210420769892 5.285685050456681e-07 1.6768663948751055 0.0010378418327315064 1.1060139685626318 0.001219769528268936']
['59866.37321541672 2.779785799274238 0.0006406714547360446 0.31838936435665477 0.00019747721901730613 0.0008516511120209768 5.282264799100019e-07 1.6722130480916744 0.0010371702679480366 1.1075727511825635 0.0012190906765409215']
['59866.37324695469 2.778971560234641 0.0006405952092490555 0.31834106286456976 0.00019745761634997285 0.0008515219116642703 5.281740452645585e-07 1.6719593637845052 0.0010370673127624624 1.107012196450136 0.0012189630155641296']
['59866.37327849265 2.7770580539044945 0.0006404442151977407 0.3179374129989915 0.00019736988589671772 0.0008504421995401499 5.279393774444703e-07 1.6698393539863 0.0010366065435751981 1.1072186999181945 0.0012184916573219405']
['59866.37331003061 2.7829002767173945 0.000640842435920051 0.31933619158684345 0.00019759595704868442 0.0008541837546081791 5.285440890633944e-07 1.6771858801830013 0.0010377938920624183 1.1057143965343932 0.0012197111092705547']
['59866.37334156858 2.7827907180922224 0.0006408696083219654 0.319155909186696 0.00019758533294784284 0.0008537015220848861 5.285156709429769e-07 1.6762390188376892 0.0010377380932134605 1.1065516992545332 0.0012196779103423403']
['59866.37337310654 2.7774726692995824 0.0006404230235560608 0.31848117625623623 0.00019749081316896834 0.0008518966971916163 5.282628425391478e-07 1.6726952534466188 0.0010372416658034052 1.1047774158529635 0.0012190208867690945']
['59866.3734046445 2.7838356388822505 0.000640955560543944 0.31942874076886496 0.00019761498634623462 0.0008544313119157058 5.285949900174899e-07 1.677671957819669 0.0010378938358520727 1.1061636810625814 0.0012198555837032229']
['59866.37343618247 2.7830525327294082 0.0006409315971541516 0.3190238902615519 0.00019756066603558056 0.0008533483882274347 5.284496900855423e-07 1.6755456421299997 0.0010376085401028392 1.1075068905994085 0.0012196002602184524']
['59866.37346772043 2.7822589194501557 0.0006408294505218104 0.3188485424402944 0.00019751299119576203 0.0008528793550759469 5.283221659440593e-07 1.6746246976906223 0.0010373581470365652 1.1076342217595334 0.0012193335515269074']
['59866.37349925839 2.783465256619663 0.0006409854484072315 0.3188206576786297 0.00019751314254722884 0.0008528047668800498 5.283225707900104e-07 1.6744782441104504 0.0010373589419497313 1.1089870125092125 0.0012194162207847185']
['59866.37353079635 2.7796351062455713 0.000640638812293738 0.318492051916128 0.00019746053316459494 0.0008519257882005434 5.281818473732172e-07 1.6727523735090757 0.0010370826321669903 1.1068827327364956 0.0012189989638057715']
['59866.37356233432 2.7770785207797504 0.0006404038298946686 0.3180811306967519 0.0001973969330567002 0.0008508266261285257 5.280117251622487e-07 1.6705941738274788 0.0010367485979868708 1.1064843469522716 0.0012185912853666327']
['59866.37359387228 2.7799491733651966 0.000640638103537659 0.3184219155178894 0.00019744790907953356 0.0008517381822430587 5.281480795490234e-07 1.6723840100729486 0.001037016329199231 1.107565163292248 0.0012189421835059186']
['59866.37362541024 2.7775989058328605 0.0006404497706743469 0.31820062033638946 0.00019741715276207724 0.0008511462457385523 5.28065810306091e-07 1.6712217454642304 0.0010368547939184729 1.10637716036863 0.0012187057776299178']
['59866.373656948206 2.780008144937086 0.0006406572880606421 0.3183013780301836 0.00019745178025418656 0.0008514157597725334 5.281584344495544e-07 1.671750935032477 0.0010370366609988792 1.1082572099046089 0.0012189695636072792']
['59866.37368848617 2.7779226837370827 0.0006404953457060724 0.3180625709365248 0.00019740110438473086 0.000850776981127135 5.280228829349434e-07 1.6704966960951932 0.001036770506222326 1.1074259876418895 0.0012186580203008715']
['59866.37372002413 2.7785990194081944 0.0006405589481417168 0.31806434896134955 0.00019741108291204158 0.0008507817371177198 5.280495742281582e-07 1.6705060344608695 0.001036822914454 1.1080929849473249 0.001218736034578985']
['59866.373751562096 2.776185511699274 0.0006403375067952584 0.31776014070086533 0.00019737329509616225 0.0008499680186574602 5.279484966199928e-07 1.6689083020003432 0.0010366244490344657 1.1072772096989307 0.0012184508077656552']
['59866.373783100054 2.7830753919381492 0.0006408846418613097 0.31917147124736983 0.00019758209827114837 0.0008537431486207002 5.285070185936453e-07 1.6763207523496317 0.0010377211043652752 1.1067546395885175 0.0012196713551685904']
['59866.37381463802 2.782862615017168 0.0006408450388601641 0.3189006834454343 0.0001975375404845715 0.0008530188256424308 5.283878321736967e-07 1.6748985475075333 0.0010374870823769513 1.1079640675096347 0.001219451438119093']
['59866.373846175986 2.783187695734894 0.0006408968305889179 0.31921647834080813 0.00019758126904986293 0.000853863536879438 5.285048005320236e-07 1.6765571341429 0.0010377167492114652 1.106630561591994 0.0012196740544313186']
['59866.373877713944 2.777776440818872 0.0006404595986689404 0.3183783552561632 0.00019745780996871146 0.0008516216640753932 5.281745631700935e-07 1.6721552271857312 0.0010370683296676024 1.1056212136331407 0.0012188926195226268']
['59866.37390925191 2.784303040436336 0.0006410400733058125 0.3191640206025813 0.00019759595202490616 0.0008537232190921738 5.285440756254256e-07 1.6762816208118767 0.0010377938656770283 1.1080214196244593 0.0012198149381036417']
['59866.373940789876 2.7783053350941196 0.0006405837257758253 0.3181880071631404 0.0001974367523938017 0.0008511125071020705 5.281182368316662e-07 1.6711554998064095 0.0010369577331607231 1.10714983528771 0.0012188637537028752']
['59866.373972327834 2.7802565705064497 0.0006406375981898247 0.3185964843986331 0.00019748421789393144 0.000852205131827603 5.282452010160692e-07 1.6733008634381992 0.0010372070267538416 1.1069557070682505 0.0012191041582087937']
['59866.3740038658 2.78356395640293 0.0006409589183620267 0.31898292339606815 0.00019754189432494572 0.0008532388070653385 5.283994781437301e-07 1.6753304800213664 0.0010375099491856392 1.1082334763815638 0.00121953074159162']
['59866.37403540376 2.7820058474045473 0.0006407825479507659 0.3188117222064195 0.00019750456844894505 0.0008527808656267537 5.282996361660706e-07 1.6744313141093463 0.00103731390992093 1.107574533295201 0.0012192712665661087']
['59866.374066941724 2.7774906137006927 0.0006404067630594787 0.3181312205942717 0.00019739888822271348 0.0008509606102426305 5.280169549830147e-07 1.6708572510203346 0.0010367588667159321 1.1066333626803582 0.0012186015632217216']
['59866.37409847969 2.776261011689051 0.00064033640482899 0.31798649672417595 0.0001973875837812478 0.0008505734922710486 5.279867170378356e-07 1.670097146660588 0.001036699494649411 1.1061638650284629 0.0012185140760597147']
['59866.37413001765 2.782221757899807 0.0006408487470701609 0.31899060147244124 0.00019754171225274433 0.0008532593449444682 5.283989911237158e-07 1.6753708060527377 0.0010375089929240773 1.1068509518470695 0.0012194720279775702']
['59866.374161555614 2.7765379600355216 0.0006403579666727676 0.31789291342573 0.0001973695276243122 0.0008503231688334265 5.279384191112887e-07 1.6696056377401787 0.0010366046618923961 1.1069323222953429 0.0012184447260907367']
['59866.37419309358 2.7792972238328293 0.000640608976619522 0.318410190446699 0.00019745510402293274 0.0008517068191667889 5.28167325108809e-07 1.6723224288166965 0.001037054117767504 1.1069747950161328 0.001218959024784692']
['59866.37422463154 2.7826553587023213 0.0006408804137455742 0.31893832271549705 0.00019754334100641153 0.0008531195059094032 5.284033478329127e-07 1.6750962327494594 0.0010375175473025817 1.1075591259528619 0.00121949594738296']
['59866.3742561695 2.776743985042553 0.0006403935017263323 0.3179235167048301 0.00019738064120775254 0.0008504050287181929 5.279681465354902e-07 1.6697663692480575 0.0010366630315533222 1.1069776157944955 0.0012185130602675699']
['59866.37428770746 2.7820619448022805 0.0006408236565770065 0.3191258048084198 0.00019755914172222262 0.0008536209966964598 5.28445612740908e-07 1.676080907607247 0.001037600534255371 1.1059810371950336 0.0012195367265957005']
['59866.37431924543 2.7783063247634905 0.0006405091938637904 0.3182415025311538 0.00019742997160525773 0.0008512556004172277 5.281000990835178e-07 1.671436462873707 0.0010369221197755133 1.1068698618897834 0.0012187942853097839']
['59866.37435078339 2.7833117203611275 0.000640914813860694 0.31896091112387914 0.00019755259415983226 0.0008531799270329424 5.284280988430992e-07 1.6752148693481048 0.0010375661457974383 1.1080968510130227 0.0012195553720643598']
['59866.37438232135 2.7834705589650057 0.0006409302497270425 0.3191772269437077 0.0001975893721808229 0.0008537585443773911 5.285264753781883e-07 1.6763509818472044 0.0010377593076723894 1.1071195771178013 0.001219727824424714']
['59866.37441385932 2.7800135438775198 0.0006406745697797602 0.3181612043761588 0.00019742779548861396 0.0008510408130510326 5.280942782478775e-07 1.6710147288663804 0.00103691069059146 1.1089988150111394 0.0012188714799458305']
['59866.37444539728 2.7779927747372515 0.0006405238532573001 0.3179324829027371 0.0001973810335286196 0.0008504290121588255 5.279691959439822e-07 1.6698134606236195 0.001036665092062078 1.108179314113632 0.0012185833248865897']
['59866.37447693524 2.779428942278011 0.000640580967661753 0.3183476627847443 0.0001974572806732696 0.000851539565612502 5.281731473720106e-07 1.6719940272308 0.0010370655497545674 1.107434915047211 0.0012189540313802694']
['59866.37450847321 2.779741854197578 0.0006406157410067014 0.3185127110438179 0.00019747418597623628 0.0008519810487432629 5.28218366910357e-07 1.6728608773309765 0.0010371543381104847 1.1068809768666015 0.0012190478451180506']
['59866.374540011166 2.7793598991265767 0.0006405969588535859 0.3181261694768632 0.00019741038295662707 0.0008509470991450893 5.280477019363236e-07 1.6708307220423486 0.0010368192382175794 1.108529177084228 0.0012187528857116787']
['59866.37457154913 2.782136022836854 0.0006407461089832429 0.3193726462503873 0.00019761569111454843 0.0008542812662031666 5.285968751832189e-07 1.6773773437520343 0.001037897537366326 1.1047586790848198 0.0012197486930709334']
['59866.3746030871 2.780291198932285 0.00064066097991485 0.31851923061227294 0.00019749078310564542 0.0008519984877608502 5.282627621235772e-07 1.6728951187619379 0.0010372415079078017 1.107396080170347 0.0012191457816488995']
['59866.374634625055 2.777822452362738 0.0006404797653516399 0.3182123097167432 0.0001974254387196889 0.0008511775133463671 5.280879741903287e-07 1.6712831392686094 0.001036898312603408 1.1065393130941286 0.0012187585653051578']
['59866.37466616302 2.7771863926072893 0.0006404258445666071 0.31786482038695474 0.00019738313942190344 0.0008502480235227112 5.279748289410536e-07 1.6694580902676195 0.0010366761524259636 1.1077283023396698 0.001218541221049806']
['59866.37469770099 2.7815128728566156 0.0006407597101438266 0.31885317012994896 0.00019753543019087756 0.0008528917335580244 5.283821874060871e-07 1.6746490027833454 0.001037475998901668 1.1068638700732703 0.0012193971684568627']
['59866.374729238945 2.7802068913244553 0.0006406356837053208 0.31821399135070816 0.0001974099371502714 0.0008511820115036443 5.280465094609425e-07 1.6712919713797698 0.0010368168967976438 1.1089149199446855 0.001218771248726224']
['59866.37476077691 2.7790310531379525 0.0006405378561014711 0.3183903147920865 0.00019745222989190868 0.0008516536543150449 5.281596371733541e-07 1.672218039874404 0.0010370390225415374 1.1068130132635485 0.0012189088068321502']
['59866.37479231487 2.783501417214369 0.0006409092366052906 0.31928416941224325 0.00019758947558660687 0.0008540446018982966 5.285267519755271e-07 1.6769126544760675 0.001037759850769994 1.1065887627383015 0.001219717244871178']
['59866.374823852835 2.782584604606439 0.0006408201523085961 0.319027717702585 0.00019755766225411757 0.0008533586261460868 5.284416553516296e-07 1.6755657442362657 0.0010375927639396931 1.1070188603701734 0.0012195282741227543']
['59866.3748553908 2.7794686020416037 0.0006406203174994657 0.3184283864669563 0.00019747706979510854 0.0008517554912099578 5.282260807595756e-07 1.6724179961499808 0.0010371694842180072 1.107050605891623 0.001219063136259219']
['59866.37488692876 2.7816090422509725 0.0006407451487629518 0.31878058941339615 0.00019750477768333227 0.0008526975893594945 5.283001958414822e-07 1.6742678015409462 0.0010373150088410308 1.1073412407100263 0.0012192525469442847']
['59866.374918466725 2.7803473070708566 0.0006406900804543773 0.3186110133333535 0.00019748496900055972 0.0008522439948827057 5.282472101309042e-07 1.6733771708684533 0.0010372109716415953 1.1069701362024034 0.001219135094600405']
['59866.37495000469 2.7828693210252067 0.0006408745017764835 0.31943162764559263 0.0001976470310469485 0.0008544390339442992 5.286807055220027e-07 1.6776871199873564 0.0010380621378516203 1.1051822010378503 0.0012199561996515827']
['59866.37498154265 2.7772468832026265 0.0006404040325364118 0.318051574831523 0.00019739315804038804 0.000850747567942836 5.280016274730666e-07 1.670438943442873 0.0010367287712205254 1.1068079397597534 0.0012185745237634495']
['59866.375013080615 2.7828971795867545 0.0006408879962042236 0.3190200800029146 0.00019754550678072668 0.0008533381962695088 5.284091410041376e-07 1.6755256302674086 0.0010375289221676823 1.107371549319346 0.0012195096096436048']
['59866.37504461857 2.7768165047023583 0.0006403751105560182 0.31823851657821534 0.00019741164141809148 0.0008512476133723538 5.280510681609076e-07 1.6714207803477696 0.0010368258477840941 1.1053957243545887 0.0012186419165828976']
['59866.37507615654 2.7793565425510294 0.0006405816445776657 0.31873503540822723 0.000197535796570823 0.0008525757381813387 5.283831674259084e-07 1.674028547312118 0.0010374779231660872 1.1053279952389115 0.0012193052466166314']
['59866.375107694505 2.7764024052499487 0.0006403859959565012 0.31784357068369307 0.00019735981220145814 0.0008501911832653443 5.279124315890794e-07 1.669346484683262 0.00103655363551186 1.1070559205666868 0.0012184160468042327']
['59866.37513923246 2.7767156099373818 0.0006404109281313905 0.31811335978517175 0.00019742656493891114 0.0008509128348467334 5.280909866837107e-07 1.6707634442498516 0.0010369042276203318 1.1059521656875302 0.0012187274240481444']
['59866.37517077043 2.7787960069743836 0.0006405632652123638 0.31852366018028067 0.00019748203591700748 0.0008520103362926854 5.282393645049237e-07 1.6729183832997934 0.0010371955667910057 1.1058776236745902 0.001219055347599296']
['59866.375202308394 2.7833146855550552 0.0006409070159060394 0.3193069671176513 0.00019759906482912467 0.0008541055828647982 5.285524019813627e-07 1.677032390323799 0.00103781021443868 1.1062822952312563 0.001219758928735856']
['59866.37523384635 2.776210685003737 0.0006403362918516798 0.31801678750164275 0.00019740113659355647 0.0008506545162536358 5.280229690894611e-07 1.670256236878376 0.001036770675386326 1.1059544481253611 0.0012185745771200786']
['59866.37526538432 2.782559205352218 0.0006408665843895357 0.3191146862627571 0.00019755199037471355 0.0008535912559989435 5.284264837945915e-07 1.6760225118842285 0.001037562974657109 1.1065366934679894 0.0012195273286673073']
['59866.37529692228 2.7823910069806734 0.0006407881943069255 0.3192146962640293 0.00019755605110252262 0.0008538587700503906 5.284373457257404e-07 1.6765477744959523 0.0010375843020090474 1.1058432324847212 0.0012195042819681825']
['59866.37532846024 2.779464068776673 0.0006405921526953766 0.31846179054744295 0.00019746740228386396 0.0008518448428827122 5.282002213948365e-07 1.6725934377491751 0.0010371187094740755 1.106870631027498 0.0012190051368374411']
['59866.37535999821 2.7829797296794525 0.0006408637369405107 0.31931084541864785 0.00019759709580575592 0.0008541159568273932 5.285471350939306e-07 1.6770527595517222 0.0010377998729293903 1.1059269701277303 0.0012197273898611996']
['59866.37539153617 2.7774612893626918 0.000640425644860089 0.31819154110080866 0.00019742170516681245 0.0008511219599364988 5.280779874105711e-07 1.6711740604034069 0.0010368787036072085 1.1062872289592849 0.001218713441539325']
['59866.37542307413 2.7784546304216295 0.0006404751905360947 0.3182305227621026 0.00019740544754997508 0.0008512262309295219 5.280345003503599e-07 1.6713787960194466 0.0010367933169641548 1.107075834402183 0.0012186668337957594']
['59866.3754546121 2.781925317427295 0.0006407957647359235 0.3191149635183324 0.0001975894858380826 0.0008535919976223942 5.285267793969227e-07 1.6760239680584688 0.0010377599046117784 1.1059013493688261 0.0012196576698907543']
['59866.37548615006 2.7818969113282828 0.0006407789980854684 0.3189865497784654 0.00019754245173456998 0.0008532485071776758 5.284009691436802e-07 1.6753495261474025 0.0010375128767571955 1.1065473851808802 0.0012194386798131376']
['59866.37551768802 2.7777298198604203 0.0006404578721811514 0.318509644160747 0.00019747437857674656 0.0008519728452205635 5.282188820922605e-07 1.6728447697518225 0.0010371553496677868 1.1048850501085978 0.001218965752342254']
['59866.37554922598 2.7800827408703483 0.0006407170182187703 0.31822118828760915 0.000197444082955744 0.0008512012623957941 5.281378451538302e-07 1.6713297704181154 0.0010369962340112606 1.108752970452233 0.0012189665650823606']
['59866.375580763946 2.7780549922523745 0.0006404752414126506 0.31817940471831185 0.00019743293397241884 0.0008510894966547237 5.281080230394328e-07 1.6711103188986969 0.0010369376784265696 1.1069446733536776 0.0012187896798887318']
['59866.37561230191 2.7769566628511155 0.0006403842949174009 0.31827274348494283 0.00019745320490241334 0.0008513391660007981 5.281622452026209e-07 1.6716005435133554 0.001037044143395028 1.1053561193377601 0.0012188324743486218']
['59866.37564383987 2.782443201359248 0.0006407956472645584 0.3192490189365204 0.00019756313328127154 0.0008539505788400895 5.284562896544085e-07 1.6767280406329854 0.001037621498326006 1.1057151607262627 0.0012195398457375266']
['59866.375675377836 2.781465759667246 0.0006407304005927595 0.3188803380981593 0.00019753125069095048 0.0008529644044224688 5.283710077746074e-07 1.6747916916920134 0.0010374540477465887 1.1066740679752325 0.0012193630908919374']
['59866.3757069158 2.7830325591088307 0.0006408620983612262 0.319153005931235 0.0001975684614901053 0.0008536937562452613 5.284705419363197e-07 1.6762237706472427 0.0010376494826160993 1.106808788461588 0.0012195985724366082']
['59866.37573845376 2.776757229900209 0.000640413527189508 0.3178340168991888 0.000197355097209828 0.0008501656281051915 5.27899819585305e-07 1.6692963072436386 0.0010365288719003571 1.1074609226565704 0.0012184094500989123']
['59866.375769991726 2.7781499138373524 0.0006405122760983491 0.3182259444120713 0.0001974253979427821 0.0008512139844246699 5.28087865117282e-07 1.6713547500633998 0.0010368980984389816 1.1067951637739526 0.0012187754684022255']
['59866.375801529684 2.777950445648093 0.0006404786123263063 0.3184034061934423 0.00019748602896821522 0.000851688672150974 5.282500454097595e-07 1.672286797234466 0.0010372165386986095 1.1056636484136269 0.0012190287121300117']
['59866.37583306765 2.7756120536768867 0.0006402905216631629 0.31772689744746796 0.00019733468785807808 0.0008498790971767434 5.278452271615017e-07 1.6687337050812394 0.0010364216799268807 1.1068783485956473 0.0012182536069120183']
['59866.375864605616 2.781879452652125 0.0006407552390444165 0.3195214558289794 0.0001976470589454447 0.0008546793129260633 5.286807801469368e-07 1.6781589066648077 0.0010380622843773357 1.1037205459873174 0.0012198936767643153']
['59866.375896143574 2.782883825291186 0.0006408791761590333 0.318874758631261 0.00019753448333801924 0.0008529494800571465 5.28379654694948e-07 1.6747623877692281 0.0010374710259349752 1.108121437521958 0.0012194557179696405']
['59866.37592768154 2.777495835751033 0.0006404359200373819 0.3183300840747482 0.0001974641636027384 0.0008514925447958792 5.281915583341604e-07 1.6719017020732576 0.0010371016995942143 1.1055941336777753 0.0012189085703921093']
['59866.375959219506 2.7776013270810544 0.0006404432432604623 0.3180727789055843 0.0001973939477265156 0.000850804286147887 5.280037397831623e-07 1.6705503093780687 0.0010367329187316997 1.1070510177029858 0.0012185986593706431']
['59866.375990757464 2.7758827983010437 0.0006403303364751104 0.3179615671070062 0.0001974003207681653 0.0008505068087113518 5.280207868601553e-07 1.6699662137973015 0.0010367663905891035 1.1059165845037422 0.0012185678021618188']
['59866.37602229543 2.7834727427889554 0.0006408970656207624 0.3193618113921046 0.00019761207687542498 0.0008542522843333618 5.285872075525969e-07 1.6773204379837428 0.0010378785550179885 1.1061523048052126 0.00121981184765829']
['59866.37605383339 2.7816401333531044 0.0006407460666950806 0.3188488855357694 0.00019751085924199935 0.0008528802728127669 5.28316463238517e-07 1.6746264996626545 0.0010373469498004169 1.10701363369045 0.0012192802041554867']
['59866.376085371354 2.7770419944633637 0.0006404153437875152 0.3181299575290205 0.00019742161054833463 0.0008509572317035016 5.280777343181601e-07 1.6708506172742676 0.0010368782066614215 1.106191377189096 0.001218707605624863']
['59866.37611690932 2.7814122718815293 0.00064078045096086 0.3189221018800884 0.00019755742590924234 0.0008530761172348424 5.284410231591059e-07 1.6750110392861788 0.0010375915226325755 1.1064012325953505 0.001219506356757762']
['59866.37614844728 2.782621318737564 0.0006408711225351705 0.31934392772934145 0.00019761799705354083 0.0008542044478068181 5.286030432771536e-07 1.677226511183516 0.0010379096483904458 1.105394807554048 0.0012198246734352722']
['59866.376179985244 2.7775992141749084 0.0006404434246586055 0.31812274565314774 0.00019741692758745404 0.0008509379408514996 5.280652079925727e-07 1.6708127397749357 0.0010368536112786452 1.1067864743999727 0.0012187014365339901']
['59866.37621152321 2.7827803117047925 0.0006408486865446171 0.3191526436984098 0.0001975749885384017 0.0008536927873184599 5.284880009615327e-07 1.676221868163917 0.0010376837633319417 1.1065584435408755 0.0012196206917434215']
['59866.37624306117 2.776122843921592 0.0006402853316814863 0.31813305830657856 0.0001974148747212395 0.0008509655258896494 5.280597168361769e-07 1.670866902870686 0.0010368428294182748 1.1052559410509062 0.001218609190381627']
['59866.37627459913 2.7775471988760847 0.0006404479928379385 0.31831942124798507 0.00019743110753676552 0.00085146402308854 5.2810313755603e-07 1.6718456998318545 0.00103692808580234 1.1057014990442302 0.001218767199532318']
['59866.37630613709 2.780214470074461 0.0006406356983547506 0.3186519022126738 0.00019749697679446833 0.0008523533674417193 5.282793294545375e-07 1.673591923385892 0.0010372740377860732 1.106622546688569 0.0012191601730172715']
['59866.37633767506 2.7763037366326273 0.0006403884390186855 0.31793623774252405 0.00019738657188418765 0.0008504390558783651 5.279840103417176e-07 1.6698331814208196 0.001036694180064011 1.1064705552118077 0.0012185368996494856']
['59866.37636921302 2.7805459418146246 0.0006407026235648083 0.31854315009627787 0.00019751153805387377 0.0008520624693426249 5.283182789740673e-07 1.6730207463039803 0.0010373505149888329 1.1075251955106442 0.0012192604081124037']
['59866.37640075098 2.7778187761402875 0.0006404491482760626 0.31845493619641385 0.00019746616985334171 0.000851826508364259 5.281969247997167e-07 1.6725574380063752 0.001037112236624694 1.1052613381339123 0.0012189244861287385']
['59866.37643228895 2.782001543582123 0.0006407603030313714 0.3189351567722829 0.00019753219032497203 0.0008531110374134018 5.28373521176275e-07 1.675079604896444 0.0010374589827992229 1.106921938685679 0.001219383002559759']
['59866.37646382691 2.782472250089971 0.0006408736287143772 0.3192317825126002 0.00019758941276355226 0.0008539044735952471 5.28526583931835e-07 1.6766375131964297 0.0010377595208169762 1.105834736893541 0.001219698254089024']
['59866.37649536487 2.776663265071912 0.0006403756853379889 0.31776442016695755 0.0001973514522433526 0.0008499794656857354 5.278900697629191e-07 1.6689307781878024 0.0010365097281688689 1.1077324868841096 0.0012183732740670247']
['59866.37652690284 2.7760242866314555 0.000640350321174238 0.3180420480379277 0.00019739354879828457 0.0008507220849799365 5.280026727008108e-07 1.6703889077622252 0.001036730823520402 1.1056353788692304 0.0012185480434784837']
['59866.376558440796 2.781912268925639 0.0006408018864428811 0.3189668556914472 0.00019756887288250607 0.0008531958279961862 5.284716423587422e-07 1.6752460908164246 0.0010376516432904733 1.1066661781092142 0.0012195687723503643']
['59866.37658997876 2.7826066356990014 0.0006408375572541426 0.3192573309812824 0.00019760230902837056 0.0008539728125041412 5.285610798023098e-07 1.6767716963302648 0.0010378272533002656 1.1058349393687366 0.0012197369316701984']
['59866.37662151673 2.779538282605891 0.0006406122233474502 0.31848234890931804 0.00019746721662224117 0.0008518998338896751 5.281997247735759e-07 1.6727014123388553 0.0010371177343605103 1.106836870267036 0.0012190148545556127']
['59866.376653054685 2.779524037877389 0.0006406027523293568 0.31856302261180414 0.00019746865173665118 0.0008521156257977119 5.282035635223532e-07 1.6731251187594756 0.0010371252717261091 1.1063989191179135 0.0012190162901064543']
['59866.37668459265 2.7779407248582695 0.0006404575766264413 0.3181029025711498 0.0001974009757772748 0.0008508848631273627 5.280225389263325e-07 1.6707085219072995 0.001036769830762998 1.10723220295097 0.0012186375956118167']
['59866.37671613062 2.777629037556545 0.0006404359879176534 0.3182718576327913 0.00019744842684639444 0.000851336796458802 5.281494645096163e-07 1.6715958909285258 0.001037019048562996 1.1060331466280193 0.001218838283654793']
['59866.376747668575 2.778089881453199 0.0006404502673018772 0.3183304947464041 0.0001974388500825854 0.0008514936432904007 5.281238478827418e-07 1.6719038589622066 0.001036968750433747 1.1061860224909923 0.0012188029923917863']
['59866.37677920654 2.7827784842530567 0.0006408434699613798 0.31916253124282656 0.00019757281066869314 0.0008537192352439887 5.284821754366668e-07 1.6762737985442573 0.0010376723249406153 1.1065046857087995 0.0012196082186258848']
['59866.3768107445 2.7778242833638394 0.0006405076887618954 0.3180748920252327 0.0001974139826478492 0.0008508099384745659 5.280573306531573e-07 1.67056140769555 0.001036838144158872 1.1072628756682894 0.001218722050570153']
['59866.376842282465 2.776402486075776 0.0006403225737444713 0.3179281583031748 0.00019737408432104754 0.0008504174444042501 5.279506076963239e-07 1.669790747390624 0.0010366285941231488 1.1066117386851522 0.001218446486555926']
['59866.37687382043 2.7814072757650266 0.0006407653832199675 0.3189412587866469 0.0001975523695562709 0.0008531273595268279 5.284274980570987e-07 1.675111653291213 0.001037564966156885 1.1062956224738136 0.0012194758445041745']
['59866.37690535839 2.780867469902846 0.0006406868821630148 0.3187487540960765 0.00019747567386827253 0.000852612433928968 5.282223468325815e-07 1.6741005992440994 0.0010371621526694987 1.1067668706587468 0.0012190918800097856']
['59866.376936896355 2.7790428709364523 0.0006405993690496888 0.31808999993601594 0.00019741893928141611 0.0008508503502171027 5.280705890184222e-07 1.6706407559664704 0.001036864176898194 1.1084021149699819 0.001218792383042177']
['59866.37696843432 2.776214938127675 0.0006403217512866688 0.31806455932019556 0.00019741079289216528 0.0008507822998009159 5.280487984618236e-07 1.6705071392867414 0.001036821391240364 1.1057077988409336 0.0012186100863296801']
['59866.37699997228 2.7816683045275523 0.0006407105715199723 0.31888282012902897 0.00019753183931297194 0.0008529710435398102 5.283725822637557e-07 1.6748047275684297 0.0010374571392488023 1.1068635769591226 0.0012193553018852864']
['59866.377031510245 2.7830824958402984 0.0006408802830697038 0.3191896106123778 0.00019757783648402804 0.0008537916691182727 5.284956188543746e-07 1.6764160221238331 0.001037698721029559 1.1066664737164653 0.0012196500206427606']
['59866.3770630482 2.775491033416543 0.0006402636541872397 0.31776204455552687 0.00019733011438209484 0.0008499731112268772 5.278329936941093e-07 1.668918301237011 0.001036397659569826 1.106572732179532 0.0012182190507601701']
['59866.37709458617 2.7832508307220203 0.0006409465978176492 0.3188998594633269 0.00019752714096496273 0.0008530166215949447 5.283600147795535e-07 1.6748942198704144 0.0010374324630512749 1.1083566108516059 0.0012194583455971974']
['59866.377126124135 2.777270202640923 0.0006403784802633134 0.31836594441797006 0.00019746763237013724 0.0008515884666594881 5.282008368463951e-07 1.6720900442120277 0.0010371199179103848 1.1051801584288952 0.001218893892884362']
['59866.37715766209 2.777361515038525 0.0006404087674757518 0.31811972909924974 0.00019740410207944164 0.0008509298719529454 5.28030901387567e-07 1.6707968965296731 0.0010367862504172356 1.106564618508852 0.0012186259140991719']
['59866.37718920006 2.7783604612275363 0.0006404824686279836 0.3182406184600922 0.000197412732146643 0.0008512532356394211 5.280539857212529e-07 1.6714318196433415 0.001036831576400436 1.1069286415841948 0.0012187032085133808']
['59866.377220738024 2.7819606332707947 0.0006408166999814704 0.31859800528607474 0.00019746824595616135 0.0008522092000083462 5.282024781110799e-07 1.6733088512924095 0.0010371231405260576 1.1086517819783852 0.001219126921854232']
['59866.37725227598 2.7763313925195003 0.0006403760130658751 0.31767039473959807 0.00019735744189309037 0.000849727959609423 5.27906091315241e-07 1.6684369471617548 0.0010365411864132897 1.1078944453577455 0.00121840020897947']
['59866.37728381395 2.7791662486157866 0.0006405580364336672 0.31847528017273496 0.00019748124453287334 0.0008518809259170935 5.28237247652876e-07 1.6726642866215073 0.0010371914103617296 1.1065019619942793 0.001219049063724635']
['59866.37731535191 2.7791707779529933 0.0006405676211514269 0.31819614356039466 0.00019742780984079037 0.0008511342709313475 5.280943166381266e-07 1.6711982329852662 0.001036910765970538 1.1079725449677271 0.001218815332137402']
['59866.37734688987 2.7783434187931633 0.0006404961311470943 0.31815217918316374 0.00019742095380123647 0.0008510166718060323 5.280759776030839e-07 1.6709673276426669 0.0010368747573594355 1.1073760911504964 0.0012187471257252606']
['59866.37737842784 2.7762839733958593 0.0006403010656214969 0.3180464703688983 0.00019739080922435368 0.0008507339141536167 5.279953446884904e-07 1.6704121342904326 0.0010367164350018575 1.1058718391054267 0.0012185099183999223']
['59866.3774099658 2.7777158987688004 0.0006404405428399619 0.3178130606430414 0.00019734391384468663 0.0008501095727815854 5.278699055039159e-07 1.6691862428731166 0.0010364701357389004 1.1085296558956839 0.0012183736829034677']
['59866.37744150376 2.7819795083696466 0.0006407668275472197 0.3189127042111198 0.00019754317935897597 0.0008530509796639197 5.284029154465529e-07 1.6749616817810913 0.0010375166983139495 1.1070178265885553 0.0012194355360432986']
['59866.37747304173 2.7764773079073093 0.0006403494439660859 0.31816210976994563 0.00019744499487806726 0.0008510432348644211 5.281402844302246e-07 1.671019484085849 0.001037001023519261 1.1054578238214603 0.0012187774748360222']
['59866.37750457969 2.777966616985384 0.0006404933282265466 0.3183979194923986 0.0001974659895927937 0.0008516739959225307 5.28196442625645e-07 1.6722579805273037 0.001037111289878118 1.1057086364580802 0.001218946894288415']
['59866.37753611765 2.777829973247973 0.0006404923925401372 0.3179405587235451 0.00019737275729752023 0.0008504506139538022 5.279470580769295e-07 1.6698558756488713 0.001036621624461766 1.1079740975991017 0.001218529809731194']
['59866.37756765561 2.7775422817118334 0.0006404785084019768 0.3179946302440211 0.0001973979100342449 0.0008505952484036215 5.280143384530979e-07 1.6701398647270016 0.0010367537291714544 1.1074024169848318 0.0012186348980214453']
['59866.377599193576 2.7814004566197843 0.0006407353434927713 0.3192954614780774 0.0001976164358590945 0.0008540748067402332 5.285988672802919e-07 1.6769719615445244 0.001037901448839782 1.1044284950752599 0.0012197463662190259']
['59866.37763073154 2.778739826484058 0.0006405474391383827 0.31804360825990613 0.0001973639286753606 0.0008507262583755701 5.279234426339481e-07 1.6703971022053894 0.0010365752556479025 1.1083427242786685 0.0012185192991529738']
['59866.3776622695 2.7816105800244104 0.0006407332505039931 0.3187332438476205 0.00019749112493558995 0.0008525709459842562 5.282636764752641e-07 1.6740191378551497 0.0010372433032331406 1.1075914421692608 0.0012191852887905963']
['59866.377693807466 2.7836375960891226 0.0006409307098921495 0.3192245896765645 0.00019758024061866997 0.000853885233672391 5.285020496092002e-07 1.676599735696242 0.0010377113477871324 1.1070378603928805 0.0012196872616408853']
['59866.37772534543 2.7760907792474967 0.0006403473529533443 0.31787283672863986 0.0001973687568353906 0.0008502694662185885 5.279363573488189e-07 1.6695001929025204 0.0010366006136312532 1.1065905863449763 0.0012184357039314983']
['59866.37775688339 2.778003235541107 0.0006404365585368543 0.31833920624593326 0.00019743947913981213 0.0008515169454452209 5.281255305309287e-07 1.6719496126362041 0.0010369720543057358 1.106053622904903 0.0012187985998193417']
['59866.377788421356 2.7809166136102816 0.0006406928511204253 0.3189340678645674 0.00019755639991659665 0.0008531081247235615 5.284382787590867e-07 1.6750738858433163 0.0010375861340157389 1.1058427277669653 0.0012194557453956852']
['59866.377819959314 2.7790066684948562 0.0006405759550344979 0.3184433018177979 0.00019747892802769889 0.0008517953878791072 5.282310512957465e-07 1.6724963330766698 0.0010371792438429565 1.1065103354181864 0.0012190481278550925']
['59866.37785149728 2.7796218858961916 0.0006406335118102766 0.31845380610076474 0.00019748219348656633 0.0008518234855019275 5.282397859834812e-07 1.672551502630067 0.0010371963943622182 1.1070703832661246 0.00121909296484409']
['59866.377883035246 2.7785706155448464 0.000640489179683189 0.31835829081854383 0.00019744035302147466 0.0008515679942530825 5.281278680533871e-07 1.6720498467360496 0.0010369766440203503 1.1065207688087968 0.0012188301561476696']
['59866.377914573204 2.776386253719551 0.000640333514210142 0.3182056860779354 0.00019741773997336966 0.0008511597959538038 5.280673810217184e-07 1.671248351249661 0.0010368578780113953 1.1051379024698902 0.001218647311003066']
['59866.37794611117 2.779224791453398 0.0006405842225135917 0.31812345387131213 0.00019739647908507618 0.0008509398352451408 5.280105108458119e-07 1.670816459408152 0.0010367462136821228 1.108408332045246 0.0012186840680494518']
['59866.377977649136 2.7787983594005654 0.0006404957058572993 0.3184040649251143 0.00019744485419781208 0.0008516904341745331 5.281399081284093e-07 1.672290256959634 0.0010370002846523745 1.1065081024409313 0.0012188536990101583']
['59866.378009187094 2.782054115622533 0.0006407984882053277 0.3189720583825064 0.00019757825406627224 0.0008532097445339921 5.28496735833842e-07 1.6752734158745086 0.0010377009142136149 1.1067806997480243 0.001219608908562907']
['59866.37804072506 2.778986130676613 0.00064054043208633 0.3188000480935599 0.00019753491634121989 0.0008527496388575466 5.283808129235153e-07 1.674370000491386 0.001037473300111449 1.1046161301852269 0.0012192796617599604']
['59866.37807226302 2.7792827152582125 0.0006405452014027174 0.3183412981090735 0.00019745658907426928 0.0008515225409134402 5.281712974325226e-07 1.6719605993123612 0.0010370619174068765 1.1073221159458513 0.0012189321455994483']
['59866.378103800984 2.7824537283045725 0.0006407987704341294 0.31901105467142066 0.00019753672421520826 0.0008533140546540415 5.283856487568217e-07 1.675478228316285 0.0010374827952479425 1.1069754999882875 0.00121942347633026']
['59866.37813533895 2.782845318608028 0.0006408406129418683 0.3190258676300371 0.0001975437557576502 0.0008533536774369932 5.284044572397999e-07 1.6755560274686823 0.0010375197256179108 1.1072892911393457 0.0012194768846689856']
['59866.37816687691 2.7811442084575586 0.0006407237380620452 0.3186528899570801 0.00019749708943706413 0.0008523560095325558 5.282796307591749e-07 1.6735971111191181 0.0010372746293963453 1.1075470973384405 0.001219206941132442']
['59866.37819841487 2.7776655602376237 0.0006404332359525194 0.3182708659145664 0.00019745269441158965 0.0008513341437385053 5.281608797045034e-07 1.6715906823244033 0.001037041462245744 1.1060748779132203 0.0012188559078617153']
['59866.37822995283 2.7754553561467774 0.0006402643300701056 0.3179992098917299 0.00019738181158659944 0.0008506074983795959 5.279712771502596e-07 1.6701639174985816 0.0010366691785010475 1.1052914386481958 0.0012184504085165542']
['59866.3782614908 2.7758548505788028 0.0006402699094302474 0.3180098373086553 0.00019739621205504493 0.0008506359253701164 5.28009796574393e-07 1.670219733763946 0.0010367448112134714 1.1056351168148568 0.0012185176898592295']
['59866.37829302876 2.775911751469424 0.0006402770218310811 0.31833843013001023 0.00019748522457672395 0.0008515148694336989 5.282478937646836e-07 1.6719455363971127 0.0010372123139533822 1.103966215072311 0.0012189192134433716']
['59866.37832456672 2.7794393436864056 0.0006405972088298074 0.31825523728757943 0.00019744032006083987 0.0008512923391462581 5.281277798878752e-07 1.671508599199472 0.0010369764709077726 1.1079307444869335 0.0012188867811149969']
['59866.37835610469 2.7823225648226395 0.0006407889975606804 0.31913038291397644 0.00019757627275312397 0.0008536332425473729 5.284914360728107e-07 1.6761049522792881 0.0010376905081571637 1.1062176125433514 0.0012195950680919854']
['59866.37838764265 2.781952718119408 0.0006407696347677409 0.3188721470550685 0.00019751458893484583 0.0008529424944225195 5.283264396931847e-07 1.6747486715077127 0.0010373665385233501 1.1072040466116952 0.0012193092553115068']
['59866.37841918061 2.775346734572016 0.000640250092118855 0.317708728505147 0.00019733809912673205 0.0008498304975636151 5.278543518718965e-07 1.6686382799640074 0.0010364395962538448 1.1067084546080086 0.0012182476009174141']
['59866.37845071858 2.783473942648967 0.000640890001436219 0.3191614141782857 0.0001975743340672653 0.0008537162472382168 5.284862503343652e-07 1.6762679316086435 0.0010376803259835362 1.1072060110403237 0.0012196394765971682']
['59866.378482256536 2.7823946444884253 0.0006408155308740055 0.31905103624596043 0.00019752999089991765 0.0008534210002880012 5.283676379935967e-07 1.6756882155775235 0.0010374474311970465 1.1067064289109019 0.0012194021966138505']
['59866.3785137945 2.782426462988221 0.0006408094110885412 0.31889097842132297 0.00019751289786962137 0.0008529928659355376 5.283219163084862e-07 1.6748475757422427 0.0010373576568782636 1.1075788872459784 0.0012193226027690967']
['59866.37854533247 2.7787247241547552 0.0006405385176372463 0.3181298533122483 0.00019740906463726457 0.0008509569529368721 5.280441755994644e-07 1.6708500699172706 0.0010368123142713475 1.1078746542374847 0.0012187162785495353']
['59866.378576870426 2.777713422644198 0.0006404182648941249 0.31862382445131643 0.00019750008173622752 0.0008522782629961567 5.282876347793944e-07 1.6734444561518722 0.0010372903452532957 1.104268966492326 0.0012190598075425597']
['59866.37860840839 2.7825806713786694 0.0006408071369027135 0.3194194487922738 0.0001976149944547459 0.0008544064570584692 5.285950117067278e-07 1.6776231554216063 0.0010378938784387918 1.104957515957063 0.0012197776394106306']
['59866.37863994636 2.782231725401026 0.0006408052158688178 0.3190449288459409 0.00019757719954639484 0.0008534046637686307 5.284939151271012e-07 1.6756561388967486 0.0010376953757688804 1.1065755865042772 0.001219607731025349']
['59866.378671484315 2.7758555227846493 0.0006402807641977307 0.31768033746338104 0.0001973442728763898 0.0008497545551327482 5.278708658681224e-07 1.6684891673496904 0.0010364720214096103 1.1073663554349589 0.001218291306776238']
['59866.37870302228 2.7764938226144897 0.0006403149658230429 0.31827530982182994 0.00019743591448692974 0.0008513460306260286 5.281159955372037e-07 1.6716140221734765 0.001036953332389337 1.1048798004410132 0.001218718781758251']
['59866.37873456024 2.782939662448051 0.0006408427365966386 0.31925132717696214 0.00019757308428965668 0.0008539567530901088 5.284829073379924e-07 1.6767401637445494 0.0010376737620255078 1.1061994987035015 0.0012196090559867285']
['59866.378766098205 2.778957684135092 0.0006405412398874404 0.3184514240143802 0.00019745577442485348 0.0008518171137233902 5.281691183488014e-07 1.6725389916721651 0.0010370576387859953 1.1064186924629267 0.0012189264236043631']
['59866.37879763617 2.7776439766486614 0.0006404656814597508 0.31823896367637716 0.00019742078897698858 0.0008512488093031523 5.280755367191545e-07 1.6714231285524013 0.0010368738916858643 1.10622084809626 0.0012187303870780824']
['59866.37882917413 2.782709343948609 0.0006408695250128588 0.31905106498618785 0.00019755641871919936 0.0008534210771644593 5.284383290536609e-07 1.6756883665240958 0.0010375862327689043 1.107020977424513 0.001219548661809677']
['59866.378860712095 2.7818018915890814 0.0006408095059041606 0.31889039654623874 0.00019755341357999292 0.0008529913094935894 5.28430290687957e-07 1.6748445196756239 0.0010375704494747528 1.1069573719134576 0.0012195036943283013']
['59866.37889225006 2.781923416913175 0.0006407873294063962 0.31901526910948075 0.00019755822929440139 0.0008533253277405897 5.284431721123709e-07 1.675500362969962 0.0010375957420924444 1.106423053943213 0.001219513561030033']
['59866.37892378802 2.7817026330012466 0.0006407306117087734 0.3191813132485944 0.00019758891702154833 0.0008537694747239742 5.285252578849371e-07 1.6763724435325338 0.0010377569171299808 1.1053301894687129 0.0012196208984072963']
['59866.378955325985 2.7759899588180925 0.0006402829357063957 0.3178940246822098 0.00019738088090392013 0.0008503261413033726 5.279687876922955e-07 1.66961147417127 0.0010366642904617656 1.1063784846468225 0.0012184560266482317']
['59866.37898686394 2.7819630352552753 0.0006408339840421483 0.31878511545487875 0.00019751465480799185 0.0008527096959456221 5.283266158954839e-07 1.6742915727672203 0.0010373668844957556 1.107671462488055 0.0012193433676170803']
['59866.37901840191 2.777504723128753 0.0006404021237467793 0.31832984327651503 0.0001974361616009124 0.0008514919006911885 5.281166565357221e-07 1.6719004373766548 0.001036954630256893 1.105604285752098 0.0012187656810521844']
['59866.379049939875 2.7833200771451896 0.0006408486270197359 0.319412423584898 0.00019761598084865476 0.0008543876655209885 5.285976501851551e-07 1.6775862583240444 0.0010378990590790692 1.1057338188211452 0.001219803844718608']
['59866.37908147783 2.776818968119068 0.0006403445271271447 0.3181839038114164 0.00019741852811154466 0.0008511015311573627 5.280694891912375e-07 1.671133948589372 0.0010368620173925665 1.1056850195296961 0.001218656619615661']
['59866.3791130158 2.7792053091106412 0.0006405681357386952 0.3183876977833059 0.00019745076183828669 0.0008516466541489348 5.28155710316368e-07 1.6722042950803881 0.0010370313121758755 1.107001014030253 0.0012189181592531']
['59866.379144553764 2.777530829706346 0.000640427275385 0.3179185088684452 0.00019737018816926157 0.0008503916333918928 5.279401859851345e-07 1.6697400675863718 0.0010366081311410798 1.107790762119974 0.0012184841043710241']
['59866.37917609172 2.7815267442244886 0.0006408083996737232 0.3187946227558466 0.00019751944718622965 0.0008527351267682186 5.283394348986052e-07 1.6743415060706228 0.0010373920545495255 1.1071852381538658 0.0012193513357252224']
['59866.37920762969 2.781012529337069 0.0006407415094643328 0.3184041097253819 0.00019743228617171194 0.000851690554009559 5.28106290254817e-07 1.6722904922551574 0.0010369342761119326 1.1087220370819115 0.0012189267307457037']
['59866.37923916765 2.7820772498535984 0.0006407893800484481 0.31903004733090784 0.00019754491346375095 0.0008533648576059717 5.284075539565828e-07 1.675577979679138 0.0010375258060070953 1.1064992701744605 0.001219455135588656']
['59866.37927070561 2.775462095680706 0.0006402330342540367 0.31761984131470544 0.000197304315823764 0.0008495927356184668 5.277639858271682e-07 1.6681714354763941 0.001036262162939937 1.107290660204312 0.0012180876850584638']
['59866.37930224358 2.781450046647783 0.0006407640616454533 0.3188632585840455 0.0001975276402600154 0.0008529187188914298 5.283613503304055e-07 1.6747019883615837 0.0010374350853992406 1.1067480582861993 0.0012193646456715513']
['59866.37933378154 2.776928223838352 0.0006403763672424157 0.3179788482515169 0.0001973941988261592 0.0008505530335780941 5.280044114428175e-07 1.670056976110908 0.0010367342375323487 1.106871247727444 0.0012185646355423146']
['59866.3793653195 2.7755312109411623 0.0006403093823282928 0.3181054044464674 0.00019742723525810279 0.0008508915553260819 5.280927797024132e-07 1.6707216620087575 0.0010369077482043215 1.1048095489324048 0.0012186770627954711']
['59866.37939685747 2.7813909936022405 0.0006407253410199252 0.31876869192424717 0.00019752997159380823 0.0008526657650870837 5.28367586352206e-07 1.674205314728189 0.0010374473297994132 1.1071856788740515 0.0012193547165337214']
['59866.37942839543 2.781336261985933 0.0006407455513926679 0.319057501766335 0.00019759187920128808 0.0008534382947338378 5.285331813395238e-07 1.675722173142516 0.0010377724747966813 1.105614088843417 0.0012196419847951786']
['59866.37945993339 2.7752941499688752 0.0006402283166319071 0.3179265783419358 0.0001973974580467998 0.0008504132182086016 5.280131294440878e-07 1.669782449274873 0.0010367513552878142 1.1055117006940023 0.001218501403408484']
['59866.37949147135 2.7777441947322066 0.0006404685213573414 0.31790641444158807 0.00019737169161750765 0.0008503592823361251 5.279442075182445e-07 1.6696765464369123 0.0010366160274028764 1.1080676482952942 0.0012185125010102196']
['59866.37952300932 2.7752261593020937 0.0006402338322004981 0.31789045489959855 0.0001973696084445242 0.0008503165925882745 5.279386352950911e-07 1.6695927253130178 0.0010366050863682996 1.1056334339890759 0.0012183798525003463']
['59866.37955454728 2.7820544062914654 0.0006407475562537105 0.3189661267888787 0.00019753043340120508 0.0008531938782743911 5.283688216283398e-07 1.675242262546632 0.0010374497552584302 1.1068121437448333 0.0012193684535573644']
['59866.37958608524 2.7774764426575755 0.0006404642101703364 0.31790561550042673 0.0001973919984631341 0.0008503571452699895 5.279985257511866e-07 1.6696723503173674 0.0010367226810038556 1.1078040923402082 0.0012186009690694224']
['59866.379617623206 2.782219115425624 0.000640785344321294 0.31919582073557284 0.00019757417379531544 0.0008538082804090912 5.284858216272549e-07 1.6764486383170845 0.0010376794842190938 1.1057704771085397 0.00121958376894175']
['59866.37964916117 2.781446380266794 0.0006407285205684151 0.318967034172097 0.00019755071430405685 0.000853196305409256 5.284230704676545e-07 1.675247028214795 0.0010375562726053407 1.1061993520519988 0.001219449078843589']
['59866.37968069913 2.775558555814864 0.000640263381242076 0.3177995163364513 0.0001973679708352693 0.0008500733434816769 5.279342548983218e-07 1.6691151068090933 0.0010365964854793556 1.1064434490057709 0.0012183880625924106']
['59866.379712237096 2.777942978715152 0.000640439028875293 0.3183109511904397 0.00019745729479071135 0.0008514413667603614 5.281731851343743e-07 1.6718012142355025 0.001037065623900795 1.1061417644796494 0.0012188795092147023']
['59866.379743775055 2.7775813445052364 0.0006404379122919599 0.31838720928218034 0.00019745728630757702 0.000851645347470467 5.281731624430673e-07 1.6722017294232163 0.001037065579346518 1.10537961508202 0.001218878884617423']
['59866.37977531302 2.7789863323841795 0.0006405668235555526 0.3183141418027582 0.00019744665377725975 0.0008514499012430839 5.281447217748729e-07 1.671817971653142 0.0010370097362251039 1.1071683607310374 0.0012188991133255081']
['59866.379806850986 2.7829963378282887 0.0006408792207831533 0.3190343377878168 0.00019754754446645433 0.0008533763340332857 5.284145915546589e-07 1.6756005135914749 0.0010375396242986046 1.1073958242368138 0.0012195141030842207']
['59866.379838388944 2.776204230545705 0.000640341825326687 0.3180023301207303 0.00019740349073876166 0.0008506158445958815 5.280292661288925e-07 1.6701803052559365 0.0010367830395943366 1.1060239252897686 0.0012185880043940958']
['59866.37986992691 2.7831443348794753 0.0006409302172924807 0.3189661735556444 0.00019756396283851215 0.0008531940033695496 5.284585086146677e-07 1.6752425081704014 0.0010376258552442866 1.107901826709074 0.0012196142664424778']
['59866.379901464876 2.777372479195533 0.0006404225370830483 0.3181215355082964 0.00019742573342798242 0.000850934703867719 5.28088762497584e-07 1.6708063839721452 0.0010368998604410842 1.106566095223388 0.0012187298086887956']
['59866.379933002834 2.777907700245797 0.0006404810325763521 0.3182829030606345 0.0001974533095308102 0.0008513663415754374 5.281625250702941e-07 1.6716539026293828 0.0010370446929139194 1.106253797616414 0.0012188837714035721']
['59866.3799645408 2.779291336588628 0.0006405871002956331 0.31846608005170784 0.00019746592356312658 0.0008518563167618244 5.281962660046717e-07 1.6726159666581295 0.001037110943083648 1.1066753699304983 0.0012189958742050858']
['59866.37999607876 2.7819956422411223 0.0006407510878592597 0.3189304349003198 0.0001975310537931564 0.0008530984070056107 5.283704810980155e-07 1.6750548051487386 0.001037453013619519 1.1069408370923837 0.001219373081571447']
['59866.380027616724 2.777951781254592 0.0006404980988886074 0.31813510968565284 0.00019742277099909968 0.0008509710130681339 5.280808383765714e-07 1.6708776769204459 0.0010368843014658597 1.107074104334146 0.001218756279699212']
['59866.38005915469 2.7822920382589778 0.0006407989939446415 0.3191438924921522 0.0001975459577524245 0.000853669378953184 5.284103472961526e-07 1.6761759059461776 0.0010375312907165153 1.1061161323128001 0.001219464853883187']
['59866.38009069265 2.7762729952609684 0.0006403020502625297 0.3181380926419316 0.00019741706745027328 0.0008509789920973236 5.280655821078505e-07 1.670893343707624 0.0010368543458522757 1.1053796515533443 0.0012186277733923306']
['59866.380122230614 2.783280330120139 0.0006408957709409872 0.31922840391565266 0.00019758696323127963 0.0008538954362775173 5.285200317441131e-07 1.6766197684645623 0.0010377466556264687 1.106660561655577 0.0012196989425567125']
['59866.38015376858 2.779146809175752 0.0006405513767516176 0.3182626944861252 0.00019745365690162844 0.0008513122862052527 5.281634542431143e-07 1.6715477651582207 0.0010370465173404856 1.1075990440175314 0.0012189222884935785']
['59866.38018530654 2.7763041794594265 0.0006403778188231813 0.31755531624265954 0.00019731619165049003 0.0008494201392458707 5.277957521553488e-07 1.667832543291279 0.0010363245359794645 1.1084716361681475 0.0012182168504473198']
['59866.3802168445 2.776776446666682 0.0006403760000182828 0.3180545967222399 0.0001973910675986093 0.0008507556511167028 5.279960358068089e-07 1.6704548147176466 0.0010367177920095026 1.1063216319490357 0.0012185504510148417']
['59866.38024838246 2.7796207354085247 0.0006405995334712645 0.3184895781785524 0.00019746769837901277 0.0008519191712667103 5.282010134117535e-07 1.672739381189876 0.0010371202645956554 1.1068813542186486 0.0012190103385609837']
['59866.38027992043 2.781877554304269 0.0006407673283296554 0.3188517104315588 0.00019753641612730208 0.0008528878290502224 5.283848246608021e-07 1.674641336300204 0.0010374811771391918 1.107236218004065 0.0012194055773092263']
['59866.38031145839 2.7763022183602972 0.0006403283398730429 0.31810597954917513 0.00019739579023778838 0.0008508930936527831 5.280086682668054e-07 1.6707246825061721 0.0010367425957867038 1.105577535854125 0.0012185465082478878']
['59866.38034299635 2.7766829267257056 0.0006403390255097578 0.3181212098366405 0.00019741717904706564 0.0008509338327374019 5.280658806150966e-07 1.6708046735117674 0.0010368549319698826 1.1058782532139382 0.0012186477003388043']
['59866.38037453432 2.781034751881524 0.0006407230259660014 0.318817042165074 0.0001975234613886225 0.0008527950958404833 5.283501723801748e-07 1.674459255068666 0.0010374131375452864 1.106575496812858 0.0012193244088242409']
['59866.38040607228 2.7759342448449846 0.0006402751828464751 0.31791326936538356 0.0001973688213576731 0.0008503776183866557 5.279365299377298e-07 1.669712549187939 0.0010366009525087873 1.1062216956570456 0.0012183980648832352']
['59866.38043761024 2.782219024509303 0.0006407566516691821 0.3189850824698975 0.00019751369658888696 0.0008532445823136148 5.283240527810788e-07 1.67534181969484 0.0010373618518323897 1.106877204814463 0.0012192984451295861']
['59866.38046914821 2.7790874383257793 0.000640579202734496 0.3182428322230414 0.0001974387127938521 0.0008512591571741471 5.281234806528169e-07 1.6714434465495873 0.0010369680293794755 1.107643991776192 0.001218870136204475']
['59866.380500686166 2.7820503541941886 0.0006407666660684628 0.3191771615544955 0.00019757193544865832 0.0008537583694695533 5.284798343342325e-07 1.6763506384164681 0.001037667728196735 1.1056997157777204 0.0012195639526016936']
['59866.38053222413 2.7756788289987893 0.0006402801601464863 0.3180996337775999 0.00019742099285342235 0.0008508761195197759 5.280760820627212e-07 1.6706913538739492 0.0010368749624654536 1.10498747512484 0.0012186338134423096']
['59866.3805637621 2.78294823387731 0.0006408735106219537 0.31885927208878245 0.0001975405578268441 0.0008529080555229134 5.283959031810527e-07 1.6746810508864627 0.0010375029297628369 1.1082671829908475 0.0012194798833450994']
['59866.380595300056 2.782746327751288 0.0006408914308363962 0.31908078703571774 0.00019754676189471203 0.0008535005798720477 5.284124982746403e-07 1.6758444697254085 0.0010375355141528995 1.1069018580258794 0.0012195170229431177']
['59866.38062683802 2.7818667192941557 0.0006408125589285919 0.3185919698739999 0.00019749699027021082 0.0008521930560475848 5.282793655004372e-07 1.6732771526995796 0.0010372741085620317 1.1085895665945762 0.001219253177963366']
['59866.38065837599 2.7776051431115043 0.0006404584945352768 0.31823194522614745 0.00019743570460844086 0.000851230035840179 5.281154341389019e-07 1.6713862669440518 0.0010369522300863491 1.1062188761674525 0.0012187932600336473']
['59866.380689913945 2.7764399444597423 0.0006403304691365105 0.3181328848680898 0.00019740678018368606 0.0008509650619637198 5.280380649762832e-07 1.6708659919542534 0.0010368003160907881 1.1055739525054888 0.0012185967360659317']
['59866.38072145191 2.775440510765455 0.0006402311009341211 0.31789130540793414 0.00019736412077393407 0.0008503188675900519 5.279239564732343e-07 1.669597192268562 0.0010365762645689815 1.105843318496893 0.0012183538955784152']
['59866.38075298987 2.7760685160578102 0.0006402976027764611 0.3179787006771013 0.0001973861264785219 0.0008505526388352754 5.279828189381313e-07 1.6700562010351963 0.0010366918407485395 1.106012315022614 0.0012184871738331422']
['59866.380784527835 2.7815322265482676 0.0006407374134864215 0.31873192882217005 0.00019749961859345095 0.0008525674284581936 5.282863959312894e-07 1.6740122312088765 0.0010372879127807297 1.107519995339391 0.0012192254291320667']
['59866.3808160658 2.7810577223185997 0.0006407083550972714 0.31914379097711476 0.00019758847894518427 0.000853669107413352 5.28524086086302e-07 1.6761753727789643 0.0010377546163087411 1.1048823495396354 0.0012196072482408235']
['59866.38084760376 2.777044282387521 0.0006403915641977385 0.3179794334111965 0.00019739963728680518 0.0008505545988059177 5.280189586343237e-07 1.6700600494285531 0.0010367628008760778 1.1069842329589679 0.0012185969230127064']
['59866.380879141725 2.7766034791829837 0.0006403419221293098 0.3182246376844752 0.00019744419580121667 0.0008512104890943137 5.281381470011375e-07 1.671347886998294 0.0010369968266870624 1.1052555921846896 0.0012187699519578322']
['59866.38091067969 2.781122865748156 0.0006407262046556544 0.3188299853076629 0.00019751549529036877 0.0008528297171030406 5.283288640790953e-07 1.6745272337587338 0.0010373712987939538 1.1065956319894223 0.001219290482573326']
['59866.38094221765 2.7770352876508846 0.0006404108022129515 0.3181611589485005 0.00019742427599397594 0.0008510406915378162 5.280848640467207e-07 1.671014490275738 0.001036892205850714 1.1060207973751466 0.0012187171296675022']
['59866.380973755615 2.776156699994928 0.0006403603096160857 0.31767955519479174 0.00019734053820559698 0.0008497524626636254 5.278608760980805e-07 1.6684850587961753 0.001036452406542001 1.1076716411987528 0.001218316427353056']
['59866.38100529357 2.781667184988598 0.0006407899685878115 0.31896031523117285 0.0001975347352418203 0.0008531783330956356 5.283803285056222e-07 1.6752117396595214 0.0010374723489591402 1.1064554453290765 0.0012194099633419289']
['59866.38103683154 2.7754161009959413 0.0006402447946784435 0.3176781142677837 0.00019733006027787103 0.0008497486083668864 5.278328489721823e-07 1.6684774909022253 0.0010363973754089865 1.106938610093716 0.001218208897056444']
['59866.381068369505 2.775195705861626 0.0006402185216441398 0.31783147366912323 0.0001973898975639576 0.0008501588252877738 5.279929061127181e-07 1.6692829499428743 0.0010367116468695254 1.1059127559187518 0.001218462471400384']
['59866.38109990746 2.776829878994977 0.0006403824935846932 0.31833900491919276 0.00019745264545724254 0.0008515164069217599 5.281607487578424e-07 1.6719485552478612 0.0010370412051325763 1.1048813237471158 0.0012188290278921715']
['59866.38113144543 2.77808630953518 0.0006404630113664532 0.31795032399021866 0.00019736320577488052 0.0008504767348018981 5.279215089669772e-07 1.6699071638141736 0.0010365714589016836 1.1081791457210066 0.001218471689592397']
['59866.381162983394 2.775746022600381 0.0006402623956972783 0.3179065541844638 0.0001973756149746721 0.0008503596561305694 5.279547020003662e-07 1.6696772803805873 0.0010366366332703368 1.1060687422197937 0.001218421702360097']
['59866.38119452135 2.7825864660692146 0.0006407944035138167 0.31911805986527664 0.00019757467410475447 0.0008536002799572127 5.284871598914616e-07 1.6760402303848565 0.001037682111894719 1.106546235684358 0.0012195907645275576']
['59866.38122605932 2.7826222777870466 0.0006408576498816697 0.31870278886198444 0.00019750756706763602 0.0008524894827656718 5.283076570902237e-07 1.6738591851994984 0.0010373296589686765 1.1087630925875482 0.0012193241360638801']
['59866.38125759728 2.7775764612456064 0.0006404497696277475 0.3179266501574548 0.00019736423126650454 0.000850413410305994 5.27924252026827e-07 1.6697828264572208 0.0010365768448871038 1.1077936347883857 0.0012184693113789686']
['59866.38128913524 2.777449947303849 0.0006403957306144078 0.3182792584998315 0.00019744888144530384 0.0008513565928381737 5.281506805039617e-07 1.671634761028527 0.0010370214361623102 1.105815186275322 0.0012188191624885546']
['59866.38132067321 2.778422915330408 0.000640556197753271 0.31832355232950993 0.00019744892442583088 0.0008514750732069433 5.281507954714128e-07 1.6718673966886028 0.0010370216619003724 1.106555518641805 0.0012189036753290795']
['59866.38135221117 2.7832984153240536 0.0006408892697132315 0.31919663207067545 0.00019759580003049184 0.0008538104506274455 5.285436690596717e-07 1.6764528995308585 0.001037793067387037 1.1068455157931951 0.0012197350149725777']
['59866.38138374913 2.782261440886118 0.00064082019745295 0.31898522510817573 0.00019757840774527156 0.0008532449638528931 5.284971469056469e-07 1.675342568845461 0.0010377017213512162 1.1069188720406569 0.0012196210017701872']
['59866.3814152871 2.7794355048862185 0.0006406026207460307 0.31829680013616884 0.00019743196104445257 0.0008514035144874679 5.281054205806915e-07 1.6717268914714751 0.0010369325685107803 1.1077086134147434 0.0012188522754399103']
['59866.38144682506 2.7753010973086933 0.0006402728211189382 0.31770096197818887 0.0001973299461546463 0.0008498097230904044 5.278325437070505e-07 1.6685974893812443 0.0010363967760223022 1.106703607927449 0.001218223117008139']
['59866.38147836302 2.7808686023774043 0.0006407343168500736 0.31877828182769463 0.00019751499229944428 0.0008526914168608222 5.283275186422555e-07 1.6742556818681442 0.0010373686570348964 1.10661292050926 0.0012192924978805188']
['59866.38150990098 2.7819951947424464 0.0006407854290153733 0.31911505729138917 0.00019758808980327154 0.0008535922484534112 5.28523045181109e-07 1.6760244605640189 0.001037752572496174 1.1059707341784275 0.0012196460010022755']
['59866.38154143895 2.782586716432039 0.0006408185152297059 0.31924989040197593 0.00019758446969854492 0.000853952909899501 5.285133618607435e-07 1.6767326176574366 0.0010377335593410974 1.1058540987746022 0.0012196472070414247']
['59866.38157297691 2.7829701372454783 0.0006408831391063264 0.3193060842768293 0.00019759816868207425 0.0008541032213777262 5.285500049018196e-07 1.677027753554776 0.0010378055077840036 1.1059423836907023 0.0012197423785281843']
['59866.38160451487 2.781680961227299 0.0006407409163759705 0.3188156285655536 0.0001974980388053303 0.000852791314641303 5.282821701987106e-07 1.674451830701437 0.0010372796155742139 1.1072291305258617 0.0012192202109562109']
['59866.381636052836 2.7814377377809456 0.0006407532942965286 0.3187553139483676 0.0001974865537850623 0.0008526299807007005 5.282514492281701e-07 1.67413505224983 0.001037219295089613 1.1073026855311157 0.0012191753976594374']
['59866.3816675908 2.7791113084367525 0.0006405820285397198 0.3182587245469647 0.0001974501109992623 0.0008513016671222078 5.281539694046388e-07 1.6715269146374196 0.0010370278939036885 1.1075843937993328 0.001218922552101807']
['59866.38169912876 2.7762965941835116 0.000640348863364877 0.3180080291227284 0.0001973849894001976 0.0008506310887024141 5.279797773980305e-07 1.67021023698912 0.0010366858686985168 1.1060863571943915 0.0012185090304022734']
['59866.381730666726 2.7789570452776786 0.0006405501430669866 0.3181689217545046 0.00019740248301237413 0.0008510614560579477 5.28026570588794e-07 1.6710552613156755 0.0010367777469137297 1.1079017839620031 0.0012186929811394856']
['59866.381762204684 2.7769015454518007 0.0006403554824129068 0.3184484344266637 0.00019746553105991983 0.0008518091169559467 5.281952161084442e-07 1.672523290056007 0.001037108881617226 1.1043782553957937 0.0012188724199790558']
['59866.38179374265 2.7756506417586815 0.0006402692575110894 0.3175599235923089 0.00019730047208524722 0.0008494324633210177 5.27753704314817e-07 1.6678567415562442 0.001036241975237643 1.1077939002024373 0.0012180895506317315']
['59866.381825280616 2.7830212935543157 0.000640844777998219 0.3190915573606897 0.00019755959659309912 0.0008535293891234426 5.28446829462731e-07 1.6759010365582445 0.0010376029232830838 1.1071202569960712 0.0012195498578956038']
['59866.381856818574 2.7818474493060803 0.0006407631544746263 0.3189091038142888 0.0001975239556024396 0.0008530413490596719 5.28351494339367e-07 1.6749427721338699 0.0010374157332060905 1.1069046771722104 0.0012193477041581716']
['59866.38188835654 2.7764897715748056 0.0006403763569899616 0.31814536849694597 0.00019740552065399444 0.0008509984540854036 5.280346958943271e-07 1.6709315572318593 0.0010367937009138366 1.1055582143429463 0.0012186152209973191']
['59866.381919894506 2.781290485231475 0.0006407425029566043 0.3187903992931267 0.00019752518941784086 0.0008527238295418517 5.283547946388623e-07 1.6743193240185226 0.001037422213328996 1.1069711612129522 0.001219342365295132']
['59866.381951432464 2.774732033964027 0.0006401506470935312 0.31812193230719554 0.00019742718227630363 0.000850935765254378 5.280926379828295e-07 1.6708084679999768 0.0010369074699385697 1.10392356596405 0.0012185934318667045']
['59866.38198297043 2.780918600352852 0.000640679368424699 0.31874439324176784 0.00019751525986217577 0.0008526007691975508 5.283282343385799e-07 1.6740776955975203 0.0010373700623013435 1.1068409047553318 0.0012192648191775913']
['59866.38201450839 2.7760914063782924 0.0006402849569187242 0.3181981428557825 0.00019742330913056333 0.0008511396187925857 5.280822778098903e-07 1.6712087334862529 0.0010368871277865723 1.1048826728920396 0.001218646684575107']
['59866.382046046354 2.775012313004943 0.0006401937747479867 0.3179504821493684 0.00019739082829528572 0.0008504771578575364 5.279953957008115e-07 1.669907994481977 0.0010367165351643159 1.105104318522966 0.0012184536279683277']
['59866.38207758432 2.777256912655671 0.0006403830334073196 0.31828401733900846 0.000197442283863907 0.0008513693221285668 5.281330328116633e-07 1.6716597549317673 0.0010369867849995117 1.1055971577239037 0.0012187830084718048']
['59866.38210912228 2.781972189672227 0.0006407648691067483 0.3189150137744031 0.00019753440409013028 0.0008530571574523723 5.2837944271691e-07 1.6749738118403525 0.0010374706097170709 1.1069983778318744 0.0012193952941963074']
['59866.382140660244 2.776999206538304 0.0006403300477622174 0.31840327272199376 0.0001974607463637886 0.0008516883151318008 5.281824176539825e-07 1.672286096228959 0.0010370837519106547 1.1047131103093448 0.0012188376752235073']
['59866.38217219821 2.7761723227972626 0.000640311990931708 0.3180123010944249 0.00019739143265007467 0.0008506425156841325 5.279970122731148e-07 1.670232673815257 0.0010367197092966108 1.1059396489820055 0.0012185184452337917']
['59866.38220373617 2.7786634917595725 0.0006404950177256539 0.3182664667553594 0.00019742604888386072 0.00085132237654635 5.280896063019934e-07 1.6715675774966356 0.0010369015172471679 1.1070959142629369 0.0012187693072115266']
['59866.38223527413 2.782369934117843 0.0006407828582487853 0.31904646180236657 0.00019754783563455733 0.0008534087642323733 5.284153703923541e-07 1.67566419013848 0.0010375411535428433 1.1067057439793633 0.0012194647664940945']
['59866.38226681209 2.7821179687898487 0.0006408053810805759 0.3190528973543407 0.0001975580983781367 0.000853425978516545 5.284428219279901e-07 1.6756979903064115 0.0010375950545070207 1.1064199784834372 0.0012195224612770565']
['59866.38229835006 2.7751121100800025 0.0006401858404430075 0.3184795730532538 0.0001974806984631919 0.000851892408827256 5.282357869858328e-07 1.6726868332628877 0.001037188542348697 1.1024252768171148 0.001218851091267155']
['59866.38232988802 2.775952134241175 0.0006403015048477951 0.3180046945422763 0.0001973798487030575 0.0008506221691232193 5.279660266860846e-07 1.6701927234363252 0.0010366588692387476 1.1057594108048496 0.0012184611722503551']
['59866.38236142598 2.7793864164100857 0.0006405936569315995 0.31824270006824795 0.00019744274821876043 0.0008512588036768592 5.281342749019199e-07 1.6714427524592856 0.0010369892238380274 1.1079436639508 0.0012188957640656539']
['59866.38239296395 2.778499079694302 0.0006404927116845138 0.3183154104591034 0.0001974539034925246 0.0008514532947376791 5.281641138424429e-07 1.6718246347641985 0.0010370478124607386 1.1066744449301034 0.0012188925625544627']
['59866.38242450191 2.7762691148823073 0.0006403597745922772 0.31820892128906664 0.000197433890417157 0.0008511684497326858 5.281105814076324e-07 1.6712653429047617 0.0010369427017707827 1.1050037719775456 0.0012187332799556932']
['59866.38245603987 2.7779058278069972 0.0006404159069249977 0.31848837530954865 0.00019749762057924347 0.0008519159537448979 5.28281051497046e-07 1.6727330636005708 0.001037277419008632 1.1051727642064264 0.0012190475699609825']
['59866.38248757784 2.7811084597117977 0.0006407083125112603 0.3188875284971237 0.00019752852737950133 0.0008529836378264686 5.283637232623601e-07 1.6748294563924566 0.0010374397446402382 1.106279003319341 0.0012193393151540015']
['59866.382519115796 2.775890365542256 0.0006403181307255694 0.3175694811805269 0.00019731244728975149 0.0008494580286556217 5.277857364659328e-07 1.6679069389733556 0.0010363048702192832 1.1079834265689004 0.0012181687455258786']
['59866.38255065376 2.7819389946007615 0.000640713997830815 0.3192978234006572 0.00019762170454852104 0.0008540811245831538 5.286129603553483e-07 1.6769843666000905 0.0010379291205279467 1.104954628000671 0.0012197587000125324']
['59866.38258219173 2.779151694072814 0.0006406009666327385 0.31823350666205386 0.00019741388480384143 0.0008512342124829157 5.280570689328633e-07 1.671394467762888 0.0010368376302722765 1.107757226309926 0.0012187706387993718']
['59866.382613729686 2.7821633107143127 0.0006407363929985429 0.3192296249892959 0.00019758267376254125 0.0008538987024944283 5.285085579600299e-07 1.67662618166647 0.0010377241269041034 1.1055371290478426 0.0012195960351164097']
['59866.38264526765 2.777528057915394 0.0006404333654616513 0.31810054651421527 0.00019742494900085771 0.0008508785609742982 5.280866642546529e-07 1.6706961476586937 0.0010368957405507233 1.1068319102567004 0.0012187319936592992']
['59866.38267680562 2.7751488630540164 0.0006402541068772056 0.31747614763435683 0.00019728904054509922 0.0008492083732736173 5.27723126396805e-07 1.6674167417770842 0.0010361819356360254 1.1077321212769322 0.0012180305107473903']
['59866.382708343575 2.7772590111744933 0.0006403933684843738 0.31809944454103617 0.00019742028048432795 0.0008508756133360022 5.280741765658695e-07 1.6706903599844336 0.0010368712210311343 1.1065686511900596 0.0012186901145908088']
['59866.38273988154 2.7813375935722924 0.0006407644794904125 0.31870427379197036 0.00019750423865524515 0.0008524934547647879 5.282987540098094e-07 1.673866984201525 0.0010373121778111615 1.1074706093707674 0.001219260297234333']
['59866.3827714195 2.7814350356022133 0.0006407364740836775 0.3189603743252435 0.0001975255509582859 0.0008531784911647691 5.283557617136347e-07 1.6752120500275394 0.0010374241121758714 1.106222985574674 0.0012193408127939777']
['59866.382802957465 2.7785278673799216 0.000640502908868155 0.3183530935165504 0.00019744460469839754 0.0008515540921303431 5.281392407491636e-07 1.6720225499818824 0.0010369989742562897 1.1065053173980393 0.0012188563692565114']
['59866.38283449543 2.7756754501712066 0.000640289316306735 0.3178643942431976 0.00019735661962082946 0.0008502468836422842 5.279038918413773e-07 1.6694558521176348 0.0010365368677564572 1.1062195980535718 0.0012183509702852102']
['59866.38286603339 2.782758654404736 0.0006408497074699343 0.31887246693778937 0.00019749671406667406 0.0008529433500681705 5.282786266910561e-07 1.6747503515640199 0.0010372726579132043 1.1080083028407162 0.001219271468713438']
['59866.382897571355 2.776093753601817 0.0006403031055387129 0.3180420512501651 0.00019739881829074443 0.0008507220935722637 5.280167679238794e-07 1.6703889246332202 0.0010367584994261788 1.1057048289685967 0.0012185467791984608']
['59866.38292910932 2.781509923002667 0.0006407735944940607 0.31888502085336784 0.00019754263457774572 0.0008529769301979096 5.284014582259529e-07 1.674816285994579 0.0010375138370679923 1.106693637008088 0.0012194366574399785']
['59866.38296064728 2.7786902915017637 0.0006405280874716635 0.31824679907179 0.00019743324715135608 0.0008512697679907326 5.281088607533141e-07 1.6714642808392333 0.001036939323273929 1.1072260106625305 0.0012188188507698348']
['59866.382992185245 2.7771436522317696 0.0006403830120198257 0.3182414926923176 0.00019743398642784254 0.0008512555740995905 5.281108382240222e-07 1.671436411199147 0.001036943206028585 1.1057072410326225 0.0012187459188085204']
['59866.3830237232 2.7756304823930478 0.000640251276006991 0.3178338561265936 0.00019734649564731157 0.0008501651980589186 5.27876811498031e-07 1.6692954628497563 0.0010364836956266365 1.1063350195432915 0.0012182857414122642']
['59866.38305526117 2.778819660528138 0.0006405057415819399 0.3183489740154486 0.000197432611193554 0.0008515430729881007 5.281071596469645e-07 1.6720009139466838 0.0010369359831594223 1.106818746581454 0.0012188042657335213']
['59866.383086799135 2.781933575694568 0.0006407270160884641 0.31912355827257843 0.0001975658750329804 0.0008536149874984096 5.284636234920085e-07 1.6760691085744668 0.0010376358982824602 1.1058644671201012 0.0012195160378404523']
['59866.38311833709 2.777350820018097 0.000640457652853684 0.31820524711314674 0.00019744597955360444 0.0008511586217787456 5.28142918312226e-07 1.6712460457623255 0.0010370061951344772 1.1061047742557717 0.0012188387316811587']
['59866.38314987506 2.781601334669953 0.000640736177138844 0.319070918573455 0.00019754572826185935 0.0008534741829888571 5.284097334380377e-07 1.6757926395664653 0.0010375300854089252 1.1058086951034876 0.0012194308208435408']
['59866.383181413024 2.775752776301511 0.000640339136124366 0.3174676070046424 0.00019729048893196222 0.0008491855281738497 5.277270006477085e-07 1.6673718855285842 0.0010361895427098856 1.1083808907729267 0.0012180816793933898']
['59866.38321295098 2.7760604408291822 0.000640259639463233 0.3182708691546383 0.0001974197435234366 0.0008513341524052862 5.280727402636828e-07 1.6715906993415879 0.0010368684008583856 1.1044697414875944 0.001218617448842833']
['59866.38324448895 2.7755414609688858 0.0006402512867663292 0.3177515249461623 0.0001973419775708507 0.0008499449726078896 5.278647262173249e-07 1.6688630511878275 0.0010364599662334598 1.1066784097810582 0.0012182655588214766']
['59866.38327602691 2.7764226125741707 0.000640340877820213 0.3181099212967645 0.0001974176944159478 0.0008509036373269557 5.28067259161401e-07 1.6707453849619986 0.0010368576387392216 1.105677227612172 0.0012186509766210485']
['59866.38330756487 2.7777380318144616 0.0006404961267390366 0.3179955930550015 0.00019737716577026532 0.0008505978238007106 5.279588501816163e-07 1.6701449215073612 0.0010366447782051752 1.1075931103071004 0.0012185514697983688']
['59866.38333910284 2.776778382066351 0.0006403779127381779 0.3180512639139186 0.00019741286429383054 0.0008507467362777328 5.28054339198196e-07 1.6704373104722616 0.0010368322704507908 1.1063410715940896 0.001218648853514025']
['59866.3833706408 2.77699379650159 0.0006403898899750128 0.31807817179912445 0.00019740296045217388 0.0008508187114531726 5.280278476796202e-07 1.6705786333987631 0.0010367802544757033 1.106415163102827 0.001218610892472619']
['59866.38340217876 2.782080894904892 0.0006407476536739147 0.3190159325924824 0.00019754278469903542 0.0008533271024733523 5.284018597813364e-07 1.6755038476495925 0.001037514625520144 1.1065770472552996 0.0012194236974312216']
['59866.38343371672 2.780870908795393 0.000640641259725061 0.31879348226944126 0.00019751630675505553 0.000852732076111934 5.283310346440707e-07 1.6743355161210152 0.001037375560688317 1.1065353926743777 0.0012192494730675562']
['59866.38346525469 2.7812055853770463 0.0006406785833198514 0.3189722066509959 0.00019754630797692033 0.0008532101411333704 5.284112841021981e-07 1.675274194595567 0.0010375331301308841 1.1059313907814794 0.0012194031504157768']
['59866.38349679265 2.77544555830728 0.0006402361068084479 0.3179648639318319 0.00019740080613339726 0.0008505156272990412 5.28022085150506e-07 1.669983529053739 0.0010367689397762462 1.1054620292535409 0.00121852045815653']
['59866.38352833061 2.775172105549594 0.0006402683996267093 0.31780556785499114 0.00019733965688891594 0.0008500895305251866 5.278585186878919e-07 1.6691468899947015 0.0010364477777779198 1.1060252155548924 0.001218264183016695']
['59866.38355986858 2.775510612424559 0.0006403019841955501 0.3179783581733525 0.00019738784033520194 0.0008505517226812477 5.279874032870788e-07 1.6700544021709693 0.001036700842096649 1.1054562102535899 0.0012184971345754816']
['59866.38359140654 2.7808294616466345 0.000640671263562209 0.3188276364171293 0.00019753065435022704 0.0008528234341191885 5.283694126389115e-07 1.6745148971487884 0.0010374509157049742 1.106314564497846 0.0012193293527392372']
['59866.3836229445 2.780831478623395 0.000640638841483438 0.31871069179641276 0.00019749677029611186 0.0008525106221115407 5.282787770976606e-07 1.6739006922080504 0.0010372729532358816 1.1069307864153448 0.0012191609019042275']
['59866.383654482466 2.7747705756723233 0.0006401529878507456 0.31792952209146996 0.00019737765228720934 0.0008504210923647292 5.279601515526506e-07 1.6697979101442753 0.0010366473334412257 1.104972665528048 0.0012183733179059039']
['59866.383686020425 2.781807382173882 0.0006407221739092065 0.3191178010060512 0.00019757067134055739 0.0008535995875416615 5.284764530056129e-07 1.6760388708301008 0.0010376610889735157 1.1057685113437812 0.0012195349276296443']
['59866.38371755839 2.776141349844103 0.0006403435694111818 0.31789607625545396 0.00019736525490104053 0.000850331629001237 5.279269901192021e-07 1.66962224924083 0.0010365822211189104 1.106519100603273 0.0012184180678347094']
['59866.383749096356 2.7776339971793944 0.0006403699239425567 0.31821851754140457 0.00019742061764912433 0.0008511941184888999 5.280750784388775e-07 1.6713157433897299 0.0010368729918546445 1.1063182537896645 0.0012186793018377712']
['59866.383780634314 2.7824956389271303 0.0006408007690502272 0.31903600047924763 0.00019753797896303283 0.00085338078152169 5.28389005047891e-07 1.675609246214536 0.0010374893853100464 1.1068863927125943 0.001219430133401']
['59866.38381217228 2.7823496200407734 0.0006408251693903298 0.3188843309648647 0.000197547783818297 0.0008529750848337842 5.284152317904387e-07 1.674812662630592 0.0010375408813986188 1.1075369574101814 0.001219486768397906']
['59866.383843710246 2.77515077734674 0.0006402137003799645 0.3179152428479779 0.00019738308443781864 0.0008503828972019498 5.279746818656101e-07 1.6697229141175312 0.0010366758636440056 1.1054278632292087 0.0012184294925912833']
['59866.383875248204 2.778568242881425 0.0006405124404452666 0.3183400297508657 0.00019744905186886414 0.0008515191482163245 5.281511363653406e-07 1.6719539377671522 0.0010370223312440344 1.106614305114273 0.00121888125010764']
['59866.38390678617 2.782538589682579 0.0006408393653672042 0.31908496485880244 0.00019754928827095836 0.000853511755018187 5.28419256010232e-07 1.6758664120735423 0.0010375487829357058 1.1066721776090367 0.0012195009508711363']
['59866.38393832413 2.7753745439980797 0.0006402405087203727 0.3177732304842558 0.0001973458857574374 0.0008500030321655375 5.278751801200779e-07 1.6689770508626882 0.0010364804924235158 1.1063974931353915 0.0012182773576575308']
['59866.383969862094 2.7761482004326288 0.0006403610024710966 0.3180066045623712 0.0001973939968129671 0.0008506272781843875 5.280038710831858e-07 1.6702027550544707 0.001036733176538693 1.105945445378158 0.0012185556584833523']
['59866.38400140006 2.780386696304147 0.0006406003019896222 0.31883685683124924 0.00019752808448777855 0.0008528480975559035 5.283625385832519e-07 1.674563323693536 0.0010374374185282487 1.1058233726106108 0.0012192805847186085']
['59866.38403293802 2.7763367940571353 0.0006402590613452647 0.3182091395537937 0.00019742816398850526 0.0008511690335631097 5.280952639382847e-07 1.6712664892531184 0.0010369126259900487 1.105070304804017 0.0012186547745659138']
['59866.384064475984 2.7789137060598863 0.0006405184132704535 0.3185606768768601 0.00019750326166119593 0.0008521093512546611 5.282961406748127e-07 1.673112798723005 0.0010373070465398947 1.1058009073368813 0.0012191266326923625']
['59866.38409601395 2.7803004642633415 0.0006406277126104488 0.31831357782528746 0.00019744183639089396 0.0008514483926749787 5.281318358781856e-07 1.671815009586594 0.0010369844348261238 1.1084854546767475 0.0012189095882124117']
['59866.38412755191 2.774911515293133 0.0006402065464388908 0.31782730302060125 0.00019736181829848438 0.0008501476693326785 5.279177976438364e-07 1.669261045276267 0.0010365641717357372 1.105650470016866 0.0012183307039672793']
['59866.384159089874 2.781656858697513 0.0006407619718212015 0.318932557829413 0.0001975504588962447 0.0008531040855713083 5.284223872841956e-07 1.6750659549864129 0.001037554931177756 1.1065909037111001 0.0012194655139623556']
['59866.38419062783 2.775116119911416 0.0006401617556362612 0.3179737283464184 0.00019737822287308818 0.0008505393384822187 5.279616777974082e-07 1.670030085853038 0.0010366503302157994 1.1050860340583781 0.0012183804744478738']
['59866.3842221658 2.7807402364158653 0.0006406876349482447 0.3187098039433435 0.00019749035141265964 0.0008525082472173438 5.282616073996682e-07 1.673896029114199 0.0010372392406127083 1.1068442073016662 0.0012191578600995044']
['59866.38425370376 2.7826603963949235 0.0006408620791429641 0.3190831010643262 0.0001975712568599579 0.0008535067696046778 5.284780191956444e-07 1.6758566232370076 0.0010376641641804513 1.106803773157916 0.0012196110536182253']
['59866.38428524172 2.7818376880155324 0.0006407621080376316 0.3189265245360189 0.00019753802588733801 0.0008530879472777487 5.283891305644476e-07 1.6750342675211076 0.001037489631761229 1.1068034204944248 0.001219410027475943']
['59866.38431677969 2.775808214904851 0.000640263536331023 0.317839414339126 0.00019737135171037703 0.0008501800655715116 5.279432983098406e-07 1.6693246551424685 0.00103661424217635 1.1064835597623823 0.0012184032514065103']
['59866.38434831765 2.7791966147757696 0.0006405730838700206 0.3184924449854256 0.00019747838396210938 0.000851926839610992 5.282295959893946e-07 1.672754437948664 0.0010371763863556167 1.1064421768271056 0.001219044187957288']
['59866.38437985561 2.7763294342104223 0.0006403516825996508 0.31805008785435995 0.00019739203971817326 0.0008507435904677811 5.279986361031767e-07 1.6704311336888653 0.0010367228976794814 1.105898300521557 0.0012185420156815047']
['59866.38441139358 2.7827969428547146 0.0006408543990792611 0.3189859307282037 0.00019753893880019677 0.0008532468512968493 5.283915724903985e-07 1.6753462748330028 0.0010374944264716216 1.1074506680217118 0.0012194626053220819']
['59866.384442931536 2.775607110498197 0.0006402570683438119 0.3180124596269942 0.00019739560736023825 0.0008506429397386207 5.280081790925856e-07 1.6702335064442975 0.0010367416352953691 1.1053736040538997 0.001218508240398533']
['59866.3844744695 2.7807513365909475 0.0006406751200068778 0.3190324699907554 0.00019757521368178268 0.0008533713379133695 5.284886031914821e-07 1.6755907037329592 0.0010376849458076823 1.1051606328579884 0.0012195305064457058']
['59866.38450600747 2.775915206944732 0.0006402932600533519 0.3180488981158144 0.0001973776531710636 0.0008507404080682767 5.279601539168485e-07 1.6704248850620504 0.0010366473380833173 1.1054903218826815 0.0012184470289778612']
['59866.384537545426 2.7776816133942113 0.0006404462551822435 0.3182221781568424 0.00019742444175382208 0.0008512039101702728 5.280853074332565e-07 1.6713349693111472 0.0010368930764381413 1.106346644083064 0.0012187365005374676']
['59866.38456908339 2.781153211839358 0.0006406974771514263 0.3188204864759259 0.00019752947457418672 0.0008528043089345611 5.283662568878433e-07 1.674477344936586 0.0010374447194022413 1.1066758669027719 0.0012193378543471033']
['59866.38460062136 2.7751931535865664 0.0006402478024330775 0.3174721942929509 0.0001972969801201134 0.000849197798587458 5.277443637515875e-07 1.6673959784293644 0.0010362236350846294 1.107797175157202 0.0012180626709773139']
['59866.384632159316 2.7744689613527003 0.0006401742575639608 0.31770970689722067 0.00019734407681935785 0.0008498331146381497 5.278703414404626e-07 1.6686434185778398 0.0010364709916983082 1.1058255427748604 0.0012182344588295155']
['59866.38466369728 2.7804762402657017 0.0006406434545803443 0.31897563717286326 0.00019755026122262928 0.0008532193173436657 5.284218585323802e-07 1.675292212042349 0.0010375538929759942 1.1051840282233527 0.0012194023604726533']
['59866.38469523524 2.776343782022574 0.0006402739837597935 0.318490789618457 0.00019747529088041336 0.0008519224117145939 5.282213223887003e-07 1.672745743794417 0.0010371601411786416 1.103598038228157 0.001218873222582782']
['59866.384726773205 2.7755102995272574 0.0006402502127748197 0.3179531390065795 0.00019738289526515608 0.000850484264613137 5.27974175852764e-07 1.6699219485639683 0.0010366748700901054 1.1055883509632891 0.0012184478327915969']
['59866.38475831117 2.778064640485435 0.0006404439758096206 0.31836452153199907 0.00019743425553285848 0.000851584660620232 5.281115580457617e-07 1.6720825710714238 0.0010369446193952653 1.1059820694140112 0.0012187791554845468']
['59866.38478984913 2.77802452605378 0.0006404779752379716 0.3180997966010115 0.00019740589761908371 0.0008508765550517222 5.280357042280637e-07 1.670692209038926 0.0010367956807724986 1.107332317014854 0.0012186703083416125']
['59866.384821387095 2.778857322308026 0.0006405381903306865 0.3183914884841521 0.0001974641965159973 0.0008516567937922535 5.281916463729477e-07 1.672224204223488 0.001037101872457969 1.106633118084538 0.0012189624551756859']
['59866.38485292506 2.782008667635248 0.0006407602486261661 0.3192441468304858 0.0001975965705977296 0.0008539375465752378 5.285457302291653e-07 1.676702451840787 0.001037797114483874 1.1053062157944609 0.0012196706715546296']
['59866.38488446302 2.7772366144305893 0.0006404293361948416 0.3181145116420173 0.00019740702075222535 0.0008509159159175016 5.28038708466572e-07 1.6707694939181583 0.0010368015795810157 1.106467120512431 0.0012186497651420012']
['59866.384916000985 2.7813810914907333 0.0006407195056651155 0.3191121206103428 0.00019757546982429635 0.0008535843932045907 5.284892883401744e-07 1.6760090368190272 0.0010376862910939936 1.105372054671706 0.0012195549695131246']
['59866.38494753894 2.782348386758903 0.0006407468374315705 0.31914539873026687 0.0001975520270438881 0.0008536734079488382 5.284265818799761e-07 1.6761838168606455 0.0010375631672473115 1.1061645698982574 0.0012194645692708058']
['59866.38497907691 2.7763209321488365 0.0006403192622327339 0.3180876274842121 0.00019740306431055015 0.000850844004209845 5.28028125487586e-07 1.6706282956103577 0.0010367807999503685 1.1056926365384787 0.0012185742426015736']
['59866.385010614875 2.774845484420098 0.0006402177031907989 0.31796546555502025 0.00019737644475143355 0.0008505172365646599 5.279569215478157e-07 1.6699866888393924 0.0010366409913415628 1.1048587955807054 0.0012184019256421584']
['59866.38504215283 2.781872122482717 0.0006407980606090766 0.31871714625637393 0.00019750953873642825 0.0008525278869721761 5.283129310538276e-07 1.6739345916826363 0.0010373400143719972 1.107937530800081 0.0012193016279402112']
['59866.3850736908 2.777316241049548 0.0006404096923486248 0.3179949858504994 0.00019739816384058086 0.0008505961996057866 5.280150173528115e-07 1.6701417324080852 0.0010367550621879248 1.107174508641463 0.001218599865840444']
['59866.385105228765 2.7789147026806607 0.0006405092612539898 0.31847471619733203 0.00019747167043661473 0.0008518794173545194 5.282116381613601e-07 1.6726613245658197 0.0010371411262427245 1.106253378114841 0.0012189806518137023']
['59866.38513676672 2.780973581263047 0.0006406907700908126 0.318824031008369 0.00019750584719738023 0.0008528137901086663 5.283030566557249e-07 1.6744959611784087 0.001037320626036661 1.1064776200846382 0.0012192287496941043']
['59866.38516830469 2.7786995675846633 0.0006405010199663165 0.31849887978944347 0.00019748002621005378 0.0008519440518944755 5.282339887940691e-07 1.6727882341882536 0.0010371850116074252 1.1059113333964097 0.001219013660662171']
['59866.38519984265 2.7784599896601203 0.0006404877318743315 0.3183681859281818 0.0001974652858714245 0.0008515944624146173 5.281945602603599e-07 1.6721018168496944 0.0010371075938625236 1.106358172810426 0.0012189408090341543']
['59866.38523138061 2.77579233307402 0.0006402634727812061 0.3181406242813283 0.0001974312680280959 0.0008509857639111742 5.281035668499553e-07 1.6709066401330268 0.0010369289287189911 1.1048856929409931 0.0012186709637109455']
['59866.38526291858 2.778161211591561 0.0006404278488156413 0.31844475823413926 0.00019745496363824001 0.0008517992836078455 5.281669495975858e-07 1.6725039823221601 0.0010370533804529413 1.105657229269401 0.0012188632176940541']
['59866.38529445654 2.7786664236502774 0.0006404811801390613 0.31801044133312617 0.00019738533023715146 0.0008506375410588608 5.279806890935934e-07 1.670222906161377 0.0010366876588085686 1.1084435174889005 0.0012185800934031033']
['59866.3853259945 2.7746990035029055 0.0006401570380275178 0.31790624767913167 0.00019737221190146525 0.0008503588362677343 5.279455992117514e-07 1.6696756705836748 0.0010366187599866873 1.1050233329192307 0.001218351134481559']
['59866.38535753247 2.777232946887339 0.0006403921007428736 0.31815271584503413 0.0001974040859438129 0.0008510181073083758 5.280308582268094e-07 1.6709701462449273 0.0010367861656712862 1.1062628006424116 0.0012186170834274557']
['59866.38538907043 2.7784831273490105 0.0006404769814052915 0.3181592498737085 0.00019740876531464325 0.0008510355850052133 5.280433749494684e-07 1.6710044636224188 0.0010368107421987567 1.1074786637265917 0.0012186825997152707']
['59866.38542060839 2.7812665118835302 0.0006407088134500324 0.31885536235916834 0.00019752688698554467 0.0008528975974927581 5.283593354168673e-07 1.6746605165922708 0.00103743112912576 1.1066059952912595 0.0012193322481225933']
['59866.38545214635 2.7815989913795827 0.000640690584228347 0.31910707732011695 0.00019755846420459492 0.0008535709030437691 5.284438004673034e-07 1.6759825489501943 0.0010375969758644693 1.1056164424293884 0.0012194637793070987']
['59866.38548368432 2.7788154079747107 0.0006405407629685284 0.31851979800014185 0.00019748578780031273 0.0008520000054513374 5.282494003162504e-07 1.6728980987402409 0.0010372152720604661 1.1059173092344698 0.0012190602895754464']
['59866.38551522228 2.77855389062511 0.0006405225780548478 0.31809416042647615 0.00019738583399652829 0.000850861479000673 5.279820365859455e-07 1.6706626072819126 0.001036690304603615 1.1078912833431975 0.0012186041033318263']
['59866.38554676024 2.778013992303734 0.0006404470519332428 0.3181459227512053 0.00019742889469987303 0.0008509999366451531 5.280972184983881e-07 1.6709344682311202 0.0010369164637598373 1.1070795240726137 0.00121875681706655']
['59866.38557829821 2.782039566532981 0.0006408489647177031 0.31869901041880944 0.00019747686664643255 0.0008524793759100669 5.282255373626686e-07 1.6738393404349237 0.0010371684172606752 1.1082002260980575 0.0012191823987175857']
['59866.38560983617 2.779310934423963 0.00064070439930923 0.31846442601101865 0.00019760831625988023 0.0008518518924130553 5.285771483836386e-07 1.6726072794696358 0.0010378588038859257 1.106703654954327 0.0012196938239155454']
['59866.38564137413 2.7756280593822114 0.0006402831390694215 0.31762630957821936 0.0001973342956311457 0.0008496100374018528 5.278441780042731e-07 1.6682054074486312 0.0010364196199114796 1.1074226519335801 0.0012182479742294046']
['59866.385672912096 2.7818018848157973 0.0006407561399900366 0.319074518030108 0.00019754816360879502 0.0008534838110782483 5.284162476817849e-07 1.6758115442757775 0.0010375428760966126 1.1059903405400198 0.0012194521928611069']
['59866.385704450055 2.7780237900799607 0.0006404630600417608 0.31805974820434807 0.00019739392383188024 0.0008507694306770686 5.280036758680475e-07 1.670481870821156 0.0010367327932346653 1.1075419192588047 0.0012186089675717176']
['59866.38573598802 2.77789276033285 0.0006404498625622474 0.31859155582712695 0.0001975043634796112 0.0008521919485247864 5.282990878991351e-07 1.67327497808365 0.0010373128334013194 1.1046177822492 0.0012190955421110664']
['59866.385767525986 2.781035714722253 0.0006406878544167081 0.31896627213363277 0.00019751672825938697 0.0008531942670531484 5.283321621146233e-07 1.675243025911937 0.0010373777744715701 1.105792688810316 0.0012192758399003371']
['59866.385799063944 2.782138077980174 0.0006408198953085118 0.31903434570024236 0.0001975485815056953 0.0008533763551980192 5.284173655029174e-07 1.675600555148332 0.0010375450709332738 1.1065375228318421 0.0012194875614130486']
['59866.38583060191 2.778741289622981 0.0006405346250398272 0.31822828397768743 0.00019742227405175256 0.0008512202424655522 5.280795091055336e-07 1.6713670376979382 0.0010368816914482805 1.1073742519250427 0.0012187732553414353']
['59866.385862139876 2.777292783156451 0.0006404240317084027 0.3183173603378767 0.00019746008504200336 0.0008514585104157498 5.281806487021993e-07 1.6718348757241426 0.0010370802785819504 1.1054579074323083 0.0012188840981050089']
['59866.385893677834 2.782321729447109 0.0006407637354141997 0.3191399442952672 0.0001975789258820486 0.0008536588180279648 5.284985328557186e-07 1.6761551696180002 0.0010377044426578184 1.1061665598291088 0.0012195936515633935']
['59866.3859252158 2.7814343670817108 0.0006407050424647214 0.31884214001872785 0.0001975275130987299 0.0008528622294114078 5.283610101901171e-07 1.674591071526932 0.001037434417535346 1.1068432955547787 0.001219333064476898']
['59866.38595675376 2.781454188807843 0.0006406892714995051 0.3192562168764846 0.00019759832600405906 0.000853969832415306 5.28550425718148e-07 1.67676584493952 0.001037806334054932 1.1046883438683228 0.001219641229878321']
['59866.385988291724 2.775318046311461 0.00064025324593114 0.31786576345902234 0.00019738264722406047 0.0008502505461207155 5.279735123743362e-07 1.6694630433772184 0.0010366735673532589 1.1058550029342424 0.0012184483182204704']
['59866.38601982969 2.7806646132668407 0.0006406951342401979 0.3189815490903386 0.00019757629745032588 0.0008532351309720582 5.284915021346891e-07 1.6753232620290894 0.0010376906378693586 1.1053413512377512 0.0012195458642301163']
['59866.38605136765 2.7818768789948933 0.0006407866740335527 0.31907170359522585 0.00019757346613680124 0.0008534762828223911 5.284839287306069e-07 1.6757967625799677 0.0010376757675252166 1.1060801164149257 0.0012195813052552217']
['59866.386082905614 2.778922328155833 0.0006405692837360096 0.31815876769227597 0.00019741595864915506 0.0008510342952311216 5.280626162056847e-07 1.6710019311569118 0.001036848522316991 1.107920396998921 0.0012187632524395344']
['59866.38611444358 2.780915603137487 0.0006404708949299766 0.3185800064517923 0.00019738294364916406 0.000852161055412616 5.279743052738402e-07 1.6732143195997495 0.0010366751242077944 1.1077012835377373 0.0012185640239247386']
['59866.38614598154 2.776337777824769 0.0006400778099500396 0.3178199621369878 0.00019723859531734745 0.0008501280334013552 5.275881918194589e-07 1.6692224902152724 0.0010359169922129592 1.1071152876094965 0.0012177124527350384']
['59866.386177519504 2.7808714410475037 0.0006404275871223908 0.3185786209323497 0.00019738565975555646 0.0008521573493240776 5.279815705134757e-07 1.6732070427119208 0.0010366893894724605 1.107664398335583 0.0012185533983343488']
['59866.38620905746 2.7764196174532914 0.0006400856613373634 0.31807266195986084 0.00019730975161612226 0.0008508039733329297 5.277785258813436e-07 1.6705496951673364 0.0010362907122695498 1.105869922285955 0.0012180345209335493']
['59866.38624059543 2.7760989687279705 0.000640062561261466 0.31808299143041574 0.00019731863927557915 0.0008508316033547505 5.278022992415971e-07 1.6706039465883182 0.001036337391153252 1.1054950221396522 0.0012180620963772397']
['59866.38627213339 2.7788098287710477 0.0006403095128761407 0.31812971013706126 0.0001973246985609793 0.0008509565699614311 5.278185070604716e-07 1.6708493179467505 0.0010363692151311938 1.1079605108242971 0.0012182189550123275']
['59866.38630367135 2.780278076637486 0.0006403878994707343 0.3188999461880672 0.0001974405115449659 0.0008530168535726105 5.281282920835925e-07 1.674894675357496 0.0010369774766017118 1.1053834012799901 0.001218777645334781']
['59866.38633520932 2.7822211716495038 0.0006405445643468668 0.31869421309470636 0.00019739213269940397 0.0008524665436773842 5.279988848161596e-07 1.6738141444049706 0.0010367233860262815 1.1084070272445332 0.001218643802777545']
['59866.38636674728 2.7809431162202265 0.0006404113117048235 0.31906946022892113 0.00019746343887421737 0.0008534702821024489 5.281896197774121e-07 1.6757849801939135 0.00103709789324694 1.105158136026313 0.0012188924022803382']
['59866.38639828524 2.7748833299018827 0.0006399658601001105 0.3176807600983252 0.0001972501731848187 0.0008497556856275463 5.27619161144476e-07 1.6684913870710358 0.0010359778003404343 1.1063919428308469 0.0012177053440351976']
['59866.38642982321 2.776206413631701 0.0006400598681095087 0.3182401120887216 0.0001973429356026366 0.0008512518811603174 5.278672888306756e-07 1.6714291601298406 0.0010364649979130074 1.1047772535018605 0.0012181692520594877']
['59866.386461361166 2.775797829669811 0.0006399818098853461 0.31806047985996827 0.00019731295906905735 0.0008507713877629273 5.277871054105764e-07 1.6704857135502535 0.0010363075581358054 1.1053121161195574 0.0012179942824305534']
['59866.38649289913 2.780869222009667 0.0006404203959914731 0.31884990128931456 0.00019740909110769515 0.0008528829898244926 5.280442464045043e-07 1.6746318345027027 0.0010368124532967183 1.1062373875069644 0.0012186543180545642']
['59866.3865244371 2.7811020401225743 0.0006404304777893093 0.31916895479648455 0.0001974681871801603 0.0008537364174341886 5.28202320892742e-07 1.6763075356958224 0.0010371228318285732 1.104794504426752 0.001218923691287343']
['59866.386555975056 2.7819626237609016 0.0006405072128242061 0.31897383610064894 0.00019742939134432099 0.0008532144997042409 5.280985469592091e-07 1.6752827526294587 0.0010369190721865598 1.106679871131443 0.0012187906514016544']
['59866.38658751302 2.779046990965327 0.0006402961980508071 0.3186113242558584 0.00019739800074778516 0.000852244826560917 5.280145811002969e-07 1.6733788038648028 0.0010367542056081154 1.105668187100524 0.0012185394963169774']
['59866.38661905099 2.78057515164183 0.0006403530260665907 0.3191005227498672 0.0001974578695331251 0.0008535533704008265 5.281747224973348e-07 1.6759481236862777 0.0010370686425059093 1.1046270279555523 0.0012188368911637394']
['59866.386650588945 2.77848831755614 0.0006402760538175558 0.31824966512929864 0.00019733369743350334 0.0008512774343305593 5.27842577901555e-07 1.6714793336622829 0.0010364164781171395 1.107008983893857 0.0012182415775226672']
['59866.38668212691 2.7779240171827286 0.0006401838966897547 0.31816858840727946 0.0001973246734730268 0.0008510605643964578 5.278184399533851e-07 1.6710535105424342 0.0010363690833667374 1.1068705066402944 0.0012181528223253804']
['59866.38671366487 2.7781838561973817 0.0006402477871865843 0.31835085284267495 0.00019735390613746817 0.0008515480986123073 5.278966336180169e-07 1.6720107817367382 0.0010365226162682153 1.1061730744606435 0.001218317020743297']
['59866.386745202835 2.781530035604057 0.0006405046632718399 0.31901917312788275 0.0001974437939658658 0.000853335770493978 5.281370721426097e-07 1.6755208672682917 0.0010369947162072784 1.1060091683357653 0.001218853668458518']
['59866.3867767408 2.774879980844272 0.0006399503524005502 0.3178261374865445 0.00019726035730448523 0.0008501445516771075 5.276464023711309e-07 1.6692549237738683 0.001036031288363893 1.1056250570704036 0.0012177427002476905']
['59866.38680827876 2.780717753893377 0.0006404330602689841 0.31877615762278494 0.00019740697712903612 0.0008526857348824773 5.280385917800812e-07 1.6742445253297529 0.0010368013504676269 1.1064732285636243 0.0012186515273108188']
['59866.386839816725 2.7770750381166245 0.000640126121681497 0.31819242183515156 0.0001973290289887858 0.0008511243157890068 5.278300904048601e-07 1.6711786861089895 0.0010363919589747156 1.105896352007635 0.0012181419228835544']
['59866.38687135469 2.775811958830534 0.0006400079684626456 0.31792488143272435 0.00019727148379071946 0.0008504086791919802 5.276761643086674e-07 1.6697735369365776 0.0010360897257915937 1.1060384218939565 0.0012178226962848832']
['59866.38690289265 2.781642057437595 0.0006404865328417268 0.3190821983132775 0.0001974596386252247 0.0008535043548602781 5.281794545940145e-07 1.6758518818974661 0.0010370779339560123 1.1057901755401287 0.0012189149436486893']
['59866.386934430615 2.7822403459699 0.0006405741197851383 0.3190677311041141 0.00019746743717245362 0.0008534656569132009 5.282003147173828e-07 1.6757758986560618 0.0010371188927124665 1.1064644473138383 0.0012189958164651909']
['59866.38696596857 2.781627221994289 0.0006404797204905431 0.3193099881927113 0.00019750805905535823 0.0008541136638568863 5.283089730948948e-07 1.6770482573146601 0.001037332242937806 1.104578964679629 0.0012191277433468667']
['59866.38699750654 2.7811048784284287 0.0006404335232114108 0.31855775332719144 0.00019736376795672484 0.0008521015311306082 5.279230127320098e-07 1.6730974439453332 0.0010365744115374204 1.1080074344830955 0.001218458701929257']
['59866.387029044505 2.781192806172526 0.0006404572265805453 0.3187329500247787 0.0001974070989642779 0.0008525701600454719 5.280389176738791e-07 1.6740175946679554 0.0010368019903586026 1.1071752115045705 0.001218664771908503']
['59866.38706058246 2.780470961832159 0.0006404075123174467 0.3185739151940752 0.00019740057825589122 0.0008521447620718543 5.280214756071194e-07 1.6731823276999749 0.0010367677429406052 1.1072886341321841 0.001218609508675678']
['59866.38709212043 2.780656518788531 0.0006403883424608078 0.31917365297724093 0.0001974789247483079 0.0008537489844710107 5.282310425237921e-07 1.676332211014921 0.0010371792266192642 1.1043243077736098 0.0012189495384511354']
['59866.387123658395 2.7815377025811143 0.0006404772368501624 0.3189812817403638 0.00019743701269661664 0.0008532344158448308 5.281189331086359e-07 1.675321857880062 0.0010369591002973562 1.1062158447010524 0.0012188089541075424']
['59866.38715519635 2.7788015840359277 0.0006402689219006014 0.3182434972954058 0.00019735544905728368 0.0008512609361582531 5.279007607325619e-07 1.671446939576711 0.0010365307198386747 1.1073546444592166 0.0012183350218724896']
['59866.38718673432 2.7818671860580473 0.0006405216009839753 0.3190320058693088 0.00019746501878624385 0.0008533700964474465 5.281938458414233e-07 1.6755882661203194 0.001037106191104222 1.1062789199377279 0.0012189574122805857']
['59866.38721827228 2.781284167625958 0.000640486002569896 0.3186926043271887 0.00019741625045229647 0.000852462240428599 5.28063396742027e-07 1.6738056949957392 0.0010368500548965153 1.1074784726302187 0.0012187207866557752']
['59866.38724981024 2.777472775326472 0.0006401550343605645 0.31809635681464254 0.00019732776686819098 0.0008508673540600617 5.278267143925668e-07 1.670674142934047 0.0010363853301900787 1.1067986323924248 0.0012181514768904458']
['59866.38728134821 2.7787871621125397 0.0006402359179876409 0.31824207779006775 0.00019733566730283255 0.0008512571391617608 5.278478470518237e-07 1.6714394841915325 0.0010364268240694989 1.1073476779210072 0.001218229285615916']
['59866.38731288617 2.7756501822473103 0.0006400209559211888 0.3178140543143013 0.0001972743853923661 0.0008501122307260027 5.276839257245489e-07 1.6691914617347758 0.0010361049652960405 1.1064587205125345 0.0012178424869946777']
['59866.38734442413 2.7809525373368924 0.0006404491267580065 0.3188411521893593 0.000197441372612869 0.000852859587093308 5.281305953308718e-07 1.6745858833474754 0.0010369819990171693 1.106366653989417 0.0012188136651066633']
['59866.3873759621 2.7758322503412325 0.0006400253383594587 0.31778800673607144 0.00019724355799879845 0.0008500425567624589 5.276014663620459e-07 1.669054657227266 0.0010359430567163787 1.1067775931139665 0.0012177070462557954']
['59866.38740750006 2.7743966125585553 0.0006398909521024621 0.31753583831686216 0.00019720483893598544 0.000849368038268193 5.274978977866075e-07 1.6677302432608307 0.0010357397002940412 1.1066663692977246 0.0012174634110920072']
['59866.38743903802 2.774712549656163 0.0006399443762858351 0.31769742862827577 0.00019724971853400013 0.0008498002718281464 5.276179450112801e-07 1.6685789318711963 0.0010359754124684881 1.1061336177849665 0.0012176920218097517']
['59866.38747057598 2.775619877976899 0.0006400656815177051 0.31790233404919443 0.0001972993541492158 0.00085034836780471 5.277507139779185e-07 1.6696551158045927 0.0010362361037248731 1.1059647621723063 0.0012179775610903635']
['59866.38750211395 2.7759251033878933 0.0006400184210207621 0.3180111474604184 0.0001972855007546428 0.0008506394298596846 5.277136579069119e-07 1.670226614813122 0.0010361633442995948 1.1056984885747714 0.001217890822412268']
['59866.38753365191 2.778591642455618 0.0006402636296844325 0.31813356322225017 0.00019731574864055137 0.0008509668764749432 5.277945671600283e-07 1.6708695547387091 0.0010363222092465935 1.107722087716909 0.0012181548493005413']
['59866.38756518987 2.7815471160664 0.0006404838339685102 0.3191428248231525 0.0001974835231944004 0.0008536665230742111 5.282433427830554e-07 1.676170298440927 0.001037203378121851 1.1053768176254728 0.0012190202578966363']
['59866.387596727836 2.7746476198361476 0.0006399375976507256 0.31767695536230545 0.0001972439909324315 0.000849745508441921 5.276026244045288e-07 1.6684714042137891 0.0010359453305274766 1.1061762156223585 0.0012176628666131955']
['59866.3876282658 2.7779005799991348 0.0006402104317935682 0.3184289288349659 0.00019735682600836315 0.000851756941975499 5.279044439018173e-07 1.6724208447214595 0.0010365379517245964 1.1054797352776753 0.0012183104375908173']
['59866.38765980376 2.7813120484477474 0.0006404774573692036 0.31861517163204 0.00019740947768276846 0.0008522551178035596 5.280452804437277e-07 1.673399010672479 0.0010368144836279858 1.1079130377752684 0.0012186860329300925']
['59866.387691341726 2.776796921959977 0.0006400677488771918 0.3184084755705126 0.00019737575051933002 0.0008517022320907913 5.27955064565111e-07 1.672313422114037 0.0010366373451645484 1.1044834998459399 0.0012183200353529933']
['59866.387722879685 2.778694517235163 0.0006402589268161247 0.31793424889038135 0.00019727021200617776 0.0008504337359514813 5.276727624465437e-07 1.6698227357688098 0.0010360830462509336 1.1088717814663531 0.0012179489201507383']
['59866.38775441765 2.7768817274619533 0.0006401379253293348 0.3181635674743653 0.0001973337264776989 0.0008510471340386054 5.278426555910893e-07 1.6710271400964567 0.0010364166306601834 1.1058545873654966 0.0012181691162371307']
['59866.387785955616 2.7786375780700396 0.0006402165740911693 0.3185403538386963 0.00019740347322898383 0.000852054989708738 5.280292192924606e-07 1.6730060600771863 0.0010367829476312176 1.1056315179928533 0.0012185221139724587']
['59866.387817493574 2.781696259683002 0.0006404531650828993 0.3192656436959865 0.00019750150448907366 0.0008539950479602027 5.282914404625585e-07 1.6768153555461476 0.0010372978176947146 1.1048809041368544 0.001219084500458816']
['59866.38784903154 2.7756549392123757 0.0006400038418139628 0.31807631201291275 0.00019731990135345032 0.0008508137367612619 5.278056751396099e-07 1.6705688656140378 0.0010363440197134995 1.1050860735983379 0.0012180368815157307']
['59866.387880569506 2.7803754039531614 0.0006403902807121896 0.318710862706208 0.00019739831669746523 0.0008525110792735363 5.280154262255633e-07 1.6739015898435297 0.0010367558650076958 1.1064738141096317 0.001218590347597786']
['59866.387912107464 2.776317028917239 0.0006400361202677986 0.31823895814165537 0.0001973453004946277 0.0008512487944984744 5.278736146163942e-07 1.6714230994834842 0.001036477418564221 1.1048939294337548 0.0012181673425441218']
['59866.38794364543 2.780995291298389 0.0006404426939406631 0.31888702774705135 0.00019745606920144044 0.0008529822983836238 5.281699068387328e-07 1.6748268264025807 0.0010370591869823553 1.1061684648958081 0.0012188759582198994']
['59866.38797518339 2.7758204766476227 0.0006400850118977835 0.3178249441844764 0.00019725208677228554 0.0008501413597456328 5.276242797479111e-07 1.6692486564310736 0.0010359878506947771 1.106571820216549 0.0012177765185958258']
['59866.388006721354 2.778163595374899 0.0006401800317915653 0.3182871075337286 0.00019733474456358192 0.0008513775880069672 5.278453788415225e-07 1.6716759849460536 0.0010364219777499052 1.1064876104288452 0.0012181957925833083']
['59866.38803825932 2.775650781566518 0.0006400143741087142 0.31823293094288685 0.00019734925780015631 0.0008512326725072642 5.278841999060784e-07 1.6713914440277673 0.0010364982027319136 1.1042593375387506 0.0012181736014756912']
['59866.38806979728 2.776087348931953 0.0006400633896406115 0.3176211431957098 0.0001972330449699626 0.0008495962179848057 5.275733453451367e-07 1.6681782730867112 0.0010358878412287953 1.107909075845242 0.0012176800738962115']
['59866.388101335244 2.7785364854600805 0.0006402635673745938 0.3182463841414602 0.00019733382401037212 0.0008512686581047995 5.278429164786028e-07 1.6714621015832996 0.0010364171429116183 1.107074383876781 0.0012182355805952815']
['59866.38813287321 2.7753059701843297 0.0006400004296421801 0.31796272675756126 0.00019729499728144738 0.0008505099106293031 5.2773905990999e-07 1.6699723043989565 0.0010362132210160052 1.1053336657853732 0.001217923802768687']
['59866.38816441117 2.77496971651873 0.0006399629590516039 0.3177139696074205 0.00019723999313128016 0.0008498445168465408 5.27591930794197e-07 1.6686658067616624 0.00103592433367269 1.1063039097570677 0.0012176583322317028']
['59866.388195949134 2.7814155547549544 0.0006404796044005474 0.31899992123924614 0.00019744485209278727 0.0008532842741369969 5.281399024977353e-07 1.6754197544078053 0.0010370002735965718 1.105995800347149 0.0012188452285226564']
['59866.38822748709 2.7777592424007516 0.0006401669093050458 0.31829551027917957 0.00019734529608085265 0.0008514000642838422 5.278736028101066e-07 1.6717201170124978 0.0010364773953826295 1.1060391253882538 0.0012182360456448227']
['59866.38825902506 2.7810113209751828 0.0006404532705568075 0.31911669779655305 0.00019748826024313553 0.0008535966365963692 5.282560137867841e-07 1.6760330766625688 0.0010372282575794934 1.104978244312614 0.0012190253689272849']
['59866.38829056302 2.77952748731461 0.0006403569290649523 0.3185629091016503 0.00019738131831831284 0.000852115322172467 5.279699577202414e-07 1.6731245225927012 0.001036666587806265 1.1064029647219087 0.0012184968653531204']
['59866.38832210098 2.7775892249595433 0.0006401389407896512 0.3185379526385624 0.00019737826438924577 0.0008520485668033488 5.27961788847857e-07 1.6729934487319456 0.0010366505482628456 1.1045957762275977 0.0012183686727460432']
['59866.38835363895 2.7761194428512566 0.0006400490759169226 0.31800910526191345 0.0001972843253994813 0.0008506339672380571 5.277105139811329e-07 1.670215888980638 0.0010361571712157631 1.1059035538706186 0.0012179016803683122']
['59866.38838517691 2.778895946961312 0.0006403153072832064 0.31804924182619804 0.00019729446750368278 0.0008507413274498994 5.277376428217551e-07 1.6704266902636453 0.0010362104385697624 1.1084692566976666 0.001218086928647593']
['59866.38841671487 2.77889279591835 0.0006403091675586309 0.3184484350015446 0.00019738963831838685 0.0008518091184936802 5.279922126637423e-07 1.6725232930753395 0.0010367102852856453 1.1063695028430103 0.0012185089436178428']
['59866.38844825284 2.775936508068786 0.0006400009796387029 0.31798216223446724 0.00019729386078090892 0.0008505618980615877 5.27736019915393e-07 1.6700743814835464 0.0010362072520005722 1.1058621265852395 0.0012179190133326094']
['59866.388479790796 2.782047998264184 0.0006406003218531808 0.318571681874656 0.00019739673338917284 0.0008521387882260549 5.280111910769721e-07 1.6731705980811766 0.0010367475493128827 1.1088774001830075 0.0012186936667451206']
['59866.38851132876 2.774730520433166 0.0006399610593138175 0.31748182497103794 0.00019720665651301716 0.0008492235594281786 5.275027595743227e-07 1.667446559721838 0.001035749246391897 1.1072839607113278 0.0012175083814247218']
['59866.38854286673 2.775725918033367 0.0006399900785245385 0.31792784570541466 0.00019728231261504232 0.0008504166082449438 5.277051300383961e-07 1.6697891055956653 0.0010361465998689199 1.1059368124377018 0.0012178616822241222']
['59866.388574404686 2.778656044562367 0.0006402955436671814 0.3182363960514225 0.00019733701329694307 0.0008512419412325046 5.278514474151188e-07 1.6714096431272192 0.0010364338933662976 1.1072464014351477 0.0012182666368896727']
['59866.38860594265 2.781272743884185 0.0006404411448174255 0.31883777110037365 0.0001974047541813454 0.0008528505431096928 5.280326456773381e-07 1.6745681255271725 0.0010367896753221922 1.1067046183570124 0.001218645843069163']
['59866.38863748062 2.7786341912448678 0.0006402767943617664 0.31793136933500893 0.00019728774311847573 0.0008504260335065833 5.277196559453693e-07 1.6698076120536183 0.001036175121420566 1.1088265791912495 0.0012180366396989477']
['59866.388669018575 2.7808115734957366 0.0006403983125168852 0.31905086677256 0.00019744545367043223 0.0008534205469681793 5.281415116415311e-07 1.6756873254861344 0.0010370034331430265 1.1051242480096022 0.0012188052014267489']
['59866.38870055654 2.775710737582857 0.0006400085954482805 0.317799635816582 0.00019725485300878793 0.0008500736630758516 5.276316790792239e-07 1.6691157343307879 0.0010360023792478357 1.1065950032520693 0.001217748714659497']
['59866.3887320945 2.7778561332034535 0.0006401817765758893 0.3182121399013925 0.00019733880724985867 0.0008511770591118717 5.278562460113237e-07 1.6712822473812632 0.0010364433153879132 1.1065738858221903 0.0012182148632618758']
['59866.388763632465 2.781112249014849 0.0006404505726279978 0.318639375879752 0.00019739749272226206 0.0008523198610920837 5.280132221965453e-07 1.6735261338222271 0.0010367515374068387 1.1075861151926218 0.001218618351369687']
['59866.38879517043 2.7765866080460437 0.0006401147620800786 0.31797409469747495 0.00019729077765888288 0.0008505403184247658 5.27727772955551e-07 1.6700320099657298 0.0010361910591327884 1.106554598080314 0.0012179650321990222']
['59866.38882670839 2.778307122063432 0.0006402517150823566 0.31818643304857563 0.00019733810978745652 0.0008511082965455332 5.278543803879805e-07 1.6711472323979815 0.001036439652245045 1.1071598896654506 0.0012182485015019427']
['59866.388858246355 2.7757064056668543 0.0006400418282283604 0.3178867013347834 0.00019728288562200066 0.0008503065522791225 5.277066627592338e-07 1.669573011212098 0.0010361496093592472 1.1061333944547564 0.0012178914380424975']
['59866.38888978431 2.7748474760741377 0.0006399241905555867 0.3177673726404342 0.00019725658414231702 0.000849987363177301 5.276363096415484e-07 1.6689462848762302 0.0010360114713356986 1.1059011911979075 0.0012177120917513228']
['59866.38892132228 2.7807180872073847 0.0006404191022139496 0.3185472993812176 0.00019738070278291542 0.0008520735681528511 5.279683112412305e-07 1.6730425387668995 0.0010366633549522871 1.1076755484404852 0.0012185267900138481']
['59866.388952860245 2.7758591525480023 0.000640036530570869 0.31779180770008547 0.0001972647744426395 0.0008500527238584479 5.276582176546867e-07 1.6690746202735582 0.001036054487618905 1.106784532274444 0.0012178077277552753']
['59866.3889843982 2.7763011329603264 0.0006400789296276361 0.3180659551721994 0.00019729818368325035 0.0008507860335277434 5.277475831301181e-07 1.670514470442224 0.0010362299563195924 1.1057866625181025 0.0012179792931439207']
['59866.38901593617 2.774966926909176 0.0006399383433587593 0.31748432139025073 0.00019722269164506874 0.0008492302370325105 5.275456515159889e-07 1.6674596711672836 0.00103583346452242 1.1075072557418926 0.0012175680882502108']
['59866.389047474135 2.7750258105054737 0.0006399606070833519 0.31764493249213105 0.00019723321630718676 0.0008496598513313287 5.275738036504503e-07 1.6683032168704364 0.0010358887411091742 1.1067225936350373 0.0012176268158082106']
['59866.38907901209 2.7821333236444055 0.0006405402210817121 0.31884985997812565 0.00019741708767742657 0.0008528828793223091 5.280656362129166e-07 1.6746316175321727 0.0010368544520873244 1.1075017061122328 0.0012187530224113145']
['59866.38911055006 2.776934729729759 0.0006401430764206924 0.3177989269738797 0.00019725949755955075 0.0008500717670116509 5.276441026626247e-07 1.6691120114174356 0.0010360267728968002 1.1078227183123235 0.0012178401506143185']
['59866.38914208802 2.7812325993554854 0.0006404978816408474 0.3184178321403566 0.00019735589877352492 0.0008517272597267755 5.279019636663902e-07 1.6723625637623774 0.0010365330817937233 1.108870035593108 0.0012184573714493284']
['59866.38917362598 2.77888034610483 0.0006402807264927156 0.31857073250818513 0.0001973922551285498 0.0008521362487913214 5.279992122985754e-07 1.6731656119127372 0.0010367240290365012 1.105714734192093 0.001218505691861846']
['59866.38920516395 2.7810851346463994 0.0006404644899381809 0.31856362868152444 0.00019737908741267884 0.0008521172469572387 5.279639903310107e-07 1.673128301898763 0.0010366548708649098 1.1079568327476363 0.0012185434272768932']
['59866.38923670191 2.778223976669958 0.0006402105299827825 0.31803771723069474 0.00019728155349949466 0.0008507105006206307 5.27703099500719e-07 1.670366161925918 0.0010361426129175141 1.1078578147440399 0.001217974152847411']
['59866.38926823987 2.7812428165617824 0.0006404526462732462 0.3190744683275298 0.00019747193389084512 0.0008534836781301642 5.28212342867966e-07 1.6758112832328247 0.0010371425099309094 1.1054315333289577 0.0012189520819229074']
['59866.38929977784 2.7808695557548813 0.0006404095779308134 0.31886785434049375 0.00019745582216864656 0.0008529310119562363 5.281692460573841e-07 1.6747261257378874 0.001037057889541211 1.106143430016994 0.0012188574542436013']
['59866.3893313158 2.778519618525758 0.0006402714741947451 0.31790812621694253 0.0001972605112743756 0.0008503638611177911 5.276468142210324e-07 1.6696855368536898 0.0010360320970292836 1.108834081672068 0.0012179121752993551']
['59866.38936285376 2.7760941617274026 0.0006400595336897799 0.3180414347724577 0.0001973203849115267 0.0008507204445726933 5.278069685960491e-07 1.6703856868301352 0.001036346559409279 1.1057084748972674 0.0012180683059117123']
['59866.38939439172 2.777837819750877 0.0006402072854924975 0.31813484069300374 0.0001973113792128984 0.0008509702935469614 5.277828794960039e-07 1.6708762641439274 0.0010362992605719454 1.1069615556069494 0.001218105712103688']
['59866.38942592969 2.775670853890394 0.0006400242221240523 0.31764955100559 0.00019724006179459738 0.0008496722052682485 5.275921144598499e-07 1.6683274737688552 0.001035924694299356 1.1073433801215387 0.001217690838088516']
['59866.38945746765 2.7767388831642643 0.0006400995156739515 0.3177594470141065 0.00019726269357527813 0.0008499661631334834 5.276526515987795e-07 1.6689046586875345 0.0010360435586936876 1.1078342244767299 0.001217831534111639']
['59866.38948900561 2.7756691154240327 0.0006400145799850509 0.31809510904348626 0.000197323313119415 0.0008508640164306942 5.278148011802477e-07 1.6706675895141088 0.0010363619386523897 1.105001525909924 0.001218057769763315']
['59866.38952054358 2.7809662495041687 0.0006404142066945098 0.31905642195118633 0.00019745464778720632 0.000853435406365459 5.281661047361859e-07 1.6757165018444662 0.0010370517215714619 1.1052497476597025 0.0012188546383184876']
['59866.38955208154 2.7764796785025223 0.0006400914346074817 0.3181245388885887 0.0001973067305970764 0.0008509427375285511 5.27770445039086e-07 1.6708221580283023 0.0010362748455728802 1.10565752047422 0.001218024055684025']
['59866.3895836195 2.780907944527172 0.0006404154874784393 0.3188544594720871 0.00019741735269890594 0.0008528951823844887 5.280663451117144e-07 1.6746557745382729 0.001036855844006859 1.1062521699888992 0.0012186886550113703']
['59866.389615157466 2.7808540923015217 0.0006404074787129904 0.318785006386704 0.00019741000548679846 0.000852709404202107 5.280466922524732e-07 1.674290999930168 0.0010368172557079752 1.1065630923713536 0.001218651615731644']
['59866.389646695425 2.7787539516539717 0.0006402536766184504 0.3182476206605144 0.00019735038109111014 0.0008512719656362229 5.278872045667142e-07 1.671468595906063 0.001036504102369276 1.1072853557479088 0.001218304364537771']
['59866.38967823339 2.781220781604879 0.0006404062718839026 0.31918750508504723 0.00019747456474503467 0.0008537860371000798 5.282193800687865e-07 1.6764049636819707 0.001037156327442409 1.1048158179229082 0.0012189394737320079']
['59866.389709771356 2.7807311277389184 0.0006404153747722707 0.3188936880820728 0.00019743794468891803 0.0008530001139338978 5.281214260696728e-07 1.6748618071537438 0.0010369639952149056 1.1058693205851746 0.0012187806117660252']
['59866.389741309315 2.7764077427485248 0.0006400609025178039 0.3181236757742158 0.00019731190421610426 0.0008509404288072249 5.277842838129005e-07 1.6708176248645787 0.001036302017941724 1.105590117883946 0.0012180311290447363']
['59866.38977284728 2.7814262264511473 0.0006404685848849303 0.31875118651531315 0.0001974254890040748 0.0008526189403414921 5.280881086946745e-07 1.6741133745552161 0.0010368985767020735 1.1073128518959312 0.0012187529144955063']
['59866.389804385246 2.782263271515263 0.0006405886012330187 0.3188807874940266 0.00019742972486392778 0.0008529656064993374 5.28099439081798e-07 1.6747940519644255 0.001036920823865167 1.1074692195508375 0.0012188349153986738']
['59866.389835923204 2.7753344417736523 0.0006399783268564222 0.31790339740535845 0.00019726071785773592 0.0008503512121473952 5.276473668052838e-07 1.6696607006583952 0.001036033182025924 1.105673741115257 0.0012177590127380323']
['59866.38986746117 2.7806972993385948 0.0006403570534786806 0.3186114672300927 0.00019737045255399435 0.000852245208998835 5.27940893180716e-07 1.6733795547798986 0.001036609519716357 1.1073177445586961 0.0012184483790076926']
['59866.38989899913 2.777609935078429 0.0006401261611346834 0.31809405697239684 0.00019729369769682406 0.0008508612022741502 5.277355836861788e-07 1.6706620639306557 0.001036206395466513 1.1069478711477732 0.0012179840705751166']
['59866.389930537094 2.7803977362204875 0.000640376266743051 0.3185303705237862 0.00019737734760404957 0.000852028285609303 5.279593365638951e-07 1.6729536267005578 0.0010366457332145463 1.1074441095199297 0.001218489285631881']
['59866.38996207506 2.7752207320308324 0.0006399731575669544 0.3179407237578155 0.00019727258872974789 0.0008504510553995151 5.276791198802336e-07 1.6698567424255017 0.0010360955290427934 1.1053639896053307 0.001217809339637648']
['59866.38999361302 2.7785688363472123 0.0006402679366796071 0.3181834259559191 0.00019732639358673168 0.0008511002529545983 5.278230410390793e-07 1.671131438844113 0.0010363781175773722 1.1074373975030993 0.001218204676289325']
['59866.390025150984 2.7817815307216938 0.0006404881068341263 0.3190352531976156 0.00019746226914071246 0.0008533787826382342 5.281864908888506e-07 1.6756053214160485 0.0010370917496886158 1.1061762093056453 0.0012189275254370778']
['59866.39005668895 2.780794196654686 0.000640402174306891 0.3190033466351176 0.00019747118695669834 0.0008532934366359043 5.282103449139891e-07 1.6754377449323403 0.0010371385869574494 1.1053564517223458 0.001218922226154355']
['59866.39008822691 2.782379765309947 0.0006405949318550472 0.3189428074284719 0.00019744416028391078 0.0008531315019470216 5.281380519968552e-07 1.6751197869142433 0.0010369966401465903 1.1072599783957038 0.0012189027436156216']
['59866.390119764874 2.774525140650687 0.0006399437383312378 0.317668101229475 0.00019724177593417958 0.0008497218247611352 5.275966995655248e-07 1.6684249014153099 0.0010359336971332961 1.106100239235377 0.0012176561965865486']
['59866.39015130283 2.7812434850786834 0.0006404265752371952 0.3189631476998468 0.00019741678389729108 0.0008531859095895954 5.280648236396364e-07 1.675226616070624 0.0010368528566034195 1.1060168690080594 0.0012186919399572289']
['59866.3901828408 2.7819324584954295 0.000640503951814522 0.31885596122065585 0.00019743236565836976 0.0008528991993711777 5.281065028715313e-07 1.6746636618731927 0.0010369346935838748 1.1072687966222368 0.0012188022280287742']
['59866.39021437876 2.7778917223720097 0.0006401994093250826 0.3181356627512683 0.00019733067588013667 0.0008509724924484121 5.278344956300571e-07 1.6708805816768295 0.0010364006086141632 1.1070111406951801 0.0012181877955537038']
['59866.39024591672 2.7759384400684755 0.000640086135555194 0.31809163342368474 0.00019730182905626828 0.0008508547195891527 5.277573340399537e-07 1.6706493352084284 0.001036249102186283 1.105289104860047 0.0012179993689291715']
['59866.39027745469 2.775844643505974 0.000640059413711223 0.3179276634634736 0.00019728398622546352 0.0008504161207708975 5.277096067337128e-07 1.6697881484426138 0.0010361553898396193 1.1060564950633602 0.0012179055977267074']
['59866.39030899265 2.7754059386731535 0.0006399750707441679 0.31798481634882536 0.0001972928644715904 0.0008505689974804049 5.277333549145041e-07 1.6700883211597972 0.0010362020192835632 1.1053176175133563 0.0012179009466871007']
['59866.39034053061 2.781271350443461 0.0006404531645815431 0.3189473512874006 0.0001974428792243753 0.0008531436561925546 5.281346253253012e-07 1.675143651719541 0.0010369899118927277 1.1061276987239201 0.0012188225192331327']
['59866.39037206858 2.7823152276510466 0.0006405503390192112 0.3188515762367872 0.00019742312952642727 0.0008528874700962522 5.280817973916372e-07 1.6746406314957314 0.0010368861844875382 1.1076745961553152 0.0012187853364718298']
['59866.390403606536 2.7763834615313465 0.0006400782760366814 0.31799903863481377 0.0001972714025818631 0.000850607040289096 5.276759470852908e-07 1.6701630180399882 0.001036089299274491 1.1062204434913583 0.001217859283959028']
['59866.3904351445 2.7790104587419817 0.000640289877657353 0.31841525672671 0.00019735203092083174 0.000851720370822366 5.278916176516798e-07 1.6723490374301997 0.0010365127674413432 1.106661421311782 0.0012183307615337387']
['59866.39046668247 2.7766895489374117 0.0006401320987487136 0.3180491264826452 0.0001973037388359023 0.0008507410189205449 5.277624424579195e-07 1.6704260844676746 0.0010362591325415037 1.1062634644697371 0.0012180320577160942']
['59866.390498220426 2.7802738447158797 0.0006403690637176282 0.3189711672784485 0.00019745579424617856 0.0008532073609438135 5.281691713683285e-07 1.675268735706137 0.0010370577428895935 1.1050051090097426 0.0012188360430565918']
['59866.39052975839 2.7786431084836263 0.0006402792358766267 0.31858827992309513 0.00019739767420132002 0.0008521831858975636 5.280137076299762e-07 1.6732577727053317 0.0010367524905531514 1.1053853357782946 0.0012185291242161262']
['59866.39056129636 2.774741762903253 0.0006399457706498154 0.3176824385746502 0.0001972519973791846 0.0008497601753385377 5.276240406327196e-07 1.668500202597953 0.0010359873811931965 1.1062415603053002 0.0012177029372404927']
['59866.390592834316 2.7779678697830628 0.0006401956818351215 0.31824394000678 0.00019736118417107914 0.0008512621203549518 5.27916101433566e-07 1.6714492647414918 0.0010365608412346594 1.106518605041571 0.001218322161261725']
['59866.39062437228 2.775402611572713 0.0006399957004778832 0.31772539881958706 0.0001972520865395263 0.000849875088537498 5.276242791253097e-07 1.6687258341364868 0.0010359878494723021 1.1066767774362263 0.0012177295762542772']
['59866.39065591024 2.7758980595514426 0.0006400354147044213 0.3180263136505831 0.00019731080820670628 0.000850679997492165 5.277813521269616e-07 1.6703062691732307 0.001036296261589844 1.105591790378212 0.0012180128381347']
['59866.390687448205 2.7780449135294916 0.0006402081420762252 0.31799231273077977 0.00019728597113546393 0.0008505890493500411 5.277149161158667e-07 1.6701276929137594 0.0010361658147871006 1.1079172206157322 0.0012179926358209675']
['59866.39071898617 2.7816450156434476 0.0006404874034227622 0.3187331915459064 0.0001973843396342973 0.0008525708060838137 5.279780393567719e-07 1.6740188631612734 0.0010366824560624859 1.1076261524821742 0.001218578938210808']
['59866.39075052413 2.7778580452073403 0.0006401948050002996 0.318370954678016 0.000197358478935876 0.0008516018684687737 5.279088652729811e-07 1.6721163586030254 0.0010365466330665757 1.1057416866043148 0.001218309612073641']
['59866.390782062095 2.781928229917301 0.0006405463223955124 0.31879109332112815 0.0001974172226473781 0.0008527256859786092 5.280659972403949e-07 1.6743229691235724 0.0010368551609631204 1.1076052607937286 0.0012187568321655776']
['59866.39081360006 2.77683781093791 0.0006401086815702446 0.31789561319215376 0.0001972798105878064 0.0008503303903657211 5.276984374333146e-07 1.6696198171856815 0.0010361334589695714 1.1072179937522286 0.0012179128330951463']
['59866.39084513802 2.776108116239268 0.0006400480959475477 0.31776863988997994 0.0001972823664307594 0.0008499907529088865 5.277052739886044e-07 1.6689529405986343 0.0010361468825144928 1.1071551756406335 0.0012178924120260308']
['59866.390876675985 2.7787080775016464 0.0006402409727385065 0.3184862207081171 0.0001973650793492403 0.0008519101904597177 5.279265205404328e-07 1.6727217474165816 0.0010365812991031528 1.1059863300850648 0.0012183633664976672']
['59866.39090821394 2.775145425320274 0.0006399771621215279 0.31770243387109004 0.00019721093723320195 0.0008498136602169745 5.275142099571362e-07 1.6686052199111874 0.0010357717291659767 1.1065402054090865 0.0012175359719435814']
['59866.39093975191 2.7766459646891475 0.0006400573972391333 0.3180503809578595 0.00019730815856542282 0.0008507443744824162 5.27774264673051e-07 1.6704326730980017 0.0010362823454066325 1.1062132915911458 0.0012180125496734444']
['59866.390971289875 2.7759290845691513 0.0006400188432146543 0.31800961341606027 0.0001972936713751812 0.0008506353264858607 5.277355132791271e-07 1.6702185578574595 0.0010362062572225903 1.1057105267116918 0.0012179275541579118']
['59866.39100282783 2.774990333801491 0.0006399432638341277 0.3181380750236603 0.00019733928906497556 0.0008509789449706855 5.278575348055676e-07 1.6708932511746866 0.0010364458459294935 1.1040970826268046 0.0012180916929653448']
['59866.3910343658 2.778785606398267 0.0006402291676351911 0.3185109725448517 0.00019738156458349408 0.0008519763984793297 5.279706164483238e-07 1.6728517465590953 0.0010366678812158304 1.105933859839172 0.001218430828170138']
['59866.391065903765 2.7780093174858473 0.0006401950734989887 0.31811471375714717 0.00019729758875768297 0.000850916456549804 5.277459917797849e-07 1.6707705554472017 0.0010362268317105198 1.1072387620386457 0.0012180376754801952']
['59866.39109744172 2.7783051708426214 0.0006402013198786266 0.3183231559375726 0.0001973389349442425 0.0008514740129088554 5.278565875775824e-07 1.6718653147981755 0.0010364439860516938 1.106439856044446 0.0012182257041275476']
['59866.39112897969 2.775510363361207 0.0006400105595915587 0.31812087746139817 0.0001973062694084633 0.0008509329436758426 5.277692114181201e-07 1.6708029278434777 0.0010362724233637778 1.1047074355177293 0.0012179794956455289']
['59866.39116051765 2.774664952023187 0.0006399027761328777 0.31769564959202345 0.00019724858589621137 0.0008497955131321213 5.276149153490479e-07 1.6685695881934006 0.001035969463740606 1.1060953638297863 0.001217665098746598']
['59866.39119205561 2.7752152815679416 0.0006399957637386246 0.31778262192162915 0.00019724474155331285 0.0008500281530677341 5.276046322200523e-07 1.6690263756388086 0.001035949272864038 1.106188905929133 0.0012176967904823082']
['59866.39122359358 2.7818050139023742 0.0006405227354254031 0.3190761077077485 0.00019744416762365044 0.0008534880632640368 5.281380716297265e-07 1.6758198934230493 0.001036996678695643 1.105985120479325 0.0012188648350915025']
['59866.39125513154 2.7773473297472395 0.0006401141800153017 0.318318786819615 0.00019734075214573432 0.0008514623260732268 5.27861448360776e-07 1.6718423677500789 0.0010364535301771761 1.1055049619971606 0.0012181880329708516']
['59866.3912866695 2.775267358984591 0.0006400138126596305 0.3180094975308867 0.0001973048313381579 0.0008506350165077396 5.27765364762698e-07 1.670217949216842 0.0010362648704735184 1.1050494097677488 0.0012179747789558759']
['59866.39131820747 2.780715765793083 0.0006404024346559035 0.31871063809615485 0.00019739930299003002 0.000852510478470171 5.280180644329081e-07 1.6739004101688806 0.001036761045115704 1.1068153556242024 0.0012186011418764612']
['59866.39134974543 2.7810136178195757 0.0006404982640077199 0.3189312679488581 0.00019744723196005266 0.0008531006353046477 5.281462683404108e-07 1.6750591804036667 0.0010370127728994362 1.105954437415909 0.0012188656682971591']
['59866.39138128339 2.7754162537015192 0.0006399840460018084 0.31784911169036845 0.00019728598093117896 0.0008502060047544551 5.277149423181603e-07 1.669375586609078 0.0010361658662351838 1.1060406670924412 0.001217874903874677']
['59866.39141282135 2.7810469536122033 0.0006404194511136415 0.3186075897634535 0.00019738964767124174 0.00085223483726804 5.279922376814413e-07 1.6733591899341045 0.0010367103344077824 1.1076877636780988 0.0012185669414655044']
['59866.39144435932 2.7766703287105714 0.0006400577032731992 0.318110245780842 0.00019732288128696413 0.0008509045052806513 5.278136460832874e-07 1.6707470891850946 0.0010363596706248117 1.1059232395254768 0.001218078499283577']
['59866.39147589728 2.7779322341037904 0.0006401520685877583 0.31841312736328015 0.00019736041882883372 0.0008517146750456349 5.279140542402632e-07 1.6723378537987403 0.0010365568215800092 1.10559438030505 0.00121829582420742']
['59866.39150743524 2.780332249658408 0.0006403740361004016 0.31871506311123166 0.00019741809467696553 0.0008525223148234943 5.280683298087875e-07 1.673923650794284 0.0010368597409504492 1.1064085988641241 0.0012186701885725075']
['59866.39153897321 2.7784403592877545 0.0006402374634046495 0.31850122775606426 0.00019738760944613745 0.0008519503324069783 5.279867856881558e-07 1.672800565945716 0.0010366996294439994 1.1056397933420385 0.0012184621993464326']
['59866.39157051117 2.7750587861525657 0.0006399548304152498 0.3180297440866545 0.00019730538671511273 0.0008506891734729671 5.277668503255155e-07 1.670324286169404 0.0010362677873692896 1.1047344999831616 0.0012179462681543279']
['59866.39160204913 2.7793074204474717 0.0006403152941879082 0.318751609303219 0.00019741705705404863 0.0008526200712454434 5.2806555429927e-07 1.6741155950799318 0.0010368542912502555 1.10519182536754 0.0012186346857262094']
['59866.391633587096 2.7770696727353323 0.0006401307417822961 0.3182865113296427 0.00019734407431217245 0.0008513759932367595 5.278703347340601e-07 1.671672853622073 0.0010364709785303176 1.1053968191132593 0.0012182115809293338']
['59866.391665125055 2.782326197275064 0.0006405497741532859 0.3191205585455705 0.0001975008971724054 0.0008536069636096492 5.282898159676044e-07 1.6760533537057274 0.001037294628006331 1.1062728435693368 0.0012191325434334932']
['59866.39169666302 2.7783946418858094 0.0006402256421180642 0.31828197971009586 0.0001973253224084102 0.0008513638717300184 5.278201757731165e-07 1.671649053099243 0.0010363724916408101 1.1067455887865665 0.0012181776612035162']
['59866.391728200986 2.776339683993956 0.0006400609197618082 0.3178269619175884 0.00019726278941940462 0.0008501467569254416 5.27652907969645e-07 1.6692592537688469 0.001036044062076705 1.107080430225109 0.0012178116765619925']
['59866.391759738945 2.7783761715865563 0.0006402547698159347 0.318367282031086 0.00019735793090457375 0.0008515920446046872 5.279073993588512e-07 1.672097069490998 0.0010365437547509126 1.1062791020955582 0.001218338674501132']
['59866.39179127691 2.7819401297428783 0.0006404817942529683 0.31905006239908723 0.00019746047966101693 0.0008534183953713007 5.281817042579413e-07 1.6756831008355424 0.0010370823511608033 1.106257028907336 0.0012189162119927363']
['59866.391822814876 2.774382975458975 0.0006399043613747849 0.31762086741001405 0.00019722897284844945 0.0008495954802930962 5.275624529372764e-07 1.668176824632427 0.001035866454035974 1.1062061508265482 0.001217578294116454']
['59866.391854352834 2.776852589857409 0.0006401579135929771 0.3176595062410707 0.00019722674653194198 0.0008496988342587762 5.275564978233764e-07 1.6683797596694891 0.0010358547611971744 1.1084728301879199 0.001217701622167996']
['59866.3918858908 2.776166107753186 0.0006400441877945079 0.3179942834419325 0.00019729239797854767 0.0008505943207520807 5.277321071048626e-07 1.6701380432874606 0.0010361995692150614 1.1060280644657252 0.0012179351828283023']
['59866.39191742876 2.7754988299011654 0.0006399736912277824 0.3179662445832524 0.00019727488861738727 0.0008505193203662388 5.276852717875675e-07 1.6699907803742249 0.0010361076082845973 1.1055080495269405 0.0012178198969506704']
['59866.391948966724 2.776506755431737 0.0006400876029183829 0.3180334049142967 0.00019729528244544835 0.0008506989657219597 5.277398226874748e-07 1.6703435132053401 0.0010362147187260942 1.106163242226397 0.0012179708874658704']
['59866.39198050469 2.77789683903105 0.0006401679490988387 0.3186871561074951 0.00019742514682037618 0.0008524476671328799 5.280871933967404e-07 1.673777080396508 0.0010368967795187825 1.1041197586345421 0.0012185934245800918']
['59866.39201204265 2.7814535720538824 0.0006404755529141268 0.31856827935401705 0.00019736366327589603 0.0008521296869154891 5.279227327240879e-07 1.6731527276996694 0.0010365738617431515 1.108300844354213 0.0012184803259510458']
['59866.392043580614 2.775784486729347 0.0006400086502134906 0.31786958955298383 0.00019727027383844943 0.0008502607804361222 5.276729278400174e-07 1.6694831384085287 0.0010360833710002597 1.1063013483208182 0.0012178176480948846']
['59866.39207511858 2.7825195447941478 0.000640554880693471 0.31918399471179126 0.00019748257632144368 0.0008537766472974616 5.282408100181554e-07 1.6763865268476434 0.0010371984050495991 1.1061330179465043 0.001219053356755831']
['59866.39210665654 2.781045943191775 0.0006404231260050102 0.3192203424632738 0.00019749330270596948 0.0008538738729162636 5.282695017344376e-07 1.676577428903749 0.001037254741102781 1.1044685142880262 0.0012190320661337119']
['59866.392138194504 2.7788944817184245 0.0006402933090051095 0.31827268985234747 0.00019732544991650242 0.0008513390225404171 5.278205168410687e-07 1.6716002618295562 0.0010363731613261683 1.1072942198888682 0.0012182137953060245']
['59866.39216973246 2.781712972935136 0.0006404998917666127 0.3189544111485926 0.0001974326416061293 0.0008531625404245923 5.281072409967408e-07 1.67518073082244 0.0010369361428893347 1.1065322421126962 0.0012188013274456397']
['59866.39220127043 2.7805034299752442 0.0006403936820587095 0.3187505487477758 0.0001973910160896329 0.0008526172343943306 5.279958980268391e-07 1.6741100249357974 0.0010367175214791645 1.1063934050394468 0.0012185595132625296']
['59866.39223280839 2.7806530628784105 0.0006404218176376587 0.31886760518737095 0.00019744276453744164 0.0008529303455032769 5.281343185523196e-07 1.6747248171605618 0.0010369893095453868 1.1059282457178488 0.0012188055351932648']
['59866.39226434635 2.778109295035779 0.0006402143649309774 0.3184110496638762 0.0001973773574713397 0.0008517091174636114 5.27959362957643e-07 1.6723269415119548 0.001036645785038549 1.1057823535238243 0.0012184042501165878']
['59866.39229588432 2.778469923837514 0.0006402418329094181 0.3182476352773893 0.00019732922749432017 0.0008512720047345069 5.27830621381953e-07 1.671468672675364 0.0010363930015457993 1.1070012511621499 0.0012182036193758097']
['59866.39232742228 2.781446792887638 0.0006405175380476513 0.31885938010581905 0.0001974268451984544 0.0008529083444547673 5.28091736342394e-07 1.6746816182028312 0.0010369056995717142 1.1067651746848068 0.0012187847005730465']
['59866.39235896024 2.7749312601271376 0.0006399515713001575 0.3175887195470293 0.0001972220005606009 0.0008495094888426111 5.275438029528099e-07 1.6680079808142296 0.0010358298348771056 1.106923279312908 0.0012175719528763269']
['59866.39239049821 2.7821344232326455 0.0006405353313556501 0.3192036722972507 0.00019750382123568918 0.0008538292823393773 5.282976374655124e-07 1.6764898755107707 0.0010373099854815609 1.1056445477218748 0.0012191380220035173']
['59866.392422036166 2.7821270939631595 0.0006405162089027043 0.3191794925153293 0.00019750251160193723 0.0008537646044937357 5.282941343615583e-07 1.6763628808578221 0.0010373031071530317 1.1057642131053373 0.0012191221226671373']
['59866.39245357413 2.775907226107946 0.0006400377407497673 0.31793472590430005 0.00019729282568183875 0.0008504350119031298 5.27733251156845e-07 1.669825241094013 0.001036201815555876 1.1060819850139327 0.001217933705973096']
['59866.3924851121 2.780848841962584 0.0006404384479527967 0.3189057573457018 0.00019743899295566057 0.0008530323976812262 5.28124230050072e-07 1.674925196143392 0.0010369695008175452 1.105923645819192 0.0012187974200998195']
['59866.392516650056 2.781351625479112 0.0006404309814414421 0.31888105941353406 0.00019741524689331 0.0008529663338494842 5.28060712349197e-07 1.674795480113099 0.001036844784103519 1.1065561453660129 0.0012186873874430314']
['59866.39254818802 2.782167846766356 0.0006405279589283569 0.31913682827011913 0.0001974711040018022 0.0008536504830564503 5.282101230201778e-07 1.6761388039397016 0.0010371381512699696 1.1060290428266544 0.0012189879453828152']
['59866.39257972599 2.7810125342404755 0.0006404314348422683 0.3188364147282821 0.0001974148680215464 0.0008528469149866165 5.280596989153487e-07 1.6745610017241708 0.001036842794230811 1.1064515325163047 0.0012186859327498953']
['59866.392611263946 2.781749417637107 0.0006405229011831935 0.3187056869777217 0.0001973809529057165 0.0008524972348571885 5.27968980287956e-07 1.6738744063955975 0.0010366646686224606 1.1078750112415097 0.001218582464222365']
['59866.39264280191 2.7808728511800833 0.0006404214952215321 0.31879392985759947 0.00019740773576897898 0.0008527332733534105 5.280406210455758e-07 1.674337866899157 0.001036805334921108 1.1065349842809262 0.0012186488395196763']
['59866.39267433987 2.7788994678148238 0.0006402800874250519 0.3181070036821663 0.00019731848734780112 0.0008508958330784626 5.278018928540868e-07 1.6707300613559157 0.0010363365932132412 1.108169406458908 0.001218175736413207']
['59866.392705877835 2.7760775782961566 0.0006400084304519593 0.31831944952696856 0.00019736405148681885 0.0008514640987312292 5.27923771139001e-07 1.6718458483559273 0.0010365759006660655 1.1042317299402293 0.0012182365898671921']
['59866.3927374158 2.7817820807617144 0.0006405303083995422 0.31903807507253135 0.0001974543097615533 0.0008533863307952364 5.281652005604956e-07 1.6756201421876649 0.0010370499462266454 1.1061619385740495 0.001218914134361851']
['59866.39276895376 2.7791071384709154 0.0006403322540024854 0.31830427947865825 0.00019735608339536422 0.0008514235207786993 5.279024575063621e-07 1.671766173732449 0.0010365340514462407 1.1073409647384664 0.001218371140221017']
['59866.392800491725 2.775740210139526 0.0006400067005524461 0.318129341675224 0.00019732597982594853 0.0008509555843728135 5.278219342815349e-07 1.6708473827480252 0.0010363759444640154 1.1048928273915009 0.0012180655462723294']
['59866.39283202969 2.7809291907481217 0.0006404296749396138 0.31878645045508713 0.00019741231323187235 0.0008527132669016253 5.280528651774464e-07 1.6742985843229368 0.001036829376217817 1.106630606425185 0.0012186735920382812']
['59866.39286356765 2.781662852394019 0.0006404898435858603 0.318708571779335 0.00019739211410418594 0.0008525049513351143 5.279988350763131e-07 1.6738895576645745 0.0010367232883623212 1.1077732947294443 0.0012186149582084672']
['59866.392895105615 2.775546733162802 0.0006400388120018217 0.3179574515271767 0.00019732033981875792 0.0008504958000580148 5.278068479786196e-07 1.6699445983570205 0.0010363463225775101 1.1056021348057814 0.0012180572158928464']
['59866.39292664357 2.7809208964328134 0.0006404402654733677 0.31889870785938945 0.00019745141657784214 0.0008530135412006738 5.281574616615225e-07 1.674888171530407 0.001037034750934045 1.1060327249024064 0.001218853891278374']
['59866.39295818154 2.775256663325293 0.0006399804019962584 0.31818341854166504 0.00019733241305121174 0.0008511002331224104 5.278391423420503e-07 1.671131399903703 0.0010364097324118264 1.1041252634215901 0.001218080476970732']
['59866.392989719505 2.7816026403129532 0.0006405302698898247 0.3188138370213934 0.00019743315630824215 0.0008527865224882128 5.28108617759522e-07 1.6744424213308475 0.0010369388461567341 1.1071602189821057 0.0012188195917829639']
['59866.39302125746 2.7812656252829018 0.0006404957269948747 0.318739286950953 0.00019742219152238936 0.0008525871105181551 5.280792883499688e-07 1.6740508768432407 0.0010368812579957425 1.107214748439661 0.001218752443887407']
['59866.39305279543 2.774817999768575 0.0006399394698365261 0.31798552086795595 0.00019729988805360126 0.0008505708819796005 5.2775214210434e-07 1.670092021365315 0.0010362389078445446 1.1047259784032601 0.0012179136255028552']
['59866.393084333395 2.7825878544691447 0.0006405742284507878 0.31905971574225117 0.00019744801739957906 0.0008534442168382233 5.281483692913877e-07 1.6757338011672855 0.001037016898107033 1.1068540533018592 0.0012189090979703345']
['59866.39311587135 2.7777954845177075 0.000640216896709869 0.31821450387289507 0.00019734583234775002 0.0008511833824354004 5.278750372559475e-07 1.6712946631979784 0.0010364802119104519 1.1065008213197292 0.001218264710362551']
['59866.39314740932 2.7756241157517008 0.0006400228910555562 0.31796030527405794 0.0001972967189936856 0.0008505034334684767 5.27743665271558e-07 1.6699595865234136 0.0010362222636222983 1.1056645292282872 0.0012179432994608708']
['59866.39317894728 2.7820660893786457 0.0006405905725672667 0.31884779740686453 0.0001974404269696635 0.0008528773622061463 5.281280658554002e-07 1.674620784699919 0.0010369770324036949 1.1074453046787267 0.0012188837710769768']
['59866.39321048524 2.775103721550993 0.0006399842082160668 0.3177447093192262 0.00019724352186290843 0.0008499267416714668 5.276013697031295e-07 1.6688272548278689 0.0010359428669270401 1.106276466723124 0.001217685267342494']
['59866.39324202321 2.776602149453552 0.0006401277449858764 0.3183688672592857 0.00019735934592488586 0.0008515962848887865 5.279111843584689e-07 1.6721053952693576 0.001036551186580283 1.1044967541841946 0.0012182782491293588']
['59866.39327356117 2.7768264987028144 0.0006401186870036235 0.3179042512191115 0.00019726948923472884 0.0008503534959907443 5.276708291247148e-07 1.6696651849743251 0.0010360792501823994 1.1071613137284892 0.0012178719744331775']
['59866.39330509913 2.781055627052006 0.0006404528023939278 0.31840415979814607 0.00019735213067144776 0.0008516906879478435 5.278918844719086e-07 1.672290755242364 0.0010365132913416374 1.1087648718096421 0.0012184168396825897']
['59866.3933366371 2.779431907067432 0.0006403621596130312 0.31833800528817735 0.00019736150871455706 0.0008515137330357538 5.279169695461502e-07 1.6719433050849652 0.0010365625457697326 1.1074886019824668 0.0012184110992423266']
['59866.39336817506 2.780269526345914 0.0006403647325299775 0.31871181536824467 0.0001974181289633355 0.0008525136275234897 5.280684215204726e-07 1.673906593320613 0.001036859921025922 1.106362933025301 0.00121866545306662']
['59866.39339971302 2.7810338864578257 0.0006404349509835036 0.31901897576313726 0.00019744522434671528 0.0008533352425683505 5.28140898229714e-07 1.6755198306887462 0.00103700222871174 1.1055140557690795 0.0012188234280626374']
['59866.39343125098 2.780746670713918 0.0006404273694971046 0.3189255508229245 0.00019745254097568206 0.0008530853427188896 5.281604692829381e-07 1.6750291534817465 0.001037040656384885 1.1057175172321714 0.0012188521397594435']
['59866.39346278895 2.778758778511272 0.0006403018418152298 0.3184571027990696 0.0001973714084553387 0.0008518323037511896 5.279434500954061e-07 1.6725688172220041 0.001036614540206611 1.106189961289268 0.0012184236347017154']
['59866.39349432691 2.777718619764817 0.00064016933192752 0.31814645479264847 0.00019730009714808813 0.0008510013597884408 5.27752701405536e-07 1.6709372625664312 0.0010362400060298746 1.1067813571983858 0.0012180353540178223']
['59866.39352586487 2.7821608909958844 0.0006405484459198168 0.31877208511042504 0.0001973986700222868 0.0008526748414291516 5.280163713245863e-07 1.6742231360841653 0.001036757720705288 1.107937754911719 0.0012186750522646783']
['59866.39355740284 2.774958937949755 0.0006399429953602173 0.31808711116018407 0.00019730583145407892 0.0008508426231086468 5.277680399457652e-07 1.6706255838244963 0.0010362701231831878 1.1043333541252587 0.0012179420370086198']
['59866.3935889408 2.7759617802409218 0.0006400294911883672 0.3180136212432012 0.00019731418156243946 0.0008506460469144411 5.277903754251086e-07 1.6702396073697543 0.001036313978794325 1.1057221728711675 0.0012180247995157425']
['59866.39362047876 2.7812397024156166 0.000640449343098919 0.3187834179310288 0.00019738825247796304 0.0008527051552849207 5.279885057166198e-07 1.6742826572007816 0.001036703006711991 1.106957045214835 0.001218576417464871']
['59866.393652016726 2.7760008329973065 0.0006400528594078663 0.31806192251520754 0.00019730664709269126 0.0008507752466824653 5.277702216754615e-07 1.6704932905210481 0.001036274406999429 1.1055075424762584 0.0012180034110946506']
['59866.393683554685 2.781972783899085 0.0006404749688826321 0.31925988069253053 0.00019750945194151777 0.0008539796326578991 5.283126988884656e-07 1.6767850876708539 0.0010373395585163748 1.105187696228231 0.0012191314717569044']
['59866.39371509265 2.781643994936946 0.0006405034432543733 0.31871037980270955 0.00019740109317401033 0.0008525097875680099 5.280228529476899e-07 1.6738990535856595 0.0010367704473424914 1.1077449413512865 0.001218662226091979']
['59866.393746630616 2.776365713394441 0.0006400519752929186 0.3177679744412355 0.00019725848477534705 0.0008499889729180117 5.276413935935103e-07 1.6689494455947245 0.0010360214536520329 1.1074162677997166 0.001217787741564037']
['59866.393778168574 2.7813818707731945 0.0006404790602459645 0.31897907217041943 0.00019743669353627368 0.0008532285055258603 5.281180793952542e-07 1.6753102529959005 0.001036957424035051 1.106071617777294 0.0012188084861351116']
['59866.39380970654 2.781497497915453 0.0006404617963589524 0.3189182843098471 0.00019744336194689536 0.0008530659057193044 5.281359165467332e-07 1.6749909890223063 0.0010369924472000808 1.106506508893147 0.001218829212049559']
['59866.393841244506 2.7747072690620964 0.0006399276524066455 0.31764822070434134 0.00019722139085950237 0.0008496686468813657 5.275421720798076e-07 1.6683204868925492 0.0010358266326654538 1.1063867821695472 0.0012175566571021382']
['59866.393872782464 2.7770502091961946 0.000640095707029705 0.3180456850594281 0.0001972916338716523 0.0008507318135505236 5.277300632159642e-07 1.670408009765904 0.001036195556048594 1.1066421994302906 0.0012179588435299088']
['59866.39390432043 2.7815540709659543 0.0006404837639520798 0.31890953437060765 0.00019742338409176215 0.0008530425007431412 5.280824783215765e-07 1.6749450334590739 0.0010368875214903474 1.1066090375068804 0.0012187514857872458']
['59866.39393585839 2.7816301446332368 0.0006404451520999673 0.31945651461945007 0.00019753188859825195 0.0008545056034385515 5.283727140956202e-07 1.6778178288836665 0.0010374573981000628 1.1038123157495703 0.0012192160783556383']
['59866.393967396354 2.777905501276249 0.0006402350051286199 0.3179910727072224 0.0001973086855397359 0.0008505857324445166 5.277756742624091e-07 1.6701211801849916 0.001036285113128865 1.1077843210912575 0.001218108245388951']
['59866.39399893432 2.7804014230396907 0.0006403558494740085 0.3187469675106393 0.00019738654964474695 0.0008526076550398322 5.279839508540383e-07 1.6740912159172234 0.0010366940632602257 1.1063102071224673 0.001218519673519708']
['59866.39403047228 2.7757359600345763 0.00064001097922904 0.3181161170518636 0.00019733996119388774 0.0008509202101849424 5.278593326650427e-07 1.670777925692561 0.0010364493760183179 1.1049580343420153 0.0012181302732394738']
['59866.394062010244 2.7780476999097568 0.0006401983144868153 0.3181124700396618 0.00019731708296557914 0.0008509104548904982 5.277981363100092e-07 1.6707587712167113 0.0010363292172561932 1.1072889286930454 0.0012181264829280222']
['59866.39409354821 2.775904495838744 0.0006399900655766456 0.31805464690375523 0.00019730518429426555 0.000850755785345883 5.277663088754581e-07 1.6704550782760257 0.001036266724234588 1.1054494175627183 0.0012179638778685854']
['59866.39412508617 2.780837906692529 0.000640428919695009 0.3188405356849169 0.00019742486883927825 0.0008528579380222248 5.28086449832609e-07 1.6745826454039754 0.0010368953195340246 1.1062552612885537 0.0012187292992511846']
['59866.394156624134 2.7750114612833165 0.0006399400945136839 0.3178255169578523 0.00019725980080497792 0.0008501428918416674 5.276449138056281e-07 1.6692516646946027 0.001036028365572363 1.1057597965887138 0.0012177348228726665']
['59866.39418816209 2.7806724474044193 0.0006404140376889073 0.31850986823741567 0.00019737158979974068 0.000851973444597193 5.279439351686494e-07 1.6728459466250825 0.0010366154926456969 1.1078265007793369 0.0012184834095145037']
['59866.39421970006 2.7810508512491876 0.0006404571394787041 0.31869940495672516 0.00019738487872178072 0.0008524804312488824 5.279794813473222e-07 1.6738414125878422 0.0010366852874043105 1.1072094386613454 0.0012185654404379776']
['59866.39425123802 2.7761405018018266 0.000640046855425386 0.3179494155340503 0.00019730121054789397 0.0008504743047970279 5.277556796086072e-07 1.6699023925107686 0.0010362458537179306 1.106238109291058 0.0012179759630171394']
['59866.39428277598 2.7808197881690297 0.0006403918106320226 0.31890423876255175 0.0001974477473573049 0.0008530283356641703 5.281476469626015e-07 1.6749172203915534 0.0010370154798177778 1.1059025677774763 0.0012188120349365837']
['59866.39431431395 2.78163308546773 0.0006404649476003141 0.319015232134879 0.00019743928768306215 0.000853325228838226 5.281250184084388e-07 1.675500168775625 0.0010369710487555786 1.106132916692105 0.001218812662004263']
['59866.394345851906 2.7757613024531613 0.0006400464209013441 0.31800108687124273 0.00019728047719938386 0.0008506125190614035 5.277002205346201e-07 1.6701737755842583 0.0010361369600807976 1.105587526868903 0.0012178830900189464']
['59866.39437738987 2.77620093981091 0.000640080905854408 0.3177293733191421 0.0001972506728172589 0.000849885719819019 5.276204975977968e-07 1.6687467086089398 0.0010359804244603936 1.1074542312019704 0.0012177680427341395']
['59866.39440892784 2.7783586116991836 0.0006402462345309445 0.31806573626775625 0.0001972959567183848 0.0008507854479861604 5.277416262819425e-07 1.6705133207340142 0.0010362182600755505 1.1078452909651695 0.001218057274246599']
['59866.394440465796 2.7746102615127284 0.0006399296777723387 0.31779632717372974 0.0001972455982885474 0.0008500648128764422 5.276069238779934e-07 1.6690983570048832 0.0010359537725238835 1.1055119045078452 0.0012176658865634183']
['59866.39447200376 2.778978265693136 0.0006402712325656793 0.31835753115710874 0.0001973503144295685 0.0008515659622552259 5.278870262555568e-07 1.672045856917588 0.0010365037522561372 1.1069324087755479 0.001218313292914522']
['59866.39450354173 2.78118552898176 0.0006404532336332198 0.3187423587652808 0.00019740175287435497 0.0008525953272313404 5.280246175623253e-07 1.674067010321853 0.0010367739121552256 1.107118518659907 0.001218638785447476']
['59866.394535079686 2.7816810147396582 0.0006405125854545163 0.31888063184341436 0.0001974252668992367 0.0008529651901537184 5.280875145924414e-07 1.6747932344717142 0.0010368974101850666 1.106887780267944 0.0012187750454346067']
['59866.39456661765 2.781066205682034 0.0006404550674030797 0.3186132682463891 0.00019738510244474917 0.0008522500264886864 5.279800797778486e-07 1.6733890138991023 0.0010366864624199012 1.1076771917829318 0.0012185653510284019']
['59866.39459815561 2.7766101933945166 0.0006401071758551958 0.3182175608489056 0.000197342506782986 0.0008511915594579718 5.278661417925732e-07 1.6713107187442524 0.00103646274570896 1.1052994746502642 0.0012181921933027936']
['59866.394629693576 2.7777081808549235 0.0006401993025254518 0.31819549680735293 0.0001973114556793477 0.0008511325409491029 5.277830840340439e-07 1.6711948361730722 0.001036299662181448 1.1065133446818514 0.0012181018581348022']
['59866.39466123154 2.7778544054602 0.0006402109803445189 0.31807642601193825 0.00019730441438323818 0.0008508140416941764 5.277642494612439e-07 1.6705694643484155 0.0010362626805842342 1.1072849411117847 0.0012180765339359068']
['59866.3946927695 2.78304896842981 0.0006405906464618475 0.31889782923421917 0.0001974390591657041 0.0008530111909899347 5.281244071535293e-07 1.6748835569024116 0.0010369698485593701 1.1081654115273984 0.0012188776981943885']
['59866.394724307465 2.781520300163759 0.0006404734453288998 0.3190576574062489 0.00019746756964246422 0.0008534387110508402 5.282006690578365e-07 1.6757229905790385 0.0010371195884583205 1.1057973095847207 0.0012189435076882878']
['59866.39475584543 2.775218759946048 0.0006399620369833399 0.3179823532369742 0.0001973110393245524 0.0008505624089690352 5.277819703378465e-07 1.670075384647974 0.0010362974754440778 1.1051433752980742 0.0012179753143605311']
['59866.39478738339 2.780642011937167 0.0006404080770468329 0.31872360505716274 0.00019742251774732247 0.0008525451634439742 5.28080160960232e-07 1.6739685139556868 0.0010368829713619878 1.1066734979814803 0.001218707840890214']
['59866.394818921355 2.776252792070542 0.0006400177562740099 0.3179045426542204 0.00019726880751207582 0.0008503542755426465 5.276690056032014e-07 1.6696667156209057 0.0010360756697062807 1.1065860764496362 0.001217815881692851']
['59866.39485045931 2.7807560816814023 0.0006403984670679699 0.3185104182619586 0.0001973545362395887 0.0008519749158429883 5.27898319061162e-07 1.6728488354094464 0.0010365259256280921 1.107907246271956 0.0012183990278731261']
['59866.39488199728 2.7803374583511413 0.0006403875784178612 0.3188255093603586 0.00019743184372714962 0.0008528177445124777 5.281051067718062e-07 1.6745037256321356 0.0010369319523484749 1.1058337327190058 0.0012187387432887789']
['59866.394913535245 2.7820515040733405 0.0006405827987749049 0.31872683305762184 0.0001974120084179375 0.0008525537979352241 5.280520498388842e-07 1.6739854677396107 0.0010368277753042936 1.1080660363337298 0.0012187527057318647']
['59866.3949450732 2.7754736215212605 0.0006400230679711767 0.3178037453163023 0.0001972739043082181 0.0008500846554656688 5.27682638885554e-07 1.6691373178377222 0.0010361024385935826 1.1063363036835383 0.001217841447313568']
['59866.39497661117 2.7758947750872363 0.0006400424100383652 0.31780916151471705 0.00019725794467119402 0.0008500991431085339 5.276399488834979e-07 1.6691657642579678 0.001036018616970557 1.1067290108292684 0.0012177803009399129']
['59866.395008149135 2.7811572118573595 0.0006404389219357886 0.3189018295019756 0.0001974244744264412 0.0008530218911981216 5.28085394828363e-07 1.6749045667120568 0.0010368932480380316 1.1062526451453027 0.0012187327929276107']
['59866.39503968709 2.781683165596838 0.0006404340798961789 0.31922512418694127 0.00019749481143717184 0.0008538866634197624 5.282735373987846e-07 1.676602542998641 0.0010372626651111965 1.105080622598197 0.0012190445632240224']
['59866.39507122506 2.7780977830692466 0.0006402211867478412 0.31853717623416383 0.00019739955008131924 0.0008520464900201914 5.280187253707245e-07 1.6729893709777515 0.0010367623428640717 1.1051084120914951 0.0012185070059469551']
['59866.39510276302 2.778211298273371 0.0006402595922034464 0.31806693851267276 0.00019730233227244215 0.0008507886638386186 5.277586800793068e-07 1.6705196350455502 0.0010362517451283726 1.1076916632278209 0.001218092781642729']
['59866.39513430098 2.7820347254273257 0.0006405428370655317 0.3190680275825024 0.00019744498384487432 0.0008534664499552347 5.281402549178347e-07 1.675777455790454 0.0010370009655718188 1.1062572696368718 0.0012188790459733258']
['59866.39516583895 2.775388541886808 0.000639995162072065 0.31773269137070353 0.00019727039870179135 0.0008498945951855305 5.276732618335985e-07 1.6687641353503337 0.0010360840267951228 1.106624406536474 0.0012178111175611946']
['59866.39519737691 2.782311864250594 0.000640513550496435 0.3189727414738341 0.0001974318784844698 0.0008532115717165363 5.281051997432233e-07 1.6752770035390445 0.0010369321348974254 1.1070348607115497 0.0012188050954736289']
['59866.39522891487 2.7799429987507205 0.0006403734215727196 0.31885269058776955 0.0001974401126436972 0.0008528904508435997 5.281272250733619e-07 1.6746464841794622 0.001036975381532023 1.1052965145712583 0.0012187682556418333']
['59866.39526045284 2.7780875286344027 0.0006402076911110761 0.3183337446183564 0.00019735944657683606 0.000851502336285117 5.279114535896521e-07 1.6719209276174183 0.001036551715214475 1.1061666010169844 0.0012183207073968025']
['59866.3952919908 2.776603088461953 0.0006400710065507435 0.31815046397859104 0.00019732386813907507 0.000851012083851643 5.278162857873471e-07 1.6709583192152893 0.001036364853671613 1.1056447692466638 0.001218089899536428']
['59866.39532352876 2.7807868368601447 0.0006404097780864774 0.318654655949574 0.00019737928265258837 0.0008523607333381838 5.279645125729719e-07 1.6736063862897794 0.0010366558962846028 1.1071804505703653 0.0012185155440823906']
['59866.39535506672 2.7813213566989967 0.0006404437699938982 0.3188578201642499 0.00019743601757315807 0.0008529041718091932 5.281162712797718e-07 1.6746734252324051 0.0010369538738086033 1.1066479314665916 0.001218786921053334']
['59866.39538660469 2.781910712288532 0.0006404500266996222 0.3194290259842203 0.00019752100581954632 0.000854432074830557 5.283436040447702e-07 1.6776734557994766 0.001037400240648878 1.1042372564890555 0.0012191700029109546']
['59866.39541814265 2.777369386689102 0.0006401349470343778 0.3182649686891252 0.00019733201694102165 0.0008513183694094383 5.278380827976006e-07 1.671559709501708 0.0010364076520011643 1.1058096771873938 0.0012181599121384975']
['59866.39544968061 2.7824026387257996 0.0006405357818575318 0.31929729031498866 0.00019749637574204774 0.0008540796986466959 5.282777217156503e-07 1.6769815667804027 0.00103727088099815 1.105421071945397 0.0012191049866219553']
['59866.39548121858 2.774031730159943 0.000639885966621356 0.31765690471043107 0.00019724873830527338 0.0008496918754947274 5.276153230239318e-07 1.6683660961682305 0.0010359702642083687 1.1056656339917126 0.0012176569461892395']
['59866.39551275654 2.7765192932358644 0.0006400915245902374 0.31809996367825366 0.00019732691977663366 0.000850877001962125 5.278244485302374e-07 1.67069308654545 0.0010363808811797988 1.1058262066904145 0.0012181143175939073']
['59866.3955442945 2.778326754129938 0.0006402110062054781 0.3184102505582579 0.0001973813280163449 0.0008517069799575743 5.279699836612454e-07 1.6723227445286655 0.0010366666387413073 1.1060040096012724 0.0012184202281420935']
['59866.39557583247 2.777689958537767 0.0006401706128835682 0.31815547913459163 0.00019731889447911237 0.0008510254987569854 5.278029818786358e-07 1.6709846593203344 0.0010363387315079431 1.1067052992174327 0.001218120018726897']
['59866.395607370425 2.781332956993173 0.0006404522173677573 0.3190565138159962 0.00019747167146457438 0.000853435652092158 5.282116409110217e-07 1.6757169843277113 0.0010371411316416723 1.1056159726654617 0.001218950683856507']
['59866.39563890839 2.7755804466501397 0.000639997317554561 0.3180034874043548 0.00019730461682801668 0.000850618940182594 5.277647909753145e-07 1.6701863834262332 0.0010362637438446256 1.1053940632239065 0.0012179651527379235']
['59866.395670446356 2.780865445810659 0.0006404196521206599 0.31887171332612413 0.00019742368413432445 0.0008529413342526799 5.280832808973232e-07 1.6747463935195595 0.001036889097344141 1.1061190522910995 0.0012187191354095883']
['59866.395701984315 2.781537200490327 0.0006404817747997283 0.3190136904163684 0.00019744320555682883 0.000853321104937019 5.281354982231679e-07 1.67549207151454 0.001036991625823681 1.106045128975787 0.001218839011469132']
['59866.39573352228 2.777166842357252 0.0006401129042640853 0.3181552608702879 0.00019731347494462867 0.000851024914927694 5.2778848531221e-07 1.6709835129742012 0.001036310267566327 1.106183329383051 0.0012180654747872934']
['59866.395765060246 2.778032303047581 0.0006402208636191643 0.3182728047742497 0.0001973342435133316 0.0008513393299419097 5.278440385957396e-07 1.6716008654109755 0.0010364193461834643 1.1064314376366053 0.0012182150119566858']
['59866.395796598204 2.780906947364058 0.0006404623285910645 0.31892705704466195 0.0001974659382778289 0.0008530893716707367 5.281963053646316e-07 1.6750370643101995 0.0010371110203667485 1.1058698830538587 0.0012189303765639968']
['59866.39582813617 2.780962978610674 0.0006404288524094094 0.31872273005250457 0.0001974071413897896 0.0008525428229176451 5.280390311567345e-07 1.6739639183429862 0.0010368022131816681 1.1069990602676878 0.0012186500499556214']
['59866.39585967413 2.777246733875282 0.0006401372654888381 0.3182555275752109 0.00019733678129448367 0.0008512931156288038 5.278508268380058e-07 1.6715101238193852 0.0010364326748659857 1.105736610055897 0.0012181824199180471']
['59866.395891212094 2.776428437802764 0.0006400620887825685 0.31819078028645625 0.00019734024246144917 0.0008511199248547348 5.278600850200466e-07 1.6711700645297074 0.001036450853263914 1.1052583732730565 0.00121815838408977']
['59866.39592275006 2.781357866494393 0.0006404671321700811 0.3188165105282878 0.00019743032931485976 0.0008527936737796017 5.281010559112717e-07 1.6744564628586545 0.0010369239985024148 1.1069014036357385 0.0012187737796902278']
['59866.39595428802 2.7807970084293734 0.0006404558488882681 0.3185634347479227 0.00019736348871800464 0.000852116728209485 5.279222658038985e-07 1.6731272833399304 0.0010365729449475034 1.107669725089443 0.0012184691890123165']
['59866.395985825984 2.775691226455887 0.0006400605606787485 0.3177664731635872 0.00019726159308337666 0.0008499849571909749 5.276497079227132e-07 1.6689415607331262 0.0010360377787992474 1.106749665722761 0.0012178061423870682']
['59866.39601736395 2.781979411395151 0.000640551343825393 0.31897529154519694 0.0001974555519600983 0.0008532183928335554 5.281685232838358e-07 1.6752903967709925 0.0010370564703786676 1.1066890146241586 0.001218930739144262']
['59866.39604890191 2.7816865815937044 0.0006405046668775917 0.319159434465085 0.0001974900185726715 0.0008537109517568421 5.282607170949729e-07 1.6762575339552785 0.001037237492503527 1.1054290476384259 0.0012190602299094902']
['59866.396080439874 2.774299826827736 0.0006398716559800193 0.3179733817149531 0.00019728398148543402 0.0008505384112870736 5.277095940547359e-07 1.6700282653096277 0.0010361553649445064 1.1042715615181085 0.001217806912621987']
['59866.39611197783 2.781983795585551 0.0006404541661783768 0.31923626893062257 0.00019750455214535164 0.000853916474193651 5.282995925560288e-07 1.676661076316295 0.0010373138242928133 1.105322719269256 0.0012190986461497778']
['59866.3961435158 2.7782464190850105 0.0006402272727342168 0.3180444623423143 0.00019730395727232604 0.0008507285429375376 5.277630267476101e-07 1.6704015879323233 0.0010362602797916285 1.1078448311526872 0.001218083054732524']
['59866.396175053764 2.777465979296383 0.0006401656954667873 0.31795885410056557 0.00019729970641009045 0.0008504995517636937 5.277516562310186e-07 1.669951964813895 0.0010362379538345087 1.107514014482488 0.001218031696886253']
['59866.39620659172 2.7763515372617977 0.0006401105901698634 0.31784352266908344 0.00019727579703805663 0.0008501910548323618 5.276877016974824e-07 1.6693462325056905 0.0010361123794015582 1.1070053047561073 0.0012178959029394791']
['59866.39623812969 2.777215860212971 0.0006401067178462359 0.31821379198803323 0.00019732078423516708 0.0008511814782338093 5.278080367360702e-07 1.6712909243068974 0.0010363486566973062 1.1059249359060737 0.0012180948848386944']
['59866.39626966765 2.781886722150505 0.0006405153190319134 0.31864756075513584 0.00019741743547615427 0.0008523417545942002 5.280665665303404e-07 1.6735691216131086 0.0010368562787613144 1.1083176005373963 0.00121874148888159']
['59866.39630120561 2.7809978208361876 0.0006404735235067456 0.31866141856333274 0.00019741145243856644 0.0008523788224710902 5.280505626646798e-07 1.6736419042191848 0.0010368248552445718 1.1073559166170028 0.0012186927893304666']
['59866.39633274358 2.774923364692397 0.0006399598780272643 0.3177724258622484 0.00019725546058689826 0.0008500008799038601 5.276333042735025e-07 1.6689728249067668 0.0010360055703093397 1.1059505397856302 0.0012177258259545337']
['59866.396364281536 2.7808121048949968 0.0006403865956227426 0.3189300019128859 0.00019745022797711044 0.0008530972488192173 5.281542823055257e-07 1.6750525310550732 0.0010370285082831432 1.1057595738399235 0.0012188203800582132']
['59866.3963958195 2.7755310611696364 0.0006400065460102435 0.31808024327073336 0.00019731292446643602 0.0008508242523766352 5.277870128529592e-07 1.670589512976541 0.001036307376399349 1.1049415481930955 0.0012180071253139958']
['59866.39642735747 2.7766110830660495 0.0006400676574455573 0.3179309626411597 0.00019725199953317998 0.0008504249456521896 5.276240463943836e-07 1.6698054760565113 0.0010359873925061974 1.1068056070095382 0.0012177670070828957']
['59866.396458895426 2.7818678111904975 0.0006405465284975007 0.31890678336742717 0.00019742998629876022 0.0008530351421590297 5.281001383867708e-07 1.6749305849129579 0.0010369221969472701 1.1069372262775397 0.001218813971733239']
['59866.39649043339 2.776944506723114 0.0006401064898095563 0.31828604437498137 0.00019735404651080368 0.0008513747441923469 5.278970090988609e-07 1.671670401129104 0.0010365233535231287 1.10527410559401 0.0012182433996107446']
['59866.39652197136 2.775688631360915 0.0006399645171625829 0.31808444533921665 0.00019730954333713242 0.0008508354923761365 5.277779687614987e-07 1.670611582663953 0.0010362896183672922 1.1050770486969619 0.001217969932454396']
['59866.396553509316 2.778102206120902 0.0006401932791149912 0.3182503643325406 0.00019734199909926151 0.000851279304610428 5.278647838030896e-07 1.6714830059482175 0.0010364600793028444 1.1066192001726847 0.0012182351704873994']
['59866.39658504728 2.775368898191542 0.0006400029939987331 0.31772120883851446 0.00019724528061900416 0.0008498638808702851 5.276060741523115e-07 1.6687038279333744 0.0010359521040914084 1.1066650702581675 0.0012177029992156375']
['59866.39661658524 2.781792630108894 0.000640489220102127 0.3190752734573256 0.0001974759286624843 0.000853485831750111 5.282230283747374e-07 1.6758155118557019 0.0010371634908743924 1.1059771182531923 0.0012189891500213553']
['59866.396648123206 2.7818917753861814 0.0006405370470271317 0.31892569116806857 0.00019742602013564657 0.0008530857181243252 5.280895294041717e-07 1.6750298905885956 0.0010369013662586482 1.1068618847975857 0.0012187912667734739']
['59866.39667966117 2.7754480196832203 0.000639980326484123 0.31808870627412955 0.00019730572835531226 0.0008508468898358605 5.277677641696586e-07 1.6706339615237897 0.0010362695816980687 1.1048140581594306 0.0012179611915982443']
['59866.39671119913 2.782536255336792 0.0006405699546045907 0.3189923000125606 0.00019745442561883928 0.0008532638883235612 5.28165510464021e-07 1.675379726956726 0.0010370505547207946 1.107156528380066 0.0012189354863112465']
['59866.396742737095 2.77547380383249 0.0006399847564482975 0.31776995152708737 0.00019726431544753116 0.000849994261371562 5.276569899010675e-07 1.6689598294489885 0.0010360520769303108 1.1065139743835017 0.001217778466962607']
['59866.39677427506 2.7786699487923716 0.0006402530451246459 0.3185147611661398 0.0001973630453453423 0.0008519865325600944 5.27921079838338e-07 1.6728716447801462 0.001036570616309571 1.1057983040122255 0.0012183606216501688']
['59866.39680581302 2.780413942038786 0.0006403465497113231 0.31917859373436774 0.0001974710056446537 0.0008537622003688148 5.282098599272975e-07 1.6763581603695785 0.0010371376346883072 1.1040557816692074 0.0012188921925314201']
['59866.396837350985 2.7779797390611214 0.0006402132203331667 0.31819462767047324 0.0001973075779473289 0.0008511302161183361 5.277727115933923e-07 1.671190271378536 0.0010362792959418537 1.1067894676825853 0.0012180918465727892']
['59866.39686888894 2.781305235772026 0.0006405152921043647 0.3188127636982018 0.00019742473337775514 0.0008527836514849947 5.280860874902392e-07 1.6744367841292112 0.0010368946080764451 1.1068684516428149 0.0012187740839374394']
['59866.39690042691 2.7757357576459043 0.0006400101812207097 0.31810183566176925 0.0001973265370170633 0.0008508820092802744 5.278234246969999e-07 1.6707029183916453 0.0010363788708879376 1.105032839254259 0.0012180698650279148']
['59866.396931964875 2.7787175672285374 0.0006402591729042964 0.3185212034519779 0.00019740204012558762 0.0008520037648564968 5.280253859228898e-07 1.6729054803150099 0.001036775420827666 1.1058120869135275 0.0012185380920268672']
['59866.39696350283 2.778704801642496 0.0006402959360787136 0.3180188104370329 0.00019731023880438178 0.0008506599273488777 5.277798290480615e-07 1.6702668615390384 0.001036293271031417 1.1084379401034574 0.0012181472116882712']
['59866.3969950408 2.780410307424364 0.0006403964204817263 0.3187472268192615 0.00019742384526942047 0.0008526083486574625 5.280837119132398e-07 1.6740925778322557 0.0010368899436419142 1.1063177295921083 0.0012187076477119276']
['59866.397026578765 2.7753090589752967 0.0006400032260166769 0.3179207710820722 0.00019728554082183226 0.0008503976845260283 5.277137650815548e-07 1.6697519489604633 0.001036163554736514 1.1055571100148334 0.0012178830163344764']
['59866.39705811672 2.774938907825233 0.000639965144890284 0.3178836637856949 0.000197265829519676 0.0008502984272211003 5.276610398517573e-07 1.6695570576979775 0.001036060028989895 1.1053818501272554 0.0012177749259797495']
['59866.39708965469 2.779348031342702 0.0006403466647369592 0.31839663014657876 0.00019734875102126609 0.0008516705470862184 5.278828443369114e-07 1.6722512087530397 0.001036495541078078 1.1070968225896622 0.0012183459515730684']
['59866.39712119265 2.7784614471340254 0.0006402276417360551 0.3184260570928688 0.0001973627285088488 0.0008517492604301202 5.279202323409584e-07 1.6724057620423782 0.0010365689522523571 1.1060556850916472 0.0012183458564859406']
['59866.39715273061 2.776181121807471 0.0006400295093497368 0.3179566694984507 0.00019727225037791528 0.0008504937082304958 5.276782148320544e-07 1.6699404910632916 0.0010360937519848493 1.1062406307441794 0.0012178374422477357']
['59866.39718426858 2.7813326761022816 0.0006404557989931424 0.3191765159832822 0.00019749676840680636 0.0008537566426485497 5.282787720440084e-07 1.6763472478113564 0.0010372729433130586 1.1049854282909253 0.0012190647191159625']
['59866.39721580654 2.7823076068978914 0.000640561289083137 0.318998871808735 0.00019745923771530182 0.0008532814670436645 5.28178382210889e-07 1.675414242692936 0.0010370758283366692 1.1068933642049554 0.00121895243499984']
['59866.3972473445 2.775796208267942 0.000640072461728704 0.3177581063244447 0.00019727221414254004 0.0008499625769589147 5.276781179070277e-07 1.6688976172502348 0.0010360935616730044 1.1068985910177074 0.0012178598543361608']
['59866.39727888247 2.7782891413823076 0.0006402419064753301 0.3182056867849097 0.00019730814008905756 0.0008511597978448702 5.277742152511205e-07 1.671248354962761 0.001036282248366899 1.1070407864195466 0.001218109435595801']
['59866.39731042043 2.7817084032539094 0.0006404644806269062 0.3193608866393548 0.00019751163693993562 0.000854249810737206 5.283185434817235e-07 1.6773155810890483 0.0010373510343484015 1.1043928221648611 0.0012191357264096526']
['59866.39734195839 2.7784484359036408 0.0006402618531413719 0.31822323098837607 0.00019732736941635288 0.0008512067263609086 5.278256512593791e-07 1.6713404988885299 0.001036383242732946 1.107107937015111 0.0012182058390952165']
['59866.39737349635 2.7802101247275846 0.0006403310629595191 0.31868763540318484 0.00019740065303493974 0.0008524489491879761 5.280216756315767e-07 1.6737795977058028 0.0010367681356877089 1.1064305270217818 0.001218569668655935']
['59866.39740503432 2.77521191991615 0.0006399502880320629 0.31778268166478835 0.0001972563480966707 0.0008500283128730972 5.27635678249424e-07 1.6690266894159052 0.0010360102316001613 1.1061852305002449 0.0012177247517943207']
['59866.39743657228 2.7809750454051794 0.000640419578772711 0.31917437496612455 0.0001974951036032216 0.0008537509156995768 5.282743189058607e-07 1.6763360029733434 0.001037264199596752 1.104639042431836 0.0012190382506880198']
['59866.39746811024 2.7748309713866486 0.000639934677289297 0.31754382393344877 0.00019718874160581752 0.000849389398778334 5.274548394728798e-07 1.6677721845244158 0.0010356551554927393 1.1070587868622328 0.001217414470217948']
['59866.39749964821 2.775808732078345 0.0006400536455477246 0.3179924070950889 0.00019729838861478789 0.0008505893017625831 5.277481312959533e-07 1.6701281885246269 0.0010362310326406928 1.1056805435537183 0.0012179669216306856']
['59866.39753118617 2.778792681504599 0.0006402702306203452 0.31799439598303225 0.00019731226911940688 0.0008505946217852291 5.277852598828898e-07 1.6701386343646651 0.0010363039344506665 1.108654047139934 0.0012181427719182023']
['59866.39756272413 2.7779758368369296 0.0006402140626516542 0.3176758581990282 0.00019723788930317676 0.0008497425736695017 5.275863033212211e-07 1.6684656418016188 0.0010359132841553402 1.1095101950353108 0.0012177809237734177']
['59866.3975942621 2.7784990100439915 0.0006402405056331594 0.31834357974554794 0.00019736301026715156 0.0008515286440012258 5.27920986008633e-07 1.6719725826972058 0.001036570432075376 1.1065264273467856 0.0012183538754016977']
['59866.397625800055 2.7820444620103983 0.0006405906928706766 0.31890590863183416 0.0001974596301826227 0.0008530328023524158 5.281794320111263e-07 1.6749259907134149 0.001037077889614615 1.1071184712969835 0.0012189696406884123']
['59866.39765733802 2.7777115518273128 0.0006401642316718864 0.31847455195113933 0.00019738895870808365 0.0008518789780168143 5.279903947924964e-07 1.6726604619282528 0.0010367067159038007 1.10505108989906 0.0012184297510780425']
['59866.397688875986 2.7815805713053163 0.0006404634551527948 0.3192676120370067 0.0001975254958593183 0.0008540003130224391 5.283556143308944e-07 1.676825693471674 0.0010374238227905375 1.1047548778336422 0.0012191971233068049']
['59866.397720413945 2.7761427298138033 0.0006400948131749646 0.317547260544632 0.00019721336247985325 0.000849398591276776 5.275206971839054e-07 1.6677902339528994 0.0010357844668059518 1.108352495860904 0.0012176086528642865']
['59866.39775195191 2.7776067385801424 0.0006401853115493943 0.3182006341164284 0.00019732735800336674 0.0008511462825984064 5.278256207310907e-07 1.6712218178383846 0.001036383182790792 1.1063849207417578 0.0012181655612826883']
['59866.397783489876 2.778304262115752 0.0006402092585594013 0.31848719438874024 0.00019737936080640442 0.0008519127949317204 5.279647216245037e-07 1.6727268612854005 0.0010366563067563258 1.1055774008303516 0.0012184105191120288']
['59866.397815027834 2.7770688551696208 0.0006401493958196322 0.3179687092759472 0.00019726695021382492 0.0008505259131061647 5.276640375662699e-07 1.6700037251887985 0.0010360659149885765 1.1070651299808223 0.001217876770929373']
['59866.3978465658 2.7752532975262802 0.0006400037745592013 0.3177117819533291 0.00019727198213459143 0.0008498386651496935 5.276774973152318e-07 1.6686543169817707 0.0010360923431438627 1.1065989805445096 0.0012178227190241463']
['59866.39787810376 2.7813399782609496 0.0006404709724495791 0.3190475035243907 0.00019747369594050605 0.000853411550706482 5.282170561270166e-07 1.6756696613675983 0.0010371517643934143 1.1056703168933513 0.0012189695849096818']
['59866.397909641724 2.7772425179152256 0.00064017562920011 0.3179206092531403 0.00019729116535952362 0.0008503972516541889 5.277288100055243e-07 1.6697510990185942 0.0010361930953756494 1.1074914188966314 0.001217998754977166']
['59866.39794117969 2.7753019824128544 0.0006399654051145158 0.3179573447144457 0.0001972854924695593 0.0008504955143475253 5.277136357453658e-07 1.6699440373657863 0.0010361633007855008 1.105357945047068 0.001217862925635759']
['59866.39797271765 2.7761042791753194 0.0006400780067535533 0.31792133919796156 0.00019729355081375729 0.0008503992041638778 5.277351907926304e-07 1.6697549327624033 0.0010362056240218345 1.1063493464129162 0.0012179581068263725']
['59866.398004255614 2.780885339873253 0.0006404186658246673 0.3190058845089152 0.00019745477937901552 0.0008533002251259855 5.281664567275625e-07 1.6754510741014454 0.0010370524127049135 1.1054342657718077 0.0012188575692974669']
['59866.39803579358 2.778960331313935 0.0006402752747291853 0.3184660812619905 0.00019738187355856674 0.0008518563199991768 5.279714429174012e-07 1.6726159730146561 0.001036669503984069 1.106344358299279 0.0012184564366115472']
['59866.39806733154 2.781672364672467 0.0006405050160502682 0.31883432352626173 0.00019742487586299584 0.000852841321286809 5.280864686201614e-07 1.6745500185202824 0.0010368953564232975 1.1071223461521844 0.0012187693201577367']
['59866.398098869504 2.776420783646109 0.0006400768198193404 0.31784835039298986 0.00019726087027603767 0.0008502039683806574 5.276477745048828e-07 1.6693715881984763 0.0010360339825422147 1.1070491954476325 0.001217811458417239']
['59866.39813040746 2.7762177037344458 0.0006400921714646222 0.31803701402327106 0.00019732341729278906 0.0008507086196300845 5.278150798307926e-07 1.670362468609617 0.001036362485781455 1.1058552351248288 0.0012180990066104694']
['59866.39816194543 2.7783282468631163 0.0006402556231313465 0.3183226166542185 0.00019735473509389145 0.0008514725703943759 5.27898850971166e-07 1.6718624824276183 0.0010365269700309426 1.106465764435498 0.0012183248427873558']
['59866.398193483394 2.7783627969215328 0.0006402445457482391 0.3183254557010088 0.0001973527323417988 0.0008514801644839614 5.278934938636814e-07 1.6718773933876512 0.001036516451374994 1.1064854035338816 0.0012183100723261624']
['59866.39822502135 2.7750138260417376 0.0006398775966577469 0.3180042099641016 0.00019729062910448167 0.0008506208729381467 5.277273755913952e-07 1.6701901783828867 0.001036190278910093 1.1048236476588509 0.0012178397402007666']
['59866.39825655932 2.777491871046268 0.0006401451622329021 0.31834103133647884 0.00019735991795565082 0.0008515218273306314 5.279127144681133e-07 1.6719591981957924 0.0010365541909435443 1.1055326728504755 0.0012182899570680266']
['59866.39828809728 2.7790501051345924 0.0006403050726003675 0.31847561765763555 0.0001973731396465801 0.0008518818286463397 5.279480808121036e-07 1.6726660591262372 0.0010366236325975845 1.1063840460083552 0.001218433068189457']
['59866.39831963524 2.780199255388526 0.0006403440116598271 0.3188285354466637 0.0001974116579329678 0.0008528258389090101 5.280511123361042e-07 1.6745196189425615 0.00103682593452189 1.1056796364459645 0.0012186256487395097']
['59866.39835117321 2.7750842087071543 0.0006399437672759261 0.31804311816679554 0.00019732558997346823 0.0008507249474387444 5.278208914756641e-07 1.6703945281869514 0.0010363738969194761 1.1046896805202029 0.0012180307383195899']
['59866.398382711166 2.781437454031667 0.0006404471026104148 0.31915365650764665 0.0001974854983103277 0.0008536954964545347 5.282486259673076e-07 1.676227187540161 0.0010372137516298724 1.1052102664915058 0.0012190097857737606']
['59866.39841424913 2.7807139974029376 0.000640441414618363 0.31870042981484975 0.00019740406959649622 0.0008524831726142017 5.280308144998135e-07 1.6738467952460598 0.0010367860798135306 1.1068672021568777 0.0012186429259030223']
['59866.3984457871 2.7758473644095547 0.0006400181526145377 0.3176917860541889 0.00019722630148422625 0.0008497851786591097 5.27555307377261e-07 1.668549296503093 0.0010358524237616927 1.1072980679064617 0.0012176261657377025']
['59866.398477325056 2.7809508020538725 0.0006404163340056955 0.3186974768429745 0.0001973769890945017 0.0008524752737894831 5.279583775963877e-07 1.6738312859399922 0.0010366438502862486 1.1071195161138803 0.0012185087415351572']
['59866.39850886302 2.775922390049948 0.0006400415495801161 0.3178107749996918 0.00019726239535914044 0.0008501034589759178 5.276518539084867e-07 1.6691742384437596 0.0010360419924324603 1.1067481516061883 0.0012177997352899772']
['59866.39854040099 2.7780457787745814 0.0006402352192925179 0.3183631859829516 0.00019735481000693623 0.000851581088196154 5.278990513540463e-07 1.6720755566331493 0.001036527363481808 1.105970222141432 0.0012183144550029302']
['59866.398571938946 2.7789283281896395 0.0006402962663404518 0.3183869101578364 0.00019737575145821953 0.0008516445473508378 5.279550670765212e-07 1.6722001583919979 0.001036637350095691 1.1067281697976417 0.0012184401110858665']
['59866.39860347691 2.7793452467859514 0.0006403441517694525 0.3184912636755338 0.00019737623449073933 0.0008519236797570659 5.279563591271632e-07 1.6727482335899888 0.001036639887031194 1.1065970131959626 0.0012184674341521756']
['59866.39863501487 2.7820685076243716 0.0006405126847404819 0.31907065491524755 0.00019746381120813259 0.0008534734777366388 5.281906157233464e-07 1.6757912548069727 0.001037099848782209 1.106277252817399 0.001218947330961244']
['59866.398666552835 2.7770482953704834 0.0006401211547504278 0.31825986487576574 0.00019732428825201413 0.000851304717356921 5.278174095361019e-07 1.671532903759274 0.001036367060147133 1.1055153916112093 0.0012181181289665762']
['59866.3986980908 2.776809551651497 0.0006401063611236397 0.3179488766251073 0.00019729844588165914 0.0008504728632840505 5.277482844775606e-07 1.669899562106656 0.0010362313334120756 1.106909989544841 0.001217994880898896']
['59866.39872962876 2.776145166348127 0.00064002274496626 0.31803509312167755 0.0001972933199252911 0.0008507034814622896 5.277345731953077e-07 1.6703523798407436 0.0010362044113723272 1.1057927865073833 0.0012179280340897066']
['59866.398761166725 2.781809168450188 0.0006405440206967999 0.3187127533475853 0.00019739321707744673 0.0008525161364990961 5.280017853897005e-07 1.673911519682696 0.001036729081289111 1.107897648767492 0.001218648362096707']
['59866.39879270469 2.781482870119508 0.0006405196964583692 0.3188621704704386 0.00019742685624084868 0.0008529158083257291 5.280917658793962e-07 1.6746962734791944 0.0010369057575674826 1.1067865966403136 0.0012187858842420667']
['59866.39882424265 2.77621684403083 0.0006400507777982503 0.31803208052262844 0.00019732220700066893 0.000850695423142454 5.278118424530867e-07 1.6703365573667461 0.001036356129205194 1.1058802866640838 0.0012180718471015237']
['59866.398855780615 2.778333431816171 0.0006402722949400631 0.31803655499378786 0.00019730713740294818 0.0008507073917845169 5.27771533193126e-07 1.6703600577404827 0.0010362769821583415 1.1079733740756885 0.0012181209280769355']
['59866.39888731857 2.7786046589768665 0.0006402870361679334 0.3180973925691702 0.00019730438891703885 0.0008508701245718753 5.277641813423951e-07 1.6706795828212722 0.0010362625468331875 1.1079250761555943 0.0012181163961846669']
['59866.39891885654 2.7763485001572583 0.0006400756138097334 0.31818353111196107 0.00019732697405136057 0.0008511005342336551 5.278245937082387e-07 1.6711319911342495 0.0010363811662361375 1.1052165090230088 0.0012181061994435804']
['59866.398950394505 2.782381293756859 0.000640571559106309 0.31869159744194475 0.0001973989808901953 0.0008524595471384528 5.280172028567591e-07 1.6738004067329033 0.0010367593534148913 1.1085808870239555 0.0012186885899314684']
['59866.39898193246 2.781110323951541 0.0006404482034841288 0.3189031071710632 0.0001974410185230874 0.0008530253088006582 5.281296481856778e-07 1.6749112771589454 0.0010369801393019296 1.1061990467925957 0.0012188115976855068']
['59866.39901347043 2.781913120049471 0.0006405285670548011 0.31886964622335073 0.00019744223811179787 0.0008529358050152972 5.281329104305822e-07 1.6747355368873462 0.001036986544704821 1.107177583162125 0.0012188592778135303']
['59866.399045008395 2.781241108930887 0.0006404550558164559 0.31889139307273084 0.00019742889548538784 0.00085299397507539 5.280972205995405e-07 1.6748497535332503 0.0010369164678854404 1.1063913553976368 0.0012187610265728377']
['59866.39907654635 2.782061786786628 0.0006405339331437573 0.31898706346336925 0.00019744308827883072 0.000853249881219552 5.281351845194181e-07 1.6753522240723178 0.0010369910098678085 1.1067095627143102 0.0012188658966659411']
['59866.39910808432 2.781896432495749 0.0006405077357746698 0.31910295004501465 0.0001975001238248635 0.0008535598631070628 5.282877473611502e-07 1.675960872085161 0.0010372905663070563 1.105935560410588 0.0012191070004461495']
['59866.39913962228 2.7782408823164735 0.0006402639484502892 0.31810721377492784 0.00019729543764184605 0.0008508963950499165 5.277402378181276e-07 1.670731164784285 0.001036215533833225 1.1075097175321884 0.0012180642660559542']
['59866.39917116024 2.774961048009733 0.000639900569487571 0.3178335210230817 0.00019724806570673548 0.0008501643016995847 5.276135239082676e-07 1.66929370285232 0.0010359667316530226 1.1056673451574128 0.0012176616147035117']
['59866.39920269821 2.7783484229500455 0.0006401855664879951 0.31834537647414507 0.00019735857804042563 0.0008515334500220262 5.279091303650644e-07 1.6719820192969805 0.001036547153573664 1.106366403653065 0.0012183052003177284']
['59866.39923423617 2.778476425369232 0.0006402881066214291 0.3184388456284838 0.00019738455307908158 0.0008517834681386585 5.279786102944609e-07 1.6724729287210283 0.0010366835770960169 1.1060034966482035 0.0012184751530094685']
['59866.39926577413 2.7816769953212157 0.0006405096730830766 0.3191561509184853 0.00019749580377160053 0.0008537021686867209 5.282761917673481e-07 1.676240288437423 0.0010372678769516835 1.1054367068837927 0.0012190887128789448']
['59866.3992973121 2.775657322672473 0.000640040222891858 0.31804490836788346 0.00019731351765780905 0.0008507297359992867 5.277885995645427e-07 1.6704039305035896 0.0010363104919002579 1.1052533921688834 0.0012180274719980717']
['59866.39932885006 2.779353485756662 0.0006403607785984831 0.31842952116123385 0.0001973797200985106 0.0008517585263730363 5.279656826852553e-07 1.6724239556787492 0.0010366581937946986 1.1069295300779127 0.0012184917470089579']
['59866.39936038802 2.776198197744208 0.0006401120376145052 0.317590372889118 0.00019724890814846948 0.0008495139113227126 5.276157773329101e-07 1.668016664333603 0.0010359711562419615 1.108181533410605 0.0012177765218890945']
['59866.39939192598 2.7763925005065193 0.0006400744945056149 0.31830642026364137 0.00019734116306297512 0.0008514292471066348 5.278625475122058e-07 1.6717774173510578 0.001036455688355962 1.1046150831554615 0.0012181690163692595']
['59866.39942346395 2.781016233782188 0.0006404197368811629 0.3187782973299448 0.00019740573949575543 0.0008526914583273724 5.280352812682432e-07 1.6742557632875252 0.001036794850292833 1.1067604704946628 0.0012186389953471356']
['59866.39945500191 2.777133766354063 0.0006401242901956173 0.3184129014408415 0.00019735149311675429 0.0008517140707318052 5.278901790940774e-07 1.6723366672313105 0.001036509942840096 1.1047970991227525 0.0012182413424707036']
['59866.39948653987 2.7766006029141184 0.0006400627463990547 0.31810617414864284 0.000197328920276745 0.0008508936141816437 5.278297996139581e-07 1.6707257045622 0.0010363913880081146 1.1058748983519184 0.001218108134963923']
['59866.39951807784 2.7764103287239217 0.0006400989382180229 0.3179138436901116 0.0001972899740261259 0.0008503791546323602 5.277256233399929e-07 1.6697155655993259 0.00103618683837251 1.1066947631245958 0.0012179531250110813']
['59866.3995496158 2.7803451686377487 0.0006403917805358763 0.3191576783287108 0.00019748434404031988 0.0008537062543150824 5.282455384416368e-07 1.6762483105499517 0.0010372076892873944 1.104096858087797 0.0012189755630425108']
['59866.39958115376 2.7758575129548895 0.0006400165548451375 0.3180622646289111 0.00019730679590205564 0.0008507761617931714 5.277706197216114e-07 1.670495087336718 0.0010362751885612167 1.1053624256181716 0.0012179849986364462']
['59866.399612691726 2.776216604553298 0.0006400866873867889 0.3177294083803526 0.00019725721436451743 0.0008498858136033041 5.27637995405892e-07 1.6687468927539528 0.001036014781326247 1.107469711799345 0.0012178003097783577']
['59866.399644229685 2.775773837677968 0.0006400584492739598 0.31794275543798683 0.0001972994530750862 0.000850456489885936 5.277509785920575e-07 1.669867413014637 0.00103623662329352 1.105906424663331 0.0012179742024943478']
['59866.39967576765 2.7777391925456043 0.0006401898667920695 0.318352127145043 0.00019733210640580535 0.0008515515072092967 5.278383221045343e-07 1.6720174745012764 0.00103640812187923 1.105721718044328 0.0012181891727644275']
['59866.399707305616 2.778609541879022 0.000640220906606887 0.3185571317178833 0.00019740927700264452 0.0008520998684046576 5.28044743649884e-07 1.6730941791905636 0.0010368134296357382 1.1055153626884584 0.0012185503260553363']
['59866.399738843575 2.7817651345486434 0.000640545317783514 0.3188836476164763 0.0001974593464174478 0.0008529732569636352 5.281786729753236e-07 1.674809073615947 0.0010370763992513016 1.1069560609326963 0.0012189445278676253']
['59866.39977038154 2.7753448354115005 0.0006399886772112492 0.3179007347040525 0.00019726329900235457 0.0008503440897595832 5.276542710393156e-07 1.669646715882629 0.0010360467384577447 1.1056981195288715 0.0012177759856507005']
['59866.3998019195 2.77793326862723 0.0006401893251736372 0.3182688058934321 0.00019734863526553174 0.0008513286334436079 5.278825347050238e-07 1.6715798628856728 0.0010364949331172885 1.106353405741557 0.0012182627460626421']
['59866.399833457464 2.7763108341439846 0.0006400712661145263 0.3180697429960454 0.00019729708607003752 0.0008507961654754518 5.277446471541781e-07 1.6705343644750283 0.0010362241915443148 1.1057764696689563 0.0012179703612350842']
['59866.39986499543 2.775383782586597 0.0006399760699751227 0.31793831244766246 0.0001972876169712123 0.0008504446054511086 5.277193185174612e-07 1.6698440779814208 0.0010361744588824177 1.1055397046051763 0.0012178780231948824']
['59866.39989653339 2.7751164558277526 0.000639974508973595 0.31796996472957106 0.0001973082080461177 0.0008505292712851572 5.277743970276254e-07 1.6700103189578315 0.0010362826052842317 1.105106136869921 0.0012179692156005703']
['59866.399928071354 2.7816078839943543 0.0006405323290740412 0.3186513824316833 0.0001974009754953459 0.0008523519770935854 5.280225381722086e-07 1.6735891934437148 0.001036769829282279 1.1080186905506395 0.0012186768823191083']
['59866.39995960932 2.777119978765988 0.0006401321819405208 0.3180984332852848 0.0001973252446427494 0.0008508729083553038 5.278199677598506e-07 1.6706850487672522 0.0010363720832077174 1.106434929998736 0.0012181281973619345']
['59866.39999114728 2.7781347917242716 0.0006402001382791485 0.31827924094833115 0.00019733634906670474 0.0008513565458901394 5.278496706835931e-07 1.671634668846277 0.0010364304047621048 1.1065001228779945 0.001218213528478477']
['59866.400022685244 2.7810426317571006 0.0006404371540062741 0.31886082890082257 0.00019744245013265975 0.0008529122197973949 5.281334775594596e-07 1.6746892274202867 0.0010369876582597677 1.106353404336814 0.0012188121888193984']
['59866.4000542232 2.7821133109779055 0.0006405193951050172 0.3190028634767299 0.00019744831606381824 0.0008532921442485817 5.281491681802951e-07 1.6754352073357663 0.0010370184667217346 1.1066781036421391 0.0012188816168224026']
['59866.40008576117 2.782280566042444 0.0006405337257130283 0.31918790356697013 0.0001974850158027367 0.0008537871029886137 5.282473353207834e-07 1.676407056549213 0.0010372112174513483 1.105873509493231 0.001219053142148742']
['59866.400117299134 2.781340313599738 0.0006405013105613564 0.31928150518486 0.00019750485194826948 0.0008540374754284215 5.283003944907571e-07 1.676898661685189 0.00103731539888797 1.1044416519145488 0.0012191247539119709']
['59866.40014883709 2.7751436777187175 0.0006399617774693529 0.3179235498877996 0.00019728433926316424 0.0008504051174784218 5.27710551064724e-07 1.6697665435283593 0.001036157244029224 1.1053771341903582 0.0012178558662567463']
['59866.40018037506 2.777030315220295 0.0006401438986220626 0.3179419826854488 0.00019727880879204257 0.0008504544228710417 5.276957577568813e-07 1.6698633544403825 0.0010361281974371984 1.1071669607799126 0.0012179268666334246']
['59866.400211913024 2.779004895333854 0.0006403376552514453 0.31811599085729175 0.0001973466840187638 0.0008509198726304902 5.278773153677413e-07 1.670777262905944 0.0010364846849724991 1.1082276324279101 0.001218331980584709']
['59866.40024345098 2.7814136984539273 0.000640449127561207 0.31902511545577544 0.00019745626259536848 0.0008533516654663745 5.28170424142928e-07 1.6755520769736105 0.0010370602027067672 1.1058616214803167 0.0012188802029043347']
['59866.40027498895 2.77574090526275 0.0006400050775895754 0.31809963362784166 0.0001973246415277949 0.0008508761191191916 5.27818354503947e-07 1.670691353087404 0.0010363689155871581 1.105049552175346 0.0012180587130905228']
['59866.400306526906 2.7804677340200765 0.0006404230384966733 0.31880321399646916 0.000197407409399283 0.0008527581072457376 5.280397480480903e-07 1.6743866281327164 0.0010368036207945538 1.10608110588736 0.0012186481921908424']
['59866.40033806487 2.7804660109593105 0.0006404269170343749 0.3186493557411221 0.00019740326345099073 0.0008523465559537378 5.280286581629724e-07 1.6735785490605153 0.001036781845856044 1.1068874618987952 0.0012186317048061813']
['59866.40036960284 2.7807899452399294 0.000640412134936158 0.31902132885965306 0.00019747275177459648 0.0008533415368026709 5.28214530603124e-07 1.6755321893889343 0.0010371468055388473 1.105257755850995 0.001218934452221662']
['59866.400401140796 2.778683751607473 0.0006402539576719671 0.3181909910348791 0.00019733050831839645 0.0008511204885799994 5.278340474236835e-07 1.671171171401676 0.0010363997285630067 1.1075125802057972 0.0012182157147566646']
['59866.40043267876 2.7819164872916113 0.0006405088475929488 0.3193211588004389 0.0001975089485412487 0.0008541435438138139 5.28311352356681e-07 1.6771069264728933 0.0010373369146073985 1.104809560818718 0.0012191470207698679']
['59866.40046421673 2.7824835314794623 0.0006405132697862911 0.3192035195452392 0.00019749355828094732 0.000853828873747147 5.282701853650435e-07 1.6764890732418025 0.0010372560834083367 1.1059944582376597 0.001219080568026547']
['59866.400495754686 2.7817309177601635 0.000640513911074405 0.31896622729409 0.00019745769588379083 0.0008531941471130665 5.281742580074203e-07 1.6752427904101368 0.0010370677304820948 1.1064881273500267 0.0012189206487245646']
['59866.40052729265 2.776661351813364 0.0006401089254241796 0.31797112658073196 0.00019729745530428977 0.0008505323790894495 5.277456348089077e-07 1.6700164211172897 0.0010362261307998413 1.1066449306960744 0.0012179918023369895']
['59866.40055883061 2.781263759666704 0.0006404435781857584 0.3192579016706711 0.00019749494473808013 0.0008539743390257744 5.282738939617841e-07 1.6767746936484826 0.001037263365221009 1.1044890660182212 0.0012190501489557312']
['59866.400590368576 2.7771046163464383 0.0006401372550407703 0.3181212011239026 0.0001973179030972444 0.0008509338094319346 5.278003300580513e-07 1.670804627751589 0.0010363335246704013 1.1062999885948492 0.0012180980583052046']
['59866.40062190654 2.778310533594342 0.0006402899974127423 0.31820509208407255 0.00019734386704882786 0.000851158207095662 5.278697803309372e-07 1.6712452315339947 0.0010364698899623314 1.1070653020603471 0.0012182943460368422']
['59866.4006534445 2.778112139390868 0.0006402026069169765 0.31841533156533697 0.00019735888217671538 0.0008517205710061881 5.27909943891012e-07 1.6723494304902153 0.001036548750928127 1.1057627089006525 0.0012183155137130747']
['59866.400684982465 2.7811561796822075 0.0006404487031797299 0.31862395205338434 0.0001973960137533361 0.0008522786043154819 5.280092661425076e-07 1.6734451263308001 0.0010367437697128999 1.1077110533514074 0.0012186107604330073']
['59866.40071652043 2.782095357309623 0.0006405306472625587 0.3192284729570344 0.00019747789257902653 0.0008538956209544447 5.28228281602057e-07 1.6766201310768614 0.0010371738055621144 1.1054752262327618 0.0012190196934532235']
['59866.40074805839 2.7812890933256424 0.000640479072380583 0.3190367689258894 0.00019747217580437794 0.0008533828370188587 5.282129899559416e-07 1.675613282173789 0.0010371437804851784 1.1056758111518534 0.0012189670477730642']
['59866.400779596355 2.7775576222701686 0.0006401789452134129 0.3186928498248699 0.00019744053735200117 0.0008524628971037163 5.281283611141342e-07 1.6738069843743169 0.0010369776121428634 1.1037506378958517 0.0012186679818474238']
['59866.400811134314 2.7820518934006215 0.0006405139723042273 0.3187942451360072 0.00019739823583047903 0.0008527341166831086 5.280152099166458e-07 1.674339522773147 0.0010367554402861293 1.1077123706274745 0.0012186549928834766']
['59866.40084267228 2.7753079094892223 0.000639976055524987 0.3178724684073864 0.00019728776781585808 0.0008502684810060149 5.277197220077304e-07 1.6694982584421556 0.0010361752511337085 1.1058096510470667 0.001217878689651529']
['59866.400874210245 2.7766592173010975 0.0006400688479050172 0.31778198334959645 0.0001972647016778641 0.0008500264449686497 5.276580230181542e-07 1.6690230217940991 0.001036054105450967 1.1076361955069984 0.0012178243877835012']
['59866.4009057482 2.779982721273311 0.0006403881145908227 0.31862927371440386 0.00019740867606254757 0.0008522928390828217 5.280431362114481e-07 1.6734730762311127 0.0010368102734377499 1.106509645042198 0.001218635499407124']
['59866.40093728617 2.7754904844649597 0.000639995825143301 0.3176222022407975 0.00019722310529974324 0.0008495990507959093 5.275467579897062e-07 1.6681838352983063 0.0010358356370784836 1.1073066491666534 0.0012176001491633625']
['59866.400968824135 2.7787955928086845 0.0006402886112330785 0.3185033975421716 0.00019739000202153523 0.0008519561363092377 5.279931855234714e-07 1.6728119618811537 0.0010367121954912564 1.1059836309275308 0.0012184997669080965']
['59866.40100036209 2.7748354598480685 0.000639944183627565 0.3178895701956706 0.00019727035942204024 0.0008503142261176307 5.276731567652531e-07 1.6695880787587742 0.0010360838204939089 1.1052473810892942 0.0012177841521583393']
['59866.40103190006 2.7783728109769266 0.000640236594135622 0.3181082873270451 0.00019730512668267707 0.0008508992666654816 5.27766154771776e-07 1.6707368031882621 0.0010362664216527157 1.1076360077886644 0.001218093179159667']
['59866.40106343802 2.7792605212163113 0.0006403189822987824 0.3187308247781185 0.0001974387532777718 0.0008525644752805767 5.281235889421603e-07 1.6740064326581854 0.0010369682420051042 1.105254088558126 0.0012187335779485625']
['59866.40109497598 2.777876771577282 0.000640266254750847 0.3180297225071094 0.0001973223178064564 0.0008506891157504247 5.278121388444951e-07 1.6703241728314573 0.0010363567111683636 1.1075525987458248 0.0012181855810000312']
['59866.40112651395 2.781537152846715 0.0006404689280731891 0.31896680773840747 0.00019745312879619565 0.0008531956997278953 5.281620416281547e-07 1.6752458389622242 0.0010370437436774984 1.1062913138844908 0.0012188766033228552']
['59866.40115805191 2.7817587326742954 0.000640480852302062 0.3191504424216182 0.00019747947226769533 0.0008536868991826197 5.282325070686147e-07 1.6762103068362304 0.001037182102246299 1.105548425838065 0.0012190005887552425']
['59866.40118958987 2.7812777099215866 0.0006405191196682006 0.3186709534111661 0.00019739907944666153 0.0008524043269780533 5.28017466482789e-07 1.6736919822015026 0.0010367598710433904 1.107585727720084 0.0012186614677039862']
['59866.40122112784 2.7763201334947696 0.000640063828419548 0.3181303534435456 0.00019733375336764732 0.0008509582907245724 5.27842727518286e-07 1.6708526966572776 0.001036416771888904 1.105467436837492 0.0012181303007083048']
['59866.4012526658 2.781987103806766 0.0006405098056160535 0.3186739249667612 0.00019738150061102293 0.0008524122755118623 5.279704453300884e-07 1.6737075891111408 0.0010366675452259607 1.108279514695625 0.0012185780280372423']
['59866.40128420376 2.776152834471127 0.0006400761971035306 0.31791544091711765 0.0001972569872667822 0.0008503834270117425 5.276373879482932e-07 1.6697239543966265 0.0010360135885860411 1.1064288800745006 0.0012177937813248369']
['59866.40131574172 2.7815240287026213 0.0006405363178704534 0.31896551896610353 0.00019744615819989103 0.0008531922524256651 5.281433961683534e-07 1.6752390702001236 0.0010370071334027892 1.1062849585024976 0.0012188808675335373']
['59866.40134727969 2.7809307103028376 0.0006404231190589938 0.31885479727781335 0.00019743929679365727 0.0008528960859719027 5.281250427781237e-07 1.6746575487280113 0.001036971096605343 1.1062731615748262 0.001218790723061239']
['59866.40137881765 2.7816246939828586 0.0006405195650954608 0.3190014302453416 0.00019746225756093913 0.0008532883105366482 5.281864599144277e-07 1.6754276798599874 0.0010370916888704786 1.1061970141228712 0.0012189440037976723']
['59866.40141035561 2.781037499986086 0.0006404634267696868 0.3189789299735218 0.0001974406068442045 0.000853228125167219 5.281285469969521e-07 1.6753095061634549 0.0010369779771229228 1.105727993822631 0.0012188177575287943']
['59866.40144189358 2.775576349394526 0.0006399773995605687 0.31792740817015497 0.00019727359055644712 0.000850415437893694 5.276817996394152e-07 1.6697868076163602 0.0010361007907376426 1.1057895417781656 0.001217816045433577']
['59866.40147343154 2.7822151154266828 0.0006405708781811721 0.31889883341356773 0.00019745156534131021 0.0008530138770421544 5.281578595849056e-07 1.674888830953612 0.0010370355322547806 1.1073262844730707 0.0012189231908257198']
['59866.4015049695 2.7756149223264925 0.000640022865886292 0.31797117657223517 0.00019730644079861442 0.0008505325128103714 5.277696698650067e-07 1.670016683677706 0.0010362733235221347 1.1055982386487866 0.0012179867281300373']
['59866.40153650747 2.776986729945265 0.000640112813413625 0.31802595444169124 0.0001972964112853757 0.0008506790366540013 5.2774284219091e-07 1.670304382571908 0.0010362206475072254 1.1066823473733571 0.0012179891806648364']
['59866.401568045425 2.7823535185524237 0.0006405289254141579 0.31900118415440304 0.00019744666302155188 0.0008532876522746427 5.281447465021803e-07 1.6754263873655622 0.0010370097847770582 1.1069271311868616 0.0012188792384873804']
['59866.40159958339 2.7764026201543945 0.0006400829077102324 0.3181973998577307 0.0001973461470735011 0.000851137631367163 5.278758791073593e-07 1.6712048311855605 0.0010364818648818336 1.105197788968834 0.0012181957088135344']
['59866.401631121356 2.781704144472183 0.0006405081995656028 0.3189406911620507 0.0001974490784026655 0.0008531258412031252 5.281512073398892e-07 1.6751086720695942 0.0010370224706022348 1.1065954724025888 0.0012188791401302808']
['59866.401662659315 2.7775311300974317 0.0006401936215131144 0.3181904616956406 0.00019733372658540957 0.0008511190726647661 5.278426558792017e-07 1.6711683912586166 0.0010364166312258906 1.106362738838815 0.0012181983855299187']
['59866.40169419728 2.7816450785363136 0.0006404540157565755 0.31916727127919087 0.0001975064107240098 0.0008537319142392462 5.283045640178872e-07 1.6762986936932296 0.0010373235857353458 1.105346384843084 0.001219106873010549']
['59866.401725735246 2.7821227413297205 0.0006405454596245796 0.3192009419280379 0.00019749932583270184 0.0008538219789485086 5.282856128334682e-07 1.6764755353363334 0.0010372863751717536 1.105647205993387 0.0012191232546230179']
['59866.401757273205 2.7786256637593665 0.0006403126307743517 0.3182171136931211 0.00019733152525578524 0.00085119036337304 5.278367676020404e-07 1.6713083702369806 0.0010364050696207207 1.1073172935223858 0.0012182510962296328']
['59866.40178881117 2.781491126870847 0.0006405005110590734 0.31896496963873194 0.00019744969997244967 0.0008531907830447144 5.281528699601183e-07 1.6752361850773738 0.0010370257351494207 1.1062549417934733 0.0012188778774057435']
['59866.40182034913 2.7822090934595063 0.0006405325060467293 0.31901904217181576 0.00019744089696568947 0.0008533354202031311 5.28129323035077e-07 1.6755201794738224 0.001036979500870218 1.106688913985684 0.0012188553550473288']
['59866.401851887094 2.7829058864196243 0.0006406042236506099 0.3190951260386229 0.00019747757990711633 0.0008535389348836673 5.282274452444086e-07 1.6759197796146161 0.0010371721633777118 1.1069861068050082 0.0012190569584086723']
['59866.40188342506 2.781725079224332 0.0006405175793394964 0.3187822331821386 0.00019742685205624335 0.0008527019862321106 5.280917546861085e-07 1.6742764347801398 0.0010369057355895134 1.1074486444441924 0.0012187847529163457']
['59866.40191496302 2.7749475579855325 0.0006399275918271737 0.31790561961190633 0.00019728729504679094 0.0008503571562676754 5.277184574105206e-07 1.669672371911273 0.0010361727681028937 1.1052751860742596 0.0012178511108258427']
['59866.401946500984 2.7755608665068343 0.0006400326415576033 0.3178309386430028 0.0001972678794264273 0.0008501573941608537 5.276665230919649e-07 1.6692801399317376 0.0010360707953068662 1.1062807265750967 0.001217819557712474']
['59866.40197803895 2.7751803615170574 0.000640003099074395 0.31765761543518845 0.00019721041897564583 0.0008496937765931865 5.275128236839958e-07 1.668369828966326 0.0010357690072250307 1.1068105325507314 0.001217547289904074']
['59866.40200957691 2.7821096370884186 0.0006405918916476874 0.31877771474484556 0.0001974194018329899 0.0008526898999862243 5.28071826285135e-07 1.6742527034918362 0.0010368666062657034 1.1078569335965824 0.001218790519668462']
['59866.402041114874 2.782601299491221 0.0006405882526648416 0.3189687715520072 0.00019744223526482215 0.0008532009526798567 5.281329028152837e-07 1.6752561531092816 0.0010369865297522173 1.1073451463819393 0.001218890631820485']
['59866.40207265283 2.7807437469746157 0.0006404213607289952 0.3188177851501755 0.00019742126533895445 0.0008527970832312656 5.280768109269121e-07 1.6744631573013422 0.0010368763935869457 1.1062805896732735 0.0012187092248997907']
['59866.4021041908 2.7768327965658757 0.0006401166716708388 0.3180863426772727 0.0001973121667785787 0.0008508405675144615 5.277849861341725e-07 1.6706215476747517 0.0010363033969463169 1.106211248891124 0.0012180616092273117']
['59866.402135728764 2.7820198674693457 0.0006405104812778168 0.3190704798780201 0.00019746802313526653 0.0008534730095342862 5.28201882093486e-07 1.6757903354938033 0.0010371219702482485 1.1062295319755424 0.001218964994492602']
['59866.40216726672 2.782980144624265 0.000640616132857485 0.31927035698994644 0.00019752642175080583 0.000854007655422925 5.28358090973029e-07 1.6768401102413153 0.0010374286856659972 1.1061400343829495 0.0012192814718185287']
['59866.40219880469 2.7787852048555863 0.0006403030148792594 0.3181147467606542 0.0001973247440773807 0.0008509165448299937 5.278186288110645e-07 1.6707707287849487 0.001036369454187924 1.1080144760706376 0.0012182157429770986']
['59866.402230342654 2.782508772423731 0.0006405360822339031 0.31951059220638045 0.00019756602214466838 0.0008546502541153658 5.284640169970896e-07 1.6781018498234268 0.0010376366709278803 1.1044069226003044 0.0012194163905319018']
['59866.40226188061 2.779018862212682 0.0006403054010924345 0.3183850918829077 0.00019736205081540142 0.0008516396836963369 5.279184195970583e-07 1.672190608628717 0.0010365653929380327 1.1068282535839649 0.00121838369182492']
['59866.40229341858 2.7771025667292735 0.0006401042653438928 0.3181962539935166 0.0001973391868726969 0.0008511345663259228 5.278572614542013e-07 1.6711988129911586 0.001036445309205341 1.105903753738115 0.0012181758286410051']
['59866.402324956536 2.778988376437126 0.0006402691770313112 0.31846838006451905 0.00019737393261901325 0.0008518624690039769 5.279502019126495e-07 1.672628046557348 0.0010366277973687672 1.106360329879778 0.001218417748284214']
['59866.4023564945 2.7810644616290063 0.0006404297841584539 0.31881255655976504 0.00019741676839677281 0.0008527830974159844 5.280647821777186e-07 1.6744356962172535 0.0010368527751931345 1.1066287654117528 0.001218693556995748']
['59866.40238803247 2.7775571362512004 0.0006401809889945433 0.31822208986778044 0.0001973488646857588 0.0008512036740082454 5.278831483749933e-07 1.6713345056080906 0.001036496138055456 1.1062226306431098 0.001218259390636455']
['59866.402419570426 2.782222858312362 0.000640586888855792 0.3187220390784683 0.00019739087721170728 0.0008525409746498566 5.279955265460265e-07 1.67396028927767 0.0010367167920782947 1.1082625690346921 0.001218660440463648']
['59866.40245110839 2.7759935567220566 0.0006400340599853277 0.31797547153852157 0.00019728507034234055 0.0008505440012996973 5.277125066086685e-07 1.6700392412737477 0.0010361610837307802 1.105954315448309 0.0012178971177318086']
['59866.40248264636 2.7818963447303546 0.0006405253858778596 0.3190446636474562 0.00019745564829675203 0.0008534039543963662 5.281687809721492e-07 1.6756547460475644 0.0010370569763484877 1.1062415986827903 0.0012189175288537977']
['59866.402514184316 2.775483788720959 0.0006399897459311467 0.31757527688007503 0.00019722219501771472 0.0008494735314158193 5.27544323100892e-07 1.6679373785718228 0.0010358308561854766 1.1075464101491364 0.0012175928866098682']
['59866.40254572228 2.782514874978058 0.0006405291442343354 0.3190190276824476 0.00019745811024587465 0.0008533353814459115 5.281753663733677e-07 1.6755201033741998 0.0010370699067535434 1.1069947716038582 0.0012189305050360226']
['59866.40257726024 2.7811853088356617 0.0006404115386255208 0.31925627734304807 0.00019750823978962503 0.0008539699941556836 5.283094565361041e-07 1.6767661625160089 0.0010373331921724005 1.1044191463196529 0.0012190927324807121']
['59866.402608798206 2.7784445364510137 0.0006402445483447062 0.31821723707143534 0.0001973161823395469 0.0008511906933943607 5.277957272497585e-07 1.6713090182323287 0.001036324487077452 1.107135518218685 0.0012181467580720563']
['59866.40264033617 2.7810404581624537 0.0006404182314313069 0.3187872975477616 0.00019742283024445394 0.000852715532766943 5.280809968503695e-07 1.674303033339084 0.0010368846126284346 1.1067374248233697 0.0012187145732513508']
['59866.40267187413 2.77507079397936 0.0006399567857563002 0.3176215036305655 0.00019722786841377369 0.000849597182102267 5.275594987147895e-07 1.6681801661269198 0.0010358606534336854 1.1068906278524402 0.0012176009120264313']
['59866.402703412095 2.7763040653773707 0.0006400479185243868 0.31825582418140097 0.00019735372445030342 0.0008512939090126911 5.278961476279267e-07 1.671511681625005 0.0010365216620289047 1.1047923837523657 0.001218211186068558']
['59866.40273495006 2.778505503031541 0.0006402299780518913 0.3183395011818479 0.00019735061949548591 0.0008515177343613337 5.278878422681404e-07 1.6719511616693692 0.0010365053544930984 1.1065543413621717 0.0012182929757202036']
['59866.40276648802 2.781243643856657 0.0006404743173055432 0.31867850438784007 0.0001974038462040384 0.0008524245248816304 5.280302169533612e-07 1.6737316406924374 0.001036784906533815 1.1075120031642194 0.0012186592196115915']
['59866.402798025985 2.7816494337766855 0.0006405051562558025 0.3187782244644967 0.0001974381349192513 0.0008526912634215533 5.281219349116537e-07 1.6742553805908442 0.0010369649943237989 1.1073940531858413 0.001218828640393401']
['59866.402829563944 2.7818462360250855 0.0006405411803435617 0.31915948139104927 0.0001974974436661782 0.0008537110772778366 5.282805782770655e-07 1.6762577804151748 0.0010372764898433728 1.1055884556099107 0.0012191125953322408']
['59866.40286110191 2.782340649981097 0.0006405260737571165 0.3191465380602 0.0001974826434889736 0.0008536764555117066 5.282409896827672e-07 1.6761898007363447 0.0010371987578202395 1.1061508492447523 0.0012190385204687156']
['59866.402892639875 2.775398773675988 0.0006400622160775924 0.3174838794221412 0.00019722308804353308 0.0008492290548239503 5.275467118315357e-07 1.6674573499062038 0.0010358355464471277 1.1079414237697844 0.0012176349698220638']
['59866.40292417783 2.7775439757066485 0.000640132739722968 0.3182814209811863 0.00019735630297721703 0.0008513623772011477 5.2790304485993e-07 1.6716461185986675 0.0010365352047122744 1.105897857107981 0.0012182672757129896']
['59866.4029557158 2.781239828631514 0.000640429140004329 0.3189962414674561 0.0001974551391917973 0.0008532744312148148 5.28167419181055e-07 1.6754004278752948 0.0010370543024779272 1.1058394007562191 0.0012188646806166239']
['59866.402987253765 2.7780843951127556 0.0006402376375704679 0.3181700656624312 0.00019731779156852733 0.0008510645158663672 5.278000317328981e-07 1.6710612692354583 0.0010363329389103328 1.1070231258772973 0.0012181503161894027']
['59866.40301879172 2.7755511501307266 0.000639995302765707 0.3176834474940837 0.00019725141423856507 0.0008497628740698827 5.276224808056252e-07 1.6685055015445576 0.0010359843184798586 1.107045648586169 0.0012177263632271193']
['59866.40305032969 2.775604613753261 0.0006400307865144637 0.31780603527633877 0.0001972604734304737 0.0008500907808179258 5.276467129934013e-07 1.6691493449387542 0.0010360318982692946 1.1064552688145068 0.0012177854909292529']
['59866.40308186765 2.776784039798601 0.000640092776253051 0.3184176072134013 0.00019735040373423325 0.0008517266580757373 5.278872651341927e-07 1.672361382423326 0.001036504221293242 1.104422657375275 0.001218219915684376']
['59866.40311340561 2.782811722305642 0.0006406158067205758 0.31906436615650186 0.00019745641711460524 0.0008534566561057094 5.281708374622613e-07 1.6757582256118795 0.0010370610142573806 1.1070534966937626 0.0012189684815912187']
['59866.40314494358 2.781899409313381 0.0006405116682988744 0.318973716342711 0.00019744610239137667 0.0008532141793669671 5.281432468876655e-07 1.6752821236486923 0.0010370068402908439 1.1066172856646888 0.0012188676646941647']
['59866.40317648154 2.776076703266494 0.0006400573108103965 0.31795825024754176 0.00019728867396817744 0.0008504979365335484 5.277221458500971e-07 1.669948793316921 0.0010361800103370665 1.106127909949573 0.0012179254389920427']
['59866.4032080195 2.777396473646018 0.0006401475332379475 0.3179633229994352 0.00019727376438604188 0.0008505115055005891 5.276822646115037e-07 1.6699754359214034 0.0010361017037082032 1.1074210377246145 0.0012179062380732232']
['59866.40323955747 2.776344395244618 0.0006401087161646206 0.3180477161665961 0.00019732112268677516 0.0008507372465042334 5.278089420511361e-07 1.670418677345568 0.0010363504342792813 1.1059257178990498 0.0012180974473090295']
['59866.40327109543 2.7756791659395583 0.0006399770001445009 0.3182023734169644 0.00019733255636015037 0.000851150935006437 5.278395256752599e-07 1.6712309528201914 0.0010364104850848234 1.104448213119367 0.0012180793300551954']
['59866.40330263339 2.781215452002031 0.0006404584553946535 0.31895184806948174 0.0001974390272720593 0.0008531556845134995 5.281243218420802e-07 1.6751672692724882 0.0010369696810507319 1.1060481827295428 0.0012188080868229263']
['59866.40333417135 2.7813861143766427 0.0006404993931834774 0.31883096856520143 0.00019743622644012584 0.0008528323471920757 5.281168299723831e-07 1.6745323979264781 0.0010369549707989804 1.1068537164501646 0.0012188170839519427']
['59866.40336570932 2.7780982988519805 0.000640190394807085 0.3183466814018737 0.0001973589930413937 0.0008515369405379656 5.27910240439946e-07 1.671988872909001 0.0010365493332005972 1.1061094259429796 0.0012183095919190057']
['59866.40339724728 2.782026590757515 0.0006406102785604418 0.3184262591595495 0.00019737343247231407 0.0008517498009328272 5.279488640837512e-07 1.6724068233169616 0.0010366251705478681 1.1096197674405535 0.001218594794511565']
['59866.40342878524 2.7822240199142785 0.0006405648512463789 0.319354418414858 0.00019752516598234464 0.0008542325090581859 5.283547319518864e-07 1.6772816093217333 0.0010374220902434068 1.1049424105925452 0.001219248917152398']
['59866.40346032321 2.7793187815321603 0.0006403380489817326 0.31837513976330134 0.00019735258039629318 0.0008516130630403774 5.27893087428752e-07 1.6721383390929694 0.001036515653341876 1.107180442439191 0.0012183585336822934']
['59866.40349186117 2.7816886327398116 0.0006405215128443138 0.31877371557631695 0.0001974188958326132 0.0008526792027183321 5.280704727983928e-07 1.6742316994554463 0.0010368639487006999 1.1074569332843653 0.0012187512693456264']
['59866.40352339913 2.781556356712999 0.0006404941024425248 0.3189447790850183 0.00019744295718140774 0.0008531367758778692 5.281348338504619e-07 1.6751301422532474 0.001036990321330923 1.1064262144597514 0.0012188443796472405']
['59866.4035549371 2.7757417494133385 0.0006400264874952099 0.31802624901760906 0.00019730078698517099 0.0008506798246071683 5.277545466321186e-07 1.6703059297143334 0.0010362436291237974 1.105435819699005 0.0012179633670989921']
['59866.403586475055 2.7790431338867956 0.000640318729265202 0.31826689226340577 0.0001973557723786726 0.0008513235147263316 5.279016255762132e-07 1.6715698123078035 0.0010365324179552134 1.107473321578992 0.0012183626424508772']
['59866.40361801302 2.7768974040786976 0.0006401505541220988 0.3181359549037719 0.00019732203609785847 0.0008509732739192538 5.278113853097745e-07 1.670882116091239 0.0010363552316063995 1.1060152879874585 0.001218123515092285']
['59866.403649550986 2.776073614464819 0.0006400318566947493 0.3181534043393669 0.00019733159357100775 0.0008510199489432724 5.278369503365842e-07 1.670973762286591 0.0010364054284191582 1.1050998521782278 0.0012181038501050832']
['59866.403681088945 2.782196067316856 0.0006405602693462239 0.3187025787075948 0.00019738693090751042 0.0008524889206293705 5.279849706835076e-07 1.6738580814474515 0.001036696065690706 1.1083379858694045 0.0012186288160401819']
['59866.40371262691 2.775140675683609 0.0006399643004690536 0.31782091529690215 0.00019725896726609826 0.0008501305829830681 5.276426841949901e-07 1.6692274963072593 0.0010360239877421128 1.1059131793763497 0.0012177438191392782']
['59866.403744164876 2.7761619351861118 0.0006400727742633345 0.3178186413000752 0.0001972750300632509 0.0008501245003303692 5.27685650137288e-07 1.6692155530466135 0.0010361083511725361 1.1069463821394983 0.0012178726007767123']
['59866.403775702835 2.7772533917364446 0.0006401734343903568 0.318120000479605 0.0001973157651786798 0.0008509305978609286 5.277946113974213e-07 1.6707983218466649 0.0010363222961065116 1.1064550698897797 0.0012181075188613757']
['59866.4038072408 2.775742113599618 0.0006400330621860058 0.31790828881469846 0.00019728991237377615 0.0008503642960461372 5.277254584277876e-07 1.6696863908335005 0.0010361865145681521 1.1060557227661174 0.001217918229465382']
['59866.40383877876 2.778687770638495 0.0006402769683207089 0.3181724187377588 0.0001973122074116568 0.0008510708100440118 5.277850948224957e-07 1.6710736278243636 0.0010363036103553404 1.1076141428141313 0.0012181460376315604']
['59866.403870316724 2.7801541924096194 0.0006403590695386676 0.31882089050491375 0.00019742407535155526 0.000852805389660789 5.280843273537283e-07 1.6744794669375722 0.0010368911520564877 1.1056747254720471 0.00121868904941066']
['59866.40390185469 2.7821890554311235 0.0006405451577376412 0.3187477322643893 0.00019740830857190833 0.0008526097006589844 5.28042153220662e-07 1.6740952324810363 0.0010368083433398548 1.1080938229500872 0.0012187163902730913']
['59866.40393339265 2.776889735572074 0.0006401338333431677 0.3180326250596222 0.00019729569488817546 0.0008506968797097524 5.277409259193868e-07 1.6703394173299488 0.001036216884916888 1.1065503182421252 0.001217997026752314']
['59866.403964930614 2.7779167629244075 0.0006402016636805995 0.31843089211846937 0.00019738156648781653 0.0008517621935095203 5.279706215421445e-07 1.672431156084398 0.0010366678912175238 1.1054856068400094 0.0012184163848458355']
['59866.40399646858 2.782100128839498 0.0006405311280126187 0.3190771914358222 0.00019746844268928504 0.000853490962098993 5.282030043471993e-07 1.6758255852721755 0.001037124173788262 1.1062745435673225 0.0012189777183398813']
['59866.40402800654 2.778722894750834 0.0006402961793627957 0.31840313983968616 0.00019738096191512187 0.0008516879596885049 5.279690043869712e-07 1.6722853983176793 0.0010366647159407662 1.1064374964331547 0.001218463348067205']
['59866.404059544504 2.7788173677604577 0.0006402809538370105 0.3184016907711703 0.00019737598516138328 0.0008516840836142668 5.279556922028023e-07 1.6722777876637098 0.0010366385775282736 1.106539580096748 0.0012184331086548307']
['59866.40409108246 2.7809899565310907 0.0006404164928107771 0.3187024434009462 0.0001973997612093174 0.0008524885587012705 5.28019290111305e-07 1.6738573708032891 0.0010367634517296084 1.1071325857278016 0.0012186105772995523']
['59866.40412262043 2.775892618214983 0.00064002345580293 0.3180639209884852 0.0001973172568012361 0.0008507805923446632 5.277986012983131e-07 1.6705037867042292 0.001036330130258593 1.1053888315107538 0.0012180353701185026']
['59866.404154158394 2.77609897110994 0.0006401162316041346 0.31785877279538943 0.00019728097500858137 0.0008502318469833597 5.277015521109982e-07 1.6694263277068775 0.001036139574624902 1.1066726434030627 0.001217922004098354']
['59866.40418569635 2.776362011879879 0.0006400929481615025 0.317859849984481 0.00019726737055097575 0.0008502347283273693 5.276651619147626e-07 1.6694319852126107 0.0010360681226416794 1.1069300266672684 0.001217848979570266']
['59866.40421723432 2.782329809026264 0.0006405728902325382 0.3189776436007585 0.00019745314586294287 0.0008532246842834553 5.281620872795359e-07 1.6753027500039837 0.0010370438333137757 1.1070270590222804 0.0012189313105811163']
['59866.40424877228 2.7822198738743555 0.0006405957709884614 0.3191520793910696 0.0001975164245741285 0.0008536912778679958 5.283313497951271e-07 1.6762189043648617 0.001037376179485969 1.106000969509494 0.0012192260986269967']
['59866.40428031024 2.7760998016241807 0.0006400941628377054 0.31790329615226715 0.00019726962838051185 0.0008503509413082358 5.276712013220118e-07 1.6696601688669495 0.0010360799809900833 1.1064396327572312 0.0012178597063321021']
['59866.40431184821 2.777706068788902 0.0006401818957470789 0.3183638903102229 0.0001973642863662464 0.0008515829721821502 5.279243994116384e-07 1.6720792558310027 0.0010365771342765043 1.1056268129578992 0.00121832877949559']
['59866.404343386166 2.781956688822967 0.0006404944254653118 0.3191906042368629 0.00019747512936085437 0.0008537943269375732 5.282208903443941e-07 1.6764212407398262 0.00103715929286163 1.105535448083141 0.0012189883132423282']
['59866.40437492413 2.7774335392403886 0.0006401570545774987 0.3184078323216314 0.00019737336584327886 0.0008517005114817311 5.279486858595443e-07 1.6723100437060474 0.0010366248206054563 1.1051234955343412 0.001218356299782881']
['59866.4044064621 2.779145846804846 0.0006403290585852136 0.3183187295601202 0.00019737012389547893 0.0008514621729113505 5.279400140609291e-07 1.671842067017438 0.001036607793568692 1.107303779787408 0.0012184321979314145']
['59866.404438000056 2.7818466470672893 0.0006405498899997225 0.31902030332964826 0.000197466226520276 0.0008533387936401573 5.281970763765688e-07 1.6755268032019341 0.0010371125342451472 1.1063198438653552 0.0012189776742283053']
['59866.40446953802 2.7821824246864986 0.0006405257029434341 0.319123886867444 0.00019746108344121044 0.0008536158664479411 5.281833192932747e-07 1.676070834387836 0.001037085522275265 1.1061115902986625 0.001218941982476664']
['59866.40450107599 2.776806252547527 0.0006401457314313591 0.3179463487574551 0.00019728838092521363 0.0008504661015591374 5.277213619973874e-07 1.6698862854908356 0.00103617847124587 1.1069199670566914 0.0012179705997039576']
['59866.404532613946 2.782105436972939 0.0006405872612653212 0.3190488711528161 0.00019745637500104138 0.0008534152089388218 5.281707248138267e-07 1.6756768442900005 0.0010370607930726963 1.1064285926829387 0.0012189532918959506']
['59866.40456415191 2.7765072231430796 0.0006401204964064275 0.31774749055616625 0.0001972386353366236 0.0008499341811270453 5.275882988659399e-07 1.668841862164739 0.0010359172023982333 1.1076653609783407 0.001217735069768541']
['59866.40459568987 2.777018650463787 0.0006401427556871218 0.3180729481823038 0.00019730280812555582 0.0008508047389416125 5.277599529259493e-07 1.6705511984364698 0.0010362542443569107 1.106467452027317 0.0012180334997882506']
['59866.404627227836 2.7790540277493445 0.0006402869266647735 0.31832187961541375 0.0001973391518885117 0.0008514705989091821 5.278571678759492e-07 1.6718586114254925 0.0010364451254648726 1.107195416323852 0.0012182716636931668']
['59866.4046587658 2.776013143897594 0.00064001859473812 0.3180107292157226 0.0001973070380618081 0.0008506383111082432 5.277712674681932e-07 1.6702244181498038 0.0010362764604086561 1.1057887257477903 0.001217987152644744']
['59866.40469030376 2.776697850830728 0.0006400906339034143 0.31821993680256266 0.00019733625465548167 0.0008511979148322419 5.278494181455623e-07 1.671323197492451 0.0010364299089048409 1.1053746533382771 0.0012181555630063723']
['59866.404721841725 2.7769647157555815 0.0006400986436679739 0.31850523503004846 0.00019739775784791448 0.0008519610513559347 5.280139313739927e-07 1.6728216125527757 0.0010367529298735004 1.1041431032028057 0.0012184346150807056']
['59866.40475337969 2.782285443985292 0.0006405547084990933 0.31912388609957204 0.00019747368705357328 0.0008536158643939811 5.282170323556001e-07 1.6760708303548952 0.0010371517177183473 1.1062146136303967 0.0012190135438732732']
['59866.40478491765 2.7768043756906753 0.000640073956838871 0.31809840214451635 0.0001973259511485744 0.0008508728250577032 5.278218575732014e-07 1.670684885212796 0.001036375793847555 1.1061194904778793 0.0012181007578589377']
['59866.404816455615 2.7813700981920393 0.0006405119525334632 0.3187278326642784 0.00019740449384721769 0.0008525564717560735 5.280319493166107e-07 1.6739907177745716 0.0010367883080211013 1.1073793804174676 0.0012186818932713687']
['59866.404847993574 2.781790494056799 0.0006404537939581454 0.3190948683339032 0.0001974491070206621 0.0008535382455562724 5.281512838893955e-07 1.6759184261234414 0.0010370226209068388 1.1058720679333576 0.0012188506793155065']
['59866.40487953154 2.7792617806439903 0.0006403172926598373 0.31849929770028607 0.0001973776646191414 0.000851945169752902 5.279601845390026e-07 1.6727904290981412 0.0010366473982097763 1.106471351545849 0.0012184597094259302']
['59866.404911069505 2.782691315165912 0.0006406092534426793 0.3188589978954789 0.0001974178238093768 0.0008529073220906508 5.280676052723897e-07 1.6746796107955826 0.0010368583183265588 1.1080117043703293 0.0012187925942831153']
['59866.40494260746 2.7798991079767377 0.0006403681607899325 0.318219096295297 0.0001973288295241444 0.0008511956665820565 5.278295568622776e-07 1.6713187830635348 0.0010363909113663046 1.108580324913203 0.0012182682391477502']
['59866.40497414543 2.7775763110775804 0.0006401817807439936 0.31810285798741045 0.00019732120379049373 0.0008508847438715223 5.278091589932826e-07 1.6707082877490045 0.00103635086024419 1.106868023328576 0.0012181362066392342']
['59866.40500568339 2.781531171590837 0.0006405001682517217 0.31885555795968945 0.00019743688558026203 0.0008528981206993094 5.281185930885321e-07 1.674661543905932 0.0010369584326694436 1.1068696276849048 0.001218820436575771']
['59866.40503722135 2.7824015301070957 0.000640567466491599 0.3191770668866101 0.00019750409882518587 0.0008537581162449832 5.282983799821601e-07 1.6763501412111874 0.0010373114434095896 1.1060513888959083 0.001219156146584986']
['59866.40506875932 2.782173417694252 0.0006405552599680924 0.318906265441829 0.00019745849499237447 0.0008530337567738347 5.281763955213892e-07 1.6749278647154884 0.0010370719274809584 1.1072455529787635 0.0012189459478754014']
['59866.40510029728 2.778909964128994 0.000640268114325395 0.31815776875884927 0.00019731119393663428 0.0008510316232110765 5.277823839055287e-07 1.670996684657822 0.001036298287482323 1.1079132794711721 0.001218136855554659']
['59866.40513183524 2.776124646574 0.0006400612634092155 0.31783562918522756 0.0001972677836685772 0.0008501699407655739 5.276662669518778e-07 1.6693047751324979 0.0010360702923769812 1.106819871441502 0.0012178341724812638']
['59866.40516337321 2.7770312640073156 0.0006401000292046811 0.3182695227925407 0.0001973351059826914 0.0008513305510576724 5.278463455917376e-07 1.6715836281120837 0.0010364238759595138 1.1054476358952319 0.0012181553669572593']
['59866.40519491117 2.7763674545869783 0.0006400689793891923 0.31764675791345676 0.0001972199892741179 0.0008496647341015339 5.27538423016915e-07 1.668312804167315 0.001035819271397678 1.1080546504196633 0.0012176246800123343']
['59866.40522644913 2.78197610475058 0.0006405146858822284 0.319096407507236 0.00019746369144705704 0.000853542362649452 5.281902953776797e-07 1.675926510016996 0.0010370992197849635 1.106049594733584 0.0012189478473295689']
['59866.40525798709 2.7792552845189316 0.0006403580596722446 0.3181185509380799 0.00019732071738281972 0.0008509267205214507 5.278078579145317e-07 1.6707907087084028 0.0010363483055820363 1.1084645758105287 0.0012182266845993646']
['59866.40528952506 2.777588081346514 0.0006402072420281425 0.3182543361798036 0.00019735323211630474 0.0008512899287974045 5.2789483069701e-07 1.671503866490565 0.0010365190762410964 1.106084214855949 0.00121829270216848']
['59866.40532106302 2.7760751947814173 0.0006400520398846396 0.31782639702538285 0.00019727030845299536 0.0008501452459105369 5.276730204295314e-07 1.6692562868980194 0.0010360835527993453 1.1068189078833979 0.0012178406062132278']
['59866.40535260098 2.7787162014854525 0.0006402635814094919 0.318480101589369 0.00019738319548880042 0.0008518938225942366 5.279749789128821e-07 1.6726896091878627 0.00103667644689496 1.1060265922975898 0.001218456199141384']
['59866.40538413895 2.779249125367244 0.0006403579811991037 0.3183585834001906 0.00019738694791231534 0.0008515687768718277 5.27985016169201e-07 1.6720513834043624 0.0010366961550016562 1.1071977419628818 0.0012185225733980514']
['59866.40541567691 2.779653395079763 0.0006403824045848813 0.31838404111533614 0.00019737047998732903 0.0008516368730265377 5.27940966561402e-07 1.6721850898914714 0.001036609663798997 1.1074683051882914 0.001218461825082503']
['59866.40544721487 2.7829763561175067 0.0006406012915117005 0.31914274605865794 0.0001974779572373052 0.0008536663123891919 5.282284545547404e-07 1.6761698847618591 0.001037174145153914 1.1068064713556476 0.0012190571036921163']
['59866.40547875284 2.7765269108596398 0.0006401209938948715 0.3182314158828702 0.0001973419291714326 0.0008512286199141426 5.278645967550285e-07 1.6713834867797803 0.0010364597120348352 1.1051434240798594 0.001218196873044867']
['59866.405510290795 2.7779800745993377 0.0006402352376487088 0.3181775754066293 0.00019732175407959667 0.000851084603478308 5.278106309467425e-07 1.6711007111692717 0.0010363537504180498 1.106879363430066 0.0012181667601493056']
['59866.40554182876 2.7777185979240806 0.0006402152501375111 0.3180858117974803 0.0001972967734899077 0.0008508391474784423 5.277438110420307e-07 1.670618759440548 0.0010362225498419522 1.1070998384835327 0.0012180446376506868']
['59866.40557336673 2.7824447092476103 0.0006405899479014665 0.3192288084625227 0.00019748895802430973 0.0008538965183890145 5.282578802628021e-07 1.6766218931855186 0.001037231922396585 1.1058228160620918 0.0012191003002997409']
['59866.405604904685 2.778804424107922 0.000640282746584589 0.3183286572565186 0.00019734132870723766 0.0008514887282383307 5.278629905895701e-07 1.6718942082800348 0.0010364565583363323 1.1069102158278874 0.0012182791933265133']
['59866.40563644265 2.7763423829689353 0.0006400712988695675 0.31788097220652356 0.00019727287504301363 0.000850291227588666 5.276798857318558e-07 1.66954292125275 0.0010360970327889373 1.1067994617161854 0.0012178621962236184']
['59866.405667980616 2.7818785676713604 0.0006405661239008431 0.3189691521208887 0.00019745221385955195 0.0008532019706532799 5.28159594288836e-07 1.6752581518954242 0.001037038938337983 1.1066204157759363 0.0012189235901887046']
['59866.405699518575 2.775545757040656 0.0006400413838718163 0.31729111190747994 0.000197180394341561 0.000848713426205028 5.274325116011534e-07 1.666444915480462 0.0010356113148191231 1.1091008415601942 0.0012174332706353737']
['59866.40573105654 2.779647937350385 0.0006403616406847934 0.31849978803159323 0.0001973775184638532 0.0008519464813268731 5.279597935921694e-07 1.6727930043676116 0.0010366466305874644 1.1068549329827735 0.0012184823624365121']
['59866.4057625945 2.781307867686473 0.0006404488367385501 0.3188942588151472 0.00019744365141390594 0.0008530016405723849 5.281366908342223e-07 1.6748648047014034 0.0010369939675100104 1.1064430629850694 0.0012188236956721487']
['59866.405794132465 2.782129187450479 0.0006405833781696485 0.31893527266355204 0.00019745485685995507 0.0008531113474078278 5.281666639792352e-07 1.675080213569076 0.0010370528196426212 1.1070489738814029 0.0012189444676095585']
['59866.40582567043 2.778222250939119 0.0006402335598902877 0.31804115665186894 0.00019730490560229138 0.0008507197006354416 5.27765563409823e-07 1.670384226112757 0.0010362652605162364 1.1078380248263617 0.0012180905965331864']
['59866.40585720839 2.777543639653093 0.0006401966636547127 0.3180734697598838 0.00019731215476433196 0.000850806134095395 5.277849539975883e-07 1.670553937814516 0.0010363033338462815 1.1069897018385768 0.001218103594894762']
['59866.405888746354 2.7812596263333136 0.0006404767156759429 0.3189631684926829 0.00019744941078319098 0.0008531859652077912 5.281520964155803e-07 1.6752267252766961 0.001037024216298272 1.1060329010566174 0.0012188640812297684']
['59866.40592028432 2.7768265341176206 0.0006401362310505653 0.3180522426971396 0.00019733503980884132 0.0008507493543985368 5.278461685850931e-07 1.6704424511404392 0.00103642352840778 1.1063840829771814 0.0012181740945122973']
['59866.40595182228 2.782729807882438 0.0006405658957838536 0.3190208356767652 0.00019744538283134936 0.0008533402176010834 5.281413221559815e-07 1.6755295991426744 0.0010370030610890198 1.1072002087397637 0.0012188929467140943']
['59866.405983360244 2.779929817864099 0.0006403991692447347 0.31837835142068793 0.00019736541949002295 0.000851621653815984 5.279274303738262e-07 1.6721552070414283 0.0010365830855568433 1.107774610822671 0.0012184480248381103']
['59866.4060148982 2.781899965812893 0.000640527918798055 0.31915079831467585 0.00019748060529448824 0.000853687851151348 5.282355377713836e-07 1.6762121760224573 0.0010371880530172703 1.1056877897904356 0.0012190303819353823']
['59866.40604643617 2.780050707813093 0.0006404331334520032 0.3182624636364535 0.000197345259448071 0.0008513116687117004 5.278735048220682e-07 1.671546552712466 0.0010364772029835662 1.1085041551006272 0.0012183758002881492']
['59866.406077974134 2.777779705267757 0.0006402288516851128 0.31831317306543433 0.0001973561938641044 0.0008514473099937788 5.279027529962117e-07 1.6718128837470292 0.0010365346316392038 1.1059668215207277 0.0012183172924642653']
['59866.40610951209 2.7777384879835383 0.0006402126900496211 0.318044681172465 0.00019730605755519028 0.0008507291282803977 5.277686447375217e-07 1.6704027372503414 0.0010362713106890247 1.107335750733197 0.001218084774495487']
['59866.40614105006 2.782534248602472 0.0006406399770272688 0.3187368203889744 0.00019741184468382325 0.0008525805127781326 5.280516118709239e-07 1.674037922211 0.0010368269153562147 1.108496326391472 0.0012187820283268795']
['59866.406172588024 2.7759313702877857 0.0006400399861707543 0.31793288022732963 0.00019729498353425028 0.0008504300749516475 5.277390231379837e-07 1.6698155474124456 0.0010362131488143398 1.10611582287534 0.0012179445281593035']
['59866.40620412598 2.7772364909113945 0.0006401573316455946 0.31805575840494815 0.00019731330728052355 0.0008507587584704057 5.277880368320233e-07 1.670460915992375 0.0010363093869775397 1.1067755749190196 0.0012180880734977138']
['59866.40623566395 2.779230786512395 0.0006403136806413371 0.31849774643955775 0.00019738839604940811 0.0008519410203274745 5.279888897520008e-07 1.6727822817203666 0.001036703760763698 1.1064485047920283 0.0012185057641217998']
['59866.406267201906 2.7792454650674587 0.0006403331595194107 0.31829414033878045 0.00019734287529524835 0.0008513963998672665 5.278671275160715e-07 1.6717129219473765 0.0010364646811725229 1.1075325431200822 0.001218312599663227']
['59866.40629873987 2.776629308653204 0.0006400962672789796 0.3180757065405393 0.00019730206064649873 0.000850812117199562 5.277579535144066e-07 1.6705656856120763 0.0010362503185215271 1.1060636230411278 0.0012180057282379462']
['59866.40633027784 2.778218070338151 0.000640242765246084 0.3183556661804126 0.0001973706227275563 0.0008515609736794287 5.27941348373381e-07 1.6720360618719152 0.0010366104134850646 1.106182008466236 0.0012183890789873443']
['59866.406361815796 2.7826117242749713 0.0006405748589928625 0.31930089019212937 0.00019751693262146943 0.0008540893278608382 5.283327087572386e-07 1.6770004736981585 0.0010373788478018353 1.1056112505768128 0.0012192173817004042']
['59866.40639335376 2.7792680352293146 0.0006403669630929353 0.31841276889397346 0.0001973699998008161 0.0008517137161857676 5.279396821234669e-07 1.6723359710817935 0.001036607141811009 1.106932064147521 0.0012184515640247906']
['59866.40642489173 2.783179858371713 0.0006406257139774852 0.31925964549771646 0.00019752492249825048 0.0008539790035416428 5.283540806628587e-07 1.676783852403973 0.0010374208114403913 1.1063960059677398 0.0012192798060407638']
['59866.406456429686 2.782739720867357 0.000640569044622662 0.3190837396456525 0.00019746237523699152 0.0008535084777286214 5.281867746829222e-07 1.6758599771305278 0.0010370923069169724 1.1068797437368294 0.0012189705304047173']
['59866.40648796765 2.7788330497013374 0.0006402618782926635 0.3183815506368838 0.0001973547531230704 0.0008516302113129855 5.278988991969299e-07 1.672172009647499 0.0010365270647220085 1.1066610400538384 0.0012183282105804134']
['59866.40651950561 2.7827338858570307 0.0006405650935827231 0.31914551461699875 0.0001974710765438425 0.0008536737179311276 5.282100495736229e-07 1.6761844255094474 0.0010371380070579963 1.1065494603475834 0.0012190073358273423']
['59866.406551043576 2.7758129177590685 0.000640070780403009 0.31771131094270355 0.00019725521592990996 0.0008498374052560916 5.276326498471319e-07 1.6686518431864683 0.0010360042853461658 1.1071610745726002 0.0012177830197458565']
['59866.40658258154 2.782579970591585 0.0006405889939375184 0.3189436688034281 0.00019744127465348062 0.0008531338060156289 5.281303333019493e-07 1.6751243109423746 0.0010369814845245832 1.1074556596492104 0.0012188867291100885']
['59866.4066141195 2.777034725913781 0.000640136939871185 0.31806430291237836 0.00019732687605494338 0.0008507816139425705 5.278243315802689e-07 1.6705057926070295 0.0010363806515490724 1.1065289333067516 0.001218137987542021']
['59866.406645657466 2.7827825970207822 0.0006406123317707923 0.3193780715441975 0.00019752527442103797 0.0008542957781750595 5.283550220116186e-07 1.677405837942214 0.0010374226597743591 1.1053767590785681 0.001219274347565025']
['59866.40667719543 2.777441255974111 0.0006401928558126001 0.31834084068813817 0.0001973724051103091 0.0008515213173705337 5.279461160208699e-07 1.671958196891482 0.0010366197747390185 1.1054830590826288 0.0012183708179423316']
['59866.40670873339 2.782238020753087 0.0006406032971338892 0.3186723072994045 0.000197400851440157 0.0008524079484571379 5.28022206340334e-07 1.6736990929590572 0.001036769177731917 1.1085389277940296 0.0012187136301009048']
['59866.406740271355 2.778364408107577 0.0006402367667428096 0.31811685290962943 0.0001973155487721768 0.000850922178511007 5.277940325375109e-07 1.6707817904917515 0.0010363211595177354 1.1075826176158254 0.0012181398372738124']
['59866.406771809314 2.781680150609193 0.0006405256981850737 0.3188499702888712 0.0001974404233588864 0.0008528831743895431 5.2812805619703e-07 1.674632196895332 0.0010369770134395293 1.1070479537138609 0.0012188496611302978']
['59866.40680334728 2.782329472970825 0.0006405555538213394 0.3191923619308706 0.00019750135731881027 0.0008537990285458045 5.282910468007957e-07 1.676430472326001 0.0010372970447416509 1.105899000644824 0.0012191376364304094']
['59866.406834885245 2.7816391971213834 0.0006405357802599009 0.3189808269175849 0.0001974667297045733 0.0008532331992516629 5.281984223306562e-07 1.6753194691049629 0.0010371151770198178 1.1063197280164205 0.0012189725083848314']
['59866.4068664232 2.778334291577433 0.000640232493184454 0.31809956252082044 0.00019731292919372063 0.0008508759289169409 5.277870254978451e-07 1.670690979626158 0.0010363074012275243 1.107643311951275 0.0012181258864206632']
['59866.40689796117 2.7795758317618344 0.0006403230954906835 0.3185759899823519 0.00019740121163798306 0.0008521503118669822 5.280231698237711e-07 1.6731932246972265 0.001036771069527222 1.106382607064608 0.0012185679780904268']
['59866.406929499135 2.7764448720660098 0.0006400909874802382 0.31766032602167393 0.00019723673846603482 0.0008497010270677721 5.275832249780306e-07 1.6683840652398843 0.00103590723984262 1.1080608068261255 0.0012177110830618985']
['59866.40696103709 2.7822558060727474 0.0006405298638448548 0.31912258197181287 0.00019747869385116978 0.0008536123760178586 5.282304249032731e-07 1.6760639809443953 0.001037178013924211 1.106191825128352 0.0012190228623963045']
['59866.40699257506 2.7773922272661595 0.0006401537340001204 0.3181504819956431 0.00019731444136207352 0.000851012132044969 5.277910703561334e-07 1.6709584138426634 0.0010363153432882014 1.1064338134234961 0.0012180912502308026']
['59866.40702411302 2.7766295620838473 0.000640117750467456 0.31787710805200964 0.00019727912107466136 0.0008502808914661154 5.276965930732246e-07 1.6695226263235803 0.001036129837577003 1.107106935760267 0.0012179145186674075']
['59866.40705565098 2.779699189101384 0.0006403090287348157 0.3188819727827304 0.00019745229208621633 0.0008529687769960803 5.281598035352279e-07 1.6748002772202228 0.0010370393491923129 1.104898911881161 0.0012187888512997396']
['59866.40708718895 2.7767658791276086 0.0006401287557880074 0.3179443273047797 0.00019729833143127855 0.0008504606944299691 5.277479783373285e-07 1.6698756686175404 0.0010362307323071353 1.1068902105100682 0.0012180061389683076']
['59866.40711872691 2.7783484050619403 0.0006403075172256661 0.3182411172322959 0.00019734077131649806 0.0008512545697917185 5.278614996401342e-07 1.6714344392452518 0.0010364536308639606 1.1069139658166884 0.0012182897215140508']
['59866.40715026487 2.7831917469955156 0.0006406085690347442 0.3189496561137126 0.00019741995077166528 0.0008531498213102105 5.280732946263726e-07 1.6751557568997513 0.0010368694893469815 1.1080359900957644 0.0012188017380441384']
['59866.40718180284 2.776326315706368 0.0006401011750031723 0.3182184677466884 0.00019734550803838727 0.0008511939852943585 5.278741697695916e-07 1.6713154818628593 0.0010364785086049752 1.1050108338435085 0.0012182024515820166']
['59866.4072133408 2.7759536998061867 0.0006400621700920124 0.31793585480446385 0.00019728808217108826 0.0008504380315676899 5.277205628680458e-07 1.669831170191512 0.001036176902159077 1.1061225296146746 0.0012179253483489362']
['59866.40724487876 2.783349195440994 0.00064062523695573 0.3193479467713571 0.00019749828904344768 0.0008542151982337641 5.282828395538926e-07 1.677247619597464 0.0010372809298500403 1.10610157584353 0.0012191605397383683']
['59866.40727641672 2.7781384837242937 0.0006402277282668585 0.3182013549016115 0.00019731639048823493 0.0008511482106072265 5.277962840210628e-07 1.6712256034748505 0.0010363255802953518 1.1069128802494432 0.001218138847757611']
['59866.40730795469 2.7834670067765632 0.0006406432498324029 0.3191349152938071 0.00019749265245987705 0.0008536453660877767 5.28267762408726e-07 1.6761287567952057 0.0010372513259447325 1.1073382499813575 0.0012191448177841418']
['59866.40733949265 2.7773151839959533 0.0006401870477808108 0.3181162006984173 0.00019730459915299467 0.0008509204339288498 5.277647436968755e-07 1.670778365012696 0.0010362636510136275 1.1065368189832574 0.0012180647809367133']
['59866.40737103061 2.7832748459359387 0.0006406495650004196 0.31924143353758216 0.000197492764783494 0.0008539302888613274 5.282680628601356e-07 1.6766882013528475 0.0010372519158796955 1.1065866445830912 0.0012191486382436417']
['59866.40740256858 2.7801078943344377 0.0006404305264323577 0.3180613493482205 0.00019728748209675966 0.0008507737135335711 5.277189577454304e-07 1.6704902801902337 0.0010361737505081917 1.109617614144204 0.0012181162918328606']
['59866.40743410654 2.7787198978159644 0.0006402826648455852 0.3183859362558632 0.00019736864706830455 0.0008516419422867518 5.279360637358048e-07 1.6721950433606263 0.0010366000371234483 1.106524854455338 0.001218401217935249']
['59866.4074656445 2.7817587801723516 0.0006404793817180968 0.3191701710592446 0.00019748722421217675 0.000853739670782598 5.282532425355525e-07 1.6763139236304867 0.0010372228162404242 1.1054448565418649 0.0012190344576490494']
['59866.40749718247 2.7825595931181524 0.0006406250582541968 0.31915251682038714 0.00019750587629303846 0.0008536924479358637 5.283031344829153e-07 1.6762212017877478 0.001037320778849992 1.1063383913304046 0.0012191943501743876']
['59866.407528720425 2.778622236476938 0.0006403069475757044 0.318209700298685 0.00019734953281905112 0.0008511705334844754 5.278849355466927e-07 1.671269434341833 0.001036499647158882 1.107352802135105 0.0012183285704908192']
['59866.40756025839 2.7767866930767644 0.0006401359447167622 0.31784911626807255 0.00019727698128870012 0.0008502060169992322 5.276908694175457e-07 1.6693756106516415 0.0010361185992053578 1.1074110824251229 0.0012179145205381593']
['59866.40759179636 2.7768001126400295 0.0006401041650079928 0.318094409737438 0.0001973156364652707 0.0008508621458758318 5.277942671053995e-07 1.6706639166882251 0.0010363216200907075 1.1061361959518043 0.0012180705407848957']
['59866.407623334315 2.7823344740492892 0.0006405711129986971 0.31895944094388967 0.00019745840492665727 0.0008531759944881936 5.281761546070347e-07 1.6752071478145467 0.0010370714544467295 1.1071273262347425 0.0012189538762548172']
['59866.40765487228 2.7828456299381656 0.0006406438616911276 0.31884448917299446 0.0001974275773303822 0.0008528685131007122 5.280936947023151e-07 1.67460340952203 0.0010369095448024277 1.1082422204161357 0.0012188543644032696']
['59866.407686410246 2.782090798628115 0.0006405739425725513 0.3185919552691812 0.00019739532743640127 0.0008521930169815496 5.280074303318738e-07 1.6732770759935989 0.0010367401651071495 1.108813722634516 0.0012186735189743567']
['59866.407717948205 2.7780086429583006 0.000640215698255448 0.318383188056665 0.00019737770428177552 0.0008516345912029366 5.279602906315115e-07 1.6721806095413079 0.0010366476065219303 1.1058280334169928 0.001218406500475255']
['59866.40774948617 2.7821020487798087 0.0006405548011880765 0.31889890644999563 0.00019743256944867654 0.000853014072405323 5.281070479847192e-07 1.6748892145482965 0.0010369357639111166 1.1072128342315122 0.0012188298617128754']
['59866.40778102413 2.7766962873606404 0.000640109951964993 0.31792723135900036 0.00019727495034776283 0.0008504149649463117 5.27685436908482e-07 1.6697858789863465 0.0010361079324987545 1.106910408374294 0.0012178917843517416']
['59866.407812562094 2.7771904542988355 0.000640155174039683 0.31818547097498295 0.00019731015342775533 0.0008511057231208627 5.277796006764292e-07 1.6711421794904566 0.0010362928226247655 1.1060482748083789 0.001218072847194855']
['59866.40784410006 2.77783398748829 0.0006401930872363269 0.31847886372895756 0.00019738553379722933 0.0008518905114748527 5.279812335909483e-07 1.6726831078201554 0.0010366887279266248 1.1051508796681346 0.001218429607139987']
['59866.40787563802 2.7836209393039613 0.0006406475887922874 0.3193110783604687 0.00019749213716810637 0.0008541165799171787 5.282663840686851e-07 1.677053982985655 0.0010372486195803908 1.1065669563183063 0.0012191447952752774']
['59866.407907175984 2.782439643509895 0.0006405439767399355 0.31896846712927684 0.0001974516534701098 0.0008532001383877168 5.281580953182516e-07 1.6752545542504038 0.0010370359951161231 1.107185089259491 0.001218909447540833']
['59866.40793871395 2.778178739637038 0.0006402559221377833 0.31816695381785565 0.0001973270831754016 0.0008510561920773531 5.27824885601189e-07 1.671044925513948 0.0010363817393666051 1.10713381412309 0.0012182014429169968']
['59866.40797025191 2.779738203953536 0.0006404040003376243 0.31820259561885456 0.0001973289165814981 0.0008511515293682721 5.278297897296419e-07 1.6712321198469253 0.0010363913686003052 1.1085060841066106 0.0012182874671265585']
['59866.408001789874 2.7774352992355067 0.0006401572760109663 0.3183876451936172 0.0001973686255137246 0.0008516465134781968 5.27936006080041e-07 1.67220401887404 0.0010365999239166208 1.1052312803614668 0.0012183352331331982']
['59866.40803332783 2.777793387780185 0.0006402054581848133 0.3182015292148693 0.00019732535053365146 0.0008511486768730521 5.278202510045647e-07 1.6712265189856583 0.0010363726393574132 1.1065668687945265 0.0012181671791253767']
['59866.4080648658 2.776852634815884 0.0006401489261943973 0.31789285614803153 0.00019730341482855821 0.0008503230156228577 5.277615757794252e-07 1.6696053369119304 0.0010362574308222594 1.1072472979039538 0.0012180394536476188']
['59866.408096403764 2.7823573523358434 0.0006405896205839127 0.31889094599353685 0.00019743787251797856 0.0008529927791953283 5.28121233021576e-07 1.6748474054282398 0.001036963616165854 1.1075099469076035 0.0012188718567805255']
['59866.40812794172 2.7795963643438237 0.0006403797660868979 0.31829035653235827 0.00019736171017342875 0.0008513862786656565 5.279175084230454e-07 1.6716930490144868 0.0010365636038520418 1.107903315329337 0.0012184212529516394']
['59866.40815947969 2.776235827930835 0.0006400976373362352 0.3182038552748344 0.00019734003012791408 0.0008511548987880332 5.278595170548081e-07 1.6712387356871556 0.0010364497380667757 1.1049970922436791 0.0012181761140582746']
['59866.408191017654 2.7782604788807985 0.0006402558619111851 0.31792671766007535 0.000197276941570992 0.0008504135908669306 5.27690763177721e-07 1.6697831809877908 0.0010361183906039497 1.1084772978930078 0.0012179773758405176']
['59866.40822255561 2.782423872516814 0.0006405446257232291 0.3189252544700481 0.00019744057544203816 0.000853084550012584 5.281284630001455e-07 1.6750275970065553 0.0010369778121955787 1.1073962755102587 0.001218860287534564']
['59866.40825409358 2.777640234030997 0.0006402087729332016 0.3181754295776218 0.00019732948859644726 0.0008510788636582479 5.278313197969811e-07 1.671089441058938 0.0010363943728805003 1.106550792972059 0.0012181874113119874']
['59866.408285631536 2.7832653128900775 0.0006406413434389189 0.3191842644985107 0.00019748103581809318 0.0008537773689426712 5.282366893673474e-07 1.676387943794699 0.0010371903141706575 1.1068773690953786 0.001219091907418243']
['59866.4083171695 2.7822732981259106 0.0006405613173427843 0.3191197364230418 0.00019745265931347914 0.0008536047645363003 5.281607858215155e-07 1.6760490358353037 0.0010370412779069282 1.1062242622906069 0.0012189230547326431']
['59866.40834870747 2.7783103066889963 0.0006402918643948109 0.31822690579621116 0.00019733379591638264 0.0008512165560051417 5.27842841330749e-07 1.6713597993498486 0.0010364169953591526 1.1069505073391477 0.0012182503272642601']
['59866.408380245426 2.7839840114051504 0.0006407651911275688 0.3190889796226553 0.00019748242399612862 0.0008535224940015909 5.28240402567284e-07 1.6758874980181477 0.001037197605021684 1.1080965133870027 0.001219163197452854']
['59866.40841178339 2.778448659744689 0.0006402562350241116 0.3181122950559196 0.00019731049748142085 0.0008509099868312119 5.277805209762873e-07 1.6707578521844517 0.0010362946296293112 1.1076908075602374 0.0012181274998479437']
['59866.40844332136 2.782276170993101 0.0006405595317673524 0.3189582443256288 0.00019744299726047777 0.0008531727936863245 5.281349410568839e-07 1.6752008630547732 0.0010369905318302404 1.1070753079383278 0.0012188789426532788']
['59866.408474859316 2.7827018611683547 0.0006405630143191029 0.31924708885714104 0.00019750066830132823 0.0008539454161228831 5.282892037665411e-07 1.6767179036614552 0.0010372934259523542 1.1059839575068995 0.0012191384773017162']
['59866.40850639728 2.7814981877100107 0.0006405120552851301 0.31883396040705825 0.0001974169169516145 0.0008528403499890584 5.280651795430527e-07 1.6745481113816085 0.0010368535554181435 1.1069500763284021 0.0012187374566939454']
['59866.40853793524 2.776739458928555 0.0006401504719612264 0.31824879106251713 0.00019733202289421283 0.0008512750963129312 5.278380987216308e-07 1.6714747429754053 0.0010364076832679245 1.1052647159531495 0.0012181680970576136']
['59866.408569473206 2.7765543912401203 0.0006400783295411494 0.31799562202078346 0.00019727708295898434 0.0008505979012804984 5.276911413726432e-07 1.6701450736385688 0.0010361191331879432 1.1064093176015515 0.0012178846932720368']
['59866.40860101117 2.777518229905682 0.000640192982426326 0.3180588932748709 0.00019730953378513285 0.0008507671438492991 5.27777943211113e-07 1.6704773806453306 0.0010362895681992272 1.1070408492603516 0.001218089949021194']
['59866.40863254913 2.7803594308109676 0.0006404232016604969 0.3187186711236581 0.0001974351139332843 0.0008525319657984926 5.28113854157878e-07 1.6739426004393807 0.0010369491278008631 1.106416830371587 0.001218772075029639']
['59866.408664087096 2.7777244210409315 0.0006401753293755366 0.3182997264068722 0.00019736837521318635 0.000851411341889943 5.279353365578912e-07 1.6717422605402954 0.0010365986093129537 1.1059821605006361 0.001218343600619557']
['59866.40869562506 2.7826438697712765 0.0006406125633115851 0.3192178332377043 0.0001974799747365734 0.0008538671610565541 5.282338511090466e-07 1.676564250198027 0.0010371847412635159 1.1060796195732496 0.001219072042080576']
['59866.40872716302 2.782693457611126 0.0006405832024047771 0.3192443949986641 0.00019749828708257342 0.0008539382103935957 5.282828343088031e-07 1.6767037552450847 0.0010372809195513311 1.1059897023660412 0.0012191384438481195']
['59866.408758700985 2.782130151165023 0.0006405997379342084 0.31882216493187115 0.00019744075875694766 0.0008528087985910391 5.281289533442461e-07 1.6744861603564662 0.001036978774983969 1.107643990808557 0.0012188900705185147']
['59866.408790238944 2.778211826695248 0.0006402128758322535 0.31873345045464785 0.0001974459292771058 0.0008525714986318139 5.281427838289775e-07 1.6740202229760919 0.0010370059310772363 1.1041916037191561 0.0012187099029181514']
['59866.40882177691 2.7813130738621203 0.0006404460058689068 0.3188377437816855 0.00019744770195474068 0.0008528504700356717 5.281475255165087e-07 1.6745679820466677 0.0010370152413589323 1.1067450918154527 0.001218840308344026']
['59866.408853314875 2.783988680384006 0.0006406770156418712 0.31951835793298866 0.00019754455783620428 0.0008546710264477422 5.284066026980625e-07 1.6781426362026717 0.0010375239382153585 1.1058460441813343 0.0012193945057862453']
['59866.40888485283 2.7835543033535317 0.0006406436287865452 0.3193111343262067 0.00019752985278497935 0.0008541167296184199 5.283672685536783e-07 1.6770542769233547 0.0010374467058034632 1.106500026430177 0.0012193112508655246']
['59866.4089163908 2.7773199433059563 0.0006401939481921191 0.3182288481486477 0.00019735546788640594 0.0008512217515512174 5.279008110980726e-07 1.671370000780713 0.0010365308187311238 1.1059499425252433 0.0012182957069124178']
['59866.408947928765 2.7775703284244306 0.0006402355325971622 0.31796774541859907 0.00019732482498299953 0.0008505233349101748 5.278188452233193e-07 1.6699986629128103 0.0010363698791123926 1.1075716655116203 0.0012181806366591973']
['59866.40897946672 2.782537454266058 0.0006406293113386995 0.3189230079222799 0.0001974521996722088 0.0008530785407826311 5.28159556339495e-07 1.6750157979111342 0.001037038863824626 1.107521656354924 0.001218956734108708']
['59866.40901100469 2.777573248298239 0.0006401925534029676 0.3180303838092847 0.0001972807221506975 0.0008506908846497537 5.277008757482736e-07 1.6703276460571677 0.0010361382465897979 1.1072456022410715 0.0012179609893090962']
['59866.40904254265 2.778102495290139 0.0006402468968409832 0.31787677224432687 0.00019728126329280186 0.0008502799932232139 5.27702323234674e-07 1.6695208626277673 0.0010361410887226989 1.1085816326623719 0.0012179919723273912']
['59866.40907408061 2.780301599342282 0.0006404146846224093 0.3185022286142965 0.00019738711115823825 0.0008519530095756336 5.279854528313114e-07 1.6728058225540783 0.0010366970123857051 1.1074957767882039 0.0012185531025644583']
['59866.40910561858 2.7796778179536754 0.0006403260686736724 0.31845404937325894 0.00019735960603726687 0.0008518241362249523 5.27911880126052e-07 1.6725527803217384 0.0010365525527167379 1.107125037631937 0.0012183836295546104']
['59866.40913715654 2.779427500361554 0.0006403586518949479 0.3182472205330477 0.0001973553380547385 0.0008512708953460686 5.279004638148517e-07 1.6714664943962592 0.001036530136842114 1.107961005965295 0.001218381683890006']
['59866.4091686945 2.782612898406895 0.0006426034615855459 0.31915379132687305 0.00019823474760430785 0.0008536958570788424 5.302527726689051e-07 1.6762278956243333 0.0010411488844764068 1.1063850027825617 0.0012234909924017392']
['59866.40920023247 2.777987066842927 0.0006422687264976846 0.3181664939478452 0.00019808358939160753 0.0008510549619834818 5.298484436480616e-07 1.6710425102302795 0.0010403549863004598 1.1069445566126477 0.0012226396094341078']
['59866.40923177043 2.7829104408944545 0.0006425984174032747 0.3193244842494003 0.0001982814578854096 0.0008541524389674309 5.303777167383262e-07 1.6771243920661782 0.0010413942115830336 1.1057860488282762 0.001223697115289499']
['59866.40926330839 2.7825967009426567 0.0006425729320068247 0.319019366506196 0.0001982010619673155 0.0008533362877564055 5.301626678682575e-07 1.6755218829106933 0.001040971964114052 1.1070748180319634 0.0012233244062877656']
['59866.40929484635 2.779788653173126 0.0006424108712769903 0.3179900157466064 0.00019805768450620296 0.00085058290520911 5.297791513697024e-07 1.6701156289212522 0.0010402189312300576 1.109673024251874 0.0012225985246286963']
['59866.40932638432 2.779355612136106 0.0006423309570755424 0.31833074883706086 0.0001980890092649382 0.0008514943229506362 5.2986294112086e-07 1.6719051934719584 0.0010403834520217343 1.1074504186641476 0.0012226965223056138']
['59866.40935792228 2.7802649906802976 0.000642438744371082 0.318590855072176 0.00019814489210549088 0.0008521900740942933 5.300124206218344e-07 1.6732712976479833 0.0010406769543355615 1.1069936930323143 0.0012230028877947233']
['59866.40938946024 2.7827729665511605 0.0006426593270444803 0.31909892343165724 0.00019824524474337232 0.0008535490924277392 5.302808511826939e-07 1.675939723905763 0.0010412040165093085 1.1068332426453975 0.0012235672497383954']
['59866.40942099821 2.781932675336709 0.0006426056769351444 0.31890691096906276 0.00019819205849502783 0.0008530354834771986 5.301385847233907e-07 1.6749312550896154 0.001040924676969684 1.1070014202470937 0.0012233013689004505']
['59866.40945253617 2.784090072992314 0.0006427778332690712 0.31915858183171464 0.00019823385714451037 0.0008537086710708667 5.302503908020414e-07 1.6762530558388375 0.0010411442076917563 1.1078370171534764 0.0012235786056286604']
['59866.40948407413 2.7823385705998653 0.0006425816675153717 0.31893184200659863 0.00019821499350768294 0.0008531021708361944 5.301999329693392e-07 1.675062195412808 0.001041045133968923 1.1072763751870573 0.0012233912580966108']
['59866.4095156121 2.7790292636133844 0.0006422967186843429 0.3184949116796937 0.00019814906686125013 0.0008519334377048719 5.300235875632677e-07 1.6727673932757021 0.0010406988805737928 1.1062618703376823 0.0012229469468706398']
['59866.409547150055 2.7835513875736657 0.0006426930889732775 0.31906255853525267 0.00019821243392935726 0.0008534518209484482 5.30193086422402e-07 1.6757487318027977 0.0010410316908054478 1.107802655770868 0.0012234383465770814']
['59866.40957868802 2.777394538202173 0.0006421886891707293 0.3180556672625602 0.00019806339792501683 0.0008507585146760936 5.297944340393862e-07 1.6704604373033625 0.0010402489386818112 1.1069341008988107 0.001222507327964726']
['59866.40961022599 2.7804342728726983 0.0006424477527966739 0.31875158045803353 0.0001981894597757974 0.0008526199940882358 5.301316334795045e-07 1.674115443582109 0.00104091102823423 1.1063188292905892 0.001223206803354665']
['59866.409641763945 2.7837127805671464 0.0006427041949159612 0.3191274889808099 0.00019823579953606943 0.0008536255016437018 5.302555864527648e-07 1.6760897530504724 0.0010411544093280958 1.107623027516674 0.0012235486039491484']
['59866.40967330191 2.7828213305503837 0.0006426284161635772 0.3188054121104546 0.00019817078649172066 0.000852763986921473 5.300816848162344e-07 1.6743981728490263 0.0010408129542632389 1.1084231577013575 0.0012232182499550433']
['59866.409704839876 2.7768077653338565 0.0006421371855247038 0.3179614392278703 0.00019806027970551638 0.0008505064666509049 5.297860931982577e-07 1.6699655421631845 0.0010402325614785525 1.106842223170672 0.0012224663377753263']
['59866.409736377835 2.7775569140552037 0.0006422381863308979 0.31796267680627877 0.000198040943219899 0.0008505097770159666 5.297343705550975e-07 1.6699720420497837 0.0010401310043061923 1.10758487200542 0.0012224329814352235']
['59866.4097679158 2.7783194642204276 0.0006422559012410277 0.318404131836582 0.00019811080620205768 0.000851690613154211 5.299212451592941e-07 1.6722906083854099 0.0010404979317334962 1.1060288558350178 0.001222754508730435']
['59866.40979945376 2.7835837463227184 0.000642681340584908 0.3193199535265875 0.00019825785673081487 0.0008541403198593395 5.303145866472938e-07 1.6771005962530858 0.0010412702559391537 1.1064831500696326 0.001223635179062618']
['59866.409830991724 2.776729180402226 0.0006421465640174325 0.31806373768951357 0.00019807775707112902 0.0008507801020431943 5.298328429315262e-07 1.670502823999546 0.0010403243543651735 1.10622635640268 0.0012225493740396377']
['59866.40986252969 2.7839499231476794 0.0006427229362502235 0.31894314648287747 0.00019820160223161823 0.0008531324088744942 5.3016411300665e-07 1.6751215676621716 0.0010409748016366504 1.1088283554855078 0.001223405619745378']
['59866.40989406765 2.7830050837671063 0.0006425959266335881 0.3192475829023726 0.00019825087314216872 0.0008539467376311303 5.30295906434629e-07 1.676720498436831 0.0010412335774273567 1.1062845853302754 0.0012235591067407618']
['59866.409925605614 2.7827296214206516 0.0006426277884910768 0.31911988808552816 0.00019821332167785138 0.000853605170214189 5.301954610368736e-07 1.6760498323819757 0.0010410363533500599 1.106679789038676 0.0012234080118821043']
['59866.40995714358 2.779832475085147 0.0006424304677031435 0.31822900966322004 0.00019808527889082406 0.0008512221835821849 5.298529628438877e-07 1.671370849071534 0.0010403638597207146 1.108461626013613 0.0012227321319268022']
['59866.40998868154 2.778700236774268 0.0006423085607723822 0.3182711428166406 0.0001980688953553249 0.0008513348844163854 5.298091389672489e-07 1.67159213664202 0.001040277811740152 1.1071081001322478 0.0012225948686463428']
['59866.410020219504 2.7775453399772116 0.0006422169324871974 0.3180646903165753 0.00019806151631113447 0.0008507826501995943 5.297894009612287e-07 1.6705078272929377 0.0010402390562559585 1.107037512684274 0.001222513755560056']
['59866.41005175746 2.7831516279548705 0.0006427088560876088 0.3192493804307697 0.00019826894535971684 0.0008539515457912941 5.303442473212746e-07 1.676729939237236 0.001041328494536328 1.1064216887176346 0.0012236991898447664']
['59866.41008329543 2.7834859861868377 0.0006426704316710688 0.31939310434906376 0.00019827635261417757 0.0008543359890188073 5.30364060786185e-07 1.6774847917492846 0.0010413673981837057 1.1060011944375532 0.0012237121155501316']
['59866.410114833394 2.7802860499279562 0.0006424569242717023 0.31854116134272614 0.00019814058854075343 0.0008520571496794594 5.30000909132744e-07 1.6730103011697803 0.0010406543515795875 1.107275748758176 0.0012229932048078548']
['59866.41014637135 2.7776054834516524 0.0006422117227362809 0.3180779888084755 0.00019806195964457116 0.0008508182219764276 5.297905868218655e-07 1.6705776723134218 0.001040241384687874 1.1070278111382306 0.0012225130000279125']
['59866.41017790932 2.777594090356274 0.0006421765801862606 0.31798337549626754 0.00019803443017477092 0.0008505651433828109 5.297169489865814e-07 1.6700807536568674 0.001040096797136402 1.1075133366994068 0.0012223715096291807']
['59866.410209447284 2.7829039738721892 0.0006426787743279119 0.3191644520799298 0.00019824892420402057 0.0008537243732392803 5.302906932726112e-07 1.6762838869744212 0.0010412233414076712 1.106620086897768 0.0012235939088046258']
['59866.41024098524 2.779420585898975 0.0006423372863389558 0.3183763576134711 0.00019812023783985126 0.0008516163206349061 5.299464735925092e-07 1.6721447353648693 0.0010405474676462776 1.1072758505341058 0.0012228394096717584']
['59866.41027252321 2.77957788723929 0.0006423786811348016 0.31845597961769934 0.0001981207452349089 0.0008518292993836761 5.299478308098457e-07 1.6725629181601858 0.0010405501325362863 1.107014969079104 0.0012228634217678481']
['59866.410304061166 2.7792155931553575 0.0006423427583679463 0.3185636204207699 0.00019816021745800417 0.0008521172248607695 5.300534139933826e-07 1.6731282585124472 0.001040757444632375 1.1060873346429103 0.0012230209637555086']
['59866.41033559913 2.784412809850604 0.000642777876500022 0.31937196763732145 0.00019827360324553927 0.000854279450999404 5.303567065742662e-07 1.677373779607781 0.00104135295822237 1.107039030242823 0.001223756259275661']
['59866.4103671371 2.777923101257621 0.0006423212116097404 0.3179448380791583 0.0001980402345169347 0.00085046206068656 5.297324748646782e-07 1.6698783512560835 0.001040127282126758 1.1080447500015373 0.0012224734360746664']
['59866.410398675056 2.778950242869815 0.000642301618557367 0.31853510296795773 0.00019816535869154436 0.0008520409442964091 5.300671661401306e-07 1.672978481974568 0.0010407844469093716 1.1059717608952468 0.0012230223359079996']
['59866.41043021302 2.7800135827410184 0.0006424280487037395 0.3182472027605437 0.00019809678467990805 0.0008512708478068775 5.298837393683733e-07 1.6714664010532758 0.0010404242892852315 1.1085471816877426 0.0012227822780429773']
['59866.41046175098 2.776867546023679 0.0006421666607794288 0.3179191565740934 0.00019802943030475684 0.0008503933659222388 5.297035749693115e-07 1.6697434694017512 0.0010400705373148995 1.1071240766219277 0.001222343954379088']
['59866.410493288946 2.7781734814060997 0.0006422737056595188 0.31829511903345453 0.00019811469011068439 0.0008513990177512187 5.299316341215875e-07 1.6717180621504966 0.0010405183304132584 1.106455419255603 0.0012227812187417687']
['59866.41052482691 2.7813081989303714 0.0006425210982752653 0.31876310429028 0.00019818830245021393 0.0008526508188758893 5.30128537780557e-07 1.6741759679111345 0.0010409049498435606 1.1071322310192369 0.0012232401548092175']
['59866.41055636487 2.780456068986453 0.0006424975554773852 0.3182885729303885 0.00019810482079246904 0.000851381507756917 5.299052349488326e-07 1.6716836813570826 0.0010404664957587662 1.1087723876293705 0.0012228547082916033']
['59866.410587902836 2.7824704682664048 0.0006426184851056653 0.31884315580943606 0.00019819119553870856 0.0008528649465225398 5.301362764248381e-07 1.6745964065621641 0.0010409201446360745 1.1078740617042406 0.0012233042405340898']
['59866.4106194408 2.7767212219944355 0.0006421928017688177 0.31770791891595096 0.00019800804402018285 0.0008498283320153391 5.296463693742808e-07 1.6686340279199106 0.0010399582143917167 1.108087194074525 0.001222262116865483']
['59866.41065097876 2.7838423688656193 0.0006427535581324637 0.31956215911108965 0.00019832267924142026 0.0008547881890361123 5.304879786302598e-07 1.6783726844069835 0.0010416107103015772 1.1054696844586358 0.0012239628296263326']
['59866.410682516726 2.777173829790538 0.000642190591904186 0.31793233235047913 0.00019805119869676478 0.0008504286094506566 5.297618026531976e-07 1.6698126699079787 0.001040184867104857 1.1073611598825592 0.001222453808568732']
['59866.410714054684 2.7841439815733606 0.0006427275636824982 0.3195114054706775 0.00019830945723060483 0.0008546524294940703 5.304526114306146e-07 1.678106121169525 0.0010415412669674625 1.1060378604038357 0.0012238900816304652']
['59866.41074559265 2.783686120563913 0.0006427255231080152 0.3190974575485114 0.00019823513703134366 0.0008535451713765011 5.30253814336766e-07 1.6759320249396605 0.001041150929786469 1.1077540956242524 0.001223556846513353']
['59866.410777130615 2.7804711357345653 0.0006424247333975474 0.31877721269054304 0.00019819621954099867 0.0008526885570547294 5.301497149928814e-07 1.674250066652012 0.0010409465312027242 1.1062210690825534 0.0012232249257204883']
['59866.410808668574 2.778811915078973 0.0006423194382640155 0.31847043846572964 0.000198130575257859 0.0008518679749657842 5.29974124872757e-07 1.672638857488076 0.0010406017608080831 1.1061730575908972 0.0012228762346896285']
['59866.41084020654 2.7841801194189304 0.0006427481756229107 0.31903965227412046 0.00019822866382551154 0.0008533905496091717 5.302364993333066e-07 1.6756284258094563 0.0010411169318566783 1.1085516936094741 0.001223539816706119']
['59866.410871744505 2.7791388365663146 0.0006423243522717478 0.31843726287351937 0.00019812976813856 0.0008517792344701495 5.299719659311418e-07 1.6724646159323497 0.0010405975217361344 1.1066742206339648 0.0012228752085820963']
['59866.41090328246 2.777828331296868 0.0006422340409317297 0.3184234272680957 0.00019813459114670858 0.0008517422259828579 5.299848668653842e-07 1.6723919499374775 0.0010406228526612848 1.1054363813593906 0.001222849330380652']
['59866.41093482043 2.780185687727794 0.0006424403823209484 0.3185477967805793 0.0001981649483787949 0.0008520748986329705 5.300660686056384e-07 1.673045151158505 0.0010407822919054354 1.1071405365692892 0.0012230933831807844']
['59866.41096635839 2.778597290178917 0.0006422975928013361 0.3183734536525585 0.00019812128449323176 0.0008516085529082878 5.299492732573699e-07 1.6721294834693199 0.001040552964775377 1.106467806709597 0.00122282323752095']
['59866.41099789635 2.7804031174172494 0.0006424743427664671 0.318711758403887 0.00019818238786968896 0.0008525134751510677 5.30112717028845e-07 1.673906294138062 0.0010408738858702152 1.1064968232791874 0.0012231891625581735']
['59866.41102943432 2.783810371489804 0.0006427151445454077 0.31917706317116257 0.00019824594670816094 0.000853758106306633 5.302827288493491e-07 1.6763501216972825 0.0010412077032991647 1.1074602497925217 0.001223599705147703']
['59866.41106097228 2.7805195677714694 0.0006424729803570769 0.3183418689067349 0.0001981122599463428 0.000851524067724689 5.299251337406213e-07 1.671963597199238 0.0010405055669450779 1.1085559705722314 0.0012228750407676995']
['59866.41109251024 2.7830090087261374 0.0006426359645453095 0.31925835913538964 0.000198260268746898 0.0008539755626857954 5.303210384839736e-07 1.6767770962993154 0.0010412829240908509 1.106231912426822 0.001223622127509254']
['59866.41112404821 2.7789764310989744 0.0006423105867128854 0.31828915705874566 0.0001980943813762477 0.0008513830702260841 5.298773108363179e-07 1.671686749258118 0.0010404116668920574 1.1072896818408564 0.0012227098291943844']
['59866.41115558617 2.780200861525236 0.0006424391222651349 0.31862996099120533 0.00019816928467818735 0.0008522946774609768 5.300776676557733e-07 1.6734766858781793 0.0010408050665871183 1.1067241756470565 0.0012231121013423964']
['59866.41118712413 2.777931836182623 0.0006422394011312748 0.3181304229540176 0.0001980796979620212 0.0008509584766562566 5.298380345681563e-07 1.670853061733286 0.0010403345481198594 1.1070787744493369 0.0012226068134838814']
['59866.41121866209 2.7805503866964165 0.0006424761612322409 0.3187731800002516 0.0001981823994677002 0.0008526777701203792 5.301127480520521e-07 1.6742288865559436 0.00104087394678414 1.106321500140473 0.001223190169534447']
['59866.41125020006 2.7797954874990674 0.0006423985933795486 0.3183720437875449 0.00019810909283140443 0.0008516047816984391 5.299166621104065e-07 1.6721220787160973 0.0010404889329380486 1.10767340878297 0.001222821807273072']
['59866.41128173802 2.783305989856818 0.0006426867378495271 0.31917810650762063 0.00019824444984422725 0.0008537608970991474 5.302787249284385e-07 1.6763556014055705 0.0010411998416188406 1.1069503884512477 0.0012235780944405493']
['59866.41131327598 2.7844097808872506 0.0006427766402075058 0.319391175131109 0.0001982823228050659 0.0008543308286058022 5.303800302885561e-07 1.677474659302043 0.0010413987542282873 1.1069351215852075 0.0012237945801909234']
['59866.41134481395 2.7788655840677787 0.0006423282198085175 0.318349493739976 0.00019815158730510343 0.000851544463185203 5.300303294304616e-07 1.6720036435923111 0.0010407121181990726 1.1068619404754676 0.0012229747564560683']
['59866.41137635191 2.7771824951889625 0.0006421918631607373 0.3179987897700746 0.0001980513561584124 0.0008506063746075264 5.297622238431063e-07 1.6701617109772828 0.001040185694109309 1.1070207842116797 0.0012224551800943558']
['59866.41140788987 2.7776696255671327 0.0006422017034326201 0.3181670706805733 0.00019807809398362727 0.0008510565046702805 5.298337441296689e-07 1.6710455392887253 0.0010403261238635887 1.1066240862784074 0.0012225798427443492']
['59866.41143942784 2.780145111262757 0.0006423719920127704 0.3183320933569026 0.00019809685816377372 0.0008514979193704496 5.29883935928381e-07 1.671912255025749 0.001040424675229904 1.1082328562370078 0.0012227531561806357']
['59866.411470965795 2.778049106082082 0.0006422777247396668 0.31810514972270754 0.00019806082780715386 0.0008508908739723759 5.297875593005254e-07 1.6707203241738842 0.0010402354401636232 1.1073287819081978 0.0012225426154818368']
['59866.41150250376 2.7776592071156303 0.0006422139977694972 0.318272655779533 0.00019811450796738072 0.0008513389313999659 5.299311469113836e-07 1.6716000828756987 0.0010405173737782602 1.1060591242399316 0.0012227490437802385']
['59866.41153404173 2.7791567735396683 0.0006424007351550187 0.3182475224408824 0.00019809183915348778 0.000851271702911182 5.298705107133149e-07 1.6714680800466515 0.0010403983148817636 1.1076886934930168 0.0012227458272824005']
['59866.411565579685 2.783421471696982 0.0006426981766790911 0.31949643764114866 0.00019830322067315294 0.0008546123924510976 5.304359294315163e-07 1.6780275086194785 0.0010415085119388286 1.1053939630775036 0.0012238467742114048']
['59866.41159711765 2.7810384150555176 0.0006424943312395316 0.3185930875383627 0.000198131724601807 0.0008521960456578042 5.299771992218432e-07 1.6732830227855184 0.001040607797278398 1.1077553922699992 0.0012229732431380225']
['59866.41162865562 2.7813425792973177 0.0006425369059436955 0.31889119883611294 0.00019821798094926744 0.0008529934555171066 5.302079239961522e-07 1.6748487333829463 0.0010410608243133796 1.1064938459143714 0.001223381099829383']
['59866.411660193575 2.7849834019775677 0.0006428366894863445 0.3193003202168199 0.00019826399601662425 0.0008540878032492762 5.303310084571025e-07 1.6769974801303569 0.0010413025000873123 1.1079859218472108 0.0012237442159364227']
['59866.41169173154 2.7781799120645125 0.000642284880391168 0.3182849471324685 0.00019810225138717363 0.0008513718092079823 5.298983621159995e-07 1.67166463830078 0.001040453000983055 1.1065152737637325 0.0012227314974407677']
['59866.4117232695 2.7827315052943637 0.0006426425232430713 0.31902878042744526 0.00019821258438040796 0.0008533614688001147 5.301934888598544e-07 1.6755713257743974 0.0010410324809895378 1.1071601795199664 0.0012234124566782266']
['59866.411754807465 2.778453954362064 0.0006423168468131325 0.31841380687161575 0.00019812938492924962 0.0008517164926441304 5.299709408949068e-07 1.6723414226450408 0.0010405955090821936 1.106112531717023 0.0012228695536409412']
['59866.41178634543 2.781021718502685 0.0006425190833731561 0.31876466699632083 0.00019820342595897115 0.0008526549989160742 5.301689912456932e-07 1.6741841754008449 0.0010409843800366133 1.10683754310184 0.0012233066876212574']
['59866.41181788339 2.784121318039136 0.0006428110860717296 0.31907133933995635 0.00019823599917008012 0.0008534753084858081 5.302561204483885e-07 1.6757948494745607 0.0010411554578260511 1.1083264685645755 0.001223605647150131']
['59866.411849421354 2.780791919781541 0.0006425276826705591 0.31855676846175174 0.00019815473128715402 0.0008520988967406417 5.300387391831397e-07 1.6730922713327299 0.0010407286307098425 1.107699648448811 0.001223093580138978']
['59866.41188095932 2.7772130683367626 0.0006421704681728838 0.3184425307228481 0.0001981407966459905 0.0008517933252980509 5.300014657878223e-07 1.6724922832082358 0.001040655444569278 1.1047207851285268 0.0012228436795048917']
['59866.41191249728 2.7827839790727444 0.0006426433345107635 0.31932326261434707 0.00019829084518010236 0.0008541491712488195 5.304028265593786e-07 1.6771179759156885 0.0010414435146013782 1.105666003157056 0.0012237626606071883']
['59866.411944035244 2.7780374900574527 0.0006422639510775951 0.3179901563802016 0.0001980607743631448 0.0008505832813861158 5.297874163445889e-07 1.670116367543076 0.0010402351594702985 1.1079211225143768 0.001222535140538709']
['59866.4119755732 2.779067833742916 0.0006423142875789485 0.3183067993001011 0.0001981010917877662 0.0008514302609810243 5.298952603348616e-07 1.6717794080887662 0.0010404469106500326 1.1072884256541498 0.0012227417625603736']
['59866.41200711117 2.7797024657986498 0.0006424013321071671 0.3186690405438377 0.0001981887470340484 0.0008523992103008972 5.30129726985849e-07 1.6736819356294 0.0010409072848426913 1.1060205301692498 0.0012231792375329326']
['59866.412038649134 2.778624821003364 0.0006422918629300681 0.3185879573438875 0.00019815942764440136 0.0008521823230391529 5.300513013423067e-07 1.6732560784868042 0.0010407532964516878 1.10536874251656 0.0012229907036691785']
['59866.41207018709 2.780692365079347 0.0006425008489886843 0.3183842986265004 0.00019812838038384717 0.0008516375618361964 5.299682538635393e-07 1.6721864423660737 0.001040590233108441 1.1085059227132732 0.0012229617222921819']
['59866.41210172506 2.7832913666178536 0.0006426901041766728 0.31915546504166836 0.00019823262214189877 0.0008537003340533466 5.302470873269091e-07 1.6762366861432163 0.001041137721333502 1.1070546804746373 0.0012235270020682582']
['59866.412133263024 2.77784086702127 0.0006422339347794845 0.31800803479925643 0.00019805802868080096 0.0008506311038864056 5.297800719930395e-07 1.6702102668028174 0.001040220738869753 1.1076306002184528 0.0012225071012297124']
['59866.41216480098 2.7837800639894947 0.0006427396299308261 0.31930665431559047 0.00019827273751885137 0.0008541047461590134 5.303543908653294e-07 1.6770307474558324 0.0010413484113385052 1.1067493165336624 0.0012237323014780822']
['59866.41219633895 2.780901145688543 0.0006424821087157368 0.31861885413145813 0.0001981461418383485 0.0008522649680218005 5.300157634985039e-07 1.6734183515307677 0.0010406835180585532 1.1074827941577754 0.0012230312525763792']
['59866.41222787691 2.78052104029263 0.0006424911925364441 0.3185202484900027 0.00019813895005245104 0.0008520012104545 5.299965263846343e-07 1.6729004647584178 0.0010406457460737976 1.1076205755342121 0.0012230038844208112']
['59866.41225941487 2.7822567700115584 0.000642585575056923 0.3191665340063191 0.0001982534998511671 0.0008537299421279529 5.303029325475896e-07 1.6762948214617601 0.0010412473731678945 1.1059619485497982 0.0012235654103480847']
['59866.41229095284 2.779168587222138 0.0006423997512806817 0.3181748187899296 0.0001980849262391457 0.0008510772298787455 5.298520195454374e-07 1.6710862331403866 0.0010403620075585384 1.1080823540817513 0.0012227144176857956']
['59866.412322490796 2.7827598750131513 0.0006426275667720266 0.31916344104144406 0.0001982438737895839 0.00085372166883974 5.302771840554304e-07 1.6762785768983408 0.0010411968161217642 1.1064812981148104 0.0012235444411534198']
['59866.41235402876 2.7795408317966306 0.0006424110527921224 0.31867551422249374 0.00019817299023660312 0.0008524165265691004 5.300875795539042e-07 1.6737159360425091 0.001040824528553588 1.1058248957541215 0.0012231139194646922']
['59866.41238556673 2.782896712355018 0.0006426406131084089 0.3190253653985677 0.00019822689000824519 0.0008533523340315993 5.302317545974061e-07 1.6755533896983597 0.0010411076155895232 1.1073433226566585 0.0012234753879236207']
['59866.412417104686 2.783376693782751 0.0006426459574473712 0.3191608169188993 0.00019823975065562664 0.0008537146496452142 5.30266155195761e-07 1.6762647947421183 0.0010411751610064424 1.1071118990406326 0.001223535672761624']
['59866.41244864265 2.7833210932832486 0.0006427170552570473 0.31914151666130364 0.00019825745405662576 0.0008536630239074109 5.303135095449804e-07 1.6761634278429813 0.0010412681410537068 1.1071576654402673 0.0012236521379426967']
['59866.41248018061 2.784572726372197 0.0006428113672913771 0.3191790393598435 0.00019825195495328492 0.000853763392360365 5.302988001419674e-07 1.6763605008395144 0.0010412392592084293 1.1082122255326825 0.0012236771015410595']
['59866.412511718576 2.7813872919613223 0.0006425727042704581 0.3187494712850234 0.00019820952865848399 0.0008526143523183131 5.301853151918053e-07 1.6741043659927701 0.001041016432029853 1.1072829259685522 0.0012233621262854328']
['59866.41254325654 2.783889665769297 0.0006427525124264609 0.31927820274374874 0.0001982740147939208 0.0008540286418178817 5.303578074139173e-07 1.6768813169314536 0.0010413551197159707 1.1070083488378433 0.0012237447763276425']
['59866.4125747945 2.779379125425983 0.0006423854930262152 0.3182117420635574 0.00019809659092931677 0.0008511759949461909 5.298832211101493e-07 1.671280157896835 0.0010404232716875882 1.108098967529148 0.0012227590547281336']
['59866.412606332466 2.784390251778094 0.0006427882758340224 0.3193199090761854 0.00019827563794442345 0.0008541402009601594 5.303621491353607e-07 1.6771003627950916 0.0010413636446660896 1.1072898889830025 0.001223770815137343']
['59866.41263787043 2.7806537266789952 0.0006424427312714299 0.31854152897918775 0.00019815353819088727 0.0008520581330603019 5.300355478021576e-07 1.6730122320335492 0.0010407223644479373 1.107641494645446 0.0012230436226176073']
['59866.41266940839 2.780647292798063 0.0006424767399539738 0.3184007828610428 0.00019810391229074518 0.0008516816550699864 5.299028048221072e-07 1.6722730192281658 0.0010404617242160989 1.1083742735698974 0.0012228397118758548']
['59866.412700946355 2.784367829327283 0.0006427974329427546 0.31925247424781694 0.00019825733064116478 0.0008539598213589595 5.303131794242968e-07 1.6767461882763497 0.0010412674928632604 1.1076216410509332 0.0012236938062650865']
['59866.412732484314 2.7830015866480204 0.0006426385010639208 0.3187815637415284 0.00019817477075123415 0.0008527001955635019 5.300923422044047e-07 1.6742729188105485 0.001040833879995978 1.108728667837472 0.0012232413534528518']
['59866.41276402228 2.7779270636567173 0.0006422482095765108 0.31829030083630605 0.0001981068632470351 0.0008513861296857906 5.299106982553911e-07 1.6716927564932043 0.001040477222936109 1.106234307163513 0.0012227328465993998']
['59866.412795560245 2.78440379036877 0.000642771176965135 0.3191693913412086 0.00019823254614988946 0.0008537375851358812 5.302468840579357e-07 1.6763098284727342 0.001041137322215806 1.108093961896036 0.0012235692500417964']
['59866.412827098204 2.7837846683156355 0.0006426957070518383 0.31942287836329764 0.00019829026769828368 0.0008544156307253789 5.304012818688577e-07 1.6776411678744625 0.0010414404816086328 1.106143500441173 0.0012237875831189345']
['59866.41285863617 2.7793441020668084 0.0006423648788492212 0.31844364207957815 0.00019812592748713725 0.0008517962980361538 5.29961692676375e-07 1.6724981201658518 0.0010405773502475697 1.1068459819009566 0.0012228793315070903']
['59866.412890174135 2.779175178987886 0.0006423851771793469 0.31814658132290985 0.00019809651259110428 0.0008510016982408198 5.298830115653804e-07 1.6709379271161233 0.0010404228602473966 1.1082372518717625 0.0012227585387087324']
['59866.41292171209 2.7798449128868694 0.0006423893827060259 0.3185497869470638 0.0001981451166117988 0.0008520802220755518 5.300130211476942e-07 1.6730556037135706 0.00104067813346533 1.1067893091732988 0.0012229779623878397']
['59866.41295325006 2.7777637397535964 0.0006422303434601071 0.31835213204800494 0.0001981214742602972 0.0008515515203240972 5.299497808601683e-07 1.672017500252127 0.001040553961451141 1.1057462395014694 0.0012227887637497122']
['59866.41298478802 2.7809806845241827 0.0006425197292915903 0.31847149945919706 0.00019813648229422034 0.0008518708129885562 5.299899254447894e-07 1.6726444299327579 0.0010406327851587203 1.1083362545914248 0.0012230078479209092']
['59866.41301632598 2.7846832204985317 0.0006428128778811737 0.3195102310099388 0.00019829855222527957 0.0008546492879607588 5.3042344192638e-07 1.6780999527832923 0.0010414839927798299 1.1065832677152394 0.0012238861479674052']
['59866.41304786395 2.778704402081736 0.0006423360831477 0.31839555966394445 0.00019813753752704935 0.0008516676836811302 5.299927480585852e-07 1.6722455864702965 0.0010406383273479484 1.1064588156114397 0.0012229160936299205']
['59866.41307940191 2.78095836059759 0.0006425652793908285 0.31803142079375196 0.00019805763317905795 0.0008506936584514994 5.297790140761084e-07 1.6703330924041595 0.0010402186616547161 1.1106252681934305 0.0012226794356385252']
['59866.41311093987 2.7839230628841585 0.0006427147923513085 0.31926102660379807 0.00019825400712650268 0.0008539826978250011 5.303042894446848e-07 1.6767911061123848 0.0010412500374291107 1.1071319567717737 0.0012236355440870905']
['59866.41314247784 2.7796505953791675 0.0006423987083184517 0.318512920980404 0.00019813884704065533 0.0008519816102969674 5.299962508411639e-07 1.6728619799390967 0.0010406452050454587 1.1067886154400708 0.001222954841044149']
['59866.4131740158 2.7833124267793243 0.0006426950446839337 0.31920135169008085 0.0001982428052252395 0.000853823075009931 5.302743257815241e-07 1.6764776874479037 0.001041191203914073 1.1068347393314206 0.0012235751074491997']
['59866.41320555376 2.7813358955249714 0.0006425470069065897 0.3187906110483134 0.00019819750368944592 0.0008527243959600818 5.301531499268821e-07 1.6743204361781168 0.0010409532756798631 1.1070154593468546 0.0012232948860488439']
['59866.41323709172 2.779035132521919 0.0006423973847537294 0.3182252149180648 0.000198113830212363 0.0008512120331208533 5.299293340027908e-07 1.6713509186873154 0.0010405138141405621 1.1076842138346037 0.0012228423436223376']
['59866.41326862969 2.781710300497819 0.0006425545782557726 0.31850930547772555 0.00019814475115840366 0.0008519719392864961 5.300120436062774e-07 1.672842990954441 0.0010406762140672463 1.108867309543378 0.0012230631089861189']
['59866.41330016765 2.77855504405278 0.0006423466738380052 0.3181595301037207 0.00019808357766428554 0.0008510363345849048 5.298484122789646e-07 1.6710059354187015 0.0010403549247073821 1.1075491086340785 0.0012226805055915676']
['59866.41333170561 2.778747916626857 0.0006423722415321142 0.3180940578962431 0.0001980700956181238 0.0008508612047453217 5.298123495177943e-07 1.6706620687827896 0.0010402841156414064 1.1080858478440676 0.0012226336891918265']
['59866.41336324358 2.784416221706916 0.0006428138555063576 0.31912933919200526 0.00019822974688040164 0.0008536304507236599 5.302393963675822e-07 1.6760994705462462 0.0010411226201701767 1.10831675116067 0.0012235791609295095']
['59866.41339478154 2.784156856716309 0.0006427717963985031 0.3192294551859859 0.00019824380881136344 0.0008538982482921402 5.302770102469434e-07 1.676625289842363 0.001041196474849598 1.1075315668739458 0.0012236199089115003']
['59866.4134263195 2.7786271071847395 0.0006423472529344827 0.31824751716208616 0.00019809648837089126 0.0008512716887910725 5.298829467793866e-07 1.6714680523218812 0.0010404227330403954 1.1071590548628583 0.0012227385071141425']
['59866.41345785747 2.7797533777876016 0.0006424187317227169 0.31847585721325233 0.00019815753101933305 0.0008518824694271893 5.300462281111335e-07 1.6726673172964934 0.0010407433351855729 1.1070860604911081 0.00122304886108504']
['59866.413489395425 2.784982037758284 0.0006427907852462627 0.3194423568467667 0.0001982900093586432 0.0008544677331947577 5.304005908431303e-07 1.6777434708338588 0.00104143912478279 1.1072385669244251 0.001223836363336966']
['59866.41352093339 2.784892126719533 0.0006428306943295894 0.31946050923920066 0.0001982919790200355 0.0008545162885390401 5.304058594371943e-07 1.6778388090294154 0.0010414494696430437 1.1070533176901174 0.0012238661280516098']
['59866.41355247136 2.7804437891010916 0.000642507349469735 0.31825901175763555 0.00019810906877557304 0.0008513024353742746 5.299165977641127e-07 1.6715284230968255 0.0010404888065943963 1.108915366004266 0.001222878837322347']
['59866.413584009315 2.784141060326035 0.0006427972909217065 0.31918412405150576 0.00019825570620923312 0.0008537769932647709 5.303088342751936e-07 1.6763872061528666 0.001041258961182947 1.1077538541731682 0.0012236864718791634']
['59866.41361554728 2.779711037418773 0.0006424344852501045 0.31855091401963176 0.0001981469712003489 0.000852083236851525 5.300179819365203e-07 1.6730615232123518 0.0010406878739514123 1.106649514206421 0.0012230099422441657']
['59866.413647085246 2.784072469322413 0.0006427630661615917 0.3190603828542617 0.00019820639027764135 0.0008534460012781238 5.301769204216472e-07 1.6757373049068367 0.001040999948937192 1.1083351644155763 0.0012234480998018211']
['59866.413678623205 2.784458747849909 0.0006427976613496412 0.31928484061850765 0.00019824750126347973 0.0008540463972898061 5.302868870873877e-07 1.676916179719053 0.0010412158679804608 1.107542568130856 0.0012236499978224462']
['59866.41371016117 2.783434598102341 0.0006427335233417591 0.31876364014087666 0.00019818144934475261 0.0008526522522081787 5.301102065938394e-07 1.6741787822525036 0.0010408689566426084 1.1092558158498376 0.0012233211217540486']
['59866.41374169913 2.779221986357029 0.0006424011958073007 0.3181955564685989 0.0001980939729120741 0.0008511327005353585 5.298762182465313e-07 1.6711951495199522 0.0010404095215970279 1.108026836837077 0.0012227556047732541']
['59866.413773237095 2.77957438611299 0.0006424217680263797 0.31841373175646287 0.00019814891644078767 0.0008517162917206367 5.300231852076351e-07 1.6723410281326834 0.0010406980905503555 1.1072333579803064 0.0012230119556689931']
['59866.41380477506 2.7849478733123227 0.0006428129188379109 0.3194273393060767 0.00019828419390855288 0.0008544275631807425 5.303850352527408e-07 1.677664597195781 0.0010414085814524838 1.1072832761165416 0.001223821997738147']
['59866.41383631302 2.7818603315059933 0.0006426156955164676 0.31852879134068024 0.00019814140807080353 0.0008520240614950617 5.300031012715421e-07 1.67294533267164 0.0010406586558340523 1.1089149988343534 0.0012230802794937256']
['59866.413867850984 2.785263065620022 0.0006428876440355399 0.31902066347376656 0.0001982180103809093 0.000853339756979933 5.302080027220561e-07 1.6755286947151606 0.0010410609788913303 1.1097343709048613 0.0012235654803171515']
['59866.41389938895 2.7849594322964983 0.0006428642699540524 0.3192980799894183 0.00019827360974980477 0.0008540818109255011 5.303567239723504e-07 1.6769857142301383 0.0010413529923834286 1.10797371806636 0.0012238016687067712']
['59866.41393092691 2.7824201408711953 0.0006426768053820743 0.31866722155019145 0.00019816491871314277 0.0008523943447239181 5.300659892537866e-07 1.6736723820913417 0.001040782136098439 1.1087477587798535 0.0012232174504141684']
['59866.413962464874 2.784966544970924 0.0006428439828506079 0.31931168800103943 0.00019827491316046163 0.0008541182106282768 5.303602104303153e-07 1.6770571848794087 0.0010413598380276346 1.1079093600915155 0.001223796837119697']
['59866.41399400283 2.785870509709545 0.0006429024058189369 0.3196987085970953 0.0001983312862096318 0.0008551534415684562 5.305110011770817e-07 1.6790898560771814 0.0010416559149665537 1.1067806536323634 0.0012240794698844457']
['59866.4140255408 2.7805993215009157 0.0006425140389031857 0.31861715639509613 0.00019818474581696568 0.0008522604267926562 5.301190242383347e-07 1.673409434848194 0.0010408862700470886 1.1071898866527217 0.0012232205513971']
['59866.414057078764 2.779533161597154 0.0006423863011523936 0.3184535385369887 0.0001981240630553871 0.0008518227698028091 5.299567055582389e-07 1.672550097358134 0.0010405675580640078 1.1069830642390202 0.0012228822522236333']
['59866.41408861672 2.7856604392496136 0.0006428786818039818 0.31966193096164774 0.00019833625041455787 0.0008550550660646458 5.305242797947708e-07 1.6788966962271417 0.0010416819874714176 1.106763743022472 0.0012240891971341092']
['59866.41412015469 2.7845009757958223 0.0006428122943464825 0.31944184747404586 0.0001983054176877438 0.0008544663706874233 5.30441806166511e-07 1.6777407955569636 0.0010415200508810075 1.1067601802388587 0.0012239165258097324']
['59866.414151692654 2.779382183311717 0.0006424390888155397 0.3182441735478393 0.00019810253770443997 0.0008512627450476241 5.298991279783226e-07 1.6714504913226855 0.00104045450475021 1.1079316919890314 0.0012228137876607156']
['59866.41418323061 2.7829628046714427 0.00064273582799909 0.3188005896185941 0.00019821033461285672 0.0008527510873682357 5.301874710173907e-07 1.6743728446354733 0.0010410206649834914 1.1085899600359694 0.0012234514169007066']
['59866.41421476858 2.7830686800411932 0.0006427108177506732 0.3185478508068552 0.00019812867441064874 0.0008520750431463968 5.299690403478901e-07 1.673045434909954 0.0010405917773668527 1.1100232451312393 0.0012230733593604451']
['59866.41424630654 2.780876724974918 0.0006425167633373837 0.31861565655157764 0.00019816469956099238 0.0008522564149017346 5.300654030496182e-07 1.6734015575187902 0.001040780985089246 1.1074751674561278 0.0012231323927085278']
['59866.4142778445 2.7819592779330717 0.0006426382924394228 0.31857613406149676 0.0001981616545944599 0.0008521506972603957 5.300572581508755e-07 1.6731939814154244 0.0010407649926179618 1.1087652965176473 0.0012231826293601963']
['59866.41430938247 2.7824385905560534 0.000642713750387047 0.31857426894260255 0.00019816005653541506 0.0008521457083042366 5.30052983545895e-07 1.6731841856229128 0.0010407565994507094 1.1092544049331405 0.0012232151340777254']
['59866.414340920426 2.7851495787371947 0.0006428599498480249 0.3190899137471229 0.0001982445159332113 0.0008535249926659016 5.302789017080771e-07 1.675892404134049 0.0010412001887248495 1.1092571746031457 0.0012236693785983481']
['59866.41437245839 2.7865360591226676 0.0006429529121365509 0.31944072720145467 0.00019829186708519722 0.0008544633741005241 5.304055600257183e-07 1.677734911772346 0.0010414488817499855 1.1088011473503216 0.0012239298266335233']
['59866.41440399636 2.7812628006890803 0.0006425897908753135 0.3184526832778619 0.00019813555614081734 0.0008518204820932687 5.299874481020642e-07 1.6725456054509555 0.001040627920907654 1.1087171952381247 0.0012230405181799032']
['59866.414435534316 2.7856991176691084 0.0006428691808192664 0.31938050366782167 0.00019827812150713232 0.0008543022837968577 5.303687923501774e-07 1.6774186117007441 0.00104137668858788 1.1082805059683642 0.0012238244119078083']
['59866.41446707228 2.7873379957128073 0.0006430982100339513 0.3194527487407761 0.0001983052158677125 0.000854495530191391 5.304412663235597e-07 1.6777980501091183 0.0010415189909018514 1.109539945603689 0.0012240658136546756']
['59866.41449861024 2.7799319574248154 0.0006424712266745846 0.31843551549783466 0.00019813988728418849 0.0008517745604621216 5.299990333604971e-07 1.6724554385390478 0.0010406506685093934 1.1074765188857676 0.0012229975842060331']
['59866.414530148206 2.7809034567301882 0.0006425483942549958 0.3185490955325021 0.00019813429993781125 0.0008520783726294136 5.299840879185693e-07 1.67305197233457 0.0010406213232027903 1.1078514843956182 0.0012230131549840336']
['59866.41456168617 2.7851245825568856 0.0006428488813832658 0.3195071108997778 0.00019831268864245778 0.0008546409420623534 5.304612550469097e-07 1.6780835656500934 0.0010415582386683708 1.1070410169067921 0.001223968238490556']
['59866.41459322413 2.783565061087175 0.0006427387612930402 0.31920923439003845 0.00019827602953853167 0.0008538441602311606 5.30363196599865e-07 1.6765190881829752 0.0010413657013578343 1.1070459729042 0.0012237465584151834']
['59866.414624762096 2.781379973216701 0.00064254222916121 0.3190289851928913 0.00019822912449858117 0.0008533620165216763 5.302377315752592e-07 1.6755724012231688 0.0010411193513580944 1.105807571993532 0.0012234337007078707']
['59866.41465630006 2.780903177843041 0.0006426123347003032 0.318389944782022 0.00019813430821220666 0.0008516526645851162 5.299841100515261e-07 1.6722160965442332 0.0010406213666607493 1.1086870812988079 0.0012230467862922743']
['59866.41468783802 2.7818098130151245 0.0006426473986349439 0.318387269727377 0.00019814697161693018 0.0008516455091536912 5.300179830508223e-07 1.6722020468874845 0.0010406878761393392 1.10960776612764 0.0012231217987247506']
['59866.414719375985 2.7856620479327256 0.0006429363708667202 0.3192287155882386 0.00019825698554124291 0.0008538962699621002 5.303122563258359e-07 1.6766214054004132 0.001041265680363671 1.1090406425323125 0.001223765252851415']
['59866.414750913944 2.7830414695262418 0.0006426994693557321 0.31885979995085834 0.00019819937716549835 0.0008529094674869243 5.30158161237378e-07 1.674683823271315 0.0010409631153650125 1.1083576462549267 0.001223383347712634']
['59866.41478245191 2.781131350671319 0.0006426304026967782 0.3183982424319405 0.00019813786310988538 0.0008516748597447896 5.299936189513203e-07 1.6722596766383429 0.0010406400373418351 1.108871674032976 0.0012230721654052305']
['59866.414813989875 2.7811122065252474 0.0006426038854793935 0.3184071974294951 0.0001981305203949567 0.0008516988132259021 5.299739781214613e-07 1.6723067091885246 0.0010406014726625878 1.1088054973367227 0.0012230254202349026']
['59866.414845527834 2.7867855177332337 0.0006430591114225194 0.3195474586999706 0.00019831528203489637 0.0008547488673034218 5.304681920423044e-07 1.678295476365392 0.0010415718594269769 1.1084900413678418 0.0012240902577562204']
['59866.4148770658 2.7860685341004636 0.0006429306285224622 0.31940933905391955 0.0001982750752745916 0.0008543794147923777 5.303606440650234e-07 1.6775700580563002 0.001041360689467393 1.1084984760441634 0.0012238430776289467']
['59866.414908603765 2.7825853564865244 0.0006426603931590735 0.3188757500723353 0.0001982071840549974 0.0008529521320361004 5.301790436752595e-07 1.6747675949177276 0.0010410041179359107 1.1078177615687967 0.0012233977090443232']
['59866.41494014172 2.7833179169603737 0.0006427699447949448 0.31909407170074494 0.0001982321340930666 0.0008535361146637518 5.302457818582686e-07 1.6759142421257613 0.0010411351580518204 1.1074036748346123 0.0012235667612612256']
['59866.41497167969 2.782336959888479 0.0006426763974344332 0.31866328950711487 0.0001981918176798101 0.0008523838270080847 5.301379405732685e-07 1.673651730604595 0.0010409234121838767 1.1086852292838838 0.001223337443983395']
['59866.41500321765 2.78303572031204 0.000642734865193391 0.3189578814609349 0.00019821301698631847 0.0008531718230693545 5.301946460257211e-07 1.6751989572528094 0.0010410347530794039 1.1078367630592307 0.0012234628985197148']
['59866.41503475561 2.7873000680587268 0.0006430870812242734 0.3193029495903789 0.00019826010430359266 0.0008540948364895981 5.303205986190173e-07 1.6770112898654357 0.0010412820604180288 1.110288778193291 0.0012238583755426811']
['59866.41506629358 2.7881893983547115 0.0006431993317058097 0.31975371314786116 0.0001983481494520652 0.0008553005717557995 5.305561082088436e-07 1.679378745524481 0.001041744482416309 1.1088106528302304 0.0012243108048823322']
['59866.41509783154 2.785154584495614 0.000642917654169526 0.31912726304727695 0.0001982614925228251 0.0008536248973001964 5.303243119291507e-07 1.6760885664247742 0.0010412893514854262 1.1090660180708398 0.001223775560942359']
['59866.4151293695 2.7877716550661598 0.0006431053523427271 0.31970070159378217 0.00019834778119691082 0.0008551587725814692 5.305551231730765e-07 1.6791003234967552 0.001041742548303103 1.1086713315694046 0.001224259789079469']
['59866.41516090747 2.7823662534245504 0.0006427023106988376 0.31859357872084204 0.00019815900092638988 0.0008521973595085529 5.300501599258222e-07 1.673285602525431 0.0010407510552856614 1.1090806508991193 0.0012232044061626997']
['59866.41519244543 2.7828963849659045 0.000642717879216876 0.3187661615224623 0.0001981966628279216 0.0008526589965836875 5.301509007290997e-07 1.6741920248028483 0.0010409488593903446 1.1087043601630562 0.001223380889229147']
['59866.41522398339 2.7852696398652643 0.0006429396582010637 0.31888418825474835 0.00019822217968047508 0.0008529747031023482 5.30219155068865e-07 1.67481191310267 0.0010410828764730836 1.1104577267625944 0.0012236114415014147']
['59866.41525552135 2.7881443873419234 0.0006431211562778865 0.31972651811426106 0.00019833397035313202 0.0008552278284948751 5.305181809200401e-07 1.679235914465657 0.0010416700123588869 1.1089084728762664 0.0012242063699801472']
['59866.41528705932 2.783066671127613 0.0006427410377220428 0.31891292948119976 0.00019822997243616327 0.0008530515822327728 5.302399997005974e-07 1.6749628649222676 0.0010411238048117818 1.1081038062053452 0.0012235419153088993']
['59866.41531859728 2.7883442899078847 0.0006431391295476967 0.3197312570424685 0.00019834678238458598 0.0008552405045259536 5.305524514769636e-07 1.6792608037944776 0.0010417373024400524 1.1090834861134071 0.0012242730689067886']
['59866.41535013524 2.789153248234279 0.0006432250730295963 0.3198157638275607 0.0001983533875361168 0.0008554665494431339 5.305701194184089e-07 1.6797046419514745 0.001041771993361958 1.1094486062828046 0.0012243477368490037']
['59866.41538167321 2.7821487516589247 0.0006426797430921021 0.31891660488976104 0.0001982318597648332 0.0008530614134838722 5.302450480650858e-07 1.674982168538661 0.0010411337172522752 1.1071665831202637 0.0012235181524523741']
['59866.41541321117 2.784314864429269 0.0006428769510919224 0.3190090344851284 0.00019824043279819127 0.0008533086509122873 5.302679798404847e-07 1.675467618094162 0.0010411787436879795 1.108847246335107 0.0012236600633153496']
['59866.41544474913 2.784421878813139 0.0006428413046632882 0.3190933008639454 0.00019825055413380847 0.0008535340527732146 5.302950531277816e-07 1.6759101936131586 0.0010412319019632798 1.1085116851999806 0.0012236865679769748']
['59866.4154762871 2.783455455619621 0.0006427777106114609 0.3189532997404382 0.00019822330100356013 0.0008531595675489357 5.302221544657018e-07 1.6751748935947384 0.0010410887657750008 1.1082805620248828 0.0012235313659575']
['59866.415507825055 2.7885846153270633 0.0006432270674467374 0.31974607377121067 0.0001983566233579388 0.0008552801373935127 5.305787748308112e-07 1.6793386227479554 0.0010417889882244685 1.1092459925791078 0.0012243632452348001']
['59866.41553936302 2.7887963599168692 0.0006432605629512408 0.3195793354162168 0.00019832760356540551 0.0008548341334708189 5.305011505714975e-07 1.678462896093576 0.0010416365733477181 1.1103334638232933 0.0012242511600092211']
['59866.41557090099 2.785946885016572 0.0006430161621646821 0.3192616188645267 0.00019827498232553623 0.000853984282047229 5.303603954381055e-07 1.6767942167254553 0.0010413602012895812 1.1091526682911168 0.001223887598448025']
['59866.415602438945 2.784275078497216 0.000642883036419478 0.3186189987748761 0.00019817565097833998 0.0008522653549245728 5.300946967001179e-07 1.6734191112125847 0.0010408385030375 1.1108559672846312 0.0012233737727780794']
['59866.41563397691 2.7878921777831813 0.0006431672180828179 0.31966291085932524 0.00019832765321724883 0.0008550576871664794 5.305012833838722e-07 1.6789018427485571 0.0010416368341242062 1.1089903350346242 0.0012242023381045675']
['59866.415665514876 2.7833110937757666 0.0006427705259514758 0.31902409202747917 0.00019823938243054178 0.0008533489279256645 5.302651702404262e-07 1.6755467018249959 0.001041173227051165 1.1077643919507707 0.001223599459692621']
['59866.415697052835 2.7851235516198214 0.000642959552375764 0.31915138130683707 0.0001982708806951583 0.0008536894105813352 5.303494240977797e-07 1.676215237956077 0.0010413386591132266 1.1089083136637443 0.0012238395274524253']
['59866.4157285908 2.789758243468916 0.0006432892919085577 0.319832198415275 0.0001983689428417283 0.0008555105098779643 5.306117278852892e-07 1.6797909580634192 0.0010418536913956319 1.109967285405497 0.0012244509901825054']
['59866.41576012876 2.7849839800761824 0.0006429770373284647 0.3188504710171295 0.00019821266301496733 0.0008528845137740382 5.301936991973135e-07 1.6746348267706384 0.001041032893986173 1.110349153305544 0.0012235885570292474']
['59866.415791666725 2.78934747838601 0.0006432804163534963 0.31976010348524964 0.00019835323581016178 0.0008553176650966971 5.305697135707495e-07 1.6794123082208492 0.0010417711964819422 1.109935170165161 0.0012243761349697015']
['59866.41582320469 2.785022621697634 0.0006429297779211319 0.31887776957989766 0.0001981939508893228 0.0008529575339623383 5.301436466377827e-07 1.674778201575093 0.001040934616015351 1.110244420122541 0.0012234801077895554']
['59866.41585474265 2.7833186291075105 0.0006427976692863097 0.3187178161363613 0.00019817758651769854 0.000852529678816063 5.300998740220752e-07 1.673938109959881 0.0010408486686853916 1.1093805191476296 0.001223337563693711']
['59866.415886280614 2.7894272234141937 0.0006432890977927124 0.31978871014661736 0.00019836515859310516 0.0008553941842826135 5.306016055008479e-07 1.6795625532910576 0.0010418338161402583 1.109864670123136 0.0012244339769021176']
['59866.41591781857 2.7853413704974734 0.0006429612091472025 0.31891654075940556 0.00019822080531714878 0.0008530612419433162 5.302154788215207e-07 1.674981831719567 0.0010410756581783025 1.1103595387779064 0.0012236166239960205']
['59866.41594935654 2.7897189413429953 0.0006433022753719365 0.31987896274574057 0.00019837656658270819 0.000855635598522569 5.306321204241431e-07 1.6800365690427552 0.001041893732052039 1.10968237230024 0.0012244918808991903']
['59866.415980894504 2.7842942053004283 0.0006428583638856895 0.31895705720119 0.00019821995743742957 0.0008531696182792236 5.302132108509584e-07 1.6751946281575105 0.001041071205028517 1.1090995771429177 0.001223558797098576']
['59866.41601243246 2.7903878456699314 0.0006433649001214804 0.31994224274506744 0.00019838239819461255 0.0008558048644837744 5.306477192453324e-07 1.6803689219803963 0.0010419243602658222 1.110018923689535 0.0012245508430537564']
['59866.41604397043 2.7885108847878604 0.0006432899093559895 0.3193300509955522 0.00019828117749065756 0.0008541673293063722 5.303769667179766e-07 1.6771536291783202 0.001041392738921521 1.1113572556095401 0.0012240591260873407']
['59866.416075508394 2.7866293959529704 0.0006430962980575928 0.3193066169036193 0.00019828021390237252 0.0008541046460867421 5.303743892416964e-07 1.677030550964387 0.0010413876780586793 1.1095988449885834 0.001223953081040212']
['59866.41610704635 2.78829148252636 0.000643245808129657 0.31919647894432457 0.0001982804391519721 0.000853810041033905 5.30374991755767e-07 1.6764520952958224 0.0010413888610922904 1.1118393872305374 0.0012240326505790085']
['59866.41613858432 2.79044765451538 0.0006433638227514142 0.320005559634168 0.0001983975628312942 0.0008559742291204392 5.30688282722443e-07 1.6807014686668489 0.0010420040064668813 1.1097461858485311 0.001224618045726236']
['59866.41617012228 2.7907818861920184 0.0006434263141713817 0.3200625447230919 0.00019840383611034398 0.0008561266569958136 5.307050629471517e-07 1.681000760100273 0.0010420369543610503 1.1097811260917454 0.0012246789113976868']
['59866.41620166024 2.785679206784013 0.0006430683282427071 0.3189609219780149 0.0001982186981497581 0.000853179956066377 5.302098424163753e-07 1.6752149263551204 0.001041064591122679 1.1104642804288927 0.0012236634985478242']
['59866.41623319821 2.792344095515131 0.0006435525183931939 0.32034353897828616 0.00019847061854945272 0.0008568782809402604 5.308836974899398e-07 1.682476570264108 0.0010423877024656131 1.1098675252510228 0.0012250436588880258']
['59866.416264736166 2.7853561665242985 0.0006429748390477945 0.31910084894509644 0.00019824094348060096 0.0008535542429316356 5.302693458510704e-07 1.675949836896515 0.0010411814258434926 1.1094063296277834 0.0012237137758356834']
['59866.41629627413 2.7871296781162105 0.0006431402887688678 0.31903510575857263 0.00019824657882978061 0.00085337838825752 5.30284419694398e-07 1.675604547051327 0.0010412110232656546 1.1115251310648835 0.001223825896934533']
['59866.4163278121 2.7857626362733017 0.0006430194590530549 0.3188451348015921 0.00019823312004246856 0.0008528702400752116 5.302484191476965e-07 1.67460680042853 0.001041140336357503 1.1111558358447717 0.0012237022614637507']
['59866.416359350056 2.792420170070022 0.0006435226280516515 0.3202941828515674 0.00019843524417615332 0.0008567462595698544 5.307890755341519e-07 1.6822173469094928 0.001042201912689881 1.1102028231605292 0.0012248698704878614']
['59866.41639088802 2.7917675066847343 0.0006435041585851262 0.32000721900928775 0.00019839544013808822 0.0008559786677381324 5.306826047877136e-07 1.6807101838723095 0.0010419928578681104 1.1110573228124248 0.0012246822926638987']
['59866.41642242598 2.786448520550297 0.000643065753312806 0.31927719861504755 0.00019828751634577737 0.0008540259559011372 5.30393922350344e-07 1.6768760431462584 0.0010414260312278224 1.1095724774040387 0.0012239696653114814']
['59866.416453963946 2.7865545880066307 0.0006431203027043086 0.31924641338798543 0.00019828828208554456 0.000853943609328681 5.30395970606967e-07 1.6767143560293354 0.001041430052970297 1.1098402319772953 0.0012240017479481788']
['59866.41648550191 2.7931346655822984 0.0006436769448882242 0.3201557785677558 0.0001984220211636477 0.0008563760456889516 5.307537056551127e-07 1.6814904336541796 0.0010421324640947885 1.1116442319281188 0.001224891865472587']
['59866.41651703987 2.7930640000490587 0.0006436140868973327 0.32038693442331617 0.0001984736350368918 0.0008569943582441965 5.308917662107247e-07 1.6827044875174169 0.0010424035453618268 1.110359512531642 0.0012250894841747656']
['59866.416548577836 2.791842054098394 0.0006435439355268528 0.3199485355113578 0.00019840626236819118 0.0008558216968343767 5.307115528787416e-07 1.680401972223518 0.0010420496973119284 1.1114400818748762 0.0012247515538350102']
['59866.4165801158 2.792315968784206 0.0006435711812428559 0.32032549783468756 0.00019845070644408782 0.0008568300231724831 5.308304351370627e-07 1.6823818163586532 0.0010422831220802933 1.1099341524255528 0.0012249644778114053']
['59866.41661165376 2.793637321183355 0.0006436543868222398 0.3203327622066372 0.0001984701363956835 0.0008568494544448234 5.308824077898439e-07 1.6824199695726745 0.0010423851701453965 1.1112173516106805 0.0012250950218715938']
['59866.416643191726 2.792360197215822 0.0006435415591180151 0.3201998579141194 0.00019844160407597055 0.000856493952342095 5.308060874584121e-07 1.6817219428262575 0.0010422353155250556 1.1106382543895643 0.001224908237885458']
['59866.416674729684 2.7939089936535657 0.0006437090740370733 0.32041746445610464 0.0001984667631743308 0.0008570760222043821 5.308733848511478e-07 1.6828648343282808 0.0010423674536466957 1.1110441593252849 0.0012251086810644851']
['59866.41670626765 2.7929579371346254 0.0006436319000180965 0.32013050403475407 0.00019841961162157527 0.0008563084395232111 5.307472604360973e-07 1.6813576892581623 0.001042119808936845 1.111600247876463 0.0012248574279888542']
['59866.416737805615 2.7880700605498703 0.0006432248527347245 0.31948462558958296 0.00019832531090776965 0.0008545807967133709 5.304950180035047e-07 1.677965470533524 0.0010416245320786222 1.1101045900163462 0.0012242221518187035']
['59866.416769343574 2.7891689664379875 0.0006433778262975497 0.3191947633305783 0.0001982728662532118 0.0008538054519850284 5.303547352133934e-07 1.6764430847194238 0.0010413490874643478 1.1127258817185637 0.0012240681963576173']
['59866.41680088154 2.7898723884895285 0.0006434564267957614 0.31948762352515225 0.0001983330283313539 0.0008545888158102604 5.305156611314268e-07 1.6779812159934469 0.0010416650647655141 1.1118911724960816 0.0012243783240231394']
['59866.416832419505 2.7878561037565968 0.0006432540832973598 0.31927986915058515 0.00019828674710684315 0.0008540330992445239 5.303918647338936e-07 1.6768900690681994 0.0010414219911073696 1.1109660346883974 0.0012240651858625687']
['59866.416863957464 2.7916068181308913 0.0006435793743386444 0.31970327233025786 0.00019835258827366112 0.0008551656489750406 5.305679814928519e-07 1.6791138252639595 0.001041767795554943 1.1124929928669318 0.0012245303389175487']
['59866.41689549543 2.7886382758773856 0.0006432454841309814 0.3196422066352338 0.000198355298646655 0.0008550023059966132 5.305752313963746e-07 1.6787931020758078 0.001041782030707222 1.1098451738015778 0.0012243670006821335']
['59866.41692703339 2.7945766389562983 0.0006437531710883676 0.32049976099631744 0.00019849260609326958 0.0008572961549972262 5.30942511377081e-07 1.6832970640562892 0.0010425031832629705 1.111279574900009 0.0012252473351939011']
['59866.41695857135 2.78840967267715 0.000643324387475165 0.31923138282646235 0.00019829335203970535 0.0008539034044855911 5.304095320904282e-07 1.6766354140045292 0.0010414566808808056 1.111774258672621 0.0012241316455641363']
['59866.41699010932 2.788818409906521 0.0006433241113804708 0.31934680020897666 0.00019831641746968065 0.0008542121313250177 5.304712291861442e-07 1.677241597736222 0.0010415778228449613 1.1115768121702991 0.0012242345663008875']
['59866.41702164728 2.794510651874158 0.0006438219639893524 0.32030923969939984 0.00019846333717151324 0.0008567865347254832 5.308642207287366e-07 1.6822964269926464 0.0010423494599344184 1.1122142248815117 0.001225152691684053']
['59866.41705318524 2.789797472630696 0.0006434195224434446 0.31965855800250476 0.00019838015905366337 0.0008550460438273273 5.306417298276796e-07 1.6788789811055924 0.0010419126000717615 1.1109184915251036 0.0012245695358164227']
['59866.41708472321 2.7945372738167857 0.0006438131553256371 0.3204013394833197 0.0001984663710544959 0.0008570328899501646 5.308723359803913e-07 1.6827801443451669 0.001042365394193781 1.1117571294716189 0.0012251616195356062']
['59866.41711626117 2.7892424320131353 0.0006434088866400582 0.31953118281992265 0.00019835046831613261 0.000854705331391442 5.305623108757122e-07 1.6782099938021149 0.001041756661324226 1.1110324382110204 0.0012244312707623884']
['59866.41714779913 2.788853339099755 0.0006433264017435828 0.3193492220494451 0.00019830566469419817 0.0008542186094406804 5.304424668774048e-07 1.6772543174865815 0.001041521348183814 1.1115990216131735 0.0012241877216762856']
['59866.41717933709 2.7959959861482626 0.0006439249480903603 0.32059002316159413 0.00019850492205794693 0.0008575375948254273 5.309754550183809e-07 1.6837711300503895 0.001042567867951402 1.1122248560978731 0.001225392630163045']
['59866.41721087506 2.7887191202484853 0.0006433171531948573 0.31940376976815293 0.00019831209529345246 0.0008543645176602895 5.304596679136799e-07 1.6775408076058453 0.0010415551223395612 1.11117831264264 0.001224211596280036']
['59866.41724241302 2.791798415477447 0.0006436015066660958 0.3197754893651599 0.00019838093060335304 0.0008553588203713448 5.306437936251074e-07 1.6794931164136553 0.0010419166523285349 1.1123052990637918 0.0012246686122304145']
['59866.41727395098 2.7917925136018646 0.0006435178300127489 0.3199092060910608 0.0001983880167382307 0.0008557164956301883 5.306627481359175e-07 1.6801954101421264 0.0010419538694234807 1.1115971034597383 0.0012246563042547412']
['59866.41730548895 2.795132128985923 0.0006438323207411072 0.320559842227604 0.00019849154455513047 0.0008574568646601893 5.309396718973815e-07 1.6836126167416177 0.0010424976079576181 1.1115195122443053 0.0012252841792124126']
['59866.41733702691 2.7925916873052525 0.000643623929831448 0.32005518946867695 0.00019841976705015644 0.0008561069826244212 5.307476761878114e-07 1.680962129562379 0.0010421206252634269 1.1116295577428736 0.0012248539344146764']
['59866.41736856487 2.7901335839958183 0.0006434088052221803 0.3197363258133046 0.00019838520753686194 0.0008552540628441714 5.306552338790439e-07 1.6792874254900452 0.001041939115214611 1.1108461585057732 0.0012245864650777584']
['59866.41740010284 2.796485759544716 0.0006439501395921365 0.32051051182715345 0.00019847086522057578 0.0008573249121042834 5.308843573038651e-07 1.6833535285039574 0.001042388998007226 1.1131322310407588 0.0012252536902402052']
['59866.417431640795 2.7957210185849934 0.000643892770409122 0.32065089914619915 0.00019850854289953378 0.0008577004303525782 5.30985140309754e-07 1.68409085686029 0.0010425868849765429 1.1116301617247035 0.0012253919016013714']
['59866.41746317876 2.79202927153606 0.0006436317045210762 0.319977787607937 0.00019842127452038887 0.000855899942477509 5.307517084792241e-07 1.680555607184543 0.0010421285426491012 1.111473664351517 0.0012248647559908994']
['59866.41749471673 2.7905915676577244 0.0006434731655889721 0.31952380602079467 0.00019832425021525907 0.0008546855993906787 5.304921807857541e-07 1.6781712501092156 0.001041618961214596 1.1124203175485088 0.001224347897941948']
['59866.417526254685 2.7905851442173066 0.0006435168678581355 0.31961193144016314 0.00019836460353785522 0.0008549213236949567 5.306001207985501e-07 1.678634093698336 0.0010418309009341137 1.1119510505189707 0.0012245511771090385']
['59866.41755779265 2.795354436890962 0.0006438800557612675 0.3205076079124524 0.00019850330066700387 0.0008573171445012751 5.309711180035361e-07 1.6833382768511156 0.0010425593522426675 1.1120161600398466 0.0012253617952081677']
['59866.41758933062 2.790174144154082 0.0006434998321896249 0.3194085602033028 0.00019833353893497808 0.0008543773314658973 5.305170269312714e-07 1.6775659674543215 0.001041667746507238 1.1126081766997604 0.0012244034172369592']
['59866.417620868575 2.796732650463427 0.0006439657655372761 0.3206099264169031 0.00019849772898254878 0.0008575908335055289 5.309562144552608e-07 1.683875663954323 0.0010425300891940589 1.112856986509104 0.0012253819380336004']
['59866.41765240654 2.7964159102059853 0.0006439536837604491 0.32078027182748836 0.0001985254322662493 0.000858046485843809 5.310303172206527e-07 1.6847703352284056 0.0010426755896336625 1.1116455749775798 0.0012254993806797938']
['59866.4176839445 2.7971418010266866 0.000644059951920423 0.3209583765080855 0.00019858823953624918 0.0008585228932438902 5.311983186909482e-07 1.6857057589710374 0.001043005459749208 1.1114360420556493 0.0012258358824632253']
['59866.417715482465 2.7971291182791624 0.000643973063868011 0.32082563562734223 0.00019854162199774847 0.0008581678282469043 5.310736226962059e-07 1.6850085904797387 0.0010427606197360739 1.1121205277994237 0.0012255819095678242']
['59866.41774702043 2.7939990590709 0.0006437559096525459 0.32037708112371993 0.00019849321247446516 0.0008569680019192132 5.309441333697646e-07 1.6826527369943276 0.0010425063680381574 1.1113463220765725 0.0012252514838239073']
['59866.41777855839 2.7926733598010767 0.0006436993569705828 0.31984922853220943 0.00019840198044811526 0.0008555560632778223 5.307000992863718e-07 1.6798804019548816 0.0010420272082358997 1.112792957846195 0.001224814094002941']
['59866.417810096355 2.797233775867358 0.0006440742731927489 0.3206464329288614 0.00019851730503665546 0.00085768848378844 5.310085779137031e-07 1.6840673998364573 0.0010426329046042831 1.113166376030901 0.001225526435109554']
['59866.41784163432 2.794672419743223 0.000643878210896803 0.3203183828118799 0.00019849130135791748 0.0008568109913901293 5.309390213757245e-07 1.6823444475413862 0.0010424963306613314 1.1123279722018369 0.0012253072063405192']
['59866.41787317228 2.7983928195460424 0.0006441560132803949 0.3209166287805754 0.00019855488043085922 0.0008584112233750485 5.311090873208653e-07 1.6854864956962996 0.0010428302543637564 1.1129063238497428 0.001225737291943779']
['59866.417904710244 2.795159190781196 0.0006439368667307288 0.3203136785782974 0.00019846667866135764 0.000856798408162766 5.308731587896782e-07 1.6823197404322343 0.001042367009776038 1.1128394503489618 0.00122522800792523']
['59866.4179362482 2.7917549379773585 0.0006436208125900016 0.31944624193836113 0.00019832271993788222 0.0008544781253213394 5.304880874881268e-07 1.6777638757266866 0.0010416109240434992 1.113991062250672 0.0012244186651165386']
['59866.41796778617 2.7937245858313897 0.0006438030065986914 0.3198594383560287 0.00019841305336301926 0.0008555833732598211 5.307297179274037e-07 1.6799340249791423 0.0010420853643015717 1.1137905608522474 0.0012249180453389745']
['59866.417999324134 2.7931064771810306 0.0006437135723911803 0.3199405926225597 0.0001984232513762302 0.0008558004506156431 5.307569963175255e-07 1.6803602553705868 0.0010421389252953269 1.1127462218104438 0.0012249166105887837']
['59866.41803086209 2.799454233135936 0.0006442631024576268 0.3206713082478905 0.0001984972716798604 0.0008577550221075066 5.3095499122865e-07 1.6841980475204332 0.0010425276873942248 1.115256185615503 0.0012255361782386829']
['59866.41806240006 2.7989155847339005 0.0006441812563987106 0.3212062348628084 0.00019860324789426484 0.000859185882863063 5.312384641424758e-07 1.687007536044162 0.0010430842851589543 1.1119080486897384 0.0012259666867582447']
['59866.418093938024 2.793602810701326 0.0006437774611586901 0.3200049407248603 0.00019842505690768628 0.0008559725736166468 5.307618258848556e-07 1.6806982180927537 0.0010421484081286046 1.1129045926085723 0.0012249582540074227']
['59866.41812547598 2.7997848875043276 0.0006442816897541127 0.32086783987041734 0.000198558310238123 0.0008582807192369019 5.311182616196868e-07 1.6852302514202593 0.0010428482680573687 1.1145546360840684 0.0012258186676432482']
['59866.41815701395 2.7972274766821377 0.0006441062163985301 0.3202708178192638 0.0001984618613683767 0.0008566837610759616 5.308602731427835e-07 1.6820946314036966 0.0010423417088675246 1.115132845278441 0.0012252954974405568']
['59866.41818855191 2.799889379022247 0.0006442759201273316 0.3212828646822466 0.00019863457384840778 0.0008593908578975474 5.31322257091197e-07 1.687410003583228 0.0010432488122290324 1.1124793754390192 0.0012261564115043425']
['59866.41822008987 2.7930610253988135 0.0006437573408082799 0.31978453359060927 0.0001983879027627848 0.0008553830125257431 5.306624432660754e-07 1.6795406175977379 0.0010419532708129456 1.1135204078010756 0.0012247816672380197']
['59866.41825162784 2.796520016158139 0.00064404961247342 0.3201376546228729 0.00019843927048015402 0.0008563275664382553 5.307998453859855e-07 1.6813952448680303 0.0010422230592445063 1.1151247712901087 0.0012251648087290706']
['59866.418283165796 2.794750749435321 0.000643900657558495 0.3201673264047023 0.00019843944053104577 0.000856406934686129 5.308003002505233e-07 1.6815510840583106 0.001042223952368938 1.1131996653770104 0.0012250872718691482']
['59866.41831470376 2.793912800099912 0.0006438647321083755 0.3195971356034545 0.00019831818303772022 0.0008548817467109338 5.304759518564108e-07 1.678556384471925 0.0010415870957863457 1.115356415627987 0.0012245266315444611']
['59866.41834624173 2.798458319343335 0.0006441589000121627 0.3208623457954182 0.00019854270491993965 0.0008582660232840645 5.310765193755288e-07 1.6852013959843395 0.0010427663073526243 1.1132569233589955 0.0012256844048182663']
['59866.418377779686 2.795773071221807 0.0006439862183358996 0.32040961098828313 0.00019848871087088725 0.0008570550151754038 5.309320921519282e-07 1.682823587123336 0.001042482725162223 1.1129494840984713 0.0012253523908118138']
['59866.41840931765 2.7953201517857993 0.0006439488820326759 0.3202962801509289 0.00019849441034090108 0.000856751869579275 5.309473375103434e-07 1.6822283621372318 0.0010425126593534722 1.1130917896485675 0.0012253582364285891']
['59866.41844085561 2.801435441322253 0.0006444668030343857 0.3213292349422818 0.0001986429885838237 0.0008595148924538006 5.313447654397056e-07 1.6876535448649257 0.0010432930072679818 1.1137818964573274 0.0012262943199850642']
['59866.418472393576 2.796026904630909 0.000644033753302495 0.3203249122003644 0.00019849337738760798 0.0008568284566750483 5.309445744914766e-07 1.6823787405481325 0.0010425072341786134 1.1136481640827767 0.0012253982245407577']
['59866.41850393154 2.800849464676191 0.0006443649664690477 0.32134461770015527 0.00019864413021957852 0.0008595560393773962 5.313478191703541e-07 1.6877343366604793 0.001043299003254089 1.1131151280157114 0.0012262459052749708']
['59866.4185354695 2.797345554587465 0.0006441172269507288 0.3205973920556625 0.00019853265355063962 0.0008575573056811602 5.310496332392441e-07 1.6838098322251185 0.001042713516547477 1.1135357223623463 0.0012256175911129466']
['59866.418567007466 2.795960466516623 0.0006440359742469474 0.3201153763587509 0.00019844280983332806 0.0008562679749112213 5.30809312706204e-07 1.6812782371783137 0.0010422416482842862 1.1146822293383094 0.0012251734528394582']
['59866.41859854543 2.801450488117743 0.0006444666973489285 0.3211042326750979 0.0001986193277415851 0.0008589130399659148 5.312814756918065e-07 1.6864718102683716 0.001043168738138577 1.1149786778493715 0.0012261885418733396']
['59866.41863008339 2.8010930726198793 0.000644430523556461 0.3212073657907304 0.00019862925479025912 0.0008591889079516186 5.313080292862063e-07 1.6870134757916513 0.0010432208759992602 1.114079596828228 0.001226213886649437']
['59866.418661621356 2.7967201723294792 0.0006440967754145432 0.3203603889650346 0.0001985087524878201 0.0008569233525147486 5.309857009318008e-07 1.6825650680936692 0.0010425879857553578 1.11415510423581 0.001225500046569084']
['59866.418693159314 2.798400989418608 0.0006442024153725406 0.32074846593304407 0.00019855570493066327 0.0008579614091157372 5.31111292753124e-07 1.6846032874634669 0.00104283458471987 1.113797701955141 0.001225765362155286']
['59866.41872469728 2.8026029136909236 0.0006445575757114849 0.3214468475459547 0.00019867357766987308 0.0008598294912310182 5.314265873598638e-07 1.6882712581195103 0.0010434536642325268 1.1143316555714133 0.0012264787066261498']
['59866.418756235245 2.8015071198759776 0.0006445029479303371 0.32143822900141344 0.0001986825599717512 0.0008598064377189846 5.314506138765739e-07 1.6882259926544825 0.001043500840187769 1.113281127221495 0.0012264901358606496']
['59866.418787773204 2.7959400473751517 0.0006439941370426313 0.3202406244084558 0.00019847291499791518 0.0008566029975368204 5.308898401979122e-07 1.6819360525654192 0.0010423997636445127 1.1140039948097324 0.0012252859730656428']
['59866.41881931117 2.7959905001571093 0.0006440297213848358 0.32024800351967364 0.00019847893693310836 0.0008566227357221304 5.309059481097268e-07 1.6819748084016473 0.001042431391455401 1.114015691755462 0.0012253315828455059']
['59866.418850849135 2.8024700058465206 0.0006444986807046264 0.3215976497795124 0.0001987124045519657 0.0008602328680528669 5.315304443381813e-07 1.689063286657103 0.0010436575869325932 1.1134067191894177 0.001226621257027599']
['59866.41888238709 2.80300214597244 0.0006445887051002367 0.3219127163587493 0.00019872326444066683 0.0008610756311367092 5.315594931611764e-07 1.6907180481026751 0.001043714624163166 1.112284097869765 0.001226717088588424']
['59866.41891392506 2.8017762476555923 0.0006444881120683983 0.32113530196449436 0.00019860959349143656 0.0008589961463690374 5.312554378089757e-07 1.686634989309319 0.001043117612875192 1.1151412583462732 0.0012261563036121974']
['59866.41894546302 2.8027783756330766 0.0006445945638903118 0.32136336602187443 0.00019865443978318097 0.0008596061887568296 5.313753959436053e-07 1.6878328047367355 0.0010433531501217487 1.1149455708963412 0.0012264126335234473']
['59866.41897700098 2.796474853190019 0.000644075225121211 0.3202670515726921 0.00019849097655495082 0.0008566736868447214 5.309381525690408e-07 1.6820748506969123 0.0010424946247633972 1.1144000024931067 0.0012254092941852183']
['59866.41900853895 2.8023226040127813 0.0006445514930436064 0.32142852257200316 0.0001986609544158482 0.0008597804742530952 5.313928217585872e-07 1.6881750135084201 0.0010433873656294549 1.1141475905043612 0.0012264191053387565']
['59866.41904007691 2.8036737731904635 0.0006447143231480933 0.3215016244440923 0.00019868842390454938 0.0008599760124764945 5.314662991520494e-07 1.6885589519122497 0.001043531638154146 1.1151148212782138 0.001226627424404403']
['59866.41907161487 2.803422678583953 0.0006446311715404577 0.3212777699957329 0.0001986285164541085 0.0008593772302581833 5.313060543307771e-07 1.6873832457759081 0.001043216998183343 1.1160394328080447 0.0012263160492386488']
['59866.41910315284 2.8078839565943188 0.0006450888358377862 0.32465816602827713 0.0001997483311428269 0.0008684193603117573 5.343014163989526e-07 1.7051374266191026 0.0010490983778509817 1.1027465299752162 0.0012315628333674701']
['59866.4191346908 2.803373802675657 0.0006446478873941977 0.32141061969493695 0.00019866331425708516 0.0008597325863307312 5.3139913403418e-07 1.6880809857927361 0.0010433997597535988 1.115292816882921 0.0012264803126734933']
['59866.41916622876 2.7992144130127636 0.0006443225086156079 0.32051813409642593 0.00019851115960787196 0.0008573453007065067 5.309921396722187e-07 1.6833935614308084 0.0010426006281926048 1.1158208515819552 0.0012256294566533247']
['59866.41919776672 2.8040854031339717 0.0006447093979834385 0.32174400623942967 0.00019871550627317418 0.0008606243529948714 5.315387410484742e-07 1.6898319655432232 0.0010436738774851587 1.1142534375907485 0.0012267458458837647']
['59866.41922930469 2.798344042280757 0.0006442454572951456 0.32009427843833327 0.00019844415003960272 0.0008562115406536846 5.308128975877734e-07 1.681167428772759 0.0010422486871827876 1.117176613507998 0.0012252895719705099']
['59866.41926084265 2.799481953849752 0.0006443467424397884 0.3208829303846492 0.00019858436008458286 0.0008583210844458734 5.311879416504578e-07 1.6853095083227376 0.0010429850844778511 1.1141724455270146 0.0012259692536666803']
['59866.41929238061 2.7991773853716593 0.0006443897073090004 0.320457484678199 0.0001985108522379587 0.0008571830712156419 5.309913174967389e-07 1.6830750245703732 0.0010425990138548252 1.116102360801286 0.0012256634116170856']
['59866.41932391858 2.8056683299432397 0.0006448823112604173 0.32169476299287825 0.00019870377030439777 0.0008604926335645765 5.315073488225457e-07 1.6895733350466295 0.001043612238993686 1.1160949948966101 0.001226784292674956']
['59866.41935545654 2.8003367809027884 0.0006444586595807547 0.3205213855873422 0.00019851581526403173 0.0008573539980317462 5.310045929611459e-07 1.6834106385889824 0.001042625080168234 1.116926142313806 0.0012257218370023597']
['59866.4193869945 2.7988508915474783 0.0006443069581809694 0.3205236799620763 0.00019852049926249738 0.0008573601351927585 5.310171220621416e-07 1.6834226888764512 0.0010426496810005115 1.1154282026710272 0.0012256630098240226']
['59866.41941853247 2.800171420480583 0.0006443961086456283 0.32083461606184915 0.00019858314167475795 0.0008581918497686335 5.311846825589225e-07 1.685055756627359 0.0010429786852665858 1.115115663853224 0.0012259897563838143']
['59866.419450070425 2.798605711853589 0.0006442697698630304 0.32087795382706474 0.00019859936730412005 0.0008583077727863918 5.312280840567e-07 1.6852833709404662 0.0010430639039081936 1.113322340913123 0.001225995858066235']
['59866.41948160839 2.8014770664476023 0.0006445197889306559 0.3209185700516936 0.00019860069436796276 0.0008584164160287349 5.31231633783933e-07 1.6854966914479708 0.001043070873781317 1.1159803749996315 0.0012261331926239243']
['59866.41951314636 2.804584450319628 0.0006447948210283216 0.32177889443139346 0.00019873196674732505 0.0008607176744773349 5.315827707262346e-07 1.6900152018455539 0.0010437603295552788 1.1145692484740741 0.0012268642902857226']
['59866.419544684315 2.800270991817168 0.0006444274249555415 0.3206844276770349 0.0001985621783632928 0.0008577901149142105 5.311286083632377e-07 1.6842669520852676 0.0010428685838408237 1.1160040397319007 0.001225912553650135']
['59866.41957622228 2.8013918222925165 0.0006445453112512728 0.3206705785019447 0.00019855232232338782 0.0008577530701297843 5.311022447082765e-07 1.6841942148211382 0.0010428168189253564 1.1171976074713783 0.0012259304939879747']
['59866.41960776025 2.8047888613531518 0.0006448089404768806 0.32168684171631334 0.0001987060722004164 0.0008604714451558218 5.31513506102039e-07 1.6895317317033265 0.0010436243287836996 1.1152571296498253 0.0012267560105204884']
['59866.419639298205 2.8033841912812787 0.000644753859853689 0.32083609247747014 0.00019856638412137737 0.0008581957989929048 5.311398582319538e-07 1.6850635109110828 0.001042890672906394 1.118320680370196 0.0012261029709740457']
['59866.41967083617 2.802338416472826 0.0006445752771997297 0.3213968056218698 0.000198675929126077 0.0008596956354397586 5.314328772065583e-07 1.6880084328879716 0.0010434660143176316 1.1143299835848546 0.001226498516514811']
['59866.41970237413 2.8004208928565575 0.0006444227100618817 0.3210496040269055 0.0001985986901189107 0.0008587669152702132 5.312262726722722e-07 1.686184895099294 0.0010430603472631865 1.1142359977572636 0.0012260732104064174']
['59866.419733912095 2.805808705023118 0.0006448619594251763 0.32189800247011796 0.00019874343835536736 0.0008610362733533851 5.316134558207748e-07 1.6906407692758298 0.0010438205795975178 1.1151679357472881 0.0012269508340210604']
['59866.41976545006 2.8066791884735607 0.000644996167958148 0.32184142160210516 0.0001987342698921911 0.0008608849267176091 5.31588931346236e-07 1.6903436008513928 0.001043772425904365 1.116335587622168 0.0012269804129483807']
['59866.41979698802 2.8070048058003616 0.0006450011767452894 0.3218925621554962 0.00019874496919614865 0.0008610217212027292 5.316175506254375e-07 1.690612196194833 0.0010438286197276716 1.1163926096055286 0.0012270308493943355']
['59866.419828525984 2.8072209343228085 0.0006450226052681613 0.32227826529728154 0.00019881342599030672 0.0008620534281200604 5.31800663855328e-07 1.6926379479899243 0.001044188161713796 1.1145829863328842 0.0012273479858500452']
['59866.41986006395 2.8071509323315365 0.0006449963282515854 0.32165209993268007 0.00019870051255189245 0.0008603785152970476 5.314986347483509e-07 1.6893492643523114 0.001043595128949015 1.117801667979225 0.001226829677104421']
['59866.41989160191 2.801823071142471 0.0006445733819731605 0.32102642113021185 0.0001986223858061307 0.0008587049039659445 5.312896556260708e-07 1.6860631361880876 0.001043184799401947 1.1157599349543836 0.0012262582804823778']
['59866.419923139874 2.8015639599022073 0.0006445525311943903 0.3209774186815506 0.0001986115025303027 0.0008585738286394228 5.312605442454816e-07 1.6858057703862954 0.0010431276393398253 1.1157581895159119 0.0012261986941045778']
['59866.41995467783 2.8047370077925846 0.000644860500611317 0.3211545109643735 0.00019864111906635527 0.0008590475280040393 5.31339764717919e-07 1.6867358769137262 0.0010432831883737147 1.1180011308788584 0.0012264929173835053']
['59866.4199862158 2.8043509974073917 0.0006447825667779302 0.3212843980879108 0.0001986462644264405 0.0008593949595629461 5.31353527902651e-07 1.6874180571844055 0.0010433102123237423 1.1169329402229862 0.0012264749314844345']
['59866.420017753764 2.807548664967616 0.000645046652339555 0.32194867768975743 0.00019877259340719128 0.0008611718231298203 5.316914418815123e-07 1.6909069206394824 0.0010439737048697022 1.1166417443281333 0.0012271781778347588']
['59866.42004929172 2.8083820598113194 0.000645116022814618 0.32207816292999425 0.00019878289527631662 0.0008615181797019401 5.317189980730146e-07 1.6915869901785414 0.0010440278113251925 1.116795069632778 0.0012272606706452474']
['59866.42008082969 2.8023662297590564 0.0006446362588055783 0.3209795159813824 0.00019861168417389314 0.0008585794386501014 5.312610301190161e-07 1.6858167856165045 0.0010431285933502792 1.1165494441425519 0.0012262435192211148']
['59866.420112367654 2.800792892871743 0.0006444543397098849 0.32091694689596173 0.0001985877222420557 0.0008584120742933041 5.311969349946806e-07 1.6854881664703874 0.0010430027428679398 1.1153047264013558 0.0012260408303155933']
['59866.42014390561 2.8059696682452433 0.000644974286294086 0.3212896090511759 0.00019864908185709986 0.0008594088982278521 5.313610641718318e-07 1.687445425688949 0.0010433250097536758 1.1185242425562942 0.0012265883196729346']
['59866.42017544358 2.8031904619533954 0.0006447041280028263 0.3209555656858755 0.00019861035352673913 0.0008585153746514722 5.312574708068804e-07 1.6856909962493463 0.0010431216046572435 1.1174994657040491 0.0012262732545263257']
['59866.42020698154 2.8065964869876168 0.0006450436044868851 0.32155727248471677 0.00019871141851691786 0.0008601248639174821 5.315278068196616e-07 1.6888512210331765 0.0010436524081770897 1.1177452659544402 0.0012269032564889834']
['59866.4202385195 2.8081002555091663 0.0006451400386876336 0.32167422866374284 0.00019871338190840341 0.0008604377068421399 5.315330586425213e-07 1.6894654866793217 0.0010436627201071609 1.1186347688298446 0.001226962730835521']
['59866.42027005747 2.803282807374103 0.0006447169330899225 0.32107270481082184 0.00019864367711726132 0.0008588287069332313 5.313466071792027e-07 1.6863062227459131 0.001043296623515028 1.1169765846281898 0.0012264288680762262']
['59866.420301595426 2.806531035493956 0.0006450181590359333 0.3217076271194337 0.0001987547986982092 0.00086052704346928 5.316438432950353e-07 1.6896408987365217 0.0010438802452637037 1.1168901367574342 0.0012270836939418251']
['59866.42033313339 2.8040576956380714 0.0006448117124888448 0.3212304487262222 0.00019865297684212318 0.000859250651872368 5.313714827620794e-07 1.6871347096965452 0.00104334546660779 1.1169229859415262 0.0012265202433118761']
['59866.42036467136 2.805725984650506 0.0006449209792924283 0.3216076808485186 0.0001987096638990392 0.000860259699888444 5.315231134396846e-07 1.6891159708430599 0.0010436431927470548 1.116610013807446 0.001226830951394189']
['59866.420396209316 2.802914492564385 0.0006447259973054337 0.32087513808682244 0.00019857678332756295 0.0008583002410388619 5.311676747877297e-07 1.6852685823887734 0.00104294529058594 1.1176459101756118 0.0012261347767504505']
['59866.42042774728 2.8066842447740576 0.0006450557510321125 0.3216246239739032 0.00019873147915881755 0.0008603050205969546 5.315814664889042e-07 1.6892049578461301 0.0010437577686912688 1.1174792869279275 0.0012269992671729592']
['59866.42045928524 2.8104040758202053 0.0006453497737014638 0.3222928176354811 0.00019879067937873354 0.0008620923537764975 5.317398195583454e-07 1.692714378337611 0.0010440686942160377 1.1176896974825943 0.0012274183348225302']
['59866.420490823206 2.8105406041676835 0.000645327460984242 0.32230955956390983 0.00019882516820155497 0.0008621371363087046 5.318320727790757e-07 1.6928023086339803 0.0010442498329913603 1.1177382955337032 0.0012275606891729842']
['59866.42052236117 2.8099879608923715 0.0006452702347074722 0.32203880987919525 0.00019876235885696363 0.0008614129152891601 5.316640657595114e-07 1.69138030398737 0.001043919951979851 1.1186076569050014 0.0012272499916239766']
['59866.42055389913 2.8103013858311496 0.0006453459712916221 0.322179020059344 0.0001988192262455682 0.0008617879597134035 5.318161788014802e-07 1.692116701992353 0.0010442186252393288 1.1181846838387965 0.0012275438729263573']
['59866.420585437096 2.8043986048933194 0.0006448668344199211 0.3211036383575899 0.0001986401755753344 0.0008589114502420633 5.313372409992679e-07 1.6864686888528884 0.001043278233063731 1.117929916040431 0.001226492032472837']
['59866.42061697506 2.805902057338378 0.000645001664081759 0.3210378473428668 0.00019860549256331324 0.0008587354676335891 5.312444683470918e-07 1.6861231478091745 0.0010430960743871493 1.1197789095292037 0.001226407993723997']
['59866.42064851302 2.811422355780758 0.000645437383950842 0.32233644015414264 0.00019882134428051993 0.0008622090384735581 5.318218442759711e-07 1.6929434882045309 0.0010442297493724788 1.1184788675762272 0.0012276013954357564']
['59866.420680050986 2.8051260994494305 0.00064492164496733 0.3211197131872945 0.00019861861771438815 0.0008589544483699094 5.31279576459233e-07 1.686553115479488 0.0010431650090041396 1.1185729839699425 0.0012264245448285736']
['59866.420711588944 2.8044043618495103 0.0006448544948755391 0.3211842516757986 0.00019864109331223999 0.0008591270806298273 5.313396958289315e-07 1.6868920781291945 0.0010432830531105042 1.1175122837203157 0.0012264896446643003']
['59866.42074312691 2.812186117297022 0.0006455265610880061 0.3224520646378962 0.00019883824820547785 0.0008625183192824963 5.318670601283191e-07 1.6935507596528163 0.001044318530490955 1.1186353576442056 0.0012277238020812723']
['59866.420774664875 2.808003313743118 0.0006451874793358791 0.321505837802284 0.00019868733482514763 0.0008599872826745318 5.314633860029702e-07 1.6885810808943487 0.0010435259181993048 1.1194222328487693 0.001226871315764407']
['59866.420806202834 2.8083827922788815 0.00064521860987561 0.32180120672929097 0.0001987390302394713 0.0008607773570403959 5.316016646706138e-07 1.6901323882840913 0.0010437974277283156 1.1182504039947903 0.0012271186269721696']
['59866.4208377408 2.8062866913684967 0.0006450416292849288 0.3215272666965479 0.0001987028575632911 0.0008600446022450713 5.315049073560098e-07 1.6886936276079199 0.0010436074451853526 1.1175930637605769 0.0012268639709262206']
['59866.420869278765 2.8055966666218883 0.0006450113024864773 0.32108775443990273 0.00019862385980974105 0.0008588689627796166 5.3129359839852e-07 1.6863852649154556 0.0010431925410175477 1.1192114017064327 0.0012264951112703018']
['59866.42090081672 2.8118511755107236 0.0006454803997528809 0.32255376396651797 0.00019887468438658593 0.0008627903520700473 5.319645222851384e-07 1.6940848947821323 0.0010445098969883717 1.1177662807285913 0.0012278623177587127']
['59866.42093235469 2.8055813047286975 0.0006450019045678361 0.32110367309509746 0.00019864959013448258 0.0008589115431604841 5.313624237492758e-07 1.686468871297781 0.0010433276792777447 1.1191124334309166 0.0012266051130022328']
['59866.42096389265 2.8068286547770143 0.0006450714797601919 0.32167278709648106 0.00019873329601108216 0.0008604338508328036 5.315863263379592e-07 1.6894579154226947 0.0010437673109825745 1.1173707393543195 0.0012270156533132728']
['59866.42099543061 2.8122869324964186 0.0006455200065418358 0.32260313666673135 0.00019888621842600708 0.0008629224177724465 5.319953743756878e-07 1.6943442051824127 0.001044570474926508 1.117942727314006 0.001227934670873806']
['59866.42102696858 2.8099686363082244 0.0006453915977253596 0.3219370792632865 0.00019877752121323948 0.0008611407988120902 5.317046231368261e-07 1.6908460045340679 0.0010439995862039889 1.1191226317741565 0.0012273815423121664']
['59866.42105850654 2.806642479539409 0.0006451070908244601 0.321274008484711 0.00019866648674571582 0.0008593671686939375 5.314076200383392e-07 1.687363489940709 0.0010434164219838016 1.1192789895987 0.0012267359081307911']
['59866.4210900445 2.807192905939943 0.0006451529821099411 0.3215444891811341 0.0001987082526089912 0.0008600906702039657 5.315193384180498e-07 1.6887840818336877 0.0010436357805094078 1.1184088241062555 0.0012269466217748964']
['59866.42112158247 2.809625529504775 0.000645339783601779 0.32194042422563013 0.00019877015229609966 0.0008611497461615262 5.316849122193801e-07 1.6908635726136036 0.0010439608839080865 1.1187619568911715 0.0012273213774025712']
['59866.42115312043 2.813039186340462 0.0006456503278893575 0.3223959129317878 0.00019883292068077773 0.0008623681206003082 5.318528096763785e-07 1.6932558452299782 0.0010442905497940007 1.1197833411104838 0.0012277650826981077']
['59866.42118465839 2.8082624059054115 0.0006451786926888215 0.32161926460444124 0.0001987302219545917 0.0008602906849643206 5.315781036272735e-07 1.6891768098972755 0.0010437511657278976 1.119085596008136 0.0012270582877182332']
['59866.42121619635 2.8080420299147524 0.0006452147815693785 0.3216249643300626 0.00019873327958666977 0.0008603059310064536 5.315862824047421e-07 1.6892067454310014 0.0010437672247199043 1.118835284483751 0.0012270909231817796']
['59866.42124773432 2.807625833768915 0.0006451805631370272 0.32176282936273887 0.00019874121618891494 0.0008606747024590578 5.31607511807745e-07 1.6899308264849733 0.0010438089085552254 1.1176950072839418 0.0012271083882970822']
['59866.42127927228 2.8074420777195233 0.0006451884246135866 0.3214779586754458 0.0001987070458224375 0.0008599127095510801 5.315161104172888e-07 1.6884346569088542 0.0010436294423447348 1.119007420810669 0.0012269598673893714']
['59866.42131081024 2.807842488684975 0.0006451987394559556 0.32146530916414673 0.00019870809654672157 0.0008598788737149297 5.315189209712995e-07 1.6883682203999304 0.0010436349608546301 1.1194742682850447 0.0012269699853352566']
['59866.42134234821 2.8084433268970734 0.0006452476205326729 0.32151314374006545 0.00019871496229245024 0.0008600068251301931 5.315372859691269e-07 1.6886194524163103 0.0010436710204435413 1.1198238744807631 0.001227026361052092']
['59866.421373886165 2.808544690774319 0.0006452614588122732 0.32170826859968993 0.00019875348354827537 0.000860528759347493 5.316403254359954e-07 1.6896442678555146 0.001043873337963631 1.1189004229188044 0.0012272057268200292']
['59866.42140542413 2.811045378294296 0.0006454419381005518 0.3222089832316608 0.00019883726944294825 0.0008618681073938225 5.31864442062862e-07 1.6922740715948572 0.001044313389931451 1.1187713066994387 0.0012276749373710922']
['59866.4214369621 2.8134503783347853 0.0006456540639779101 0.3225986783187742 0.00019888729346307152 0.0008629104922579019 5.319982499632981e-07 1.6943207894893604 0.0010445761211295775 1.119129588845425 0.0012280099523885402']
['59866.421468500055 2.8107984517783486 0.0006453950543387004 0.322239218139657 0.0001988423325031208 0.0008619489819326716 5.318779851057802e-07 1.6924328683805516 0.001044339981634038 1.118365583397797 0.001227672909778593']
['59866.42150003802 2.8143642489701306 0.0006457191232945328 0.3227058642271063 0.00019888190869173233 0.0008631972009493446 5.319838463838687e-07 1.6948837406885835 0.001044547839767502 1.119480508281547 0.0012280201039686666']
['59866.42153157599 2.8108197385636973 0.0006454598800193498 0.3219208916296212 0.0001987679417490626 0.0008610974989479759 5.316789992868105e-07 1.6907609854496912 0.0010439492738921355 1.120058753114006 0.0012273746547711137']
['59866.421563113945 2.8091975038937074 0.0006453330214181326 0.32176021807886906 0.00019874918578398752 0.000860667717606357 5.316288294623709e-07 1.6899171117587661 0.0010438507656722034 1.1192803921349412 0.0012272241561862695']
['59866.42159465191 2.8103954073673787 0.0006454112854885735 0.3217900861398978 0.00019877223559310975 0.0008607476108761602 5.31690484774289e-07 1.6900739818271944 0.001043971825594064 1.1203214255401843 0.001227368282167262']
['59866.42162618987 2.8146335964159035 0.0006457499474587547 0.32269732692429653 0.0001989039734622695 0.0008631743647486246 5.320428668426785e-07 1.6948389019133223 0.001044663726167382 1.1197946945025812 0.0012281348848611471']
['59866.421657727835 2.809426841932491 0.0006453593171700814 0.3217612519290252 0.00019875966889126585 0.0008606704830242187 5.316568704429139e-07 1.6899225416440402 0.0010439058240087492 1.1195043002884508 0.0012272848152151234']
['59866.4216892658 2.81120300058761 0.0006454167366292129 0.3221432902653257 0.00019881392197329363 0.0008616923870523334 5.318019905468247e-07 1.6919290455111644 0.0010441907666664584 1.1192739550764454 0.0012275573799674657']
['59866.42172080376 2.8116957443471637 0.0006455735288965135 0.32200653512677313 0.0001987865577399888 0.0008613265844255459 5.317287946981796e-07 1.6912107937330523 0.0010440470469537228 1.1204849506141115 0.001227517583362734']
['59866.421752341725 2.8105447418637377 0.0006454545848083334 0.32194209548451425 0.00019879487465852128 0.0008611542165667799 5.317510413989483e-07 1.6908723502337935 0.0010440907282485362 1.1196723916299443 0.0012274921872927162']
['59866.42178387969 2.810874170766998 0.0006454660587008391 0.3218641078388561 0.00019877543209328665 0.0008609456095196102 5.316990350062848e-07 1.6904627512544965 0.001043988613935329 1.1204114195125014 0.001227411365012319']
['59866.42181541765 2.8154351226167225 0.0006458406942395677 0.32277359514191983 0.00019891340325264875 0.0008633783725441802 5.320680903342948e-07 1.6952394702831926 0.001044713252377357 1.12019565233353 0.001228224727820085']
['59866.421846955614 2.810918220498348 0.0006454953356848183 0.3220034768696721 0.00019878546307483083 0.0008613184039762203 5.31725866607912e-07 1.6911947314583622 0.0010440412976619267 1.1197234890399859 0.001227471571815191']
['59866.42187849357 2.809854061590242 0.0006454217427530234 0.3216742955501324 0.0001987594811110855 0.0008604378857547368 5.316563681547808e-07 1.6894658379733845 0.0010439048377683061 1.1203882236168574 0.0012273168035737243']
['59866.42191003154 2.810572969090909 0.000645477010165161 0.32177627384477014 0.00019874154024740904 0.00086071066474095 5.31608378623059e-07 1.6900014382603474 0.0010438106105431148 1.1205715308305615 0.0012272657256414137']
['59866.421941569504 2.8158537918447006 0.0006458826025466747 0.3230219270405811 0.00019896462848051035 0.0008640426288332446 5.322051113128694e-07 1.6965437344568335 0.0010449822924396555 1.1193100573878672 0.0012284756113919817']
['59866.42197310746 2.814431660165581 0.0006457901417609846 0.3225682116521497 0.00019891986913533226 0.000862828997794157 5.320853857492618e-07 1.6941607754839798 0.0010447472118452327 1.1202708846816014 0.0012282270326995984']
['59866.42200464543 2.8113246328373322 0.0006454997700398479 0.3221365057896743 0.0001988086513804601 0.0008616742394416408 5.317878923803964e-07 1.6918934127608944 0.001044163084981408 1.1194312200764378 0.0012275774929345143']
['59866.422036183394 2.8163635107421516 0.0006459007963159266 0.323280838187086 0.0001990020128011836 0.0008647351832666537 5.323051096226052e-07 1.6979035619069642 0.0010451786386616788 1.1184599488351874 0.0012286521987105335']
['59866.42206772135 2.8177603703819614 0.0006460662203144751 0.3232127281707974 0.00019897816160182843 0.000864552997623521 5.32241310693596e-07 1.6975458412331796 0.0010450533697575024 1.1202145291487817 0.0012286326166405248']
['59866.42209925932 2.81745826852012 0.0006460378440396864 0.32310788234763044 0.0001989919212074033 0.0008642725483626881 5.322781158909445e-07 1.6969951803972187 0.001045125636593505 1.1204630881229014 0.0012286791656882707']
['59866.42213079728 2.815040603337013 0.0006459197097806288 0.3222617400630966 0.00019884188658080096 0.0008620092252174338 5.318767923202098e-07 1.6925511557935748 0.001044337639605047 1.1224894475434382 0.001227946813579046']
['59866.42216233524 2.816855060081778 0.0006460239716625551 0.32280794868765683 0.00019892039029022603 0.0008634702639158907 5.320867797724124e-07 1.6954198985696265 0.001044749949003288 1.1214351615121516 0.0012283523223835394']
['59866.42219387321 2.8182409592931075 0.0006461040400630384 0.3235393695472717 0.00019906052704816128 0.0008654267218198945 5.324616278015597e-07 1.6992613946810489 0.0010454859613874016 1.1189795646120586 0.0012290204742167316']
['59866.42222541117 2.817850346946908 0.0006461014089518769 0.32287982246982666 0.00019896972611490224 0.0008636625171547316 5.322187468374331e-07 1.6957973869213585 0.0010450090657295285 1.1220529600255496 0.001228613437215507']
['59866.42225694913 2.814347337312196 0.0006457896086986747 0.3225054082008485 0.00019886368245289186 0.0008626610065383953 5.319350935098277e-07 1.6938309254246244 0.0010444521137231715 1.1205164118875717 0.0012279757475471525']
['59866.4222884871 2.8183709034227276 0.0006460738103008019 0.32351048138586525 0.00019906427289388578 0.0008653494496571269 5.324716474631246e-07 1.6991096711442504 0.001045505634946879 1.1192612322784772 0.0012290213183921072']
['59866.422320025056 2.818653847579838 0.0006461502365742805 0.32327979294195536 0.00019900824863749428 0.0008647323873686826 5.323217896927422e-07 1.6978980721741352 0.001045211389902806 1.120755775405703 0.001228811205111491']
['59866.42235156302 2.8137445112209427 0.0006457666261248994 0.32212576243154334 0.000198816481638341 0.0008616455023231207 5.318088373257314e-07 1.691836987560627 0.0010442042102854045 1.1219075236603158 0.001227752812334185']
['59866.42238310098 2.8181567392020215 0.000646138715446287 0.32307650135266663 0.00019896040490405498 0.0008641886081867615 5.321938137822744e-07 1.6968303642471987 0.0010449601097902049 1.1213263749548228 0.001228591417295162']
['59866.422414638946 2.8157389737945744 0.0006459053902404066 0.32249188389735794 0.00019889182548186388 0.0008626248307442374 5.320103725379702e-07 1.6937598944188967 0.0010445999237492852 1.1219790793756776 0.0012281623564653918']
['59866.42244617691 2.812745760227867 0.000645687267199389 0.3220263416521637 0.00019879488341375612 0.0008613795643654011 5.317510648180895e-07 1.6913148196017003 0.0010440907742319124 1.1214309406261667 0.0012276145941864693']
['59866.42247771487 2.8164901360445835 0.0006459899966973086 0.32248776205367913 0.00019891283115002577 0.000862613805335899 5.320665600324393e-07 1.6937382460802477 0.0010447102476366901 1.1227518899643358 0.0012283006868638083']
['59866.422509252836 2.8196238744037982 0.000646237302133651 0.3233655140409719 0.00019904677193201056 0.0008649616804213844 5.324248346128506e-07 1.698348288030315 0.0010454137181303076 1.1212755863734833 0.0012290290853857015']
['59866.4225407908 2.813701213082507 0.0006457636016856616 0.32223586532899196 0.00019883337115030224 0.0008619400135899726 5.318540146251439e-07 1.6924152590808403 0.001044292915705369 1.1212859540016669 0.0012278266665350036']
['59866.42257232876 2.816472388284582 0.0006460223880424464 0.32256236315008474 0.00019889286973296397 0.0008628133537939331 5.320131657770359e-07 1.6941300585613697 0.0010446054082613656 1.1223423297232122 0.0012282285556120894']
['59866.422603866726 2.8147892243397585 0.0006458382455121182 0.3224128766973906 0.00019886838893222973 0.0008624134965187811 5.319476827443014e-07 1.6933449406375558 0.001044476832627257 1.1214442837022027 0.0012280223504730027']
['59866.422635404684 2.8172584999071812 0.0006461075088923243 0.3225712175428097 0.00019888296456251468 0.0008628370381699037 5.319866707041086e-07 1.694176562724841 0.001044553385307325 1.1230819371823402 0.0012282290860438202']
['59866.42266694265 2.8208828341893124 0.0006463287551593167 0.3236013677565549 0.00019907491780947963 0.0008655925591555293 5.325001212603609e-07 1.6995870155281245 0.0010455615431170149 1.1212958186611879 0.0012292029125376433']
['59866.422698480616 2.8210264658153292 0.0006464004489080384 0.3233847436978774 0.00019901620900832401 0.0008650131173113082 5.323430826736901e-07 1.6984492841275074 0.0010452531985731305 1.1225771816878218 0.0012289783519150667']
['59866.422730018574 2.8177914948843554 0.0006461168187186086 0.3229394766809151 0.0001989630583451146 0.0008638220845928993 5.322009114001036e-07 1.6961106968535458 0.0010449740459302238 1.1216807980308097 0.0012285917548554674']
['59866.42276155654 2.8196128831752825 0.0006462410118733679 0.3232582805833211 0.0001990057616372773 0.0008646748445415532 5.323151372830278e-07 1.697785087097275 0.0010451983279268766 1.1218277960780074 0.00122884783033875']
['59866.422793094505 2.8203590567314594 0.0006463641243970704 0.32334091813720645 0.00019901351676818852 0.0008648958895026603 5.323358812732606e-07 1.6982191078634794 0.0010452390586564524 1.12213994886798 0.0012289472206114542']
['59866.422824632464 2.821305402795433 0.0006463954312530235 0.3235484870071109 0.00019908128826238788 0.0008654511098669846 5.325171614127993e-07 1.6993092804995324 0.0010455950013780876 1.1219961222959007 0.001229266431841212']
['59866.42285617043 2.8213296344388303 0.0006464078523616707 0.32356678687190604 0.0001990582326181289 0.0008655000596811031 5.324554904926314e-07 1.6994053932348008 0.0010454739108095004 1.1219242412040296 0.0012291699678149228']
['59866.42288770839 2.8184741608114203 0.0006461562980124465 0.32298064540561244 0.00019896847956034345 0.0008639322057027543 5.322154124623093e-07 1.6963269191471244 0.0010450025186992827 1.122147241664296 0.0012286367345757632']
['59866.42291924635 2.8216363537601685 0.0006464288932740542 0.32357094548135834 0.00019907002823742943 0.0008655111834332161 5.324870422761358e-07 1.6994272346709998 0.0010455358625915412 1.1222091190891688 0.0012292337263614909']
['59866.42295078432 2.8191326917185977 0.0006462698284723095 0.3230909888808974 0.0001989893856273387 0.0008642273604847633 5.322713335363078e-07 1.696906454206394 0.0010451123194713168 1.1222262375122036 0.00122878983211302']
['59866.42298232228 2.815353691537151 0.0006459272285660627 0.3223714394596274 0.00019885756754657263 0.0008623026571705778 5.319187369120589e-07 1.6931273080862783 0.0010444199976185537 1.1222263834508728 0.0012280208125388487']
['59866.42301386024 2.8160104229497738 0.0006459727690229121 0.3228595339902986 0.00019896721030678315 0.0008636082480487702 5.322120173702394e-07 1.69569082978098 0.0010449958524515921 1.1203195931687937 0.0012285345538323935']
['59866.42304539821 2.81748682089392 0.00064615608428152 0.322502636698435 0.00019889593444373865 0.000862653593121439 5.320213634891189e-07 1.6938163692144697 0.0010446215044314006 1.1236704516794505 0.001228312571284097']
['59866.42307693617 2.818150723821274 0.000646193047290879 0.32275859511859833 0.00019895456838193317 0.0008633382493869011 5.321782018268769e-07 1.6951606886481008 0.0010449294557874642 1.1229900351731734 0.001228593920683054']
['59866.42310847413 2.8178002968610345 0.00064614413175952 0.32293875282014417 0.00019896500096138237 0.0008638201483572724 5.322061076518943e-07 1.6961068950637825 0.0010449842487467562 1.121693401797252 0.0012286147968896054']
['59866.42314001209 2.8204139138200475 0.0006463955207468543 0.32310367204043355 0.00019898895473083902 0.0008642612863256743 5.322701809428979e-07 1.696973067439252 0.0010451100563594487 1.1234408463807954 0.0012288540186471486']
['59866.42317155006 2.8228766301244166 0.0006465633481553992 0.32360420752926167 0.00019907625370432352 0.0008656001551868493 5.325036946094005e-07 1.6996019303007441 0.0010455685593714471 1.1232746998236725 0.0012293322478174904']
['59866.42320308802 2.81984700806468 0.0006463589653713904 0.32293052741141226 0.0001989943030151644 0.0008637981464335978 5.322844869241995e-07 1.6960636943876697 0.0010451381460880483 1.1237833136770101 0.001228858680452857']
['59866.42323462598 2.8240283805223116 0.0006466854259115752 0.3238901539285435 0.00019911657053485167 0.0008663650254877741 5.326115370105493e-07 1.7011037496247032 0.0010457803074309436 1.1229246308976084 0.0012295765496693545']
['59866.42326616395 2.8182180164988737 0.0006461857084666703 0.3226382623624966 0.00019889252795411458 0.0008630163745474142 5.320122515620221e-07 1.6945286888786586 0.0010446036132043834 1.1236893276202151 0.0012283129399897348']
['59866.42329770191 2.8234671525043327 0.0006466173849153669 0.32389464170703913 0.00019913382722819905 0.0008663770297252714 5.326576964735351e-07 1.7011273198899115 0.0010458709413245749 1.1223398326144212 0.0012296178546125378']
['59866.42332923987 2.824426508704539 0.0006466875152309111 0.32383639935874564 0.00019912889150422187 0.000866221238840764 5.326444940387669e-07 1.700821425203496 0.0010458450184045267 1.1236050835010427 0.0012296326869748928']
['59866.42336077784 2.818918950238612 0.0006462718141213486 0.32319054024683747 0.00019902507793461414 0.0008644936477449467 5.323668059251017e-07 1.6974293080191043 0.0010452997790683517 1.1214896422195075 0.001228950318706189']
['59866.423392315795 2.8193657107098895 0.0006462984421626 0.3231742201548323 0.00019899243300115893 0.0008644499935715966 5.322794848742394e-07 1.69734359325017 0.0010451283245859187 1.1220221174597196 0.0012288184939988384']
['59866.42342385376 2.8237238527565554 0.0006466685627367387 0.32376349523608994 0.00019910919972345234 0.0008660262295719836 5.325918210261998e-07 1.7004385253996321 0.0010457415951861994 1.1232853273569232 0.001229534755073876']
['59866.42345539173 2.821141515003057 0.0006464766574139486 0.3231290602039733 0.00019899046741473524 0.0008643291964386722 5.32274227180199e-07 1.6971064086343137 0.0010451180011278112 1.1240351063687433 0.0012289034562822678']
['59866.423486929685 2.820052403748636 0.000646445510110255 0.32307077725973143 0.00019899087841942993 0.0008641732969651589 5.32275326565557e-07 1.6968003007338837 0.0010451201597659137 1.1232521030147522 0.0012288889070582567']
['59866.42351846765 2.821058912183597 0.000646497589978983 0.3231394849125135 0.00019902772994765273 0.0008643570812100077 5.32373899723156e-07 1.6971611602547978 0.00104531370770826 1.1238977519287991 0.0012290809092046881']
['59866.42355000562 2.8192014532705287 0.0006463512825681467 0.32272859424643285 0.00019889873305051672 0.0008632580008641749 5.32028849406808e-07 1.6950031210421896 0.0010446362029964114 1.124198332228339 0.001228427766329078']
['59866.423581543575 2.8203243196061267 0.000646414505108211 0.3227745182934887 0.00019893439230714681 0.0008633808418573803 5.321242333893233e-07 1.695244318768323 0.0010448234890081242 1.1250800008378037 0.001228620297568538']
['59866.42361308154 2.8242972842222924 0.0006466685275757296 0.32368361264997186 0.0001990653187374068 0.0008658125537997541 5.324744449617141e-07 1.7000189740019531 0.001045511127822515 1.1242783102203393 0.0012293387258838263']
['59866.4236446195 2.821303484658387 0.0006464822217670295 0.32308482698783286 0.0001989901385963372 0.0008642108782034184 5.322733476327465e-07 1.6968740913226519 0.0010451162741404265 1.1244293933357352 0.001228904914765175']
['59866.423676157465 2.8191739896882497 0.0006463569337757885 0.3227745802716807 0.00019893577364754207 0.0008633810076411723 5.321279282994409e-07 1.6952446442840374 0.0010448307439471748 1.1239293454042123 0.0012285961783015792']
['59866.42370769543 2.8223250745917565 0.0006465871611840425 0.32339267867640903 0.0001990782893276936 0.0008650343423710836 5.325091396433773e-07 1.6984909594349213 0.0010455792506706596 1.1238341151568352 0.0012293538654273052']
['59866.42373923339 2.8205545126999674 0.0006464257734736008 0.32310156393673706 0.00019900561285386874 0.0008642556474160298 5.323147393063065e-07 1.6969619954660562 0.0010451975465014115 1.1235925172339112 0.0012289443404090818']
['59866.423770771355 2.8254938107697756 0.0006468317791438808 0.324088788878306 0.00019918601518403736 0.0008668963487503879 5.327972926271742e-07 1.702147000411271 0.0010461450377312886 1.1233468103585045 0.001229963735432975']
['59866.42380230932 2.8206939503545336 0.0006464219370216263 0.3230953599419133 0.00019899917589380502 0.0008642390525178262 5.322975212556741e-07 1.696929411459629 0.0010451637389380516 1.1237645388949047 0.0012289135697248032']
['59866.42383384728 2.8201787734715524 0.0006464299977755372 0.3233042966158831 0.00019903723809865974 0.0008647979315843048 5.323993328194994e-07 1.6980267679405627 0.0010453636454761542 1.1221520055309897 0.001229087829777545']
['59866.423865385244 2.8253669324190884 0.0006467972127479994 0.3240997623464788 0.0001991553274885555 0.0008669257013840444 5.327152069393081e-07 1.702204634172683 0.0010459838628600604 1.1231622982464053 0.001229808471178433']
['59866.4238969232 2.825954541260323 0.0006468770555361087 0.3242380285070468 0.00019918595101009858 0.000867295545802813 5.327971209700386e-07 1.7029308219907922 0.001046144700683291 1.123023719269531 0.0012299872599936955']
['59866.42392846117 2.8219616320712095 0.00064657595201965 0.32315330995611247 0.00019899932951062923 0.0008643940614457596 5.322979321611685e-07 1.6972337707779017 0.0010451645457491031 1.1247278612933078 0.0012289952764030648']
['59866.423959999134 2.824589113011749 0.000646815414775783 0.3235115378699738 0.00019905571880820088 0.0008653522756179366 5.324487663703451e-07 1.6991152199053245 0.0010454607080262652 1.1254738931064243 0.0012293731218870649']
['59866.42399153709 2.820363693798296 0.0006464445053947063 0.3229772590492366 0.00019900834310821036 0.0008639231476295393 5.323220423899093e-07 1.696309133661957 0.0010452118860725334 1.1240545601363392 0.0012289663890205902']
['59866.42402307506 2.8217185366862254 0.0006465618474590303 0.3230531632039908 0.0001990095495498688 0.0008641261816031586 5.323252694681193e-07 1.6967077899369267 0.0010452182224257817 1.1250107467492987 0.0012290335044580945']
['59866.424054613024 2.822571640013808 0.0006466071598071837 0.32343168812075407 0.00019906102700977476 0.0008651386876802397 5.324629651353773e-07 1.6986958409703472 0.0010454885872362121 1.123875799043461 0.0012292872752758337']
['59866.42408615098 2.8279890145448277 0.0006470752370068148 0.3243300783855396 0.0001992052730283765 0.0008675417675368155 5.328488049149032e-07 1.7034142772349772 0.0010462461818717254 1.1245747373098505 0.001230177806428237']
['59866.42411768895 2.823100241407294 0.0006467131048684655 0.3232558237727041 0.00019902563268351978 0.0008646682728851845 5.323682898079674e-07 1.697772183680169 0.0010453026926655453 1.125328057727125 0.0012291849166429151']
['59866.42414922691 2.8280202881517162 0.0006470660652284581 0.3243019414762665 0.00019920183387853142 0.0008674665048780903 5.328396056258632e-07 1.7032664993501394 0.0010462281191099341 1.1247537888015768 0.0012301576199766232']
['59866.42418076487 2.8232620164884334 0.0006466534674736228 0.3234950111547209 0.000199069705612642 0.0008653080687536413 5.32486179295805e-07 1.699028419930257 0.001045534168133624 1.1242335965581765 0.0012293503990850327']
['59866.42421230284 2.8245775861554607 0.0006468174986391124 0.3237809638689948 0.0001991251108488618 0.0008660729559463679 5.326343812658479e-07 1.7005302724211913 0.001045825162021333 1.1240473137342695 0.0012296841651670992']
['59866.4242438408 2.822669195891236 0.0006466199342178977 0.32348841666441863 0.0001990722258831512 0.0008652904293296282 5.324929206993255e-07 1.6989937850021988 0.0010455474048484833 1.1236754108890372 0.0012293440182118902']
['59866.42427537876 2.8284129557422517 0.000647134376651284 0.3242024585253728 0.00019919553389240727 0.0008672004006194668 5.328227539631226e-07 1.7027440048601514 0.0010461950309475173 1.1256689508821003 0.001230165413358351']
['59866.42430691673 2.8272658979480045 0.0006470677026739164 0.3244645042640066 0.00019923602585342554 0.0008679013396887059 5.329310648160896e-07 1.7041202955042363 0.0010464076988100082 1.1231456024437683 0.0012303112142757037']
['59866.424338454686 2.8232118650538407 0.0006466540457918351 0.3235571394805462 0.00019907049604976916 0.0008654742541345004 5.324882936147293e-07 1.6993547241625326 0.001045538319589124 1.123857140891308 0.0012293542340058856']
['59866.42436999265 2.8252360879388547 0.0006468846191014585 0.323794198235942 0.0001991406983467654 0.0008661083561970963 5.326760758430209e-07 1.700599780650956 0.0010459070291321713 1.1246363072878987 0.0012297890973732544']
['59866.42440153061 2.825728682224264 0.000646931343717566 0.323866086294043 0.0001991316939004391 0.0008663006476222401 5.326519900927245e-07 1.7009773439813185 0.0010458597368720542 1.1247513382429455 0.0012297734558422936']
['59866.424433068576 2.82312540605409 0.0006467001251155255 0.3235892349273751 0.00019908519544876256 0.000865560105378426 5.325276126401121e-07 1.699523292685794 0.0010456155223149295 1.123602113368296 0.0012294441314392285']
['59866.42446460654 2.825946355724283 0.0006469484805773162 0.32379880655605775 0.00019914329024080712 0.0008661206828681177 5.326830088303942e-07 1.7006239840129085 0.001045920642021046 1.1253223717113745 0.001229834267666589']
['59866.4244961445 2.828986654012763 0.0006471776236986284 0.3243353359142853 0.00019921120740138014 0.0008675558307584679 5.328646786089819e-07 1.7034418903061204 0.0010462773497971647 1.1255447637066427 0.0012302581718138604']
['59866.424527682466 2.8287890390328907 0.0006471191255559471 0.3247549337714975 0.00019928099577475177 0.0008686782017347047 5.330513536441488e-07 1.7056456605645878 0.0010466438853715956 1.123143378468303 0.0012305391442152677']
['59866.42455922043 2.828683779418107 0.0006471812865389302 0.3242098826375443 0.00019919648812382056 0.0008672202591766123 5.328253064109591e-07 1.702782997045926 0.0010462000426671248 1.1259007823721807 0.0012301943533128733']
['59866.42459075839 2.8234646995985475 0.0006467347004786711 0.3234595870867881 0.00019908832116323643 0.0008652133138710207 5.325359735293425e-07 1.6988423691532992 0.0010456319388825444 1.1246223304452483 0.00122947628054164']
['59866.424622296356 2.8244347559150063 0.0006468179381768451 0.32354413145077965 0.0001990835634614296 0.0008654394593069839 5.3252324728127e-07 1.6992864046784646 0.0010456069509528867 1.1251483512365417 0.0012294988170097347']
['59866.424653834314 2.8254473433943224 0.0006469375628290139 0.3237431271567011 0.00019913222774343097 0.0008659717475465043 5.326534180549261e-07 1.700331550192758 0.0010458625406692804 1.1251157932015643 0.001229779111944233']
['59866.42468537228 2.825213047612656 0.0006469157595397307 0.3234548662635788 0.00019908884952187135 0.0008652006862685126 5.325373868215857e-07 1.6988175749137542 0.0010456347138753748 1.1263954726989016 0.0012295738915584144']
['59866.424716910245 2.829760722268017 0.0006472416144086214 0.3245143553966997 0.00019926647838945755 0.0008680346851372242 5.330125214822943e-07 1.7043821186801456 0.0010465676386000923 1.1253786035878712 0.001230538715192355']
['59866.424748448204 2.825470439317856 0.0006469074644303406 0.3237873702360333 0.00019912163317436623 0.0008660900921645434 5.326250789282608e-07 1.7005639193068978 0.0010458068969241923 1.1249065200109583 0.0012297159563045038']
['59866.42477998617 2.8275455461587735 0.0006470976882592043 0.32390219204691184 0.00019914193881807914 0.0008663972259254859 5.326793939462368e-07 1.7011669750363017 0.0010459135442126006 1.1263785711224719 0.001229906728218758']
['59866.424811524135 2.8270752815598597 0.0006470606140241035 0.32381659749509784 0.00019913452646139302 0.0008661682713704787 5.326595668335216e-07 1.7007174238187914 0.0010458746137678204 1.1263578577410682 0.001229854115716672']
['59866.424843062094 2.8241469124882297 0.0006468076877026393 0.3234229739593313 0.0001990804608820375 0.000865115378405192 5.32514948275445e-07 1.6986500733158159 0.0010455906558930542 1.1254968391724138 0.001229479566549238']
['59866.42487460006 2.831203808429345 0.0006473925626010001 0.32466017520872337 0.00019926996244996214 0.0008684247346142712 5.330218409016445e-07 1.7051479790374127 0.001046585937237196 1.1260558293919325 0.0012306336799119998']
['59866.42490613802 2.831050627805251 0.000647377467723062 0.3245632967016677 0.00019924433921196977 0.0008681655969121323 5.329533019943419e-07 1.7046391633490954 0.0010464513614074043 1.1264114644561558 0.0012305112910928262']
['59866.42493767598 2.82466043298398 0.0006468474245779311 0.3233818602637088 0.0001990447444084428 0.0008650054044911232 5.324194112448162e-07 1.6984341400404876 0.0010454030693720735 1.1262262929434923 0.0012293409486939149']
['59866.42496921395 2.8281618915789863 0.0006471693210901377 0.323873050283413 0.0001991652122479684 0.0008663192754093304 5.327416474153053e-07 1.7010139195557408 0.0010460357786132794 1.1271479720232456 0.001230048365024465']
['59866.42500075191 2.832270882432639 0.0006474746116422859 0.3247784206833886 0.00019930442411067394 0.0008687410262410144 5.331140214671813e-07 1.7057690161942678 0.00104676693335438 1.126501866238371 0.0012308307704495618']
['59866.42503228987 2.830912054955945 0.00064732286034721 0.32492537412860734 0.00019929558404507383 0.0008691341080428791 5.3309037541445e-07 1.7065408305073917 0.001046720504438413 1.124371224448553 0.001230711460879397']
['59866.42506382784 2.8252059671677787 0.0006469360089170557 0.3236517014451573 0.00019909565024982758 0.0008657271953798171 5.325555779051296e-07 1.6998513731363305 0.0010456704319843886 1.1253545940314482 0.001229614920192475']
['59866.4250953658 2.8256360431763246 0.000646997711796851 0.32349148558358987 0.0001990966127032099 0.0008652986382986375 5.325581523456891e-07 1.699009903275157 0.0010456754868866068 1.1266261399011674 0.0012296516835860077']
['59866.42512690376 2.8286819658627014 0.0006472059511630637 0.32390232937618924 0.0001991443607176248 0.0008663975932638612 5.326858722199236e-07 1.701167696303515 0.0010459262642732396 1.1275142695591864 0.0012299745092958067']
['59866.42515844172 2.8287325654534103 0.0006472366108005707 0.3240660339829545 0.00019920264268002218 0.0008668354822953504 5.328417690671276e-07 1.7020274894062737 0.0010462323670169232 1.1267050760471367 0.0012302509484468781']
['59866.42518997969 2.826131885952896 0.0006469869952999378 0.3236608714761524 0.0001990899842922386 0.0008657517240480721 5.325404221881945e-07 1.6998995350638257 0.0010456406738037743 1.1262323508890704 0.001229616440521211']
['59866.42522151765 2.8282047540848336 0.0006472017842552261 0.32393772478118554 0.00019915034432990808 0.0008664922714767671 5.327018776228216e-07 1.7013535965398403 0.0010459576908083408 1.1268511575449933 0.0012299990408550182']
['59866.42525305561 2.832297188756558 0.0006475227997192214 0.32485527085458343 0.0001992939496519034 0.0008689465906884618 5.330860036202982e-07 1.7061726410429803 0.001046711920440669 1.1261245477135777 0.0012308093355791598']
['59866.42528459358 2.8259249975726184 0.000646973938951853 0.32356379075224717 0.00019909772424868302 0.0008654920454415434 5.325611255886558e-07 1.6993896573122225 0.0010456813248355202 1.126535340260396 0.0012296441399009084']
['59866.42531613154 2.827370296725996 0.0006471424227789924 0.32388537243340565 0.00019914937499826546 0.0008663522355955632 5.326992847837894e-07 1.7010786367300719 0.0010459525997808061 1.126291659995924 0.0012299634776482152']
['59866.4253476695 2.8319290952194525 0.0006475403198085424 0.32435037070589234 0.0001992158223130158 0.0008675960469164951 5.328770229114818e-07 1.703520854547754 0.0010463015877784443 1.1284082406716984 0.0012304696170021604']
['59866.42537920747 2.829719323713687 0.0006473043812934805 0.3242829855228207 0.00019921774655218624 0.0008674158001101589 5.328821700068712e-07 1.7031669407711172 0.0010463116940766085 1.1265523829425697 0.0012303540641633195']
['59866.425410745425 2.8331245183908718 0.0006476029642394986 0.32461921024239526 0.0001992667082917323 0.0008683151585321753 5.330131364416802e-07 1.7049328269033366 0.0010465688460700227 1.1281916914875352 0.0012307298439771925']
['59866.42544228339 2.8306858572298026 0.0006473756912509302 0.3243187665169566 0.00019923096725957458 0.0008675115097250408 5.329175337200144e-07 1.7033548661604865 0.0010463811305649925 1.1273309910693161 0.0012304506312831457']
['59866.42547382136 2.8341064422832023 0.0006476902780272641 0.3250182402948443 0.00019933682145227577 0.0008693825132429228 5.332006802412815e-07 1.7070285729771233 0.0010469370874594316 1.127077869306079 0.0012310889331600184']
['59866.425505359315 2.834380905157139 0.0006477180676818505 0.32462247590920457 0.00019926500508404238 0.0008683238937761281 5.330085805774286e-07 1.7049499785147302 0.0010465599006514832 1.1294309266424087 0.0012307828081563183']
['59866.42553689728 2.82811524066547 0.0006472043772376882 0.3240483481715324 0.0001991554047197024 0.0008667881749960156 5.327154135228172e-07 1.7019346017412416 0.0010459842684858321 1.1261806389242286 0.001230023006222024']
['59866.42556843525 2.833863673410033 0.0006476224639002851 0.3248922560521037 0.00019932133540570692 0.0008690455213944548 5.33159257033544e-07 1.7063668910299565 0.001046855753181234 1.1274967823800766 0.001230984087515726']
['59866.425599973205 2.833706958254762 0.000647593834437923 0.32492675904685175 0.00019932492051818814 0.0008691378125232887 5.331688467540974e-07 1.706548104237667 0.0010468745825535093 1.1271588540170951 0.001230985038901203']
['59866.42563151117 2.8349830657659654 0.0006477837715768608 0.32501739632926674 0.00019932421643619846 0.0008693802557421923 5.331669634241983e-07 1.7070241403848043 0.0010468708846438995 1.127958925381161 0.0012310818266197594']
['59866.42566304913 2.834986314786468 0.0006477557861930116 0.3254179415772146 0.00019938751139374428 0.0008704516634084591 5.333362693967396e-07 1.7091278444181441 0.001047203316143615 1.1258584703683236 0.0012313498056558544']
['59866.425694587095 2.831404306582587 0.0006474774087552131 0.32449467902577167 0.000199253109255389 0.0008679820533440258 5.329767607466326e-07 1.7042787763958596 0.0010464974225598163 1.1271255301867273 0.0012306030433379823']
['59866.42572612506 2.8354466153968847 0.0006478017410607186 0.3252042953475749 0.0001993601071183892 0.0008698801868787094 5.332629664406957e-07 1.7080057528759187 0.001047059386125994 1.127440862520966 0.0012312515802206474']
['59866.42575766302 2.8298006532760174 0.0006473361131839006 0.3242733366322559 0.00019924018813026763 0.0008673899905533733 5.329421983780045e-07 1.7031162638248734 0.0010464295595077084 1.126684389451144 0.0012304709937432643']
['59866.425789200985 2.8301280683893753 0.0006473709884936751 0.3241326093890721 0.0001991849333752314 0.0008670135630511818 5.327943989260154e-07 1.7023771501526899 0.0010461393559623496 1.1277509182366854 0.001230242556911684']
['59866.42582073895 2.83600606031995 0.0006478653810131664 0.3254145462853693 0.00019942131481036438 0.0008704425814339983 5.334266892429326e-07 1.7091100120029903 0.0010473808550964516 1.1268960483169599 0.001231558446659317']
['59866.42585227691 2.8323528391753463 0.0006476172658494793 0.32416564142502546 0.0001991969627914904 0.0008671019195520619 5.328265760866899e-07 1.7025506377364785 0.0010462025356695924 1.1298022014388678 0.001230425889140764']
['59866.425883814874 2.834270327426081 0.0006476868231509252 0.3250729542667268 0.00019934761237863866 0.0008695288661686588 5.332295445987807e-07 1.7073159362748256 0.0010469937624928503 1.1269543911512554 0.0012311353132707522']
['59866.42591535283 2.831539340492893 0.0006475362958629064 0.324542931853806 0.00019930628803808048 0.0008681111235305776 5.331190072362622e-07 1.7045322051145275 0.0010467767228890782 1.1270071353783653 0.0012308715457115139']
['59866.4259468908 2.830367694958235 0.0006473891954617334 0.32430215464077167 0.00019922656265313865 0.0008674670750660682 5.329057519572135e-07 1.7032676189116158 0.001046357997127829 1.127100076046619 0.0012304380636805545']
['59866.425978428764 2.829749919430554 0.0006473643936688054 0.324555748170165 0.0001992774639845129 0.0008681454055490779 5.330419065538215e-07 1.7045995177004467 0.0010466253360531142 1.1251504017301073 0.001230652368566556']
['59866.42600996672 2.8324775511285765 0.0006475931573546605 0.324408354047811 0.0001992388398756725 0.0008677511449918453 5.329385919682001e-07 1.7038253889065704 0.001046422478338616 1.128652162222006 0.001230600219659053']
['59866.42604150469 2.8308620167630174 0.0006474552291481612 0.3243146616145195 0.00019923069339436225 0.0008675005296323722 5.329168011653541e-07 1.7033333067989471 0.0010463796921972807 1.1275287099640703 0.0012304912571790886']
['59866.426073042654 2.831057341410636 0.000647497651839722 0.3243921979119564 0.00019924244136415394 0.0008677079293803743 5.329482254924742e-07 1.703740535251872 0.0010464413937192958 1.1273168061587642 0.0012305660484619003']
['59866.42610458061 2.8335223918157455 0.0006477169660456111 0.32474524606575766 0.00019931481108112454 0.0008686522883522557 5.331418052939202e-07 1.7055947797571307 0.0010468214867706122 1.1279276120586148 0.00123100466825596']
['59866.42613611858 2.835944016000144 0.000647885703591426 0.32514642385588594 0.00019935547032364151 0.0008697253879885178 5.332505636036504e-07 1.7077018059657876 0.001047035033212403 1.1282422100343563 0.0012312750487572853']
['59866.42616765654 2.835874831410005 0.0006478264621244861 0.32536518902042627 0.00019941480739623437 0.0008703105570189868 5.334092827366211e-07 1.708850782670306 0.0010473466775012311 1.1270240487396987 0.0012315089069517915']
['59866.4261991945 2.829981327320291 0.0006473932663571029 0.3241679877183556 0.00019921370154759395 0.0008671081955887246 5.3287135013333e-07 1.7025629607056492 0.0010462904493045901 1.1274183666146418 0.0012303827638708697']
['59866.42623073247 2.8349265839973414 0.0006478088393736338 0.32507913619998907 0.00019936822846365254 0.0008695454020549875 5.332846900078086e-07 1.7073484044117073 0.001047102040250276 1.127578179585634 0.0012312915881572916']
['59866.42626227043 2.830889458946223 0.0006474820314494585 0.3242063295854533 0.00019921698119502773 0.0008672107552135309 5.328801227736777e-07 1.7027643360580533 0.001046307674343633 1.1281251228881695 0.001230444119186361']
['59866.42629380839 2.836761558582144 0.0006479509425685014 0.32521929618034484 0.00019937284238276967 0.0008699203122011604 5.332970316554475e-07 1.7080845387623154 0.0010471262730187482 1.1286770198198288 0.0012313869642080605']
['59866.42632534636 2.8321030442337713 0.0006475780168467071 0.32464307714153895 0.0001992881471440746 0.0008683789994561248 5.330704826488144e-07 1.7050581782643854 0.0010466814450844255 1.127044865969386 0.0012308124696261147']
['59866.426356884316 2.833048788056537 0.0006476575317655936 0.32469972550460746 0.00019930249647639897 0.0008685305266326024 5.331088652903185e-07 1.7053557011796612 0.0010467568092247847 1.127693086876876 0.0012309183953906745']
['59866.42638842228 2.832226069324506 0.0006475648327545217 0.3247226694840047 0.00019930491370011085 0.0008685918988634473 5.331153310567439e-07 1.705476205273134 0.001046769504727473 1.126749864051372 0.001230880420125282']
['59866.42641996024 2.837081309755948 0.0006480043144428645 0.3249599725379103 0.00019933110383460803 0.0008692266543935292 5.331853863401971e-07 1.706722544841966 0.0010469070579548743 1.130358764913982 0.0012312286463254084']
['59866.426451498206 2.836405589040713 0.0006479153749801265 0.32519634591369034 0.0001993777245575511 0.0008698589231527008 5.333100908529181e-07 1.7079640016475333 0.0010471519146930204 1.12844158739318 0.0012313900541992763']
['59866.42648303617 2.834204504383523 0.0006477374050547424 0.32476702388919354 0.00019929612065717122 0.0008687105412640137 5.330918107836571e-07 1.705709159081899 0.0010467233227792606 1.1284953453016242 0.0012309319478984644']
['59866.42651457413 2.8321699290381703 0.0006475902781995557 0.32428866115938604 0.0001992247304820569 0.0008674309817171264 5.329008511322681e-07 1.7031967497866916 0.001046348374380551 1.1289731792514788 0.0012305356918787035']
['59866.426546112096 2.8354307421552374 0.0006478760585928554 0.3249696932619688 0.0001993448445752714 0.000869252656095787 5.332221410763033e-07 1.7067735990649622 0.0010469792257104592 1.1286571430902752 0.0012312225169997036']
['59866.426577650054 2.834620915834559 0.0006477766431427892 0.3248257786021729 0.00019930499591586117 0.0008688677026589818 5.33115550973434e-07 1.7060177447593114 0.0010467699365328844 1.1286031710752475 0.0012309922337002779']
['59866.42660918802 2.832317721066373 0.0006476140169916229 0.32447398476201617 0.00019927062121674513 0.0008679266988167933 5.330236030191211e-07 1.7041700880357993 0.0010465893971467707 1.1281476330305737 0.001230753135776654']
['59866.426640725986 2.832491569900621 0.0006476240805592066 0.32459354996166445 0.00019928812194226392 0.000868246520540252 5.330704152371717e-07 1.704798056521347 0.0010466813127219744 1.127693513379274 0.0012308365935905356']
['59866.426672263944 2.839275484351588 0.0006482011245638556 0.32563691173649867 0.00019944923782946403 0.0008710373807738318 5.335013797726092e-07 1.7102778977757283 0.0010475275096085296 1.1289975865758597 0.0012318598058515']
['59866.42670380191 2.8326911264350674 0.0006476612819290113 0.3242014822315799 0.00019921151519784725 0.0008671977891575668 5.328655019254391e-07 1.7027388772667014 0.0010462789663752484 1.129952249168366 0.0012305140436375313']
['59866.426735339875 2.8354915045362477 0.0006478764318474959 0.325039963474413 0.00019935301814920286 0.0008694406199892764 5.3324400434847e-07 1.7071426653067912 0.0010470221541449731 1.1283488392294565 0.0012312592181233906']
['59866.426766877834 2.835445570962946 0.0006479046024880428 0.3248927972733865 0.0001993420520096117 0.0008690469690926474 5.332146713178385e-07 1.7063697335787107 0.0010469645588740111 1.1290758373842351 0.0012312250653164277']
['59866.4267984158 2.832738260601758 0.0006476955394131684 0.32434731155500407 0.00019924466084440871 0.0008675878640764021 5.329541623202665e-07 1.703504787578803 0.0010464530506534072 1.129233473022955 0.0012306800961247148']
['59866.42682995376 2.838186210334186 0.00064808324861394 0.32547515123143156 0.00019942705944520572 0.0008706046919674709 5.334420554115252e-07 1.7094283152911323 0.0010474110264979293 1.1287578950430537 0.0012316987275967463']
['59866.426861491724 2.838606251002176 0.0006481445596721324 0.32537662780094945 0.0001994246831029296 0.0008703411543040827 5.334356989977483e-07 1.7089108602991043 0.001047398545708664 1.1296953907030716 0.0012317203756474953']
['59866.42689302969 2.8351525927450254 0.0006478116945578078 0.3249704549463419 0.00019933756703117788 0.000869254693504746 5.332026745701511e-07 1.7067775995080983 0.00104694100331501 1.1283749932369271 0.0012311561460790009']
['59866.42692456765 2.8387691892494122 0.0006481425550410601 0.3253894683274202 0.00019941554008384566 0.0008703755010815572 5.334112425829249e-07 1.708978300038972 0.0010473505256504499 1.1297908892104402 0.0012316784869581133']
['59866.42695610561 2.8405111074605442 0.000648328471978133 0.3255332122765153 0.00019942165188401023 0.0008707599978889191 5.334275908721246e-07 1.7097332577548074 0.0010473826254412302 1.1307778497057368 0.0012318036254426535']
['59866.42698764358 2.8362087873921276 0.0006479493609272396 0.32486726549510325 0.0001993213377440355 0.0008689786748284507 5.331592632882761e-07 1.706235638104534 0.0010468557654623716 1.1299731492875935 0.0012311561103320026']
['59866.42701918154 2.832881349050374 0.0006476652743840321 0.32459727460142285 0.0001992835823868163 0.0008682564834785509 5.33058272502904e-07 1.704817618704952 0.0010466574705189932 1.128063730345422 0.0012308379943096331']
['59866.4270507195 2.8382793602064753 0.000648131674991433 0.3254132508681351 0.00019940739204719215 0.0008704391163574237 5.333894476197333e-07 1.7091032083410458 0.001047307731340295 1.1291761518654295 0.0012316363717641487']
['59866.42708225746 2.834327747317802 0.0006478114444508211 0.32446118943433044 0.000199269956535226 0.0008678924729403284 5.330218250804765e-07 1.7041028856845089 0.0010465859061724054 1.130224861633293 0.0012308540638760446']
['59866.42711379543 2.8371059733981148 0.0006480527796524687 0.3250776295989285 0.00019938295615042694 0.0008695413720884992 5.333240846994128e-07 1.707340491591011 0.00104717939154636 1.1297654818071037 0.0012314857219207604']
['59866.42714533339 2.8396058288174744 0.0006482580572985706 0.325487764491039 0.00019943146576500824 0.0008706384308349504 5.33453841757364e-07 1.7094945614025159 0.0010474341689338668 1.1301112674149585 0.0012318103941364909']
['59866.42717687135 2.8399935841341613 0.0006482913698505784 0.32558143283054464 0.0001994561122050533 0.0008708889817466064 5.335197678542177e-07 1.7099865169671464 0.0010475636145223389 1.1300070671670148 0.001231937996286277']
['59866.42720840932 2.840748090227796 0.0006483425191470625 0.3255933464185216 0.0001994553574073544 0.0008709208490813374 5.335177488662376e-07 1.7100490883325716 0.0010475596502487101 1.1306990018952243 0.0012319615428101475']
['59866.42723994728 2.840634241632086 0.0006483037590131568 0.3256726238475962 0.00019947856431763158 0.0008711329061353347 5.335798244037923e-07 1.710465461384434 0.0010476815352816785 1.130168780247652 0.0012320447894945883']
['59866.42727148524 2.840627881893151 0.0006483338162633022 0.32546784276625723 0.00019942905050602793 0.0008705851427513548 5.334473812463462e-07 1.7093899304950484 0.0010474214837501467 1.1312379513981026 0.0012318394789630246']
['59866.42730302321 2.8396016320797264 0.0006482266084059989 0.3255700515220887 0.0001994391388640463 0.0008708585381919909 5.334743663227547e-07 1.7099267411874406 0.0010474744688237728 1.1296748908922858 0.001231828112474784']
['59866.427334561165 2.839804265146698 0.0006482472737215097 0.3255408998865579 0.00019944306594089442 0.0008707805612694037 5.334848707545577e-07 1.709773633857972 0.0010474950942273868 1.1300306312887258 0.0012318565258656593']
['59866.42736609913 2.8344439785788005 0.00064784384701105 0.32464334807046813 0.00019930373045000342 0.0008683797241566005 5.331121660129874e-07 1.705059601210442 0.0010467632901785895 1.1293843773683585 0.0012310219477229408']
['59866.4273976371 2.8408145586308993 0.0006483168811534418 0.3260660917745791 0.00019955267613500508 0.0008721853828668885 5.337780641025573e-07 1.7125319946143862 0.0010480707780199847 1.128282564016513 0.0012323827060324818']
['59866.427429175055 2.8411291458365273 0.0006483651075643735 0.32583233617862184 0.00019948721261931696 0.0008715601163362667 5.336029575124071e-07 1.7113042866524257 0.0010477269570342278 1.1298248591841016 0.001232115696354512']
['59866.42746071302 2.839701306170282 0.0006482239786618414 0.325718238051362 0.000199474450902537 0.0008712549183370915 5.335688215408463e-07 1.7107050317823635 0.0010476599312108038 1.1289962743879183 0.0012319844390156938']
['59866.42749225099 2.8345995144989917 0.0006479089076197139 0.3246629683902425 0.00019931035403271586 0.0008684322060200818 5.331298832555026e-07 1.7051626491084166 0.0010467980779029194 1.129436865390575 0.0012310857681226833']
['59866.427523788945 2.8346546760897917 0.0006478788016245977 0.32455966317025975 0.0001992824372748833 0.0008681558776770994 5.330552094739203e-07 1.7046200796757343 0.0010466514562756477 1.1300345964140575 0.0012309452516332555']
['59866.42755532691 2.8361288079370253 0.0006480117555361239 0.324697781957899 0.00019929733121532733 0.000868525327892001 5.330950488729754e-07 1.7053454934763603 0.0010467296807527696 1.130783314460665 0.0012310817437854418']
['59866.42758686487 2.841110542765793 0.0006483972936643368 0.32585597923623033 0.00019949900002418097 0.000871623358512539 5.33634487323337e-07 1.7114284623751594 0.0010477888656732193 1.1296820803906333 0.001232185277245272']
['59866.427618402835 2.837571544275677 0.0006480629116426869 0.32500509115575343 0.0001993686448940406 0.0008693473409658856 5.332858039062071e-07 1.7069595123726546 0.001047104227384667 1.1306120319030224 0.0012314271397259513']
['59866.4276499408 2.84180993272091 0.0006484088686280065 0.3258431201006756 0.0001994758215182975 0.0008715889619581286 5.335724877639279e-07 1.7113609248985064 0.001047667129822991 1.1304490078224034 0.0012320878523169505']
['59866.42768147876 2.839555179809879 0.0006482933213520732 0.3252007336730555 0.00019938708363197695 0.0008698706598517272 5.333351251883407e-07 1.7079870466021825 0.0010472010694956774 1.1315681332076963 0.0012316307524833053']
['59866.427713016725 2.8410646820993835 0.000648363505741582 0.32557949875002506 0.00019942836624868175 0.0008708838083268581 5.334455509448505e-07 1.7099763589812242 0.0010474178899615638 1.1310883231181592 0.0012318520494722768']
['59866.42774455469 2.8373237345509645 0.0006481159122655365 0.32498880367396243 0.00019937414444185417 0.0008693037740207166 5.333005144981281e-07 1.7068739688758532 0.0010471331115643602 1.1304497656751114 0.0012314795934428827']
['59866.42777609265 2.8370480521579187 0.0006481147293257543 0.3250026648830635 0.0001993837974724185 0.0008693408509945934 5.333263351288866e-07 1.706946769343821 0.001047183810254299 1.1301012828140977 0.0012315220805278755']
['59866.427807630615 2.841131126061428 0.0006483711168586592 0.3258817238914622 0.0001994902039204893 0.0008716922221955365 5.336109588631273e-07 1.7115636759005368 0.0010477426676496289 1.129567450160891 0.0012321322180635103']
['59866.42783916857 2.8428812953903995 0.0006485766875554991 0.32588913537263026 0.00019950952952390422 0.0008717120469663521 5.33662652397778e-07 1.7116026017470078 0.0010478441676675643 1.1312786936433916 0.001232326709665661']
['59866.42787070654 2.8432810707301126 0.0006486093226971435 0.3257810492945069 0.00019945534355568316 0.0008714229304350454 5.335177118147763e-07 1.7110349227652675 0.001047559577498336 1.1322461479648451 0.001232101912139633']
['59866.427902244504 2.840316245215743 0.0006483664884597821 0.32538542846076446 0.00019942922598899715 0.0008703646949513437 5.334478506410013e-07 1.7089570822519142 0.0010474224054043968 1.1313591629638287 0.0012318574587592516']
['59866.42793378246 2.840380385122783 0.0006483880836746822 0.3254029262849034 0.00019944706420479312 0.0008704114994085718 5.334955656026798e-07 1.7090489825887785 0.001047516093512569 1.1313314025340047 0.0012319484864308085']
['59866.42796532043 2.84022540124712 0.0006483489145393596 0.3252987877488686 0.0001994153827848047 0.000870132942050987 5.334108218279684e-07 1.7085020364961587 0.0010473496995000247 1.1317233647509615 0.0012317863889600169']
['59866.427996858394 2.844306873956251 0.0006486516532471151 0.32628671328374603 0.0001995577469305523 0.0008727755173834651 5.337916278366203e-07 1.7136907210280778 0.0010480974103495395 1.130616152928173 0.0012325814978497878']
['59866.42802839635 2.8402938195139575 0.0006483635309988833 0.3253577547938675 0.00019941650398299455 0.00087029067140714 5.334138208907264e-07 1.7088117373627498 0.0010473555881459799 1.1314820821512077 0.001231799089279559']
['59866.42805993432 2.8442501041007224 0.0006486696207550228 0.32649098854176406 0.00019961752698572068 0.0008733219277543045 5.339515318917186e-07 1.7147635952823745 0.0010484113812275246 1.129486508818348 0.0012328579403880525']
['59866.42809147228 2.843891546827863 0.0006486108484698069 0.3263377211928763 0.0001995744188720811 0.0008729119570620342 5.338362231627588e-07 1.7139586197104848 0.001048184973067653 1.1299329271173784 0.001232634483745104']
['59866.42812301024 2.8404577785842577 0.0006484136606242214 0.32528909024288255 0.00019941798563062764 0.0008701070024541241 5.334177841099655e-07 1.7084511042168202 0.0010473633699087587 1.1320066743674375 0.0012318320924179294']
['59866.42815454821 2.83974846729477 0.0006482776681695091 0.3254895746382205 0.00019942055072744893 0.0008706432727487597 5.334246454181775e-07 1.709504068478049 0.0010473768420559291 1.1302443988167212 0.001231771969287476']
['59866.42818608617 2.843370174650235 0.0006485943026526615 0.32592973070758324 0.00019952144958755322 0.0008718206343314653 5.336945370541093e-07 1.711815812539828 0.0010479067730438721 1.131554362110407 0.0012323892138544192']
['59866.42821762413 2.840719000280034 0.0006484512367015309 0.3251354912611304 0.0001994121130370432 0.0008696961446860613 5.334020756679868e-07 1.707644386875685 0.0010473325264550588 1.1330746134043492 0.0012318256481135962']
['59866.4282491621 2.84109653829117 0.0006484139692197855 0.32549869614629956 0.00019945962956330427 0.0008706676716243772 5.335291763408104e-07 1.7095519755582962 0.0010475820880425646 1.131544562732874 0.0012320182249735499']
['59866.428280700056 2.8446793456975383 0.0006487067068191181 0.3261213697379645 0.00019952591766948075 0.000872333244398264 5.337064886057883e-07 1.712822320052335 0.0010479302398607184 1.1318570256452034 0.0012324683278229294']
['59866.42831223802 2.8438414965699037 0.0006486233091083194 0.3261126900381317 0.00019955336781707301 0.0008723100273035926 5.337799142642406e-07 1.712776733393549 0.0010480744108039548 1.1310647631763546 0.0012325470245393008']
['59866.42834377598 2.840985938680325 0.0006484012753116836 0.32567325378721135 0.00019949102946975708 0.0008711345911437986 5.336131671025681e-07 1.710468769890816 0.0010477470035176318 1.1305171687895088 0.001232151775231442']
['59866.428375313946 2.8377947735943567 0.0006481688774140364 0.324714915607058 0.00019932148866001477 0.0008685711582274104 5.331596669693532e-07 1.7054354811295065 0.001046856558088313 1.1323592924648502 0.0012312723284719274']
['59866.42840685191 2.839960236646199 0.0006483340848901091 0.32542386154562797 0.00019943714355714006 0.0008704674985720882 5.334690291301981e-07 1.7091589366892226 0.0010474639892706936 1.1308012999569765 0.0012318757625869464']
['59866.42843838987 2.843999005235018 0.0006487117415863361 0.3260840729195025 0.00019955387354715344 0.0008722334801458297 5.337812670279745e-07 1.7126264334007484 0.0010480770669493353 1.1313725718342695 0.0012325958226187118']
['59866.428469927836 2.8374566650880895 0.0006481162419496054 0.32509491332609886 0.00019940161615703244 0.000869587603863528 5.333739978471338e-07 1.7074312674690066 0.0010472773957827335 1.1300253976190828 0.0012316024548515417']
['59866.4285014658 2.841015819444051 0.0006484461328201811 0.32535023462035995 0.00019942224923402165 0.0008702705558981207 5.334291887075376e-07 1.708772240653151 0.0010473857627837273 1.1322435787909 0.0012318682247917177']
['59866.42853300376 2.8389992740349963 0.0006482952617898863 0.3251458746901413 0.00019939333018378127 0.0008697239190398986 5.333518339210623e-07 1.7076989216919185 0.0010472338770156579 1.1313003523430778 0.0012316596687512598']
['59866.428564541726 2.8438772814062796 0.0006486304311964859 0.3262054055424797 0.0001995558498452563 0.0008725580295022184 5.337865533743963e-07 1.7132636845718472 0.0010480874466662622 1.1306135968344324 0.0012325618573254425']
['59866.428596079684 2.844119191998092 0.0006486917280852306 0.32597093113250525 0.0001995293733444247 0.0008719308402353952 5.337157320973689e-07 1.7120322013261833 0.0010479483894139953 1.1320869906719089 0.0012324758760160742']
['59866.42862761765 2.8393536691903307 0.0006482886497968931 0.325320785061449 0.00019942547690585274 0.00087019178206833 5.334378223197493e-07 1.7086175686000473 0.0010474027148416635 1.1307361005902834 0.0012317997485440423']
['59866.428659155616 2.8413849663277184 0.000648483813447015 0.32557590702512723 0.00019945030246390548 0.00087087420091893 5.335042275345242e-07 1.7099574948798701 0.0010475331011759743 1.1314274714478483 0.0012320133336787135']
['59866.428690693574 2.8434505424428655 0.0006486129155672146 0.32595890141769424 0.0001995261188707125 0.000871898662276132 5.337070267935293e-07 1.7119690200509152 0.0010479312965898766 1.1314815223919503 0.0012324198621464775']
['59866.42872223154 2.8389507855354053 0.0006482849237947586 0.3250550100001244 0.00019936699948192022 0.0008694808675345423 5.332814026377637e-07 1.7072216911771239 0.0010470955855142869 1.1317290943582814 0.0012315366448559634']
['59866.428753769505 2.8380758017504806 0.00064816692299997 0.32504465272296335 0.00019936239601638914 0.0008694531631335818 5.332690889521398e-07 1.7071672937130429 0.0010470714076491027 1.1309085080374377 0.00123145397509916']
['59866.428785307464 2.840255160926002 0.0006483866260422917 0.32536091557217695 0.00019941012827384442 0.0008702991260876771 5.333967666785086e-07 1.7088283380891647 0.0010473221022785947 1.1314268228368372 0.0012317827741739863']
['59866.42881684543 2.838325798710992 0.0006482453213287886 0.3249102222280411 0.00019936057706895346 0.0008690935786332597 5.332642234987681e-07 1.706461251197695 0.0010470618543537472 1.1318645475132971 0.001231487118676997']
['59866.42884838339 2.8443798897677186 0.000648689794241972 0.3262296315053481 0.0001995642103610065 0.000872622830876028 5.338089166921853e-07 1.7133909217717864 0.0010481313569380595 1.1309889679959322 0.001232630435512003']
['59866.428879921354 2.8470529686132906 0.000648975136102604 0.32647295363310136 0.00019961755911758247 0.0008732736866641889 5.33951617840368e-07 1.7146688741234317 0.001048411549987303 1.1323840944898589 0.0012330188585038644']
['59866.42891145932 2.8427786009495697 0.0006485789263221513 0.3259012242201771 0.0001995195626421861 0.0008717443830981733 5.336894897149072e-07 1.7116660935933672 0.0010478968626165238 1.1311125073562025 0.0012323726945817765']
['59866.42894299728 2.842637485487124 0.0006486001297289725 0.3258790610926841 0.00019954047850967335 0.0008716850995469988 5.33745437003977e-07 1.711549690612837 0.00104800671486173 1.1310877948742872 0.0012324772625406585']
['59866.42897453524 2.8459292187138283 0.000648872778809249 0.3261973945959622 0.00019957203765749124 0.0008725366012377293 5.338298537161615e-07 1.7132216102729108 0.0010481724666885045 1.1327076084409176 0.0012327616975731767']
['59866.42900607321 2.8427799196003622 0.00064863039823584 0.3254399574927409 0.00019943460633524627 0.0008705105531863197 5.334622423838768e-07 1.7092434742265805 0.001047450663525453 1.1335364453737817 0.001232020408124596']
['59866.42903761117 2.8452016619053446 0.0006488058859068888 0.32614504171086234 0.00019954781258588742 0.0008723965639192627 5.337650547263716e-07 1.712946647641084 0.0010480452341695768 1.1322550142642607 0.0012326183068788919']
['59866.42906914913 2.8448852739679964 0.000648785515124152 0.32607482524672005 0.00019951558953030385 0.0008722087437956546 5.336788621452347e-07 1.7125778636907567 0.0010478759954322683 1.1323074102772397 0.0012324636897037083']
['59866.42910068709 2.8450721259514316 0.0006488014538976363 0.3261981239516244 0.0001995514149164505 0.0008725385521714925 5.337746905031071e-07 1.713225440922397 0.0010480641539729544 1.1318466850290345 0.0012326320608448944']
['59866.42913222506 2.842885852093054 0.0006486670796309211 0.32578347310490985 0.00019950254829677458 0.0008714294138200327 5.336439785018699e-07 1.7110476528619216 0.00104780750155869 1.1318381992311326 0.0012323431099006364']
['59866.42916376302 2.8432087513155238 0.0006486532379806999 0.32576833857464793 0.00019950191828751259 0.0008713889308737713 5.336422933071096e-07 1.710968164782815 0.0010478041926865159 1.1322405865327088 0.00123233301073788']
['59866.42919530098 2.8421257042450243 0.0006485599188437419 0.3255102093382575 0.00019947955181252053 0.0008706984679506103 5.335824658272016e-07 1.7096124440034532 0.0010476867217044145 1.132513260241571 0.0012321840102705213']
['59866.42922683895 2.8457933726829365 0.0006488341256194183 0.3262702327269196 0.00019958255805271056 0.0008727314339870981 5.33857994437211e-07 1.7136041634817205 0.0010482277208650767 1.132189209201216 0.0012327883343698173']
['59866.42925837691 2.845375993890871 0.000648846543729584 0.3262857701016155 0.00019958511129519887 0.0008727729944910566 5.338648240365879e-07 1.7136857673404178 0.001048241130752095 1.1316902265504534 0.0012328062724979371']
['59866.42928991487 2.8418241878419774 0.0006485432805702062 0.3257541730046793 0.00019950074759139013 0.0008713510397732297 5.336391618436685e-07 1.7108937657808787 0.001047798044072427 1.1309304220610987 0.0012322699087191772']
['59866.42932145284 2.8420123393125873 0.0006485137244376436 0.32574279126513483 0.00019951662795721797 0.0008713205950655073 5.336816398053426e-07 1.7108339877370529 0.0010478814493551365 1.1311783515755345 0.0012323252747089971']
['59866.429352990795 2.8436793976607895 0.000648701362276959 0.3256010067529248 0.0001994822685469183 0.0008709413395029509 5.335897327466717e-07 1.7100893211813277 0.001047700990267428 1.1335900764794618 0.0012322705962682595']
['59866.42938452876 2.8407447963393024 0.0006484701952040551 0.3252756733081949 0.00019941084457484817 0.0008700711138578774 5.333986826927185e-07 1.7083806371228725 0.0010473258643636984 1.13236415921643 0.0012318299640101118']
['59866.42941606673 2.8462166968525113 0.0006489004565766567 0.3265205906656148 0.00019960461047451123 0.0008734011096759324 5.339169818647188e-07 1.7149190686219264 0.0010483435424081472 1.1312976282305849 0.0012329217272212605']
['59866.429447604685 2.841468778474097 0.0006485048633843662 0.3254375554989678 0.00019945368533396817 0.0008705041281580463 5.335132762822942e-07 1.7092308587130662 0.0010475508683506732 1.1322379197610308 0.0012320395203139487']
['59866.42947914265 2.840369321978114 0.000648456930659072 0.3252090539533419 0.00019940535234319915 0.0008698929155447605 5.333839916706085e-07 1.7080307455532662 0.0010472970186092394 1.1323385764248477 0.001231798455960871']
['59866.42951068062 2.8409077249102177 0.0006484589977904789 0.32547885977165847 0.00019943825358699542 0.0008706146118415679 5.334719983190799e-07 1.7094477929183745 0.00104746981925943 1.1314599319918432 0.0012319464655880202']
['59866.429542218575 2.8402054766106555 0.0006484548661741047 0.32512316045662937 0.00019939386127422218 0.0008696631613501177 5.333532545205396e-07 1.707579624247003 0.0010472366663562091 1.1326258523636525 0.00123174605695563']
['59866.42957375654 2.842787064559178 0.0006486327190852137 0.3254313556165048 0.0001994594882036655 0.0008704875442598854 5.335287982217304e-07 1.7091982963051724 0.001047581345607487 1.1335887682540056 0.0012321327363286273']
['59866.4296052945 2.847214505283871 0.0006489368832085708 0.3266796925328592 0.00019965115439863127 0.0008738266869637828 5.340414809503424e-07 1.71575468767258 0.0010485879957911307 1.1314598176112909 0.001233148759601093']
['59866.429636832465 2.846980368138067 0.0006489140960804443 0.32658526476546407 0.00019963272180203762 0.0008735741046789749 5.339921760955205e-07 1.7152587435160929 0.0010484911859350715 1.1317216246219741 0.0012330544477335268']
['59866.42966837043 2.8459938878450664 0.0006488500365113575 0.3259735152886046 0.00019951491013748873 0.0008719377525247553 5.336770448557417e-07 1.712045773574604 0.001047872427192693 1.1339481142704624 0.0012324946221186912']
['59866.42969990839 2.8468416497017097 0.0006489287697726822 0.3265893073871188 0.00019960837628279118 0.0008735849181784606 5.339270549235843e-07 1.7152799757726829 0.001048363320812979 1.1315616739290268 0.0012329534462682294']
['59866.429731446355 2.8413931211319174 0.0006485509525435254 0.3250595273945269 0.00019935124033019185 0.0008694929509908291 5.332392489084106e-07 1.7072454169880618 0.0010470128168602513 1.1341477041438557 0.0012316063399945422']
['59866.42976298432 2.844517224007017 0.0006488115087143924 0.32560714567645666 0.0001994785735611603 0.0008709577603437132 5.335798491290576e-07 1.7101215634267684 0.0010476815838296235 1.1343956605802488 0.001232312085040147']
['59866.42979452228 2.846125171199638 0.0006488858118894751 0.3261853261178849 0.00019958528536467236 0.0008725043195916522 5.338652896503214e-07 1.7131582254090596 0.001048242044982523 1.1329669457905782 0.0012328277177856624']
['59866.429826060245 2.8405106839766683 0.0006484318347268348 0.32496318823639503 0.00019936319243819118 0.0008692352559785601 5.332712192793093e-07 1.7067394340146798 0.0010470755905367184 1.1337712499619885 0.0012315969862682463']
['59866.4298575982 2.842052597041466 0.0006485381060982479 0.32560118361570034 0.0001994711831089236 0.0008709418125884128 5.335600806079626e-07 1.71009025008246 0.0010476427684292205 1.1319623469590059 0.0012321351570763427']
['59866.42988913617 2.8459258939522303 0.0006488566998766898 0.3260787256819061 0.00019955436062021008 0.0008722191769643953 5.337825698865395e-07 1.712598349169675 0.0010480796251061454 1.1333275447825553 0.0012326742949934125']
['59866.429920674134 2.8456503492649845 0.0006488679905044757 0.3261432135938788 0.00019955874238065507 0.0008723916739385152 5.337942905392162e-07 1.7129370461863385 0.0010481026385538608 1.132713303078646 0.0012326998053236162']
['59866.42995221209 2.8412684017858156 0.0006485072005046505 0.3256192100874501 0.00019949176242502412 0.0008709900311108578 5.336151276648172e-07 1.7101849269298852 0.001047750853072606 1.1310834748559304 0.0012322107933388478']
['59866.42998375006 2.845953413527388 0.0006488798101835634 0.3264296880323204 0.0001996369201792066 0.0008731579566771279 5.340034062212248e-07 1.7144416388252124 0.0010485132362353289 1.1315117747021757 0.001233055154737427']
['59866.430015288024 2.8474599706926567 0.0006490072547444517 0.3267873027850119 0.00019965883429015315 0.0008741145307210511 5.340620236847645e-07 1.71631986756834 0.0010486283313558464 1.1311401031243167 0.001233220091481272']
['59866.43004682598 2.841465612160126 0.0006485014686778386 0.32552645141125136 0.00019947413142621756 0.0008707419134330142 5.335679669822674e-07 1.709697749008673 0.0010476582532889579 1.131767863151453 0.0012321290397364166']
['59866.43007836395 2.8419987213207047 0.0006485221434089611 0.3256985032890629 0.00019949002296201445 0.0008712021303543915 5.3361047482219e-07 1.7106013828207085 0.001047741717237471 1.1313973384999962 0.0012322108896335392']
['59866.43010990191 2.8403361342754287 0.0006484189625329355 0.32531610460921434 0.0001994141884095995 0.0008701792624530518 5.334076270259883e-07 1.7085929863929326 0.0010473434265210059 1.1317431478824962 0.0012318179265009299']
['59866.43014143987 2.8430839120951212 0.0006486489229612101 0.32569924191002764 0.00019949923440845498 0.0008712041060716623 5.336351142715016e-07 1.7106052621324983 0.001047790096683062 1.132478649962623 0.0012323187542051927']
['59866.43017297784 2.844137651329809 0.0006487187677932773 0.3258164501196289 0.0001994996546499897 0.0008715176231460991 5.336362383642334e-07 1.7112208514686393 0.0010477923038339795 1.1329167998611698 0.001232357396075078']
['59866.4302045158 2.842300909493364 0.0006485943345927941 0.3257336140170651 0.00019950032941457233 0.0008712960470924941 5.336380432737922e-07 1.7107857879047537 0.001047795847765611 1.1315151215886103 0.0012322949117239447']
['59866.43023605376 2.842733842833397 0.0006487792033539468 0.3256385905303461 0.00019949182709766934 0.0008710418713341554 5.336153006559293e-07 1.7102867149703052 0.00104775119273986 1.1324471278630917 0.0012323542577491187']
['59866.43026759173 2.8470155136297013 0.0006489484884597959 0.3261974896306701 0.0001995376457344165 0.0008725368554435029 5.337378596899467e-07 1.71322210940478 0.0010479918368404228 1.1337934042249214 0.0012326479751974678']
['59866.430299129686 2.8406035406173062 0.0006484661558694538 0.3252366617019173 0.00019939264288461333 0.0008699667627658263 5.333499954830798e-07 1.708175744232759 0.0010472302672511204 1.1324277963845473 0.0012317465599525578']
['59866.43033066765 2.8441442553331555 0.000648756353404052 0.32587466531519765 0.00019952510145039142 0.0008716733414005164 5.337043053233898e-07 1.7115266035462062 0.0010479259529957534 1.1326176517869493 0.0012324908149938406']
['59866.43036220561 2.8408996674181086 0.0006484637941467932 0.3256677262889291 0.0001994810039976504 0.0008711198057879238 5.335863502379865e-07 1.7104397389124428 0.0010476943487271555 1.1304599285056658 0.0012321399030443228']
['59866.430393743576 2.8429241308654465 0.0006486757165681005 0.3255579679326834 0.00019948124374389483 0.0008708262161250305 5.335869915287409e-07 1.709863276957371 0.0010476956078986073 1.1330608539080755 0.0012322525196059332']
['59866.43042528154 2.8470451598071267 0.0006490176271763737 0.32618234144064695 0.000199574386229259 0.000872496335959115 5.338361358473556e-07 1.7131425495832298 0.0010481848016242596 1.133902610223897 0.0012328484329964242']
['59866.4304568195 2.844174515845914 0.0006487368158911423 0.32576282213867075 0.00019949913632101107 0.0008713741751081574 5.336348519000469e-07 1.7109391919047834 0.0010477895815179153 1.1332353239411308 0.0012323645821874572']
['59866.430488357466 2.8418539494833426 0.0006485364187377295 0.3256324800450886 0.00019946869562717103 0.0008710255265621651 5.335534269102017e-07 1.7102546220855495 0.0010476297039242178 1.1315993273977931 0.0012321231606351307']
['59866.43051989543 2.845692405318895 0.0006488519789037021 0.3263616260778007 0.00019960735896731784 0.0008729758995931228 5.339243337338992e-07 1.7140841705766847 0.0010483579777695266 1.1316082347422103 0.0012329084881207775']
['59866.43055143339 2.842493370492245 0.0006485954762706309 0.3258442601821393 0.00019952492344153786 0.0008715920115312457 5.337038291723149e-07 1.7113669127213198 0.001047925018075304 1.1311264577709252 0.0012324053453904088']
['59866.430582971356 2.840626214212283 0.0006484430881965147 0.3252473850032458 0.00019938361597343637 0.0008699954462349472 5.333258496421611e-07 1.7082320640926776 0.0010471828570033424 1.1323941501196053 0.0012316941075735954']
['59866.430614509314 2.8419953816407117 0.0006485272293326613 0.3257358213357453 0.00019951064844390327 0.0008713019513896191 5.33665645366665e-07 1.710797380965049 0.0010478500443482316 1.1311980006756628 0.0012323056774301128']
['59866.43064604728 2.8413046183050623 0.0006485150560582381 0.32563736544644795 0.0001994910268513828 0.0008710385943903219 5.336131600987495e-07 1.7102802807061344 0.001047746989765666 1.131024337598928 0.0012322116427372508']
['59866.430677585246 2.841063552363014 0.0006484552631303021 0.32554469642789174 0.00019947196054544952 0.000870790716535285 5.335621601519297e-07 1.709793573675902 0.001047646851604252 1.131269978687112 0.0012320950263505208']
['59866.430709123204 2.846900699976664 0.0006489392792786562 0.3263789978870811 0.0001995821517131063 0.0008730223669766088 5.338569075303775e-07 1.7141754090708041 0.0010482255867284996 1.1327252909058598 0.0012328418669330667']
['59866.43074066117 2.842544155841173 0.0006486140193789913 0.32558635897971466 0.00019946095835671155 0.0008709021585699815 5.33532730694409e-07 1.7100123895993418 0.0010475890669995357 1.1325317662418313 0.0012321294572535501']
['59866.430772199135 2.84261451210124 0.0006485991041689378 0.3257290133206422 0.000199487987239305 0.0008712837408138828 5.33605029522493e-07 1.710761624583205 0.001047731025416518 1.131852887518035 0.0012322423055345475']
['59866.430803737094 2.844077480629779 0.0006487716762738924 0.3260195241165026 0.00019955889572287737 0.0008720608202959458 5.337947007101853e-07 1.71228741657827 0.0010481034439226752 1.131790064051509 0.001232649794993618']
['59866.43083527506 2.840929846054664 0.0006484850933773553 0.3253055437460932 0.00019942778107099107 0.0008701510134855048 5.334439856688496e-07 1.7085375196748593 0.001047414816549323 1.1323923263798048 0.0012319134361876605']
['59866.43086681302 2.842616823193731 0.0006486003230772512 0.32549977068052904 0.00019946373819158914 0.0008706705458669679 5.335401663996484e-07 1.7095576191204258 0.001047603666972632 1.1330592040733052 0.0012321346607211485']
['59866.43089835098 2.8469120218161277 0.0006489733810031558 0.3262271079742138 0.00019953618812377168 0.0008726160807507495 5.337339607665984e-07 1.7133776679317954 0.0010479841813223303 1.1335343538843323 0.0012326545718701985']
['59866.43092988895 2.8468020519152812 0.0006489322632733894 0.3266519472889302 0.00019966006717016024 0.000873752471960109 5.340653214821993e-07 1.7156089668536252 0.0010486348065659678 1.131193085061656 0.0012331861335008467']
['59866.43096142691 2.8398114845521922 0.0006483721294491603 0.32547015429539244 0.00019945067197336632 0.0008705913257982115 5.335052159254017e-07 1.7094020708791622 0.001047535041876924 1.13040941367303 0.0012319562014156704']
['59866.43099296487 2.8476849338351053 0.0006490350870582551 0.3264711368400035 0.00019961246281154644 0.0008732688269733973 5.339379858689874e-07 1.7146593321428758 0.0010483847836740886 1.1330256016922295 0.0012330276553557435']
['59866.43102450284 2.8473976314730787 0.0006489892650731465 0.32642523705860554 0.0001995927623917585 0.0008731460508877447 5.338852897481431e-07 1.7144182618624242 0.0010482813150827653 1.1329793696106545 0.0012329155614768737']
['59866.4310560408 2.8430512824028953 0.0006486288321067476 0.3255107837544915 0.0001994491436074351 0.0008707000044410815 5.335011277406487e-07 1.7096154608954386 0.0010475270147449324 1.1334358215074567 0.0012320844972892862']
['59866.43108757876 2.846442620931663 0.0006488878618447868 0.32656949539153945 0.00019963907022461862 0.0008735319236065453 5.340091573196315e-07 1.715175921174052 0.0010485245284906442 1.131266699757611 0.0012330689940534662']
['59866.43111911672 2.8432457939486073 0.0006486635989001455 0.3254668946636113 0.0001994473143225324 0.0008705826066971924 5.334962346358657e-07 1.709384950964345 0.0010475174071561577 1.1338608429842623 0.0012320946322556755']
['59866.43115065469 2.8428599479427312 0.0006486192574427301 0.32603588226499547 0.00019954114542611987 0.0008721045762655671 5.337472209207684e-07 1.7123733312237157 0.001048010217574159 1.1304866167190155 0.0012324903071689428']
['59866.43118219265 2.8402702857135766 0.0006484266947565546 0.3251499677130849 0.0001993933433466163 0.0008697348673564309 5.333518691299742e-07 1.7077204186611603 0.0010472339461481948 1.1325498670524163 0.001231728913534967']
['59866.43121373061 2.8414385396406825 0.0006485072961042599 0.3258264122457226 0.00019952440310622388 0.0008715442705681415 5.337024373414361e-07 1.7112731735594677 0.0010479222852217641 1.1301653660812148 0.0012323566159861612']
['59866.43124526858 2.8432476827224997 0.0006486737875343961 0.325659425580633 0.0001994860813965139 0.0008710976024474786 5.335999316350819e-07 1.7103961427554255 0.0010477210157379933 1.1328515399670742 0.0012322731066826344']
['59866.43127680654 2.8405187468245034 0.0006484128208485644 0.3251577768596352 0.00019938721945219232 0.0008697557558316378 5.333354884901667e-07 1.7077614330863196 0.0010472017828371445 1.132757313738184 0.0012316942641005058']
['59866.4313083445 2.8439783911766776 0.0006487388095278457 0.32563437983837207 0.00019948272774916923 0.0008710306082679116 5.335909610543711e-07 1.71026459999145 0.0010477034020439562 1.1337137911852275 0.0012322923604575686']
['59866.43133988247 2.841572877128654 0.0006484865531189353 0.3258939819178641 0.0001995196020635637 0.0008717250108593082 5.336895951620855e-07 1.7116280562913033 0.0010478970696615741 1.1299448208373506 0.001232324258538065']
['59866.431371420425 2.8436020068592582 0.000648707849957542 0.32552347760748573 0.00019943747482469753 0.0008707339588856347 5.334699152288411e-07 1.709682130291417 0.0010474657291213104 1.1339198765678413 0.0012320739946448732']
['59866.43140295839 2.8466037713617074 0.0006489308445194738 0.32659416287773513 0.00019963752305129717 0.0008735979059991787 5.340050188274982e-07 1.715305477299029 0.0010485164025803423 1.1312982940626783 0.0012330847040851573']
['59866.43143449636 2.846926629077329 0.0006489743973827806 0.3260951261928122 0.00019954607608943945 0.0008722630462480918 5.337604098189203e-07 1.712684486306787 0.0010480361139151232 1.1342421427705422 0.0012326992595636035']
['59866.431466034315 2.8417293060662843 0.0006485403182899438 0.3255581877847261 0.00019945636525029917 0.0008708268042013221 5.335204447181119e-07 1.7098644316424692 0.0010475649435414873 1.1318648744238151 0.001232070150350499']
['59866.43149757228 2.841366785850298 0.000648502224454328 0.3256467679387274 0.00019949651740275274 0.0008710637448629884 5.336278466263264e-07 1.7103296635437364 0.00104777582669513 1.1310371223065616 0.0012322294096997015']
['59866.43152911025 2.8467448774734363 0.0006489229755816312 0.3264889184931844 0.00019960825288881155 0.0008733163906372642 5.339267248603606e-07 1.7147527231784896 0.0010483626727353548 1.1319921542949467 0.0012329498456233063']
['59866.431560648205 2.8414182079646872 0.0006484831110770943 0.3255455785154177 0.0001994552120820183 0.0008707930760073858 5.335173601394209e-07 1.7097982064885386 0.0010475588869853904 1.1316200014761486 0.0012320348887325785']
['59866.43159218617 2.840133916085353 0.0006483917803745882 0.32522864981182986 0.00019939893350721344 0.0008699453319774075 5.333668220995829e-07 1.7081336649780983 0.0010472633062353649 1.1320002511072549 0.001231735496543132']
['59866.43162372413 2.843984082223211 0.0006487242540859504 0.32571796389885244 0.0001994835572468495 0.0008712541850139476 5.33593179855314e-07 1.7107035919057378 0.0010477077586494197 1.1332804903174734 0.0012322884018660417']
['59866.431655262095 2.8477562624693538 0.0006490442061804569 0.3262285879357373 0.0001995586015529903 0.0008726200394598596 5.33793913843099e-07 1.7133854408389564 0.0010481018989127644 1.1343708216303974 0.001232791941927332']
['59866.43168680006 2.8423146322648662 0.0006485756546939811 0.3257776470603492 0.00019950201812944963 0.0008714138298907805 5.336425603716106e-07 1.7110170538883887 0.001047804717066437 1.1312975783764776 0.0012322926214858232']
['59866.43171833802 2.8402758548038483 0.0006483996546763716 0.32526760700971225 0.0001994083536618106 0.0008700495375339115 5.33392019816706e-07 1.7083382721098335 0.0010473127818372407 1.1319375826940148 0.0012317817076024865']
['59866.431749875985 2.842628760319804 0.0006486376167219286 0.3255266487154942 0.000199466207116851 0.0008707424411968049 5.335467704611534e-07 1.7096987852704528 0.0010476166340170746 1.1329299750493511 0.001232165317518704']
['59866.43178141395 2.8400238307849626 0.0006483602843237404 0.32498915605126655 0.00019934714467066732 0.0008693047165852509 5.332282935393594e-07 1.7068758195969884 0.0010469913060434208 1.1331480111879741 0.0012314876585735116']
['59866.43181295191 2.84008495841383 0.0006484107095482194 0.3252086498291326 0.00019941217756618278 0.0008698918345638272 5.334022482752395e-07 1.708028623052167 0.001047332865368607 1.132056335361663 0.0012318046026614945']
['59866.431844489874 2.8436945013799546 0.0006487074557678161 0.3259468625348121 0.0001995300479332436 0.0008718664597934429 5.337175365367821e-07 1.7119057906240132 0.0010479519324224978 1.1317887107559415 0.0012324871666012593']
['59866.43187602783 2.843183247524594 0.0006486837051914928 0.3257941398640568 0.00019951117562564568 0.0008714579460459992 5.336670555108702e-07 1.711103675756601 0.001047852813159904 1.132079571767993 0.0012323903875915653']
['59866.4319075658 2.8406069980777096 0.0006484714684334733 0.3252519294677429 0.00019941052318901473 0.0008700076021002989 5.333978230264322e-07 1.7082559320784818 0.0010473241764128924 1.1323510659992277 0.001231829199147028']
['59866.431939103764 2.846294329581024 0.0006488456308467924 0.32658321671253093 0.0001996380576055513 0.0008735686263974955 5.34006448692236e-07 1.7152479869355617 0.0010485192101131896 1.1310463426454624 0.0012330422485240962']
['59866.43197064172 2.845523000875202 0.000648833008841624 0.32623420631818345 0.00019956416634616547 0.00087263506791933 5.338087989580757e-07 1.7134149491501232 0.001048131125767676 1.132108051725079 0.0012327056137478609']
['59866.43200217969 2.8467093057284805 0.000648933302946517 0.3265537125656305 0.00019961726525421193 0.0008734897065517659 5.339508317931744e-07 1.7150930281808323 0.0010484100065872475 1.1316162775476482 0.0012329955286153103']
['59866.43203371765 2.842978125421385 0.000648646126065709 0.32546218889794504 0.00019943601227046009 0.0008705700193716998 5.334660030820103e-07 1.709360235808535 0.0010474580476389711 1.13361788961285 0.0012320349663965291']
['59866.43206525561 2.8438229263848678 0.0006487362047902201 0.32544148749615714 0.00019944110882698713 0.0008705146457511372 5.334796357234226e-07 1.7092515099588088 0.0010474848152677895 1.134571416426059 0.0012321051503918865']
['59866.43209679358 2.8471942723419357 0.0006489406047151835 0.32646917447162044 0.00019958003848741175 0.0008732635778872068 5.338512549200387e-07 1.7146490255862419 0.0010482144878540534 1.1325452467556938 0.0012328331277976121']
['59866.43212833154 2.8466354889597936 0.0006489247990734906 0.3262400207534769 0.0001995611737765169 0.0008726506207952669 5.338007942143426e-07 1.7134454871506142 0.0010481154084901099 1.1331900018091794 0.0012327405665292922']
['59866.4321598695 2.8473629935655174 0.0006489942717860527 0.32622785522547726 0.0001995756120417519 0.0008726180795529733 5.338394147400875e-07 1.713381592570784 0.0010481912397150837 1.1339814009947333 0.0012328416118166003']
['59866.43219140747 2.846442446997341 0.0006488674625059448 0.3265831599371305 0.00019962677573922164 0.0008735684745305103 5.339762711326786e-07 1.7152476887454333 0.001048459956613559 1.1311947582519077 0.001233003351382716']
['59866.43222294543 2.8461965562961207 0.0006510718927558298 0.3264000797726111 0.00020042631876877596 0.0008730787583428575 5.361149471892877e-07 1.714286133259512 0.0010526592372309663 1.1319104230366086 0.0012377342522788722']
['59866.43225448339 2.843533801602878 0.0006508540949162068 0.32578968017882914 0.00020031381455059167 0.0008714460169544258 5.358140126944521e-07 1.711080253040069 0.0010520683537320991 1.132453548562809 0.0012371171625168587']
['59866.43228602135 2.8439794231095252 0.0006509362091458821 0.32566790561559567 0.00020027945195392636 0.0008711202854639811 5.357220971126578e-07 1.710440680754179 0.0010518878779092772 1.1335387423553462 0.001237006894107585']
['59866.432317559316 2.8419031461129296 0.0006507230836621208 0.32556173144300865 0.0002002774393756717 0.000870836283037159 5.357167137214378e-07 1.7098830432931127 0.0010518773076453347 1.132020102819817 0.0012368857675427985']
['59866.43234909728 2.8465919167837406 0.0006510953969272444 0.326141232602026 0.000200342244242162 0.0008723863750369084 5.358900585086369e-07 1.7129266418173634 0.0010522176693390864 1.1336652749663771 0.0012373711001834595']
['59866.43238063524 2.8412925088764336 0.0006506598611127814 0.32562862680282567 0.0002002848812853291 0.0008710152196285 5.357366198845978e-07 1.7102343844686223 0.0010519163933053 1.1310581244078113 0.0012368857479038776']
['59866.432412173206 2.8476293382363878 0.0006512100363410662 0.32627631394796425 0.0002003764861042773 0.0008727477004810358 5.359816511408439e-07 1.7136361026678795 0.0010523975110518767 1.1339932355685083 0.0012375843537712965']
['59866.43244371117 2.8421962222635044 0.0006507248763412106 0.3257910590460176 0.0002003093873821105 0.0008714497052490294 5.358021705810456e-07 1.7110874949895882 0.0010520451017967988 1.1311087272739162 0.0012370294098783265']
['59866.43247524913 2.84659859912711 0.0006510855014878433 0.3263943669646149 0.00020038811999791267 0.0008730634773070334 5.360127703287342e-07 1.7142561290158345 0.0010524586134344153 1.1323424701112754 0.0012375707912034642']
['59866.432506787096 2.8466426972535466 0.0006510871116866842 0.3262921026243093 0.00020038270765104018 0.0008727899331849886 5.359982929882554e-07 1.7137190263881792 0.001052430187242858 1.1329236708653674 0.001237547464150182']
['59866.432538325054 2.845766773209567 0.0006510236849022045 0.3262835734962989 0.00020035769680240052 0.0008727671188508185 5.359313921446937e-07 1.7136742305477883 0.0010522988277437003 1.1320925426617785 0.001237402384503283']
['59866.43256986302 2.8464865164418125 0.0006510984216935246 0.32647342702314064 0.00020042883160597717 0.0008732749529224202 5.361216687096533e-07 1.7146713604156547 0.0010526724349053424 1.1318151560261578 0.0012377594313683661']
['59866.432601400986 2.845988999964565 0.0006510508734820983 0.3264851817727096 0.00020042562626198184 0.0008733063953845832 5.361130948215665e-07 1.7147330975457435 0.0010526556001154508 1.1312559024188216 0.0012377201025741736']
['59866.432632938944 2.842810836589247 0.0006508355947843757 0.3258464923414562 0.00020034236323438522 0.0008715979822739189 5.358903767977212e-07 1.711378636247144 0.001052218294298242 1.131432200342103 0.0012372349454708405']
['59866.43266447691 2.840616707228237 0.0006506410717387538 0.3251634818470183 0.00020020272358637215 0.0008697710159483151 5.355168584744792e-07 1.7077913962553486 0.001051484892785568 1.1328253109728885 0.001236508909789829']
['59866.432696014876 2.8469557107359753 0.0006511011657065667 0.3263789664164835 0.00020039551223758557 0.0008730222827967572 5.360325436309942e-07 1.714175243784052 0.0010524974382226135 1.1327804669519232 0.001237612049654339']
['59866.432727552834 2.847064975051603 0.0006511579775161222 0.32636296796244424 0.00020039485684073005 0.0008729794889641156 5.360307905276454e-07 1.7140912182901484 0.0010524939960122376 1.1329737567614546 0.0012376390117173482']
['59866.4327590908 2.847185403943681 0.000651134602363646 0.32659779249194365 0.00020044438840244972 0.0008736076147562007 5.361632811643975e-07 1.715324540398864 0.0010527541407691686 1.1318608635448169 0.001237847951608716']
['59866.43279062876 2.8438745947371165 0.0006508778933587749 0.32601640365427065 0.00020036726493849303 0.0008720524734557954 5.359569856935223e-07 1.7122710275959594 0.0010523490805593122 1.131603567141157 0.0012373684250930224']
['59866.432822166724 2.8434960039824313 0.0006508662909322232 0.3254971474847466 0.00020026797490826987 0.0008706635291514137 5.356913974731902e-07 1.7095438418316524 0.0010518275993081402 1.1339521621507789 0.0012369188442813031']
['59866.43285370469 2.8414262380759094 0.000650698399552418 0.3252504127464801 0.0002002237265899985 0.0008700035450635548 5.355730388416542e-07 1.7082479661054626 0.0010515952026785636 1.1331782719704468 0.001236632879021356']
['59866.43288524265 2.839826193946287 0.0006505903856672477 0.3252727429567481 0.0002002139772479385 0.0008700632755399318 5.35546960589877e-07 1.7083652466215762 0.0010515439981509376 1.1314609473247108 0.0012365325025934083']
['59866.43291678061 2.8420596350432037 0.0006507624539336142 0.3256957299261907 0.00020029906257103215 0.0008711947119609446 5.357745530227329e-07 1.710586816839237 0.001051990874847858 1.1314728182039666 0.0012370030607128104']
['59866.43294831858 2.847622414615401 0.0006512083312224876 0.32653063428687534 0.00020041728119605889 0.0008734279750871956 5.360907728301032e-07 1.7149718187335892 0.0010526117709877044 1.1326505958818118 0.0012377656608079934']
['59866.43297985654 2.8424080105029614 0.0006507607320126533 0.32539013742484235 0.00020024899713270286 0.0008703772908321813 5.356406343338562e-07 1.7089818142061048 0.001051727926117137 1.1334261962968566 0.0012367785415765826']
['59866.4330113945 2.84340275058296 0.0006508805160377109 0.325969083207114 0.00020032671117516568 0.0008719258972696727 5.358485095272277e-07 1.7120224958356827 0.001052136088104862 1.1313802547472773 0.001237188665503414']
['59866.43304293246 2.842042387847263 0.0006507573683243799 0.3253122175899732 0.0002002369653781557 0.0008701688651702598 5.356084509185578e-07 1.7085725713759097 0.001051664734128969 1.1334698164713533 0.0012367230350563653']
['59866.43307447043 2.8470959240335567 0.0006511768999547163 0.32640416923570625 0.0002004124913136648 0.0008730896971372472 5.360779605030469e-07 1.7143076115320708 0.001052586614042357 1.132788312501486 0.0012377277305998231']
['59866.43310600839 2.8428408997047914 0.0006508136164293893 0.3257613482330435 0.00020030692931968864 0.0008713702325978006 5.35795595576258e-07 1.7109314508037998 0.0010520321918050875 1.1319094489009915 0.0012370651138578423']
['59866.43313754635 2.843318395752206 0.0006508431425725448 0.32553991273289984 0.00020027235617898418 0.0008707779207587438 5.357031168158996e-07 1.7097684492274152 0.0010518506101837406 1.133549946524791 0.0012369262315827946']
['59866.43316908432 2.847385989341896 0.0006512227597551744 0.32633012872761424 0.0002003952625107609 0.0008728916481817534 5.360318756434552e-07 1.7139187433173018 0.0010524961266321477 1.1334672460245943 0.0012376749086084032']
['59866.43320062228 2.8440177120354093 0.0006509106115052371 0.3259324394847395 0.00020034572752756293 0.000871827879966325 5.358993758546832e-07 1.7118300393106067 0.0010522359639052676 1.1321876727248026 0.0012372894357852446']
['59866.43323216024 2.840257506205111 0.000650586190556843 0.3253868990796843 0.00020025551107716804 0.0008703686286701756 5.356580583079848e-07 1.708964806090779 0.0010517621380103364 1.131292700114332 0.0012367158066004247']
['59866.43326369821 2.8469783799722075 0.0006511167704095013 0.3263169326908799 0.00020039483913067928 0.0008728563504594763 5.36030743155509e-07 1.7138494364016805 0.0010524939029972651 1.133128943570527 0.0012376172528511858']
['59866.433295236166 2.849210404122647 0.0006520524405503255 0.33083342613165573 0.00020389671570353635 0.0008849373967879064 5.453978182255579e-07 1.7375705153973515 0.0010708861118883214 1.1116398887252956 0.0012537820583589964']
['59866.43332677413 2.845840222529116 0.0006510709973096136 0.3263455340907308 0.00020040552561274044 0.0008729328555715035 5.360593281377661e-07 1.7139996538378721 0.001052550029478679 1.1318405686912438 0.001237640904339099']
['59866.4333583121 2.846826831289154 0.0006511627655031808 0.3263632588342886 0.00020041813386917275 0.0008729802670093567 5.360930536223875e-07 1.7140927459784068 0.0010526162493128821 1.1327340853107473 0.001237745497061197']
['59866.433389850055 2.8414143816815938 0.0006506833402395998 0.3254260819567343 0.0002002768681588524 0.0008704734378897902 5.357151857889946e-07 1.7091705985122598 0.0010518743075569978 1.132243783169334 0.0012368623076817712']
['59866.43342138802 2.8465732771142847 0.0006511555062824125 0.3265068799667613 0.00020042930575090212 0.0008733644352978521 5.361229369871079e-07 1.7148470586489564 0.0010526749251623011 1.1317262184653283 0.0012377915783472438']
['59866.43345292599 2.847271627562346 0.0006511728662180921 0.3264882599131526 0.00020041903343432176 0.0008733146290193234 5.360954598449102e-07 1.7147492642497513 0.0010526209739197573 1.132522363312595 0.0012377548288875562']
['59866.433484463945 2.8471762212425182 0.0006511395953333005 0.326428732329715 0.00020042421726075105 0.0008731554002940392 5.361093259222269e-07 1.7144366193787552 0.0010526481998989025 1.132739601863763 0.0012377604798026207']
['59866.43351600191 2.8469845028733998 0.0006511577164664453 0.32595318498124964 0.00020032325645086594 0.0008718833715346693 5.358392685784996e-07 1.7119389967502607 0.0010521179435444641 1.135045506123139 0.0012373190933797262']
['59866.43354753987 2.848062546996995 0.0006512212027832697 0.3266985754999886 0.0002004652337275751 0.0008738771965025875 5.362190397616087e-07 1.715853862920108 0.001052863622518777 1.1322086840768868 0.0012379866164776783']
['59866.433579077835 2.8467344115625077 0.0006511016122630516 0.3263410490510309 0.00020040826763727802 0.000872920858659937 5.360666627051482e-07 1.7139760979570953 0.001052564430868057 1.1327583136054125 0.0012376692573624595']
['59866.4336106158 2.845388327030027 0.0006510420891638844 0.32629388784131463 0.00020040031165156295 0.0008727947084137431 5.360453814538251e-07 1.7137284025279131 0.0010525226452287972 1.1316599245021137 0.0012376024081191422']
['59866.43364215376 2.843748072033526 0.0006508964426032319 0.3255084546352302 0.00020026038946979055 0.0008706937743428716 5.356711073886608e-07 1.709603228126209 0.0010517877598203286 1.134144843907317 0.0012369008330102328']
['59866.433673691725 2.8410848583478905 0.0006506667087572981 0.3252757519838881 0.00020024331825992787 0.0008700713243053643 5.356254440704388e-07 1.7083810503355468 0.0010516981001046633 1.1327038080123437 0.0012367037072996963']
['59866.43370522969 2.8423489744866424 0.0006507501297022609 0.3258181851597876 0.00020031318368490065 0.0008715222641581617 5.358123252088529e-07 1.711229964074515 0.0010520650403618734 1.1311190104121274 0.001237059651132127']
['59866.43373676765 2.843963095161387 0.0006509210053153391 0.32571669740666004 0.00020030109948918537 0.0008712507973081861 5.357800015200902e-07 1.7106969401610297 0.0010520015729474023 1.133266155000357 0.0012370955761963343']
['59866.433768305615 2.8410601193844567 0.0006505888320001271 0.3252650805108426 0.00020022282752356338 0.0008700427794703178 5.355706339531278e-07 1.708325002682997 0.0010515904806909842 1.1327351167014597 0.0012365712140443772']
['59866.43379984357 2.844312194765612 0.0006509332677402108 0.32580352731185613 0.00020033309551726358 0.0008714830562765922 5.358655868314844e-07 1.7111529795790763 0.0010521696193133592 1.1331592151865357 0.001237244934059933']
['59866.43383138154 2.8429096962113958 0.0006507777315676194 0.32562904220325567 0.00020030261875580416 0.0008710163307718915 5.357840653653381e-07 1.7102365661935697 0.0010520095522888874 1.132673130017826 0.0012370269819253587']
['59866.433862919504 2.847184068879313 0.0006510993897027281 0.3266542268995696 0.00020043936737859674 0.0008737585696290431 5.361498505632953e-07 1.7156209395985798 0.0010527277698455712 1.131563129280733 0.0012378070013840184']
['59866.43389445746 2.841755876503438 0.0006507340602360371 0.32560673644990523 0.00020029254618682732 0.0008709566657146627 5.357571225226105e-07 1.7101194141276537 0.0010519566501408998 1.1316364623757842 0.0012369590174807499']
['59866.43392599543 2.8465278981775777 0.0006511149438619022 0.3261833731265432 0.00020039661715244946 0.0008724990955878563 5.360354991379233e-07 1.7131479681015926 0.0010525032413468986 1.133379930075985 0.0012376242334270996']
['59866.433957533394 2.8473437135469943 0.0006511756572485923 0.32636547991315423 0.00020039580555295425 0.0008729862081132298 5.360333282123522e-07 1.7141044113085833 0.0010524989787445076 1.133239302238411 0.0012376525509412435']
['59866.43398907135 2.8404873583018 0.0006505889080652352 0.32542018113289795 0.0002002605189398029 0.0008704576539354731 5.356714537045002e-07 1.7091396067904305 0.0010517884398098891 1.1313477515113697 0.0012367396045308955']
['59866.43402060932 2.8461796745675056 0.0006510367099618379 0.32623262133554476 0.00020036713634229375 0.0008726308282920751 5.359566417150218e-07 1.7134066246614748 0.0010523484051591057 1.132773049906031 0.0012374513984633286']
['59866.43405214728 2.8406822938592446 0.0006506474901566252 0.3253445677240705 0.0002002424380124325 0.0008702553976702813 5.356230895201861e-07 1.7087424775423872 0.001051693476956053 1.1319398163168575 0.0012366896643536032']
['59866.43408368524 2.8416546940300695 0.0006507203739826805 0.325337060872511 0.00020024056434932014 0.0008702353177957812 5.356180777093287e-07 1.7087030508010033 0.0010516836362884463 1.1329516432290663 0.001236719643230853']
['59866.43411522321 2.8414661874842047 0.000650710327462574 0.3254122434444231 0.00020025216107025012 0.0008704364216269438 5.356490974649532e-07 1.7090979172501215 0.0010517445434361876 1.1323682702340832 0.0012367661520733193']
['59866.43414676117 2.846769296949111 0.0006511695278055787 0.32615748339631945 0.00020037187271379722 0.000872429843847681 5.359693109072419e-07 1.7130119926277283 0.0010523732810598595 1.1337573043213829 0.0012375424342749763']
['59866.43417829913 2.8435328678484644 0.000650880123977017 0.32552974828359926 0.00020026942981779574 0.0008707507321478195 5.356952891713884e-07 1.7097150645147021 0.0010518352406396836 1.1338178033337623 0.0012369326211398412']
['59866.4342098371 2.8416661783193993 0.0006506735472175322 0.32575261766901575 0.00020033071831900454 0.000871346879447868 5.358592281280619e-07 1.7108855970011332 0.0010521571340283851 1.130780581318266 0.0012370976920742644']
['59866.43424137506 2.8467942137165414 0.0006511077171111901 0.32640664265229796 0.00020037299322656942 0.0008730963132124891 5.359723081365947e-07 1.7143206021654305 0.0010523791661059317 1.132473611551111 0.0012375149164901252']
['59866.43427291302 2.8444023609727447 0.000650949146872014 0.32583816745270405 0.00020031299619136656 0.0008715757142538249 5.358118236874621e-07 1.711334913091933 0.0010520640556269253 1.1330674478808116 0.0012371635174687203']
['59866.43430445098 2.8416521962646533 0.0006507376042862478 0.3254987276278958 0.00020026705874842164 0.0008706677558336487 5.356889468619547e-07 1.709552140902814 0.0010518227875442314 1.1321000553618392 0.0012368470422932348']
['59866.434335988946 2.841638573613598 0.000650684710932584 0.3256229197204519 0.00020028731927286937 0.0008709999539079886 5.357431411916269e-07 1.710204410296491 0.001051929197861709 1.131434163317107 0.0012369097098638199']
['59866.43436752691 2.846876755863959 0.0006511305952138134 0.326593413961746 0.0002004242852557667 0.0008735959027440254 5.36109507800258e-07 1.7153015439167334 0.0010526485570155814 1.1315752119472255 0.0012377560489088633']
['59866.43439906487 2.84573414487451 0.0006510144382818062 0.3265399498554262 0.00020041737042038018 0.0008734528930499281 5.360910114938305e-07 1.7150207450390034 0.001052612239602837 1.1307133998355066 0.0012376640601605413']
['59866.434430602836 2.842351864073324 0.0006508051321861961 0.3256299592348065 0.00020028996801319982 0.0008710187837148207 5.357502262356026e-07 1.7102413825357485 0.0010519431093130244 1.1321104815375753 0.0012369848929194914']
['59866.4344621408 2.846298047510909 0.0006510917889036667 0.32624336071587845 0.00020038167295099624 0.0008726595547704928 5.35995525297052e-07 1.71346302896995 0.001052424752893888 1.132835018540959 0.0012375453034461155']
['59866.43449367876 2.8410500573004924 0.0006506796655845122 0.32534158784551104 0.00020023598418891805 0.0008702474268735997 5.356058263619649e-07 1.7087268269197011 0.0010516595808241496 1.1323232303807913 0.0012366777677084676']
['59866.434525216726 2.846046101822771 0.0006510750919707376 0.3263954445730221 0.00020041668641773564 0.0008730663597726591 5.360891818736294e-07 1.7142617887238556 0.0010526086471519729 1.1317843130989154 0.001237692909991736']
['59866.434556754684 2.847211107800674 0.00065114157362274 0.32646482213631023 0.00020039146964363514 0.0008732519359430284 5.360217302056138e-07 1.7146261666823017 0.0010524762061115292 1.1325849411183722 0.001237615252544512']
['59866.43458829265 2.847107922615067 0.0006511787667236613 0.3265764264640163 0.00020045210480738795 0.0008735504633451271 5.361839215675709e-07 1.715212323865632 0.0010527946681060292 1.1318955987494348 0.00123790565045331']
['59866.434619830616 2.842387396076653 0.0006507883571838806 0.3255349704705118 0.00020027472945850972 0.0008707647008345568 5.357094650372076e-07 1.7097424919669737 0.0010518630748871309 1.132644904109679 0.0012369080055352152']
['59866.434651368574 2.840777065857897 0.0006506492347483064 0.3252405900415274 0.00020022622251436524 0.0008699772705753572 5.355797151223357e-07 1.7081963762685262 0.0010516083115250277 1.1325806895893709 0.0012366181575357352']
['59866.43468290654 2.845953475258349 0.0006510873365494154 0.326044744974165 0.0002003571119468086 0.0008721282828869709 5.35929827730266e-07 1.712419879065993 0.0010522957560231544 1.1335335961923558 0.0012374332620223823']
['59866.434714444506 2.841275927089077 0.0006506766584095856 0.32552646634790794 0.00020028489449840106 0.0008707419533866735 5.357366552278871e-07 1.7096978274574997 0.0010519164627016862 1.1315780996315774 0.001236894643169697']
['59866.434745982464 2.8435556409961933 0.0006508825979690188 0.32557496456638585 0.00020027784240214772 0.0008708716799614956 5.35717791766074e-07 1.7099525449915225 0.001051879424381028 1.1336030960046708 0.0012369714951344119']
['59866.43477752043 2.841992805295548 0.0006507487344428564 0.3254220424934931 0.00020025980765894303 0.0008704626328386595 5.356695511185376e-07 1.7091493828439763 0.0010517847040910874 1.1328434224515715 0.001236820512095007']
['59866.43480905839 2.844159159338506 0.0006509204552279719 0.3259436996254065 0.00020034398967763478 0.0008718579994124941 5.358947273268442e-07 1.7118891787048662 0.0010522268365421995 1.1322699806336396 0.0012372868521785055']
['59866.434840596354 2.8412092243598908 0.0006506789941825874 0.32513147660258856 0.00020019444753429055 0.0008696854059843511 5.354947210862764e-07 1.707623301484184 0.0010514414261254758 1.1335859228757068 0.001236491902942853']
['59866.43487213432 2.847413290217868 0.000651150878721096 0.3264969346914264 0.00020040746013958528 0.0008733378329494494 5.360645027513779e-07 1.7147948250600127 0.0010525601898087463 1.1326184651578552 0.001237691569022541']
['59866.43490367228 2.8432573995312973 0.0006508335691908767 0.32566678892884515 0.0002002844416514383 0.0008711172984687503 5.357354439197764e-07 1.7104348158027582 0.0010519140843037727 1.132822583728539 0.0012369751717566445']
['59866.43493521024 2.843261983632761 0.0006508255113393671 0.3258817971269119 0.0002003471573111914 0.000871692418091063 5.35903200344297e-07 1.7115640605405038 0.001052243473273064 1.1316979230922573 0.0012372510550635672']
['59866.43496674821 2.846933953832075 0.0006511454452257021 0.3264883346207924 0.00020040964780261477 0.0008733148288527715 5.360703544721335e-07 1.714749656621809 0.0010525716796355817 1.132184297210266 0.001237698481702651']
['59866.43499828617 2.8474530436140535 0.0006511962508468759 0.3265426820728232 0.00020041819942302516 0.0008734602013844547 5.360932289706169e-07 1.7150350949202902 0.0010526165936083256 1.1324179486937633 0.0012377634064136096']
['59866.43502982413 2.8428156340432937 0.0006508054231038796 0.3256715365258957 0.00020031055435321783 0.0008711299976878832 5.358052920805444e-07 1.7104597506612171 0.0010520512308467324 1.1323558833820766 0.0012370769948016752']
['59866.43506136209 2.847868759754384 0.0006512278320261301 0.32655264537582884 0.00020043342727643084 0.0008734868519545869 5.361339615444352e-07 1.7150874231923785 0.0010526965718299938 1.1327813365620054 0.0012378480365327865']
['59866.43509290006 2.843375615590902 0.0006508393472501846 0.32558614643522965 0.00020030011800149255 0.0008709015900404787 5.357773761651675e-07 1.7100112732942736 0.0010519964180750658 1.1333643422966282 0.0012370482284744663']
['59866.43512443802 2.8470814367932062 0.0006511053243440323 0.3265299064338455 0.00020044836081597632 0.0008734260281727831 5.361739068660575e-07 1.7149679959760793 0.00105277500428559 1.132113440817127 0.001237850295083243']
['59866.43515597598 2.845817920392067 0.0006509885838559832 0.3261984274006272 0.00020038134105735433 0.000872539363859035 5.359946375237126e-07 1.7132270346671599 0.0010524230097550121 1.132590885724907 0.0012374895263284522']
['59866.43518751395 2.8460459952302557 0.0006510702347377039 0.3263358121510299 0.0002004022134219847 0.0008729068506175565 5.360504684481654e-07 1.7139485932301992 0.0010525326335188274 1.1320974020000565 0.0012376257088407168']
['59866.43521905191 2.8419954754692625 0.0006507490694689281 0.32556286140955304 0.00020027619984412158 0.0008708393055541517 5.357133981319703e-07 1.7098889779913502 0.0010518707975006388 1.1321064974779123 0.0012368939025030827']
['59866.43525058987 2.8407272491554005 0.0006506035944884724 0.3256022250363601 0.00020030924242407126 0.00087094459825641 5.358017828367014e-07 1.7100957197287823 0.0010520443404625592 1.1306315294266183 0.001236964967758029']
['59866.43528212784 2.840868573471302 0.000650636105009605 0.3251305796896915 0.00020020910968517026 0.0008696830068562654 5.355339404776858e-07 1.7076185908072032 0.001051518433220432 1.1332499826640987 0.0012365348181690727']
['59866.435313665796 2.8420118387778643 0.0006507432053617343 0.3254476192200816 0.00020024003686779844 0.0008705310473338641 5.356166667632519e-07 1.709283714391185 0.0010516808659023027 1.1327281243866794 0.0012367293006270536']
['59866.43534520376 2.8421455712594557 0.0006507892875011974 0.3254893455106209 0.00020026999991374972 0.0008706426598615317 5.356968141056592e-07 1.7095028650767905 0.0010518382348411225 1.1326427061826652 0.0012368873711862387']
['59866.43537674173 2.8462498771248526 0.0006510801830376803 0.3262927422819212 0.00020038202933224262 0.0008727916441878595 5.359964785716231e-07 1.71372238593446 0.0010524266246441313 1.1325274911903926 0.0012375407892284676']
['59866.435408279685 2.8420969205137263 0.0006507780996293851 0.32559045093479744 0.00020029338332299876 0.0008709131040301215 5.35759361755547e-07 1.7100338809600706 0.0010519610468644894 1.1320630395536557 0.0012369859251735512']
['59866.43543981765 2.8447083626150893 0.0006510109003089468 0.3258475037087941 0.00020034862321174289 0.0008716006875530973 5.359071214420928e-07 1.7113839480503894 0.0010522511723305825 1.1333244145647 0.0012373551317193259']
['59866.43547135562 2.8408396189947442 0.0006506680670738951 0.32535383932051076 0.0002002385951595609 0.0008702801980132026 5.356128103768232e-07 1.7087911729018423 0.0010516732939052568 1.132048446092902 0.001236683326734541']
['59866.435502893575 2.842608145783492 0.0006507789902358188 0.3255628853256418 0.0002002718053603003 0.0008708393695266517 5.35701643445878e-07 1.7098891036010602 0.001051847717228468 1.132719042182432 0.0012368900170876516']
['59866.43553443154 2.840203023615036 0.0006505872214213737 0.3253119389685484 0.0002002133967876885 0.0008701681198933353 5.355454079324308e-07 1.7085711080280903 0.0010515409495151708 1.1316319155869456 0.0012365282452026928']
['59866.4355659695 2.8417231360607564 0.0006507012571517453 0.3254810282677874 0.00020026173481173172 0.0008706204122932989 5.356747060074857e-07 1.7094591820787155 0.0010517948256918684 1.132263953982041 0.0012368041402789083']
['59866.435597507465 2.8460814216755317 0.0006510615546752381 0.3262201338620716 0.0002003753775259674 0.0008725974258865292 5.359786858346619e-07 1.7133410391915527 0.0010523916886868035 1.132740382483979 0.0012375012785420466']
['59866.43562904543 2.841988546153564 0.0006507804308157614 0.32531227669058754 0.00020023591539253846 0.000870169023256897 5.356056423403871e-07 1.708572881778296 0.0010516592194986265 1.133415664375268 0.0012367304811838383']
['59866.43566058339 2.8414773606970325 0.0006506822440057371 0.32550799352218507 0.00020026765002552008 0.0008706925409240404 5.356905284530968e-07 1.7096008063139974 0.001051825892991177 1.1318765543830351 0.0012368205576521716']
['59866.435692121355 2.847671190887956 0.0006512302971432874 0.3264215075615864 0.0002004232149375281 0.0008731360749568902 5.361066448349075e-07 1.714398674167996 0.0010526429355962612 1.1332725167199602 0.0012378037202149818']
['59866.43572365932 2.845822086283623 0.0006510213345999633 0.3262974248104862 0.00020039136973946115 0.0008728041693570576 5.360214629746369e-07 1.713746979046671 0.001052475681404733 1.132075107236952 0.0012375515496546696']
['59866.43575519728 2.840200559442841 0.0006505991058244462 0.3252132737075874 0.00020021756973282264 0.0008699042028514296 5.355565700306719e-07 1.7080529081280853 0.0010515628662438165 1.132147651314756 0.0012365531360044662']
['59866.435786735245 2.842407237169293 0.0006507869257430995 0.32537141528913693 0.0002002319887664808 0.000870327211497009 5.355951391143912e-07 1.7088834836614335 0.0010516385964626093 1.1335237535078597 0.0012367163621008663']
['59866.4358182732 2.847259359694993 0.0006511703564875164 0.32652202635902783 0.00020042618527267299 0.0008734049499734694 5.361145901041671e-07 1.7149266090285076 0.0010526585360959716 1.1323327506664855 0.001237785452646699']
['59866.43584981117 2.8431045532290975 0.0006507995217549876 0.32583858525348 0.00020032363148642682 0.0008715768318178369 5.358402717509928e-07 1.7113371074237396 0.0010521199132690485 1.131767445805358 0.0012371323006913168']
['59866.435881349134 2.847783378536138 0.0006512046255139034 0.3265993624381227 0.00020044481685201505 0.0008736118141628357 5.361644272125687e-07 1.7153327859145102 0.0010527563910294909 1.132450592621628 0.0012378867004472346']
['59866.43591288709 2.841978134569861 0.000650788702430811 0.32553305923507725 0.0002002701345922208 0.0008707595885225095 5.356971743534643e-07 1.709732453965742 0.0010518389421860339 1.1322456806041192 0.0012368876648712337']
['59866.43594442506 2.8463243740205044 0.0006510740896779259 0.3265842628001864 0.00020044900023636017 0.0008735714245491136 5.361756172343735e-07 1.715253481093416 0.0010527783625859254 1.1310708929270885 0.0012378367222614791']
['59866.435975963024 2.84716564038281 0.0006511482387158547 0.3265324101852412 0.00020044694215023398 0.000873432725389773 5.36170112115377e-07 1.7149811459308888 0.0010527675533100525 1.132184494451921 0.0012378665316120287']
['59866.43600750098 2.8406951948170303 0.0006506097958842171 0.32538571885677664 0.0002002556479036276 0.000870365471723794 5.356584243013863e-07 1.7089586074410539 0.0010517628566366996 1.1317365873759764 0.0012367288357198977']
['59866.43603903895 2.843669510964949 0.0006508642098247559 0.3259177867206391 0.00020034194647152036 0.000871788685683358 5.358892620099894e-07 1.7117530815159618 0.0010522161054176491 1.131916429448987 0.0012372481368468854']
['59866.43607057691 2.8472604577075176 0.0006512135415102534 0.32592112593473743 0.0002003141329147273 0.000871797617656968 5.358148642780804e-07 1.7117706194051339 0.0010520700258126435 1.1354898383023837 0.001237307728845069']
['59866.43610211487 2.8467579248544075 0.0006511035004847358 0.32613585080012286 0.00020036531314457772 0.0008723719794003433 5.3595176489269e-07 1.7128983760510657 0.0010523388295408493 1.1338595488033418 0.0012374783959742009']
['59866.43613365284 2.8429622098185625 0.0006508052719047697 0.3256472883106236 0.00020027660019482707 0.00087106513679172 5.357144690192601e-07 1.7103323965894097 0.0010518729001829153 1.1326298132291528 0.001236925260506171']
['59866.4361651908 2.8405388848230873 0.0006505887988792584 0.3254224695494069 0.00020024732472268965 0.00087046377515899 5.356361608494783e-07 1.7091516257847004 0.0010517191424511013 1.1313872590383869 0.0012366806135074794']
['59866.43619672876 2.846086691630616 0.000651078331075564 0.3261134983327208 0.00020036320862670573 0.0008723121893889595 5.359461355746707e-07 1.7127809786382395 0.0010523277764007653 1.1333057129923765 0.0012374557536254463']
['59866.43622826673 2.8466675765829548 0.0006511216754164841 0.32634342003292593 0.00020040055625130778 0.0008729272007353753 5.360460357270767e-07 1.7139885505930985 0.0010525239298913225 1.1326790259898563 0.0012376453689126956']
['59866.43625980469 2.8471482917300666 0.0006511822375195142 0.32647314702806124 0.00020042645762935034 0.0008732742039711441 5.361153186236879e-07 1.714669889853263 0.0010526599665407056 1.1324784018768035 0.0012377929195218401']
['59866.43629134265 2.84034670817327 0.0006506072772706324 0.3251183404086486 0.0002002097845256904 0.0008696502683339484 5.355357455903678e-07 1.7075543088689529 0.001051521977550895 1.1327923993043172 0.0012365226639694277']
['59866.43632288061 2.8424349489295824 0.0006507822621895661 0.3258590795495503 0.00020033718516061387 0.0008716316514569088 5.358765261080337e-07 1.7114447455333524 0.0010521910985326359 1.13099020339623 0.0012371837618607368']
['59866.436354418576 2.8441272790136223 0.0006509144040442565 0.326021954673854 0.00020033717470414845 0.0008720673217281632 5.358764981383167e-07 1.7123001821105777 0.0010521910436142251 1.1318270969030446 0.0012372532293973945']
['59866.43638595654 2.8411741892529996 0.0006506545883371151 0.325826229841925 0.0002003424269877647 0.0008715437826611493 5.358905473299141e-07 1.711272215556329 0.0010522186291374196 1.1299019736966707 0.0012371400231291408']
['59866.4364174945 2.8436287637814157 0.0006508737171714504 0.32559173210613934 0.00020028044047528082 0.0008709165310007436 5.357247412817319e-07 1.7100406098011522 0.0010518930697231135 1.1335881539802635 0.0012369784257763334']
['59866.436449032466 2.8435741264247896 0.000650908309804207 0.3258343471871572 0.00020032070129822534 0.000871565495528687 5.35832433869708e-07 1.7113148486720442 0.0010521045236251332 1.1322592777527454 0.001237176445138137']
['59866.43648057043 2.8413180020788724 0.0006506645844556187 0.32545859170781133 0.00020025019448176312 0.0008705603973449599 5.356438370905208e-07 1.709341343003211 0.0010517342147151427 1.1319766590756615 0.00123673330183483']
['59866.43651210839 2.843282418653419 0.0006508487241094991 0.3254831021072456 0.0002002686785699669 0.0008706259595504578 5.356932796788599e-07 1.7094700740926767 0.0010518312950103304 1.1338123445607422 0.0012369127434213262']
['59866.436543646356 2.8417756750471383 0.0006507124413481694 0.3255296744460387 0.00020026710178330887 0.0008707505346417228 5.356890619748124e-07 1.7097146767123883 0.0010518230135677987 1.13206099833475 0.001236833995811944']
['59866.436575184314 2.8403133323081957 0.0006505626157027977 0.32494664607807694 0.00020015337500728275 0.0008691910078060268 5.353848572930231e-07 1.7066525529310765 0.0010512257090718633 1.1336607793771192 0.0012362472278487455']
['59866.43660672228 2.8410660860340435 0.0006506355062297825 0.32551539163111237 0.0002002517847458615 0.0008707123299258104 5.356480908450095e-07 1.7096396619281113 0.0010517425669425498 1.1314264241059322 0.0012367251065155058']
['59866.436638260246 2.8437561001165266 0.0006509156764047311 0.3255505365397837 0.00020026372443614186 0.0008708063380928618 5.356800280000869e-07 1.7098242465324776 0.0010518052753999048 1.133931853584049 0.0012369258486863706']
['59866.436669798204 2.8461252456478694 0.0006510635405996003 0.32631622367239094 0.00020038366149728652 0.0008728544539250685 5.360008444058194e-07 1.7138457125650786 0.00105243519693953 1.1322795330827908 0.0012375393236803568']
['59866.43670133617 2.8462459694047553 0.00065105032038285 0.32636848319800194 0.0002004196086786301 0.0008729942415187597 5.360969985503749e-07 1.7141201848634557 0.0010526239951608723 1.1321257845412995 0.0012376929323782405']
['59866.436732874135 2.842004584652725 0.0006507612248118979 0.32526199665773037 0.0002002138088112799 0.0008700345305549132 5.355465100432078e-07 1.7083088059754747 0.0010515431135046213 1.1336957786772504 0.0012366216443511226']
['59866.436764412094 2.842717662501291 0.0006507813238331724 0.3257320618091375 0.0002002995834877716 0.0008712918951334288 5.35775946408851e-07 1.7107776355521929 0.0010519936107551032 1.1319400269490982 0.0012370153145857233']
['59866.43679595006 2.844349639855218 0.0006509422879533327 0.32627076305098013 0.00020040635681581036 0.0008727328525366053 5.360615515004096e-07 1.7136069487971648 0.001052554395041021 1.1307426910580531 0.0012375769134749116']
['59866.43682748802 2.846622768553898 0.0006510627702036878 0.32647519822465854 0.00020043568756225358 0.0008732796906615257 5.361400075219393e-07 1.7146806629446352 0.001052708443079063 1.1319421056092627 0.0012377713023314302']
['59866.436859025984 2.846462298175547 0.0006510718776741657 0.3265256863095568 0.00020044071636273524 0.0008734147398762955 5.361534589245355e-07 1.7149458314577564 0.0010527348548462986 1.1315164667177908 0.001237798555705419']
['59866.43689056395 2.844194530704071 0.0006509138373252399 0.3261196788741102 0.0002003826825424091 0.0008723287215522049 5.359982258258563e-07 1.7128134394648646 0.0010524300553697958 1.1313810912392062 0.0012374561992519737']
['59866.43692210191 2.8416124273188608 0.0006507160215341996 0.32528503100174117 0.00020022316087324007 0.0008700961444996223 5.355715256211754e-07 1.7084297846730103 0.0010515922314771014 1.1331826426458504 0.0012366396249450713']
['59866.43695363987 2.8465498475681876 0.000651093153860028 0.32641440910931935 0.0002004232533543696 0.000873117087498628 5.361067475950792e-07 1.714361392380879 0.0010526431373653865 1.1321884551873087 0.0012377317438144026']
['59866.43698517784 2.8482085067536205 0.0006512702708196381 0.3264979868821457 0.00020044022166014716 0.0008733406474259882 5.361521356579431e-07 1.7148003512717738 0.00105273225661842 1.1334081554818467 0.0012379007107916193']
['59866.4370167158 2.8423625280836022 0.0006507805270121559 0.32569596536988643 0.00020031105962680425 0.0008711953417429276 5.35806643623215e-07 1.7105880534132691 0.0010520538845945602 1.131774474670333 0.0012370661544269666']
['59866.43704825376 2.8414079558905776 0.000650701572362399 0.32513133407878303 0.0002002094928111876 0.0008696850247512728 5.355349652911226e-07 1.707622552934785 0.0010515204454369098 1.1337854029557926 0.0012365709779251395']
['59866.43707979172 2.8405187190608827 0.000650608540393217 0.32536315821213807 0.00020023452039909665 0.0008703051248647425 5.356019109101039e-07 1.7088401166603893 0.0010516518928523984 1.1316786024004934 0.0012366338086000337']
['59866.43711132969 2.847014488953795 0.0006511542284515501 0.3265082968951317 0.00020041606197957214 0.0008733682254012834 5.3608751158085e-07 1.7148545004996416 0.0010526053675397697 1.1321599884541533 0.0012377317516343626']
['59866.43714286765 2.8420634091158394 0.0006507890759276 0.32537081935579454 0.00020024450328076735 0.0008703256174510057 5.356286138506786e-07 1.7088803537594253 0.0010517043239536101 1.1331830553564142 0.0012367733852122705']
['59866.43717440561 2.8414555022726176 0.000650740607696153 0.3253313658707072 0.00020024823922887134 0.0008702200843892603 5.356386070373658e-07 1.708673140077244 0.0010517239455297865 1.1327823621953736 0.0012367645677757346']
['59866.43720594358 2.8414362979450787 0.0006506967114461088 0.3252524816378966 0.00020024256234648093 0.0008700090790853307 5.356234220979744e-07 1.7082588321318102 0.0010516941299710135 1.1331774658132685 0.0012367161166986817']
['59866.43723748154 2.8455714007733373 0.0006510204190356367 0.3262267981192021 0.0002003807003256622 0.0008726152519279469 5.359929236478135e-07 1.713376040542028 0.0010524196445675538 1.1321953602313093 0.0012375034118227845']
['59866.4372690195 2.8435802549228044 0.0006508915381650502 0.32568965688577334 0.00020028158475807355 0.0008711784673491458 5.357278020928708e-07 1.7105549206185575 0.0010518990796117309 1.133025334304247 0.001236992913537855']
['59866.43730055747 2.843535382202606 0.0006508419172579184 0.32533366286384036 0.0002002156801350641 0.0008702262285541577 5.355515155966596e-07 1.7086852041168088 0.001051552941885841 1.1348501780857974 0.001236672467086063']
['59866.437332095426 2.843660993469775 0.000650865225756239 0.3259757150660027 0.00020035121387018096 0.0008719436366499085 5.359140511243833e-07 1.7120573270273254 0.001052264778729942 1.1316036664424498 0.0012372900656896482']
['59866.43736363339 2.8441490164615715 0.0006509179496076505 0.32590196774529173 0.00020033523864393293 0.0008717463719334222 5.35871319423133e-07 1.7116699986622466 0.00105218087523074 1.132479017799325 0.001237246447286374']
['59866.43739517136 2.8470558434411757 0.0006511166510408129 0.3262710066529394 0.00020037447904395366 0.0008727335041409072 5.359762825093886e-07 1.7136082282192195 0.0010523869697686642 1.1334476152219561 0.0012375262532170683']
['59866.437426709315 2.8424970235437903 0.0006507996695145921 0.32552721250973726 0.00020024917233244223 0.0008707439492747993 5.356411029709074e-07 1.7097017463746707 0.0010517288462838354 1.1327952771691197 0.0012367998123972326']
['59866.43745824728 2.8407664716166368 0.000650625873578266 0.3251775332759801 0.00020018291926744803 0.0008698086017361599 5.354638844366415e-07 1.7078651957772064 0.0010513808785055044 1.1329012758394303 0.0012364124631596399']
['59866.43748978524 2.84694194212197 0.0006511426966247956 0.3263106860472269 0.00020039475541032173 0.0008728396414810711 5.360305192141856e-07 1.7138166283993013 0.001052493463289505 1.1331253137226687 0.0012376305190301938']
['59866.437521323205 2.844252850316151 0.0006509665897075434 0.3257228950238896 0.00020031404434234882 0.0008712673751471354 5.358146273582173e-07 1.7107294906716892 0.00105206956062158 1.1335233596444616 0.0012371773766529817']
['59866.43755286117 2.847496338716321 0.0006512296140919051 0.32637365411438757 0.00020038981086229214 0.0008730080730633494 5.36017293176198e-07 1.7141473430377498 0.0010524674940246437 1.133348995678571 0.0012376541666591703']
['59866.43758439913 2.844550823838847 0.0006509781056427066 0.3258308339593653 0.000200337094288823 0.0008715560980905476 5.358762830375344e-07 1.711296396845406 0.0010521906212648268 1.1332544269934408 0.0012372863845948638']
['59866.437615937095 2.842220554620878 0.0006507634956153852 0.32541709953116404 0.0002002499718142396 0.0008704494110422195 5.356432414831756e-07 1.7091234219073743 0.001051733045242855 1.1330971327135035 0.0012367843488989359']
['59866.43764747506 2.8429281949450558 0.00065084644788443 0.32552135473675714 0.00020025671638936865 0.0008707282804760548 5.356612823650385e-07 1.7096709807602792 0.001051768468431558 1.1332572141847765 0.0012368581203641125']
['59866.43767901302 2.841685625801334 0.0006507072647237743 0.3259044606849778 0.00020035185912383157 0.0008717530402304619 5.35915777095947e-07 1.7116830918328667 0.0010522681676671827 1.1300025339684672 0.001237209861361421']
['59866.437710550985 2.8428513312303054 0.0006508208121970355 0.3255801543381538 0.00020026844429896394 0.0008708855619418382 5.35692653033681e-07 1.709979802196186 0.001051830064595399 1.1328715290341194 0.0012368970104158108']
['59866.43774208894 2.842215147439809 0.0006507705440715839 0.32564719926956753 0.0002003067062816116 0.0008710648986182038 5.357949989777293e-07 1.7103319289368044 0.0010520310203866157 1.1318832185030048 0.0012370414580307844']
['59866.43777362691 2.845935623629723 0.0006510497558460505 0.3263953771213999 0.0002004123428932029 0.0008730661793481364 5.360775634971617e-07 1.7142614344611338 0.0010525858345231244 1.131674189168589 0.0012376601809971687']
['59866.437805164875 2.844703010093478 0.0006510332664475222 0.32560854357444424 0.00020027477983351885 0.0008709614995432874 5.357095997839591e-07 1.7101289053279636 0.0010518633394617587 1.1345741047655145 0.0012370371049103474']
['59866.43783670283 2.846581011690427 0.0006510967698003112 0.3264891662897151 0.00020043273778895025 0.000873317053461512 5.361321172529943e-07 1.7147540246308568 0.0010526929505722178 1.13182698705957 0.001237776010362473']
['59866.4378682408 2.84131326861795 0.0006506695527175896 0.3254003941487384 0.00020023690692079046 0.000870404726265929 5.356082945525303e-07 1.7090356835542984 0.0010516644271049921 1.1322775850636517 0.001236676568093606']
['59866.437899778764 2.8429736989888577 0.0006507947408171562 0.32577205160869693 0.00020033137303160928 0.0008713988627682715 5.358609794011266e-07 1.710987666012064 0.0010521605726450066 1.1319860329767937 0.0012371643647082378']
['59866.43793131672 2.8475781844028827 0.0006511846582126456 0.3265021991999828 0.0002004350619953557 0.0008733519148412092 5.361383342099387e-07 1.7148224747898257 0.0010527051575386329 1.132755709613057 0.0012378326251153498']
['59866.43796285469 2.847304966912688 0.0006512047348654783 0.32632653714255944 0.0002003850789501793 0.0008728820411478878 5.360046359122814e-07 1.7138998799504175 0.0010524426415450595 1.1334050869622705 0.0012376199418454603']
['59866.43799439265 2.8465925483871053 0.000651066198050036 0.3264081668712896 0.0002004044112499212 0.0008731003903047055 5.360563473587563e-07 1.7143286075172774 0.0010525441767327795 1.1322639408698278 0.0012376334021904118']
['59866.43802593061 2.848014650208799 0.0006512686764030254 0.32654373234390344 0.00020044805686882485 0.0008734630107262027 5.361730938460307e-07 1.7150406110499132 0.0010527734079245005 1.1329740391588856 0.0012379348679541727']
['59866.43805746858 2.8442422040677227 0.0006509475113342152 0.3258231495435 0.0002003256109551496 0.0008715355432540816 5.358455665784202e-07 1.7112560375183825 0.0010521303096383907 1.1329861665493401 0.0012372189987920426']
['59866.43808900654 2.8406221655165864 0.0006506292093545395 0.32529104297372535 0.00020021937838898 0.0008701122257611184 5.355614079561811e-07 1.7084613601561207 0.0010515723654883405 1.1321608053604657 0.0012365770529668004']
['59866.4381205445 2.8407971809033477 0.0006506102231255337 0.32576800904009817 0.00020032251352888298 0.0008713880494107038 5.358372813565514e-07 1.7109664340341293 0.001052114041643293 1.1298307468692184 0.0012370277357676512']
['59866.43815208247 2.84645764077517 0.0006510821823851567 0.3264562011927067 0.00020041874124920235 0.0008732288760138079 5.360946782868252e-07 1.7145808886171572 0.001052619439334046 1.1318767521580126 0.0012377058181503953']
['59866.43818362043 2.8420456544681656 0.0006507751054278539 0.3255410549110874 0.00020029801663599956 0.0008707809759403311 5.357717552793617e-07 1.7097744480624342 0.0010519853814915945 1.1322712064057314 0.001237005044741795']
['59866.43821515839 2.8470500993833907 0.0006511814233347208 0.32666091452444224 0.00020045086166377155 0.0008737764581762033 5.361805963162848e-07 1.7156560636787934 0.001052788138990397 1.1313940357045973 0.0012379014951501982']
['59866.43824669635 2.8473849536224147 0.0006511768764707875 0.3263158194354523 0.00020040171129804277 0.0008728533726425985 5.360491253303939e-07 1.7138435894719135 0.00105252999631325 1.1335413641505012 0.001237679569835998']
['59866.43827823432 2.840450590132021 0.0006506474973241754 0.3251441026904939 0.00020019609616825395 0.000869719179165898 5.354991309727406e-07 1.7076896149710814 0.0010514500849173002 1.1327609751609398 0.001236482691689136']
['59866.43830977228 2.847328112169842 0.0006511668910297062 0.32674291364912134 0.0002005044089105722 0.0008739957954202686 5.36323828400609e-07 1.7160867313504273 0.0010530693745303163 1.1312413808194146 0.0012381330411336921']
['59866.43834131024 2.8430905947951 0.0006508038073837282 0.3259344770014988 0.00020033507894693037 0.0008718333300648776 5.358708922539339e-07 1.7118407405540905 0.001052180036485979 1.1312498542410094 0.0012371856873100305']
['59866.438372848206 2.840416944783316 0.0006506105301306064 0.3255025406431989 0.00020027081706575572 0.0008706779551653054 5.356989998834913e-07 1.7095721672436917 0.00105184252660586 1.1308447775396242 0.001236796977152446']
['59866.43840438617 2.839802451360434 0.0006504878227337596 0.3257168683410192 0.00020030727417050774 0.0008712512545358871 5.357965180084006e-07 1.7106978379255213 0.0010520340029963643 1.1291046134349128 0.001236895286992986']
['59866.43843592413 2.8472263396135506 0.0006511320293963124 0.3265588788298109 0.000200419937849015 0.0008735035256522975 5.360978790393476e-07 1.7151201619212757 0.0010526257239969275 1.132106177692275 0.0012377373851208567']
['59866.438467462096 2.842578215206951 0.0006508051299166231 0.32565246069165654 0.00020028601675296212 0.0008710789722540552 5.35739657116304e-07 1.7103595624561794 0.0010519223568958096 1.1322186527507716 0.0012369672437308225']
['59866.438499000054 2.84365516225518 0.0006509079720237189 0.3257903357598457 0.00020031728746516098 0.0008714477705503818 5.358233022998409e-07 1.711083696217677 0.001052086593829627 1.132571466037503 0.0012371610198191896']
['59866.43853053802 2.843519810345737 0.0006508629004431537 0.32567007827473293 0.00020028920569707743 0.0008711260970512306 5.357481871367947e-07 1.7104520917790595 0.0010519391055518774 1.1330677185666773 0.0012370118823045147']
['59866.438562075986 2.844127938613804 0.0006509415183047875 0.32601324745158133 0.00020036477733974433 0.000872044031014461 5.359503316828116e-07 1.7122544509011628 0.0010523360154398337 1.131873487712641 0.0012373907829156996']
['59866.438593613944 2.841552593219549 0.0006506894259586089 0.32545625982047477 0.00020027608934896637 0.0008705541598425003 5.357131025714637e-07 1.709329095695771 0.0010518702171689411 1.1322234975237782 0.0012368620306329155']
['59866.43862515191 2.842014088219168 0.0006507490489443601 0.32564243863676046 0.00020029909186517012 0.0008710521645300779 5.357746313808314e-07 1.710306925613238 0.0010519910287036247 1.1317071626059299 0.001236996139514954']
['59866.438656689876 2.8429460111366627 0.000650783588406089 0.3258110767927226 0.00020030648387352616 0.0008715032501790741 5.357944040643481e-07 1.7111926302138794 0.0010520298522769232 1.1317533809227833 0.001237047326912156']
['59866.438688227834 2.847400601971626 0.0006511297753573109 0.32677676160134006 0.00020045671400646927 0.0008740863343935316 5.361962505897135e-07 1.7162645042087188 0.0010528188760843974 1.131136097762907 0.0012379004686146927']
['59866.4387197658 2.843533848610696 0.0006508698714317252 0.3261261615304884 0.00020037367600451119 0.0008723460618346748 5.359741344808715e-07 1.7128474870298762 0.0010523827521245336 1.1306863615808196 0.001237392842433945']
['59866.43875130376 2.843538712473192 0.0006508278614200464 0.3261388637739525 0.0002003739727875166 0.0008723800387226692 5.359749283377176e-07 1.7129142004934481 0.0010523843108588059 1.130624511979744 0.0012373720713440865']
['59866.438782841724 2.840876505921236 0.0006506609260179164 0.325552461379978 0.00020027690534418888 0.0008708114867959136 5.357152852550469e-07 1.7098343559872795 0.0010518745028581349 1.1310421499339567 0.0012368506823418664']
['59866.43881437969 2.8407439216944415 0.0006506624432148979 0.32515589715870996 0.00020021520302810437 0.0008697507278703976 5.355502393961383e-07 1.7077515607075102 0.001051550436071977 1.1329923609869312 0.0012365758911662256']
['59866.43884591765 2.846247519041971 0.0006510579683263755 0.3263106161462614 0.00020041013608599318 0.0008728394545048662 5.360716605681554e-07 1.7138162612723813 0.001052574244149124 1.1324312577695899 0.0012376546439000532']
['59866.438877455614 2.842500801096781 0.0006507918471324532 0.32556941139849893 0.00020028231233667871 0.0008708568259426884 5.357297482732321e-07 1.7099233791937969 0.0010519029009279344 1.1325774219029843 0.001236943709824612']
['59866.43890899358 2.841251665158028 0.0006506995799391551 0.32563828868776273 0.00020029318220842135 0.0008710410639435809 5.357588237995954e-07 1.7102851296626194 0.0010519599905904485 1.1309665354954086 0.0012369437194699076']
['59866.43894053154 2.8464215018466072 0.0006511031515602371 0.3262145486982258 0.00020035255585584805 0.0008725824862825958 5.359176407656014e-07 1.7133117053478246 0.001052271826973992 1.1331097964987826 0.001237421234590249']
['59866.4389720695 2.8424488968664074 0.0006507354041863074 0.3255872948811589 0.00020026370186687381 0.0008709046619874789 5.356799676301614e-07 1.7100173050481036 0.0010518051568638332 1.1324315918183039 0.001236830891539692']
['59866.43900360746 2.8474805611613596 0.0006511774589071842 0.32645328863772916 0.00020043219269571646 0.0008732210852991575 5.361306591978245e-07 1.714565591584712 0.0010526900876875866 1.1329149695766476 0.0012378160217514217']
['59866.43903514543 2.8404608362672317 0.0006506097894378155 0.3253520325401107 0.00020023969885695167 0.0008702753651051059 5.356157626271665e-07 1.7087816835089848 0.0010516790906352504 1.1316791527582468 0.001236657595210455']
['59866.43906668339 2.8435443751449325 0.0006508233084842775 0.32574327379927853 0.00020031883057886713 0.0008713218857830565 5.358274299330189e-07 1.7108365220550343 0.0010520946984184198 1.1327078530898982 0.001237123370285505']
['59866.43909822135 2.8410437389817957 0.0006506608134728192 0.32571437239382744 0.0002002997512438537 0.0008712445781941515 5.357763951350643e-07 1.7106847289591778 0.0010519944918269627 1.130359010022618 0.0012369526688695007']
['59866.43912975932 2.8430436362194325 0.0006507944360986848 0.3258793255222511 0.00020032851873644705 0.000871685806862506 5.358533445240828e-07 1.7115510794235878 0.0010521455815989868 1.1314925567958447 0.0012371514551320205']
['59866.43916129728 2.841661053754224 0.0006507895029025612 0.32550029167070027 0.00020028101298995245 0.0008706719394495065 5.357262726857653e-07 1.7095603554133418 0.0010518960766279016 1.1321006983408821 0.0012369366730408372']
['59866.43919283524 2.840060197147188 0.0006505402786907813 0.3254144566858354 0.00020026829258279553 0.0008704423417666249 5.356922472121995e-07 1.709109541417203 0.0010518292677667834 1.130950655729985 0.0012367487468074858']
['59866.43922437321 2.8457205677495376 0.0006509810817799932 0.32626305704415887 0.00020039169555993936 0.0008727122399470741 5.360223345030347e-07 1.713566476072263 0.0010524773926467404 1.1321540916772745 0.00123753183024435']
['59866.439255911166 2.8473277647620034 0.0006511969059900787 0.326236263948121 0.00020037409854778779 0.0008726405718180798 5.359752647304705e-07 1.7134257560300474 0.0010523849713644318 1.133902008731956 0.001237566781359603']
['59866.43928744913 2.842646599351869 0.0006507859957842722 0.32587406502130056 0.00020035934488416848 0.0008716717356905831 5.359358005541053e-07 1.7115234507421249 0.0010523074836353387 1.131123148609744 0.0012372847095247987']
['59866.4393189871 2.8467705958244856 0.0006511072729047326 0.3266179548747722 0.00020042773358017464 0.0008736615465695061 5.361187316300883e-07 1.7154304352666607 0.0010526666679631022 1.1313401605578248 0.001237759182825956']
['59866.439350525055 2.845440404670501 0.0006510067062690672 0.32605676238484826 0.00020034549143233688 0.000872160427934255 5.358987443299392e-07 1.712482995718741 0.0010522347239093322 1.13295740895176 0.0012373389373198632']
['59866.43938206302 2.842002707238044 0.0006507475005742516 0.3258351549511699 0.00020033915530080244 0.0008715676561948293 5.358817959828167e-07 1.711319091130094 0.0010522014459075758 1.13068361610795 0.0012371742772437635']
['59866.43941360099 2.8405206125633895 0.0006506245069681817 0.3253238539341435 0.0002002426607490601 0.0008701999909130198 5.356236853123759e-07 1.708633686628905 0.001051694646791282 1.1318869259344846 0.001236678567436595']
['59866.439445138945 2.8464797929050656 0.0006510876001792106 0.32639254846340293 0.00020040312653286102 0.0008730586130472536 5.360529109037882e-07 1.7142465780640912 0.0010525374292692281 1.1322332148409744 0.0012376389227556634']
['59866.43947667691 2.8462543667096196 0.0006510828940028134 0.32634170303741705 0.00020040529029926652 0.0008729226079904592 5.360586987041097e-07 1.7139795327595435 0.0010525487935885848 1.132274833950076 0.0012376461116764615']
['59866.43950821487 2.8470705709138535 0.0006511147745635394 0.326588044257784 0.00020042310702869008 0.0008735815394679161 5.36106356192471e-07 1.715273341690042 0.0010526423688481624 1.1317972292238114 0.0012377424636608376']
['59866.439539752835 2.8439842776358493 0.0006509257500003275 0.3256784648030534 0.00020030909789943717 0.0008711485299493413 5.358013962516608e-07 1.7104961386714992 0.001052043581404607 1.13348813896435 0.0012371337959930287']
['59866.4395712908 2.8401130277310185 0.0006505612785662168 0.32536694379467196 0.00020023931238479065 0.0008703152508172257 5.356147288632203e-07 1.7088599989215965 0.0010516770608444887 1.131253028809422 0.0012366303479521329']
['59866.43960282876 2.846198314958446 0.0006510587411742007 0.32601663808388814 0.0002003378897104354 0.0008720531005252481 5.358784106893236e-07 1.7122722588439505 0.0010521947988993458 1.1339260561144957 0.0012373323641165172']
['59866.439634366725 2.8466855407573766 0.0006511198569496368 0.3264730420246391 0.0002004132504073911 0.000873273923100326 5.360799909823546e-07 1.7146693383647014 0.0010525906008791548 1.1320162023926752 0.0012377011114050338']
['59866.43966590469 2.8463205889396805 0.0006510595035942511 0.3265802667860844 0.00020044481175970067 0.0008735607357189121 5.361644135912746e-07 1.7152324936243932 0.0010527563642841423 1.1310880953152873 0.0012378103407877793']
['59866.43969744265 2.8411927258926193 0.0006506871756834569 0.32564808008832746 0.0002002811815179286 0.0008710672546965166 5.357267234766973e-07 1.7103365550857537 0.0010518969617538268 1.1308561708068656 0.0012368835914288157']
['59866.439728980615 2.84303342006801 0.0006508208392039691 0.32569207476525996 0.00020029189689470245 0.0008711849348696852 5.35755385748641e-07 1.7105676195654411 0.0010519532399931853 1.1324658005025687 0.0012370017719770326']
['59866.43976051857 2.8470769067594563 0.0006511720643453371 0.3263223199055786 0.00020038429857379358 0.000872870760574582 5.360025485045628e-07 1.7138777305965263 0.0010524385429295882 1.13319917616293 0.0012375992663328152']
['59866.43979205654 2.843081146606361 0.0006508246418310268 0.32564212796087744 0.0002002654700017905 0.0008710513335115487 5.356846971664982e-07 1.7103052939121715 0.001051814443286715 1.1327758526941896 0.0012368857414979874']
['59866.439823594505 2.8442714688483575 0.0006509446591008559 0.32578736231954364 0.00020032592041892324 0.0008714398169752212 5.358463943547107e-07 1.711068079409368 0.0010521319349733364 1.1332033894389895 0.001237218880312884']
['59866.43985513246 2.8423143245311344 0.0006507813606878133 0.32563894270111704 0.00020030195605350343 0.0008710428133462396 5.357822927208515e-07 1.7102885646067074 0.001052006071709577 1.132025759924427 0.001237025931147968']
['59866.43988667043 2.843711456108823 0.0006509462936899894 0.32561657092768903 0.00020028303878274342 0.0008709829716936883 5.357316914241915e-07 1.7101710657966862 0.0010519067162959213 1.1335403903121368 0.001237028219992253']
['59866.439918208394 2.841701682696013 0.0006507429196307988 0.3252771038558234 0.00020023181628305573 0.0008700749403910943 5.355946777431357e-07 1.7083881505032743 0.0010516376905622675 1.1333135321927388 0.0012366924353535748']
['59866.43994974635 2.841908397552871 0.0006506995732925078 0.3258340039995147 0.00020033362663537043 0.0008715645775453304 5.358670075049646e-07 1.7113130462159385 0.0010521724087992146 1.1305953513369327 0.0012371243722930178']
['59866.43998128432 2.843770502039152 0.0006508930547453123 0.3257857608420543 0.0002003043144401503 0.0008714355332263357 5.357886011056005e-07 1.7110596682881003 0.0010520184581940667 1.1327108337510519 0.0012370952287906964']
['59866.44001282228 2.845891905951896 0.0006510517814918141 0.32615369664388094 0.00020037650605821735 0.0008724197147658516 5.359817045150993e-07 1.712992104222064 0.001052397615851982 1.1328998017298322 0.0012375011773871575']
['59866.44004436024 2.845770711643932 0.000650998409091163 0.3263426108735282 0.0002003991334325718 0.0008729250363367552 5.360422298676656e-07 1.7139843008063458 0.0010525164571038434 1.1317864108375864 0.001237574167924352']
['59866.44007589821 2.8418674294689854 0.0006507303744335353 0.3255789868628922 0.00020025300629279347 0.0008708824390937909 5.356513583279077e-07 1.7099736704983837 0.001051748982630218 1.1318937589706017 0.0012367804747303005']
['59866.44010743617 2.8423108330139666 0.0006507720916107257 0.3255562527908035 0.0002002788990339369 0.0008708216283383367 5.357206181219106e-07 1.7098542688592624 0.0010518849739177358 1.1324565641547042 0.0012369180706794265']
['59866.44013897413 2.840982293154699 0.0006506688194296777 0.32512398364094075 0.00020020679280099272 0.0008696653632636007 5.355277431067711e-07 1.7075839476940167 0.0010515062647110964 1.1333983454606824 0.0012365416844185614']
['59866.4401705121 2.8467011281588066 0.0006511075004816115 0.32628033815042945 0.00020038900969604758 0.0008727584647115289 5.360151501582474e-07 1.7136572381850286 0.0010524632862187375 1.133043889973778 0.001237586338815097']
['59866.44020205006 2.8411611755963904 0.0006506606959713432 0.3252503736492143 0.00020022154694959693 0.0008700034404833344 5.355672085804093e-07 1.7082477607626803 0.0010515837549873789 1.13291341483371 0.0012366033054440977']
['59866.44023358802 2.841046760297573 0.0006506833859762557 0.3255656019751322 0.00020028450311095688 0.0008708466362190053 5.357356083161828e-07 1.7099033717181313 0.0010519144070953617 1.1311433885794415 0.0012368964340801986']
['59866.44026512598 2.8431976350823795 0.0006508338924521897 0.32545404711962644 0.00020023921468599322 0.0008705482411487592 5.356144675313456e-07 1.7093174743677861 0.0010516765477205526 1.1338801607145934 0.0012367733489164004']
['59866.440296663946 2.847301516623789 0.0006511610412285538 0.3266525688539903 0.00020046824936330705 0.0008737541345677017 5.362271062041852e-07 1.7156122313759996 0.0010528794609417388 1.1316892852477893 0.0012379684409898424']
['59866.44032820191 2.8422994907807526 0.0006507422331309178 0.3256517228804513 0.00020030332027661074 0.0008710769987027883 5.357859418443978e-07 1.7103556873973285 0.0010520132367469051 1.1319438033834242 0.0012370114406386522']
['59866.44035973987 2.845401635277497 0.0006509827147991997 0.3264633797612208 0.00020042700352250126 0.0008732480777728557 5.361167788185344e-07 1.7146185911828824 0.0010526628336265825 1.1307830440946147 0.0012376904040454068']
['59866.440391277836 2.843631982440511 0.0006508517221151315 0.32619171075232695 0.00020038889073883135 0.0008725213976778922 5.360148319628023e-07 1.7131917581529779 0.001052462661443442 1.130440224287533 0.0012374512588028855']
['59866.4404228158 2.8474162684227142 0.0006512074611953807 0.32646158152463006 0.00020042772165512337 0.0008732432677183639 5.361186997320908e-07 1.7146091466629731 0.0010526666053315304 1.132807121759741 0.0012378118352547535']
['59866.44045435376 2.8421851650709247 0.0006507745509202238 0.3255730873024965 0.00020029593481866184 0.000870866658519017 5.357661866823883e-07 1.7099426854122717 0.0010519744475770056 1.132242479658653 0.0012369954545107936']
['59866.440485891726 2.842350194884501 0.0006508242283775487 0.3252950162401082 0.00020022220487225163 0.0008701228537440604 5.3556896843995e-07 1.708482228151829 0.0010515872104635065 1.133867966732672 0.0012366922969977822']
['59866.440517429684 2.8474015551503937 0.0006511651714448918 0.32653834884235494 0.00020043193987765955 0.0008734486105433021 5.361299829416319e-07 1.7150123363569063 0.0010526887598616573 1.1323892187934874 0.0012378084284904224']
['59866.44054896765 2.842488732666023 0.0006507565733195065 0.32574429876753974 0.00020031740214094293 0.0008713246274429772 5.358236090429931e-07 1.7108419052917003 0.0010520871961183977 1.1316468273743225 0.0012370818832861542']
['59866.440580505616 2.8438632870797154 0.0006508627901481186 0.32560815792658054 0.00020026977140529735 0.0008709604679842319 5.356962028745713e-07 1.7101268798664946 0.0010518370346916878 1.1337364072132208 0.0012369250256779496']
['59866.440612043574 2.8468349185705586 0.0006511133369755912 0.32670798733486534 0.0002004556658176787 0.0008739023719655153 5.36193446817826e-07 1.7159032948259736 0.0010528133708911697 1.130931623744585 0.0012378871400554727']
['59866.44064358154 2.845104008616601 0.0006509506047458757 0.3266281923505643 0.00020045391014286864 0.0008736889305170203 5.361887506106918e-07 1.7154842035218714 0.0010528041499100243 1.1296198050947295 0.0012377937097460103']
['59866.440675119506 2.84356312611025 0.0006508625157106951 0.3255401220466191 0.00020026362538466775 0.0008707784806463584 5.356797630499739e-07 1.709769548564176 0.0010518047551715743 1.133793577546074 0.0012368974320285373']
['59866.440706657464 2.8468127221558968 0.0006511516483117068 0.326412805394142 0.00020041654561418738 0.0008731127977642116 5.360888052420208e-07 1.7143529695070487 0.0010526079076375388 1.132459752648848 0.0012377325544398233']
['59866.44073819543 2.846007900040531 0.0006511039563760193 0.3261092957943298 0.0002003610280602932 0.0008723009481325147 5.359403028364641e-07 1.7127589064828246 0.001052316323846078 1.1332489935577066 0.001237459497293317']
['59866.44076973339 2.8433428819056195 0.0006509218143746898 0.3257696881875652 0.00020032211294774966 0.0008713925409169148 5.358362098528963e-07 1.7109752530859517 0.0010521119377507862 1.1323676288196678 0.0012371898552714343']
['59866.440801271354 2.8409243317450468 0.000650703935053818 0.3253894865236844 0.00020026419567934119 0.0008703755497542527 5.356812885157939e-07 1.7089783956075861 0.001051807750416708 1.1319459361374606 0.001236816540531044']
['59866.44083280932 2.8456079337336773 0.00065099927865277 0.32624592975291766 0.00020036873646883698 0.0008726664266182874 5.359609218502979e-07 1.7134765218115424 0.0010523568091850683 1.1321314119221348 0.001237438852891166']
['59866.44086434728 2.839961759672862 0.0006505914336486135 0.32507395438224995 0.0002001752894548305 0.0008695315413506618 5.354434756569282e-07 1.7073211889824054 0.0010513408059602443 1.1326405706904568 0.0012363602645726261']
['59866.440895885244 2.8406219606913323 0.0006506390276738784 0.3250104931003628 0.0002001939765475772 0.0008693617904816317 5.354934612566367e-07 1.7069878839304768 0.0010514389524557627 1.1336340767608555 0.0012364687683373494']
['59866.44092742321 2.8435717567062193 0.0006508705631737239 0.3257090970201726 0.00020030103395349174 0.0008712304672396334 5.357798262204332e-07 1.7106570221647721 0.0010520012287473306 1.1329147345414472 0.0012370687431553567']
['59866.44095896117 2.8432199927477497 0.0006508271404431065 0.3255372619025725 0.00020025229431311288 0.0008707708301242917 5.356494538726884e-07 1.7097545267992253 0.0010517452432411392 1.1334654659485244 0.0012368282109564426']
['59866.44099049913 2.841755638535186 0.0006507179184424551 0.32525996146806496 0.00020021187576731964 0.0008700290866810413 5.35541339396124e-07 1.708298116954123 0.0010515329609628132 1.1334575215810632 0.0012365902220919033']
['59866.44102203709 2.856015644601165 0.0006535311235137684 0.32636574793214407 0.00020040683452389395 0.0008729869250299875 5.36062829308861e-07 1.7141058189713452 0.0010525569040120482 1.14190982562982 0.0012389426805081002']
['59866.44105357506 2.846828218299585 0.0006511431326387014 0.3265723170344158 0.00020046149954624067 0.0008735394711428715 5.362090513008057e-07 1.7151907407269738 0.0010528440102218523 1.1316374775726112 0.0012379288707525054']
['59866.44108511302 2.847366883531242 0.000651117808770069 0.32649199096994447 0.00020042460691493765 0.0008733246091223718 5.361103681976874e-07 1.714768860136263 0.0010526502464019837 1.132598023394979 0.0012377507592999865']
['59866.44111665098 2.84453372193053 0.0006509501887314749 0.32617668459078397 0.0002003848154394326 0.0008724812046041903 5.360039310545016e-07 1.713112839237311 0.0010524412575600452 1.1314208826932188 0.0012374848479169804']
['59866.44114818895 2.841389059517089 0.0006506891835407728 0.32562989964884137 0.00020027926481981103 0.0008710186243299318 5.357215965526666e-07 1.7102410695842512 0.0010518868950620327 1.1311479899328378 0.0012368760865908118']
['59866.44117972691 2.8430001499412927 0.000650830517590348 0.32560785864573516 0.00020029437169805076 0.0008709596674459812 5.357620055332808e-07 1.710125308013315 0.0010519662379099306 1.1328748419279777 0.0012370179175457778']
['59866.44121126487 2.847894582706754 0.0006512421399197135 0.3265741934655075 0.0002004388714923002 0.0008735444903577221 5.36148524130433e-07 1.7152005959322871 0.0010527251654007365 1.132693986774467 0.0012378798805519119']
['59866.44124280284 2.847265992153446 0.000651169309633989 0.32654477766533946 0.00020044424431591706 0.0008734658068282811 5.361628957512226e-07 1.7150461011835059 0.0010527533840121695 1.13221989096994 0.0012378655651395592']
['59866.441274340796 2.8470139523955007 0.0006511234471227245 0.32635958391078324 0.00020040605408719268 0.0008729704370557202 5.360607417398059e-07 1.714073444909576 0.0010525528050797936 1.1329405074859247 0.0012376708572453023']
['59866.44130587876 2.8463840734309933 0.0006511013453963705 0.3264086655682804 0.0002004175609043362 0.000873101724255818 5.360915210142202e-07 1.714331226724162 0.0010526132400437828 1.1320528467068314 0.0012377106265571262']
['59866.44133741673 2.8468943452354614 0.0006511182124253858 0.32647412595484243 0.00020041565090611854 0.0008732768224759533 5.360864120115708e-07 1.714675031275433 0.0010526032085405386 1.1322193139600283 0.0012377109683532205']
['59866.441368954685 2.8412463152757446 0.00065068141616434 0.3254000281842304 0.0002002830956135657 0.0008704037473573501 5.357318434394232e-07 1.7090337614717985 0.0010519070147771308 1.132212553803946 0.001236889111068153']
['59866.44140049265 2.842289860099815 0.0006507409417826671 0.3255420248034475 0.00020028543187275197 0.0008707835702792113 5.357380926360256e-07 1.7097795420349136 0.0010519192850459663 1.1325103180649014 0.001236930861270673']
['59866.44143203062 2.8459489467834405 0.0006510349674606309 0.32611142986083275 0.00020034310990651788 0.000872306656489369 5.358923740508435e-07 1.7127701148152983 0.001052222215895577 1.1331788319681422 0.0012373431700545582']
['59866.441463568575 2.8456516782745744 0.0006510359088738287 0.3263021188011306 0.00020039860817913058 0.0008728167251858624 5.360408248814212e-07 1.7137716323588792 0.0010525136984198035 1.1318800459156952 0.0012375915481306848']
['59866.44149510654 2.846238648313345 0.0006510991205928203 0.32627791911992843 0.0002003971515010526 0.0008727519941121721 5.360369284525707e-07 1.7136445331929013 0.0010525060477996461 1.1325941151204435 0.001237618295554641']
['59866.4415266445 2.8463220128140962 0.0006511028049532101 0.32631482400058914 0.00020040477921915443 0.0008728507099807666 5.360573316297206e-07 1.713838361347632 0.0010525461093442985 1.1324836514664642 0.0012376543034764425']
['59866.441558182465 2.8471895885222374 0.0006511694843475516 0.3264203076301705 0.00020042656222283675 0.0008731328652927523 5.361155983979799e-07 1.714392372007198 0.0010526605158762434 1.1327972165150393 0.0012377866775136557']
['59866.44158972043 2.8403220656587527 0.0006505891881926784 0.3251240053760573 0.00020018028255193676 0.0008696654214022769 5.354568315575299e-07 1.7075840618490405 0.0010513670302097521 1.1327380038097121 0.0012363813829095302']
['59866.44162125839 2.8466331316613376 0.0006511005016405634 0.32690170141333885 0.0002004932137949099 0.0008744205325224153 5.362938828880688e-07 1.716920700700309 0.0010530105766539386 1.1297124309610285 0.001238048116101169']
['59866.441652796355 2.8415226393651682 0.0006507253254822429 0.32527779237817467 0.0002002319885224677 0.0008700767821009368 5.355951384616872e-07 1.7083917666920938 0.0010516385951810279 1.1331308726730744 0.001236683946729437']
['59866.44168433432 2.843869972703998 0.0006508874083598852 0.3259587366616876 0.00020034139850383186 0.0008718982215747394 5.358877962660183e-07 1.7119681547357544 0.0010522132274360919 1.1319018179682436 0.0012372578932271657']
['59866.44171587228 2.8407390818613285 0.0006506193180281925 0.3254268952769675 0.00020025355833165804 0.0008704756134181168 5.356528349617576e-07 1.7091748701521403 0.0010517518819940024 1.1315642117091882 0.0012367245118737626']
['59866.441747410245 2.846466175190103 0.0006510864090367107 0.3267088642623343 0.00020048596660650323 0.000873904717635119 5.362744975795236e-07 1.7159079005374702 0.0010529725136896179 1.1305582746526326 0.0012380083305931957']
['59866.4417789482 2.843759813892036 0.0006508756543930499 0.32537070776153165 0.0002002462060367305 0.0008703253189505257 5.356331685066184e-07 1.7088797676551033 0.001051713266999635 1.1348800462369326 0.0012368265494662647']
['59866.44181048617 2.844101797340551 0.0006508899851003713 0.32589188458535934 0.0002003224225474967 0.0008717194007612335 5.358370379928984e-07 1.7116170408894924 0.0010521135637998778 1.1324847564510587 0.0012371744920728204']
['59866.441842024135 2.8468719451287248 0.0006511020785556643 0.32650655299836523 0.00020041590712400564 0.0008733635606989198 5.360870973618774e-07 1.7148453413779687 0.0010526045542227189 1.132026603750756 0.0012377036253764127']
['59866.44187356209 2.8414597288427377 0.0006506969344306139 0.3255387732452937 0.00020026962862768034 0.00087077487277412 5.356958209625795e-07 1.7097624645236014 0.0010518362848092454 1.1316972643191363 0.001236837123682304']
['59866.44190510006 2.846765146120088 0.0006511146201760342 0.32627826574076824 0.00020035235280845448 0.0008727529212788954 5.359170976396119e-07 1.7136463536805056 0.0010522707605486055 1.1331187924395825 0.0012374263622989944']
['59866.441936638024 2.8459738273517403 0.0006510635424351308 0.3263520386459565 0.00020040166212815437 0.0008729502544306091 5.360489938071873e-07 1.714033816417839 0.0010525297380680376 1.1319400109339013 0.0012376197258470605']
['59866.44196817598 2.8468522171365693 0.0006510971820399223 0.3266967565258826 0.00020044377491113934 0.0008738723309778762 5.361616401530599e-07 1.7158443094846776 0.001052750918650942 1.1310079076518917 0.0012378255277625883']
['59866.44199971395 2.841610332495436 0.0006506860705843545 0.3256573309567351 0.00020028950400825509 0.0008710919995945833 5.357489850813073e-07 1.7103851415794913 0.0010519406723122641 1.1312251909159445 0.0012369201835677537']
['59866.44203125191 2.845515764481494 0.0006509629042063552 0.3265609334572014 0.0002004554872302904 0.0008735090215196153 5.361929691192441e-07 1.71513095303152 0.0010528124329321974 1.130384811449974 0.0012378072231124624']
['59866.44206278987 2.8419971862057896 0.0006507033481800532 0.3258309742281538 0.0002003494171661247 0.0008715564732917418 5.359092451692265e-07 1.7112971335512281 0.0010522553422590583 1.1307000526545614 0.001237196893241112']
['59866.44209432784 2.844516324213848 0.0006509743443775178 0.32593374230723504 0.00020034167501309708 0.0008718313648510332 5.358885358931842e-07 1.7118368818657304 0.0010522146796906361 1.1326794423481175 0.0012373048650976069']
['59866.4421258658 2.8407276999253304 0.0006506437333560962 0.324969977422201 0.00020015400328824248 0.000869253416188318 5.353865378647943e-07 1.7067750915031568 0.0010512290088668197 1.1339526084221736 0.0012362927229579066']
['59866.44215740376 2.841934206308773 0.0006507663420481878 0.3255613027438049 0.0002002885820256123 0.0008708351363212367 5.35746518894836e-07 1.7098807917216645 0.0010519358299664512 1.1320534145871084 0.0012369582944909605']
['59866.44218894173 2.847844135836722 0.0006511844565792895 0.3266308554876727 0.00020045226490247926 0.0008736960540705486 5.36184349801607e-07 1.7154981905865163 0.001052795508941593 1.1323459452502058 0.0012379093586115473']
['59866.44222047969 2.8470325055618293 0.0006511201769381495 0.32660164935331243 0.0002004345272830901 0.0008736179313705143 5.361369039225403e-07 1.7153447970237 0.0010527023491758933 1.1316877085381294 0.0012377963163527396']
['59866.44225201765 2.8413269170045377 0.000650714798562591 0.325226010290007 0.0002002162918919428 0.0008699382715917686 5.355531519686129e-07 1.7081198019433141 0.0010515561548946578 1.1332071150612235 0.001236608303370631']
['59866.44228355561 2.847060995637456 0.0006511389155316576 0.3267723336682151 0.00020046312619975137 0.0008740744902348003 5.362134023923507e-07 1.7162412482574325 0.0010528525535701229 1.1308197473800234 0.0012379339186236362']
['59866.442315093576 2.8412070534210114 0.0006506508541448307 0.32557094379630336 0.00020027278649630478 0.0008708609249121902 5.357042678600789e-07 1.7099314275015933 0.0010518528702537016 1.131275625919418 0.0012368269865508062']
['59866.44234663154 2.84675386321423 0.0006511184812530023 0.32647163118827505 0.0002004207519564053 0.0008732701492922381 5.361000566732195e-07 1.714661928509848 0.0010526299997710364 1.1320919347043819 0.0012377338942790525']
['59866.4423781695 2.8416667164224885 0.0006507338358308727 0.3252738386712867 0.00020021152992480187 0.0008700662064371593 5.355404143113134e-07 1.708371001424825 0.0010515311445630352 1.1332957149976635 0.0012365970536440754']
['59866.442409707466 2.8413761450672883 0.0006507212911297 0.32524040229237244 0.00020023893207487485 0.0008699767683702132 5.356137115824975e-07 1.7081953901910318 0.0010516750634184603 1.1331807548762565 0.0012367128356032076']
['59866.44244124543 2.840415049916361 0.0006506007311584439 0.3250972566099154 0.0002002096607807053 0.0008695938718501241 5.355354145882492e-07 1.7074435746319088 0.0010515213276297548 1.1329714752844522 0.0012365186670018954']
['59866.44247278339 2.844179300924189 0.0006509231234156448 0.32567854554031606 0.0002003004810697124 0.0008711487459112647 5.357783473265435e-07 1.710496562711744 0.0010519983249459685 1.133682738212445 0.001237093928643376']
['59866.442504321356 2.841679077601409 0.0006506926500814585 0.32546923870826916 0.00020026086198314175 0.0008705888767189425 5.356723713018628e-07 1.7093972621232625 0.0010517902415080975 1.1322818154781464 0.0012367957135281855']
['59866.442535859314 2.8460401011713996 0.0006510925680839693 0.3259782983441226 0.00020033169119503037 0.0008719505465907852 5.358618304478692e-07 1.7120708946645098 0.0010521622436713781 1.1339692065068898 0.0012373224798821714']
['59866.44256739728 2.8405735166534183 0.0006506315764255251 0.325095729909506 0.00020019601326260906 0.0008695897881204305 5.354989092106701e-07 1.7074355562474057 0.001051449649488493 1.1331379604060126 0.0012364739437818488']
['59866.442598935246 2.846248820578503 0.0006510814807822493 0.3260698150520309 0.00020035205058360701 0.0008721953421611903 5.359162892265296e-07 1.7125515496430197 0.00105226917323323 1.1336972709354833 0.0012374075753584799']
['59866.442630473204 2.8418601023479826 0.0006506922070726648 0.3257134947782542 0.00020030985568962443 0.0008712422306839562 5.358034232441671e-07 1.710680119633688 0.0010520475613950864 1.1311799827142945 0.0012370143167249293']
['59866.44266201117 2.845943513366877 0.0006510983391038602 0.32617092327329533 0.0002003868452291577 0.000872465793811635 5.360093604842191e-07 1.7130825802168874 0.001052451918220366 1.1328609331499897 0.001237571851388651']
['59866.44269354913 2.845853994984884 0.0006510242741002994 0.3262411924300132 0.0002003864374959421 0.0008726537548811905 5.360082698496523e-07 1.713451640913935 0.001052449776764402 1.1324023540709487 0.0012375310655006852']
['59866.442725087094 2.843620121152616 0.0006509190992923337 0.32545982171083665 0.00020024680528483052 0.0008705636874468338 5.356347714191774e-07 1.7093478031031337 0.0010517164143110849 1.1342723180494823 0.0012368520889560353']
['59866.44275662506 2.841606331068283 0.0006506708389128416 0.32583133273181475 0.00020032936253613223 0.0008715574322435024 5.358556015810722e-07 1.7112990164486068 0.0010521500133200223 1.1303073146196763 0.0012370902113996636']
['59866.44278816302 2.8477280883967686 0.0006512101737012596 0.32659241468328676 0.00020044533839997834 0.0008735932298010621 5.361658222871304e-07 1.7152962956054978 0.001052759130251987 1.1324317927912708 0.0012378919487018828']
['59866.442819700984 2.8408744162038184 0.000650657769603641 0.32556298439489273 0.00020028708680373212 0.0008708396345243153 5.357425193662099e-07 1.709889623922756 0.0010519279769103578 1.1309847922810625 0.001236894499038743']
['59866.44285123895 2.8399074809668363 0.0006505593055737724 0.3253129637402864 0.00020022035183707833 0.0008701708610275815 5.355640118062096e-07 1.7085764902325968 0.0010515774781359158 1.1313309907342395 0.0012365446221593952']
['59866.44288277691 2.84275746113411 0.0006507913774010055 0.32601357348204246 0.00020034810629757403 0.0008720449031045363 5.359057387623428e-07 1.7122561632460216 0.0010522484574452418 1.1305012978880886 0.0012372373390321636']
['59866.44291431487 2.8442946678447827 0.0006509414347685191 0.3255490516768823 0.0002002826891210391 0.0008708023662731883 5.35730756123542e-07 1.7098164478827853 0.0010519048798373904 1.1344782199619974 0.001237024101513068']
['59866.44294585283 2.8410676780855817 0.0006506550273919074 0.32509193466386677 0.0002001898650070345 0.0008695796363203677 5.354824634078788e-07 1.7074156232345945 0.0010514173582302233 1.1336520548509872 0.0012364588249748495']
['59866.4429773908 2.846425011338306 0.0006511183777457341 0.32617880311367087 0.00020039618831641616 0.0008724868713838458 5.360343520559993e-07 1.7131239659331454 0.0010525009890568076 1.1333010454051604 0.001237624124604799']
['59866.44300892876 2.8474799421570696 0.0006511735969695114 0.3266457519091789 0.0002004417184055521 0.00087373590010613 5.361561392618043e-07 1.715576428094427 0.001052740117676219 1.1319035140626426 0.001237856538034659']
['59866.44304046672 2.847470169672225 0.0006511597980219378 0.3266370753109562 0.00020044021269283746 0.0008737126913078717 5.361521116715285e-07 1.7155308577256103 0.0010527322095212053 1.1319393119466148 0.0012378425536082405']
['59866.44307200469 2.841600666401049 0.0006507023751924973 0.325496659719932 0.00020027191573346548 0.0008706622244424841 5.357019386800767e-07 1.7095412800416598 0.0010518482969194616 1.1320593863593893 0.0012368502014445926']
['59866.44310354265 2.8402713514707916 0.0006505864232985852 0.3253960594454294 0.000200221273544065 0.0008703931314851145 5.355664772553357e-07 1.7090129172554065 0.0010515823190339548 1.131258434215385 0.001236563006031345']
['59866.44313508061 2.8457196957195947 0.000651050795177068 0.32613249789713356 0.00020034267384119392 0.0008723630108106886 5.358912076314852e-07 1.712880766266458 0.0010522199256365228 1.1328389294531367 0.0012373495503725785']
['59866.44316661858 2.846440570666598 0.0006510965553356894 0.3262568340819403 0.00020039618415038058 0.0008726955943134983 5.360343409123832e-07 1.7135337924471654 0.0010525009671763686 1.1329067782194324 0.0012376126252899944']
['59866.443198156536 2.84288704369519 0.0006508202402492967 0.3258505722838751 0.00020034255175359786 0.0008716088956017087 5.358908810626717e-07 1.7114000645161507 0.001052219284420157 1.1314869791790392 0.0012372277104978774']
['59866.4432296945 2.846117265435389 0.0006510474754051925 0.32634014270720496 0.00020039993975494728 0.0008729184343053145 5.360443866776116e-07 1.7139713377479253 0.0010525206919902695 1.1321459276874635 0.001237603580432422']
['59866.44326123247 2.840111836149074 0.0006505435793234853 0.32532434128656224 0.0002002208366065487 0.0008702012945188429 5.355653085029737e-07 1.7086362462529532 0.0010515800241940583 1.1314755898961206 0.0012365385137079184']
['59866.443292770426 2.8469397542802137 0.0006510840504542257 0.32643411332996475 0.0002004106565703983 0.0008731697937862833 5.36073052797834e-07 1.7144648809346887 0.0010525769777857054 1.132474873345525 0.0012376706892062888']
['59866.44332430839 2.843216510829858 0.0006507924684076709 0.3258554852941647 0.0002003141621626791 0.0008716220372802474 5.358149425126368e-07 1.7114258681416212 0.0010520701794258357 1.1317906426882367 0.0012370862942306245']
['59866.44335584636 2.8445662448911695 0.000650972760776579 0.32577665665354905 0.00020032855754846497 0.0008714111806783786 5.358534483413013e-07 1.7110118521720015 0.0010521457854436186 1.133554392719168 0.001237245444162091']
['59866.443387384315 2.8443676222231016 0.0006509569952912317 0.325900102574293 0.00020033201026357025 0.0008717413828378902 5.358626839156894e-07 1.711660202596077 0.0010521639194515245 1.1327074196270246 0.00123725257046174']
['59866.44341892228 2.846434945840313 0.0006511747917080136 0.32616868478176425 0.00020037875307340376 0.0008724598061310931 5.359877149953366e-07 1.7130708234336358 0.0010524094174023308 1.1333641224066773 0.0012375759335059356']
['59866.44345046024 2.8409465689225657 0.0006506456704662367 0.3251833338760635 0.00020019589938981305 0.0008698241176046672 5.354986046154034e-07 1.7078956611137792 0.0010514490514170855 1.1330509078087865 0.0012364808515388937']
['59866.443481998205 2.8399045063676773 0.0006505737228507359 0.3249980475698486 0.00020019549183907307 0.000869328500268174 5.354975144689357e-07 1.7069225187492052 0.0010514469109195017 1.1329819876184721 0.0012364411734271988']
['59866.44351353617 2.8432626834900754 0.0006508514395167424 0.3257765792621945 0.0002003216070921374 0.0008714109736663345 5.358348567533807e-07 1.7110114457048033 0.0010521092809461 1.132251237785272 0.0012371505710195244']
['59866.44354507413 2.8464910081027948 0.0006510891521772742 0.3265265879312099 0.00020043278872293376 0.0008734171515997055 5.361322534949312e-07 1.7149505668655984 0.0010526932180826354 1.1315404412371963 0.0012377722308567504']
['59866.443576612095 2.84766707715648 0.0006511313992265691 0.32667303041220486 0.00020045320510394502 0.0008738088666371674 5.361868647211159e-07 1.7157196975430928 0.0010528004469745013 1.131947379613387 0.0012378856490841386']
['59866.44360815006 2.846983527414558 0.0006511931120348794 0.32624935118594317 0.00020039491815426332 0.0008726755785170851 5.360309545335597e-07 1.7134944915228107 0.0010524943180370973 1.1334890358917473 0.0012376577712203182']
['59866.44363968802 2.8410070644227536 0.0006506756370054807 0.32537065887783223 0.00020025163049905518 0.0008703251881928384 5.35647678254393e-07 1.7088795109129846 0.0010517417568227689 1.132127553509769 0.001236745530671986']
['59866.443671225985 2.840934697973103 0.0006506500133468768 0.3254562965518401 0.00020027873073266123 0.0008705542580942374 5.357201679373736e-07 1.7093292886126057 0.0010518840899824645 1.1316054093604975 0.0012368530950062455']
['59866.44370276394 2.847095199848236 0.0006511440054214709 0.32635209204547344 0.0002003911930535239 0.0008729503972675348 5.360209903621951e-07 1.7140340968774868 0.0010524747534323734 1.1330611029707494 0.0012376152966123407']
['59866.44373430191 2.845977528686718 0.0006510523267552569 0.32626472096739534 0.0002003849051133592 0.0008727166907304021 5.360041709208661e-07 1.7135752151648918 0.0010524417285365504 1.1324023135218262 0.0012375389788359945']
['59866.443765839875 2.847112649035265 0.000651124324404781 0.3266927104635392 0.00020045206685846578 0.0008738615082749853 5.361838200590239e-07 1.7158230591572439 0.0010527944687944632 1.1312895898780213 0.0012378768433716654']
['59866.44379737783 2.8407162330654776 0.0006506300876239742 0.3255663302555177 0.0002002860383239075 0.0008708485842765399 5.357397148158432e-07 1.709907196720156 0.00105192247018859 1.1308090363453216 0.0012368752541017404']
['59866.4438289158 2.8462449917419925 0.0006510745401086572 0.3263151677663565 0.0002003954124905875 0.0008728516295105337 5.360322768204428e-07 1.7138401668401078 0.001052496914341321 1.1324048249018848 0.0012375975967477077']
['59866.443860453765 2.848146820607802 0.0006512697037716335 0.32638905870234103 0.00020039180511512579 0.0008730492783796366 5.360226275492442e-07 1.7142282494870853 0.0010524779680416271 1.1339185711207167 0.0012376841682205616']
['59866.44389199172 2.839629084079039 0.0006504946884307966 0.32508069082444535 0.00020019567320226449 0.0008695495604779601 5.354979995924384e-07 1.7073565694561206 0.0010514478634572717 1.1322725146229182 0.0012364004000507038']
['59866.44392352969 2.842057991957145 0.0006507551885729257 0.32555249746243264 0.00020030460884113633 0.000870811583311897 5.357893885908473e-07 1.7098345454959698 0.001052020004417733 1.1322234464611751 0.00123702401154936']
['59866.44395506765 2.846998537769013 0.0006511141559509212 0.3265848431537284 0.00020046494900507108 0.0008735729769211296 5.362182781650721e-07 1.7152565291687416 0.0010528621271274742 1.1317420086002714 0.001237929037876998']
['59866.44398660561 2.843677819615414 0.0006508536553488103 0.3257757646822494 0.00020029697043286336 0.0008714087947684385 5.357689568188472e-07 1.711007167448789 0.0010519798867272235 1.1326706521666252 0.00123704169806823']
['59866.44401814358 2.846657826613203 0.0006511077781758068 0.3264883061513061 0.00020041239625834614 0.0008733147527005113 5.360777062421422e-07 1.7147495070971959 0.0010525861148022383 1.1319083195160073 0.0012376909419865312']
['59866.44404968154 2.8414570881099257 0.0006506287187071251 0.3257339373145976 0.00020029805492659833 0.0008712969118723326 5.357718577018502e-07 1.710787485895996 0.0010519855825976805 1.1306696022139298 0.0012369282095577967']
['59866.4440812195 2.8434621939091604 0.0006508219547564858 0.3257200342792891 0.000200301430156313 0.0008712597230186632 5.357808860126596e-07 1.7107144657525688 0.0010520033096445012 1.1327477281565916 0.0012370449386728186']
['59866.44411275747 2.8434621782902 0.0006508920526187282 0.3257981487049594 0.00020032241220951566 0.0008714686691862633 5.35837010340112e-07 1.711124730593274 0.0010521135095037588 1.1323374476969261 0.0012371755336420685']
['59866.44414429543 2.8464276481122237 0.0006510925806755431 0.32639988098789785 0.0002004094563600107 0.0008730782266189966 5.360698423874821e-07 1.7142850892221526 0.00105257067415972 1.132142558890071 0.001237669815706833']
['59866.44417583339 2.846036327999193 0.0006510349618408424 0.32623596323339277 0.0002003784432089365 0.0008726397674443746 5.359868861472415e-07 1.7134241766459704 0.0010524077899629017 1.1326121513532226 0.001237500980974846']
['59866.44420737135 2.8440952515697933 0.0006508910859945965 0.3260757822537547 0.00020035890317403186 0.0008722113036679259 5.359346190355901e-07 1.7125828899882076 0.001052305163729159 1.1315123615815856 0.0012373380150299583']
['59866.44423890932 2.840392993279579 0.0006505840989797601 0.3252471971418879 0.00020024081634196418 0.0008699949437296745 5.356187517576467e-07 1.7082310774258818 0.0010516849597792238 1.1321619158536973 0.001236649070864946']
['59866.44427044728 2.8468995181059418 0.0006511267698289488 0.326506804504183 0.00020042271165816877 0.0008733642334450394 5.361052986265412e-07 1.7148466623118856 0.0010526402923223149 1.1320528557940561 0.0012377470078365324']
['59866.44430198524 2.846851775332703 0.000651146462190981 0.3267450782762993 0.00020044696386226933 0.0008740015855230472 5.361701701923139e-07 1.7160981001906477 0.0010527676673438516 1.1307536751420553 0.0012378656940995035']
['59866.444333523206 2.846954695889247 0.0006510695524222528 0.32659913640523014 0.00020044707286089432 0.0008736112095535558 5.361704617497922e-07 1.715331598766965 0.0010527682398156215 1.1316230971222818 0.0012378257263669207']
['59866.44436506117 2.84134232318244 0.0006507019527548512 0.32573115266677594 0.00020032041157751117 0.000871289463293079 5.358316589035941e-07 1.7107728606448316 0.001052103001982727 1.1305694625376084 0.0012370665940441697']
['59866.44439659913 2.8407972152734917 0.0006506631577056213 0.32558834811323356 0.00020029049088445726 0.0008709074792495109 5.35751624849808e-07 1.7100228367291679 0.0010519458554855948 1.1307743785443238 0.00123691253840713']
['59866.444428137096 2.842674229071795 0.0006507986467157094 0.32572942881613653 0.00020032662221492327 0.0008712848522115594 5.358482715698778e-07 1.7107638068074398 0.001052135620876698 1.1319104222643552 0.0012371451989498215']
['59866.444459675055 2.846772599742109 0.0006511382932709257 0.32620139426166705 0.00020038354042530276 0.0008725472998355048 5.360005205536398e-07 1.7132426169205204 0.0010524345610572624 1.1335299828215886 0.0012375781115838977']
['59866.44449121302 2.843929757607254 0.000650880162571548 0.32580240183207737 0.0002003021292623832 0.0008714800457611276 5.357827560326062e-07 1.7111470684457846 0.00105200698142008 1.1327826891614694 0.0012370786858505619']
['59866.444522750986 2.8439806218741794 0.000650955357890211 0.3255461925630625 0.00020024930428484615 0.0008707947185068474 5.35641455926829e-07 1.7098014315286898 0.0010517295393111669 1.1341791903454896 0.0012368823314388689']
['59866.444554288944 2.843998573176279 0.0006509300725349031 0.3256731525610011 0.0002002758032645195 0.0008711343203765425 5.35712337331903e-07 1.710468238240552 0.0010518687146245773 1.1335303349357269 0.0012369873694327903']
['59866.44458582691 2.84067626832594 0.0006505981306288744 0.32522420229441384 0.00020020285803207098 0.0008699334354331848 5.355172180996481e-07 1.70811030616814 0.001051485598907936 1.1325659621578 0.0012364869155347205']
['59866.444617364876 2.8459916920630555 0.0006509924376204599 0.32655766688530896 0.00020041303513231712 0.0008735002838546801 5.360794151488731e-07 1.7151137966665388 0.001052589470232758 1.1308778953965166 0.0012376331228130194']
['59866.444648902834 2.846615810365732 0.0006510946255808458 0.3266416044873892 0.0002004582237191317 0.0008737248062795936 5.362002888793417e-07 1.7155546454169603 0.0010528268052475405 1.1310611649487718 0.001237888724121843']
['59866.4446804408 2.8406561556948016 0.0006506242762967381 0.32518851155854545 0.00020020652678246094 0.0008698379672477051 5.355270315409848e-07 1.7079228548242935 0.0010515048675549421 1.132733300870508 0.0012365170582723033']
['59866.44471197876 2.8435918730860292 0.0006508598896308976 0.32565871958901405 0.00020029333177720284 0.0008710957140095636 5.357592238770896e-07 1.7103924348162503 0.0010519607761407712 1.133199438269779 0.0012370287266143167']
['59866.444743516724 2.8465463976971783 0.0006510989723670494 0.3262093044579827 0.00020039898077218568 0.000872568458606 5.360418215205217e-07 1.713284162069237 0.0010525156553161013 1.1332622356279414 0.001237626388092509']
['59866.44477505469 2.8464797539028948 0.0006511330948267892 0.32626143772919036 0.00020039412445678253 0.0008727079084851975 5.360288314936037e-07 1.7135579712667561 0.0010524901494578915 1.1329217826361386 0.0012376226492289994']
['59866.44480659265 2.843657904053698 0.0006508949797552524 0.3259569529831847 0.00020034797112936724 0.0008718934504612836 5.359053772045569e-07 1.7119587866763906 0.0010522477475281894 1.1316991173773074 0.0012372912336425642']
['59866.444838130614 2.846369881297904 0.0006510646769720082 0.32695191236970006 0.00020051552942056204 0.0008745548404535457 5.363535743524507e-07 1.717184413706408 0.0010531277805701789 1.129185467591496 0.0012381289657419927']
['59866.44486966858 2.8439549422901584 0.0006509087112418056 0.32578707214979474 0.00020033380449014065 0.0008714390408079964 5.358674832438861e-07 1.711066555408586 0.0010521733429104025 1.1328883868815725 0.0012372351813223386']
['59866.44490120654 2.8434845330342116 0.0006508859230885705 0.32552964147590513 0.00020026488345668166 0.000870750446450803 5.356831282328273e-07 1.709714503549922 0.001051811362692656 1.1337700294842896 0.0012369153679877385']
['59866.4449327445 2.843939543232891 0.0006509045096789584 0.32608784897952153 0.00020036831167044732 0.0008722435806267952 5.359597855685579e-07 1.7126462656487478 0.001052354578101089 1.131293277584143 0.0012373871014240963']
['59866.44496428246 2.845715618006769 0.0006509938880399663 0.3263644903670062 0.00020041221958572598 0.000872983561202963 5.360772336653219e-07 1.7140992141124276 0.0010525851868998213 1.1316164038943415 0.0012376302428214673']
['59866.44499582043 2.8462484970821684 0.0006510662167702996 0.3264995384936831 0.0002004176952993803 0.0008733447977897853 5.36091880503894e-07 1.714808500492033 0.0010526139459001067 1.1314399965901354 0.0012376927477055779']
['59866.44502735839 2.840999534383769 0.0006507004041015978 0.3253793839690145 0.0002002725480602886 0.0008703485267036045 5.357036300740187e-07 1.708925335971715 0.0010518516179637007 1.132074198412054 0.001236851988764556']
['59866.44505889635 2.8442325582623598 0.0006509405421831252 0.3258063315944719 0.00020032406337790705 0.0008714905573764263 5.358414270058493e-07 1.7111677079541594 0.0010521221816066548 1.1330648503082004 0.0012372084199868702']
['59866.44509043432 2.844244238629585 0.0006509203441274781 0.3257897051063624 0.0002003332880213642 0.0008714460836324113 5.358661017555042e-07 1.7110803839619875 0.001052170630364308 1.1331638546675977 0.0012372389946167473']
['59866.44512197228 2.843940875920466 0.0006509347951827565 0.3256743795418954 0.00020029708582870105 0.0008711376023945997 5.35769265488057e-07 1.710474682467938 0.0010519804927977996 1.1334661934525279 0.0012370849060621178']
['59866.44515351024 2.845677289180464 0.0006510139247597388 0.32618019158996064 0.0002003694032697902 0.0008724905853815749 5.359627054581594e-07 1.7131312583506337 0.001052360311290915 1.13254603082983 0.0012374495363494183']
['59866.44518504821 2.846725029444607 0.000651105345699805 0.3265394104775154 0.00020043313128622554 0.0008734514502825214 5.361331698082289e-07 1.7150179121718248 0.001052695017259588 1.1317071172727822 0.0012377822791436411']
['59866.445216586166 2.8463461456836736 0.0006510515856668411 0.32665679356443983 0.00020047260103454284 0.000873765435131587 5.362387463720488e-07 1.7156344199813016 0.001052902316357893 1.130711725702372 0.0012379303110398117']
['59866.44524812413 2.848604654112277 0.0006513176964227257 0.32662333273912547 0.0002004672035097361 0.0008736759316736255 5.362243086787134e-07 1.71545868035255 0.0010528739680133199 1.1331459737597271 0.0012380461761152203']
['59866.4452796621 2.8465395614534086 0.000651108879410444 0.3265033072946533 0.00020042456371873458 0.0008733548788537171 5.361102526533303e-07 1.714828294614776 0.001052650019531169 1.1317112668386327 0.0012377458690967604']
['59866.445311200056 2.840924903845879 0.0006506744986527061 0.3251342264711182 0.00020020577085826883 0.0008696927615334157 5.355250095397784e-07 1.707637744070999 0.0010515008973648573 1.1332871597748797 0.0012365401086726021']
['59866.44534273802 2.8434406133042036 0.0006508754887507217 0.32544335686880055 0.00020026874086040536 0.0008705196460855352 5.356934462978715e-07 1.70926132809244 0.0010518316221659945 1.1341792852117636 0.0012369271050651444']
['59866.44537427599 2.846549622678171 0.0006511060296520576 0.3265794746612437 0.000200450695610946 0.0008735586168855684 5.361801521460663e-07 1.7152283333048515 0.0010527872668642123 1.1313212893733193 0.0012378610952448114']
['59866.445405813945 2.841016761412745 0.0006507035930530522 0.32545277259283817 0.0002002755329423357 0.0008705448319514742 5.357116142543941e-07 1.7093107804245702 0.0010518672948652084 1.1317059809881749 0.001236866998516495']
['59866.44543735191 2.8402213731971386 0.0006505731953925785 0.3253765752183848 0.00020025490300289481 0.0008703410136524007 5.356564317865336e-07 1.7089105841301724 0.001051758944342935 1.1313107890669662 0.0012367062543581946']
['59866.44546888987 2.8474518441855237 0.0006511827565964604 0.3265132204963887 0.00020042795569965126 0.0008733813954093147 5.361193257714777e-07 1.714880359749941 0.001052667834556992 1.1325714844355828 0.0012377998838259243']
['59866.445500427835 2.840590297901925 0.0006506070859296915 0.3256106432617441 0.00020029209999060477 0.0008709671159401398 5.357559290043851e-07 1.7101399330973956 0.0010519543066733444 1.1304503648045294 0.0012368902310191158']
['59866.4455319658 2.8416851241198877 0.000650677829845287 0.3254297402700237 0.00020025612328428648 0.0008704832234132085 5.356596958842721e-07 1.7091898123425615 0.0010517653533838576 1.1324953117773262 0.0012367667511826322']
['59866.44556350376 2.8460782040231094 0.0006511014682794332 0.32629933247609866 0.0002003939554167531 0.0008728092721202844 5.360283793329942e-07 1.7137569982988377 0.001052489261642611 1.1323212057242718 0.001237605255268675']
['59866.445595041725 2.8408308718377273 0.0006506531421516863 0.3252805563536625 0.00020025034406895772 0.0008700841753843229 5.356442372172677e-07 1.7084062833700762 0.001051735000362173 1.1324245884676511 0.0012367279500272819']
['59866.44562657969 2.8407821292469513 0.0006506505399497324 0.325591426276981 0.00020028494271176332 0.0008709157129465874 5.357367841925078e-07 1.7100390035555726 0.0010519167159231267 1.1307431256913787 0.00123688111893398']
['59866.44565811765 2.8452042769763866 0.0006510049029613761 0.3261226624215152 0.00020033266533525296 0.0008723367021625824 5.35864436149242e-07 1.7128291093566979 0.0010521673599540597 1.1323751676196887 0.001237280702602464']
['59866.445689655615 2.8422214569623385 0.0006507495319252086 0.32570808542831564 0.00020030276750877517 0.0008712277613598952 5.357844632606429e-07 1.7106517091823301 0.0010520103335544915 1.1315697477800084 0.0012370128112539137']
['59866.44572119357 2.841126894106086 0.0006507041902186141 0.3254706388305104 0.00020026991840244298 0.0008705926218681128 5.356965960732662e-07 1.7094046157064624 0.0010518378067355199 1.1317222783996237 0.001236842235228993']
['59866.44575273154 2.8462898394798826 0.0006510603838814112 0.3265761991696877 0.00020045152865029868 0.0008735498553616661 5.36182380420533e-07 1.7152111300928978 0.0010527916420708964 1.1310787093869847 0.0012378408076461791']
['59866.445784269505 2.840537691481136 0.0006506166028439342 0.32532094788881993 0.00020023513856327305 0.000870192217610867 5.356035644207647e-07 1.708618423785819 0.0010516551395129887 1.1319192676953171 0.0012366408113758276']
['59866.44581580746 2.8470684714608114 0.0006511283536589766 0.32638231193761447 0.00020038252689735504 0.0008730312316408784 5.359978094951048e-07 1.7141928147983954 0.0010524292379062766 1.132875656662416 0.0012375683551782647']
['59866.44584734543 2.8470341806412707 0.0006511364647414157 0.3265999771742398 0.0002004343737188599 0.0008736134585038732 5.361364931577283e-07 1.7153360145705874 0.001052701542641071 1.1316981660706833 0.0012378041984073408']
['59866.445878883394 2.8431942592203057 0.0006508805686012196 0.3253766300193257 0.00020024734621201074 0.0008703411602379575 5.356362183306829e-07 1.7089108719502402 0.0010517192553151824 1.1342833872700655 0.0012368342276082793']
['59866.44591042135 2.8470758394668447 0.0006511632327225098 0.32651548882354037 0.00020042817131910967 0.0008733874628963522 5.361199025261438e-07 1.7148922732328802 0.0010526689670121308 1.1321835662339645 0.0012377905758891592']
['59866.44594195932 2.8461610510526403 0.000651056669668742 0.3265963085082776 0.00020044177674416458 0.0008736036452883701 5.361562953101833e-07 1.7153167463670043 0.0010527404240764945 1.130844304685636 0.001237795293093697']
['59866.44597349728 2.8433317667672853 0.000650893834909238 0.3258557710514546 0.00020033424288079258 0.0008716228016447048 5.358686558832014e-07 1.7114273689677237 0.001052175645382314 1.1319043977995615 0.0012372293130452994']
['59866.44600503524 2.841714334155495 0.0006507504763031967 0.3253939006587049 0.00020026562493681097 0.0008703873570048071 5.356851115980002e-07 1.7090015790898367 0.001051815257021066 1.1327127550656582 0.0012368474106821457']
['59866.44603657321 2.8472363653698842 0.0006511393839341238 0.32645868226584795 0.00020039300891800025 0.0008732355125693475 5.360258475690421e-07 1.7145939194634874 0.0010524842905357157 1.1326424459063968 0.0012376209755553512']
['59866.44606811117 2.846857593768018 0.0006511668037981601 0.3262901883790823 0.0002003909386861382 0.0008727848128221287 5.360203099617448e-07 1.7137089725792138 0.0010524734174692134 1.133148621188804 0.001237626155528412']
['59866.44609964913 2.8447817900347347 0.0006510234413063956 0.32585316226176936 0.00020032388596833366 0.000871615823463631 5.358409524577727e-07 1.7114136673412257 0.0010521212498336853 1.133368122693509 0.00123725124590037']
['59866.4461311871 2.8413457303086087 0.0006506941248544378 0.3254231544852022 0.00020023753034537103 0.0008704656072752509 5.356099621341041e-07 1.7091552231365663 0.0010516677013937554 1.1321905071720424 0.0012366922811576483']
['59866.44616272506 2.8437238856678793 0.0006509167971708654 0.32569111881388746 0.00020030087813281848 0.0008711823778211762 5.357794094199226e-07 1.7105625988124342 0.0010520004103614419 1.133161286855445 0.0012370923733657966']
['59866.44619426302 2.8470939345941235 0.0006511760033582159 0.32629484378640833 0.00020038081449866331 0.0008727972654454572 5.359932290460907e-07 1.713733423247943 0.0010524202442156686 1.1333605113461804 0.0012375857779501778']
['59866.44622580098 2.843853835993994 0.0006509118471563661 0.3259242519878182 0.0002003394676441006 0.0008718059794519289 5.358826314614696e-07 1.7117870377511462 0.0010522030863660747 1.132066798242848 0.0012372621257141939']
['59866.44625733895 2.8445436016750856 0.0006509680953452912 0.32567116197517826 0.00020029043598414383 0.0008711289958122845 5.357514779984424e-07 1.7104577834830792 0.0010519455671436128 1.1340858181920064 0.0012370727292243464']
['59866.44628887691 2.8467242635522076 0.000651137291694984 0.3264473644524253 0.00020041609792992892 0.0008732052388558817 5.360876077434884e-07 1.7145344771660993 0.0010526055563546688 1.1321897863861083 0.0012377230020907749']
['59866.44632041487 2.847378597933661 0.0006511606440991794 0.3263812861125737 0.00020039255150634065 0.0008730284876891812 5.360246240509471e-07 1.714187427061837 0.0010524818881635538 1.1331911708718243 0.0012376301181435338']
['59866.446351952836 2.8409194235458584 0.0006506834326942208 0.3253736426511771 0.00020024611295694635 0.0008703331694075761 5.356329195300175e-07 1.7088951819914764 0.0010517127781352225 1.132024241554382 0.001236724988538536']
['59866.4463834908 2.8476864754444327 0.0006511974646150914 0.3264046740926304 0.0002004056948813063 0.000873091047565399 5.360597809096815e-07 1.7143102630915463 0.0010525509184942559 1.1333762123528863 0.0012377081941815787']
['59866.44641502876 2.841173001536245 0.0006506873227578379 0.3254881163111453 0.00020028643259774085 0.0008706393719090513 5.357407694482718e-07 1.709496409197192 0.0010519245409545213 1.1316765923390528 0.0012369071233767485']
['59866.446446566726 2.8409456334298233 0.0006506436601675311 0.3255271247114817 0.00020028405794967109 0.0008707437144256166 5.357344175662819e-07 1.7097012852493787 0.0010519120690633986 1.1312443481804446 0.0012368735479253495']
['59866.446478104685 2.8417558129618645 0.0006507586191939104 0.325427357754682 0.0002002598730730684 0.0008704768504872653 5.356697260930149e-07 1.7091772991317333 0.0010517850476526702 1.1325785138301312 0.0012368260051118325']
['59866.44650964265 2.8466407473835433 0.0006511200437568914 0.3262327750559553 0.00020036932199447638 0.0008726312394746499 5.359624880570175e-07 1.7134074320165722 0.001052359884424771 1.1332333153669711 0.0012375050051327038']
['59866.446541180616 2.8401553196037232 0.0006505552948010854 0.32536663192284 0.00020024061452529165 0.000870314416599685 5.356182119236798e-07 1.7088583609392858 0.0010516838998177083 1.1312969586644375 0.0012366330161893264']
['59866.446572718574 2.846414004897561 0.0006510805265247135 0.3263286366848823 0.000200400861104792 0.0008728876571569452 5.360468511714285e-07 1.7139109069584157 0.0010525255310125632 1.132503097939145 0.001237625082750417']
['59866.44660425654 2.8440970886854275 0.0006509549246063333 0.32557109853485916 0.00020026687145082177 0.0008708613388181742 5.356884458646632e-07 1.7099322402040924 0.0010518218038383497 1.1341648484813351 0.0012369605575356867']
['59866.446635794506 2.84332371319815 0.0006508586165870159 0.32562653102826666 0.00020027383085211383 0.0008710096136977323 5.357070613792278e-07 1.7102233772492998 0.001051858355315724 1.1331003359488503 0.0012369409599625456']
['59866.446667332464 2.8418321911300866 0.0006507078479401627 0.32553609774306175 0.00020028099784854544 0.0008707677161454567 5.357262321844246e-07 1.7097484125160807 0.0010518959971037051 1.1320837786140059 0.0012368936462338691']
['59866.44669887043 2.847006871203897 0.0006511675231944398 0.32674171256210227 0.0002004522978513983 0.0008739925826650389 5.361844379357807e-07 1.716080423120285 0.0010527956819926382 1.1309264480836119 0.0012379005983056658']
['59866.44673040839 2.8471736261565845 0.000651157271500541 0.3264684564689474 0.00020043510951992183 0.0008732616573212477 5.361384613321172e-07 1.7146452545637996 0.0010527054071424466 1.132528371592785 0.0012378184303261015']
['59866.446761946354 2.8421967207893606 0.0006507660985222712 0.3255106765854441 0.00020025499507200147 0.0008706997177774908 5.356566780597005e-07 1.7096148980327945 0.0010517594278991675 1.132581822756566 0.0012368081537411865']
['59866.44679348432 2.8437420313656334 0.0006509085697378804 0.32589288040424236 0.000200335872624313 0.0008717220644502698 5.358730152401299e-07 1.7116222710306848 0.001052184204959627 1.1321197603349487 0.001237244344228227']
['59866.44682502228 2.840754472863626 0.0006506426407302394 0.3254295965664895 0.00020027200130874804 0.0008704828390245059 5.357021675830888e-07 1.709189057597109 0.001051848746369475 1.131565415266517 0.0012368191586385844']
['59866.446856560244 2.8439343355152262 0.000650866415463393 0.3255851974237844 0.00020027152723797072 0.0008708990515553936 5.357008995039698e-07 1.7100062889904644 0.0010518462565019472 1.1339280465247619 0.001236934775198485']
['59866.44688809821 2.843274805988071 0.0006508353332938103 0.3257614230604998 0.00020030729858761475 0.0008713704327517428 5.357965833210608e-07 1.7109318438051462 0.0010520341312374726 1.1323429621829249 0.0012370781884554626']
['59866.44691963617 2.847025386299744 0.0006511235003285103 0.3266822828180005 0.00020046676780602246 0.0008738336156475518 5.362231432266168e-07 1.7157682921113473 0.0010528716796534793 1.1312570941883968 0.001237942077197633']
['59866.44695117413 2.844007866946378 0.0006509560813234024 0.32568675642467243 0.00020029810536869067 0.0008711707089840793 5.357719926280407e-07 1.710539687104372 0.0010519858475246358 1.133468179842006 0.0012371006600936103']
['59866.44698271209 2.846884290669884 0.0006511379070474405 0.32654501324917723 0.00020045288549621563 0.0008734664369851263 5.361860098110322e-07 1.715047338493578 0.0010527987683624771 1.1318369521763059 0.0012378876446025584']
['59866.44701425006 2.8410761443630337 0.0006507014634618914 0.3256234076419857 0.0002003052514536505 0.0008710012590361223 5.357911074977064e-07 1.710206972909589 0.0010520233794834586 1.1308691714534447 0.0012369986198582617']
['59866.44704578802 2.8479218211862025 0.0006512821446354837 0.32674498577088795 0.0002004655355638127 0.0008740013380828206 5.36219847135209e-07 1.716097614342899 0.0010528652077931339 1.1318242068433035 0.0012380200231427092']
['59866.44707732598 2.8419095257799754 0.000650742787946275 0.32527678877583743 0.00020023112543747113 0.0008700740975921491 5.355928298189391e-07 1.7083864956714152 0.0010516340621715922 1.1335230301085601 0.0012366892806132085']
['59866.44710886395 2.841576445501106 0.0006507317427081786 0.3253417383421044 0.0002002492187777612 0.0008702478294328729 5.356412272062367e-07 1.7087276173429855 0.0010517290902193341 1.1328488281581206 0.001236764278341516']
['59866.44714040191 2.8398296301546284 0.0006505527140401759 0.3251700639146649 0.00020019091920886405 0.000869788622143302 5.35485283263882e-07 1.7078259659383663 0.0010514228950045381 1.132003664216262 0.0012364096966154716']
['59866.44717193987 2.842005209870286 0.0006508162506033949 0.3253183504683148 0.00020023245497134887 0.000870185269840906 5.355963861532021e-07 1.7086047818714014 0.0010516410450175887 1.1334004279988845 0.0012367338758258169']
['59866.44720347784 2.8407011633074006 0.0006506065729680306 0.3254325784951093 0.00020026420240528193 0.0008704908153048385 5.356813065068312e-07 1.7092047189869188 0.001051807785742027 1.1314964443204818 0.0012367653499903493']
['59866.447235015796 2.8428414084456017 0.0006507717561542419 0.3257886889376622 0.00020031406726830827 0.0008714433655101988 5.358146886822471e-07 1.7110750469415035 0.001052069681031031 1.1317663615040983 0.0012370749744266963']
['59866.44726655376 2.8420432882444313 0.0006507846007164338 0.3255790464957421 0.00020028882813993807 0.0008708825986040905 5.357471772193992e-07 1.7099739836961245 0.0010519371225837083 1.1320693045483068 0.0012369689997729692']
['59866.44729809173 2.842510277064399 0.0006507600401447623 0.32579212310640004 0.00020031779045358872 0.0008714525514754095 5.358246477300022e-07 1.7110930835420173 0.001052089235575571 1.1314171935223816 0.0012370854414563296']
['59866.447329629686 2.846237083522983 0.0006510830650741401 0.3263464028758052 0.00020040547698321453 0.0008729351794612357 5.360591980599606e-07 1.7140042167846912 0.001052549774071505 1.132232866738292 0.0012376470355171191']
['59866.44736116765 2.840584930424915 0.0006506387907719738 0.32543990579672943 0.00020027934867654183 0.0008705104149060547 5.357218208587711e-07 1.7092432027139153 0.0010518873354860392 1.1313417277109998 0.0012368499515354057']
['59866.44739270562 2.8440975217230737 0.0006509238274056652 0.32575128424602123 0.00020028785347002293 0.0008713433127107115 5.357445701011659e-07 1.7108785937291031 0.001051932003519028 1.1332189279939706 0.0012370379012431253']
['59866.447424243575 2.8405835698538446 0.0006506087143149399 0.32548931549031146 0.00020028954428355226 0.0008706425795610167 5.35749092812612e-07 1.7095027074070983 0.0010519408838421862 1.1310808624467463 0.0012368796716905079']
['59866.44745578154 2.8436671537687337 0.0006508579143606297 0.3258539344429071 0.0002003081819806455 0.0008716178889501022 5.357989462852211e-07 1.7114177229144283 0.0010520387709067518 1.1322494308543054 0.0012370940142838207']
['59866.4474873195 2.8464312301100323 0.0006511306907326187 0.32624590008560306 0.0002003912322470038 0.0008726663472619887 5.36021095199776e-07 1.7134763659958145 0.0010524749592804822 1.1329548641142178 0.0012376084664894587']
['59866.447518857465 2.8422239392210042 0.0006507470347565681 0.3254912454633267 0.00020025998156716264 0.0008706477419937126 5.356700163009376e-07 1.7095128438199931 0.0010517856174745938 1.1327110954010111 0.0012368203945484074']
['59866.44755039543 2.844151543260831 0.0006509040017595226 0.3256657832594161 0.00020030930453960588 0.0008711146084307545 5.358019489878674e-07 1.710429533925505 0.001052044666699611 1.1337220093353262 0.0012371232760875757']
['59866.44758193339 2.846033522208562 0.0006510982442953891 0.3262698502109821 0.00020040558340533404 0.0008727304108055475 5.360594827256139e-07 1.713602154469444 0.0010525503330112082 1.132431367739118 0.0012376554961888802']
['59866.447613471355 2.8470503961781723 0.0006511288676945563 0.32649181827333956 0.00020041013336011734 0.0008733241471808874 5.360716532767837e-07 1.7147679531162794 0.001052574229832549 1.132282443061893 0.0012376919292185673']
['59866.44764500932 2.8408855210748944 0.0006506177945922722 0.32543483187346267 0.00020025242410121228 0.0008704968428057392 5.356498010393703e-07 1.709216553957262 0.0010517459249013252 1.1316689671176325 0.0012367186443110884']
['59866.44767654728 2.8471581743708123 0.0006512017187699376 0.32648043240049573 0.00020040434446568569 0.000873293691417114 5.360561687194083e-07 1.7147081533639483 0.00105254382597524 1.132450021006864 0.0012377044009485938']
['59866.447708085245 2.8413168466493497 0.0006506941651755201 0.325356662270748 0.00020026896296489587 0.0008702877490465532 5.356940403991748e-07 1.7088059993211555 0.0010518327886811759 1.1325108473281942 0.0012368326935920987']
['59866.4477396232 2.841427920316563 0.0006506987267667409 0.3253541439742249 0.00020024002314949864 0.0008702810129231948 5.356166300685422e-07 1.7087927729738706 0.0010516807938524089 1.1326351473426923 0.0012367058361525956']
['59866.44777116117 2.84323053272373 0.0006508643991487955 0.32574854487100097 0.00020031012388122606 0.0008713359852304517 5.358041406226393e-07 1.7108642062552573 0.0010520489699644227 1.132366326468473 0.001237106099444395']
['59866.447802699135 2.842533112294473 0.0006507836129208834 0.32593606735118597 0.0002003474398950051 0.0008718375840483054 5.359039562201086e-07 1.7118490932310186 0.0010522449574317495 1.1306840190634542 0.0012372302781967883']
['59866.44783423709 2.844096431829395 0.0006509408434183206 0.32563012660026547 0.00020028162276155534 0.0008710192313961669 5.357279037473578e-07 1.7102422615560162 0.0010518992792098495 1.1338541702733786 0.0012370190278376302']
['59866.44786577506 2.843054968534866 0.0006508641212724028 0.32538919953647877 0.00020024384995768086 0.0008703747820999271 5.356268662943987e-07 1.7089768883218424 0.0010517008926348784 1.1340780802130237 0.001236809957887103']
['59866.447897313024 2.8415830048538577 0.0006507490315979476 0.32548399547453033 0.0002002510204478723 0.0008706283491944806 5.356460464449595e-07 1.7094747661477434 0.0010517385527724387 1.1321082387061143 0.0012367814218824321']
['59866.44792885098 2.8435521455553214 0.0006508613172788549 0.3255667662844193 0.00020028127738903973 0.000870849750598473 5.357269799197433e-07 1.7099094867879163 0.00105189746527857 1.133642658767405 0.0012369756391253008']
['59866.44796038895 2.8467282182336 0.0006510818960412788 0.3265147013536478 0.00020044144317474784 0.0008733853565144037 5.361554030543591e-07 1.7148881373615956 0.0010527386721362808 1.1318400808720042 0.001237807071867004']
['59866.44799192691 2.845046799323007 0.0006509628182556837 0.32610590561587605 0.00020037403292537834 0.0008722918798357268 5.359750891988597e-07 1.7127411009237188 0.00105238462670892 1.132305698399288 0.0012374433293224603']
['59866.44802346487 2.846656504017327 0.0006511080114043318 0.3262815913825976 0.0002003812308033134 0.0008727618169484096 5.359943426081562e-07 1.7136638202867522 0.0010524224306896713 1.1329926837305746 0.0012375518636136666']
['59866.44805500284 2.846522154734924 0.0006510697965983784 0.3265579967599619 0.00020042491797719037 0.0008735011662274803 5.361112002497064e-07 1.7151155292014806 0.0010526518801323025 1.1314066255334436 0.001237726892649879']
['59866.4480865408 2.8472363086034136 0.0006511700552895982 0.32651344445244046 0.00020043426845238636 0.0008733819944633091 5.361362115832811e-07 1.7148815359897083 0.0010527009897709368 1.1323547726137053 0.0012378213985751612']
['59866.44811807876 2.8418010228938324 0.0006506822332101459 0.3254115454848362 0.00020023932356595545 0.0008704345546736945 5.356147587714161e-07 1.7090942514959886 0.0010516771195690938 1.1327067713978438 0.0012366940334781634']
['59866.44814961672 2.8407229046612414 0.000650622519844953 0.32516865653576 0.00020018773751298593 0.000869784857583478 5.354767726315052e-07 1.707818574242437 0.001051406184416943 1.1329043304188045 0.0012364322172928005']
['59866.44818115469 2.8466813929163886 0.0006511127676857234 0.3264666486526191 0.00020042924272697645 0.0008732568216421745 5.361227684061112e-07 1.7146357597301425 0.001052674594154288 1.132045633186246 0.0012377688142061335']
['59866.44821269265 2.8402764873580915 0.0006505717687389999 0.32554840099167004 0.00020028102192195111 0.000870800625772887 5.357262965777273e-07 1.7098130304184354 0.0010518961235396593 1.130463456939656 0.0012368221703211633']
['59866.44824423061 2.8454774177040854 0.0006510693053646623 0.32609707219477535 0.0002003837262172983 0.0008722682515561876 5.36001017523631e-07 1.7126947069053329 0.0010524355368555583 1.1327827107987525 0.0012375426455781115']
['59866.44827576858 2.846287803960207 0.0006511034410271717 0.32604786636335226 0.00020035091273627598 0.0008721366322066089 5.359132456294336e-07 1.7124362729167664 0.0010522631971443069 1.1338515310434407 0.0012374140483208448']
['59866.44830730654 2.8414698995802468 0.0006506948672271504 0.3256107316764904 0.00020025340807761506 0.0008709673524383569 5.35652433051276e-07 1.710140397460559 0.001051751092844617 1.1313295021196879 0.0012367635875686206']
['59866.4483388445 2.8463794353663254 0.0006510860529208861 0.3263980616564245 0.00020040512362069093 0.0008730733601383729 5.360582528600893e-07 1.7142755339097926 0.0010525479181758978 1.1321039014565328 0.0012376470289886836']
['59866.448370382466 2.8409259049437745 0.0006506423853661468 0.32531246261774716 0.00020022515386569628 0.000870169520588435 5.355768566228719e-07 1.7085738582864871 0.0010516026988744553 1.1323520466572874 0.0012366097807776663']
['59866.448401920425 2.8473230637422633 0.0006511731218126187 0.32644313419345805 0.00020043250036088636 0.0008731939234504164 5.361314821630784e-07 1.7145122594194226 0.001052691703576084 1.1328108043228406 0.0012378151143644634']
['59866.44843345839 2.8431364056265425 0.0006507780282316093 0.32558583942221037 0.00020027971859099962 0.0008709007688196449 5.357228103329641e-07 1.710009660830937 0.0010518892783140737 1.1331267447956055 0.0012369248545732777']
['59866.448464996356 2.8414962318967705 0.0006506948698382683 0.3255814917866508 0.00020026715315154745 0.0008708891394467026 5.356891993783264e-07 1.7099868266105611 0.0010518232833589677 1.1315094052862094 0.0012368249807672386']
['59866.448496534314 2.841888591003779 0.0006507283297022785 0.32564782496213 0.00020029940675323792 0.0008710665722663412 5.357754736664198e-07 1.7103352151372375 0.00105199268252751 1.1315533758665417 0.0012369866463177942']
['59866.44852807228 2.8436979654350996 0.0006508532511563676 0.32604380563728763 0.0002003525272083825 0.0008721257702801261 5.359175641372694e-07 1.7124149455739899 0.001052271676514614 1.1312830198611097 0.001237289632921771']
['59866.448559610246 2.8476461949869942 0.0006511457205072491 0.3267354574602557 0.0002004674575002621 0.0008739758510620401 5.362249880711121e-07 1.7160475706946203 0.001052875301997175 1.131598624292374 0.0012379568453264223']
['59866.448591148204 2.8477311427409617 0.0006512114967885058 0.3266647277579882 0.00020045948449085314 0.000873786658091632 5.362036612835699e-07 1.7156760911659046 0.0010528334269477582 1.1320550515750571 0.001237955830572354']
['59866.44862268617 2.841144037076596 0.000650680352755069 0.3253937422484056 0.00020024641421791692 0.0008703869332773757 5.356337253648517e-07 1.7090007471029707 0.0010517143603882193 1.1321432899736252 0.0012367247136320445']
['59866.44865422413 2.8427972918239766 0.0006507995151963596 0.32548690624071364 0.00020025838920393978 0.0008706361351243338 5.356657569315574e-07 1.7094900537852609 0.0010517772542223728 1.1333072380387157 0.0012368408957822226']
['59866.448685762094 2.8465638736036074 0.0006511592593382816 0.3262018380206672 0.00020037803672811973 0.0008725484868344699 5.359857988626826e-07 1.7132449475875382 0.0010524056550846627 1.1333189260160692 0.0012375645614981698']
['59866.44871730006 2.8426071076605477 0.0006508163942567071 0.3256150458395596 0.00020026142254995908 0.0008709788922766387 5.356738707469033e-07 1.7101630558800398 0.0010517931856615498 1.1324440517805079 0.0012368633248816836']
['59866.44874883802 2.8477761132970776 0.0006512068922314969 0.3264592575647758 0.00020039424486211963 0.0008732370514209126 5.360291535625881e-07 1.7145969409914696 0.0010524907818388637 1.133179172305608 0.0012376620145845905']
['59866.448780375984 2.84670192777254 0.0006510849246930207 0.32665322785751366 0.00020047021144333437 0.0008737558973184288 5.362323545190606e-07 1.7156156925289585 0.001052889765983899 1.1310862352435815 0.0012379371706496844']
['59866.44881191395 2.8464885971449276 0.0006511384731813189 0.32659056124159475 0.00020045323246011739 0.0008735882720799357 5.361869378954025e-07 1.7152865611428296 0.001052800590651877 1.131202036002098 0.0012378894922140022']
['59866.44884345191 2.8436073069131025 0.0006508808362857895 0.32563222315119333 0.00020028756985955289 0.0008710248394036225 5.35743811479179e-07 1.7102532728529063 0.00105193051396824 1.1333540340601962 0.0012370140133650767']
['59866.448874989874 2.8417187547641216 0.0006507355490397579 0.32534118066202167 0.00020023933508329393 0.0008702463377094807 5.356147895788338e-07 1.7087246883509541 0.001051677180059317 1.1329940664131675 0.0012367221376855806']
['59866.44890652783 2.8457711346636154 0.0006510730924662045 0.32621960691321006 0.0002003955973827297 0.0008725960163652507 5.360327713834406e-07 1.7133382716029941 0.0010524978854134963 1.1324328630606213 0.00123759766100837']
['59866.4489380658 2.84156400870697 0.0006506923364460365 0.32546419661629855 0.00020023007239075425 0.0008705753897633014 5.355900130527156e-07 1.7093707805477867 0.0010516285314640455 1.132193228159183 0.0012366580307016273']
['59866.44896960376 2.84664422266437 0.0006511119494919965 0.3260915158451682 0.0002003381796691458 0.000872253389026683 5.358791862920471e-07 1.712665524396892 0.0010521963217917322 1.133978698267478 0.0012373616570604243']
['59866.44900114172 2.847494144197574 0.0006512029605209244 0.3262304905479408 0.00020036545880542416 0.0008726251287058591 5.359521545169544e-07 1.7133954335501094 0.0010523395945663035 1.1340987106474647 0.0012375313806458359']
['59866.44903267969 2.847228499454629 0.0006511659206616106 0.32627598480668873 0.00020038706128449265 0.000872746820069927 5.360099384047996e-07 1.7136343739847097 0.0010524530529647724 1.1335941254699193 0.0012376083730025233']
['59866.44906421765 2.846020469628301 0.0006510044416601211 0.32642248983193467 0.00020040166666814992 0.0008731387024053168 5.360490059510988e-07 1.7144038331509175 0.0010525297619125521 1.1316166364773834 0.0012375886565304723']
['59866.44909575561 2.8392291420768996 0.0006504971051987189 0.32489908366557274 0.000200150870813133 0.0008690637843933307 5.353781588917224e-07 1.7064027503443948 0.001051212556791665 1.1328263917325048 0.0012362015707110157']
['59866.44912729358 2.839882003956717 0.0006505746701174825 0.32534791127449164 0.00020025581008051996 0.000870264341243004 5.356588581039758e-07 1.7087600382063637 0.0010517637084060923 1.1311219657503533 0.0012367110817481206']
['59866.449158831536 2.8469264100774065 0.0006511714449062306 0.3265605541473589 0.00020042194583784703 0.0008735080069139616 5.36103250154445e-07 1.7151289608579776 0.0010526362701567598 1.131797449219429 0.001237767089524844']
['59866.4491903695 2.840628686307789 0.0006506734351301311 0.32543577039877414 0.0002002720524882849 0.0008704993532417482 5.357023044818497e-07 1.709221483186839 0.0010518490151695636 1.13140720312095 0.0012368355872537085']
['59866.44922190747 2.8419212453735163 0.0006507668691120535 0.32586522288292974 0.0002003296401959473 0.0008716480840934534 5.358563442858128e-07 1.7114770109397572 0.0010521514716173702 1.130444234433759 0.0012371419632202694']
['59866.449253445426 2.8424142457997976 0.0006507862267720252 0.32586331059780527 0.00020033423400462756 0.0008716429689736187 5.358686321405873e-07 1.711466967425448 0.0010521755987638003 1.1309472783743497 0.001237172665229123']
['59866.44928498339 2.8411913773877977 0.0006506955477209019 0.32541719950814124 0.00020025302449664187 0.0008704496784679357 5.356514070208901e-07 1.7091239469965402 0.0010517490782386654 1.1320674303912575 0.001236762232363071']
['59866.44931652136 2.846891677746532 0.0006511178019792666 0.32673942085876806 0.0002004571079523627 0.0008739864526496819 5.361973043449446e-07 1.7160683868632778 0.0010528209451279554 1.1308232908832543 0.0012378959304216299']
['59866.449348059316 2.841375229922845 0.0006506725456937171 0.3255304875218506 0.00020026753112843674 0.0008707527095162535 5.356902104184997e-07 1.7097189470685432 0.0010518252685317057 1.1316562828543018 0.0012368149244092008']
['59866.44937959728 2.8443287602504865 0.0006509554268651708 0.32581046402035474 0.00020033866472113934 0.0008715016110908164 5.35880483744525e-07 1.711189411871611 0.001052198869333715 1.1331393483788754 0.0012372814669234988']
['59866.44941113524 2.846027632828682 0.0006510700749565395 0.32614101654662203 0.0002003580551129994 0.0008723857971161433 5.359323505800378e-07 1.7129255070725948 0.0010523007096270977 1.1331021257560874 0.0012374283922658342']
['59866.449442673205 2.8422805533770426 0.0006507397427247048 0.3255511518544675 0.0002002988746829724 0.0008708079839814917 5.357740504460361e-07 1.7098274782272453 0.0010519898880408216 1.1324530751497972 0.0012369902737295695']
['59866.44947421117 2.840566678031144 0.0006506007163190645 0.32534182784221166 0.0002002364727607422 0.0008702480688342927 5.356071332295425e-07 1.708728087406574 0.0010516621468526376 1.13183859062457 0.001236638412470508']
['59866.44950574913 2.846796358305544 0.0006510990041279996 0.32639422460379985 0.00020038215576044996 0.000873063096509934 5.359968167510205e-07 1.7142553813224783 0.0010524272886578254 1.1325409769830654 0.0012375512559438234']
['59866.449537287095 2.8466003733075396 0.0006510698840776134 0.3266445301334724 0.00020045627083602205 0.000873732632011289 5.36195065165053e-07 1.7155700112052124 0.0010528165485085192 1.1310303621023272 0.001237866987509655']
['59866.44956882506 2.8457259215474773 0.0006510368452265955 0.3263659948623521 0.0002004024451624552 0.0008729875855369322 5.360510883244914e-07 1.7141071158736982 0.0010525338506431473 1.131618805673779 0.001237609179261486']
['59866.44960036302 2.8413366771023583 0.0006506598070596509 0.3255103258306383 0.00020028223608042095 0.0008706987795529338 5.357295442974277e-07 1.7096130558331848 0.001051902500422379 1.1317236212691735 0.0012368739042108356']
['59866.449631900985 2.8455367336046153 0.0006510070428800423 0.3261786018756264 0.00020036385401047045 0.0008724863330976355 5.359478618942731e-07 1.7131229090106432 0.0010523311660213784 1.132413824593972 0.0012374211299550897']
['59866.44966343894 2.843503446165877 0.0006508964919488521 0.32551833067680463 0.00020025450512421052 0.0008707201914997582 5.356553675115864e-07 1.7096550980924614 0.0010517568546439628 1.1338483480734154 0.001236874579139649']
['59866.44969497691 2.84721777379516 0.000651135116595057 0.3263433443780437 0.0002003755399030376 0.0008729269983681739 5.359791201727018e-07 1.713988153246028 0.0010523925415075505 1.1332296205491321 0.0012375407070007757']
['59866.449726514875 2.8466748375865807 0.00065113189684472 0.326355369171978 0.00020040865875566626 0.0008729591631647168 5.36067708897162e-07 1.7140513086763551 0.0010525664850612724 1.1326235289102256 0.0012376869364111608']
['59866.44975805283 2.847263237281849 0.0006511593425032816 0.3262738224665903 0.00020037578254447806 0.0008727410360847958 5.359797692077379e-07 1.713623017156462 0.001052393815884864 1.1336402201253872 0.001237554537401084']
['59866.4497895908 2.847039272084437 0.0006511784342713395 0.3260727055186774 0.00020035870915367457 0.0008722030737923606 5.359341000557762e-07 1.7125667306653227 0.0010523041447146773 1.1344725414191141 0.001237488329740431']
['59866.449821128765 2.844047010218042 0.000650917269570199 0.3256096263758433 0.00020025156281121582 0.0008709643958995067 5.356474971980195e-07 1.7101345923101015 0.0010517414013194108 1.1339124179079407 0.0012368723729932855']
['59866.44985266672 2.846936692135161 0.0006510964959627705 0.32657363484264296 0.0002004648013971229 0.0008735429961125084 5.36217883332558e-07 1.715197661988671 0.0010528613518756456 1.13173903014649 0.0012379190899765664']
['59866.44988420469 2.8399556595627717 0.0006505231418754524 0.3250807290483029 0.00020017683311395623 0.0008695496627219243 5.354476047490342e-07 1.7073567702116748 0.0010513489134136357 1.132598889351097 0.0012363312241675133']
['59866.44991574265 2.8425167220335315 0.0006507685784638819 0.3256968399134762 0.00020028409682613533 0.0008711976810359572 5.357345215558862e-07 1.710592646604392 0.0010519122732465093 1.1319240754291395 0.0012369394380172946']
['59866.44994728061 2.8464837336233275 0.0006510598856684205 0.3265604837433739 0.00020041405537380783 0.0008735078185922435 5.360821441652832e-07 1.7151285910891487 0.0010525948286439488 1.1313551425341788 0.0012376731588002385']
['59866.44997881858 2.840586784708682 0.0006506562709616677 0.3250510548013209 0.00020020584463001674 0.0008694702878800805 5.355252068698346e-07 1.7072009180741645 0.0010515012848215167 1.1333858666345176 0.001236530846733329']
['59866.45001035654 2.843951909127833 0.0006509011067472554 0.32578929708770077 0.0002003111683519007 0.0008714449922343127 5.35806934449039e-07 1.711078241006832 0.0010520544556297305 1.1328736681210012 0.0012371300773868408']
['59866.4500418945 2.8424923502804824 0.0006508081758897115 0.3255194656375908 0.00020028948676333337 0.0008707232273757134 5.35748938953332e-07 1.7096610590209602 0.0010519405817401965 1.1328312912595222 0.0012369843448147583']
['59866.45007343247 2.8401130202272578 0.0006505333473399808 0.32529878903712084 0.00020021579224644554 0.0008701329454968981 5.355518154803661e-07 1.7085020432621894 0.0010515535307061216 1.1316109769650684 0.001236510600011933']
['59866.45010497043 2.8431191158982356 0.000650809745552511 0.32555678096734375 0.00020027718591512046 0.0008708230411434997 5.357160357466545e-07 1.709857042895713 0.0010518759764449606 1.1332620730025227 0.0012369302303396757']
['59866.45013650839 2.8442490708887362 0.0006509460648122022 0.32600357808808283 0.00020033751274093115 0.0008720181666951779 5.358774023437774e-07 1.7122036664290066 0.0010521928190174957 1.1320454044597297 0.0012372713961320194']
['59866.45016804635 2.8471334232724246 0.0006511613274954566 0.32646183988119337 0.00020042246046581192 0.0008732439587893577 5.361046267188898e-07 1.7146105035776964 0.0010526389730347266 1.1325229196947282 0.0012377640655541948']
['59866.45019958432 2.8465451355730336 0.0006510937904618153 0.3263728917269154 0.00020042265821699107 0.0008730060337736899 5.361051556781782e-07 1.7141433389018668 0.0010526400116438607 1.1324017966711668 0.001237729420386993']
['59866.45023112228 2.842083304201688 0.0006507239186009723 0.32577102226382804 0.00020031556175240296 0.0008713961094014811 5.358186862373907e-07 1.710982259789013 0.0010520775302122005 1.131101044412675 0.0012370564852975828']
['59866.45026266024 2.844071823094264 0.0006509133451095146 0.32573432547392295 0.00020030103791630479 0.000871297950149229 5.357798368204548e-07 1.7107895245479148 0.0010520012495604243 1.133282298546349 0.001237091270649968']
['59866.45029419821 2.840350128399944 0.0006505665338314106 0.32559781769530116 0.0002003011989420314 0.0008709328091788399 5.357802675438221e-07 1.7100725719291028 0.0010520020952837783 1.1302775564708412 0.001236909545368163']
['59866.45032573617 2.8465891424016667 0.0006510695713536047 0.3269943423020668 0.00020053809727022388 0.0008746683351337343 5.364139404840245e-07 1.717407259989847 0.0010532463091923524 1.1291818824118198 0.0012382323588769107']
['59866.45035727413 2.841296939914498 0.0006507120099229201 0.3257635831508753 0.00020033194908576887 0.0008713762107191508 5.358625202728407e-07 1.7109431888176223 0.0010521635981395423 1.1303537510968757 0.0012371234203214629']
['59866.450388812096 2.8461574094515187 0.0006510618612423566 0.326225508178446 0.0002003770190150244 0.0008726118015002556 5.359830766094091e-07 1.7133692656430988 0.0010524003099528594 1.13278814380842 0.0012375087715055745']
['59866.450420350055 2.8418637822824344 0.0006507183114600345 0.3257882484946865 0.00020031481616785652 0.000871442187381178 5.358166918934233e-07 1.7110727336905804 0.0010520736143269777 1.130791048591854 0.001237050205461536']
['59866.45045188802 2.841442345122104 0.0006506962438331343 0.32506524324611497 0.0002002078937685835 0.0008695082401678747 5.35530688055246e-07 1.7072754372169905 0.0010515120471039049 1.1341669079051135 0.0012365610324376207']
['59866.450483425986 2.8409051959506746 0.0006506647654129717 0.32545761579978155 0.000200273804515486 0.0008705577869149273 5.357069909320932e-07 1.7093362174358275 0.0010518582169930988 1.131568978514847 0.0012368388519147587']
['59866.450514963944 2.8471191410841925 0.0006511437130708791 0.3264425053064344 0.00020041842986165103 0.0008731922412575011 5.360938453646738e-07 1.7145089564413574 0.001052617803895226 1.1326101846428351 0.0012377367959905449']
['59866.45054650191 2.840080109917535 0.0006506056868971308 0.32512549758122966 0.00020022334878677808 0.0008696694128615927 5.355720282660232e-07 1.7075918990610803 0.001051593218417952 1.1324882108564547 0.001236582410050181']
['59866.450578039876 2.847150996637125 0.0006511117984549792 0.32644003549063527 0.0002004132496897037 0.000873185634813922 5.36079989062632e-07 1.7144959847197232 0.0010525905971097884 1.1326550119174017 0.001237696868870249']
['59866.450609577834 2.841404432741329 0.0006506996932554642 0.3254166321257642 0.00020024050593376528 0.0008704481607921386 5.356179214551385e-07 1.709120967047081 0.0010516833294840614 1.1322834656942478 0.0012367085009481564']
['59866.4506411158 2.846372309911936 0.0006511265610830347 0.3262508916011744 0.00020037860771053407 0.0008726796989321854 5.359873261681223e-07 1.7135025819389413 0.0010524086539418808 1.1328697279729945 0.0012375499074540712']
['59866.45067265376 2.8405359722254166 0.0006506456774128162 0.32519669128642564 0.0002001915456751295 0.0008698598469809031 5.354869589815765e-07 1.7079658155799669 0.0010514261852685373 1.1325701566454498 0.0012364614108836276']
['59866.450704191724 2.8400226230553267 0.0006505498526127886 0.32555381850312703 0.00020026511950089714 0.0008708151169279733 5.356837596211245e-07 1.7098414837349112 0.0010518126024206783 1.1301811393204155 0.0012367396093541602']
['59866.45073572969 2.8394864897948424 0.0006505279127933342 0.3252291593589921 0.00020021888232731624 0.0008699466949513505 5.355600810542338e-07 1.7081363411711772 0.0010515697601224594 1.1313501486236652 0.0012365215427671524']
['59866.45076726765 2.84227901653261 0.0006508003158564813 0.32526774289128946 0.00020020594296213875 0.0008700499009998726 5.355254698957721e-07 1.7083389857735791 0.0010515018012717374 1.1339400307590308 0.0012366070876380275']
['59866.450798805614 2.8402299372666135 0.0006506252688957536 0.32514134087292634 0.00020020922774872455 0.0008697117916546747 5.355342562826987e-07 1.7076751096267142 0.0010515190533021248 1.1325548276398993 0.0012365296437947084']
['59866.45083034358 2.844134690894399 0.0006509476638697912 0.32610936524432665 0.00020038350534385633 0.0008723011339024357 5.360004267152262e-07 1.7127592712412116 0.0010524343768059683 1.1313754196531873 0.0012374776679118316']
['59866.45086188154 2.8443912336712778 0.0006509884103646469 0.3257530033176591 0.00020031487473559873 0.000871347911009009 5.358168485546951e-07 1.7108876224666971 0.0010520739219306656 1.1335036112045807 0.0012371925669173987']
['59866.450893419504 2.8461819056914193 0.000651043770754691 0.32649206604259673 0.00020042517669993342 0.0008733248099321818 5.361118923001844e-07 1.7147692544254032 0.0010526532389702387 1.131412651266016 0.0012377143583852542']
['59866.45092495746 2.8398509310429327 0.0006505313287797113 0.3253497815151296 0.00020022474259527503 0.0008702693438991772 5.355757565267293e-07 1.7087698608987902 0.0010516005388407303 1.1310810701441425 0.001236549514986768']
['59866.45095649543 2.8463381203910263 0.0006510754409366371 0.3264615901886809 0.00020043325641455547 0.0008732432908935995 5.361335045106192e-07 1.7146091921674418 0.0010526956744461948 1.1317289282235845 0.0012377671076533605']
['59866.45098803339 2.847255389842223 0.0006511595548705001 0.3266267265887953 0.0002004412396132475 0.0008736850097904502 5.361548585531994e-07 1.715476505193253 0.0010527376030107537 1.13177888464897 0.0012378470126360426']
['59866.45101957135 2.841298661555479 0.000650701547189626 0.3251547010393412 0.0002002138484516454 0.0008697475284030015 5.35546616076151e-07 1.7077452785679685 0.0010515433216998185 1.1335533829875104 0.0012365904176106417']
['59866.45105110932 2.841310500263908 0.000650722366509384 0.3252753376632507 0.00020023029604616718 0.0008700702160502808 5.355906113025395e-07 1.708378874281779 0.0010516297061248278 1.1329316259821292 0.0012366748307779877']
['59866.45108264728 2.847010336011487 0.0006511243754433946 0.3268505380961053 0.0002005049902196662 0.0008742836771469078 5.363253833286052e-07 1.7166519857988725 0.0010530724276242975 1.1303583502126147 0.001238113278387354']
['59866.45111418524 2.83952264213098 0.0006505643197697241 0.32503561422828553 0.00020017896858984873 0.0008694289863082694 5.354533168758266e-07 1.7071198226275501 0.0010513601291483653 1.13240281950343 0.0012363624287887072']
['59866.45114572321 2.846711110480311 0.0006510249066107841 0.32658249745214696 0.00020044105646825283 0.0008735667024673194 5.361543686635994e-07 1.7152442093074947 0.0010527366411147733 1.1314669011728165 0.0012377753691899009']
['59866.451177261166 2.843413891249158 0.000650846067891209 0.3255482006533408 0.00020027350509833696 0.0008708000898933005 5.357061900292476e-07 1.7098119782213277 0.0010518566444240388 1.1336019130278303 0.0012369329021852588']
['59866.45120879913 2.8459459600333403 0.0006510128262126369 0.32620077794644337 0.0002003474155820073 0.0008725456512705577 5.359038911859274e-07 1.713239379970816 0.0010522448297374334 1.1327065800625242 0.0012373507512433673']
['59866.4512403371 2.846387792309839 0.0006510417410692574 0.3265132908089754 0.00020044089502260597 0.0008733815834865539 5.361539368169987e-07 1.7148807290387365 0.0010527357931859557 1.1315070632711026 0.0012377835024225171']
['59866.451271875056 2.8435947771179615 0.0006508896038315435 0.32549409376748295 0.0002002533309975498 0.0008706553608455764 5.356522268718911e-07 1.7095278034006458 0.0010517506880123413 1.1340669737173157 0.0012368657106211721']
['59866.45130341302 2.8402393774181585 0.0006505729547776446 0.32546523608151945 0.00020027588506712316 0.0008705781702007481 5.357125561434783e-07 1.709376239923947 0.0010518691442601006 1.1308631374942115 0.0012367998488577656']
['59866.45133495099 2.8421249662419417 0.0006507470900729729 0.3257607281338179 0.00020030419097257242 0.0008713685739111291 5.35788270845511e-07 1.7109281939801362 0.0010520178097298972 1.1311967722618055 0.001237017884764538']
['59866.451366488945 2.8403139009357576 0.0006505667079064772 0.3252092187703629 0.000200209266541674 0.0008698933564093589 5.355343600489115e-07 1.708031611188881 0.0010515192570466072 1.1322822897468767 0.0012364990050040964']
['59866.45139802691 2.845969025989058 0.000651055184163985 0.32620178284989587 0.00020039530123827415 0.0008725483392596636 5.360319792346344e-07 1.7132446578250835 0.0010524963300329523 1.1327243681639747 0.001237586917173753']
['59866.45142956487 2.846892382339779 0.0006511234209940205 0.3262531784944535 0.00020037377800388484 0.0008726858160812558 5.359744073162414e-07 1.7135145929330542 0.0010523832878355298 1.1333777894067247 0.0012375266841092665']
['59866.451461102835 2.8400885907124005 0.0006505429771483458 0.3252160561119421 0.00020022186361727719 0.000869911645429694 5.35568055626235e-07 1.7080675215963348 0.0010515854181579686 1.1320210691160657 0.0012365427840554093']
['59866.4514926408 2.83966485338389 0.0006505126012779392 0.32531482984805454 0.00020022257765969044 0.0008701758526288528 5.355699655990021e-07 1.708586291218774 0.001051589168380727 1.1310785621651163 0.0012365299929549061']
['59866.45152417876 2.850741532783042 0.0006517364832516185 0.32628148528149215 0.000200363988831038 0.0008727615331414281 5.359482225221682e-07 1.713663263033047 0.0010523318741125947 1.1370782697499948 0.001237805645840458']
['59866.451555716725 2.843246734939225 0.0006508163779053979 0.3257145050844549 0.00020029587481580017 0.0008712449331247273 5.357660261823541e-07 1.7106854258637336 0.0010519741324359253 1.1325613090754916 0.001237017191903257']
['59866.45158725469 2.840902677590229 0.0006506686865386811 0.32555715340025265 0.00020029145538144722 0.0008708240373542295 5.357542047567584e-07 1.709858998950907 0.0010519509211210463 1.131043678639322 0.001236919754911122']
['59866.45161879265 2.8475522855105595 0.0006511956993549335 0.32740753625321467 0.0002007399971226357 0.000875773576474589 5.3695399694656e-07 1.7195773962878924 0.0010543067075768683 1.127974889222667 0.001239200739388069']
['59866.451650330615 2.8464272704939866 0.0006510948831489933 0.3263808030449893 0.00020041569491144 0.0008730271955447458 5.360865297202167e-07 1.7141848899421708 0.0010526034396609245 1.1322423805518158 0.001237698892319457']
['59866.45168186857 2.8439460411916544 0.0006508626735272122 0.32580822869404213 0.00020030895193767165 0.0008714956318768319 5.358010058224762e-07 1.711177671712406 0.0010520428147986957 1.1327683694792483 0.0012370999571419251']
['59866.45171340654 2.8466328694451573 0.0006510752741309271 0.32642028692794794 0.00020040560700995257 0.0008731328099169362 5.360595458649705e-07 1.7143922632770376 0.001052550456985045 1.1322406061681196 0.0012376435177724194']
['59866.451744944505 2.8396740430080047 0.0006505373356235889 0.32544816044701447 0.00020024003850230163 0.00087053249504717 5.356166711353403e-07 1.7092865569696138 0.0010516808744868785 1.130387486038391 0.0012366209956173814']
['59866.45177648246 2.845695947714346 0.0006510308574833873 0.3262671736791117 0.00020038803169306624 0.000872723251422732 5.360125341244853e-07 1.713588097054158 0.001052458149648457 1.1321078506601883 0.001237541649463568']
['59866.45180802043 2.842510645337512 0.0006507850219029215 0.3256151375155842 0.00020026837825146682 0.000870979137498361 5.356924763650147e-07 1.7101635373717659 0.0010518297177072838 1.1323471079657463 0.0012368778839422145']
['59866.451839558395 2.8481474373837665 0.000651218198452314 0.3270733886099684 0.00020053235578631156 0.0008748797739679477 5.363985827437668e-07 1.7178224191700022 0.0010532161543398717 1.1303250182137643 0.0012382848661588116']
['59866.45187109635 2.843237583601037 0.0006508175537713092 0.3256870485804128 0.00020030059745555908 0.000871171490463579 5.357786586439016e-07 1.7105412215357816 0.0010519989362161718 1.1326963620652555 0.0012370389040352887']
['59866.45190263432 2.8432499521036743 0.0006508346808019454 0.32557495242554324 0.00020029472748493696 0.0008708716474862835 5.357629572180139e-07 1.7099524812265927 0.0010519681065385344 1.1332974708770815 0.001237021697024284']
['59866.45193417228 2.845932965183624 0.0006510567662650725 0.32637722554317994 0.00020041872073906826 0.000873017626181773 5.360946234248215e-07 1.7141661005419115 0.0010526193316127536 1.1317668646417125 0.0012376923568417208']
['59866.45196571024 2.8473984781998545 0.0006511552077479646 0.32637298278725635 0.0002004122535817022 0.0008730062773485366 5.360773246002405e-07 1.71414381715996 0.0010525853654501165 1.1332546610398946 0.0012377152564855337']
['59866.45199724821 2.8468688424069297 0.0006511191405153119 0.32622765236409945 0.00020038101559716797 0.0008726175369245524 5.359937669590497e-07 1.7133805271223712 0.001052421300405294 1.1334883152845585 0.0012375567577659493']
['59866.45202878617 2.8436994148159416 0.0006508820980281667 0.3255450824859469 0.00020027170659970466 0.0008707917491915505 5.357013792738279e-07 1.709795601291738 0.0010518471985278607 1.1339038135242037 0.0012369438283869065']
['59866.45206032413 2.843362769113003 0.0006508742229173235 0.32524890311904986 0.00020022174844745553 0.000869999507001912 5.355677475615894e-07 1.708240037389968 0.0010515848132744514 1.135122731723035 0.0012367165696179916']
['59866.4520918621 2.84334593799072 0.0006508521485349791 0.3257261100247295 0.0002003110401704133 0.000871275974866055 5.358065915798402e-07 1.7107463761803023 0.0010520537824076329 1.1325995618104177 0.001237103746793617']
['59866.45212340006 2.8475821621959003 0.0006511705862393364 0.32661322715234287 0.00020044349697128166 0.0008736489005124608 5.361608966992408e-07 1.7154056047917168 0.0010527494588827818 1.1321765574041835 0.0012378628985316876']
['59866.45215493802 2.840601087645795 0.0006506192450526827 0.3253471412241733 0.0002002160184973148 0.0008702622814562041 5.355524206727059e-07 1.7087559938244397 0.0010515547189985021 1.1318450938213553 0.0012365568038229953']
['59866.45218647598 2.8435202095522376 0.0006508686697698187 0.3255288569921764 0.00020025765364825652 0.0008707483480564634 5.356637894135253e-07 1.709710383362271 0.0010517733910097508 1.1338098261899665 0.0012368739997768905']
['59866.45221801395 2.844053312349573 0.0006509384872812647 0.3257122627226369 0.000200298267029859 0.0008712389350916596 5.357724250511339e-07 1.7106736487533452 0.001051986696585394 1.1333796635962279 0.001237092124304682']
['59866.45224955191 2.841123185747918 0.0006506448112662954 0.3253120703344834 0.00020023088667074488 0.0008701684712805271 5.355921911482714e-07 1.7085717979752282 0.0010516328081446684 1.1325513877726898 0.0012366366619156954']
['59866.45228108987 2.842314899678125 0.0006508044557904211 0.3252643570435341 0.00020022449376285792 0.000870040844287153 5.35575090931617e-07 1.708321202959738 0.0010515992319477833 1.1339936967183868 0.0012366921137897799']
['59866.45231262784 2.8466675461680966 0.0006511141164180906 0.3265194855685606 0.00020044484938302372 0.0008733981536816673 5.361645142288853e-07 1.7149132645407594 0.001052756561885629 1.1317542816273372 0.0012378392347926934']
['59866.4523441658 2.846246227684871 0.0006510883539511341 0.3262973965861538 0.00020037935341674329 0.0008728040938605533 5.359893208375221e-07 1.7137468308096315 0.0010524125704660888 1.1324993968752393 0.0012375331361728613']
['59866.45237570376 2.8475274579387655 0.0006511732502607021 0.3263236721176341 0.00020039616852162492 0.0008728743775700903 5.360342991074468e-07 1.7138848325505993 0.0010525008850925679 1.1336426253881662 0.0012376529056951815']
['59866.452407241726 2.8441955770434886 0.0006509242681135181 0.325595942112093 0.000200275306803079 0.0008709277922319699 5.357110093606038e-07 1.710062721176959 0.0010518661071590287 1.1341328558665296 0.0012369820977722386']
['59866.452438779685 2.8408916770360464 0.0006506422957526307 0.3255674365940667 0.00020028891376290813 0.0008708515435916458 5.357474062499694e-07 1.7099130073217788 0.0010519375722841814 1.1309786697142676 0.0012368945197571988']
['59866.45247031765 2.8477882624895345 0.0006512367430267355 0.3265142444129028 0.00020044081581841112 0.0008733841342559454 5.36153724955837e-07 1.7148857374627249 0.0010527353771975375 1.1329025250268097 0.0012378857256917183']
['59866.452501855616 2.843465993133475 0.000650861387689611 0.32582416522831414 0.00020033262161366517 0.0008715382600819605 5.358643191995476e-07 1.7112613719974483 0.0010521671303238716 1.1322046211360268 0.0012372050016546236']
['59866.452533393574 2.840618376763077 0.0006505822257055952 0.32517247971616303 0.00020022776747721712 0.0008697950841054861 5.355838477017436e-07 1.7078386539714445 0.0010516164258257202 1.1327797227916323 0.0012365898024286424']
['59866.45256493154 2.840426645511762 0.0006505978104101662 0.32546862449278 0.00020027624411398054 0.0008705872337705187 5.357135165482204e-07 1.7093940362015758 0.001051871030010402 1.1310326093101863 0.0012368145271970435']
['59866.452596469506 2.839631119963505 0.000650508653339216 0.3252103514923741 0.00020020688116019548 0.0008698963862968753 5.355279794564162e-07 1.7080375603591078 0.0010515067287825393 1.1315935596043973 0.0012364578071022711']
['59866.452628007464 2.8411091468181304 0.000650635041881088 0.3254433301755131 0.00020025125100347617 0.0008705195746843814 5.356466631519177e-07 1.7092611878966024 0.0010517397636737194 1.131847958921528 0.0012367224782529249']
['59866.45265954543 2.842950937309409 0.0006508172427497006 0.32563473723875286 0.0002002771226552176 0.0008710315642685379 5.357158665344487e-07 1.7102664770942904 0.0010518756441975714 1.1326844602151185 0.0012369338924600533']
['59866.45269108339 2.846457690506417 0.0006510749894048128 0.32663439605228295 0.00020043542946644133 0.000873705524631205 5.361393171484214e-07 1.7155167859888811 0.0010527070875338306 1.1309409045175358 0.0012377765767586804']
['59866.452722621354 2.841974345097634 0.0006507259551628689 0.3257658876325152 0.0002003277250642958 0.0008713823749148526 5.3585122155188e-07 1.71095529218758 0.0010521414131528142 1.1310190529100541 0.0012371118874191732']
['59866.45275415932 2.8410709444985196 0.0006506485182567485 0.3253075737815791 0.0002002305349109398 0.0008701564435726011 5.355912502354687e-07 1.7085481816259407 0.0010516309606667007 1.132522762872579 0.0012366370412301541']
['59866.45278569728 2.84291565753506 0.0006507929875328511 0.32595280830556495 0.00020035057194532787 0.0008718823639750532 5.359123340569301e-07 1.7119370184115807 0.0010522614072758817 1.130978639123479 0.0012372491995811324']
['59866.452817235244 2.8424768799975144 0.0006508315331572456 0.3257487464979075 0.00020033654585342565 0.0008713365245568188 5.358748160425015e-07 1.7108652652201026 0.0010521877408268155 1.1316116147774118 0.0012372068244630922']
['59866.45284877321 2.845994055635515 0.000651062018184659 0.3264545873449958 0.00020042643102370948 0.0008732245591761509 5.361152474569776e-07 1.7145724125262385 0.0010526598268051969 1.1314216431092765 0.0012377295595129931']
['59866.45288031117 2.843946839104654 0.0006508796887030599 0.3261197277594702 0.00020037214866409382 0.0008723288523143341 5.359700490392378e-07 1.7128136962157048 0.001052374730378644 1.1311331428889493 0.0012373911840261817']
['59866.452911849134 2.846977898517292 0.0006511322480986524 0.3264313919460571 0.00020043146747639504 0.0008731625144299647 5.361287193282475e-07 1.7144505879519805 0.0010526862787625792 1.1325273105653115 0.0012377889989852921']
['59866.45294338709 2.846723183487864 0.0006510680246234825 0.32652838988449606 0.0002004234997624865 0.0008734219715958855 5.361074067054965e-07 1.714960030905967 0.0010526444315256645 1.131763152581897 0.0012377196257267286']
['59866.45297492506 2.844360228703751 0.0006509266786641022 0.325723555977151 0.0002003001236521134 0.000871269143113164 5.357773912798607e-07 1.710732962064869 0.0010519964477526966 1.133627266638882 0.0012370942029938429']
['59866.45300646302 2.8416294036459937 0.0006507039009295746 0.3253840357905263 0.00020024318792047108 0.0008703609697353354 5.356250954289459e-07 1.7089497678073862 0.0010516974155486928 1.1326796358386075 0.0012367226934752857']
['59866.45303800098 2.8409530340957856 0.0006506483080482498 0.3254494512845189 0.00020026676414639506 0.0008705359478735492 5.356881588389502e-07 1.7092933365783558 0.00105182124026468 1.1316596975174298 0.0012367987476699595']
['59866.45306953895 2.846557095536345 0.0006511205095210141 0.326428090722066 0.00020042036710366543 0.0008731536840750668 5.360990272410192e-07 1.714433249590683 0.0010526279784856378 1.1321238459456617 0.0012377332422657417']
['59866.45310107691 2.8576490231124794 0.000652724402550812 0.32634557867890734 0.00020039531254809062 0.0008729329748392127 5.36032009486957e-07 1.7139998880194716 0.001052496389433249 1.1436491350930078 0.001238465904034237']
['59866.45313261487 2.841431365859538 0.0006507325789478848 0.3254618941595583 0.00020026257502238454 0.0008705692309839491 5.356769534642695e-07 1.7093586878128064 0.001051799238562944 1.1320726780467314 0.0012368243721506114']
['59866.45316415284 2.843364534472048 0.0006508520821523807 0.32563725811523625 0.000200271901638052 0.0008710383072929624 5.357019009766358e-07 1.7102797169917872 0.0010518482228889286 1.133084817480261 0.001236928905328308']
['59866.453195690796 2.8407775263600996 0.0006506608583303162 0.3252564560846296 0.00020022645779103733 0.0008700197102255594 5.355803444575518e-07 1.7082797063268365 0.0010516095472218347 1.1324978200332632 0.0012366253241670477']
['59866.45322722876 2.8457081235095067 0.0006510610784759637 0.3260734293205737 0.0002003381113593291 0.0008722050098705054 5.358790035719633e-07 1.7125705321458704 0.0010521959630216866 1.1331375913636363 0.0012373345838961342']
['59866.45325876673 2.8416070416945054 0.0006507508314721297 0.3255905733543383 0.00020028508063522248 0.0008709134314868451 5.357371531202437e-07 1.710034523919844 0.0010519174403110425 1.1315725177746614 0.0012369344953926233']
['59866.453290304686 2.839971196412324 0.0006505823915194141 0.3251031047242102 0.00020021865824618144 0.0008696095148131121 5.35559481665658e-07 1.707474289517911 0.001051568583225743 1.132496906894413 0.001236549203785485']
['59866.45332184265 2.840730151304196 0.0006506028295865361 0.32553906222925055 0.00020027788889203168 0.0008707756457695017 5.357179161206091e-07 1.7097639822964843 0.0010518796685505866 1.1309661690077117 0.0012368245142202264']
['59866.45335338062 2.8428198239311917 0.000650780205255271 0.326086441680068 0.0002003838107370128 0.0008722398162794937 5.360012436031328e-07 1.712638874370105 0.0010524359807616219 1.1301809495610866 0.0012373909524292512']
['59866.453384918575 2.8415213292015458 0.0006507177938234035 0.32536444848073387 0.0002002696340171431 0.0008703085761693633 5.356958353787079e-07 1.7088468932811653 0.0010518363131152475 1.1326744359203804 0.0012368481219560768']
['59866.45341645654 2.84179847734185 0.0006507575051261316 0.32527107685191303 0.000200240033055876 0.0008700588189211048 5.356166565668435e-07 1.7083564960709718 0.0010516808458817019 1.133441981270878 0.0012367368079233508']
['59866.4534479945 2.8440347251604017 0.0006509714782107704 0.32580279193957173 0.00020030728087830555 0.0008714810892491287 5.357965359509078e-07 1.7111491173296836 0.0010520340382263948 1.1328856078307181 0.0012371497415555042']
['59866.453479532465 2.845608670901387 0.0006510180960344449 0.3265229907683768 0.00020043864635452385 0.0008734075296459913 5.361479219154753e-07 1.71493167420366 0.0010527239829544322 1.1306769966977268 0.0012377610212200728']
['59866.45351107043 2.8467030334034273 0.000651157764088713 0.32638622690319835 0.00020040074306151623 0.0008730417036765879 5.360465354206581e-07 1.7142133765924286 0.0010525249110373753 1.1324896568109988 0.0012376651898180085']
['59866.45354260839 2.846434020022202 0.0006510399208098784 0.32647761024781774 0.00020041958808296432 0.0008732861425171331 5.360969434595848e-07 1.7146933311334966 0.001052623886990359 1.1317406888887054 0.0012376873700376944']
['59866.453574146355 2.843127945288673 0.000650802703447275 0.3257266501997906 0.00020030489641013164 0.0008712774197657373 5.357901578013864e-07 1.7107492132341942 0.0010520215147590947 1.132378732054479 0.0012370502925630395']
['59866.45360568431 2.8434215711287116 0.0006508701222703449 0.32584978756176347 0.00020032347596082403 0.0008716067965697253 5.358398557397582e-07 1.711395943076489 0.0010521190964328994 1.1320256280522227 0.0012371687472382232']
['59866.45363722228 2.8421858264594793 0.0006507486789599175 0.3256734449927963 0.00020028661137373808 0.000871135102594454 5.357412476513587e-07 1.7104697741218295 0.0010519254799040867 1.1317160523376497 0.0012369402000256605']
['59866.453668760245 2.840407530658348 0.0006506148749296927 0.3250861627161322 0.00020019240745459092 0.0008695641970932547 5.35489264132184e-07 1.7073853083830475 0.001051430711421171 1.1330222222753004 0.0012364490512752273']
['59866.4537002982 2.8466240319991183 0.0006511061741103669 0.32634153513192776 0.00020041903549073865 0.0008729221588646006 5.360954653455641e-07 1.7139786509029822 0.0010526209847202663 1.132645381096136 0.0012377197531905607']
['59866.45373183617 2.8442422416404884 0.0006509141845724093 0.32620646963098116 0.0002004126685747611 0.0008725608758038133 5.360784346539661e-07 1.7132692732719599 0.00105258754503551 1.1309729683685286 0.0012375903262556015']
['59866.453763374135 2.8404738775283827 0.0006506209940224048 0.32529982983315847 0.00020022614051666947 0.0008701357294941106 5.355794957889138e-07 1.7085075096279334 0.0010516078808648608 1.1319663679004492 0.0012366029326181405']
['59866.45379491209 2.8439036944686613 0.0006508647408507112 0.3256439582132704 0.0002002735370346022 0.0008710562292042454 5.35706275454701e-07 1.7103149065823027 0.0010518568121565242 1.1335887878863586 0.0012369428702097558']
['59866.45382645006 2.8409832083858273 0.000650666455675288 0.32544570438952813 0.00020026918072039266 0.0008705259254053302 5.356946228674723e-07 1.709273657508026 0.0010518339323550036 1.1317095508778012 0.0012368190885470808']
['59866.45385798802 2.8400782922535828 0.0006505478285306695 0.3253526843157825 0.00020025788792733717 0.0008702771085222481 5.35664416080311e-07 1.7087851067005386 0.001051774621467107 1.1312931855530441 0.0012367062430376286']
['59866.45388952598 2.8464775410028134 0.0006510753231866333 0.3262642944022287 0.00020038111014850042 0.000872715549722758 5.359940198718554e-07 1.7135729748016215 0.0010524217969984267 1.1329045662011918 0.0012375341269072043']
['59866.45392106395 2.8462552529240357 0.0006510579325128483 0.3266759742006684 0.00020046094557869462 0.0008738167408974261 5.362075695079777e-07 1.715735158616956 0.0010528411007284383 1.1305200943070797 0.0012378815835414041']
['59866.45395260191 2.841265844426573 0.0006506228698700575 0.32584389411550824 0.00020032445344870942 0.0008715910323495006 5.35842470395704e-07 1.7113649901024592 0.0010521242302978437 1.1299008543241138 0.001237043052920059']
['59866.45398413987 2.8438821109599877 0.0006508841967458838 0.3260755250492513 0.0002003875811429719 0.000872210615678546 5.36011328960206e-07 1.7125815391242192 0.0010524557833139281 1.1313005718357685 0.0012374624896959376']
['59866.45401567784 2.840472708062094 0.0006506020369310269 0.32531185816313446 0.00020023464490639568 0.0008701679037491159 5.356022439513156e-07 1.7085706836299082 0.0010516525467772883 1.1319020244321858 0.0012366309431685583']
['59866.4540472158 2.8432614907910128 0.0006508434173961885 0.3258150583560004 0.0002003475380952448 0.0008715139003551564 5.359042188932776e-07 1.7112135417857166 0.001052245473189311 1.1320479490052962 0.00123726217505238']
['59866.45407875376 2.8420305894296805 0.0006507305366056411 0.3254570057027024 0.0002002595470357873 0.0008705561549827272 5.35668853984697e-07 1.7093330131444457 0.0010517833352719922 1.1326975762852347 0.0012368097734198828']
['59866.45411029172 2.8470766487430565 0.0006511472158166213 0.32653815801515157 0.00020043355261339964 0.0008734481001047694 5.361342968049081e-07 1.7150113341131912 0.0010526972301123931 1.1320653146298654 0.0012378061863442284']
['59866.45414182969 2.8434135081270893 0.0006508667495326415 0.32540560865021295 0.00020023711322024432 0.000870418674395096 5.356088463773679e-07 1.7090630706418748 0.001051665510610527 1.1343504374852145 0.0012367812546505087']
['59866.45417336765 2.8418740362952972 0.0006507389212945518 0.32533417267830483 0.00020023392219984824 0.0008702275922431002 5.356003108030899e-07 1.708687881713786 0.0010516487510496232 1.1331861545815112 0.0012366997369094202']
['59866.45420490561 2.846777225918406 0.0006511652579519813 0.3262238714595388 0.00020038731644999599 0.0008726074234850534 5.360106209401132e-07 1.713360669430351 0.0010524543931197269 1.1334165564880552 0.001237609163977337']
['59866.45423644358 2.841021525817088 0.0006506500057797835 0.3254186305193104 0.0002002488063347296 0.000870453506241065 5.356401239735103e-07 1.7091314628115044 0.0010517269240269413 1.1318900630055837 0.0012367194317000132']
['59866.45426798154 2.8477559612648946 0.0006511676312068791 0.32656668087705815 0.00020043081324637137 0.0008735243951377704 5.361269693460259e-07 1.7151611390601793 0.001052682842680522 1.1325948222047153 0.0012378046902502523']
['59866.4542995195 2.84209056082333 0.0006507577365344741 0.32563421949583266 0.00020029390743818906 0.0008710301793719833 5.357607636971149e-07 1.710263757856264 0.0010519637995703207 1.1318268029670657 0.0012369775532587073']
['59866.454331057466 2.8415666258603194 0.0006506744581751418 0.3256420180473172 0.00020027563772640448 0.0008710510395067349 5.357118945384698e-07 1.7103047166350693 0.0010518678452017044 1.13126190922525 0.0012368521392190706']
['59866.454362595425 2.8435048613387166 0.0006508785267394868 0.3256458797841351 0.0002002942907651729 0.0008710613691622558 5.357617890481115e-07 1.710324998866256 0.0010519658128422947 1.1331798624724605 0.0012370428157341665']
['59866.45439413339 2.84687914896873 0.0006511805689667258 0.32624083927798775 0.00020036654533527005 0.0008726528102443751 5.359550608462954e-07 1.7134497861238853 0.0010523453011306201 1.1334293628448449 0.001237524450753004']
['59866.454425671356 2.842986486716666 0.0006507820660074505 0.32570325294962316 0.00020031465560331254 0.0008712148350931507 5.358162624036609e-07 1.7106263285169283 0.0010520727710258012 1.1323601581997376 0.0012370830259003773']
['59866.454457209315 2.8480971114563656 0.0006512576120453588 0.32637360440205065 0.0002003900428224407 0.000873007940089162 5.360179136401349e-07 1.7141470819435436 0.001052468712302735 1.133950029512822 0.0012376699348466053']
['59866.45448874728 2.8467622247543405 0.0006511575606319225 0.3261691098376297 0.0002003748484310627 0.0008724609431015482 5.359772705729906e-07 1.7130730558699039 0.0010523889098270102 1.1336891688844366 0.0012375494278189453']
['59866.454520285246 2.845408213314881 0.0006509749475098392 0.32615337451871607 0.000200371532343706 0.0008724188531219477 5.359684004604773e-07 1.7129904123882147 0.0010523714934018173 1.132417800926666 0.0012374385408618115']
['59866.454551823204 2.8471455977143014 0.0006511440952054881 0.32642424712675977 0.00020043028766207212 0.0008731434029457855 5.361255634747782e-07 1.7144130626405452 0.001052680082258782 1.1327325350737563 0.0012377899613041504']
['59866.45458336117 2.847118240722292 0.0006511402872370821 0.3264189091162458 0.0002004228573360134 0.0008731291244456246 5.361056882962735e-07 1.7143850268710392 0.0010526410574370453 1.1327332138512527 0.0012377547695183286']
['59866.45461489913 2.840610140391819 0.0006506243468732487 0.32506133990267927 0.0002002048716650261 0.0008694977992199357 5.355226043120578e-07 1.7072549364636518 0.0010514961747112716 1.1333552039281671 0.0012365097032278713']
['59866.454646437094 2.84377468938852 0.0006508913072940056 0.32591227941431367 0.00020035127022255606 0.0008717739543384032 5.359142018598296e-07 1.711724156587782 0.001052265074698299 1.1320505328007378 0.0012373040375512868']
['59866.45467797506 2.8460260649584503 0.0006510425353043366 0.32628355561280115 0.00020037894581471555 0.0008727670710147334 5.359882305538662e-07 1.7136741366218549 0.0010524104296991364 1.1323519283365955 0.0012375072102072857']
['59866.45470951302 2.843792383528222 0.0006509292826645842 0.3258699105503661 0.0002003204436402585 0.0008716606230084798 5.358317446673709e-07 1.711501631041839 0.0010521031703795089 1.1322907524863832 0.0012371863287932194']
['59866.454741050984 2.8477466082826894 0.0006512409564447944 0.32670647914199374 0.00020047701097702133 0.0008738983377411347 5.362505424080859e-07 1.7158953736449254 0.0010529254778204903 1.131851234637764 0.001238049613381725']
['59866.45477258895 2.843907120840838 0.0006508819907385017 0.3259378509016734 0.00020034043252046098 0.0008718423548193361 5.358852123831877e-07 1.7118584606180325 0.0010522081539940178 1.1320486602228055 0.001237250728510278']
['59866.45480412691 2.846442037394673 0.0006510720649900861 0.32631667616506 0.0002003971139135842 0.0008728556642854886 5.360368279108666e-07 1.713848089102206 0.0010525058503864718 1.1325939482924667 0.0012376038941875566']
['59866.454835664874 2.8397156854470174 0.0006505328196129865 0.32537112746347185 0.00020025875623184736 0.0008703264415999108 5.356667386845952e-07 1.708881971972016 0.0010517791818899548 1.1308337134750013 0.0012367022264274958']
['59866.45486720283 2.847959184209686 0.0006512393802031012 0.32655320824289336 0.00020044656026992042 0.0008734883575524966 5.361690906340396e-07 1.7150903794269612 0.0010527655476361367 1.132868804782725 0.0012379127710048614']
['59866.4548987408 2.84415149768608 0.0006509554949632396 0.3257621994245073 0.00020030016591720805 0.0008713725094268592 5.357775043336209e-07 1.7109359213472024 0.0010519966697332356 1.1332155763388776 0.0012371095543858089']
['59866.454930278764 2.8401131773940183 0.0006505306057561336 0.32552664927428593 0.00020027227978795695 0.0008707424426915017 5.357029124796039e-07 1.7096987882052832 0.0010518502089703623 1.130414389188735 0.0012367614689730744']
['59866.45496181672 2.840467908364178 0.0006506385325969767 0.3252964731939074 0.0002002360620365863 0.0008701267509104302 5.356060345945902e-07 1.7084898802201023 0.0010516599896879533 1.1319780281440757 0.001236656473726804']
['59866.45499335469 2.8405997856602916 0.0006506666326490972 0.3254856189784148 0.00020028182163668291 0.0008706326918611755 5.357284357130656e-07 1.7094832929538595 0.0010519003237220742 1.131116492706432 0.0012368756436641154']
['59866.45502489265 2.8401188554217613 0.0006505676237422928 0.3252895143948408 0.00020023187514215722 0.0008701081370067421 5.355948351837567e-07 1.7084533319056763 0.0010516379996962039 1.131665523516085 0.001236600467194933']
['59866.45505643061 2.841288326036742 0.0006506496043852471 0.32564228079970226 0.00020028601403184227 0.0008710517423359935 5.357396498376539e-07 1.7103060966370918 0.0010519223426042135 1.1309822293996503 0.0012368854120558682']
['59866.45508796858 2.846524274122478 0.0006511175454032941 0.3262528308990428 0.0002003821320628645 0.0008726848863076791 5.359967533629892e-07 1.7135127673269055 0.001052427164195717 1.1330115067955726 0.0012375609051149966']
['59866.455119506536 2.84761802686484 0.0006512376127350973 0.32652973756473036 0.00020044127705187313 0.0008734255764693477 5.361549586967681e-07 1.714967109058458 0.001052737799642191 1.132650917806382 0.0012378882433549444']
['59866.4551510445 2.8442869100199997 0.000650943802184745 0.3256534433791471 0.00020030082897064662 0.0008710816008182843 5.357792779173567e-07 1.7103647236299744 0.0010520001521567574 1.1339221863900253 0.0012371063631477178']
['59866.45518258247 2.841305068913006 0.0006506909590831417 0.3254235711308127 0.00020025983770951536 0.0008704667217493421 5.356696315000019e-07 1.7091574114013275 0.0010517848619197236 1.1321476575116787 0.0012367902489897108']
['59866.455214120426 2.8405935233484145 0.0006506168595459485 0.32521649640260814 0.00020021846993330727 0.0008699128231513056 5.355589779526366e-07 1.7080698340473117 0.0010515675941875384 1.1325236893011028 0.001236566497633993']
['59866.45524565839 2.8460695688833804 0.0006510269409513915 0.3266490530209236 0.00020046009471967366 0.0008737447301607833 5.362052935681615e-07 1.7155937658661955 0.001052836631931059 1.1304758030171849 0.0012378614831153212']
['59866.45527719636 2.846131641122181 0.0006510614128885946 0.32624717865223085 0.00020037156830346174 0.0008726697672653314 5.359684966482568e-07 1.7134830811566748 0.0010523716822660807 1.132648559965506 0.0012374841901972057']
['59866.455308734316 2.8413046973046097 0.0006506485818674521 0.3253077875000473 0.0002002116639955084 0.0008701570152423599 5.355407729334254e-07 1.708549304096887 0.0010515318487159056 1.1327553932077226 0.0012365527914124882']
['59866.45534027228 2.8428549652286152 0.0006507849856845324 0.3258387049850474 0.00020034108712399277 0.0008715771520845731 5.358869633644961e-07 1.7113377362660056 0.0010522115920377773 1.1315172289626096 0.0012372026236680438']
['59866.45537181024 2.8463316922550397 0.0006510526242439552 0.3262332196800075 0.00020036959383188177 0.0008726324287875192 5.359632151875517e-07 1.7134097672269304 0.0010523613121422362 1.1329219250281093 0.0012374707474638218']
['59866.455403348205 2.8402277186774842 0.0006505864972577768 0.3251948376376071 0.0002002193019852463 0.0008698548887057396 5.355612035858972e-07 1.7079560800294493 0.0010515719642082266 1.132271638648035 0.0012365542391350615']
['59866.45543488617 2.846153729510756 0.0006510508883434259 0.326240741284747 0.00020039172567934389 0.0008726525481249019 5.360224150686165e-07 1.7134492714535035 0.0010524775508368902 1.1327044580572525 0.0012375686866709188']
['59866.45546642413 2.847028509425442 0.00065114015584249 0.32695384394252663 0.00020051214688894864 0.0008745600071655338 5.363445265099896e-07 1.7171945585216737 0.0010531100151730498 1.1298339509037685 0.0012381535472663974']
['59866.455497962095 2.847249707527486 0.0006511786588860047 0.32661854518010935 0.00020045022489421997 0.0008736631255613102 5.361788930386084e-07 1.7154335356098183 0.0010527847946125 1.1318161719176678 0.0012378971966830925']
['59866.45552950006 2.8477566988117013 0.0006511837659402766 0.32666453143054985 0.00020044309134051818 0.0008737861329406693 5.361598116884664e-07 1.7156750600344006 0.0010527473284691082 1.1320816387773007 0.0012378680198724763']
['59866.45556103802 2.8418380731797646 0.0006507148853320327 0.32555178732515333 0.00020028383912174878 0.0008708096837848671 5.357338322293824e-07 1.7098308157833684 0.001051910919757084 1.1320072573963962 0.0012369100392093497']
['59866.455592575985 2.8454644472251 0.0006509735400731587 0.32627657238662233 0.00020037859962144914 0.0008727483917716228 5.359873045308474e-07 1.713637460013773 0.001052408611457191 1.131826987211327 0.0012374693674368806']
['59866.45562411394 2.839932037214007 0.0006505572692342234 0.3250809420014278 0.0002001960529880836 0.0008695502323444869 5.354990154712691e-07 1.7073578886629612 0.0010514498581306914 1.1325741485510459 0.0012364350224401365']
['59866.45565565191 2.8400743100714667 0.0006505675891540408 0.3252082123404524 0.00020021765720013628 0.0008698906643371718 5.355568039946269e-07 1.708026325317502 0.0010515633256309679 1.1320479847539646 0.0012365369448058402']
['59866.455687189875 2.8409521042276564 0.0006506469092554608 0.3249903394017184 0.00020017070872008945 0.0008693078818974159 5.354312227732806e-07 1.7068820346728908 0.0010513167474794614 1.1340700695547656 0.0012363689999569211']
['59866.45571872783 2.843016182670096 0.00065080958361269 0.3256966595571812 0.00020030479763904804 0.0008711971986057745 5.357898936012824e-07 1.7105916993549433 0.0010520209960034035 1.1324244833151527 0.0012370534710165588']
['59866.4557502658 2.8426813149340058 0.0006508489477576832 0.3255382205332635 0.00020027675330925785 0.0008707733943396375 5.357148785809159e-07 1.709759561624283 0.001051873704355346 1.1329217533097227 0.0012369489248596811']
['59866.455781803765 2.8469491788503616 0.0006511459592275458 0.326584833681165 0.00020045064390848512 0.0008735729515832255 5.361800138485501e-07 1.7152564794178833 0.001052786995317674 1.1316926994324783 0.0012378818674366214']
['59866.45581334172 2.847931888939039 0.0006512137383009748 0.32631653891914914 0.00020040111671963212 0.0008728552971701081 5.360475349086609e-07 1.7138473682728421 0.0010525268735274795 1.1340845206661967 0.0012376963086514646']
['59866.45584487969 2.842113552498429 0.0006507483820000324 0.3256849179454643 0.00020029445176948356 0.000871165791285697 5.357622197141938e-07 1.710530031226178 0.00105196665845317 1.1315835212722511 0.0012369750632784755']
['59866.45587641765 2.8421215215075577 0.0006506958144528972 0.32599147231521014 0.00020035571914501328 0.0008719857852902596 5.359261021623589e-07 1.712140085689129 0.0010522884408876749 1.1299814358184288 0.0012372210820109446']
['59866.45590795561 2.841544044748436 0.0006506843230200274 0.32541936466918453 0.00020026680619951936 0.0008704554699987362 5.356882713257166e-07 1.7091353186406752 0.0010518214611319294 1.1324087261077607 0.0012368178824393422']
['59866.45593949358 2.8468810123646167 0.0006511701115597803 0.3263434200531188 0.0002004068969037675 0.0008729272007893886 5.360629961671001e-07 1.7139885506991535 0.0010525572316374345 1.1328924616654632 0.0012376991718753942']
['59866.45597103154 2.8474460063215297 0.0006511708618518634 0.32668362578564014 0.0002004477256341907 0.0008738372079154218 5.361722078354533e-07 1.7157753455128162 0.0010527716682467998 1.1316706608087135 0.0012378819316833285']
['59866.4560025695 2.8404194211169536 0.0006506055091824157 0.3253111628603026 0.00020024097539280038 0.0008701660439023489 5.356191771984329e-07 1.7085670318293205 0.001051685795130254 1.131852389287633 0.001236661045014868']
['59866.45603410747 2.8412721381456842 0.0006506750507998729 0.32551336081275756 0.0002002706580834542 0.0008707068977446391 5.356985746260266e-07 1.7096289958653235 0.0010518416916147806 1.1316431422803608 0.0012368302090232355']
['59866.45606564543 2.8463194639744214 0.0006510666975849712 0.3262809155270394 0.00020038340058582986 0.0008727600091206298 5.360001465008104e-07 1.713660270625207 0.0010524338266062493 1.1326591933492143 0.0012375398191934162']
['59866.45609718339 2.842977915078051 0.0006507986910761293 0.3256586991600482 0.00020029349916709596 0.0008710956593646746 5.357596716237941e-07 1.7103923275212618 0.0010519616552893698 1.1325855875567892 0.0012369972758682834']
['59866.45612872135 2.8469602333209965 0.000651153394676285 0.32639318468859513 0.00020042298538921747 0.0008730603148688378 5.361060308223307e-07 1.7142499195829577 0.001052641729985386 1.1327103137380388 0.001237762236903791']
['59866.45616025932 2.8463688462586663 0.0006510509933889305 0.32644569526947176 0.00020041191115963817 0.0008732007740034788 5.360764086647092e-07 1.7145257104489064 0.0010525835670149063 1.1318431358097598 0.0012376589035524032']
['59866.45619179728 2.840716662017318 0.0006506049131079331 0.32536605605481056 0.0002002306038163487 0.0008703128762258455 5.355914345486861e-07 1.7088553364223245 0.0010516313225648567 1.1318613255949934 0.0012366144069837174']
['59866.45622333524 2.841296403880605 0.0006506650926907084 0.325262722252616 0.0002002198325131724 0.0008700364714290767 5.355626226807188e-07 1.7083126168729834 0.0010515747505943928 1.1329837870076214 0.0012365979617215402']
['59866.45625487321 2.840874889697222 0.0006506401059207216 0.3255442570896353 0.00020029025885971212 0.000870789541361248 5.357510042130836e-07 1.7097912662270762 0.001051944636868236 1.1310836234701458 0.0012368993760481783']
['59866.45628641117 2.84642257415797 0.0006510805831884049 0.3267545717532322 0.0002004662499204424 0.000874026979368106 5.362217579484652e-07 1.7161479608888248 0.0010528689596661892 1.1302746132691452 0.0012379171911050904']
['59866.45631794913 2.846554328661134 0.0006511144260013624 0.3264681580690907 0.0002004183656843154 0.0008732608591395299 5.360936736984519e-07 1.7146436873376614 0.0010526174668293877 1.1319106413234727 0.0012377211023576356']
['59866.456349487096 2.8441292922022976 0.0006509170397808695 0.3259722085052998 0.00020035082737354426 0.0008719342570453854 5.359130172949678e-07 1.7120389102169107 0.0010522627488106318 1.132090381985387 0.001237315596447243']
['59866.456381025055 2.846077336243345 0.0006510549607665328 0.3262820445100886 0.0002003796223629423 0.0008727630290068977 5.359900402344464e-07 1.7136662001580285 0.0010524139829986465 1.1324111360853164 0.0012375167689974093']
['59866.45641256302 2.8413441881783488 0.0006507015441616229 0.325508570080893 0.00020025035722823223 0.0008706940831453572 5.356442724166557e-07 1.7096038344584719 0.0010517350694760096 1.131740353719877 0.0012367534741976782']
['59866.456444100986 2.846501027511608 0.0006510963411662559 0.3262144641798283 0.00020033980160872328 0.0008725822602066169 5.358835247744194e-07 1.713311261448678 0.00105220484038195 1.13318976606293 0.0012373606877557127']
['59866.456475638945 2.843226548192395 0.000650815838706183 0.3256123519336144 0.00020027574481092545 0.0008709716864203797 5.357121809759629e-07 1.7101489072143612 0.001051868407620407 1.1330776409780339 0.0012369269998107094']
['59866.45650717691 2.843437368996301 0.0006508607594414226 0.32564476462739644 0.00020029539508003658 0.0008710583862596124 5.357647429501162e-07 1.7103191419506116 0.0010519716128153183 1.1331182270456892 0.0012370383997071098']
['59866.456538714876 2.846510183531337 0.0006511100013930182 0.3258962511463514 0.0002003195664323607 0.0008717310807573041 5.358293982476557e-07 1.7116399745081483 0.0010520985631951717 1.1348702090231888 0.0012372775034693554']
['59866.456570252834 2.8465255755500207 0.0006511301416458839 0.3259148592014106 0.0002003054911713172 0.0008717808549412368 5.357917487120191e-07 1.7117377058897616 0.0010520246385048173 1.1347878696602591 0.0012372252427836172']
['59866.4566017908 2.847289053891643 0.0006511592931382962 0.32659133422628384 0.00020044095961766685 0.0008735903397158047 5.361541096005826e-07 1.7152906209363648 0.0010527361324457294 1.1319984329552784 0.0012378456242993945']
['59866.45663332876 2.8424864901975155 0.0006507797495087297 0.325607257903092 0.00020027098005131317 0.0008709580605357092 5.356994358491573e-07 1.710122152852374 0.0010518433826224433 1.1323643373451415 0.0012368867304394808']
['59866.456664866724 2.846151835483812 0.0006510663819793385 0.3263328921389234 0.00020040067479550766 0.0008728990399560333 5.360463528177554e-07 1.713933257032161 0.0010525245524974141 1.1322185784516507 0.0012376168095794221']
['59866.45669640469 2.847076475573627 0.000651118677630224 0.32630028865374977 0.00020040381633076008 0.00087281182977406 5.360547560255591e-07 1.7137620202402826 0.0010525410521573535 1.1333144553333445 0.0012376583530342453']
['59866.45672794265 2.84070611682858 0.0006506049701370055 0.3253591535592368 0.00020022754240532582 0.0008702944129268499 5.3558324566302e-07 1.708819083819521 0.0010516152437254507 1.1318870330090591 0.0012366007633843321']
['59866.456759480614 2.845474655259309 0.0006509903374928643 0.3262382947273036 0.00020038343436336737 0.0008726460038944704 5.360002368514333e-07 1.713436421887099 0.0010524340040092826 1.1320382333722099 0.0012374997989107247']
['59866.45679101858 2.840677223783519 0.0006505905524470403 0.3254106389515536 0.0002002597684540631 0.0008704321298122994 5.35669446250463e-07 1.7090894902917733 0.0010517844981831044 1.131587733491746 0.0012367371173986935']
['59866.45682255654 2.8417639577348304 0.0006507329202672013 0.32546016575346265 0.00020028562149195469 0.0008705646077171626 5.357385998433099e-07 1.709349610049699 0.0010519202809451402 1.1324143476851314 0.0012369274881670236']
['59866.456854094504 2.843684719661462 0.0006508606421667568 0.32583818165116474 0.00020029784452349643 0.0008715757522329039 5.357712949002753e-07 1.7113349876636803 0.0010519844775393721 1.1323497319977818 0.001237049278123353']
['59866.45688563246 2.8472970169510816 0.0006512024611058747 0.3261256770585442 0.00020035964902531418 0.0008723447659337554 5.359366140930421e-07 1.712844942534371 0.0010523090810153058 1.1344520744167106 0.0012375051706306627']
['59866.45691717043 2.8477902606358185 0.000651184701062227 0.32658250693084045 0.0002004392067155213 0.0008735667278216207 5.361494208099738e-07 1.7152442590905488 0.0010527269260268977 1.1325460015452697 0.0012378511605518423']
['59866.45694870839 2.8473447325803676 0.0006511322335389423 0.3265982951832761 0.00020044505533172886 0.0008736089593916697 5.361650651155146e-07 1.7153271805844335 0.001052757643548996 1.1320175519959341 0.0012378496845757351']
['59866.45698024635 2.846262221355744 0.0006510546654703058 0.3263763683411821 0.00020040162243420933 0.0008730153332752994 5.360488876309258e-07 1.7141615984305785 0.0010525295295914356 1.1321006229251653 0.001237614878745654']
['59866.45701178432 2.8464476347283716 0.0006511027778623269 0.3261872211859932 0.0002003796468435111 0.0008725093886581551 5.359901057168587e-07 1.7131681784978634 0.0010524141115730624 1.1332794562305082 0.0012375420354792629']
['59866.45704332228 2.8469078606300005 0.0006511386600669158 0.3261851567397288 0.0002003689633169113 0.0008725038665265967 5.359615286400855e-07 1.7131573358179035 0.00105235800061403 1.133750524812097 0.001237513198349859']
['59866.45707486024 2.84367232104049 0.0006508802199121185 0.3253950486812004 0.0002002607065228097 0.0008703904278191759 5.35671955465219e-07 1.70900760861975 0.001051789425014757 1.1346647124207399 0.001236893712186185']
['59866.45710639821 2.847902222730612 0.0006512204131381179 0.3265232926243084 0.00020043156075007804 0.0008734083370722705 5.361289688235031e-07 1.7149332595814517 0.0010526867686453678 1.1329689631491604 0.0012378357966098762']
['59866.457137936166 2.8463463092954817 0.0006510608152310381 0.3265692595669635 0.00020040719009216919 0.0008735312928057559 5.360637804088377e-07 1.7151746825995982 0.0010525587714924852 1.1311716266958836 0.001237642982679203']
['59866.45716947413 2.8437459664710367 0.0006508688699174127 0.3258751529283087 0.00020033199945424107 0.0008716746457036583 5.358626550021067e-07 1.7115291645394366 0.0010521638626798376 1.1322168019316001 0.0012372061589552997']
['59866.4572010121 2.8437275436188045 0.0006509377024782597 0.32558148997508485 0.00020026830439990586 0.0008708891346009937 5.356922788214688e-07 1.709986817096034 0.0010518293298314384 1.1337407265227706 0.0012369578940292707']
['59866.457232550056 2.843218959706232 0.0006508180431379888 0.3259319616068982 0.00020033635569566518 0.0008718266017037933 5.358743073946437e-07 1.7118275294479948 0.001052186742099082 1.1313914302582373 0.0012371988787268768']
['59866.45726408802 2.8469555967454303 0.0006510887027228459 0.3265060522376011 0.00020040507286127603 0.0008733622212274758 5.360581170851013e-07 1.7148427113319387 0.0010525476515823322 1.1321128854134916 0.0012376481962435048']
['59866.45729562599 2.8432201008461835 0.0006508023488266368 0.32577954998376824 0.0002003052897282922 0.0008714189199692422 5.357912098775118e-07 1.711027048234077 0.0010520235805057364 1.1321930526121065 0.001237051862768242']
['59866.457327163946 2.8431077842342143 0.0006508171216121211 0.32574759922049357 0.00020031386992192408 0.0008713334557354486 5.358141608057337e-07 1.7108592396034328 0.0010520686445479206 1.1322485446307815 0.0012370979583785535']
['59866.45735870191 2.8417308812847164 0.0006507611409216232 0.3251535915335029 0.00020020268048413577 0.0008697445606157989 5.355167431814712e-07 1.7077394513314228 0.001051484666408276 1.1339914299532936 0.001236571900952523']
['59866.45739023987 2.8465736071100585 0.000651106541069467 0.3264722758022506 0.00020043282433671633 0.0008732718735527522 5.361323487572763e-07 1.7146653140874506 0.0010526934051298127 1.1319082930226079 0.0012377815368744378']
['59866.457421777835 2.8415889889335286 0.0006507045106124321 0.32533663178206024 0.000200237852965067 0.0008702341700333228 5.35610825100816e-07 1.7087007971746861 0.001051669395824932 1.1328881917588425 0.0012366991866440853']
['59866.4574533158 2.8435176848740396 0.0006509286746048694 0.3255717361152244 0.00020028854391290266 0.0008708630442646741 5.357464169481782e-07 1.7099355888404644 0.001051935629794657 1.1335820960335752 0.0012370435354725126']
['59866.45748485376 2.8436862951020156 0.0006508925225569782 0.3256858184817412 0.000200302918909971 0.0008711682001058636 5.357848682396129e-07 1.7105347609335149 0.0010520111287288395 1.1331515341685008 0.0012370887158526316']
['59866.457516391725 2.841988244783275 0.0006507289669334686 0.32548387457605316 0.0002002575603609884 0.0008706280258064091 5.356635398819312e-07 1.7094741311767498 0.0010517729010556115 1.1325141136065253 0.0012368000743051548']
['59866.45754792969 2.845573518327996 0.000650990377376946 0.326422094221113 0.00020040430590144483 0.0008731376441966142 5.36056065564962e-07 1.7144017553629887 0.0010525436234319582 1.1311717629650073 0.0012375930472754986']
['59866.45757946765 2.8469365667014057 0.0006511427382474495 0.32654955558039134 0.00020043769432972355 0.0008734785871442168 5.361453753700482e-07 1.7150711952751647 0.0010527189828241784 1.131865371426241 0.001237822330696437']
['59866.457611005615 2.847756300236835 0.000651228026670932 0.3266480391702763 0.00020044969496708546 0.0008737420182390676 5.36177475550828e-07 1.7155884410203588 0.0010527820113817514 1.1321678592164761 0.0012379207996518688']
['59866.45764254357 2.8455146895735126 0.0006509915352004063 0.3263983058020804 0.00020040830721403487 0.0008730740131969943 5.360667685679463e-07 1.7142768161873971 0.001052564638729175 1.1312378733861155 0.0012376115293603483']
['59866.45767408154 2.8405926633595104 0.00065062112017986 0.325144867342195 0.00020019215165078023 0.0008697212245120825 5.354885798894792e-07 1.7076936309989235 0.001051429367913762 1.132899032360587 0.0012364511950480005']
['59866.457705619505 2.8411636715913304 0.0006506756838250345 0.3252046245378181 0.00020021393213178382 0.0008698810674208006 5.355468399098933e-07 1.7080074818162716 0.0010515437611963439 1.1331561897750588 0.0012365771820764483']
['59866.45773715746 2.8471565730038098 0.000651127667805457 0.32654658423638805 0.00020042705746776079 0.0008734706391763891 5.361169231152522e-07 1.7150555894768282 0.0010526631169525253 1.1321009835269815 0.00123776689145169']
['59866.45776869543 2.8415722058970307 0.0006507442721208132 0.32537325724045796 0.00020025689341309923 0.0008703321384828523 5.356617558810346e-07 1.7088931577755144 0.0010517693981780423 1.1326790481215163 0.0012368051482112485']
['59866.457800233395 2.8463913587380936 0.0006510292664186252 0.32666170274311 0.00020045893515037119 0.0008737785665610304 5.362021918675507e-07 1.7156602034827206 0.0010528305417561513 1.130731155255373 0.0012378575262881122']
['59866.45783177135 2.8406285937717315 0.0006505915725452396 0.3251968997642836 0.0002002085662870551 0.000869860404632695 5.355324869567431e-07 1.7079669105266997 0.001051515579238735 1.1326616832450318 0.0012365089597931186']
['59866.45786330932 2.8468675210247487 0.000651119961718608 0.32648093123887745 0.00020040604581677928 0.0008732950257464292 5.360607196175004e-07 1.7147107733134321 0.0010525527616427482 1.1321567477113166 0.0012376689866802906']
['59866.45789484728 2.8413483554998704 0.0006506830375733383 0.32553406045863537 0.00020029266546421395 0.0008707622666683652 5.357574415744707e-07 1.7097377124928328 0.0010519572765977623 1.1316106430070376 0.0012369327092338724']
['59866.45792638524 2.843830939059321 0.0006508674428168275 0.3257339334911 0.00020029785802437233 0.0008712969016449622 5.357713310134036e-07 1.7107874658146012 0.0010519845484473337 1.1330434732447199 0.0012370529165281721']
['59866.45795792321 2.846684829813383 0.0006511408840873412 0.3263472378659663 0.00020039888834157395 0.0008729374129538672 5.360415742803746e-07 1.714008602237218 0.0010525151698612077 1.132676227576165 0.0012376480249723712']
['59866.45798946117 2.8421923784353313 0.0006507280779145044 0.3257329800150702 0.00020031291490438287 0.0008712943512176803 5.358116062551047e-07 1.7107824580623434 0.0010520636286994898 1.131409920372988 0.0012370468504541948']
['59866.45802099913 2.8406727158784477 0.0006506180937520085 0.32529737984508933 0.00020022862855658012 0.0008701291760871909 5.355861509796767e-07 1.7084946420435365 0.0010516209483013663 1.1321780738349112 0.001236612519273423']
['59866.4580525371 2.8407714521600704 0.0006506313239266341 0.32527478306525853 0.00020022210962084746 0.0008700687325710895 5.355687136545413e-07 1.7083759614771983 0.0010515867101935266 1.1323954906828722 0.0012365903641587091']
['59866.45808407506 2.8472500247611445 0.0006512177823675629 0.3263302889192771 0.00020040601854824704 0.0008728920766741062 5.3606064667764e-07 1.713919584660069 0.0010525526184256672 1.1333304401010755 0.001237720329729804']
['59866.45811561302 2.841560819970364 0.0006506861455261621 0.325535814596731 0.00020027839230790176 0.0008707669587649835 5.357192626941243e-07 1.7097469254029989 0.001051882312541501 1.131813894567365 0.001236870591216943']
['59866.45814715098 2.8463466394477437 0.0006510963701604692 0.32618070857104015 0.000200351057962675 0.0008724919682403025 5.359136340916061e-07 1.7131339735873958 0.001052263959887999 1.1332126658603479 0.0012374109764000444']
['59866.45817868895 2.8467887215724588 0.0006511296331641655 0.3262226259035831 0.00020037377324685728 0.0008726040917810661 5.359743945917968e-07 1.7133541276448692 0.0010523832628511413 1.1334345939275896 0.001237529931401142']
['59866.45821022691 2.8474527362117534 0.0006511668259052452 0.32644288296467827 0.00020040569721535914 0.0008731932514453383 5.360597871529763e-07 1.7145109399405374 0.0010525509307529367 1.132941796271216 0.0012376920848855685']
['59866.45824176487 2.8411909466156504 0.0006506856288937448 0.32528160514919596 0.00020024620045470324 0.0008700869807791707 5.356331535754044e-07 1.708411791749979 0.001051713237682265 1.1327791548656714 0.0012367265348349895']
['59866.45827330284 2.840552045965321 0.0006505737799352085 0.3255155503406836 0.00020027338918642042 0.0008707127544537561 5.357058799795925e-07 1.7096404954867837 0.0010518560356429646 1.1309115504785374 0.0012367891343546477']
['59866.4583048408 2.8408546542773436 0.0006506877374279574 0.3253447657384171 0.0002002352951060846 0.0008702559273335091 5.356039831529037e-07 1.7087435175337033 0.001051655961691621 1.1321111367436403 0.0012366789370732577']
['59866.45833637876 2.8427572447378875 0.0006508106762364977 0.32566005082931404 0.00020029219566815033 0.0008710992749082895 5.357561849296678e-07 1.7103994266245486 0.001051954809181462 1.132357818113339 0.0012369977594415495']
['59866.458367916726 2.8417299954498008 0.0006507196538102658 0.3254301643636959 0.00020026248016293875 0.0008704843578099188 5.356766997272998e-07 1.7091920397252935 0.0010517987403515692 1.1325379557245072 0.001236817148191316']
['59866.458399454685 2.8475464961054584 0.0006511842985299928 0.32663053443708234 0.00020041912451985902 0.0008736951953009951 5.360957034871538e-07 1.715496504396441 0.001052621452310184 1.1320499917090174 0.001237761250207648']
['59866.45843099265 2.8471961424958407 0.0006511460167218129 0.326587463013351 0.0002004552950912023 0.0008735799847128799 5.361924551715864e-07 1.715270288935667 0.0010528114237983316 1.1319258535601737 0.00123790267354625']
['59866.458462530616 2.8419406032100207 0.0006508010727640848 0.3253235630189516 0.00020023979807690646 0.0008701992127518298 5.35616028027944e-07 1.7086321587129814 0.0010516796117484583 1.1333084444970394 0.0012367586838499544']
['59866.458494068575 2.8405556119835103 0.0006506761586584109 0.32499084578647225 0.00020017288890455186 0.0008693092364123181 5.354370544898192e-07 1.706884694256682 0.0010513281980281087 1.1336709177268283 0.0012363941294811682']
['59866.45852560654 2.8399802306735724 0.0006505414236703116 0.32515125083425034 0.00020020254526216497 0.0008697382995425832 5.355163814798734e-07 1.7077271577429116 0.0010514839562088497 1.1322530729306608 0.0012364556822125126']
['59866.458557144506 2.8479211664939497 0.0006512114223462499 0.3267107363304114 0.00020044805027482067 0.0008739097251794597 5.361730762079069e-07 1.7159177328277913 0.0010527733732921254 1.1320034336661584 0.001237904718509105']
['59866.458588682464 2.8454050841837226 0.000650992317196114 0.3259020529486697 0.00020031988466181707 0.0008717465998416368 5.358302494710342e-07 1.7116704461589796 0.0010521002345683672 1.133734638024743 0.0012372169981968318']
['59866.45862022043 2.846513588877659 0.0006510751522025068 0.3262351160551126 0.00020038088995710083 0.0008726375013500726 5.359934308878273e-07 1.7134197271802132 0.0010524206405309918 1.1330938616974457 0.001237533053470161']
['59866.45865175839 2.8474411593847115 0.000651203713229162 0.3260159285159372 0.0002003266504696946 0.0008720512025210993 5.358483471478025e-07 1.712268532121519 0.001052135769273606 1.1351726272631926 0.0012373584578077653']
['59866.458683296354 2.844396327237496 0.0006509308023328847 0.3257853403384467 0.00020032422434358878 0.0008714344084325922 5.358418575686041e-07 1.7110574597607495 0.0010521230270146469 1.1333388674767464 0.0012372040144617202']
['59866.45871483432 2.8466517707212224 0.0006511203149987524 0.32631403524411184 0.00020040537684496592 0.0008728486001573673 5.360589302028638e-07 1.713834218719075 0.0010525492481353253 1.1328175520021475 0.0012376661845402068']
['59866.45874637228 2.844141149022894 0.0006509118269978672 0.32588515442529803 0.00020034221843388995 0.000871701398437846 5.35889989474787e-07 1.7115816934101789 0.001052217533791439 1.1325594556127152 0.0012372744016360476']
['59866.458777910244 2.8431333328583444 0.0006508161021798997 0.3259066434935016 0.00020033298088868772 0.0008717588789660315 5.358652802146025e-07 1.711694556163349 0.0010521690172725195 1.1314387766949954 0.0012371827834903204']
['59866.45880944821 2.8403296565022957 0.0006505880249411705 0.3252937723086795 0.00020025504504433045 0.0008701195263854765 5.356568117293336e-07 1.708475694898527 0.0010517596903588786 1.1318539616037688 0.0012367146899995396']
['59866.45884098617 2.8460671379805556 0.0006510336293313257 0.3262750108499095 0.00020038282305021374 0.0008727442148592418 5.359986016663883e-07 1.7136292586654913 0.0010524307933309546 1.1324378793150642 0.001237519842778911']
['59866.458872524134 2.8473324997696414 0.000651163900322654 0.3263311595767393 0.00020038971664160623 0.000872894405572238 5.360170411478298e-07 1.713924157440858 0.0010524669991681 1.1334083423287835 0.0012376191697858095']
['59866.45890406209 2.84728057693701 0.0006511530698208522 0.3265709434560717 0.00020043787274535518 0.0008735357969952549 5.361458526092028e-07 1.7151835265549986 0.001052719919881067 1.1320970503820116 0.0012378285624639303']
['59866.45893560006 2.842177562763447 0.0006507400651957738 0.32525721702046884 0.00020024480220529178 0.0008700217456322853 5.35629413435816e-07 1.708283702838597 0.001051705893935356 1.1338938599248498 0.0012367489315901455']
['59866.45896713802 2.846894007258747 0.0006511329494585969 0.3266022696533868 0.00020043305311908384 0.0008736195905944308 5.361329607210525e-07 1.7153480549022417 0.0010526946067178774 1.1315459523565055 0.0012377964505053156']
['59866.45899867598 2.841673985071682 0.0006507527654823828 0.3255389838226349 0.00020026963598654288 0.000870775436041763 5.356958406466021e-07 1.7097635704970322 0.0010518363234587335 1.13191041457465 0.0012368665300387727']
['59866.45903021395 2.8451796344137605 0.0006510811069776593 0.32560999043352723 0.00020029862394834325 0.0008709653697075734 5.357733797627482e-07 1.7101365043777692 0.0010519885711572652 1.1350431300359913 0.0012371687684826023']
['59866.459061751906 2.8445911442229836 0.000650939324123627 0.3259849487994917 0.00020035264833681828 0.000871968335714244 5.35917888140451e-07 1.7121058235267421 0.0010522723126933733 1.1324853206962415 0.0012373354532023986']
['59866.45909328987 2.840569649434096 0.0006506242261371766 0.32540011281060843 0.0002002485756332442 0.0008704039737221632 5.356395068763375e-07 1.7090342059380694 0.0010517257123594758 1.1315354434960267 0.0012367048385425873']
['59866.45912482784 2.842581189029926 0.0006507386499588608 0.3257449787021526 0.0002003106750718689 0.0008713264461817101 5.358056149876039e-07 1.7108454763768517 0.0010520518648732611 1.1317357126530743 0.0012370424070878036']
['59866.459156365796 2.8418131210511532 0.0006506958472636356 0.3256222872265033 0.00020027698192806638 0.0008709982620670074 5.357154901071925e-07 1.7102010883744925 0.0010518749050843822 1.1316120326766608 0.0012368693955274416']
['59866.45918790376 2.8395610675424923 0.0006505163790694232 0.32544891155477657 0.0002002595055627769 0.0008705345041650378 5.356687430496615e-07 1.7092905018633224 0.0010517831174515595 1.1302705656791698 0.0012366969255212508']
['59866.45921944173 2.846458259176668 0.0006510747597933238 0.32656603541290696 0.0002004395911199012 0.0008735226686031444 5.36150449042868e-07 1.7151577490173686 0.0010527289449574642 1.1313005101592992 0.0012377950453896598']
['59866.459250979686 2.840185790489058 0.0006505424988308983 0.325316520529601 0.00020023924844202908 0.0008701803749872614 5.356145578244543e-07 1.708595170848745 0.001051676725010657 1.1315906196403132 0.0012366201828832855']
['59866.45928251765 2.84223324053519 0.0006507337666463307 0.3254903326123474 0.00020027684795347498 0.0008706453002332813 5.357151317421763e-07 1.7095080494345978 0.0010518742014363183 1.1327251911005924 0.0012368887462908755']
['59866.45931405561 2.8460808209220527 0.0006510471042557766 0.32677390651049787 0.00020049293857524354 0.0008740786973881449 5.36293146710416e-07 1.7162495089837075 0.0010530091311724977 1.1298313119383452 0.0012380188053064825']
['59866.459345593576 2.8424663767578116 0.0006507823870988058 0.32579913170657493 0.00020032148423496858 0.000871471298590737 5.358345281260578e-07 1.7111298934168853 0.0010521086356878604 1.1313364833409263 0.0012371136959257183']
['59866.45937713154 2.8436935502119307 0.0006509235624225853 0.3256560901624933 0.0002002946686159034 0.0008710886806275759 5.35762799750826e-07 1.7103786248030113 0.0010519677973524339 1.1333149254089194 0.0012370681997300877']
['59866.4594086695 2.84196134857622 0.0006507538601156996 0.32563222891124144 0.00020032088520895332 0.0008710248548110197 5.358329258075474e-07 1.7102533031052598 0.001052105489542822 1.13170804547096 0.0012370960138896353']
['59866.459440207465 2.8409386445921516 0.0006506673400427047 0.32526897680193056 0.0002002291705091086 0.0008700532015541224 5.355876006338587e-07 1.7083454663966942 0.0010516237946906965 1.1325931781954575 0.0012366408504322947']
['59866.45947174543 2.839048397194218 0.0006504400395311828 0.3251095609516933 0.00020019906489841252 0.0008696267844016442 5.355070719488657e-07 1.7075081982757003 0.0010514656769874608 1.1315401989185176 0.001236386798258549']
['59866.45950328339 2.8421230579799204 0.0006507275799289506 0.3256720436363097 0.00020029526036274844 0.0008711313541438341 5.357643825984805e-07 1.7104624140562485 0.0010519709052665362 1.1316606439236718 0.0012369677315142399']
['59866.459534821355 2.842001362228592 0.0006507451616401822 0.3256035301380887 0.00020029156907557956 0.0008709480892377771 5.357545088741225e-07 1.7101025742546676 0.0010519515182540943 1.1318987879739242 0.0012369604933688064']
['59866.45956635931 2.8406047025714245 0.0006506381101831009 0.3250576383435284 0.00020020323423129152 0.0008694878980193305 5.355182243847832e-07 1.707235495501725 0.0010514875747441783 1.1333692070696995 0.0012365096320951288']
['59866.45959789728 2.8476156882599337 0.0006511539992828613 0.32649389745787927 0.00020042927742187238 0.0008733297087354603 5.361228612105513e-07 1.7147788732031475 0.0010526747763753802 1.1328368150567862 0.0012377906590369072']
['59866.459629435245 2.8462881879467825 0.0006511124575910545 0.3263638524723935 0.0002004268961703648 0.0008729818549158911 5.361164916652038e-07 1.7140958638255963 0.0010526622698023363 1.1321923241211862 0.0012377581697147748']
['59866.4596609732 2.841399844758814 0.0006507108959076278 0.3253049853192925 0.00020022512162430633 0.0008701495197647369 5.355767703812487e-07 1.70853458676099 0.001051602529539424 1.132865257997824 0.0012366456849828178']
['59866.45969251117 2.8429207598491075 0.0006508090341160302 0.3258047010467185 0.00020033758495409038 0.0008714861958682767 5.358775955048068e-07 1.7111591441529335 0.00105219319828829 1.131761615696174 0.0012371996303795038']
['59866.459724049135 2.8407716674705776 0.0006506600790114371 0.3254149507494214 0.00020027944672330658 0.000870443663323968 5.357220831214142e-07 1.709112136288978 0.0010518878504375347 1.1316595311815996 0.001236861588180855']
['59866.45975558709 2.8423020075135783 0.0006507450497904891 0.32550295926098516 0.00020026717930900266 0.0008706790749147163 5.35689269346197e-07 1.7095743658665188 0.0010518234207405604 1.1327276416470595 0.0012368514980567393']
['59866.45978712506 2.846039228585221 0.0006510645677084262 0.32608086188216834 0.0002003547585361027 0.0008722248910287847 5.35923532655527e-07 1.7126095687088676 0.0010522833956728083 1.1334296598763536 0.001237410770978682']
['59866.45981866302 2.8466499518887876 0.0006511358451077469 0.32620888292242245 0.00020039235032821465 0.0008725673310519143 5.360240859250111e-07 1.7132819481219668 0.0010524808315557493 1.1333680037668208 0.0012376161721537342']
['59866.45985020098 2.841684040147957 0.0006507372575440408 0.32538889265247195 0.0002002527185735678 0.0008703739612241852 5.356505887155214e-07 1.7089752765360924 0.0010517474714998312 1.1327087636118645 0.0012367828112333334']
['59866.45988173895 2.8410627429371913 0.0006506845412574361 0.3256541860006593 0.0002002967078555607 0.0008710835872365115 5.357682544579118e-07 1.7103686239530427 0.0010519785076447516 1.1306941189841486 0.001236951556358566']
['59866.45991327691 2.84724797665476 0.0006511597039996624 0.3265848586705269 0.00020042530478993828 0.0008735730184265949 5.361122349246791e-07 1.7152566106645322 0.001052653911711861 1.1319913659902279 0.0012377759158891442']
['59866.45994481487 2.8467592321560184 0.0006511067624823928 0.3264149787206416 0.00020041112787028302 0.0008731186111365706 5.360743134651673e-07 1.7143643840369835 0.001052579453100226 1.132394848119035 0.0012376847422664117']
['59866.45997635284 2.8453183019974637 0.0006509873235525146 0.32634401646268296 0.00020042880569504491 0.0008729287961092247 5.361215994012004e-07 1.7139916831023267 0.0010526722988185133 1.131326618895137 0.0012377008782924572']
['59866.4600078908 2.840791377478636 0.0006506117321335047 0.3257209906313884 0.000200304915204319 0.0008712622811390655 5.357902080734506e-07 1.7107194886102333 0.001052021613468062 1.130071888868403 0.0012369499186279545']
['59866.46003942876 2.8468058812823323 0.0006511401714478929 0.3261435232890386 0.00020036219050780183 0.0008723925023337342 5.359434122359108e-07 1.7129386727365474 0.0010523224291376146 1.1338672085457848 0.0012374837444343587']
['59866.46007096672 2.842989231845098 0.0006508355334854031 0.3255535589562519 0.00020026610688154736 0.0008708144226730464 5.356864007389597e-07 1.7098401205685498 0.001051817788243421 1.1331491112765482 0.0012368943169537613']
['59866.46010250469 2.8399760154625993 0.0006505243877200524 0.32551155481600214 0.0002002642033724624 0.0008707020669326924 5.356813090939161e-07 1.7096195105882466 0.0010518077908217563 1.1303565048743527 0.0012367221223265525']
['59866.46013404265 2.843748961462302 0.0006509073981854716 0.32596974454144967 0.00020034185946973837 0.0008719276662550266 5.358890292912723e-07 1.7120259692303028 0.0010522156484755166 1.1317229922319991 0.0012372704683735612']
['59866.46016558061 2.8423426380339905 0.0006508291634565682 0.3253036136684339 0.0002002387189529933 0.0008701458507728993 5.356131415085324e-07 1.708527382712363 0.0010516739440808473 1.1338152553216274 0.0012367686463781904']
['59866.46019711858 2.845847615974138 0.0006510555772616474 0.32625030002596134 0.0002003926584146941 0.0008726781165436246 5.360249100172145e-07 1.7134994749262678 0.001052482449657007 1.1323481410478702 0.0012375753195339309']
['59866.46022865654 2.841202008996064 0.0006507036178554772 0.3252803352608325 0.00020022017576990054 0.000870083583989083 5.355635408488707e-07 1.7084051221682381 0.0010515765534133432 1.1327968868278258 0.001236619766128171']
['59866.4602601945 2.842170313004095 0.0006506984997367668 0.3259175137638577 0.000200332686852086 0.0008717879555586351 5.358644937040377e-07 1.7117516479194208 0.0010521674729626366 1.1304186650846741 0.0012371196097064583']
['59866.46029173247 2.842148967611799 0.0006507660073087583 0.32531548832981627 0.00020023234062940592 0.0008701776139839337 5.35596080303027e-07 1.708589749631388 0.0010516404444821741 1.133559217980411 0.0012367069259688196']
['59866.460323270425 2.8425685355945873 0.0006507286716883173 0.3258459127083715 0.00020031370974760702 0.0008715964318290346 5.358137323597788e-07 1.7113755919557327 0.0010520678032962555 1.1311929436388546 0.0012370507131439076']
['59866.46035480839 2.840116331651174 0.000650560772008766 0.3254381347845529 0.00020027429181196626 0.0008705056776734132 5.35708294388288e-07 1.7092339011793747 0.0010518607763233523 1.1308824304717995 0.0012367863238426462']
['59866.460386346356 2.847256620097431 0.0006511381557436224 0.3264625948825312 0.00020040412978991002 0.000873245978322046 5.360555944889738e-07 1.7146144689208573 0.0010525426984764183 1.1326421511765736 0.001237670000436799']
['59866.460417884315 2.8422426041677378 0.0006507716121756279 0.32585678717998146 0.00020032270053906004 0.0008716255196594589 5.358377815850235e-07 1.7114327057772138 0.0010521150238396013 1.130809898390524 0.001237113460682839']
['59866.46044942228 2.8475540309386966 0.0006512272407580485 0.32620738852791553 0.00020034591094913475 0.0008725633337364066 5.35899866484092e-07 1.7132740994113211 0.001052236927253859 1.1342799315273755 0.0012374568558870989']
['59866.460480960246 2.847616382726589 0.0006511411177099061 0.3266350910849058 0.0002004420056309507 0.0008737073837551973 5.36156907553266e-07 1.7155204363703036 0.0010527416262129765 1.1320959463562854 0.001237840735609411']
['59866.460512498204 2.8443092364364655 0.0006509570386749078 0.32579160159075693 0.00020028138046302728 0.0008714511564873002 5.357272556295689e-07 1.7110903444892698 0.0010518980066335467 1.1332188919471957 0.001237026468011107']
['59866.46054403617 2.842278574090965 0.0006507659132912096 0.3256619864892919 0.00020028658227475916 0.0008711044525528881 5.357411698152859e-07 1.7104095929059449 0.001051925327073315 1.13186898118502 0.0012369491370464846']
['59866.46057557413 2.844142101758829 0.0006509100498910356 0.3257696223896025 0.00020029471260252116 0.0008713923649157214 5.357629174094418e-07 1.7109749075084166 0.001051968028374586 1.1331671942504125 0.001237061286182485']
['59866.460607112094 2.8432891570042034 0.0006508148911389231 0.3258097332137051 0.00020034683150858072 0.000871499656275846 5.359023288636926e-07 1.7111855736013923 0.0010522417621248988 1.132103583402811 0.0012372440133166457']
['59866.46063865006 2.8457792560221677 0.0006510236235960796 0.3262830578266492 0.00020039714411824043 0.0008727657394999992 5.360369087044859e-07 1.713671522198788 0.001052506009024372 1.1321077338233798 0.0012375785459972154']
['59866.46067018802 2.8439525635483496 0.000650896594161961 0.32595272335288605 0.00020034585205456917 0.0008718821367374267 5.358997089486091e-07 1.7119365722315445 0.0010522366179336615 1.132015991316805 0.0012372826178412557']
['59866.460701725984 2.8474937629233286 0.0006512452043381763 0.32621524540917823 0.00020039402606748577 0.0008725843498959066 5.36028568314731e-07 1.7133153645440036 0.0010524896327073834 1.134178398379325 0.0012376811960799906']
['59866.46073326395 2.8437228934176755 0.0006509058698100989 0.32589095899797627 0.00020032752905767563 0.0008717169249325398 5.358506972590651e-07 1.71161217961122 0.0010521403837062797 1.1321107138064554 0.00123720565726917']
['59866.46076480191 2.843917298266301 0.0006508543114584164 0.3260453732577395 0.00020034739235874434 0.0008721299634657364 5.359038290666485e-07 1.7124231788746826 0.0010522447077665146 1.1314941193916181 0.0012372672547863888']
['59866.460796339874 2.8421469115790092 0.0006507595964406135 0.325568392603518 0.0002002976131278554 0.0008708541007955084 5.357706759463243e-07 1.7099180283798217 0.0010519832622261315 1.1322288831991876 0.0012369950834031167']
['59866.46082787783 2.8400729312142152 0.0006505670831476447 0.3251826100209213 0.00020022349614750743 0.0008698221813840962 5.355724224372583e-07 1.7078918593535783 0.0010515939923713626 1.1321810718606369 0.0012365627579976586']
['59866.4608594158 2.8408755086810817 0.0006506554674742948 0.3251768093679729 0.00020020192607418538 0.000869806665374182 5.355147252306691e-07 1.7078613937393534 0.0010514807041711418 1.1330141149417283 0.0012365129229403278']
['59866.460890953764 2.8434560590981492 0.0006508759207605036 0.32533367331602814 0.00020021248661362446 0.0008702262565124325 5.355429733324077e-07 1.708685259012753 0.0010515361691892041 1.1347708000853962 0.0012366761012241403']
['59866.46092249172 2.8456477794827713 0.0006510189784034889 0.32613851017695694 0.00020036653927427432 0.0008723790928956154 5.359550446339016e-07 1.7129123433663707 0.0010523452692976594 1.1327354361164006 0.0012374394029829039']
['59866.46095402969 2.840706288768824 0.0006506208786236034 0.325537395879425 0.0002002546630690673 0.0008707711884953562 5.356557899940182e-07 1.709755230459165 0.001051757684186278 1.130951058309659 0.0012367302672554885']
['59866.46098556765 2.8438541534657054 0.0006508692911494282 0.3259757932151104 0.00020035249938333877 0.000871943845688846 5.359174897088114e-07 1.7120577374743193 0.0010522715303746784 1.131796415991386 0.0012372979462516']
['59866.46101710561 2.843556227743016 0.0006508649242529827 0.32591827752564606 0.00020032775898557527 0.000871789998524416 5.358513122869943e-07 1.7117556592733512 0.0010521415913107945 1.1318005684696648 0.0012371851428904454']
['59866.46104864358 2.840417678695066 0.0006505993412259252 0.3254700489762657 0.0002002515262163429 0.0008705910440829237 5.356473993113823e-07 1.7094015177324882 0.0010517412091194482 1.1310161609625777 0.0012367049259074077']
['59866.461080181536 2.8417683528416573 0.0006507420324220487 0.32544057052553427 0.00020024808385596992 0.0008705121929711826 5.356381914345879e-07 1.7092466939366298 0.0010517231294956404 1.1325216589050275 0.0012367646234740393']
['59866.4611117195 2.840054985731363 0.0006505854547367598 0.32554872476708596 0.0002002753060085556 0.0008708014918310028 5.357110072353545e-07 1.7098147309195693 0.0010518661029861114 1.1302402548117938 0.0012368038375289048']
['59866.46114325747 2.8431632415841914 0.000650823877467044 0.32577467401390725 0.0002003318405177132 0.0008714058773691457 5.358622298670806e-07 1.7110014391486728 0.001052163027929166 1.1321618024355187 0.001237181780023578']
['59866.461174795426 2.8460597572311217 0.0006510601895794282 0.3263450998709818 0.0002003924250984419 0.0008729316940888238 5.360242859258727e-07 1.7139973732719636 0.0010524812242565227 1.1320623839591581 0.0012375767038320129']
['59866.46120633339 2.8477300150288753 0.0006511688247105852 0.3267707289088989 0.00020046594145614897 0.0008740701977074448 5.362209328456574e-07 1.7162328198996792 0.0010528673395806146 1.131497195129196 0.001237962226011168']
['59866.46123787136 2.8461788885687853 0.0006511146233911056 0.32636757256061677 0.00020040947978484477 0.0008729918056794116 5.360699050459381e-07 1.7141154021040799 0.0010525707971893107 1.1320634864647054 0.0012376815163399194']
['59866.461269409316 2.840481911777844 0.0006506080157100074 0.3252190803949929 0.0002002349302436034 0.0008699197350027502 5.356030071921064e-07 1.7080834054358873 0.0010516540453970767 1.1323985063419566 0.001236635363114831']
['59866.46130094728 2.8407753307846906 0.000650619776677151 0.3255853542054609 0.00020027804188597572 0.000870899470926466 5.357183253599781e-07 1.7100071124236396 0.0010518804720902086 1.130768218361051 0.0012368341123077686']
['59866.46133248524 2.846295868889824 0.0006511125158028116 0.32620474271116556 0.00020036817075416924 0.0008725562565126373 5.359594086354114e-07 1.7132602033149453 0.0010523538379945865 1.1330356655748788 0.001237495902448571']
['59866.461364023206 2.84088457266387 0.0006506528962178431 0.3253774644360867 0.0002002613489809806 0.0008703433921968166 5.356736739592296e-07 1.7089152543912118 0.001051792799269856 1.1319693182726582 0.0012367769742166884']
['59866.46139556117 2.8435049184505097 0.0006509094172757772 0.3257143485792599 0.00020029277007388105 0.000871244514493208 5.35757721392044e-07 1.7106846038826677 0.001051957826018283 1.132820314567842 0.0012370522774803835']
['59866.46142709913 2.8423889346742643 0.0006507715554603939 0.3255173311358963 0.00020027690342515534 0.000870717517854777 5.357152801218759e-07 1.7096498484028169 0.0010518744927791772 1.1327390862714475 0.0012369088753646292']
['59866.461458637095 2.8404759177119954 0.0006506307286648847 0.325111844261042 0.00020018766876176407 0.000869632891964156 5.354765887307186e-07 1.7075201904466493 0.0010514058233285929 1.132955727265346 0.0012364362298203152']
['59866.46149017506 2.8436404711844845 0.0006509101325652498 0.3258512824527557 0.00020033627528381922 0.000871610795213268 5.358740923031685e-07 1.7114037943947253 0.001052186319767958 1.1322366767897591 0.0012372469649115938']
['59866.46152171302 2.8431909510328457 0.0006507883598778285 0.3257654725634808 0.0002003212564333149 0.0008713812646579023 5.358339187855665e-07 1.7109531122031558 0.0010521074392506036 1.1322378388296899 0.0012371158203979677']
['59866.461553250985 2.841588221801527 0.0006506896131140694 0.32535785826111513 0.00020024523287215723 0.0008702909481688862 5.356305654149835e-07 1.7088122807831678 0.001051708155841162 1.1327759410183593 0.0012367243094875086']
['59866.46158478894 2.843736965693663 0.0006508988851747999 0.32588049161197324 0.000200340177411796 0.0008716889260044114 5.358845299999094e-07 1.7115572038443974 0.0010522068141375841 1.1321797618492657 0.001237258476810469']
['59866.46161632691 2.84072641847622 0.0006506077489303626 0.32566743307089396 0.00020030910035337765 0.0008711190214669204 5.358014028156399e-07 1.710438198901754 0.00105204359429295 1.130288219574466 0.00123696651824577']
['59866.461647864875 2.8416313596684697 0.000650704991483673 0.3255159144862154 0.0002002643540887042 0.0008707137284968048 5.35681712240721e-07 1.7096424080158374 0.0010518085823986566 1.1319889516526322 0.001236817803861684']
['59866.46167940283 2.8461621178605094 0.0006510549354333155 0.32633079727236525 0.00020039027883012335 0.0008728934364540526 5.360185449307113e-07 1.7139222545817503 0.0010524699518388832 1.1322398632787591 0.0012375643532664552']
['59866.4617109408 2.8436898836053333 0.0006508389412104225 0.3260385523925986 0.00020034807333818203 0.000872111718517781 5.359056506001552e-07 1.712387355003144 0.0010522482843391913 1.1313025286021892 0.0012372622112109767']
['59866.461742478765 2.8463077039887033 0.0006510989877904526 0.3264210908366982 0.0002004229039256542 0.0008731349602707412 5.361058129176455e-07 1.7143964854868603 0.001052641302130537 1.131911218501843 0.001237733251897526']
['59866.46177401672 2.8414142708404886 0.0006506629235421061 0.32557175600119737 0.0002002572713941447 0.0008708630974571262 5.356627669323251e-07 1.7099356932835998 0.0010517713833726088 1.1314785775568887 0.0012367640368938174']
['59866.46180555469 2.8413819066950357 0.0006507107656221051 0.32534949596494656 0.00020024610059618078 0.0008702685800887043 5.356328864665396e-07 1.7087683611604336 0.0010517127132152354 1.132613545534602 0.0012367393143403577']
['59866.46183709265 2.8428637003728285 0.0006508141483274047 0.325714263674016 0.00020030333679720719 0.0008712442873824641 5.357859860348951e-07 1.7106841579517649 0.0010520133235147437 1.1321795424210637 0.0012370493476477251']
['59866.46186863061 2.841849972492682 0.0006507131686528368 0.32581015401401425 0.00020033606770699064 0.0008715007818632286 5.358735370615157e-07 1.7111877836870497 0.0010521852295535222 1.130662188805632 0.00123714242718808']
['59866.46190016858 2.8471815431126997 0.0006511770796431655 0.3262136756233397 0.00020037825281442992 0.0008725801509181619 5.359863768661179e-07 1.7133071198704817 0.001052406789991754 1.133874423242218 0.0012375749030557098']
['59866.46193170654 2.8458950396810208 0.0006510400172324589 0.32604880353472987 0.00020034646756743218 0.0008721391390210168 5.359013553673433e-07 1.712441195035346 0.001052239850669287 1.1334538446456748 0.0012373608234361405']
['59866.4619632445 2.8456215053996194 0.0006510121266487787 0.3263517766135479 0.00020042687030848727 0.000872949553527196 5.36116422487966e-07 1.7140324401972056 0.0010526621339731475 1.1315890652024139 0.0012377052788708086']
['59866.46199478247 2.8424887134785273 0.000650795388891791 0.3255625612856847 0.00020028311686883283 0.0008708385027609217 5.357319002945632e-07 1.709887401710529 0.001051907126411937 1.1326013117679983 0.0012369491666188374']
['59866.46202632043 2.842417586252946 0.000650727797745433 0.325717999776598 0.00020031085154697807 0.0008712542809823602 5.358060870361074e-07 1.7107037803392753 0.0010520527917383302 1.1317138059136707 0.0012370374866442146']
['59866.46205785839 2.8447127069622837 0.0006509606468015172 0.32589990706431093 0.00020034519705492028 0.0008717408598735191 5.358979569077378e-07 1.7116591757579356 0.0010522331778094554 1.1330535312043482 0.0012373133896338609']
['59866.46208939635 2.844746389055681 0.0006509812382402441 0.3258693369194886 0.00020032565491680894 0.0008716590886187375 5.358456841702755e-07 1.711498618274625 0.0010521305405294587 1.1332477707810558 0.0012372369404667857']
['59866.46212093432 2.844665586432402 0.0006509857048555896 0.325691722929938 0.00020028893579186803 0.0008711839937548845 5.357474651746393e-07 1.710565771690851 0.0010519376879825001 1.1340998147415513 0.0012370752957376106']
['59866.46215247228 2.8410816664861738 0.0006506645349721148 0.3252257754051487 0.0002002080469672927 0.0008699376433046047 5.355310978423358e-07 1.7081185683043525 0.0010515128517189743 1.1329630981818213 0.0012365450312870323']
['59866.46218401024 2.846604537002114 0.0006510955572936409 0.32626229700427967 0.00020036785997181236 0.0008727102069369275 5.359585773320782e-07 1.7135624842661747 0.0010523522057343088 1.1330420527359393 0.0012374855916904171']
['59866.46221554821 2.8451230024336276 0.0006509592628080282 0.3261484083483888 0.00020037066532975348 0.00087240556924706 5.35966081308271e-07 1.7129643295608659 0.0010523669397571086 1.1321586728727617 0.001237426417096917']
['59866.46224708617 2.846140509006119 0.0006510628480488107 0.3263070744527051 0.00020040490355181708 0.0008728299809244226 5.36057664203802e-07 1.7137976599406783 0.0010525467623519805 1.1323428490654408 0.001237633838842113']
['59866.46227862413 2.8423278920990316 0.0006507757017682628 0.32595870594410487 0.0002003374792101408 0.0008718981394091069 5.358773126531719e-07 1.7119679934039123 0.0010521926429104035 1.1303598986951193 0.0012371816244217155']
['59866.4623101621 2.842683282619143 0.0006507739738884823 0.3258499503240296 0.00020033617145602875 0.0008716072319381152 5.358738145770159e-07 1.7113967979203237 0.0010521857744539326 1.131286484698819 0.0012371748740795817']
['59866.462341700055 2.846501557042585 0.0006510764336840034 0.32653614090879934 0.00020045216934129882 0.0008734427046014635 5.361840941875863e-07 1.7150007400672236 0.0010527950070446368 1.1315008169753613 0.0012378521112624066']
['59866.46237323802 2.8415451336631197 0.0006507456843037026 0.32529393025231595 0.00020023509208740104 0.000870119948864644 5.356034401037099e-07 1.7084765244344327 0.0010516548954170224 1.133068609228687 0.0012367085205069474']
['59866.462404775986 2.8457789263503575 0.0006510153957823301 0.3263889284324681 0.0002004010598519684 0.0008730489299242717 5.360473827948831e-07 1.7142275652965762 0.0010525265748527752 1.1315513610537813 0.0012375917082450652']
['59866.462436313945 2.8465866611570916 0.0006511154408351663 0.32624092983621056 0.0002003971791207521 0.0008726530524761196 5.36037002331759e-07 1.7134502617448035 0.0010525061928610931 1.133136399412288 0.001237627004919061']
['59866.46246785191 2.8464952610405225 0.0006510547506839485 0.32664324480332513 0.00020045038261931188 0.0008737291939163908 5.361793149331971e-07 1.7155632605216657 0.0010527856230005876 1.1309320005188568 0.0012378327255267061']
['59866.462499389876 2.841093436662825 0.0006506665218973044 0.32538884307211313 0.00020026208540076373 0.0008703738286030224 5.356756437886191e-07 1.708975016135048 0.001051796667020818 1.1321184205277768 0.0012367874318063056']
['59866.462530927834 2.8419992796187596 0.0006507274671540512 0.3255653027021177 0.0002002589864714256 0.0008708458357017013 5.356673545462249e-07 1.7099017999060806 0.0010517803911314371 1.132097479712679 0.0012368056547725377']
['59866.4625624658 2.840033943556282 0.0006505833079184984 0.3253723949164025 0.00020026179027897827 0.000870329831875525 5.356748543753256e-07 1.7088886287626184 0.0010517951170114406 1.1311453147936636 0.0012367423372357258']
['59866.46259400376 2.842518796813371 0.0006507920820144469 0.3255738727415489 0.00020030621193704477 0.000870868759468726 5.357936766687981e-07 1.709946810617379 0.0010520284240391007 1.132571986195992 0.0012370505806145891']
['59866.462625541724 2.8400207137041953 0.0006505621595048367 0.32550442473101804 0.00020026451665234704 0.0008706829948609295 5.356821470778189e-07 1.70958206266291 0.0010518094361993018 1.1304386510412854 0.0012367433903027296']
['59866.46265707969 2.8447062226737603 0.000650998500397858 0.32582193657203495 0.00020032098753841251 0.0008715322987094682 5.358331995258541e-07 1.7112496668699317 0.0010521060269874608 1.1334565558038285 0.0012372251773802535']
['59866.46268861765 2.8420605356387627 0.0006507772821169798 0.32546264070108966 0.0002002670031332423 0.0008705712278877295 5.356887980984135e-07 1.7093626087242104 0.001051822495447701 1.1326979269145523 0.0012368676699022383']
['59866.462720155614 2.8469032139404966 0.0006511455384872289 0.3262090384718449 0.0002004002433812029 0.0008725677471268635 5.360451988392828e-07 1.7132827650832192 0.0010525222866659817 1.1336204488572774 0.00123765652594749']
['59866.46275169358 2.845624429549383 0.0006509845899361137 0.32640859376346393 0.0002004262674695019 0.0008731015321870536 5.361148099702449e-07 1.714330849598025 0.0010526589678020058 1.1312935799513582 0.0012376881024023275']
['59866.46278323154 2.846106522433911 0.000651078730942533 0.32633660011513577 0.00020040359209893904 0.0008729089583214629 5.360541562339168e-07 1.7139527316971417 0.0010525398744692176 1.1321537907367694 0.0012376363364225438']
['59866.462814769504 2.8466442778584944 0.000651138616114125 0.3261831120087245 0.0002003586115222463 0.0008724983971308551 5.359338389041055e-07 1.7131465966844777 0.0010523036319445708 1.1334976811740167 0.0012374669414569233']
['59866.46284630746 2.846516526537126 0.0006510927243615378 0.3264703839898978 0.00020042384920748157 0.0008732668131949817 5.361083414264763e-07 1.714655378098203 0.0010526462668460166 1.1318611484389232 0.001237734179386424']
['59866.46287784543 2.846607003637926 0.0006511362965044377 0.3263974497431542 0.0002004225643073133 0.0008730717233480921 5.361049044817173e-07 1.7142723200795917 0.001052639518420763 1.1323346835583343 0.0012377513612865112']
['59866.462909383394 2.84710755154949 0.0006511181333270009 0.32672490691352807 0.00020046251873326925 0.0008739476296895356 5.362117774966634e-07 1.7159921581592863 0.0010528493630949016 1.1311153933902036 0.0012379202740550694']
['59866.46294092135 2.840956553212346 0.0006506966927206567 0.3251300518299032 0.00020021435288813488 0.0008696815948983736 5.355479653796935e-07 1.7076158184343657 0.0010515459710511287 1.1333407347779803 0.0012365901160657324']
['59866.46297245932 2.8436044624890253 0.0006508846118189546 0.32583735196100055 0.00020032467192975081 0.000871573532917091 5.358430548047411e-07 1.711330630047272 0.001052125377782305 1.1322738324417534 0.0012371817119874787']
['59866.46300399728 2.8440795907000895 0.0006508305461668192 0.3262459621795607 0.00020039012910099075 0.0008726665133554391 5.360181444242982e-07 1.7134766921195417 0.00105246916544638 1.1306028985805479 0.0012374456529638785']
['59866.46303553524 2.8410693518893817 0.0006506547352102829 0.32519787338370054 0.0002002189647614728 0.0008698630089409789 5.355603015551329e-07 1.7079720240740575 0.0010515701930749624 1.1330973278153242 0.0012365886362955456']
['59866.46306707321 2.843711916322814 0.0006508604653494251 0.3258532946059541 0.00020033067748038272 0.0008716161774675165 5.358591188899353e-07 1.7114143624262295 0.0010521569195398252 1.1322975538965845 0.0012371958327970574']
['59866.463098611166 2.848208297071685 0.0006512889884468807 0.32657061723806124 0.0002004330474504828 0.0008735349244035088 5.361329455582647e-07 1.7151818132251118 0.001052694576945813 1.1330264838465733 0.0012378785153654155']
['59866.46313014913 2.847306773834518 0.0006511515705948907 0.3262735643712025 0.0002003907488123569 0.0008727403457124131 5.360198020734951e-07 1.7136216616134583 0.001052472420232967 1.1336851122210596 0.0012376172927198584']
['59866.4631616871 2.8427688888882408 0.0006508038451037337 0.32549975048870716 0.0002002631820068484 0.0008706704918564088 5.356785770706192e-07 1.709557513070941 0.001051802426506557 1.1332113758172997 0.001236864579979104']
['59866.463193225056 2.846911120099575 0.0006511108391671644 0.32639490574833174 0.0002003964138543458 0.0008730649184850468 5.360349553413162e-07 1.7142589587622468 0.0010525021736047574 1.1326521613373284 0.001237621165916173']
['59866.46322476302 2.844443388980512 0.0006509711364472562 0.32583215270831545 0.00020030454021386252 0.0008715596255764992 5.357892050216059e-07 1.7113033230478754 0.0010520196439803705 1.1331400659326365 0.0012371373213220988']
['59866.46325630099 2.8402807064717144 0.00065059880466653 0.32528271474326315 0.0002002163859350771 0.0008700899488023743 5.35553403522053e-07 1.7084176194499117 0.0010515566488186825 1.1318630870218027 0.001236547690268473']
['59866.463287838946 2.8455588393519675 0.0006510290010561476 0.32604243394163 0.00020034683397058672 0.0008721221011684567 5.35902335449246e-07 1.7124077412900736 0.0010522417750556026 1.133151098061894 0.0012373566637749727']
['59866.46331937691 2.8417486424092138 0.0006507036335385308 0.325336029150914 0.00020023437735391145 0.0008702325580715449 5.356015282824013e-07 1.7086976320951366 0.001051651141564661 1.1330510103140772 0.0012366832020588383']
['59866.46335091487 2.8464124438678144 0.0006510080273801123 0.32642235897680405 0.00020039746882895642 0.0008731383523844619 5.360377772644106e-07 1.7144031458865758 0.0010525077144377963 1.1320092979812386 0.0012375717921253777']
['59866.463382452836 2.845992172527871 0.0006510546323110425 0.32639679663463383 0.00020040520193056826 0.0008730699763657494 5.360584623290653e-07 1.714268889887783 0.0010525483294672705 1.131723282640088 0.0012376308496955012']
['59866.4634139908 2.8409281332994185 0.0006506080779355194 0.32533881861951 0.00020025327348062306 0.0008702400195457576 5.356520730214171e-07 1.7087122826654937 0.0010517503859276422 1.1322158506339248 0.001236717326382183']
['59866.46344552876 2.84706532825352 0.0006511001527984647 0.3266662862853813 0.00020046330796924124 0.0008737908269544648 5.362138886026501e-07 1.7156842767089355 0.0010528535082418133 1.1313810515445846 0.0012379143422673793']
['59866.463477066725 2.848079909249357 0.0006512150923701165 0.32669435079069314 0.00020045216869095004 0.0008738658959417893 5.361840924479859e-07 1.7158316743208675 0.0010527950036289394 1.1322482349284895 0.0012379250446600868']
['59866.46350860469 2.846193561539424 0.0006510920701364862 0.32625172716031325 0.0002003818553710155 0.00087268193394676 5.359960132474349e-07 1.7135069703797965 0.0010524257109822243 1.1326865911596273 0.0012375462661779783']
['59866.46354014265 2.84215480008786 0.0006507358229525652 0.32572799300459165 0.00020029047245737744 0.0008712810115980348 5.3575157555971e-07 1.7107562657804185 0.0010519457587047137 1.1313985343074413 0.001236950682335633']
['59866.463571680615 2.842510070010694 0.0006508110901712689 0.3255318002248242 0.00020026218934447097 0.0008707562208299856 5.356759218248345e-07 1.7097258415169339 0.0010517972129436503 1.1327842284937601 0.0012368639586656028']
['59866.46360321857 2.8409191305143304 0.0006506479743325298 0.3253206194772347 0.00020022863283111547 0.000870191339151587 5.355861624135158e-07 1.7086166989350562 0.0010516209707516569 1.1323024315792742 0.0012366282596753485']
['59866.46363475654 2.844547239212704 0.0006509803798989263 0.32582987317344975 0.00020032544972865905 0.0008715535281102499 5.358451353180349e-07 1.7112913507008916 0.0010521294628606044 1.1332558885118122 0.001237235572408381']
['59866.463666294505 2.846853207749362 0.0006511480408714137 0.32619517260879993 0.0002003552233563196 0.0008725306577042779 5.359247759905719e-07 1.7132099401722687 0.0010522858369554603 1.1336432675770933 0.0012374567684520271']
['59866.46369783246 2.8461067821390915 0.0006510749564869173 0.32613205384674837 0.00020037092024179385 0.0008723618230323057 5.359667631656034e-07 1.7128784340690568 0.0010523682785808502 1.1332283480700347 0.0012374884212499376']
['59866.46372937043 2.8463128548124894 0.0006510712538270374 0.32658062976845426 0.0002004397886325425 0.0008735617066506501 5.361509773640981e-07 1.7152344000444029 0.0010527299823137738 1.1310784547680865 0.0012377940835301602']
['59866.463760908395 2.8440014186290306 0.0006508752027622293 0.3259511848723947 0.00020034621340199538 0.0008718780214975099 5.359006755070807e-07 1.7119284919768631 0.0010522385157667826 1.1320729266521674 0.0012372729786243029']
['59866.46379244635 2.8406098789925704 0.0006506050454497697 0.32533547025869214 0.00020025217531619165 0.0008702310631058346 5.356491355710376e-07 1.7086946967368286 0.0010517446182573094 1.1319151822557418 0.001236710826021148']
['59866.46382398432 2.8466296818099313 0.0006510697374685274 0.32648936202991435 0.00020041165637522525 0.0008733175770416847 5.360757271487641e-07 1.714755052678122 0.0010525822288614773 1.1318746291318094 0.0012376676256420109']
['59866.46385552228 2.842260635575798 0.0006507647694943006 0.32539862884605686 0.00020024883693816115 0.0008704000043054615 5.356402058338029e-07 1.7090264120066014 0.0010517270847592499 1.1332342235691963 0.0012367799505292607']
['59866.46388706024 2.8471710823450653 0.0006511804706940869 0.3266645638031371 0.0002004477181961835 0.0008737862195332286 5.361721879397287e-07 1.7156752300584932 0.001052771629181636 1.1314958522865721 0.0012378869530870452']
['59866.46391859821 2.841044100199869 0.0006506325533519114 0.32558380475205595 0.00020028456106963865 0.0008708953263353988 5.357357633482954e-07 1.709998974538109 0.001051914711500203 1.13104512566176 0.0012368699526432774']
['59866.46395013617 2.8468125783717095 0.0006511545396044091 0.32635630163152785 0.00020039909123987937 0.000872961657375584 5.360421170075722e-07 1.7140562060479405 0.0010525162355035681 1.132756372323769 0.001237656115585437']
['59866.46398167413 2.8468420606375267 0.0006511523669164656 0.326480546142901 0.00020042289556464665 0.000873293995663602 5.361057905530121e-07 1.7147087507505305 0.001052641258217682 1.1321333098869961 0.0012377612950173471']
['59866.4640132121 2.844924399825076 0.0006509789361047839 0.32585818535952443 0.00020032104442080823 0.0008716292596121579 5.358333516790382e-07 1.7114400491571662 0.0010521063257395392 1.1334843506679098 0.001237215137279394']
['59866.46404475006 2.8479383461537577 0.0006512145096451366 0.32643523975012734 0.00020039287991458084 0.0008731728068171552 5.360255025012795e-07 1.7144707970069715 0.001052483612996748 1.1334675491467863 0.0012376599263121694']
['59866.46407628802 2.8441919769413797 0.0006509193211506341 0.3256352692506954 0.00020027847582954785 0.0008710329873329151 5.357194861039198e-07 1.7102692712746608 0.0010518827512056086 1.133922705666719 0.001236993647894395']
['59866.46410782598 2.844377437665413 0.0006509433992122791 0.3258338237395063 0.00020032631815431563 0.0008715640953727023 5.358474582463702e-07 1.711312099472197 0.001052134023919725 1.1330653381932159 0.0012372199938844948']
['59866.46413936395 2.840898301038611 0.0006506277893519423 0.325711315506398 0.00020031494188845953 0.0008712364014085233 5.358170281800689e-07 1.7106686738781407 0.0010520742746242622 1.1302296271604704 0.0012370031526245853']
['59866.46417090191 2.840388062533932 0.0006505985649692925 0.32516930932253085 0.0002002095934918709 0.0008697866037051818 5.355352345991633e-07 1.707822002744385 0.001051520974222011 1.1325660597895473 0.001236517226717408']
['59866.46420243987 2.8461708717807723 0.0006510668016925533 0.32632094569891773 0.0002004131714059541 0.0008728670847462979 5.360797796635444e-07 1.7138705131245682 0.0010525901859556412 1.1323003586562042 0.0012376728484685693']
['59866.46423397784 2.8439270378517825 0.0006509041995563381 0.32599185278786147 0.00020035140424906782 0.0008719868030062793 5.359145603637262e-07 1.7121420839698607 0.0010522657786190537 1.1317849538819218 0.001237311418298902']
['59866.464265515795 2.846841117092931 0.0006511206522525154 0.3261141675576783 0.0002003493040770394 0.0008723139794807246 5.359089426702865e-07 1.7127844934752012 0.0010522547483037784 1.1340566236177296 0.001237415920019453']
['59866.46429705376 2.840571002410559 0.0006506166305118835 0.325389359689599 0.00020027661262555423 0.0008703752104891831 5.357145022698766e-07 1.7089777294621797 0.001051872965470348 1.1315932729483793 0.0012368260732156403']
['59866.46432859173 2.8466623804039415 0.0006510980291930889 0.32656791421337267 0.00020044332896836082 0.0008735276941557696 5.361604473127652e-07 1.7151676166668735 0.0010527485765145003 1.131494763737068 0.0012378239814175645']
['59866.464360129685 2.846140583343913 0.0006510671304247823 0.3262546205403479 0.000200369447170888 0.0008726896733708736 5.359628228880204e-07 1.7135221667035079 0.0010523605418639077 1.132618416640405 0.0012374777244022043']
['59866.46439166765 2.840386892998174 0.0006506073232276247 0.3251889789715321 0.00020021237732894856 0.0008698392175180797 5.355426810097797e-07 1.7079253097244333 0.0010515355952150662 1.1324615832737408 0.0012365342684461755']
['59866.464423205616 2.8416344959810704 0.0006507364952997094 0.32531497381314844 0.00020023263329939844 0.0008701762377171944 5.355968631580858e-07 1.7085870473379647 0.0010516419816144877 1.1330474486431057 0.0012366927038714975']
['59866.464454743575 2.8414306601639274 0.000650650052830828 0.32557454387728163 0.00020028600275226777 0.0008708705546715722 5.357396196662247e-07 1.7099503354899246 0.0010519222833627509 1.1314803246740028 0.0012368855975731397']
['59866.46448628154 2.8467413541228224 0.0006511198438404344 0.3262664203900554 0.00020039451045061687 0.0008727212364701793 5.360298639780867e-07 1.7135841407040724 0.0010524921767364334 1.13315721341875 0.0012376174017579857']
['59866.4645178195 2.8466957588441177 0.0006510953662604307 0.32638990193886686 0.00020037084162729217 0.0008730515339302464 5.35966552881796e-07 1.7142326782503514 0.0010523678656895598 1.1324630805937663 0.0012374988083637913']
['59866.464549357464 2.8417859270184946 0.0006507180695022983 0.3255620008000758 0.000200266705257591 0.0008708370035331035 5.356880013188786e-07 1.7098844579835917 0.0010518209309747428 1.131901469034903 0.0012368351857920976']
['59866.46458089543 2.8411802389788074 0.0006507220003722742 0.32515092380518396 0.00020022840620646578 0.0008697374247813656 5.355855562213608e-07 1.707725440153277 0.0010516197804961438 1.1334547988255304 0.0012366661976860416']
['59866.46461243339 2.84462932306868 0.0006509771339336737 0.3259073201176127 0.0002003385803239044 0.0008717606888495928 5.358802579926405e-07 1.7116981098614115 0.0010521984260709267 1.1329312132072686 0.0012372925105772828']
['59866.464643971354 2.8442594466470084 0.0006509632523793872 0.3256361791791597 0.000200275771513154 0.0008710354212759899 5.35712252401033e-07 1.7102740503107128 0.001051868547863204 1.1339853963362956 0.0012370046879184393']
['59866.46467550932 2.847358019403769 0.0006511907228929509 0.32661926787986123 0.00020045045170613028 0.0008736650586913586 5.361794997316619e-07 1.715437331301792 0.0010527859858515246 1.131920688101977 0.0012379045559279644']
['59866.46470704728 2.8410393286547593 0.0006506785365841123 0.3256279579676311 0.0002002919877828655 0.0008710134305793012 5.357556288629338e-07 1.7102308716787349 0.0010519537173469828 1.1308084569760244 0.0012369273145223117']
['59866.464738585244 2.8466847689993013 0.0006511546396487448 0.3260796702032489 0.00020036091466294945 0.0008722217034390266 5.359399995129718e-07 1.7126033098910132 0.0010523157282717934 1.1340814591082882 0.0012374856591913627']
['59866.4647701232 2.8412506153196304 0.000650649108154691 0.3251369340141163 0.00020020460024951033 0.0008697000038670591 5.355218783100248e-07 1.7076519643598547 0.0010514947492096132 1.1335986509597757 0.0012365215200544964']
['59866.46480166117 2.840947478360334 0.0006507245810304478 0.32516047753490157 0.0002001950773309969 0.000869762979794971 5.354964057124773e-07 1.7077756173051555 0.0010514447338812864 1.1331718610551784 0.0012365187053837645']
['59866.464833199134 2.843581249795469 0.0006508513467005295 0.325703466148035 0.00020027548912440805 0.0008712154053718248 5.357114970470028e-07 1.7106274482564865 0.001051867064729034 1.1329538015389826 0.0012369445409409294']
['59866.46486473709 2.846537772755411 0.0006510845332348792 0.3261695489909755 0.00020035927154073198 0.0008724621177809728 5.359356043697279e-07 1.7130753623475605 0.0010523070984282143 1.1334624104078503 0.0012374414324807814']
['59866.46489627506 2.84654799631691 0.000651092088261653 0.326378912699948 0.00020040750140088738 0.0008730221391118471 5.360646131201205e-07 1.7141749616593909 0.0010525604065172657 1.1323730346575192 0.0012376608246061243']
['59866.464927813024 2.8420552420996006 0.0006507444716976175 0.3255939755487444 0.00020031541177810042 0.0008709225319247796 5.358182850751791e-07 1.7100523925879436 0.00105207674253204 1.132002849511657 0.001237066626993809']
['59866.46495935098 2.843521102066637 0.0006508444910567096 0.3260781152224908 0.00020036765398219618 0.0008722175440629919 5.35958026336017e-07 1.712595142975267 0.0010523511238560725 1.1309259590913698 0.0012373525930065392']
['59866.46499088895 2.8414938801663103 0.0006507187616399577 0.32520456111942375 0.00020022373130338305 0.0008698808977846503 5.355730514493592e-07 1.7080071487364694 0.0010515952274337346 1.133486731429841 0.0012366436144304665']
['59866.465022426906 2.8470543413988874 0.0006511087663187527 0.3268335860130902 0.00020046920651262777 0.0008742383324778732 5.362296664570536e-07 1.7165629517494234 0.0010528844879864904 1.130491389649464 0.0012379452211708328']
['59866.46505396487 2.84706500627959 0.0006511137990997719 0.32636474202202326 0.0002004249433587704 0.0008729842343481718 5.361112681422093e-07 1.7141005358299544 0.0010526520134389202 1.1329644704496356 0.0012377501528075651']
['59866.46508550284 2.847178232870085 0.0006511552893998986 0.32669447395076173 0.0002004669130076053 0.0008738662253793306 5.362235316224094e-07 1.715832321169967 0.0010528724422668348 1.131345911700118 0.0012379594462656662']
['59866.465117040796 2.8432012376363165 0.0006507963810705521 0.32581402404627546 0.0002002952761906506 0.0008715111337080066 5.357644249361086e-07 1.711208109486741 0.0010519709883962743 1.1319931281495754 0.0012370039975852793']
['59866.46514857876 2.8416851449383413 0.0006507616522972372 0.3251860295759138 0.00020022534265099956 0.0008698313282593943 5.355773615995812e-07 1.707909819201228 0.0010516036903939054 1.1337753257371133 0.00123667338038413']
['59866.46518011673 2.841515457558288 0.0006506862375165867 0.3255038532025636 0.0002002798576276173 0.0008706814660949019 5.357231822382577e-07 1.709579060937834 0.0010518900085484102 1.1319363966204539 0.00123687718459735']
['59866.465211654686 2.844313670941597 0.0006509494090385419 0.325782894067606 0.00020029100938025627 0.0008714278649687867 5.357530117602179e-07 1.7110446116996116 0.0010519485786778166 1.1332690592419854 0.001237065457164618']
['59866.46524319265 2.840690114709007 0.0006506170171435991 0.3251564978252509 0.00020021930207971748 0.0008697523345771059 5.355612038385956e-07 1.707754715468755 0.0010515719647043987 1.1329353992402522 0.001236570297212861']
['59866.46527473061 2.843287134859095 0.0006508782864559166 0.32552405139152224 0.00020025302226469032 0.0008707354936850578 5.356514010507032e-07 1.709685143863037 0.0010517490665162307 1.1336019909960582 0.0012368583761682471']
['59866.465306268576 2.840902258324143 0.0006506326725301278 0.3257700654004966 0.0002003133119545906 0.0008713935499135977 5.358126683139823e-07 1.7109772342463057 0.0010520657140472196 1.1299250240778371 0.0012369984402728171']
['59866.46533780654 2.84331230050709 0.000650817409412028 0.32555269472280196 0.00020026551729306595 0.0008708121109583315 5.356848236646537e-07 1.7098355815273214 0.0010518146916652625 1.1334767189797685 0.0012368821471735593']
['59866.4653693445 2.841691380633539 0.0006506559828282816 0.32555568925280154 0.0002002546026131819 0.0008708201209457545 5.356556282822031e-07 1.7098513091008485 0.0010517573666658714 1.1318400715326904 0.0012367484652612939']
['59866.465400882465 2.8415528367035643 0.0006507058635892365 0.3257161109268745 0.00020031524168393503 0.0008712492285492468 5.358178300948898e-07 1.7106938599100554 0.0010520758491803313 1.1308589767935089 0.0012370455583113863']
['59866.46543242043 2.846552967924514 0.0006511111522526598 0.32636685882424527 0.00020039812321080743 0.0008729898965252672 5.360395276527511e-07 1.7141116534886833 0.001052511151317266 1.1324413144358305 0.0012376289654961146']
['59866.46546395839 2.8423976813961582 0.000650749506736085 0.3257606721630808 0.00020031002676732947 0.000871368424196516 5.358038808553001e-07 1.7109279000161808 0.0010520484599124448 1.1314697813799774 0.0012370452225045796']
['59866.465495496355 2.8413911616876204 0.0006506787731640782 0.3255741803515376 0.0002002799758756027 0.0008708695822863772 5.357234985366004e-07 1.7099484262160591 0.0010518906295987538 1.1314427354715613 0.001236873785995957']
['59866.465527034314 2.8469281030697156 0.0006511636969384715 0.32660235344010047 0.00020047566376080598 0.0008736198147132484 5.362469387758155e-07 1.715348494958511 0.0010529184021050735 1.1315796081112046 0.0012380029570651595']
['59866.46555857228 2.8428692768665007 0.000650783764337311 0.3254901475784383 0.00020026248322843284 0.0008706448052910751 5.356767079271071e-07 1.7095070776178485 0.001051798756451853 1.1333621992486522 0.0012368508931955805']
['59866.465590110245 2.841754139904315 0.0006507289938813091 0.32537790390152854 0.00020026122611838774 0.0008703445677110583 5.356733453173981e-07 1.7089175625080282 0.001051792153983129 1.132836577396287 0.0012368164611850259']
['59866.4656216482 2.8436977200457947 0.0006508868872828449 0.32572605033959584 0.00020030561456473606 0.0008712758152159028 5.357920787737428e-07 1.7107460627079616 0.0010520252865794963 1.132951657337833 0.0012370977906533591']
['59866.46565318617 2.843674009428405 0.0006509032875692748 0.32579807961839274 0.00020030893611437485 0.0008714684843884721 5.358009634971669e-07 1.7111243677436596 0.0010520427316931453 1.1325496416847456 0.001237121254799571']
['59866.465684724135 2.841601280788647 0.0006507031640083509 0.3254654872566417 0.0002002494055897196 0.0008705788420622992 5.356417269044991e-07 1.7093775591210176 0.001051730071374578 1.1322237216676292 0.0012367500760800678']
['59866.46571626209 2.84428144568939 0.0006509057483198238 0.32618172804885404 0.00020040805208121416 0.000872494695213974 5.360660861200545e-07 1.713139327987679 0.001052563298745873 1.131142117701711 0.0012375652673950507']
['59866.46574780006 2.8408175375538507 0.0006506468107109406 0.32547369350989264 0.00020026134019709852 0.000870600792747495 5.356736504634607e-07 1.7094206591906127 0.0010517927531360218 1.131396878363238 0.0012367737334847354']
['59866.46577933802 2.8402968571141662 0.0006505837051267753 0.325333780090565 0.00020023178159453292 0.0008702265421207575 5.35594584955743e-07 1.7086858198033876 0.001051637508374648 1.1316110373107786 0.0012366085097543686']
['59866.46581087598 2.8461544560221634 0.0006510888839674238 0.3262020567319224 0.00020037166268196038 0.0008725490718592996 5.359687490987538e-07 1.7132460962811051 0.0010523721779514726 1.1329083597410583 0.0012374990649500594']
['59866.46584241395 2.8433249805913476 0.0006509003917027817 0.32567353364499596 0.00020029391550342122 0.0008711353397278285 5.357607852705865e-07 1.7104702397321219 0.0010519638419297333 1.1328547408592258 0.001237052644250195']
['59866.46587395191 2.841005963716102 0.0006506329084529435 0.3258104095090403 0.00020034150699098382 0.0008715014652799735 5.358880864553712e-07 1.7111891255726905 0.0010522137972215537 1.1298168381434115 0.0012371245113671208']
['59866.46590548987 2.845813806177073 0.0006510294083023173 0.3262282194059257 0.0002003781437146583 0.0008726190536894195 5.359860850380852e-07 1.7133835052832236 0.0010524062169887517 1.1324303008938492 0.0012374967216243608']
['59866.46593702784 2.8468474720547206 0.0006511145693106163 0.32650447469810046 0.0002004442821389023 0.00087335800150967 5.361629969229044e-07 1.7148344259354016 0.0010527535826623021 1.132013046119319 0.0012378369392520413']
['59866.4659685658 2.847081625909208 0.000651139594807566 0.32627075311255516 0.00020040029810576462 0.0008727328259525807 5.36045345220535e-07 1.7136068965995546 0.0010525225740848983 1.1334747293096537 0.0012376536433447208']
['59866.46600010376 2.8455187648902207 0.0006510026399837575 0.32607462260584397 0.00020033852457376533 0.0008722082017570479 5.358801088680992e-07 1.712576799400441 0.0010521981332655744 1.1329419654897797 0.0012373056812741876']
['59866.46603164172 2.84597075439577 0.00065101502142701 0.3264357779884812 0.000200418379033379 0.0008731742465363918 5.360937094055016e-07 1.714473623889082 0.0010526175369400157 1.131497130506688 0.0012376688721937204']
['59866.46606317969 2.847441865258058 0.0006511752160002501 0.3266441923852534 0.0002004545794696876 0.0008737317285776995 5.361905409749234e-07 1.7155682373175074 0.0010528076652819727 1.1318736279405506 0.0012379148363314218']
['59866.46609471765 2.8408286706218946 0.0006506907656556419 0.3251696814996848 0.00020021826041579803 0.0008697875992317995 5.355584175199096e-07 1.7078239574563279 0.001051566493780452 1.1330047131655667 0.0012366044490261382']
['59866.46612625561 2.8469411618862424 0.0006511354322637739 0.3263368236536335 0.0002004048000581446 0.0008729095562585534 5.360573873713726e-07 1.7139539057438735 0.0010525462187927763 1.1329872561423688 0.0012376715613781804']
['59866.46615779358 2.8413065978618945 0.000650714910969644 0.32548442628216406 0.00020026611156084153 0.0008706295015501853 5.356864132554773e-07 1.7094770287928784 0.0010518178128195459 1.131829569069016 0.0012368308723195443']
['59866.46618933154 2.8411321564110614 0.0006506792046459299 0.3255439127766181 0.00020026871353964656 0.000870788620367657 5.356933732183116e-07 1.7097894578603892 0.0010518314786746145 1.1313426985506723 0.001236823708896901']
['59866.4662208695 2.8400884976090275 0.0006505903048969517 0.3252866607512953 0.00020023145989155636 0.0008701005038726903 5.355937244411391e-07 1.7084383442820132 0.001051635818758174 1.1316501533270142 0.0012366105450468566']
['59866.46625240747 2.8418072875478084 0.0006507251893986307 0.3254871584971073 0.00020026932225090764 0.0008706368098781484 5.356950014436245e-07 1.7094913786612778 0.0010518346756875402 1.1323159088865307 0.0012368506203647217']
['59866.466283945425 2.8402208264097353 0.0006505634588343251 0.3253900328604356 0.00020024290798990697 0.0008703770111356737 5.3562434665024e-07 1.7089812650232965 0.0010516959453251418 1.1312395613864388 0.0012366475550389547']
['59866.46631548339 2.8485791935391522 0.0006512823825117078 0.32665608902435783 0.00020047336252831726 0.0008737635505763491 5.362407832711805e-07 1.715630719665745 0.0010529063157999857 1.1329484738734072 0.001238055108475235']
['59866.466347021356 2.8441952785036744 0.000650946492611162 0.32579082244333213 0.00020031510679996775 0.000871449072366896 5.358174692974085e-07 1.7110862523284252 0.001052075140756133 1.1331090261752492 0.0012371715475389057']
['59866.466378559315 2.8422168061958084 0.0006507523155021455 0.32597172415821224 0.00020037913408523108 0.0008719329614784416 5.359887341535835e-07 1.7120363663771652 0.001052411418514869 1.1301804398186432 0.0012373553935518618']
['59866.46641009728 2.8471648375027314 0.0006511446294903323 0.3265789349057935 0.00020044980697599908 0.0008735571731082918 5.36177775160446e-07 1.7152254984547979 0.0010527825996638608 1.1319393390479335 0.0012378774295822262']
['59866.466441635246 2.8442899669514086 0.0006509368595399765 0.3257025367538886 0.00020029680134142427 0.0008712129193605226 5.357685045207235e-07 1.7106225669847093 0.0010519789986419342 1.1336673999666993 0.0012370847217112713']
['59866.466473173205 2.8402372688333677 0.00065057351433107 0.3252152593353122 0.0002002090994394613 0.0008699095141534051 5.355339130717156e-07 1.7080633368451272 0.0010515183794089355 1.1321739319882405 0.0012365018397818392']
['59866.46650471117 2.8433582798606416 0.000650834666424961 0.3258277763815879 0.00020030821942028298 0.0008715479194583264 5.357990464314962e-07 1.711280338138592 0.0010520389675435031 1.1320779417220497 0.0012370819504990322']
['59866.46653624913 2.843220065875779 0.0006507836718201832 0.3257815557494052 0.00020031474669090005 0.0008714242851375751 5.358165060513887e-07 1.7110375827174644 0.0010520732494269961 1.1321824831583147 0.0012370842775121017']
['59866.466567787094 2.8466135826235637 0.0006511399321877374 0.32645347872840036 0.0002004160525918427 0.0008732215937675602 5.360874864698661e-07 1.7145665899600862 0.0010526053182344682 1.1320469926634775 0.001237724188688634']
['59866.46659932506 2.8409709384018593 0.0006506188614872688 0.3255139993141365 0.00020026909212655762 0.0008707086056547337 5.356943858902155e-07 1.7096323493389523 0.001051833467051248 1.131338589062907 0.0012367936551147239']
['59866.46663086302 2.841736704321387 0.0006507509238102776 0.3254916714816072 0.0002002698658990981 0.0008706488815385056 5.356964556334869e-07 1.709515081310962 0.0010518375309826581 1.132221623010425 0.0012368665879647748']
['59866.466662400984 2.8408065275809227 0.0006506484144956725 0.32535369974632394 0.00020023511831225536 0.0008702798246699797 5.356035102518644e-07 1.7087904398441385 0.0010516550331526018 1.1320160877367842 0.0012366574578438982']
['59866.46669393895 2.847179566405729 0.0006512155037170826 0.32627103821004155 0.00020039281609233206 0.0008727335885521476 5.3602533178487e-07 1.7136083939603024 0.001052483277795862 1.1335711724454267 0.0012376601643106298']
['59866.46672547691 2.84078903552023 0.000650634856568833 0.3253610313637654 0.0002002593694743648 0.0008702994358154698 5.356683790304433e-07 1.7088289462382635 0.0010517824027014959 1.1319600892819663 0.0012367586422640747']
['59866.466757014874 2.842784369102845 0.0006508092790300248 0.32552300986609267 0.0002002714440275838 0.0008707327077368146 5.35700676926753e-07 1.7096796736664532 0.001051845819472604 1.133104695436392 0.0012369043397181425']
['59866.46678855283 2.8421407368181275 0.0006507544856803676 0.32566873078508446 0.000200297591613006 0.0008711224926875614 5.357706183968347e-07 1.7104450146275445 0.0010519831492279727 1.131695722190583 0.0012369922986392127']
['59866.4668200908 2.84040376581116 0.0006505707978163109 0.3251433832580195 0.0002002175915130855 0.0008697172547754019 5.355566282901088e-07 1.7076858364391783 0.0010515629806359533 1.1327179293719818 0.0012365383395654668']
['59866.466851628764 2.8464763340728405 0.0006510792109906823 0.3262849589247657 0.00020038197873416163 0.0008727708246960085 5.359963432281828e-07 1.7136815069578033 0.0010524263588979079 1.1327948271150372 0.0012375400518315992']
['59866.46688316672 2.8406784773494955 0.000650655261025233 0.32559875543050987 0.00020027838766163093 0.0008709353175014243 5.357192502659399e-07 1.7100774970089805 0.001051882288138818 1.130600980340515 0.0012368543231924968']
['59866.46691470469 2.8429166735907634 0.0006508364302379503 0.32559910466024333 0.00020030278148993694 0.0008709362516466068 5.35784500658475e-07 1.710079331198757 0.0010520104069849628 1.1328373423920064 0.0012370585900956937']
['59866.466946242654 2.8412201018285645 0.0006506614621281357 0.3255743361396117 0.0002002977483123141 0.0008708699989996891 5.35771037547582e-07 1.7099492444307336 0.0010519839722285406 1.131270857397831 0.0012369440634581914']
['59866.46697778061 2.842425685445329 0.0006507644054465076 0.32557577112755975 0.00020028305183159652 0.0008708738374101969 5.357317263282163e-07 1.7099567811321417 0.0010519067848298136 1.1324689043131873 0.0012369325751095499']
['59866.46700931858 2.8398133078013235 0.0006505447536581527 0.32536380513645563 0.0002002364514191897 0.0008703068553051281 5.356070761436001e-07 1.708843514372141 0.001051662034764652 1.1309697934291825 0.0012366088758687908']
['59866.467040856536 2.8464533210237066 0.000651064193051408 0.32651639015781775 0.00020044869448222844 0.0008733898738510686 5.36174799380904e-07 1.7148970071313958 0.001052776756734393 1.1315563138923108 0.001237830151108733']
['59866.4670723945 2.8437995117262416 0.0006508500709768704 0.32576308715490326 0.00020028854653880636 0.0008713748839929206 5.357464239721371e-07 1.710940583796761 0.001051935643586168 1.1328589279294805 0.0012370021880084299']
['59866.46710393247 2.8465370112545294 0.0006511026996549838 0.3261435028059711 0.00020035497288372969 0.0008723924475441301 5.359241060082056e-07 1.7129385651574112 0.0010522845214481602 1.1335984460971182 0.001237431791888907']
['59866.467135470426 2.8458673667539105 0.0006510544885054971 0.32607770536967445 0.00020037174777543017 0.0008722164477587622 5.359689767129781e-07 1.7125929903869457 0.0010523726248709568 1.1332743763669648 0.00123748134878104']
['59866.46716700839 2.8410474355546227 0.0006506324145848349 0.3255370824430592 0.00020025900860073275 0.0008707703500928862 5.35667413739311e-07 1.7097535842597646 0.0010517805073567898 1.131293851294858 0.0012367557457170753']
['59866.46719854636 2.840733846389396 0.0006506230531340159 0.32527430769834353 0.0002002219065475437 0.0008700674610249668 5.355681704592455e-07 1.7083734648022246 0.0010515856436320574 1.1323603815871714 0.0012365851055072905']
['59866.467230084316 2.847274617842775 0.00065114565313766 0.3265314441966374 0.0002004261365840168 0.000873430141492945 5.361144598681956e-07 1.714976072461331 0.0010526582803782397 1.1322985453814438 0.0012377722394887286']
['59866.46726162228 2.8434736500995346 0.0006508309203572114 0.3257611533258805 0.00020029763299691394 0.0008713697112458943 5.357707290935324e-07 1.7109304271317256 0.0010519833665804303 1.132543222967809 0.0012370326957905804']
['59866.46729316024 2.8409300999371174 0.0006506260515226402 0.32543544573190986 0.00020025814057452823 0.0008704984847991211 5.356650918794592e-07 1.7092197780037282 0.0010517759483956316 1.1317103219333893 0.0012367485211406042']
['59866.467324698206 2.846725162130351 0.0006511399894222027 0.3265523439518191 0.0002004259860934161 0.0008734860456836437 5.361140573249521e-07 1.7150858400830835 0.0010526574899864293 1.1316393220472676 0.0012377685878423622']
['59866.46735623617 2.8401330626502794 0.0006505647357093172 0.32514131132838675 0.00020022173139027744 0.0008697117126267835 5.355677019358044e-07 1.7076749544558127 0.001051584723688432 1.1324581081944667 0.001236553640746494']
['59866.46738777413 2.8416696572629223 0.0006507480289368616 0.32512785893765006 0.00020019340894422835 0.0008696757291901088 5.35491942989768e-07 1.7076043011431201 0.0010514359713457372 1.1340653561198022 0.001236523594196635']
['59866.467419312095 2.8413227514461843 0.000650645661185725 0.32567697172728916 0.00020031862158113382 0.0008711445361613028 5.358268708906264e-07 1.710488296887023 0.001052093600741249 1.1308344545591613 0.0012370289896120044']
['59866.46745085006 2.8463097909162793 0.0006510507568960916 0.32632277238708074 0.00020038215146948646 0.000872871970905132 5.359968052732382e-07 1.713880107075004 0.0010524272661212525 1.1324296838412753 0.001237525853681622']
['59866.46748238802 2.8479673247383843 0.0006512152035312092 0.3270715854189683 0.00020052598907559544 0.0008748749506610401 5.363815526012172e-07 1.7178129486290352 0.0010531827157331695 1.130154376109349 0.0012382548501941304']
['59866.467513925985 2.8460635789620756 0.0006510472684763587 0.32612653347402754 0.0002003615499845277 0.0008723470567364027 5.359416989175034e-07 1.7128494405148507 0.0010523190650447885 1.133214138447225 0.0012374320023529639']
['59866.467545463944 2.8474500346910623 0.0006511729488419152 0.3265746388655573 0.00020045884131129744 0.0008735456817462866 5.362019408599466e-07 1.7152029352182634 0.0010528300489038732 1.132247099472799 0.0012379326803903382']
['59866.46757700191 2.8442291069858134 0.0006509319577162309 0.3256976009762756 0.0002003056603857738 0.0008711997167822853 5.357922013391991e-07 1.71059664378296 0.001052025527236207 1.1336324632028534 0.0012371217092642518']
['59866.467608539875 2.8430284840840114 0.0006508102700706857 0.32598440115665506 0.00020034526149020134 0.0008719668708392104 5.358981292639308e-07 1.7121029472513396 0.001052233516230049 1.1309255368326718 0.001237234569638002']
['59866.46764007783 2.8415357774223944 0.0006507122639481253 0.3251775588368341 0.0002002086008206269 0.000869808670108198 5.355325793296616e-07 1.7078653300253892 0.0010515157606125363 1.1336704473970052 0.0012365726202973504']
['59866.4676716158 2.843416902875905 0.0006508539917559112 0.32564889035860217 0.0002002703490040103 0.0008710694220665916 5.356977478777694e-07 1.7103408107069444 0.0010518400682983735 1.1330760921689607 0.0012369229757193982']
['59866.467703153765 2.8410429324592985 0.0006506352322302866 0.32527935815492404 0.00020021116984110944 0.000870080970354877 5.355394511331692e-07 1.7083999903094753 0.0010515292533671715 1.1326429421498232 0.0012365435601329538']
['59866.46773469172 2.844208656425211 0.0006509744896765025 0.32567235660192 0.00020029755115667677 0.0008711321912870929 5.357705101812922e-07 1.7104640577831933 0.001051982936747252 1.1337445986420178 0.0012371078713745846']
['59866.46776622969 2.8469759965823056 0.0006510991623814913 0.3264925880156252 0.00020043128667638686 0.0008733262061437388 5.361282357111884e-07 1.7147719958803844 0.0010526853291827041 1.1322040007019212 0.0012377707871534123']
['59866.46779776765 2.8420796843458556 0.0006507441769004709 0.3253966252473477 0.00020022260794004215 0.0008703946449333852 5.355700465950972e-07 1.7090158889041371 0.0010515893274161878 1.1330637954417184 0.0012366519709706128']
['59866.46782930561 2.8470096418119506 0.0006511012801484241 0.32657284544351817 0.00020042236555691984 0.0008735408845701087 5.361043728496576e-07 1.7151935159848644 0.001052638474563655 1.1318161258270862 0.0012377320530480799']
['59866.46786084358 2.8411153514052776 0.0006506643990816182 0.32536626643248806 0.00020026235213236026 0.0008703134389594134 5.35676357261763e-07 1.7088564413471012 0.0010517980679220602 1.1322589100581764 0.0012367875063715764']
['59866.46789238154 2.8437641688477373 0.0006508640029193847 0.3258299524533578 0.0002003348186592111 0.0008715537401739349 5.358701960173431e-07 1.7112917670869634 0.0010521786694286297 1.132472401760774 0.0012372161907673398']
['59866.4679239195 2.8423489145702647 0.0006507776187911149 0.325827761354681 0.00020034183382482883 0.0008715478792632591 5.358889606943964e-07 1.7112802592157617 0.0010522155137858659 1.131068655354503 0.001237202083966515']
['59866.46795545747 2.8457597765538596 0.0006510275940085712 0.32661669554077805 0.00020045459816291745 0.0008736581780110158 5.361905909769391e-07 1.7154238211175319 0.001052807763460701 1.1303359554363277 0.0012378372732163594']
['59866.46798699543 2.8439344150149095 0.0006509232489174942 0.32564798600148304 0.00020028194135534352 0.0008710670030261574 5.357287559452777e-07 1.710336060932159 0.0010519009524965523 1.1335983540827506 0.0012370111922874666']
['59866.46801853339 2.8402994540416877 0.0006505700324249022 0.32519483532206567 0.0002002257341195299 0.0008698548825119603 5.355784087281807e-07 1.707956067867992 0.0010516057464261025 1.1323433861736958 0.0012365743054930983']
['59866.46805007135 2.8424104653747735 0.0006507699778446175 0.3259326277713801 0.00020035049422496208 0.000871828383609175 5.359121261648226e-07 1.71183102821103 0.0010522609990806832 1.1305794371637434 0.0012372367494744736']
['59866.46808160932 2.8478660092798456 0.0006511831070304295 0.32680305530082143 0.00020047408437344388 0.0008741566667001641 5.362427141152149e-07 1.7164026013698606 0.0010529101070033818 1.131463407909985 0.0012380061115809069']
['59866.46811314728 2.8408236646574627 0.000650653032980678 0.32538905092116205 0.0002002395450439326 0.00087037438457283 5.356153511968758e-07 1.7089761077792125 0.0010516782827937638 1.1318475568782502 0.0012366796593406859']
['59866.46814468524 2.8461882968514276 0.0006510864077258836 0.3261453579177545 0.00020037492450357503 0.0008723974097325388 5.359774740572993e-07 1.712948308391568 0.001052389309367516 1.1332399884598596 0.001237512330765408']
['59866.46817622321 2.842989174306658 0.0006508110717129555 0.3255873598134361 0.000200288332579606 0.0008709048356730736 5.357458516584504e-07 1.7100176460789713 0.0010519345198508718 1.1329715282276869 0.0012369807133169254']
['59866.46820776117 2.8466083008057534 0.0006511041702372061 0.32635780243016477 0.00020042504762959586 0.0008729656718213261 5.361115470534243e-07 1.7140640883937226 0.0010526525610798103 1.1325442124120308 0.001237745553354228']
['59866.46823929913 2.847694337109063 0.0006511729893238644 0.32649100240008694 0.00020040931102388086 0.0008733219648235581 5.360694536317935e-07 1.7147636680676837 0.0010525699108397105 1.1329306690413794 0.0012377114684893622']
['59866.4682708371 2.843652886117453 0.0006509017807407802 0.3256033017536145 0.00020027020365649898 0.0008709474783383151 5.356973590916368e-07 1.710101374756379 0.001051839304918587 1.133551511361074 0.0012369474732352764']
['59866.468302375055 2.8415977886658306 0.0006506975306853323 0.32530777253810095 0.00020023521591852207 0.0008701569752210536 5.356037713362312e-07 1.7085492255152361 0.0010516555457905571 1.1330485631505944 0.0012366837362203901']
['59866.46833391302 2.840574577398871 0.0006505860643344135 0.3252407681076257 0.00020022880478780912 0.0008699777468795546 5.355866223758317e-07 1.7081973114896307 0.0010516218738855522 1.1323772659092404 0.0012365964550898171']
['59866.468365450986 2.840292810570886 0.0006505695100667072 0.32538023952443623 0.00020025530836478297 0.0008703508152056962 5.356575160781006e-07 1.7089298294350643 0.0010517610733444484 1.1313629811358215 0.0012367061263012737']
['59866.468396988945 2.8418261381949943 0.0006506639859192883 0.32573128535886514 0.00020031871057077562 0.0008712898182275648 5.358271089266159e-07 1.710773557557065 0.0010520940681238216 1.1310525806379292 0.0012370390255580898']
['59866.46842852691 2.8476937766563224 0.0006511849856737932 0.3264121544348784 0.00020039371071641187 0.0008731110565308577 5.360277247906601e-07 1.7143495506033533 0.0010524879764517432 1.1333442260529691 0.0012376481027103236']
['59866.468460064876 2.8465359015052947 0.0006511202842469258 0.3261725666167141 0.00020038619573578686 0.0008724701895465644 5.360076231719422e-07 1.7130912112222383 0.0010524485070156876 1.1334446902830564 0.001237580496160693']
['59866.468491602835 2.8415166370171505 0.0006506699653013669 0.32565492597990237 0.00020029539201231447 0.0008710855665870043 5.357647347443493e-07 1.7103725103986471 0.0010519715967033324 1.1311441266185034 0.0012369380113877336']
['59866.4685231408 2.840829385310714 0.0006506750050896958 0.3251722111198874 0.00020019619682345037 0.0008697943656445624 5.354994002126071e-07 1.7078372432767197 0.001051450613568542 1.1329921420339941 0.0012364976162622145']
['59866.46855467876 2.8418031897947436 0.0006507310223052527 0.32550186573189543 0.00020025348619909206 0.0008706761498632871 5.35652642016305e-07 1.7095686225414677 0.001051751503146492 1.1322345672532759 0.0012367829590357981']
['59866.468586216724 2.8419544831739225 0.0006507370759010221 0.32574593360786197 0.00020030960442758215 0.0008713290004332033 5.358027511501161e-07 1.7108504916379308 0.001052046241741503 1.1311039915359917 0.0012370367968312962']
['59866.46861775469 2.8469972403096797 0.0006511575692684249 0.3266372282527227 0.00020048097867222776 0.0008737131004076724 5.362611554888386e-07 1.7155316609911906 0.0010529463165558182 1.1314655793184891 0.001238023475368714']
['59866.46864929265 2.8464583430822703 0.0006511276101327198 0.32636152045517475 0.000200400460741411 0.0008729756170660131 5.360457802502332e-07 1.714083615836002 0.0010525234282637132 1.1323747272462683 0.0012376480645648613']
['59866.468680830614 2.841608032424272 0.0006506838780227268 0.32557357843461665 0.00020026805955335365 0.0008708679722350612 5.356916238880388e-07 1.7099452648876927 0.0010518280438726558 1.1316627675365794 0.0012368232464647778']
['59866.46871236858 2.841213118353049 0.0006506736955020215 0.3254511059685451 0.00020027559196689903 0.0008705403739431629 5.357117721376045e-07 1.70930202714572 0.0010518676048681672 1.131911091207329 0.00123685153360836']
['59866.46874390654 2.840533250540754 0.0006506073113164174 0.3254221622535199 0.00020026189326031543 0.0008704629531815209 5.356751298373231e-07 1.709150011835714 0.001051795657879808 1.1313832387050402 0.0012367554242748223']
['59866.468775444504 2.841806325268834 0.0006507322289607076 0.3255656389182342 0.00020029573774732416 0.0008708467350371111 5.357656595415894e-07 1.7099035657470285 0.0010519734125384672 1.1319027595218056 0.0012369723095106047']
['59866.46880698246 2.846127313649709 0.0006510484221690222 0.32639152191785853 0.00020040518981628724 0.0008730558671683007 5.360584299249022e-07 1.7142411865433749 0.0010525482658418448 1.131886127106334 0.0012376275287563087']
['59866.46883852043 2.845497446694483 0.0006509885567040951 0.32653334305581283 0.0002004242212646428 0.0008734352207000712 5.361093366321289e-07 1.714986045461202 0.001052648220927746 1.130511401233281 0.0012376810485670488']
['59866.468870058394 2.840343199014014 0.0006505888338362727 0.32552080806819095 0.00020026499663246795 0.0008707268182070709 5.356834309636815e-07 1.7096681096018433 0.001051811957103298 1.1306750894121707 0.0012367595658889852']
['59866.46890159635 2.8412234801009006 0.00065066601208196 0.3251586212022535 0.000200217740268109 0.0008697580143409043 5.355570261909037e-07 1.7077658676588945 0.0010515637619123372 1.1334576124420062 0.001236589100973265']
['59866.46893313432 2.8474046041717918 0.0006511760018291288 0.3265354106410588 0.00020044605249987517 0.0008734407512280065 5.361677324136588e-07 1.7149969046274096 0.0010527628807766554 1.1324076995443821 0.001237877162120431']
['59866.46896467228 2.8405607273277313 0.0006506089461551072 0.32544891734290204 0.00020026289097146478 0.0008705345196475383 5.356777985879314e-07 1.709290532263141 0.001051800897959374 1.1312701950645903 0.0012367607407114784']
['59866.46899621024 2.841159149466581 0.0006506414981907688 0.32553131569521176 0.00020027909562305528 0.0008707549247748109 5.357211439728341e-07 1.7097232967185494 0.0010518860064236098 1.1314358527480317 0.0012368502454532394']
['59866.46902774821 2.8437190997290536 0.0006508515885210404 0.325854282890577 0.00020032653874350187 0.0008716188210033638 5.35848048294427e-07 1.711419552996728 0.0010521351824763754 1.1322995467323256 0.001237172676906889']
['59866.469059286166 2.841856368699051 0.0006507080129468595 0.3257323443691125 0.00020028572256482075 0.000871292650945475 5.357388702003897e-07 1.7107791195856752 0.001051920811790025 1.1310772491133756 0.001236914836353027']
['59866.46909082413 2.8442576771540713 0.0006509128533861805 0.3258863662868433 0.00020034761150107503 0.0008717046400135649 5.359044152445505e-07 1.7115880582292191 0.0010522458587241337 1.1326696189248522 0.0012372990301076894']
['59866.4691223621 2.848188791894068 0.000651248209287054 0.3266822312360789 0.00020046497161104032 0.0008738334776724629 5.362183386331687e-07 1.7157680211978936 0.0010528622458563044 1.1324207706961744 0.0012379996522007492']
['59866.469153900056 2.842304605421666 0.0006507229793373735 0.3258217535935886 0.00020032743165042404 0.0008715318092653637 5.358504367070385e-07 1.7112487058486798 0.0010521398721135718 1.1310558995729862 0.0012371090114977222']
['59866.46918543802 2.8436984664606886 0.0006508594329665289 0.3260129474096342 0.00020034711259090497 0.0008720432284403597 5.359030807232106e-07 1.7122528750505999 0.0010522432383976103 1.1314455914100887 0.0012372686992868612']
['59866.46921697599 2.840556051143221 0.0006505865988373283 0.32525752378775347 0.0002002540251237507 0.0008700225661958101 5.356540835713198e-07 1.7082853140113103 0.0010517543336331446 1.1322707371319107 0.0012367093841735102']
['59866.469248513946 2.8417108619426004 0.0006507748214694103 0.325220451144228 0.00020021561333872031 0.0008699234015828594 5.355513369249236e-07 1.7080906047490967 0.0010515525910647077 1.1336202571935037 0.0012366368585940834']
['59866.46928005191 2.84096197952387 0.00065063124286168 0.3254023146335355 0.0002002249676066586 0.0008704098633188466 5.355763584036023e-07 1.7090457701341153 0.001051601720623207 1.1319162093897548 0.0012366030862833168']
['59866.46931158987 2.846565863201353 0.0006511000693969104 0.3262370753850002 0.00020038282348717126 0.0008726427423086736 5.359986028351941e-07 1.7134300177783626 0.0010524307956258994 1.1331358454229905 0.0012375547987666748']
['59866.469343127836 2.8477077125216255 0.0006512146339370567 0.3261896385443408 0.00020037548466353116 0.0008725158547847139 5.359789724140378e-07 1.7131808747076724 0.0010523922513840922 1.134526837813953 0.0012375823003853332']
['59866.4693746658 2.846868430058832 0.0006511131253809173 0.32670986319368156 0.00020044712024064828 0.0008739073896496017 5.361705884846164e-07 1.7159131470256386 0.001052768488658867 1.1309552830331933 0.001237848856991992']
['59866.46940620376 2.8426972197333344 0.0006507750547176056 0.325741577943882 0.0002003117904676021 0.000871317349585256 5.358085985295274e-07 1.7108276152514812 0.0010520577230441288 1.1318696044818533 0.0012370665400290718']
['59866.469437741725 2.846041703583592 0.0006510566063525772 0.32605389340409274 0.00020035781436517834 0.0008721527537751142 5.359317066101932e-07 1.712467927542504 0.0010522994451952646 1.1335737760410878 0.0012374202305739132']
['59866.46946927969 2.8464842846196245 0.0006510974267879259 0.32642032250374087 0.00020042602705449536 0.000873132905077664 5.361141668906367e-07 1.7143924501246897 0.001052657705118148 1.132091834494935 0.0012377463808529048']
['59866.46950081765 2.846910123273887 0.0006511542922711766 0.3263588665860434 0.00020040982723579226 0.0008729685183031463 5.360708344330941e-07 1.714069677447707 0.0010525726220367243 1.1328404458261798 0.0012377039375409784']
['59866.469532355615 2.846511253052939 0.0006511374204713883 0.3265250011801494 0.00020044376278744184 0.0008734129072421468 5.361616077237089e-07 1.7149422330890198 0.0010527508549760603 1.1315690199639192 0.0012378466395280797']
['59866.469563893574 2.8453810588543913 0.0006509734437146645 0.3263021871732368 0.00020040930145199797 0.0008728169080725628 5.360694280282225e-07 1.7137719914560756 0.0010525698605672164 1.1316090673983157 0.0012376064543287656']
['59866.46959543154 2.844551968511626 0.0006509425437874884 0.32584492657243225 0.00020033035097799032 0.0008715937940406433 5.358582455375038e-07 1.7113704126703377 0.0010521552047163358 1.1331815558412883 0.0012372375560595471']
['59866.469626969505 2.8468674268172927 0.000651152380441472 0.3264638328939842 0.00020043768063067444 0.0008732492898454468 5.361453387268316e-07 1.7146209710818499 0.001052718910875391 1.1322464557354428 0.0012378273417037065']
['59866.46965850746 2.840058488159513 0.0006505974873531965 0.32511967798676883 0.00020021683040650666 0.0008696538461855384 5.355545924266762e-07 1.707561333964122 0.001051558983227451 1.1324971541953908 0.0012365489823523545']
['59866.46969004543 2.8459153220478823 0.0006510325908533236 0.3262071798776134 0.00020039462201780584 0.0008725627756233483 5.360301624061474e-07 1.713273003558894 0.0010524927626985603 1.1326423184889884 0.0012375719978595342']
['59866.46972158339 2.841305064157207 0.0006506650573147643 0.3252365526662585 0.00020022602002530793 0.0008699664711092873 5.355791734898249e-07 1.708175171566484 0.0010516072480320794 1.133129892590723 0.0012366255783073665']
['59866.46975312135 2.841626740277221 0.0006506992242819486 0.3252565528282686 0.00020021782901635511 0.0008700199690025066 5.355572635811905e-07 1.708280214434184 0.0010515642280270754 1.133346525843037 0.0012366069731920926']
['59866.46978465932 2.848438401413649 0.0006512360307613655 0.326863861027464 0.00020046049745540956 0.0008743193142961886 5.362063708351049e-07 1.7167219591778573 0.0010528387471397563 1.1317164422357915 0.001237973261116988']
['59866.46981619728 2.840572604018308 0.0006506012309708607 0.32552413008677894 0.00020025870729548033 0.0008707357041848747 5.356666077860286e-07 1.709685557178461 0.0010517789248712204 1.130887046839847 0.001236737995108123']
['59866.46984773524 2.8433984692734384 0.0006508471350667863 0.32589760960061975 0.00020032756467109025 0.0008717347144499389 5.358507925204261e-07 1.7116471092469525 0.0010521405707515244 1.131751360026486 0.0012371749164309738']
['59866.46987927321 2.8403355133289265 0.0006505543760189728 0.3256881424316129 0.00020030836492054946 0.0008711744163766128 5.357994356262295e-07 1.710546966552589 0.001052039731725575 1.1297885467763376 0.0012369351613106705']
['59866.46991081117 2.846058208716682 0.0006510569571759306 0.32622493904635685 0.00020036788450273526 0.0008726102791442009 5.359586429491813e-07 1.7133662765039752 0.0010523523345731894 1.1326919322127067 0.001237465392473189']
['59866.46994234913 2.846196620237455 0.0006511080814977746 0.3260841953600743 0.00020037562885935227 0.0008722338076588087 5.359793581195455e-07 1.7126270764709788 0.0010523930087150855 1.1335695437664763 0.0012375268799440693']
['59866.46997388709 2.847831443094289 0.000651200890400107 0.3265015545532355 0.0002004106945055587 0.0008733501904930346 5.360731542695701e-07 1.7148190890401025 0.0010525771770249933 1.1330123540541865 0.0012377323269801902']
['59866.47000542506 2.8417071365592967 0.0006507111295680955 0.3255848940675335 0.00020026879501446358 0.0008708982401159507 5.356935911530993e-07 1.710004695732844 0.0010518319065885692 1.1317024408264527 0.0012368408684473244']
['59866.47003696302 2.8468620269972726 0.0006511589202084893 0.32643055139828014 0.00020041168940238832 0.0008731602660714167 5.360758154922305e-07 1.714446173310295 0.001052582402323468 1.1324158536869777 0.001237714689679382']
['59866.47006850098 2.8468654797231414 0.000651104919982288 0.326531516869662 0.00020042202143645828 0.0008734303358840557 5.361034523711285e-07 1.7149764541473844 0.0010526366672082893 1.131889025575757 0.0012377324306878754']
['59866.47010003895 2.8471752510735913 0.0006511457413410085 0.3262004902260085 0.00020036297998764728 0.0008725448816549369 5.359455239942281e-07 1.7132378688340784 0.0010523265755653746 1.133937382239513 0.0012374902012168337']
['59866.47013157691 2.841071281311308 0.0006507295101397297 0.3250673202447295 0.00020019046757525043 0.0008695137958753755 5.354840752013261e-07 1.7072863458231593 0.0010514205229792566 1.1337849354881486 0.0012365007122960609']
['59866.47016311487 2.840596773659251 0.0006506136064036323 0.3253236509133265 0.0002002303705258154 0.0008701994478581194 5.35590810526139e-07 1.7086326203431015 0.0010516300972994506 1.1319641533161495 0.0012366179387278808']
['59866.47019465284 2.8439588540898932 0.0006509246332039132 0.32579008162186296 0.00020032066739173048 0.0008714470907635553 5.358323431741405e-07 1.7110823614593644 0.001052104345544803 1.1328764926305288 0.0012371848819096956']
['59866.470226190795 2.846735861219176 0.0006511160698564953 0.3264720035025421 0.00020041077935340417 0.0008732711451856158 5.360733812267804e-07 1.7146638839419228 0.0010525776226544337 1.1320719772772534 0.0012376880819246132']
['59866.47025772876 2.8469199378765304 0.0006510942358158284 0.32630810174944014 0.0002003799571794158 0.000872832728812715 5.35990935825989e-07 1.7138030554067234 0.0010524157414885285 1.133116882469807 0.0012375389274061025']
['59866.47028926673 2.841923297879111 0.0006507722459699561 0.3254938137630153 0.00020028567838338335 0.0008706546118691879 5.357387520206559e-07 1.7095263327889458 0.0010519205797446605 1.1323969650901653 0.00123694843151003']
['59866.470320804685 2.840774626225319 0.0006506494281980243 0.3256235892897056 0.00020030512113150485 0.0008710017449207024 5.357907589025186e-07 1.710207926941731 0.001052022695018408 1.1305666992835879 0.0012369706662844558']
['59866.47035234265 2.8464441475078566 0.0006510538942997101 0.32629149710839567 0.00020038400256108121 0.0008727883135068243 5.360017567081528e-07 1.7137158461575404 0.001052436988240973 1.1327283013503162 0.0012375357722104632']
['59866.470383880616 2.840508033570055 0.000650645168397311 0.32520025790116736 0.0002002160057230521 0.0008698693872223526 5.355523865031757e-07 1.7079845478002489 0.0010515546519067863 1.132523485769806 0.0012365703866361864']
['59866.470415418575 2.843531002767403 0.0006508799143085727 0.3259258778392773 0.00020032440376860917 0.0008718103283980876 5.358423375077455e-07 1.7117955768869606 0.0010521239693729474 1.1317354258804422 0.0012371780428779933']
['59866.47044695654 2.8414743182312217 0.0006507104988198389 0.32540751422474967 0.00020026130394768446 0.0008704237715649606 5.356735535008819e-07 1.7090730789115003 0.0010517925627504436 1.1324012393197214 0.0012368070780568445']
['59866.4704784945 2.840781458856415 0.0006506897370744566 0.32532558321314137 0.000200241146300704 0.0008702046165147089 5.356196343553687e-07 1.708642768976583 0.0010516866927557985 1.1321386898798318 0.001236706122590834']
['59866.470510032465 2.8421983463297185 0.0006507649028549927 0.3256210188803835 0.00020026616377110862 0.0008709948694022254 5.356865529113107e-07 1.7101944268927705 0.0010518180870331337 1.132003919436948 0.001236857407706284']
['59866.47054157043 2.8389498373909015 0.000650463804009382 0.3250415202751802 0.00020019889042168456 0.0008694447842336042 5.355066052457781e-07 1.7071508417814085 0.001051464760618091 1.131798995609493 0.0012363985211686463']
['59866.47057310839 2.842042927667398 0.0006507500767335763 0.32573662086780253 0.00020031529885717345 0.0008713040900363261 5.358179830260412e-07 1.7108015801880385 0.0010520761494599447 1.1312413474793597 0.0012370690710834297']
['59866.470604646354 2.8475449148042085 0.000651209201999706 0.3266151475254122 0.00020045030320010862 0.0008736540372665208 5.361791024969152e-07 1.7154156907847282 0.0010527852058829234 1.1321292240194802 0.0012379136135025914']
['59866.47063618432 2.840340916659467 0.0006506204505050939 0.3251539637076468 0.0002002026363029133 0.0008697455561343653 5.355166250023124e-07 1.707741406027557 0.0010514844343640405 1.1325995106319098 0.00123649766935701']
['59866.47066772228 2.841735564307666 0.0006506994807645291 0.32566156945397867 0.00020030040752098345 0.0008711033370363916 5.357781505930347e-07 1.7104074025944258 0.0010519979386606274 1.13132816171324 0.001236975940434347']
['59866.470699260244 2.8407127842941886 0.000650635284990509 0.32518202837727583 0.00020021113763785405 0.0008698206255612174 5.355393649935511e-07 1.7078888045024994 0.0010515290842324269 1.1328239797916893 0.0012365434440654995']
['59866.4707307982 2.8407621245175108 0.0006506547737905126 0.3255107764962991 0.00020027978587721257 0.0008706999850263387 5.357229903150379e-07 1.7096154227746803 0.0010518896317080494 1.1311467017428305 0.0012368603122225562']
['59866.47076233617 2.843611883664736 0.0006508098464054436 0.32587625688854827 0.00020031709797098805 0.0008716775986570886 5.358227954269955e-07 1.7115349626499385 0.0010520855985871223 1.1320769210147976 0.0012371085493733767']
['59866.470793874134 2.8466399229414376 0.0006511038960951543 0.32647318093111466 0.00020040453147324112 0.000873274294657506 5.360566689408679e-07 1.7146700679155182 0.001052544808157779 1.1319698550259194 0.0012376537709271466']
['59866.47082541209 2.842110320467902 0.0006507294083935602 0.32556849750099737 0.0002002989662469852 0.000870854381382943 5.357742953681411e-07 1.7099185793119611 0.00105199036894425 1.1321917411559408 0.0012369852461932163']
['59866.47085695006 2.8474614912040965 0.0006511878585625902 0.3264583895576588 0.00020041284447904192 0.0008732347296121175 5.360789051755763e-07 1.714592382130561 0.0010525884689025313 1.1328691090735354 0.0012377350734328841']
['59866.470888488024 2.8434075379955948 0.0006508306356093983 0.3256567699540629 0.00020028284307921067 0.0008710904989836863 5.357311679420971e-07 1.7103821951368852 0.0010519056884412325 1.1330253428587096 0.0012369664884800868']
['59866.47092002598 2.842824134305535 0.0006507816381929959 0.3258154206198014 0.00020032114158347614 0.0008715148693648141 5.358336115768346e-07 1.71121544443173 0.001052106836047669 1.131608689873805 0.0012371117714529258']
['59866.47095156395 2.8471729480440127 0.0006511475214068507 0.32641010541434734 0.00020042124156044154 0.0008731055756611767 5.361013663018333e-07 1.7143387889409 0.0010526325712208065 1.1328341591031126 0.0012377513581609237']
['59866.470983101906 2.842584885373836 0.0006507687023358596 0.32584312603326526 0.00020033437669020717 0.0008715889778270524 5.358690138063907e-07 1.7113609560570655 0.0010521763481628529 1.1312239293167705 0.0012371640843369224']
['59866.47101463987 2.8410015031886955 0.0006506643304742377 0.32540208420768796 0.00020024835457211368 0.00087040924695897 5.356389155658896e-07 1.7090445599143276 0.0010517245513241265 1.131956943274368 0.0012367249503464476']
['59866.47104617784 2.840642074266297 0.0006506279670830203 0.32527736018330594 0.00020022698512977703 0.0008700756260345547 5.355817550217049e-07 1.7083894967610609 0.0010516123168580727 1.1322525775052361 0.0012366103737710544']
['59866.471077715796 2.8402319325802434 0.0006505817620901127 0.3253484737326453 0.0002002273857077856 0.000870265845747129 5.355828265170017e-07 1.7087629922933054 0.0010516144207341682 1.131468940286938 0.0012365878533530628']
['59866.47110925376 2.8435267371138293 0.0006508617101637015 0.3255552572239881 0.0002002790250137043 0.0008708189653235492 5.357209551017882e-07 1.7098490400419544 0.0010518856355761783 1.133677697071875 0.001236965786143141']
['59866.47114079173 2.840623115375089 0.0006505807893792973 0.32570285854723685 0.00020028995506876472 0.0008712137801168592 5.357501916108828e-07 1.7106242570758239 0.0010519430413275458 1.129998858299265 0.0012368668180959648']
['59866.471172329686 2.8419261068477883 0.0006507377820699576 0.32558311125312134 0.00020030568214470348 0.0008708934713138279 5.357922595415724e-07 1.7099953322117718 0.0010520256415162998 1.1319307746360165 0.0012370196487611301']
['59866.47120386765 2.8416262822454383 0.0006507185669019097 0.325365151144571 0.00020025069812830835 0.0008703104557058845 5.356451842810627e-07 1.708850583742495 0.0010517368599175859 1.1327756985029434 0.0012367639531536236']
['59866.47123540561 2.845978994860215 0.0006510439220387622 0.3263867971176271 0.0002004106421523688 0.0008730432289277636 5.360730142314363e-07 1.7142163714161087 0.0010525769020607605 1.1317626234441065 0.0012376495154830553']
['59866.471266943576 2.8406646749727713 0.0006505986655235643 0.3254182524737378 0.0002002804370191082 0.0008704524950171726 5.357247320369092e-07 1.7091294772780348 0.0010518930515709464 1.1315351976947365 0.0012368337056873411']
['59866.47129848154 2.843153031927318 0.0006508074226166311 0.32572742021385903 0.00020032538032320018 0.0008712794794555734 5.358449496672474e-07 1.7107532574257305 0.0010521290983361354 1.1323997745015877 0.0012371442684256803']
['59866.4713300195 2.8434129922630156 0.000650859720048203 0.32544861585423074 0.0002002545705855354 0.0008705337132036337 5.356555426123164e-07 1.709288948814237 0.0010517571984534422 1.1341240434487785 0.0012368555209400403']
['59866.471361557466 2.8407063208842223 0.0006505995938258778 0.3253674236852079 0.00020023232842526892 0.0008703165344634599 5.355960476585105e-07 1.7088625193550835 0.0010516403803848158 1.1318438015291388 0.0012366193113251616']
['59866.47139309543 2.8424184748552057 0.0006507688802604616 0.3256145005693607 0.0002002933453843849 0.0008709774337481097 5.357592602745734e-07 1.7101601920659701 0.0010519608476070635 1.1322582827892356 0.0012369809054361455']
['59866.47142463339 2.8418947738510667 0.0006507206065610369 0.32569262882580985 0.00020031149112532612 0.0008711864169112868 5.358077978269577e-07 1.7105705295473208 0.0010520561508683096 1.131324244303746 0.001237036560649283']
['59866.471456171355 2.841900637523203 0.0006507294319275013 0.32576951982097635 0.00020032330557723195 0.0008713920905576734 5.358393999852893e-07 1.710974368807649 0.0010521182015610921 1.130926268715554 0.0012370939752633329']
['59866.471487709314 2.8413305959782873 0.0006506959045807217 0.32541889286126524 0.0002002622333557226 0.000870454207972475 5.356760395493428e-07 1.7091328406579058 0.0010517974440951818 1.1321977553203815 0.001236803550950304']
['59866.47151924728 2.843295865616239 0.0006508316369651826 0.32594576334599623 0.0002003465922215798 0.000871863519602965 5.359016888013563e-07 1.7119000175735097 0.0010522405053654403 1.1313958480427293 0.0012372517532040503']
['59866.471550785245 2.8400542339633073 0.0006505705309189874 0.3252445939246449 0.00020020159629076682 0.000869987980454176 5.355138431019092e-07 1.7082174050664125 0.001051478972115372 1.1318368288968947 0.0012364667583485665']
['59866.4715823232 2.8434722550567777 0.0006508092496668178 0.3260058190108959 0.00020036401185023493 0.0008720241608790903 5.359482840955964e-07 1.7122154359815962 0.0010523319950117383 1.1312568190751815 0.0012373177874649955']
['59866.47161386117 2.845892665165614 0.0006510348528271417 0.32619161784976397 0.00020037778524815102 0.0008725211491753355 5.359851261857059e-07 1.7131912702193488 0.0010524043342865074 1.132701394946265 0.0012374979848147976']
['59866.471645399135 2.8407494550109806 0.0006506479055129684 0.3250470229837945 0.00020020417531165508 0.0008694595032802658 5.35520741655232e-07 1.7071797425619462 0.0010514925173931466 1.1335697124490345 0.0012365189893738752']
['59866.47167693709 2.846628097339412 0.0006511426394004231 0.3263623800064518 0.0002004351637524501 0.0008729779162565103 5.361386063972424e-07 1.7140881302859865 0.0010527056919771539 1.1325399670534255 0.0012378109753780856']
['59866.47170847506 2.84718640555812 0.0006511094269823015 0.3264149133606655 0.0002004081468661992 0.0008731184363069357 5.360663396578511e-07 1.714364040759798 0.0010525637965661725 1.1328223647983222 0.0012376728290412681']
['59866.47174001302 2.842948973153632 0.0006508359523523197 0.32544977360883187 0.00020025548511053203 0.0008705368100501489 5.356579888505315e-07 1.7092950294581506 0.0010517620016309457 1.1336539436954816 0.001236847098451981']
['59866.47177155098 2.8433697271427754 0.0006508299363404843 0.32562058843414 0.0002002956565553581 0.0008709937180131937 5.357654423633921e-07 1.7101921661456934 0.001051972986110074 1.133177560997082 0.0012370233504434365']
['59866.47180308895 2.839733514754888 0.0006505677512584809 0.3249227508939647 0.00020014750198790114 0.0008691270912233789 5.353691477120911e-07 1.7065270530145207 0.0010511948633818338 1.1332064617403672 0.0012362237013493426']
['59866.47183462691 2.8405932367928868 0.0006506245324073571 0.32530128059151386 0.00020026224248513347 0.0008701396100884549 5.356760639693574e-07 1.7085151291571108 0.0010517974920437683 1.132078107635776 0.0012367660435344482']
['59866.47186616487 2.84336842921414 0.0006508571975943297 0.3256800285311818 0.00020031888793710088 0.0008711527127234805 5.358275833590093e-07 1.7105043515293163 0.0010520949996696476 1.1328640776848238 0.001237141455125573']
['59866.47189770284 2.8461771211042572 0.0006510456571477191 0.3264033182751727 0.00020041665453177904 0.0008730874209258978 5.360890965827453e-07 1.7143031422015376 0.0010526084796837136 1.1318739789027197 0.0012376772839447947']
['59866.4719292408 2.844166812631439 0.0006508962939300139 0.3259465441358513 0.00020031745773850345 0.0008718656081166616 5.358237577594061e-07 1.7119041183605637 0.001052087488122392 1.1322626942708753 0.0012371556361733603']
['59866.47196077876 2.8468587379640637 0.000651070270100014 0.32665637972162975 0.00020044167630250989 0.0008737643281546309 5.361560266415137e-07 1.7156322464371312 0.0010527398965467956 1.1312264915269326 0.001237801998055207']
['59866.47199231672 2.846851649220489 0.0006511396097593514 0.32635503451457654 0.00020038029453055368 0.0008729582679986718 5.35991838197437e-07 1.7140495510219358 0.0010524175132907232 1.1328020981985532 0.0012375643068861474']
['59866.47202385469 2.8460315283675337 0.0006510668685988919 0.3263077422208668 0.00020041944730024626 0.0008728317671194438 5.360965668836943e-07 1.7138011671264013 0.0010526231475853271 1.1322303612411324 0.001237700916303938']
['59866.47205539265 2.8471900551369997 0.000651210381112637 0.32634065741757756 0.0002003899878430698 0.0008729198110901895 5.360177665773004e-07 1.7139740410587059 0.0010524684235455348 1.1332160140782939 0.0012376448371925158']
['59866.47208693061 2.839870539812796 0.0006505339280326022 0.32533094084035347 0.00020024883464549455 0.0008702189474870458 5.356401997012109e-07 1.7086709077749658 0.0010517270727179336 1.1311996320378304 0.0012366584924745233']
['59866.47211846858 2.8393168761762535 0.0006505174025427291 0.3250481302222623 0.00020017774262384212 0.0008694624650025403 5.35450037572465e-07 1.7071855578900332 0.0010513536902512718 1.1321313182862203 0.001236332266429986']
['59866.47215000654 2.8442746389916413 0.0006509350958328564 0.3256373605111432 0.00020029326978360717 0.0008710385811890086 5.357590580520948e-07 1.7102802547854161 0.0010519604505441554 1.1339943842062252 0.0012370680209656995']
['59866.4721815445 2.8436958504770335 0.0006508550315004788 0.3260129992589471 0.00020033983140897423 0.0008720433671306865 5.358836044863059e-07 1.7122531473684197 0.001052204996895873 1.1314427031086138 0.0012372338612898265']
['59866.47221308247 2.8472478529544656 0.0006511932945521835 0.3263613030927383 0.00020035693347562238 0.0008729750356491021 5.359293503425099e-07 1.7140824742265668 0.0010522948186744874 1.1331653787278988 0.0012374882190465085']
['59866.472244620425 2.846846515587378 0.0006511142617558386 0.32647634186852337 0.00020044022235781567 0.0008732827497636136 5.361521375241177e-07 1.714686669477539 0.0010527322602826455 1.132159846109839 0.0012378186433002446']
['59866.47227615839 2.8404209411099393 0.0006506406555043709 0.32521908153773604 0.0002002042549171004 0.0008699197380594429 5.355209545896878e-07 1.7080834114376895 0.0010514929354889728 1.1323375296722498 0.0012365155300190834']
['59866.47230769636 2.8446123255758837 0.0006509539286500537 0.32588907662765537 0.00020032627654387433 0.0008717118898310053 5.358473469437245e-07 1.711602293212476 0.0010521338053774913 1.1330100323634078 0.001237225347963361']
['59866.472339234315 2.844731536037414 0.000650974836484553 0.3258825545473487 0.0002003481419052847 0.0008716944440945339 5.359058340084464e-07 1.7115680385890166 0.001052248644460529 1.1331634974483973 0.0012373340080613282']
['59866.47237077228 2.8410461235297477 0.0006506304173314191 0.3254307503829109 0.00020025914182870418 0.0008704859253368905 5.356677701072137e-07 1.7091951175573052 0.0010517812070835306 1.1318510059724425 0.0012367552900759897']
['59866.472402310246 2.8413578869527734 0.0006507271339476332 0.32576247061507635 0.0002003331921443157 0.0008713732348271883 5.358658452965765e-07 1.710937345667418 0.001052170126808381 1.1304205412853554 0.001237136927992882']
['59866.472433848205 2.842085174757009 0.0006507552300483114 0.3253614658404795 0.0002002501782038196 0.0008703005979854985 5.356437935490893e-07 1.7088312281537787 0.0010517341292217417 1.13325394660323 0.0012367809215883977']
['59866.47246538617 2.8468424116159343 0.0006510913421047262 0.3262888076873269 0.0002004053536522621 0.0008727811196470402 5.360588681653267e-07 1.7137017210468848 0.0010525491263249061 1.1331406905690495 0.0012376508389247173']
['59866.47249692413 2.8430974712288335 0.0006507916369724816 0.3258640954992183 0.0002003234890260272 0.0008716450684852108 5.358398906875174e-07 1.711471089806819 0.001052119165052664 1.1316263814220144 0.0012371275165577868']
['59866.472528462094 2.846295210577857 0.0006510649929897701 0.3261877633019961 0.0002003733332119744 0.0008725108387496104 5.359732175543726e-07 1.713171025745778 0.001052380951743563 1.133124184832079 0.0012374939566274484']
['59866.47256000006 2.8400898831302945 0.0006505226153738218 0.32524561811046326 0.00020020544417598317 0.0008699907200211615 5.355241357061552e-07 1.7082227841936097 0.0010514991815965503 1.1318670989366848 0.0012364587344553851']
['59866.47259153802 2.8443646370606217 0.0006509794624933295 0.3256979809098751 0.0002003052615796026 0.00087120073305641 5.357911345833423e-07 1.7105986392325376 0.0010520234326659803 1.133765997828084 0.0012371449241970064']
['59866.472623075984 2.8438679501366106 0.0006508732025243101 0.3259419227257308 0.00020035274127844544 0.0008718532464315401 5.359181367474994e-07 1.7118798462485862 0.0010522728008321716 1.1319881038880244 0.0012373010842698857']
['59866.47265461395 2.840004179740599 0.0006505479045760833 0.3251386783563345 0.0002002107748337644 0.0008697046697609493 5.355383945386899e-07 1.7076611258210848 0.0010515271787487628 1.132343053919514 0.0012364958486770852']
['59866.47268615191 2.843523062576585 0.0006508318584261827 0.3258286339131622 0.00020032552983221923 0.0008715502132463753 5.358453495848846e-07 1.711284841980894 0.00105212988357258 1.1322382205956911 0.0012371577910068423']
['59866.472717689874 2.8400414897156754 0.0006505375118218666 0.32520715500927977 0.00020023709260222065 0.0008698878361105733 5.356087912267732e-07 1.708020772107562 0.0010516654023225874 1.1320207176081134 0.0012366079300771588']
['59866.47274922783 2.8476212542968136 0.0006512137675658416 0.3267266805955653 0.00020045806777603002 0.0008739523740637154 5.361998717513506e-07 1.7160014737162046 0.0010528259862186452 1.131619780580609 0.001237950697049184']
['59866.4727807658 2.8417997890230042 0.000650737501743812 0.32546073140622106 0.00020025374699248323 0.0008705661207664496 5.356533396055039e-07 1.7093525809150267 0.001051752872859681 1.1324472081079775 0.0012367875329838873']
['59866.472812303764 2.8421927828779374 0.0006507505599915656 0.3257033572436786 0.00020030641523437944 0.000871215114066503 5.357942204633482e-07 1.7106268762798247 0.001052029491777203 1.1315659065981127 0.0012370296451170183']
['59866.47284384172 2.847658293788477 0.0006512147013814268 0.32632387839826194 0.0002003805785497673 0.0008728749293445707 5.35992597912761e-07 1.7138859159572584 0.0010524190049882737 1.1337723778312188 0.0012376050861869503']
['59866.47287537969 2.8460707019552833 0.0006510149431175427 0.3265485575764349 0.00020043499877751456 0.0008734759176103867 5.361381651102427e-07 1.7150659536577466 0.0010527048255121563 1.1310047482975367 0.0012377430693883593']
['59866.472906917654 2.84741690438255 0.0006512128900091432 0.3263377695762716 0.00020040355685677912 0.0008729120864814716 5.360540619656151e-07 1.7139588738249558 0.00105253968937384 1.1334580305575943 0.001237706760836847']
['59866.47293845561 2.846197292093057 0.0006510466763994183 0.32649257168000445 0.0002004107054747255 0.0008733261624480281 5.360731836106981e-07 1.7147719100840573 0.0010525772346361634 1.1314253820089997 0.0012376512472118475']
['59866.47296999358 2.8415565644618885 0.0006507541011595731 0.3254233804726214 0.00020026150648398065 0.0008704662117628953 5.356740952597508e-07 1.7091564100452807 0.001051793626491495 1.1324001544166078 0.0012368309233295126']
['59866.473001531536 2.841799168889717 0.0006506779788201283 0.3256335606874027 0.00020029544410868027 0.0008710284171431063 5.357648740955112e-07 1.7102602977279555 0.0010519718703186991 1.1315388711617613 0.0012369424594795302']
['59866.4730330695 2.846103361890417 0.000651047271127919 0.32631218972623327 0.0002004105534828045 0.0008728436636314355 5.360727770516134e-07 1.713824525873074 0.0010525764363592672 1.132278836017343 0.0012376508811542473']
['59866.47306460747 2.843452702861336 0.0006508116443298315 0.325934680468728 0.00020035269528763424 0.0008718338743138739 5.359180137279206e-07 1.7118418091844958 0.0010522725592837933 1.13161089367684 0.0012372684977065259']
['59866.473096145426 2.8469545263190508 0.0006511109405354816 0.3264315575155965 0.0002003990849120071 0.0008731629573074541 5.360421000813176e-07 1.7144514575398977 0.001052516202268945 1.132503068779153 0.00123763314957367']
['59866.47312768339 2.842509947391124 0.0006507495629711415 0.32579540937548357 0.00020032333658986966 0.0008714613418278292 5.358394829401564e-07 1.7111103433586323 0.001052118364442593 1.1313996040324916 0.0012371047031292414']
['59866.47315922136 2.841538257606213 0.0006506674024411192 0.32543636593522757 0.00020023987970806863 0.0008705009462261239 5.35616246380935e-07 1.7092246110043465 0.001051680040483554 1.1323136466018666 0.001236688714329909']
['59866.473190759316 2.8425941421895007 0.0006507738446457853 0.3256894139257543 0.00020030072214548676 0.0008711778174619525 5.357789921736217e-07 1.7105536445680374 0.0010519995911002456 1.1320404976214633 0.0012370164657554646']
['59866.47322229728 2.8425961152682517 0.0006507766220892808 0.3256470358330331 0.0002002895077202235 0.0008710644614462318 5.357489950103513e-07 1.7103310705516446 0.0010519406918078967 1.1322650447166072 0.001236967837471618']
['59866.47325383524 2.8414471921726188 0.0006506853731332664 0.32559341237799355 0.00020029463060538337 0.0008709210255145476 5.357626980775124e-07 1.7100494347583697 0.0010519675977173496 1.131397757414249 0.0012369427155114296']
['59866.473285373206 2.8465254541100653 0.0006510875753072371 0.326490592538146 0.000200393513280533 0.0008733208684949213 5.360271966747598e-07 1.714761515431439 0.0010524869394985979 1.1317639386786262 0.0012375959714440664']
['59866.47331691117 2.8433121996806756 0.0006508094988488622 0.32560666031358015 0.00020027184794464822 0.000870956462059663 5.357017573536001e-07 1.7101190142519966 0.0010518479408857574 1.133193185428679 0.0012369062593978232']
['59866.47334844913 2.8411237626100774 0.0006506698834583727 0.3255474875593163 0.00020027552848133416 0.0008707981824573528 5.357116023217816e-07 1.7098082329796025 0.0010518672714355788 1.1313155296304749 0.0012368492446361691']
['59866.473379987096 2.8467793966240817 0.0006510874876060954 0.3266795260261906 0.00020048131345012918 0.0008738262415795918 5.362620509772057e-07 1.7157538131627659 0.0010529480748431154 1.1310255834613159 0.0012379881117494788']
['59866.47341152506 2.848269465446789 0.0006512318084856358 0.32687358946753076 0.000200506948824005 0.0008743453366377886 5.363306223464553e-07 1.716773053926107 0.0010530827144117911 1.1314964115206818 0.0012381785298479287']
['59866.47344306302 2.844188153085644 0.000650875972720287 0.32592855241521534 0.00020031923076116632 0.0008718174825490324 5.358285003698433e-07 1.7118096240294924 0.0010520968002162097 1.1323785290561517 0.001237152863994489']
['59866.473474600985 2.847164743686301 0.0006511899777811752 0.3264231695586579 0.00020041647172720987 0.0008731405205879715 5.360886076037402e-07 1.7144074031442118 0.0010526075195756823 1.132757340542089 0.001237752389385663']
['59866.473506138944 2.8464204630100953 0.0006511084742037055 0.326227074135448 0.00020037422260355716 0.0008726159902363487 5.359755965638977e-07 1.713377490207185 0.0010523856229178424 1.1330429728029103 0.0012375208056853236']
['59866.47353767691 2.8439255570518913 0.0006509165202923495 0.3257244166888708 0.0002003198350110723 0.0008712714454076982 5.35830116661598e-07 1.7107374826096158 0.0010520999737976488 1.1331880744422755 0.0012371768957002527']
['59866.473569214875 2.8401423593828548 0.0006505885577250286 0.3252317259300562 0.00020022959096347025 0.0008699535602029749 5.355887252958755e-07 1.7081498210612198 0.0010516260029594026 1.131992538321635 0.0012366012783201798']
['59866.47360075283 2.8468346479067845 0.0006511018010856639 0.32633865293125003 0.00020041469872677462 0.0008729144493438468 5.360838650527591e-07 1.7139635132943805 0.0010525982075986063 1.132871134612404 0.0012376980819314516']
['59866.4736322908 2.843577945875954 0.0006508841125520667 0.32580670245085347 0.00020030905429162913 0.0008714915493701457 5.358012796063127e-07 1.7111696557292726 0.0010520433523720017 1.1324082901466812 0.0012371116939237181']
['59866.473663828765 2.8416400817081024 0.0006507272092104834 0.3254453402320907 0.00020026693040524912 0.0008705249513304356 5.356886035602687e-07 1.709271744916443 0.0010518221134729472 1.1323683367916595 0.0012368409999662696']
['59866.47369536672 2.8463737908948725 0.0006510579883165622 0.3265435894765011 0.00020042446847564393 0.0008734626285740465 5.361099978901594e-07 1.7150398606959092 0.0010526495193048527 1.1313339301989633 0.0012377186734648332']
['59866.47372690469 2.841984636181871 0.000650718384530274 0.3259361681259102 0.00020036145371938005 0.0008718378536078937 5.359414414204597e-07 1.7118496225100326 0.0010523185594505256 1.1301350136718382 0.0012372585689861756']
['59866.47375844265 2.8411969522771336 0.0006506895899514068 0.3254004661968613 0.00020027115446935795 0.0008704049189855071 5.356999023952748e-07 1.7090360619583052 0.0010518442986836027 1.1321608903188285 0.0012368400750074077']
['59866.47378998061 2.846532028773418 0.0006511181995751482 0.32626538090488016 0.00020039360076204535 0.0008727184559793573 5.360274306766945e-07 1.7135786812231102 0.0010524873989603222 1.132953347550308 0.0012376124735910862']
['59866.47382151858 2.843763344032254 0.0006508579649391994 0.3258459753375176 0.00020030054702305174 0.0008715965993540462 5.357785237433497e-07 1.7113759208903236 0.0010519986713395575 1.1323874231419302 0.0012370599399483399']
['59866.47385305654 2.841364978375874 0.0006506810078317683 0.3256985601127086 0.00020030011931200935 0.0008712022823504267 5.357773796706336e-07 1.710601681264226 0.0010519964249580324 1.1307632971116481 0.0012369649356701452']
['59866.4738845945 2.840916135069567 0.0006506280985429236 0.32530238561850805 0.00020022541700982275 0.0008701425658953184 5.355775604999892e-07 1.7085209328703155 0.0010516040809339432 1.1323952021992516 0.0012366034391228676']
['59866.47391613247 2.84206168128473 0.0006507058253330477 0.3258305932014227 0.0002003316645201219 0.0008715554540936292 5.358617590958768e-07 1.7112951323604135 0.0010521621035720688 1.1307665489243166 0.0012371188961921016']
['59866.47394767043 2.841022645512189 0.0006506304069380361 0.32531668250873746 0.00020023598835094665 0.0008701808082608789 5.356058374948628e-07 1.7085960215795035 0.0010516596026835434 1.1324266239326857 0.0012366518695044548']
['59866.47397920839 2.8412402137796438 0.00065068306206698 0.32562343660075665 0.00020029509030711798 0.0008710013364971566 5.357639277212672e-07 1.710207125003974 0.0010519700121172162 1.1310330887756697 0.0012369435531400603']
['59866.47401074635 2.8404860136540364 0.0006506101970115971 0.325507539426329 0.00020029266098846313 0.0008706913262752987 5.357574296024057e-07 1.70959842135677 0.0010519572530906678 1.1308875922972663 0.0012368943733340905']
['59866.47404228432 2.8433315669129073 0.0006508215226435759 0.3259335202008378 0.00020034967182448531 0.0008718307707446297 5.359099263479978e-07 1.7118357153405348 0.001052256679750448 1.1314958515723725 0.0012372601886489112']
['59866.47407382228 2.8414515217805767 0.0006507233070638699 0.32561836870772753 0.00020028395056001538 0.0008709877805269609 5.35734130312592e-07 1.7101805079187373 0.0010519115050420975 1.1312710138618394 0.001236914967488093']
['59866.47410536024 2.841539458083448 0.0006507165901088164 0.32531646482997373 0.00020023134557614362 0.0008701802259978327 5.355934186619289e-07 1.7085948783086857 0.0010516352183620988 1.1329445797747624 0.0012366764787697486']
['59866.47413689821 2.8437293422277063 0.0006508969522466271 0.32585671011255113 0.00020033542454499473 0.0008716253135138708 5.358718166848627e-07 1.711432301011298 0.0010521818516018632 1.1322970412164084 0.001237236230994014']
['59866.47416843617 2.8468896999854136 0.0006511201470106237 0.3265217574690723 0.00020042210349894196 0.0008734042307269892 5.361036718778498e-07 1.7149251967913464 0.0010526370982087288 1.1319645031940673 0.0012377408074263486']
['59866.47419997413 2.8470066616783987 0.0006511283734175924 0.326683442640577 0.00020043863140170297 0.0008738367180256385 5.361478819185785e-07 1.715774383616476 0.0010527239044207089 1.1312322780619226 0.001237818959948595']
['59866.4742315121 2.846013530423672 0.0006510514779316135 0.32612467440027604 0.00020036420393272083 0.0008723420839502325 5.359487978918504e-07 1.7128396764720382 0.001052333003848324 1.133173853951634 0.001237446070705861']
['59866.474263050055 2.8467865720799015 0.0006510572786729266 0.3263428491213801 0.00020039982896662479 0.0008729256736194999 5.360440903329198e-07 1.7139855521080891 0.0010525201101188278 1.1328010199718124 0.0012376082426670996']
['59866.47429458802 2.8466467470047725 0.0006511225047753377 0.32661472340492737 0.00020044582298129693 0.00087365290279809 5.361671184806125e-07 1.7154134632611733 0.0010527616753219378 1.1312332837435992 0.0012378479960203366']
['59866.47432612599 2.8468284374980066 0.0006511077941446341 0.326468592966647 0.0002004055573988354 0.0008732620224352579 5.360594131615331e-07 1.7146459714634823 0.001052550196422455 1.1321824660345243 0.001237660403981981']
['59866.474357663945 2.8420286025476242 0.0006507685340038693 0.325254578317452 0.00020022118478877092 0.0008700146874368487 5.355662398461966e-07 1.708269844104265 0.0010515818528822004 1.1337587584433593 0.0012366584322927277']
['59866.47438920191 2.841939225274337 0.0006507380514795868 0.32542714963962227 0.00020025781942868348 0.0008704762938059126 5.356642328551121e-07 1.7091762060904534 0.0010517742617052704 1.1327630191838836 0.0012368060111549895']
['59866.474420739876 2.841856614658026 0.0006507228469969906 0.3254262363004464 0.00020023850751067188 0.0008704738507396175 5.356125759271772e-07 1.7091714091410004 0.0010516728335644532 1.1326852055170258 0.0012367117580347308']
['59866.474452277835 2.8472231931938583 0.0006511677491376246 0.32661541164797225 0.0002004494074897474 0.0008736547437608235 5.361767065854603e-07 1.7154170779830478 0.0010527805015217826 1.1318061152108105 0.001237887806669658']
['59866.4744838158 2.8439144922662845 0.0006508952403154925 0.3257523399887999 0.0002003111918799382 0.0008713461366885578 5.358069973835512e-07 1.710884138596638 0.0010520545792013563 1.1330303536696464 0.001237127095929883']
['59866.47451535376 2.8462683176005927 0.0006511019623038098 0.3261472007250115 0.00020036495567769713 0.0008724023390079021 5.359508087141853e-07 1.7129579870011111 0.0010523369520887456 1.1333103305994816 0.0012374759900892229']
['59866.474546891724 2.8421618999161447 0.000650752630084601 0.32543974745923393 0.00020026968010285174 0.0008705099913733643 5.356959586521253e-07 1.709242371109422 0.0010518365551620366 1.1329195288067226 0.0012368666558433717']
['59866.47457842969 2.8464981012954693 0.0006510845295693363 0.32639948658774354 0.00020040604411051665 0.0008730771716486753 5.360607150534647e-07 1.7142830177927708 0.001052552752681285 1.1322150835026985 0.0012376503390786407']
['59866.47460996765 2.842269979283174 0.0006507601071248774 0.32549331520584734 0.00020025335080409544 0.0008706532782920838 5.356522798518852e-07 1.7095237143164252 0.0010517507920383166 1.1327462649667488 0.001236797657492287']
['59866.474641505614 2.846930161623893 0.0006511314247863461 0.3263294850571167 0.00020039503676027163 0.000872889926444923 5.360312717895682e-07 1.7139153626949406 0.0010524949409678132 1.1330147989289523 0.0012376258453616494']
['59866.47467304358 2.846769829156841 0.0006510817230011934 0.32646190201322256 0.000200390310789719 0.0008732441249846446 5.360186304185706e-07 1.7146108299013791 0.0010524701196939024 1.132158999255462 0.0012375785885650656']
['59866.47470458154 2.8464643701892847 0.0006511034478891641 0.32608113816829704 0.00020036260641564807 0.0008722256300590887 5.359445247365764e-07 1.7126110197914761 0.0010523246135275635 1.1338533503978085 0.001237466279172525']
['59866.474736119504 2.840241578356883 0.0006506385528500214 0.3251543825091824 0.00020024000235103662 0.0008697466763752823 5.356165744352978e-07 1.7077436056154538 0.001051680684616789 1.1324979727414293 0.0012366740835203138']
['59866.47476765746 2.8421487080706918 0.000650785741326258 0.3253284055723682 0.00020024774723783283 0.0008702121659671817 5.35637291023824e-07 1.7086575922918499 0.0010517213615432398 1.1334911157788419 0.0012367861187125013']
['59866.47479919543 2.843384055513588 0.0006508533799725338 0.32590561761020587 0.00020035716886581423 0.0008717561348585096 5.35929979981377e-07 1.7116891681208293 0.0010522960549675118 1.1316948873927586 0.0012373104337723255']
['59866.474830733394 2.843181278183895 0.0006507802694041059 0.32573415628250296 0.0002002966804464256 0.000871297497583669 5.357681811419566e-07 1.7107886359375157 0.0010519783636892103 1.1323926422463793 0.0012370017933357692']
['59866.47486227135 2.846716819747756 0.0006511207620535051 0.32630267963231707 0.00020037520278808868 0.0008728182253380568 5.359782184330293e-07 1.713774577900825 0.001052390770945844 1.132942241846931 0.0012375316487060544']
['59866.47489380932 2.843100298292444 0.0006508207557122304 0.32563980425739897 0.00020028594467557127 0.0008710451178998702 5.357394643184377e-07 1.7102930895871797 0.0010519219783380845 1.132807208705264 0.0012369751430714154']
['59866.474925347284 2.841909066408741 0.0006507289285481922 0.3251895534540772 0.0002002069239132245 0.0008698407541859246 5.355280938153389e-07 1.7079283269646912 0.001051506953325759 1.1339807394440498 0.001236573900477403']
['59866.47495688524 2.84055592076326 0.0006506226222281603 0.32536035492414994 0.000200257411264594 0.000870297626425411 5.356631410680124e-07 1.708825393509191 0.001051772117986313 1.131730527254069 0.0012367434595454557']
['59866.47498842321 2.843878782992563 0.0006508990206519755 0.32572035893963414 0.0002003434607283563 0.000871260591443852 5.358933124547046e-07 1.7107161709014398 0.0010522240584472497 1.1331626120911231 0.0012372732132641124']
['59866.475019961166 2.841482981614445 0.000650698561602416 0.32564072663767174 0.0002002748076461661 0.0008710475851499512 5.357096741792581e-07 1.7102979340213853 0.0010518634855365867 1.1311850475930596 0.0012368611119590713']
['59866.47505149913 2.8456775726450525 0.0006510001162296771 0.3257531032163147 0.0002003004814136777 0.0008713481782252248 5.35778348246607e-07 1.71088814714451 0.0010519983267525091 1.1347894255005424 0.0012371344433088638']
['59866.4750830371 2.847089726460034 0.0006510947625363163 0.32700928552368336 0.00020050346181040775 0.0008747083063536669 5.363212950279573e-07 1.7174857432966564 0.0010530644002647467 1.1296039831633775 0.0012380908774832211']
['59866.475114575056 2.846634490327198 0.0006511198162082256 0.3263115821765173 0.00020041561141556416 0.0008728420385131083 5.360863063793534e-07 1.7138213349607 0.0010526030011321647 1.1328131553664977 0.0012377116356613416']
['59866.47514611302 2.8412718551256253 0.0006506591375950408 0.32515447685825033 0.00020019002360399874 0.0008697469287470561 5.354828876346153e-07 1.7077441011462728 0.0010514181911974725 1.1335277539793525 0.0012364616961786108']
['59866.47517765098 2.8436290902120227 0.0006508722748201654 0.3257969602285049 0.00020031145253622437 0.0008714654901626923 5.358076946060115e-07 1.711118488595089 0.0010520559481944558 1.1325106016169337 0.0012371161773499337']
['59866.475209188946 2.8428378816804027 0.0006508190923190435 0.32566319135426003 0.00020028045756297942 0.0008711076754136517 5.357247869891555e-07 1.7104159209782566 0.0010518931594694298 1.1324219607021462 0.0012369497604452506']
['59866.47524072691 2.8439985344796015 0.0006509158595201309 0.3254801217761661 0.00020022532300363572 0.0008706179875433425 5.355773090453783e-07 1.7094544210933094 0.0010516035872039692 1.1345441133862921 0.001236754446442416']
['59866.47527226487 2.841089385355366 0.0006506308653662964 0.3257293478923682 0.0002003064772378459 0.000871284635750757 5.357943863147461e-07 1.7107633817876482 0.0010520298174256611 1.1303260035677178 0.0012369669598335945']
['59866.475303802836 2.8473547975067417 0.000651121062120777 0.3267658158742369 0.0002004676781440451 0.0008740570559637132 5.362255782652083e-07 1.7162070161462026 0.0010528764608405733 1.131147781360539 0.0012379448611830254']
['59866.4753353408 2.843958615736148 0.0006508830226530705 0.3262570442595655 0.00020039011481680065 0.0008726961565119517 5.360181062159039e-07 1.7135348963212473 0.0010524690904243732 1.1304237194149007 0.0012374731898011791']
['59866.47536687876 2.8405792474792864 0.0006506392791807379 0.3254717199805134 0.00020025983733151044 0.0008705955138070573 5.356696304888868e-07 1.7094102940153015 0.0010517848599344037 1.1311689534639848 0.0012367630586333275']
['59866.475398416726 2.840249091511765 0.0006505732929563935 0.3253146295138215 0.00020024799657721707 0.0008701753167602232 5.35637957975009e-07 1.7085852390431804 0.0010517226710988292 1.1316638524685845 0.001236675457188094']
['59866.475429954684 2.8441100871358573 0.0006508921490777161 0.3260291558449435 0.0002003648291527183 0.0008720865839462297 5.359504702759364e-07 1.7123380033873086 0.001052336287566798 1.1317720837485488 0.0012373650438980723']
['59866.47546149265 2.841039775738358 0.0006506429887233704 0.32553554404127893 0.00020029080977342138 0.0008707662350635117 5.35752477837286e-07 1.709745504418482 0.0010519475303225915 1.131294271319876 0.0012369033532684272']
['59866.475493030615 2.844076570393088 0.0006509117223467802 0.32584314524036906 0.0002003426702213674 0.0008715890292036156 5.35891197948909e-07 1.7113610569347115 0.0010522199066248287 1.1327155134583766 0.001237276364514418']
['59866.475524568574 2.8472372780651507 0.0006511620240453217 0.32643345318767425 0.00020041973388665665 0.0008731680279894989 5.360973334659437e-07 1.7144614138008103 0.001052624652766054 1.1327758642643404 0.001237752253550627']
['59866.47555610654 2.841571137096113 0.000650675476816369 0.3253719728257245 0.00020025538684209922 0.0008703287028365698 5.356577259949544e-07 1.7088864118998137 0.001051761485515227 1.1326847251962995 0.0012367622239312641']
['59866.475587644505 2.846372294120112 0.0006510817497736194 0.32630460365977965 0.00020038009148481563 0.0008728233718671546 5.359912950758758e-07 1.7137846830870782 0.0010524164468740317 1.1325876110330337 0.001237532958162828']
['59866.47561918246 2.8472228769562657 0.0006511331594017019 0.3266116411814386 0.00020043406101705088 0.000873644658241721 5.361356567201044e-07 1.7153972751125977 0.001052699900299637 1.131825601843668 0.0012378010629189604']
['59866.47565072043 2.847535972742448 0.000651189051644621 0.3265036602707091 0.00020042029450228642 0.0008733558230198359 5.360988330415512e-07 1.714830148480615 0.001052627597175874 1.132705824261833 0.0012377689765534097']
['59866.47568225839 2.841489767659538 0.0006506878482625785 0.32568210242774287 0.0002003277795327477 0.0008711582601333823 5.358513672480709e-07 1.7105152438431874 0.001052141699226616 1.1309745238163504 0.0012370920867615536']
['59866.47571379635 2.8436018694760485 0.0006508916739408994 0.3257497925073882 0.00020032872394229928 0.0008713393224993293 5.358538934236748e-07 1.7108707589673753 0.0010521466593608154 1.1327311105086733 0.0012372035257021013']
['59866.47574533432 2.843404964425122 0.0006508424303225798 0.3258500227071935 0.00020033238277647868 0.0008716074255538855 5.358636803404077e-07 1.7113971780839994 0.0010521658759268838 1.1320077863411226 0.0012371939619854233']
['59866.47577687228 2.8454432977627624 0.0006509885327743893 0.32606813610912244 0.00020034381484226115 0.0008721908512021474 5.358942596644251e-07 1.7125427316655593 0.0010522259182891868 1.1329005660972031 0.001237321887353196']
['59866.47580841024 2.847825388951842 0.0006512263014972143 0.3263373630352441 0.00020039102085359518 0.0008729109990358565 5.360205297492564e-07 1.7139567386304837 0.0010524738490209832 1.1338686503213584 0.0012376578277677494']
['59866.47583994821 2.841782215042252 0.0006506823821594176 0.3256729868177855 0.00020027456669032448 0.0008711338770344913 5.357090296529847e-07 1.71046736774047 0.0010518622200122085 1.1313148473017818 0.0012368515239678795']
['59866.47587148617 2.846425163409866 0.000651073710607738 0.3264980719597655 0.00020043463641585712 0.0008733408749978156 5.361371958388315e-07 1.7148007981080122 0.001052702922352191 1.1316243653018538 0.001237772361693931']
['59866.47590302413 2.847476464011267 0.0006512136886527606 0.3262668960025299 0.00020038174011686313 0.0008727225086731426 5.359957049572154e-07 1.7135866386687495 0.0010524251056557939 1.1338898253425176 0.0012376097411152449']
['59866.47593456209 2.846609846827762 0.0006511024283383409 0.32631061400314615 0.0002004164663750012 0.0008728394487723052 5.360885932872618e-07 1.7138162500165242 0.0010526074914653425 1.132793596811238 0.0012377063073593208']
['59866.47596610006 2.846268632622277 0.0006510063083815837 0.32626606100179445 0.0002003795520198731 0.0008727202751522261 5.359898520756704e-07 1.7135822531606852 0.0010524136135497538 1.1326863794615918 0.0012374908595773418']
['59866.47599763802 2.8444213935081724 0.0006509656479611067 0.3256985070983105 0.0002002954840603001 0.000871202140543645 5.357649809610201e-07 1.7106014028272611 0.001051972080148635 1.1338199906809112 0.001237093986824635']
['59866.47602917598 2.846359465560621 0.0006510964001347056 0.3265566390795773 0.00020044118110508534 0.0008734975346048864 5.361547020512966e-07 1.715108398527192 0.001052737295719986 1.1312510670334288 0.001237813530410862']
['59866.47606071395 2.848004647620971 0.0006512401764910622 0.3264051733286461 0.0002003964980485479 0.0008730923829583345 5.360351805501136e-07 1.7143128851294438 0.001052502615801197 1.1336917624915273 0.0012376895910301872']
['59866.47609225191 2.846809335578571 0.000651115204844607 0.3265123597306517 0.0002004174754779737 0.0008733790929702913 5.360912925095501e-07 1.71487583892149 0.0010526127913759124 1.131933496657081 0.001237717535848961']
['59866.47612378987 2.8421743961456603 0.0006507426641619916 0.3255116393802282 0.00020027510441268022 0.0008707022931312568 5.357104679919919e-07 1.7096199547280893 0.001051865044184245 1.132554441417571 0.0012368856398783884']
['59866.47615532784 2.840035881133867 0.000650551313427296 0.32535311385956106 0.0002002572362158466 0.0008702782574973007 5.356626728348455e-07 1.7087873627077788 0.0010517711986126397 1.1312485184260883 0.0012367051652002786']
['59866.476186865795 2.839955995810064 0.0006505939784113044 0.3251692000938218 0.00020021877070132622 0.0008697863115322578 5.355597824688877e-07 1.7078214290641902 0.0010515691738515033 1.1321345667458738 0.0012365558022749245']
['59866.47621840376 2.8454685640179047 0.0006509765162888431 0.3263572964506422 0.00020042184732949105 0.0008729643183903661 5.36102986657104e-07 1.7140614309382471 0.0010526357527809406 1.1314071330796576 0.0012376641114584586']
['59866.47624994173 2.8458944697567263 0.000651031458596542 0.3261900140632796 0.0002003737058965075 0.0008725168592501816 5.359742144381652e-07 1.7131828469710062 0.0010523829091203126 1.1327116227857201 0.0012374779785882548']
['59866.476281479685 2.8477095322722468 0.0006511986316112456 0.3263711958103958 0.00020039038973870937 0.0008730014974123929 5.360188415970928e-07 1.714134431777289 0.001052470534341961 1.1335751004949577 0.0012376404499976606']
['59866.47631301765 2.8410555062124923 0.000650670871176751 0.32531582449690255 0.00020022720197734146 0.000870178513188194 5.355823350613985e-07 1.7085915152148246 0.001051613455763348 1.1324639909976677 0.0012366339162987738']
['59866.47634455562 2.847220127138237 0.0006511689107619094 0.32642102785851335 0.00020040795229127206 0.0008731347918120954 5.360658191946334e-07 1.7143961547190827 0.001052562774639034 1.1328239724191542 0.0012377032539743415']
['59866.476376093575 2.8418984699080534 0.0006506963460402447 0.32588142393913877 0.00020033847905420878 0.0008716914198611673 5.358799871090667e-07 1.711562100520687 0.0010521978941922731 1.1303363693873665 0.0012371443502246534']
['59866.47640763154 2.840997266711855 0.0006506571069814284 0.32566970204144885 0.00020029551531736172 0.0008711250906749799 5.3576506456969e-07 1.710450115763912 0.0010519722443138747 1.130547150947943 0.0012369317983107284']
['59866.4764391695 2.8463257781014413 0.0006511071504428303 0.32603510311873496 0.0002003387311483175 0.0008721024921482772 5.358806614287899e-07 1.7123692390689862 0.0010521992182159533 1.133956539032455 0.001237361594753953']
['59866.476470707465 2.8411124278324023 0.0006506183317773027 0.32539054400444034 0.0002002467021050956 0.0008703783783809676 5.35634495426491e-07 1.7089839496031531 0.0010517158724007124 1.1321284782292491 0.00123669336939448']
['59866.47650224543 2.84656029564984 0.0006510570326815323 0.3266154919851536 0.00020045243807459412 0.0008736549586525802 5.361848130150202e-07 1.7154174999220253 0.0010527964184590028 1.1311427957278146 0.001237843107394546']
['59866.47653378339 2.8417569172752115 0.0006507144951004161 0.3252003794045052 0.0002002060735058002 0.0008698697122283495 5.355258190834865e-07 1.7079851859480315 0.001051502486900211 1.13377173132718 0.0012365625071508186']
['59866.476565321354 2.844831046469986 0.0006509622414507909 0.3260581420785069 0.00020038122041770388 0.0008721641184395613 5.359943148279698e-07 1.712490242008965 0.0010524223761434028 1.1323408044610213 0.0012374751300943238']
['59866.47659685932 2.8414410689089156 0.0006506795814361848 0.32554973804405374 0.00020027071728354984 0.0008708042022181985 5.356987329787637e-07 1.7098200527523832 0.0010518420025396526 1.1316210161565323 0.0012368328569392856']
['59866.47662839728 2.84357084024139 0.0006508579343805256 0.3257513878810372 0.00020030017909360807 0.0008713435899212168 5.357775395788175e-07 1.7108791380306576 0.0010519967389370174 1.1326917022107323 0.0012370582805511644']
['59866.476659935244 2.8457613455615394 0.0006509905187789118 0.32619453939647275 0.0002003791515114794 0.000872528963941725 5.359887807665845e-07 1.7132066144772728 0.0010524115100392826 1.1325547310842665 0.0012374807642962374']
['59866.4766914732 2.8467520784698466 0.0006511347208205431 0.32626917843242564 0.0002003955566196279 0.0008727286138832294 5.360326623473205e-07 1.713598626220723 0.001052497671321575 1.1331534522491236 0.0012376299013822285']
['59866.47672301117 2.8462595838241156 0.0006511057685288817 0.3262348380857928 0.00020039414684632116 0.0008726367578174461 5.360288913827759e-07 1.7134182672573153 0.0010524902670500061 1.1328413165668003 0.0012376083726472519']
['59866.476754549134 2.8413713873588016 0.000650684458181748 0.32526554029882304 0.00020022246547831364 0.0008700440093447694 5.35569665528067e-07 1.7083274175358356 0.0010515885791928237 1.133043969822966 0.0012366199108893793']
['59866.47678608709 2.846792852386996 0.0006511275049484441 0.3261671770953178 0.00020037354587320685 0.0008724557732613353 5.3597378639616e-07 1.7130629049123833 0.0010523820686618008 1.1337299474746125 0.001237527796108547']
['59866.47681762506 2.841741606001432 0.0006507083715431871 0.3255441687901618 0.0002002683389080227 0.000870789305171371 5.356923711262986e-07 1.7097908024693373 0.001051829511071548 1.1319508035320947 0.001236837380239374']
['59866.476849163024 2.8420813636469537 0.0006507218050201589 0.3257085372478203 0.00020030658566649986 0.000871228969919686 5.357946763476243e-07 1.7106540821839302 0.001052030386903886 1.1314272814630235 0.0012370152798158289']
['59866.47688070098 2.8462877862412443 0.0006510876657331062 0.3265885440821038 0.00020046394437913995 0.0008735828764344905 5.362155909183007e-07 1.7152759668177722 0.001052856850730777 1.1310118194234722 0.0012379106173712683']
['59866.47691223895 2.8468663726318284 0.000651141993344546 0.32641604386719913 0.00020041337202680664 0.000873121460268331 5.360803162988448e-07 1.714369978294113 0.0010525912396365897 1.1324963943377153 0.0012377133001048352']
['59866.47694377691 2.8414318708147683 0.00065066784931799 0.3253829861062002 0.0002002469169526738 0.0008703581619630801 5.356350701164755e-07 1.7089442547594549 0.0010517170008018581 1.1324876160553135 0.001236720380648655']
['59866.47697531487 2.8409553170121415 0.0006506308963582514 0.32543015459727453 0.00020025906751094643 0.0008704843316859821 5.356675713166506e-07 1.7091919884310638 0.0010517808167591724 1.1317633285810778 0.0012367552101359967']
['59866.47700685284 2.8473546088147605 0.0006511824051824734 0.32652732066012513 0.00020042917730901262 0.0008734191115564921 5.361225934213665e-07 1.7149544152317497 0.0010526742505725455 1.1324001935830108 0.0012378051553607705']
['59866.477038390796 2.847499192208967 0.0006511543427159115 0.32654682681316516 0.00020042792257589508 0.000873471288038459 5.361192371696368e-07 1.7150568635145231 0.0010526676605876843 1.1324423286944438 0.0012377847881134018']
['59866.47706992876 2.8408654863039935 0.0006506673203020523 0.3252009749379309 0.0002002192163427572 0.0008698713052046265 5.355609745031161e-07 1.707988313749637 0.0010515715144052374 1.1328771725543565 0.0012365963818552835']
['59866.47710146673 2.8403205099917708 0.0006505799305589013 0.32538175585389134 0.00020026030338451446 0.0008703548711944044 5.356708771214807e-07 1.7089377933502699 0.0010517873076917779 1.131382716641501 0.001236733919106104']
['59866.477133004686 2.843767098878564 0.0006509611975636003 0.3256757435936801 0.00020032074309039416 0.00087114125105988 5.358325456584516e-07 1.710481846605463 0.001052104743121818 1.1332852522731012 0.0012372044581365133']
['59866.47716454265 2.8404393605838236 0.0006506345459196939 0.3255443210377108 0.00020026801809402357 0.0008707897124142282 5.356915129895965e-07 1.7097916020888175 0.0010518278261240734 1.130647758495006 0.001236797108726011']
['59866.47719608061 2.8459672621186347 0.0006510248786619614 0.32628794662691696 0.00020038426301885218 0.0008727788164198043 5.360024533996102e-07 1.7136971986707825 0.0010524383561914504 1.1322700634478522 0.001237521671010162']
['59866.477227618576 2.840871701055149 0.0006506467021114835 0.3256028121186284 0.0002003027871480796 0.0008709461686269142 5.35784515793288e-07 1.710098803144057 0.0010520104367020989 1.130772897911092 0.0012369588068721973']
['59866.47725915654 2.8464406498716652 0.0006510919241325281 0.326601854523359 0.00020044881128883268 0.0008736184801743308 5.361751118237351e-07 1.7153458745974737 0.0010527773702144574 1.1310947752741916 0.001237845258869729']
['59866.4772906945 2.843324434326435 0.0006508169263519637 0.3256704960498989 0.00020028153602828582 0.0008711272145467393 5.357276717468776e-07 1.7104542859763598 0.0010518988236779716 1.132870148350075 0.0012369534376367277']
['59866.477322232466 2.839661490564753 0.000650565991300559 0.3254505852795404 0.0002002567230634485 0.0008705389811662065 5.356613002173545e-07 1.709299292434561 0.0010517685034844985 1.130362198130192 0.0012367105942616083']
['59866.47735377043 2.8406934124274033 0.0006505947149753525 0.32557032852381074 0.00020027942471519223 0.0008708592791364163 5.357220242525035e-07 1.7099281960284178 0.0010518877348486986 1.1307652163989854 0.001236827105895964']
['59866.47738530839 2.8409148515031744 0.0006506374029748253 0.3252297009458758 0.00020021903387641945 0.000869948143627479 5.35560486428837e-07 1.708139185640104 0.0010515705560736315 1.1327756658630703 0.0012365798253856609']
['59866.477416846355 2.847530700556933 0.0006512240670684239 0.32657819231951346 0.00020041119173179003 0.0008735551867843063 5.360744842865877e-07 1.7152215983167727 0.0010525797885073006 1.1323091022401601 0.001237746741746151']
['59866.477448384314 2.840975542014415 0.0006506535483849543 0.32540065940174306 0.0002002739101953164 0.0008704054357840276 5.357072736122176e-07 1.709037076689827 0.0010518587720342249 1.1319384653245879 0.0012368334230328996']
['59866.47747992228 2.8441851121801376 0.0006508820999091608 0.3257484281875027 0.0002003013941306285 0.0008713356731169135 5.357807896485291e-07 1.7108635934217582 0.0010520031204339733 1.1333215187583794 0.0012370764218046417']
['59866.477511460245 2.8432197193812367 0.0006508582395927006 0.3256535010779592 0.00020029861582686093 0.0008710817551552786 5.357733580388145e-07 1.710365026669954 0.0010519885285024209 1.1328546927112828 0.0012370514589726646']
['59866.477542998204 2.84420619430641 0.0006509649999304375 0.3258797762834191 0.00020034562837408778 0.0008716870125913806 5.358991106317304e-07 1.7115534468666969 0.0010522354431412174 1.132652747439713 0.0012373176063311426']
['59866.47757453617 2.841943137184608 0.0006507694344883982 0.3254286933850249 0.00020026685361030104 0.0008704804231287982 5.356883981435362e-07 1.7091843139969796 0.0010518217101381359 1.1327588231876282 0.001236862873071329']
['59866.477606074135 2.8421148497428455 0.000650770064075512 0.3256424448918516 0.00020030795201364822 0.0008710521812616523 5.357983311527107e-07 1.7103069584656072 0.001052037563096892 1.1318078912772382 0.0012370467697155566']
['59866.47763761209 2.846094322977476 0.0006510788917643162 0.32626302328405504 0.0002003989935685692 0.0008727121496430842 5.360418557492224e-07 1.7135662987607934 0.0010525157225239978 1.1325280242166829 0.0012376158812253757']
['59866.47766915006 2.8413119054277294 0.0006507074117164705 0.32537706345790474 0.00020026179941312792 0.0008703423196311067 5.356748788080157e-07 1.7089131484133653 0.0010517951649849156 1.132398757014364 0.001236807666837651']
['59866.47770068802 2.8398178868253767 0.0006505292608746436 0.3252049459189363 0.0002002183475648732 0.0008698819270744741 5.355586506326171e-07 1.7080091697423125 0.0010515669514961827 1.1318087170830642 0.0012365198634607876']
['59866.47773222598 2.8406609581577786 0.000650626325017994 0.3254207543623131 0.00020025359259814903 0.0008704591872513546 5.35652926620269e-07 1.7091426174491235 0.0010517520619650687 1.131518340708655 0.0012367283511968965']
['59866.47776376395 2.8455886807752666 0.0006509894664724842 0.3263362830079962 0.0002004105247630796 0.0008729081101001394 5.36072700229997e-07 1.7139510662184678 0.0010525762855203762 1.1316376145567988 0.001237620346591798']
['59866.47779530191 2.846046918820344 0.0006510718862607482 0.32645107706271614 0.00020044223440896352 0.0008732151696168829 5.361575195053939e-07 1.714553976169728 0.0010527428277781698 1.1314929426506162 0.001237805341124971']
['59866.47782683987 2.844090105359615 0.0006508859954822291 0.32583653652453853 0.00020032988623426033 0.0008715713517281212 5.358570024070516e-07 1.7113263472927445 0.001052152763835401 1.1327637580668704 0.0012372057296833722']
['59866.47785837784 2.841100733850969 0.0006506942004181241 0.32535041388186536 0.00020022804619254764 0.0008702710353998803 5.35584593229854e-07 1.7087731821526544 0.0010516178896667419 1.1323275516983144 0.0012366499619233058']
['59866.4778899158 2.846128039988426 0.0006510667625878935 0.3263556665165888 0.00020041258592329222 0.000872959958523786 5.360782135717842e-07 1.7140528703602356 0.0010525871109416608 1.1320751696281905 0.00123767021272518']
['59866.47792145376 2.8430276085344 0.0006508704231136862 0.3256543025981469 0.00020031067421240735 0.0008710838991199822 5.358056126886535e-07 1.7103692363348053 0.0010520518603592825 1.1326583721995946 0.0012371117267933468']
['59866.47795299172 2.8406193243248397 0.0006505751118487031 0.3254600173984523 0.00020029287789536263 0.0008705642108863521 5.357580098008132e-07 1.7093488308742246 0.001051958392307577 1.131270493450615 0.0012368768876906443']
['59866.47798452969 2.846499843486753 0.0006510883347976596 0.3262022615428194 0.0002003551466546508 0.0008725496197024367 5.359245708233495e-07 1.7132471719685896 0.001052285434110561 1.1332526715181634 0.0012374250096675924']
['59866.47801606765 2.843346601396858 0.0006508459717199395 0.32579134386030406 0.00020031204308833538 0.0008714504670910723 5.358092742579043e-07 1.7110889908629416 0.0010520590498336942 1.1322576105339164 0.0012371049766454938']
['59866.47804760561 2.846594057681803 0.0006510789916117948 0.32666832052895695 0.00020045903589112224 0.0008737962682976668 5.36202461336265e-07 1.7156949607613288 0.0010528310708567345 1.1308990969204742 0.0012378841291007692']
['59866.47807914358 2.841047597902426 0.000650675271871259 0.32571493164983734 0.0002003296772217037 0.0008712460741329487 5.358564433250087e-07 1.7106876662281374 0.0010521516660803767 1.1303599316742885 0.001237093948679909']
['59866.47811068154 2.8424907037351783 0.0006507576692112916 0.3256314570010865 0.00020028387670425658 0.000871022790049393 5.357339327578175e-07 1.7102492489552863 0.0010519111171442047 1.132241454779892 0.0012369327153927499']
['59866.4781422195 2.8409610292253626 0.0006506554498735419 0.3254893917865661 0.00020024716490758083 0.0008706427836438078 5.356357333643598e-07 1.7095031081227214 0.0010517183030860338 1.1314579211026412 0.001236714964531564']
['59866.47817375747 2.845926555642542 0.000651058999910251 0.32610004015179866 0.00020035943604176392 0.0008722761904642741 5.359360443890955e-07 1.7127102949149091 0.0010523079624042224 1.133216260727633 0.0012374287329391792']
['59866.478205295425 2.843535291824394 0.0006508597747207849 0.3258448891450775 0.00020033151642082179 0.0008715936939272228 5.358613629490586e-07 1.7113702160980961 0.0010521613257396102 1.132165075726298 0.0012371992166711572']
['59866.47823683339 2.8434763474204376 0.0006508669671457324 0.32564683189799526 0.00020029201452572435 0.0008710639159459066 5.357557003966846e-07 1.710329999464261 0.0010519538578031742 1.1331463479561767 0.0012370265671635611']
['59866.47826837136 2.840377121916024 0.0006506072351936385 0.3252472412582754 0.00020023510317844232 0.000869995061735408 5.356034697708367e-07 1.7082313091295978 0.0010516549536682897 1.1321458127864263 0.0012366357248848033']
['59866.478299909315 2.844372095657559 0.000650930499903667 0.3257538099703001 0.00020031694701482165 0.0008713500687023732 5.358223916384227e-07 1.710891859087711 0.0010520848057501138 1.1334802365698482 0.001237171351994174']
['59866.47833144728 2.846819258127306 0.0006511093100414771 0.3267286537981662 0.00020048068610356088 0.0008739576521300625 5.362603729048129e-07 1.7160118371752426 0.001052944779955677 1.1308074209520635 0.0012379967864492205']
['59866.478362985246 2.846492242731057 0.0006510729712578384 0.32645469385436043 0.00020043732970768043 0.000873224844075174 5.361444000523923e-07 1.714572971924162 0.0010527170677924393 1.131919270806895 0.0012377840032590586']
['59866.478394523205 2.8457225739592906 0.0006510142098023116 0.32640448939699396 0.0002004013588704257 0.0008730905535280292 5.36048182631279e-07 1.714309293051439 0.0010525281453278663 1.1314132809078516 0.0012375924200122778']
['59866.47842606117 2.8437841396119983 0.0006508767221769203 0.3257640180266559 0.0002003012558086019 0.0008713773739566317 5.357804196546757e-07 1.7109454728290752 0.001052002393952741 1.132838666782923 0.001237072974546801']
['59866.47845759913 2.843405368344863 0.0006508885373087658 0.32575459202045387 0.00020028793586600882 0.0008713521605872088 5.357447904999634e-07 1.7108959664939807 0.0010519324362710549 1.1325094018508821 0.001237019700117626']
['59866.478489137095 2.8456085161769336 0.0006510379130804918 0.32606739375226096 0.00020034958688673444 0.0008721888654918274 5.359096991503019e-07 1.7125388327324633 0.0010522562336488155 1.1330696834444702 0.0012373736483055522']
['59866.47852067506 2.843208945995688 0.0006508064929388747 0.3258889539473603 0.00020032386633393184 0.0008717115616767971 5.358408999382416e-07 1.7116016488831949 0.001052121146711827 1.1316072971124933 0.001237137016910256']
['59866.47855221302 2.8461168044241463 0.0006510093903221431 0.3264542738628674 0.0002004012720647589 0.000873223720651272 5.360479504371452e-07 1.7145707660864886 0.0010525276894157508 1.1315460383376577 0.001237589497076663']
['59866.478583750984 2.847461462352018 0.0006511929649870154 0.3263918144958109 0.00020040056550645418 0.0008730566497771638 5.360460604834178e-07 1.7142427231922843 0.0010525239785002846 1.1332187391597337 0.0012376829169729409']
['59866.47861528895 2.847006629206003 0.0006511540142440656 0.3264518195892314 0.0002004187931937525 0.0008732171557810053 5.360948172318995e-07 1.7145578759938627 0.0010526197121520614 1.1324487532121401 0.0012377438380687862']
['59866.47864682691 2.841013545704184 0.0006506501372408491 0.3253776075685269 0.00020025140339769047 0.0008703437750579153 5.356470707870859e-07 1.7089160061372213 0.0010517405640635006 1.1320975395669626 0.0012367311005987301']
['59866.478678364874 2.8404025813362446 0.0006505714180238814 0.32531624514385327 0.00020025888080381658 0.0008701796383653621 5.356670718987913e-07 1.7085937244950278 0.001051779836154499 1.1318088568412168 0.0012367230869078124']
['59866.47870990283 2.8400064896340185 0.0006505555135788195 0.325230611367481 0.00020022646552660917 0.0008699505788896432 5.355803651492241e-07 1.7081439672661818 0.0010516095878498383 1.1318625223678367 0.001236569933932371']
['59866.4787414408 2.84171326929527 0.0006506969295193455 0.32566621826680264 0.0002003009833750553 0.0008711157720202647 5.357796909295396e-07 1.7104318186281653 0.0010520009631042823 1.1312814506671047 0.0012369771705485278']
['59866.478772978764 2.84686810761786 0.0006511751661532808 0.326467702320298 0.0002004263866899827 0.0008732596400693926 5.361151288698893e-07 1.7146412936990443 0.0010526595939599932 1.1322268139188159 0.0012377888825525823']
['59866.47880451672 2.8473524890132316 0.0006511193244996505 0.326443573473882 0.00020039544676135124 0.0008731950984697587 5.360323684903832e-07 1.7145145665645063 0.001052497094334828 1.1328379224487253 0.0012376213105470255']
['59866.47883605469 2.840306822384913 0.0006506079690211661 0.3251521710478435 0.00020020559851424924 0.0008697407609970715 5.355245485414149e-07 1.7077319907974975 0.0010514999921966872 1.1325748315874156 0.0012365043319549998']
['59866.478867592654 2.846999255695021 0.0006510834663670977 0.32664212479465893 0.00020045076141226093 0.0008737261980354575 5.361803281562266e-07 1.7155573781232087 0.0010527876124593538 1.1314418775718122 0.0012378495211957156']
['59866.47889913061 2.8466681054494134 0.0006510875152353417 0.32674848307387305 0.00020046815557648359 0.0008740106929241243 5.36226855336344e-07 1.7161159825308459 0.0010528789683638845 1.1305521229185675 0.001237929349566577']
['59866.47893066858 2.841073741006584 0.0006506617457328989 0.3251884838755301 0.00020022153401358386 0.0008698378931991551 5.355671739782173e-07 1.7079227094303056 0.0010515836870461338 1.1331510315762783 0.0012366038000191186']
['59866.47896220654 2.84688744547943 0.0006511234269920246 0.32642426972493344 0.00020040958348796958 0.00087314346339303 5.36070182438626e-07 1.7144131813284322 0.0010525713418485798 1.1324742641509977 0.0012376866109232814']
['59866.4789937445 2.841005152969519 0.000650668046036129 0.3257030389598422 0.00020032236958560692 0.0008712142626976649 5.358368963265697e-07 1.7106252046210202 0.0010521132856386919 1.1303799483484986 0.0012370575055145648']
['59866.47902528247 2.844848504082942 0.0006510080439880903 0.3258527351315412 0.00020031643232024744 0.0008716146809445192 5.358210148958065e-07 1.7114114240101956 0.001052082102522308 1.1334370800727462 0.0012372098543840327']
['59866.479056820426 2.8456604023454215 0.0006509629009770029 0.3266583522233517 0.00020046174227220085 0.0008737696043462159 5.362097005619213e-07 1.7156426062150827 0.0010528452850430718 1.1300177961303388 0.0012378351637782076']
['59866.47908835839 2.840511541177232 0.0006506188994887906 0.325495250713673 0.00020027623330634616 0.0008706584555296948 5.357134876391711e-07 1.709533879798703 0.0010518709732476165 1.1309776613785292 0.001236825572476933']
['59866.47911989636 2.8474549855375964 0.0006511814376730327 0.3267040548094402 0.00020045046367267387 0.0008738918529594608 5.361795317406462e-07 1.7158826408058836 0.0010527860487010183 1.1315723447317128 0.0012378997249815594']
['59866.479151434316 2.8414276319194807 0.0006507032995597568 0.32569725918901804 0.00020029585039330378 0.0008711988025447807 5.357659608552782e-07 1.7105948486818174 0.0010519740041665115 1.1308327832376632 0.0012369575940589387']
['59866.47918297228 2.8467859943367047 0.0006513624981092124 0.32582612239143016 0.00020031125236120406 0.0008715434952447226 5.358071591632558e-07 1.7112716512154946 0.0010520548968550635 1.13551434312121 0.0012373732702542883']
['59866.47921451024 2.8408621542786343 0.0006506112573168678 0.3255508447357247 0.00020027487377253532 0.0008708071624778609 5.357098510588972e-07 1.7098258652086384 0.0010518638328389461 1.1310362890699959 0.0012368154797632806']
['59866.479246048206 2.8425140265640394 0.0006507900276252919 0.32550885782831773 0.00020026722113268534 0.0008706948528331724 5.356893812192362e-07 1.7096053457369629 0.0010518236404027592 1.1329086808270765 0.0012368753496479106']
['59866.47927758617 2.8466770224779396 0.0006510998493606582 0.32625110936216495 0.00020036807630429527 0.000872680281415178 5.359591559939942e-07 1.7135037256416228 0.001052353341934324 1.1331732968363168 0.0012374888161586803']
['59866.47930912413 2.8423117847329573 0.0006507373902421152 0.32568914999185783 0.00020029619833827038 0.0008711771114723009 5.357668915638724e-07 1.710552258360598 0.001051975831608563 1.1317595263723592 0.0012369770819815728']
['59866.479340662096 2.842339063439551 0.0006507716184027891 0.32536576367454884 0.0002002320495936442 0.0008703120941457796 5.355953018193279e-07 1.708853800811706 0.0010516389159330054 1.1334852626278449 0.0012367085787780936']
['59866.47937220006 2.8432858650407757 0.0006508727925168896 0.3257968295340502 0.00020030205167786126 0.0008714651405716251 5.357825485038637e-07 1.7111178021746336 0.001052006573938347 1.1321680628661421 0.0012370744616425613']
['59866.47940373802 2.840144823218229 0.0006505543056682805 0.32507790573841966 0.00020019306331404879 0.0008695421107265664 5.35491018472935e-07 1.7073419419034648 0.0010514341560611807 1.1328028813147644 0.0012364201103005506']
['59866.479435275985 2.8417938014452515 0.0006506794594511783 0.3255438434533529 0.0002002668684746376 0.0008707884349367272 5.356884379037486e-07 1.70978909376761 0.0010518217882071303 1.1320047076776416 0.001236815601898247']
['59866.479466813944 2.8467424458949995 0.0006511372081020218 0.32611441549627795 0.00020037507963784277 0.0008723146426849888 5.359778890217624e-07 1.712785795673729 0.0010523901241483338 1.1339566502212706 0.00123753975175743']
['59866.47949835191 2.841836506657925 0.0006507083696826861 0.32544245918153647 0.0002002710454754262 0.0008705172448861162 5.356996108503503e-07 1.709256613348406 0.0010518437262364822 1.1325798933095192 0.001236849468123808']
['59866.479529889875 2.8449022992408937 0.00065099308932574 0.3258261683187067 0.0002003299571291836 0.0008715436180943543 5.358571920419673e-07 1.7112718924301822 0.0010521531361826872 1.1336304068107115 0.0012372623910589602']
['59866.479561427834 2.842105785954871 0.0006506877086561391 0.3259296454543523 0.00020033549286786246 0.0008718204062899004 5.358719994398564e-07 1.7118153647812624 0.0010521822104404542 1.1302904211736087 0.001237126468136357']
['59866.4795929658 2.8430292686457337 0.0006508250474039276 0.32565042621323925 0.0002002870003257042 0.0008710735302826817 5.357422880484685e-07 1.7103488771703743 0.0010519275227190348 1.1326803914753594 0.0012369821160316467']
['59866.479624503765 2.8408723048969264 0.0006506551846069747 0.3255237016730538 0.0002002812725145682 0.0008707345582325713 5.35726966881151e-07 1.709683307106375 0.001051897439677354 1.1311889977905514 0.0012368671686384552']
['59866.47965604172 2.8425070278534896 0.0006507618483437501 0.32554979466878 0.00020028457047367512 0.0008708043536821495 5.357357885028986e-07 1.7098203501511555 0.001051914760891151 1.132686677702334 0.0012369380127720472']
['59866.47968757969 2.8413207308141937 0.0006506618620502 0.3255462497660121 0.00020026590748691218 0.0008707948715174724 5.356858673836351e-07 1.7098017319643495 0.00105181674100269 1.1315189988498442 0.001236802051817571']
['59866.47971911765 2.8443058752700088 0.0006509157041523644 0.32595589270308034 0.00020034838417591812 0.0008718906143466672 5.359064820516208e-07 1.7119532179783634 0.0010522499168903264 1.1323526572916454 0.0012373039810442165']
['59866.47975065561 2.8469084395891735 0.0006511453605589192 0.3266141925786836 0.00020045419448579883 0.0008736514829053066 5.361895111919166e-07 1.7154106753082126 0.001052805643307767 1.131497764280961 0.001237897412210756']
['59866.47978219358 2.8403626071079238 0.0006506074003479844 0.32515117621891837 0.0002002110492123474 0.0008697380999560469 5.355391284665514e-07 1.7077267658556639 0.001051528619812749 1.13263584125226 0.0012365283772210274']
['59866.47981373154 2.8402996418436413 0.0006505780467514121 0.32540173781031917 0.00020023574972707737 0.0008704083203900033 5.356051992063194e-07 1.7090427406004158 0.0010516583494069192 1.1312569012432254 0.0012366232566113934']
['59866.4798452695 2.843511085402352 0.0006508825045657456 0.32578099635825675 0.00020028970145653625 0.0008714227888372995 5.357495132303821e-07 1.7110346447387434 0.0010519417093305477 1.1324764406636088 0.0012370244114725676']
['59866.47987680747 2.8459595451223825 0.0006510992659072128 0.32603401059027104 0.00020035169995900285 0.0008720995697733948 5.359153513502452e-07 1.7123635009993228 0.0010522673317174519 1.1335960441230597 0.0012374153673947472']
['59866.47990834543 2.8410114664162824 0.000650681518686109 0.32513444365879596 0.00020021854288516876 0.0008696933424828694 5.355591730896007e-07 1.707638884762584 0.0010515679773380711 1.1333725816536984 0.001236600844946559']
['59866.47993988339 2.8455461937473854 0.0006510432140264958 0.3263156589839331 0.00020041023176721063 0.0008728529434551631 5.360719165032599e-07 1.7138427467643547 0.0010525747466765265 1.1317034469830307 0.0012376473099680312']
['59866.47997142135 2.8401974872876816 0.0006505842448140318 0.3252048138559318 0.00020020932080461442 0.00086988157382271 5.355345051953853e-07 1.7080084761340957 0.0010515195420410422 1.132189011153586 0.0012365084742509641']
['59866.48000295932 2.8404822582005034 0.0006506445046445461 0.32517309102578756 0.00020020458928736649 0.0008697967192810912 5.355218489876823e-07 1.7078418646312374 0.0010514946916353283 1.132640393569266 0.0012365190487661']
['59866.48003449728 2.8411490657894607 0.000650671172192033 0.325371032294834 0.0002002459225255536 0.0008703261870358916 5.35632410150228e-07 1.7088814721367334 0.0010517117779703445 1.1322675936527273 0.0012367176873657535']
['59866.48006603524 2.844082141969637 0.0006509162419988357 0.3256193883933801 0.00020028111182132045 0.0008709905080565744 5.357265370471225e-07 1.71018586341061 0.0010518965957002125 1.1338962785590272 0.001237003800375562']
['59866.48009757321 2.846098453912746 0.0006511021703980193 0.3263189902387615 0.00020038673959821366 0.0008728618541387368 5.360090779348596e-07 1.7138602428506382 0.0010524513634359962 1.1322382110621079 0.0012375733952761341']
['59866.48012911117 2.840589935546059 0.0006506340754995611 0.3251992395934905 0.0002002068757447835 0.0008698666633786492 5.35527964970877e-07 1.7079791995456437 0.0010515067003402496 1.1326107360004152 0.001236523772946403']
['59866.48016064913 2.8415125186984396 0.0006506960612382016 0.3255496572897837 0.00020027076214105638 0.0008708039862107825 5.356988529668965e-07 1.7098196286228136 0.0010518422381358005 1.131692890075626 0.0012368417271572945']
['59866.4801921871 2.8405846427082615 0.0006506288952047496 0.32524140960771963 0.00020022031724442493 0.000869979462810831 5.355639192752552e-07 1.7082006807128134 0.0010515772964518118 1.132383961995448 0.0012365810809195873']
['59866.480223725055 2.842458408025736 0.0006508001929406321 0.32561213026420954 0.00020030458603480917 0.0008709710934828754 5.357893275868187e-07 1.710147742984294 0.0010520198846366029 1.132310665041442 0.0012370475855044442']
['59866.48025526302 2.847354908008803 0.0006511487234675859 0.3263366951388109 0.00020040105143192494 0.0008729092124977253 5.360473602723362e-07 1.7139532307710659 0.001052526530629858 1.133401677237737 0.0012376618107355465']
['59866.48028680099 2.8463782331047556 0.000651080998620047 0.3263845541657021 0.00020042270213137348 0.0008730372293162345 5.361052731435738e-07 1.7142045912064188 0.0010526402422866255 1.1321736418983368 0.0012377228875824035']
['59866.480318338945 2.8472769758756344 0.0006511554721012677 0.32632963104182966 0.000200386702955947 0.0008728903169354892 5.360089799214501e-07 1.7139161294213745 0.0010524511709871166 1.13336084645426 0.0012376012751122948']
['59866.48034987691 2.841152385900528 0.0006506894741571372 0.3253762611991183 0.00020025661033261247 0.0008703401736907453 5.356609986766857e-07 1.7089089348693187 0.0010517679114107799 1.1322434510312094 0.0012367750528096393']
['59866.480381414876 2.8438604063926016 0.0006509359258408795 0.3256865032455737 0.00020030381845672897 0.0008711700317621458 5.357872744129418e-07 1.7105383573822148 0.001052015853239123 1.1333220490103868 0.0012371155705983021']
['59866.480412952835 2.841749272239065 0.0006507126840533321 0.3254418251617433 0.0002002681871811286 0.0008705155489636944 5.356919652761272e-07 1.7092532834125176 0.0010518287141866 1.1324959888265476 0.0012368389714006137']
['59866.4804444908 2.8446372144718355 0.0006509997879325563 0.3260503761617095 0.0002003751146868353 0.0008721433455984529 5.359779827733661e-07 1.7124494546308273 0.0010523903082291773 1.1321877598410082 0.001237467609573251']
['59866.48047602876 2.842350154105307 0.0006507785554918786 0.3256265733376694 0.00020026735109702495 0.0008710097268700112 5.356897288573383e-07 1.7102235994625496 0.0010518243229885765 1.1321265546427572 0.001236869894014109']
['59866.480507566725 2.8401840058137826 0.0006505338195114126 0.32563905362661216 0.00020031444810847504 0.0008710431100578507 5.358157073813239e-07 1.7102891471985935 0.001052071681241991 1.1298948586151891 0.001236951524029724']
['59866.48053910469 2.8411250753845345 0.0006506876355250282 0.32579201841265515 0.0002003211032972088 0.0008714522714329387 5.358335091659321e-07 1.7110925336799117 0.0010521066349643321 1.1300325417046229 0.001237062152990351']
['59866.48057064265 2.8437880035130205 0.0006508701652011719 0.3256003736096452 0.0002002823856584395 0.0008709396459250916 5.357299443996298e-07 1.7100859958489771 0.001051903286021216 1.1337020076640434 0.0012369852444921211']
['59866.480602180614 2.843996765966355 0.0006508867348018102 0.3260747394917058 0.0002003702257244215 0.000872208514411883 5.359649054198409e-07 1.7125774132967742 0.0010523646309055753 1.1314193526695808 0.0012373863010078905']
['59866.48063371857 2.847238707614829 0.0006511773663255311 0.3264898536449988 0.00020043097295589565 0.000873318892049597 5.361273965487192e-07 1.7147576346901199 0.0010526836814910487 1.132481072924709 0.001237810524956143']
['59866.48066525654 2.8412138277561443 0.0006506664841310585 0.32561564314461444 0.00020027468259631233 0.0008709804899917986 5.357093396867814e-07 1.7101661929864205 0.0010518628287621446 1.1310476347697238 0.0012368436781190152']
['59866.480696794504 2.8414163980231733 0.0006507127833405413 0.3254182262074792 0.00020025435503137374 0.0008704524247582668 5.356549660323108e-07 1.7091293393249958 0.0010517560663412487 1.1322870586981775 0.0012367772432772246']
['59866.48072833246 2.8430255372667346 0.0006508137611448339 0.32554788303684257 0.00020028211728277228 0.0008707992403095072 5.357292265288056e-07 1.7098103100674504 0.0010519018764851486 1.1332152271992841 0.001236954368377614']
['59866.48075987043 2.841391902804589 0.0006506854093154713 0.32565524999918183 0.00020030953537299967 0.0008710864332974242 5.358025664378784e-07 1.710374212180577 0.0010520458790598724 1.1310176906240121 0.0012370093102086587']
['59866.480791408394 2.8459949757177148 0.0006510640020574734 0.32656508363290015 0.00020044379544626196 0.0008735201227125087 5.361616950819048e-07 1.715152750172795 0.001052751026503477 1.1308422255449198 0.0012378081671160592']
['59866.48082294635 2.8414031779812676 0.0006506772477867074 0.32568213459651946 0.000200299908270576 0.0008711583461807741 5.357768151616031e-07 1.710515412796846 0.001051995316547143 1.1308877651844216 0.0012369620151097638']
['59866.48085448432 2.8405176382707538 0.0006506240556549333 0.3254718484728504 0.00020027395895586518 0.0008705958575077393 5.357074040404926e-07 1.7094109688700128 0.001051859028129544 1.131106669400741 0.0012368181260211635']
['59866.48088602228 2.8436577623594 0.0006508337626927891 0.3258822899690733 0.00020031691993753934 0.0008716937363812505 5.358223192101316e-07 1.7115666489972339 0.0010520846635374967 1.132091113362166 0.0012371203360674583']
['59866.48091756024 2.8425932220188503 0.0006507751673102008 0.3256058020547473 0.00020028438872556894 0.0008709541663262899 5.357353023497979e-07 1.7101145065900596 0.0010519138063317698 1.1324787154287907 0.0012369442082563837']
['59866.48094909821 2.8434918924809107 0.0006508115295775164 0.32612517833725907 0.00020037277957625025 0.0008723434319176587 5.35971736649126e-07 1.7128423231998902 0.001052378043992911 1.1306495692810206 0.0012373581512680036']
['59866.480980636166 2.844152105529179 0.0006509471873054768 0.3257289259077959 0.0002003243803742958 0.0008712835069956211 5.358422749309284e-07 1.7107611654821215 0.0010521238465036544 1.1333909400470574 0.001237213332066284']
['59866.48101217413 2.8431065276463006 0.0006508075240397532 0.3259289945679136 0.00020033060692658085 0.0008718186652513437 5.358589301674762e-07 1.7118119462600503 0.0010521565489841434 1.1312945813862503 0.0012371676672613846']
['59866.4810437121 2.8463979000098103 0.0006510626025017634 0.32687600534611305 0.00020049951444923384 0.000874351798806163 5.36310736338159e-07 1.7167857423640391 0.001053043668325808 1.1296121576457712 0.0012380563314233499']
['59866.481075250056 2.8444724954087643 0.0006510006706060548 0.3256658572796137 0.00020029089790206018 0.0008711148064253821 5.357527135702018e-07 1.710429922687047 0.0010519479931830893 1.1340425727217174 0.0012370919341307912']
['59866.48110678802 2.8436473103618813 0.0006508597458609853 0.3256846462936205 0.00020030555064744733 0.0008711650646515165 5.357919078031133e-07 1.7105286044833008 0.0010520249508794504 1.1331187058785805 0.0012370832251934938']
['59866.48113832598 2.8462748027112745 0.0006510969003006666 0.32620148641648183 0.00020040698354250455 0.0008725475463379301 5.36063227914718e-07 1.7132431009269005 0.0010525576866728182 1.133031701784374 0.0012376610429981104']
['59866.481169863946 2.8440686147720022 0.0006509107488553478 0.3257773189382301 0.0002003027540792328 0.0008714129522057857 5.357844273383228e-07 1.7110153305579312 0.0010520102630211807 1.133053284214071 0.001237097569505867']
['59866.48120140191 2.84416916405202 0.0006509275304157001 0.3259880247861363 0.00020034545444684964 0.000871976563587847 5.358986453984583e-07 1.7121219789187831 0.0010522345296578239 1.1320471851332368 0.001237297116806349']
['59866.48123293987 2.8421918691890684 0.0006507872230395168 0.3255529349629751 0.00020029711626420797 0.0008708127535702826 5.357693468991726e-07 1.7098368432929367 0.0010519806526481513 1.1323550258961317 0.0012370073982064602']
['59866.481264477836 2.8463152080940315 0.0006510901033162435 0.32628796212046857 0.00020039816313666603 0.000872778857863087 5.36039634449352e-07 1.7136972800444779 0.0010525113610119015 1.1326179280495536 0.0012376180702040034']
['59866.4812960158 2.8410927529528434 0.0006506516141546594 0.32544367725226786 0.00020026065943530406 0.0008705205030706193 5.356718295121219e-07 1.709263010778718 0.001051789177706429 1.1318297421741255 0.0012367732198517358']
['59866.48132755376 2.8471941951358386 0.0006511390142441383 0.3264813222346391 0.0002004147600920539 0.0008732960716104325 5.360840291970873e-07 1.7147128268626004 0.001052598529895241 1.1324813682732382 0.0012377179327328382']
['59866.481359091726 2.8418339475616117 0.0006507385482552954 0.3254467160403681 0.00020027606065296162 0.0008705286314428406 5.357130258132956e-07 1.709278970800253 0.0010518700664546303 1.1325549767613587 0.0012368877454679054']
['59866.481390629684 2.8429323199882566 0.0006507927908287939 0.3259793687176882 0.00020038125319212638 0.0008719534097041283 5.359944024953874e-07 1.712076516374413 0.0010524225482779748 1.1308558036138436 0.0012373861469721717']
['59866.48142216765 2.8475610754185574 0.0006512526952612078 0.32646184948376417 0.00020042382757604686 0.000873243984475015 5.361082835651358e-07 1.7146105540113665 0.0010526461532355403 1.1329505214071909 0.001237818240698758']
['59866.481453705615 2.8443415946948294 0.0006509442267198511 0.3257215783175838 0.0002002833480031919 0.0008712638531249981 5.357325185496181e-07 1.7107225751973942 0.0010519083403528987 1.1336190194974352 0.0012370285133350381']
['59866.481485243574 2.847783762949632 0.0006512285583317142 0.3264854198808089 0.0002004143745121424 0.0008733070322935076 5.360829978197954e-07 1.7147343481134925 0.001052596504790664 1.1330494148361396 0.0012377633203017146']
['59866.48151678154 2.843580233473386 0.0006508478749530435 0.32603265644110424 0.00020036718089590518 0.0008720959475963599 5.359567608902738e-07 1.712356388871346 0.001052348639159166 1.1312238446020402 0.0012373522597348909']
['59866.481548319505 2.8437817095932543 0.0006509009666251377 0.3253668299447835 0.0002002334729927069 0.0008703149462832338 5.355991092310392e-07 1.7088594009705018 0.0010516463917684188 1.1349223086227525 0.0012367830050874216']
['59866.481579857464 2.8435455783066805 0.0006508454099459183 0.32561264383407623 0.0002002798272831808 0.0008709724672170419 5.35723101070744e-07 1.7101504403050223 0.00105188984917637 1.1333951380016583 0.001236960792607412']
['59866.48161139543 2.8483157914256045 0.0006512597384132042 0.326552378462188 0.0002004308003478548 0.0008734861379944975 5.361269348441323e-07 1.715086021335021 0.0010526827749362123 1.1332297700905836 0.0012378530896376351']
['59866.48164293339 2.8425958770875 0.0006508141036164188 0.32549435104201213 0.0002002685302499232 0.0008706560490222663 5.356928829415807e-07 1.7095291546324167 0.0010518305160185043 1.1330667224550834 0.0012368938644418104']
['59866.48167447135 2.846524108153324 0.0006511178769661364 0.3262645309098128 0.0002003781583280692 0.0008727161823505073 5.359861241271034e-07 1.7135742169633024 0.0010524062937398596 1.1329498911900218 0.0012375433312850732']
['59866.48170600932 2.8408407413378898 0.0006506419107432176 0.3253626240843146 0.0002002569439118509 0.0008703036961406526 5.356618909587816e-07 1.7088373113671986 0.0010517696634025782 1.1320034299706911 0.0012367515194531026']
['59866.48173754728 2.8464386154537022 0.000651084929449044 0.3266239129170449 0.00020045572193333241 0.0008736774835758734 5.361935969200726e-07 1.7154617275054882 0.0010528136656162417 1.130976887948214 0.00123787244894778']
['59866.48176908524 2.841901462254772 0.000650727431414183 0.32530589696226325 0.00020024517545571608 0.0008701519582938989 5.356304118332957e-07 1.708539374801803 0.0010517078542842233 1.1333620874529688 0.0012367439511709872']
['59866.48180062321 2.846611205006081 0.0006511064247891682 0.3266709363085802 0.00020046095211422567 0.000873803265175937 5.362075869896931e-07 1.7157086990996862 0.0010528411350537062 1.1309025059063946 0.0012379071177042763']
['59866.48183216117 2.8462559587960596 0.0006510845165957784 0.32646306118243806 0.0002004305263201696 0.0008732472256150736 5.361262018548777e-07 1.71461691797499 0.0010526813357151766 1.1316390408210697 0.0012377596868188294']
['59866.48186369913 2.8400645579911905 0.0006505612147328487 0.32507914632083734 0.00020018989141498794 0.0008695454291269713 5.354825340458003e-07 1.7073484575674232 0.0010514174969274578 1.1327161004237674 0.0012364095789664038']
['59866.48189523709 2.8416084711210248 0.0006507074527076498 0.3254826833445623 0.00020024583116667506 0.0008706248394134657 5.356321657768312e-07 1.7094678747088357 0.0010517112981443019 1.1321405964121891 0.0012367363678867259']
['59866.48192677506 2.84193065032999 0.0006507265247250424 0.32560927291745 0.00020030414435931023 0.0008709634504431963 5.357881461609548e-07 1.710132735910977 0.0010520175649123436 1.131797914419013 0.0012370068580508469']
['59866.48195831302 2.8423242092631904 0.0006507356392791862 0.3256481372736773 0.00020028232867321143 0.0008710674076600645 5.357297919713822e-07 1.7103368554289775 0.0010519029867290517 1.131987353834213 0.0012369142111389902']
['59866.48198985098 2.8472084647334963 0.0006511661165193163 0.3263757384263423 0.0002004000214038508 0.0008730136483331065 5.360446050780586e-07 1.714158290054319 0.0010525211208185442 1.1330501746791772 0.001237666360968081']
['59866.48202138895 2.8461524534860514 0.0006510890073872297 0.32604616993734914 0.00020033879684565065 0.0008721320944825083 5.35880837160812e-07 1.7124273631163296 0.0010521995632649722 1.1337250903697218 0.0012373523412817734']
['59866.48205292691 2.8468163939765887 0.0006511033838233626 0.32644962650764453 0.00020041842316900283 0.0008732112895662968 5.360938274626898e-07 1.7145463577082172 0.0010526177687447628 1.1322700362683715 0.0012377155503197962']
['59866.48208446487 2.846915408712922 0.0006511093072087475 0.3262064974994735 0.00020035311809974245 0.0008725609503484909 5.359191446966101e-07 1.713269419640092 0.0010522747799356223 1.1336459890728299 0.0012374269846833056']
['59866.48211600284 2.84077790220049 0.0006506465629664061 0.3254114318483856 0.00020025642336636513 0.0008704342507106218 5.3566049856572e-07 1.709093654665891 0.001051766929445195 1.131684247534599 0.0012367516419130283']
['59866.482147540795 2.84306404769254 0.0006508312419100111 0.3256927574789874 0.00020030100217410248 0.0008711867610421968 5.357797412146031e-07 1.7105712052467827 0.0010520010618387736 1.1324928424457574 0.0012370479132014387']
['59866.48217907876 2.8421073376089736 0.0006507504066305862 0.3253355102808011 0.00020025259848690881 0.000870231170159893 5.356502674989603e-07 1.7086949069369806 0.0010517468407925884 1.133412430671993 0.0012367891933741432']
['59866.48221061673 2.8463764770040885 0.0006511111845261525 0.32631841403170675 0.0002003888078849041 0.0008728603128580476 5.360146103390699e-07 1.7138572165530817 0.001052462226286261 1.1325192604510068 0.0012375873756525163']
['59866.482242154685 2.8462921066471187 0.0006510524807984099 0.3265214643141888 0.00020042572682562712 0.0008734034465749086 5.361133638165453e-07 1.7149236571123363 0.0010526561282858567 1.1313684495347824 0.001237721397234262']
['59866.48227369265 2.841037546426679 0.0006506404842575055 0.32569062291876133 0.00020032421110551142 0.0008711810513646959 5.358418221584286e-07 1.7105599943212255 0.00105212295748693 1.1304775521054535 0.0012370512347618773']
['59866.48230523062 2.8455179838640396 0.0006510255171863794 0.3262670706012576 0.00020039143240658386 0.0008727229757025639 5.36021630601231e-07 1.713587555678874 0.0010524760105387807 1.1319304281851656 0.0012375540298457358']
['59866.482336768575 2.8470340163267664 0.0006511051092324166 0.3264829674621701 0.00020043054942388383 0.0008733004723851227 5.36126263654379e-07 1.7147214677634985 0.0010526814570582135 1.132312548563268 0.001237770622249034']
['59866.48236830654 2.8467858987390042 0.0006511331840692161 0.3260581516477308 0.00020035539186796718 0.0008721641440360198 5.359252267378271e-07 1.7124902922674938 0.001052286721995626 1.1342956064715104 0.0012374497034968392']
['59866.4823998445 2.842123704262862 0.0006507431200394996 0.3255891419730908 0.00020026704801129385 0.0008709096027238034 5.356889181415016e-07 1.7100270061611913 0.0010518227311517533 1.132096698101671 0.0012368498963278754']
['59866.482431382465 2.843485805697718 0.0006508829583954242 0.32575110741189606 0.0002003293934909573 0.0008713428397018858 5.358556843812978e-07 1.7108776649784458 0.001052150175897885 1.1326081407192723 0.00123720193104098']
['59866.48246292043 2.840990818356997 0.0006506143388409683 0.325340965653537 0.00020023623097911857 0.0008702457625890918 5.356064864944072e-07 1.7087235591047112 0.0010516608769911692 1.1322672592522858 0.0012366444994820886']
['59866.48249445839 2.8425900959936117 0.0006507552540173129 0.32566312549961585 0.00020029335962946536 0.0008711074992608426 5.357592983783544e-07 1.7104155751030246 0.0010519609224236626 1.1321745208905871 0.0012369738004248839']
['59866.482525996355 2.8413670998163605 0.0006506745727705184 0.32548391087523476 0.00020026617451715967 0.0008706281229021096 5.356865816556324e-07 1.709474321823712 0.0010518181434724773 1.1318927779926484 0.0012368099314720858']
['59866.48255753432 2.840929782929103 0.0006506439416328427 0.3254595059949131 0.0002002509816668537 0.0008705628429468364 5.356459427106601e-07 1.7093461449312664 0.0010517383490906182 1.1315836379978366 0.0012367259574098787']
['59866.48258907228 2.843668566786712 0.0006508730872387996 0.32568008284643213 0.000200288405969601 0.0008711528580098767 5.35746047967366e-07 1.7105046367984882 0.0010519349053025263 1.1331639299882237 0.0012370136703713508']
['59866.482620610244 2.8425197873747443 0.0006507786520349516 0.32563424856385337 0.00020028823163669644 0.0008710302571252468 5.357455816489878e-07 1.71026391052444 0.0010519339896885318 1.1322558768503044 0.0012369632058418152']
['59866.4826521482 2.840532997640515 0.0006506404950613166 0.32552732167259324 0.00020026963173186427 0.0008707442412715746 5.356958292658772e-07 1.7097023197089982 0.0010518363011127324 1.130830677931517 0.0012368074458670394']
['59866.48268368617 2.843110118313431 0.0006508113666863358 0.32583963007503214 0.00020033139457310527 0.0008715796265827895 5.358610370218925e-07 1.7113425949318917 0.001052160685783116 1.1317675233815392 0.0012371732068371564']
['59866.482715224134 2.842444316545203 0.000650831752063525 0.32552317347928195 0.00020028194129100997 0.0008707331453813159 5.357287557731935e-07 1.709680532979422 0.0010519009521586659 1.132763783565781 0.001236963048213804']
['59866.48274676209 2.8470568911852383 0.0006511270516170846 0.32636257503717736 0.00020039150391349715 0.0008729784379389309 5.360218218731422e-07 1.7140891546070243 0.0010524763861003 1.132967736578214 0.0012376077652658396']
['59866.48277830006 2.8466275650847463 0.0006511181305100189 0.32623514408821885 0.00020038391663961965 0.0008726375763350715 5.360015268791558e-07 1.7134198744129143 0.0010524365369727925 1.133207690671832 0.001237569183615262']
['59866.482809838024 2.8407479320987 0.0006506060217029374 0.32559258518926937 0.00020028428250818683 0.000870918812889769 5.35735018231791e-07 1.7100450902797761 0.0010519132484673678 1.1307028418189238 0.0012368547520939124']
['59866.48284137598 2.8433096528622266 0.000650827657041474 0.32582447550647387 0.00020032859658639825 0.0008715390900366302 5.358535527628147e-07 1.7112630016096317 0.0010521459904747807 1.1320466512525948 0.0012371692788144442']
['59866.48287291395 2.8430523460754724 0.0006508291541070895 0.32577947616708297 0.00020030803327292522 0.0008714187225189843 5.357985485109562e-07 1.7110266605414022 0.001052037989878809 1.1320256855340702 0.0012370782190241627']
['59866.48290445191 2.8422727322817294 0.000650766200787106 0.3255824815121602 0.0002002749926308885 0.0008708917868367382 5.357101689898961e-07 1.7099920247487406 0.0010518644570950027 1.1322807075329888 0.0012368975237208007']
['59866.48293598987 2.8476739848486883 0.0006512485500130642 0.3262684096323149 0.00020038368483724328 0.0008727265574405761 5.360009068372395e-07 1.7135945884050154 0.0010524353195233366 1.1340793964436728 0.0012376367704921773']
['59866.48296752784 2.84615313836049 0.0006510364888253369 0.32620031404991495 0.00020037739577151984 0.0008725444104062623 5.359840843851837e-07 1.7132369435394694 0.0010524022887159654 1.1329161948210205 0.0012374971058861613']
['59866.482999065796 2.8406728316168466 0.0006506239789498547 0.3251399149535803 0.00020020409950855366 0.0008697079775015255 5.355205388915632e-07 1.7076676205545185 0.0010514921192676138 1.133005211062328 0.0012365060609905796']
['59866.48303060376 2.847660909237921 0.0006512082773002955 0.3263756757462783 0.00020039316088190506 0.000873013480671896 5.360262540531871e-07 1.714157960852302 0.001052485088665468 1.1335029483856187 0.0012376579019614331']
['59866.48306214173 2.8474671759841628 0.0006511768885114502 0.32645460011065686 0.00020039292879342954 0.000873224593322673 5.360256332459919e-07 1.7145724795727777 0.0010524838697133906 1.132894696411385 0.0012376403500768416']
['59866.483093679686 2.8412096261516386 0.0006506961950097923 0.3255514802729126 0.00020027318681618755 0.0008708088624591209 5.357053386649219e-07 1.7098292031140367 0.0010518549727740944 1.131380423037602 0.001236852627417597']
['59866.48312521765 2.8468293679333048 0.0006511028974084949 0.3263558438161352 0.00020040686823784748 0.0008729604327775543 5.360629194894048e-07 1.714053801555332 0.0010525570810811318 1.1327755663779728 0.001237663682891184']
['59866.48315675561 2.8404118294903453 0.0006505836882788842 0.32535476197313073 0.00020023949188323424 0.0008702826659917778 5.356152089987594e-07 1.708796018766443 0.0010516780035884153 1.1316158107239023 0.0012366429390435506']
['59866.483188293576 2.839967898045403 0.0006505843644673228 0.3253266069124361 0.00020023912841287347 0.0008702073547803054 5.356142367617076e-07 1.708648145548509 0.001051676094605428 1.131319752496894 0.0012366416713235388']
['59866.48321983154 2.846704320408886 0.0006511181523639767 0.326679503459378 0.00020046731060769567 0.0008738261812162343 5.362245951521532e-07 1.7157536946395906 0.0010528745305026033 1.1309506257692954 0.0012379416889817371']
['59866.4832513695 2.847063808434946 0.0006511733635050005 0.32631969120678006 0.00020040389814017214 0.0008728637291391588 5.36054974855346e-07 1.7138639244053577 0.0010525414818286353 1.1331998840295883 0.0012376874889520517']
['59866.483282907466 2.8410689421036115 0.0006506670896068224 0.32553586868112083 0.0002002715476968019 0.0008707671034338572 5.357009542287447e-07 1.7097472094596684 0.0010518463639537915 1.131321732643943 0.0012368299943242907']
['59866.48331444543 2.8422294282190324 0.000650761713710636 0.3257247937467983 0.00020029998391779837 0.0008712724539897652 5.357770175083151e-07 1.7107394629558734 0.001051995713853983 1.131489965263159 0.0012370067865613169']
['59866.48334598339 2.84088987750025 0.0006506283929349886 0.3254371331477497 0.00020025624650735056 0.0008705029984221793 5.356600254903184e-07 1.7092286404818788 0.0010517660005638161 1.1316612370183712 0.0012367412929287884']
['59866.483377521356 2.8411303288552707 0.0006506446931299027 0.3256429021751943 0.00020030279090286603 0.0008710534044365158 5.357845258368648e-07 1.7103093601638357 0.0010520104564226158 1.130820968691435 0.0012369577669106677']
['59866.483409059314 2.8421563051012657 0.0006507527286814705 0.3257430830513299 0.00020032404390710803 0.0008713213755565201 5.358413749239348e-07 1.710835520227573 0.0010521220793440547 1.1313207848736928 0.0012371095277822562']
['59866.48344059728 2.846885658184705 0.0006511358274486037 0.32652226127580664 0.00020042271207345677 0.0008734055783460166 5.361052997373839e-07 1.7149278428351191 0.0010526402945034495 1.1319578153495857 0.0012377517745491165']
['59866.483472135245 2.8429404674080088 0.0006507665194851891 0.32558988060364025 0.00020029138768208404 0.0008709115784667121 5.357540236695603e-07 1.7100308855233208 0.001051950565557164 1.132909581884688 0.001236970919326281']
['59866.483503673204 2.843822259100583 0.0006508781034186194 0.325742873512372 0.00020031931562182202 0.0008713208150664208 5.358287273613194e-07 1.7108344197078365 0.0010520972459129307 1.1329878393927466 0.0012371543640012726']
['59866.48353521117 2.8413569332380106 0.0006506507867683293 0.3253878374370411 0.00020024860631505332 0.0008703711386569272 5.356395889462802e-07 1.708969734438241 0.0010517258735034314 1.1323871987997696 0.001236718949203416']
['59866.483566749135 2.843508412470081 0.0006508514894624556 0.32563008089296064 0.0002002925146409198 0.0008710191091349316 5.357570381413145e-07 1.710242021496642 0.0010519564844586125 1.133266390973439 0.0012370206572769997']
['59866.48359828709 2.8442346779396006 0.0006509193066651946 0.32609562071038495 0.0002003842962455502 0.0008722643690197917 5.360025422768074e-07 1.7126870835629462 0.0010524385307014192 1.1315475943766544 0.001237466284265741']
['59866.48362982506 2.840638308965443 0.0006506269670883721 0.325422223766475 0.00020026350121447138 0.0008704631177208633 5.356794309104691e-07 1.709150334907957 0.0010518041030171817 1.1314879740574857 0.001236772946593833']
['59866.48366136302 2.841352690355698 0.0006506673862149704 0.3257688978144959 0.0002003304264683068 0.0008713904267693373 5.358584474645125e-07 1.7109711019668905 0.0010521556011990904 1.1303815883888075 0.0012370931479150796']
['59866.48369290098 2.8439732191424927 0.0006508616950874599 0.3258589748825035 0.00020031985093818606 0.000871631371485852 5.358301592646044e-07 1.711444195811468 0.0010521000574484562 1.1325290233310248 0.0012371481225039976']
['59866.48372443895 2.8477104040591956 0.0006511879592753339 0.3265162134740742 0.00020041944160975586 0.0008733894012444947 5.360965516623552e-07 1.7148960791705579 0.0010526231176982976 1.1328143248886378 0.0012377645924076428']
['59866.48375597691 2.841077251884099 0.0006506817510539711 0.325334093600539 0.0002002473250784772 0.00087022738072012 5.356361618011648e-07 1.7086874663893856 0.0010517191443197333 1.1323897854947136 0.001236729517591981']
['59866.48378751487 2.84284687494971 0.0006507774465754789 0.32571828293832583 0.0002002975672540457 0.0008712550384040187 5.357705532397097e-07 1.710705267533224 0.001051983021292257 1.1321416074164858 0.0012370042692159498']
['59866.48381905284 2.839966919309547 0.0006505269446566035 0.32541584472073143 0.00020025382541254876 0.0008704460545836817 5.356535493692192e-07 1.7091168315164467 0.0010517532847297729 1.1308500877931005 0.0012366771113205429']
['59866.4838505908 2.8434121760903386 0.0006508628375156808 0.32550208511705286 0.00020027375839809966 0.0008706767366907197 5.35706867573942e-07 1.7095697747744374 0.0010518579747799354 1.1338424013159012 0.001236942857357247']
['59866.48388212876 2.8474922819033868 0.0006511691727768166 0.3267030100710423 0.00020046711205977304 0.0008738890584169353 5.362240640616771e-07 1.7158771537344661 0.0010528734877088921 1.1316151281689206 0.0012379676379837762']
['59866.48391366672 2.8415734455751935 0.0006506665983093278 0.32555806742578897 0.00020027464790953374 0.0008708264822564517 5.357092469040541e-07 1.7098637995051944 0.0010518626465836857 1.1317096460699991 0.001236843583252736']
['59866.48394520469 2.8416314666336135 0.0006507289267848991 0.3254643968746969 0.00020025866188550474 0.0008705759254290828 5.356664863201112e-07 1.7093718323250888 0.0010517786863734494 1.1322596343085247 0.0012368049730107351']
['59866.48397674265 2.8404986873736853 0.0006506370946024305 0.3252697698657131 0.00020021680426129064 0.0008700553228990162 5.355545224915439e-07 1.708349631647653 0.00105155884591014 1.1321490557260323 0.001236569704984138']
['59866.48400828061 2.847294546284322 0.0006511864505115535 0.3269795791000799 0.0002005248208146116 0.0008746288454434473 5.363784276514626e-07 1.7173297221642854 0.0010531765799086745 1.1299648241200366 0.001238234510017375']
['59866.48403981858 2.840544454247797 0.0006506258201617258 0.32531194197130947 0.00020025161927545237 0.0008701681279253399 5.35647648232681e-07 1.7085711237988943 0.001051741697875275 1.1319733304489028 0.001236719271666244']
['59866.48407135654 2.841588310665764 0.0006506924158727447 0.3256587608588183 0.00020030867603568173 0.0008710958244010484 5.358002678196946e-07 1.7103926515694239 0.0010520413657336225 1.1311956590963401 0.001237009157318156']
['59866.4841028945 2.8432833700487725 0.0006507882966704656 0.325785941621066 0.00020032861905710142 0.0008714360167872319 5.358536128690918e-07 1.7110606177576997 0.0010521461084931798 1.1322227522910728 0.001237148673644598']
['59866.48413443247 2.839435300572693 0.0006505023669622703 0.3250813127547839 0.00020018148967831034 0.0008695512240626263 5.354600604672659e-07 1.7073598358969744 0.0010513733701591932 1.1320754646757185 0.0012363410908416076']
['59866.484165970425 2.8454367028529903 0.0006509871328429246 0.32625721369179533 0.00020039009930055101 0.0008726966097216475 5.360180647119068e-07 1.7135357861964042 0.0010524690089314655 1.131900916656586 0.001237527883277073']
['59866.48419750839 2.8407230977006384 0.0006506022474472477 0.3254568179522882 0.0002002790484566987 0.0008705556527742146 5.357210178088208e-07 1.7093320270603372 0.0010518857587011488 1.1313910706403012 0.0012368293874830518']
['59866.48422904636 2.8417290277648384 0.0006506798673499687 0.3255026033374197 0.00020027035360155134 0.0008706781228643835 5.356977601756078e-07 1.7095724965200616 0.0010518400924451226 1.1321565312447768 0.0012368313829498089']
['59866.484260584315 2.846691443254759 0.0006511415773805349 0.32601993036267196 0.0002003550415220617 0.0008720619069528528 5.359242896070262e-07 1.7122895502241176 0.0010522848819436014 1.1344018930306414 0.0012374525552766337']
['59866.48429212228 2.8421416201390226 0.0006507926868265029 0.3253184180170119 0.000200234276308859 0.0008701854505250916 5.356012579997193e-07 1.70860513664397 0.001051650610865856 1.1335364834950525 0.0012367296101255872']
['59866.48432366025 2.8440200056377316 0.0006508957359893931 0.3259705443798584 0.00020036205871192282 0.0008719298057211851 5.359430596986735e-07 1.7120301700622818 0.001052321736932368 1.1319898355754499 0.0012373545559578021']
['59866.484355198205 2.841949619980363 0.0006506969329973654 0.325739359805265 0.00020031707483205113 0.0008713114163461744 5.35822733533278e-07 1.7108159653637869 0.0010520854770590922 1.1311336546165762 0.0012370490490076923']
['59866.48438673617 2.84216222467214 0.0006507487934034076 0.3256152754868943 0.0002003091361551743 0.0008709795065540922 5.358014985808988e-07 1.7101642620109996 0.001052043782327596 1.1319979626611405 0.0012370408691915336']
['59866.48441827413 2.8473045691023193 0.0006511804435722555 0.3265810189441601 0.00020044648894365063 0.0008735627476462352 5.361688998453268e-07 1.7152364440344543 0.0010527651730233751 1.132068125067865 0.0012378814481289785']
['59866.484449812095 2.846154888490762 0.0006510363642706708 0.32641026727531364 0.00020041625507929896 0.0008731060086187041 5.360880280980943e-07 1.714339639051017 0.0010526063817190073 1.131815249439745 0.0012376706114465004']
['59866.48448135006 2.8405640684259437 0.0006506086727931612 0.3256882200705222 0.00020029756656613824 0.0008711746240508345 5.357705513996446e-07 1.7105473743199697 0.0010519830176792975 1.130016694105974 0.0012369154840163171']
['59866.48451288802 2.841409020691594 0.0006506599354991087 0.3254341997163046 0.0002002479011789516 0.0008704951518656297 5.356377027967651e-07 1.7092132338041208 0.001051722170057519 1.132195786887473 0.001236720613014193']
['59866.484544425984 2.8435758691370934 0.0006508740602711125 0.32579601331047015 0.0002003270888804453 0.0008714629572772144 5.358495198408795e-07 1.7111135152860828 0.0010521380718510782 1.1324623538510106 0.001237186956192276']
['59866.48457596395 2.846932256772161 0.0006511369159201778 0.32657920045247657 0.00020043017875926559 0.0008735578834119427 5.361252721736021e-07 1.7152268931327552 0.0010526795102902605 1.1317053636394059 0.0012377856981961714']
['59866.48460750191 2.8433501552528 0.0006508506703603164 0.32563287666405183 0.00020029419335092967 0.0008710265874675184 5.357615284773831e-07 1.7102567051683395 0.001051965301212866 1.1330934500844605 0.0012370277240483939']
['59866.484639039874 2.8437138571299534 0.0006508414048733388 0.3256633557546904 0.00020027625314063057 0.0008711081151639231 5.357135406933627e-07 1.7104167844258953 0.0010518710774192782 1.133297072704058 0.0012369427221212365']
['59866.48467057783 2.8412301929809023 0.0006506660755590837 0.32527729005868666 0.00020023569745549293 0.0008700754384601044 5.356050593864698e-07 1.7083891284594888 0.0010516580748712865 1.1328410645214135 0.0012366693366965317']
['59866.4847021158 2.839990018372842 0.0006505580862929815 0.3254713511471762 0.00020025625120864097 0.0008705945272247246 5.356600380656731e-07 1.7094083568654213 0.0010517660252554672 1.130581661507421 0.0012367043282542802']
['59866.484733653764 2.8478895115667378 0.000651182528632272 0.32645448089898554 0.00020042580912026136 0.000873224274446593 5.361135839442399e-07 1.7145718534610586 0.0010526565605055744 1.1333176581056792 0.0012377901760683616']
['59866.48476519172 2.846278472272853 0.0006510694914362795 0.3262440972208406 0.00020039055808757244 0.0008726615248277253 5.360192919089201e-07 1.7134668971682805 0.0010524714185271664 1.1328115751045726 0.0012375732582339042']
['59866.48479672969 2.8440127179079253 0.0006509032721221869 0.32586355197510963 0.000200334170912021 0.0008716436146272514 5.358684633758779e-07 1.7114682351633912 0.0010521752673950684 1.1325444827445341 0.0012372339564436685']
['59866.484828267654 2.846549800512804 0.0006511229280753745 0.326092720525601 0.00020034632964648506 0.0008722566113938381 5.359009864463267e-07 1.7126718515000054 0.0010522391262945644 1.1338779490127986 0.0012374038331808244']
['59866.48485980561 2.8433082941172714 0.0006508406377094216 0.325749251303589 0.0002003210047853741 0.0008713378748479029 5.358332456592859e-07 1.7108679165104466 0.001052106117570242 1.1324403776068248 0.0012371421981012265']
['59866.48489134358 2.8465443432741235 0.0006510657965093871 0.3263605199192325 0.00020040263173829562 0.0008729729407594424 5.36051587391168e-07 1.7140783609203387 0.0010525348305582753 1.1324659823537848 0.0012376252425200208']
['59866.48492288154 2.8401515043202603 0.000650594262343081 0.3253566414370682 0.0002002367659281591 0.0008702876933191058 5.356079174151485e-07 1.7088058899005685 0.0010516636865974744 1.1313456144196918 0.001236636326452336']
['59866.4849544195 2.8469283128108716 0.0006511365859313687 0.3263070014112168 0.0002003937567192661 0.0008728297855477181 5.360278478424523e-07 1.7137972763194163 0.0010524882180633723 1.1331310364914553 0.0012376228434788086']
['59866.48498595747 2.8441784791624247 0.0006509357645379372 0.32559100740435043 0.00020029191124390356 0.0008709145925155003 5.357554241309315e-07 1.7100368035942775 0.0010519533153566364 1.1341416755681473 0.0012370623053203132']
['59866.485017495426 2.842553965410587 0.0006507838751598863 0.3256835956110829 0.00020029840672555294 0.0008711622542091724 5.357727987193728e-07 1.7105230861926624 0.0010519874302812654 1.1320308792179248 0.0012370114007711887']
['59866.48504903339 2.847166552038183 0.0006511303488493419 0.3265559546701401 0.00020043247278060187 0.0008734957038965664 5.361314083893202e-07 1.7151048039398116 0.0010526915587216485 1.1320617480983712 0.0012377924902811778']
['59866.48508057136 2.8443330229736095 0.0006509366548210019 0.325768586307612 0.00020032301847819716 0.0008713895935279864 5.358386320318348e-07 1.7109694659013237 0.0010521166936880103 1.1333635570722858 0.0012372017077770894']
['59866.485112109316 2.8463308394390276 0.0006511012459618167 0.32632947972651344 0.00020040043996183537 0.0008728899121862363 5.360457246675076e-07 1.7139153346980749 0.0010525233191272867 1.1324155047409528 0.0012376341017440295']
['59866.48514364728 2.8413775306491567 0.0006506723178637575 0.32553252752821005 0.00020025869686915063 0.0008707581662741702 5.356665798969209e-07 1.709729661387658 0.0010517788701110854 1.1316478692614986 0.0012367753461507657']
['59866.48517518524 2.8463656175372183 0.0006510639840492409 0.3265050029405887 0.00020043452419269268 0.0008733594144912356 5.361368956561197e-07 1.714837200318218 0.0010527023329448145 1.1315284172190003 0.001237766744226684']
['59866.485206723206 2.843684302074134 0.0006508543932623444 0.32576349954741546 0.0002002976101012031 0.000871375987090514 5.357706678504138e-07 1.7109427497238208 0.0010519832463298483 1.132741552350313 0.0012370449433175743']
['59866.48523826117 2.845818937123127 0.0006510276668594868 0.32615655644952346 0.00020035091456726235 0.0008724273643827304 5.359132505270896e-07 1.7130071242096823 0.0010522632067608319 1.1328118129134448 0.001237374187268789']
['59866.48526979913 2.8394820339136144 0.0006504988749006628 0.3253185006399719 0.0002002264186833073 0.000870185671531016 5.355802398493409e-07 1.708605570588088 0.001051609341824093 1.1308764633255264 0.0012365399282104601']
['59866.485301337096 2.847085897767516 0.0006511537462550698 0.3264750671749589 0.00020043579844527173 0.0008732793401202235 5.361403041199299e-07 1.7146799746583978 0.0010527090254478558 1.1324059231091184 0.001237819653068001']
['59866.48533287506 2.8466372973461347 0.0006510839092597786 0.3265369536061381 0.00020043385064923123 0.0008734448784636266 5.36135094012905e-07 1.7150050084355994 0.0010526987954266348 1.1316322889105352 0.0012377742164020398']
['59866.48536441302 2.8414138797655393 0.000650672309555031 0.3255012092755121 0.0002002534171757949 0.0008706743939258362 5.356524573877515e-07 1.7095651747663454 0.0010517511406291748 1.1318487049991939 0.0012367517601509401']
['59866.485395950986 2.8438056316363167 0.0006508561463253317 0.3260141115412612 0.0002003342357042765 0.0008720463423446093 5.358686366869324e-07 1.7122589891872964 0.001052175607690528 1.1315466424490204 0.0012372094538227526']
['59866.485427488944 2.842742013236042 0.0006507778221152042 0.3258060931950631 0.0002003274320773057 0.0008714899196882861 5.358504378488927e-07 1.711166455856424 0.0010521398743555972 1.131575557379618 0.0012371378617462244']
['59866.48545902691 2.846340068372398 0.0006510684073833641 0.3264154388638488 0.00020041088291753055 0.0008731198419612083 5.360736582476651e-07 1.7143668007555084 0.001052578166583669 1.1319732676168897 0.0012376634711670812']
['59866.485490564875 2.846912116647184 0.0006511487906378593 0.3261590060017376 0.00020036289365299486 0.0008724339166237933 5.359452930599979e-07 1.7130199895049245 0.0010523261221270738 1.1338921271422595 0.0012374914201157728']
['59866.485522102834 2.8419192590374744 0.0006507416265514829 0.3254481407431315 0.00020025558315776777 0.0008705324423417856 5.356582511144344e-07 1.7092864534828338 0.001051762516584915 1.1326328055546406 0.0012367979041944981']
['59866.4855536408 2.8420686999512927 0.0006507426598163105 0.3258153885131855 0.00020031344187651382 0.0008715147834836943 5.358130158386259e-07 1.7112152758045456 0.0010520663964102618 1.1308534241467472 0.0012370568749093473']
['59866.485585178765 2.8428181478931234 0.0006507663375990312 0.32607780617099713 0.00020036853670050994 0.0008722167173894979 5.359603874953951e-07 1.7125935198056572 0.00105235575998167 1.1302246280874662 0.0012373154293544772']
['59866.48561671672 2.8441433638942764 0.0006508773045406183 0.32592987102769855 0.0002003330620614037 0.0008718210096699522 5.358654973413083e-07 1.7118165495152236 0.0010521694435998094 1.1323268143790528 0.0012372153424570814']
['59866.48564825469 2.8466458774811128 0.0006511192094040369 0.32626372536659975 0.00020037409754820477 0.000872714027624722 5.35975262056713e-07 1.7135699861691165 0.001052384966114521 1.1330758913119963 0.001237525895389183']
['59866.48567979265 2.8400647348453187 0.0006505403196584208 0.3252394614281522 0.0002002175268770797 0.0008699742516779203 5.355564553970025e-07 1.70819044867727 0.001051562641161133 1.1318742861680486 0.0012365220158925831']
['59866.48571133061 2.8412237846463757 0.000650694129130178 0.32558456207830083 0.00020028456324741012 0.0008708973520869182 5.357357691735575e-07 1.7100029520919162 0.0010519147229380785 1.1312208325544595 0.0012369023542779661']
['59866.48574286858 2.8410683345664305 0.0006506553501190723 0.3251843642815202 0.00020021294803238397 0.0008698268738083952 5.355442075689861e-07 1.707901072907144 0.0010515385926070588 1.1331672616592865 0.0012365620875559005']
['59866.48577440654 2.8424638599223817 0.0006507626813851991 0.32565026489511295 0.00020029197065096906 0.0008710730987771823 5.357555830372866e-07 1.7103480299113076 0.0010519536273685352 1.132115830011074 0.001236971503963399']
['59866.4858059445 2.842087623753385 0.0006507449507024767 0.3257301402446832 0.00020031044818240402 0.0008712867551925656 5.358050080871019e-07 1.7107675433019078 0.0010520506732269118 1.1313200804514774 0.0012370447081257684']
['59866.48583748246 2.8409265519498224 0.0006507002828345285 0.32535371103240673 0.00020023697385166127 0.0008702798548588178 5.35608473584109e-07 1.7087904991197835 0.0010516647786326747 1.1321360528300388 0.0012366930357600662']
['59866.48586902043 2.847085032898934 0.000651184417090429 0.32662967499378515 0.00020044411097716591 0.0008736928963993302 5.361625390869982e-07 1.7154919905135775 0.0010527526837036025 1.1315930423853566 0.0012378729167836814']
['59866.48590055839 2.8471119329211323 0.0006511449850134107 0.32674530911819516 0.00020044748021239074 0.0008740022029958001 5.361715513633087e-07 1.716099312595563 0.0010527703792667582 1.1310126203255693 0.0012378672234814154']
['59866.48593209635 2.847554485600078 0.0006511501541122825 0.3267292350009846 0.0002004725223362371 0.000873959206773785 5.362385358640763e-07 1.7160148897110539 0.0010529019030264554 1.1315395958890242 0.001237981801399835']
['59866.48596363432 2.8403887385414004 0.0006506018105346379 0.32550463969118615 0.0002002812302989634 0.0008706835698520779 5.357268539597699e-07 1.7095831916553896 0.0010518972179567405 1.1308055468860108 0.001236838903421169']
['59866.48599517228 2.845099370814766 0.0006509433415864425 0.32637180941802857 0.00020039884262460937 0.0008730031387348782 5.360414519933008e-07 1.7141376545064528 0.0010525149297510997 1.130961716308313 0.0012375439027786797']
['59866.48602671024 2.8419288647008454 0.000650726434749213 0.32537836649748814 0.00020022542217747004 0.0008703458050964974 5.355775743227893e-07 1.7089199921086564 0.0010516041080749477 1.133008872592189 0.0012366552037660005']
['59866.48605824821 2.84671232415613 0.0006511184356263195 0.3263544729073571 0.00020037352725222466 0.0008729567657706877 5.359737365873976e-07 1.7140466014041864 0.0010523819708625245 1.1326657227519437 0.0012375229411243078']
['59866.486089786165 2.846646069402201 0.0006510907315895491 0.32667396532614157 0.0002004525231532688 0.0008738113674132077 5.361850405896694e-07 1.7157246078053654 0.0010527968653007815 1.1309214615968357 0.0012378612120706287']
['59866.48612132413 2.8444221979844637 0.0006509688992583638 0.32577785904154666 0.00020031529152729035 0.0008714143969135608 5.358179634195348e-07 1.7110181672350142 0.0010520761109626595 1.1334040307494495 0.0012371841621440036']
['59866.4861528621 2.8411219764731293 0.0006506813166732326 0.32517395826363993 0.00020021791273550752 0.0008697990390322011 5.355574875192902e-07 1.7078464194518903 0.001051564667728506 1.133275557021239 0.0012365979242593668']
['59866.486184400055 2.84114270257926 0.0006506562399884937 0.3256157468490737 0.00020029382561818286 0.0008709807673880559 5.3576054483899e-07 1.710166737652698 0.0010519633698433974 1.130975964926562 0.0012369237947942632']
['59866.48621593802 2.840945782295604 0.0006506835267907738 0.32508047000078893 0.00020020553015596276 0.0008695489698027254 5.355243656916805e-07 1.7073554096680092 0.0010514996331720734 1.1335903726275947 0.0012365437843432333']
['59866.48624747599 2.845896762367243 0.000650958654942436 0.32677035946554234 0.0002004860952865449 0.0008740692094933879 5.362748417822917e-07 1.7162308795459158 0.0010529731895301728 1.129665882821327 0.0012379417225030468']
['59866.486279013945 2.842246383157824 0.0006507626012114807 0.32567038451184527 0.0002002985355407985 0.0008711269161966119 5.357731432837943e-07 1.7104537001672546 0.0010519881068319248 1.1317926829905693 0.0012370007841757216']
['59866.48631055191 2.8420495336682814 0.0006507471979334697 0.3256314718705925 0.00020030243689997827 0.0008710228298234331 5.357835789241008e-07 1.7102493270514314 0.0010520085971637515 1.13180020661685 0.001237010106718901']
['59866.48634208987 2.8406342681541163 0.0006506340283318847 0.32534234226579656 0.00020026221035602358 0.0008702494448520469 5.35675978028069e-07 1.7087307892111165 0.001051797323298443 1.1319034789429998 0.0012367708955668166']
['59866.486373627835 2.847385659213362 0.0006511809025650858 0.3266683322772914 0.00020045133999390354 0.0008737962997229694 5.361818757886367e-07 1.715695022464766 0.001052790651228485 1.1316906367485962 0.00123790335777054']
['59866.4864051658 2.846238915671533 0.0006510718935783651 0.3265892869736195 0.00020045957845843992 0.0008735848635749427 5.3620391263493e-07 1.7152798685589261 0.0010528339204749996 1.1309590471126068 0.0012378828194584799']
['59866.48643670376 2.840938300961976 0.0006506334576933975 0.32547413831017336 0.0002002815107272731 0.0008706019825317533 5.35727604069882e-07 1.709422995326541 0.0010518986907945016 1.1315153056354352 0.0012368568033387102']
['59866.486468241725 2.8406600241411257 0.0006506185293631046 0.3256218781969671 0.00020028274523927053 0.0008709971679649475 5.357309062326837e-07 1.7101989401101214 0.001051905174576001 1.1304610840310043 0.00123685446478168']
['59866.48649977969 2.846456287475451 0.0006510756821705557 0.3261854362555914 0.00020037932130466204 0.0008725046141960286 5.359892349417832e-07 1.7131588038634002 0.0010524124018101999 1.1332974836120506 0.0012375263259412981']
['59866.48653131765 2.8429752223621954 0.0006508766377672557 0.3253117873304818 0.00020022999371159352 0.0008701677142807664 5.355898025959534e-07 1.7085703116096738 0.0010516281182331591 1.1344049107525216 0.0012367546630798782']
['59866.486562855614 2.847641937846695 0.0006512302089579237 0.3263120142572563 0.00020037669082292395 0.0008728431942742079 5.35982198737223e-07 1.7138236042923127 0.0010523985862548528 1.133818333554382 0.001237595882915984']
['59866.48659439357 2.8402072816837185 0.0006505686986630945 0.32529849623394247 0.00020024569055686944 0.000870132162285584 5.356317896634595e-07 1.7085005054303701 0.0010517105596474236 1.1317067762533484 0.001236662740181853']
['59866.48662593154 2.847487194772848 0.0006511923646529397 0.3265085567142554 0.00020044125717638445 0.0008733689203844403 5.361549055323602e-07 1.7148558650958792 0.00105273769525412 1.132631329676969 0.0012378643507231493']
['59866.486657469504 2.8430458526206452 0.0006508609422235279 0.3255366229323757 0.00020027565583519347 0.0008707691209601688 5.357119429771804e-07 1.7097511708633177 0.00105186794031089 1.1332946817573275 0.0012369503344782978']
['59866.48668900746 2.843833464726721 0.000650871603705138 0.32592180624768957 0.00020033167912083375 0.0008717994374077106 5.358617981509266e-07 1.7117741924773613 0.0010521621802564798 1.1320592722493599 0.0012372061663569929']
['59866.48672054543 2.8477012298752706 0.0006512003833118162 0.3265282290138316 0.0002004044997106202 0.0008734215412872897 5.36056583979891e-07 1.7149591859970148 0.001052544641337291 1.1327420438782558 0.0012377043916999338']
['59866.486752083394 2.8395431265975857 0.0006505364501013394 0.3252552684659447 0.0002002504563194478 0.000870016533496413 5.356445374730721e-07 1.7082734688337433 0.0010517355899130664 1.1312696577638424 0.00123666706271342']
['59866.48678362135 2.8427407041134307 0.0006508285434571123 0.3254921529136076 0.00020026562941747366 0.0008706501693079617 5.356851235832037e-07 1.7095176098403764 0.0010518152805539583 1.1332230942730543 0.0012368885064488668']
['59866.48681515932 2.846613710336153 0.0006511040860322701 0.32642214893710275 0.00020042163324989414 0.0008731377905549374 5.361024140213718e-07 1.7144020427368845 0.0010526346284133097 1.1322116675992686 0.0012377302580864476']
['59866.48684669728 2.8419700110218105 0.0006507063308040629 0.32569772004812314 0.00020030598796854886 0.0008712000352843547 5.357930775815171e-07 1.7105972691603109 0.0010520272477339751 1.1313727418614996 0.001237004470049809']
['59866.48687823524 2.8434009218581338 0.0006508501192942495 0.32552152475373075 0.00020026344745510807 0.0008707287352498658 5.35679287111e-07 1.709671873706569 0.0010518038206675845 1.1337290481515647 0.0012368901143417176']
['59866.48690977321 2.8468934752475454 0.0006511429119758247 0.3267319005225712 0.00020046450121612085 0.0008739663367054896 5.362170803865025e-07 1.7160288892992186 0.0010528597752947524 1.1308645859483268 0.0012379421627241205']
['59866.48694131117 2.8468073402462224 0.000651163409810484 0.32617321029460083 0.00020035573371112779 0.0008724719113031599 5.359261411248652e-07 1.713094591883408 0.001052288517390377 1.1337127483628144 0.0012374671349606235']
['59866.48697284913 2.8405130000062346 0.0006506122282763288 0.32555598313089834 0.00020027795644714287 0.000870820907032339 5.357180968219516e-07 1.7098528525782477 0.0010518800233568428 1.130660147427987 0.001236829759958856']
['59866.4870043871 2.8433554404794865 0.000650849275545543 0.3255082106623797 0.00020025936127472625 0.0008706931217464829 5.356683570974516e-07 1.7096019467561963 0.0010517823596361674 1.1337534937232903 0.0012368714207709637']
['59866.487035925056 2.8461764647277135 0.0006510335580263367 0.32630430904530455 0.00020037813511385736 0.0008728225838108518 5.359860620320351e-07 1.7137831357421458 0.0010524061718164778 1.1323933289855677 0.0012374988663242667']
['59866.48706746302 2.840729084594922 0.0006506289454668153 0.3250600441450965 0.0002001726235425969 0.0008694943332329718 5.354363446802925e-07 1.7072481310141623 0.001051326804320362 1.1334809535807595 0.0012363680981656413']
['59866.48709900098 2.8465692394557114 0.0006510944194486658 0.32612368197510994 0.00020036287931781836 0.000872339429338958 5.359452547152215e-07 1.7128344641549893 0.0010523260468372814 1.133734775300722 0.00123746274767743']
['59866.487130538946 2.8434087747914596 0.0006508835750187009 0.32549116578413106 0.0002002866561071055 0.0008706475288619842 5.357413673074351e-07 1.709512425336823 0.001051925714848243 1.1338963494546366 0.0012370113733463051']
['59866.48716207691 2.8417449542420505 0.0006507519195233946 0.32558881305835324 0.00020029298706405866 0.0008709087229186548 5.357583018132099e-07 1.7100252786678218 0.0010519589656725772 1.1317196755742287 0.0012369703821119976']
['59866.48719361487 2.8463536370977165 0.0006510626013457437 0.3261338112475895 0.00020036078087052857 0.0008723665238563538 5.359396416352384e-07 1.7128876641154913 0.0010523150255805072 1.1334659729822252 0.0012374366343104563']
['59866.487225152836 2.8405818371496165 0.0006506305454264181 0.325204537843021 0.00020020120890215304 0.0008698808355232291 5.355128068865684e-07 1.7080070264864549 0.0010514769375113081 1.1325748106631617 0.0012364966060446902']
['59866.4872566908 2.8431143050667367 0.0006507986948963079 0.32549178506128673 0.00020027089992322 0.000870649185349723 5.356992215166848e-07 1.7095156778428926 0.0010518429617816178 1.133598627223844 0.0012368963406560244']
['59866.48728822876 2.839786149237658 0.0006505493348979416 0.3253270153118583 0.00020024617030586593 0.0008702084471968903 5.356330729310938e-07 1.7086502905034575 0.0010517130793375312 1.1311358587342004 0.001236654696504156']
['59866.487319766726 2.840659779310304 0.0006506108177184064 0.32562820712127133 0.00020029894040317556 0.0008710140970336445 5.357742262392327e-07 1.710232180258778 0.0010519902332099557 1.1304275990515258 0.0012369227489626628']
['59866.487351304684 2.847501488069087 0.0006511564897470326 0.3265775502309643 0.00020041877761566704 0.0008735534692789869 5.360947755624995e-07 1.7152182260029638 0.001052619630334386 1.1322832620661234 0.0012377450708061723']
['59866.48738284265 2.845809652918739 0.0006510713709740291 0.32628418089596306 0.0002003880562485226 0.0008727687435677763 5.360125998072124e-07 1.713677420672075 0.0010524582786161903 1.132132232246664 0.0012375630724653012']
['59866.487414380616 2.842196431694072 0.0006507405361707304 0.3255854932752995 0.0002002756760390695 0.0008708998429206213 5.357119970199828e-07 1.7100078428324554 0.0010518680464236844 1.1321885888616166 0.0012368870734642465']
['59866.487445918574 2.8464674945269737 0.0006510685842963354 0.32632317467131816 0.00020039472735641737 0.0008728730469643743 5.360304441735544e-07 1.7138822199123855 0.0010524933159475702 1.1325852746145881 0.0012375914033201532']
['59866.48747745654 2.842971990793748 0.0006508392999349072 0.3258440514860013 0.0002003455907794098 0.0008715914532955825 5.358990100707415e-07 1.7113658166281582 0.0010522352456901775 1.1316061741655896 0.0012372513110166536']
['59866.487508994505 2.841592048799793 0.0006506909385267519 0.32575956407232365 0.00020032681279414408 0.0008713654601944758 5.358487813450886e-07 1.710922080211784 0.0010521366218179836 1.130669968588009 0.0012370893938804034']
['59866.487540532464 2.8438140908542175 0.0006508721698823632 0.32603464400199034 0.00020035911464733505 0.0008721012640692963 5.359351846998176e-07 1.712366827741546 0.0010523062744082726 1.1314472631126715 0.0012373290090700996']
['59866.48757207043 2.8465664169156324 0.0006510924315392352 0.32637213094232675 0.00020040933751589866 0.00087300399877154 5.360695244945764e-07 1.7141393431844894 0.0010525700499784594 1.132427073731143 0.001237669206419603']
['59866.48760360839 2.843294272248236 0.0006508378801553843 0.32573773445598486 0.00020030452772733828 0.0008713070687432805 5.357891716217395e-07 1.7108074288654669 0.0010520195783998859 1.1324868433827693 0.0012370671524140587']
['59866.48763514635 2.8480513295855556 0.0006512238186393171 0.3262960120200307 0.00020041107447304587 0.0008728003903220234 5.360741706343397e-07 1.713739558928733 0.0010525791726525519 1.1343117706568226 0.0012377460873156112']
['59866.48766668432 2.8461441004024044 0.0006510489955074859 0.32659454925714365 0.00020046480276355796 0.0008735989395150237 5.362178869875982e-07 1.7153075066026453 0.0010528613590523002 1.130836593799759 0.0012378941133783467']
['59866.48769822228 2.841549412600078 0.000650685429842901 0.32572778930175506 0.00020031265420373365 0.0008712804667188185 5.358109089139788e-07 1.710755195912579 0.001052062259473391 1.1307942166874991 0.0012370232521735787']
['59866.48772976024 2.8410633530581246 0.0006506527303299626 0.32536230998166005 0.0002002405529234308 0.0008703028559559449 5.356180471465258e-07 1.7088356616683829 0.0010516835762785233 1.1322276913897418 0.001236684001715806']
['59866.48776129821 2.8407750263175777 0.0006506257412091926 0.3253292280282959 0.0002002471721674142 0.0008702143659323307 5.35635752783492e-07 1.7086619119133188 0.0010517183412154106 1.1321131144042589 0.0012366993670140313']
['59866.48779283617 2.8420944610054795 0.0006507017204417563 0.32593655181819386 0.0002003402499739585 0.000871838879936021 5.358847240944781e-07 1.7118516377005983 0.0010522071952413787 1.1302428233048811 0.0012371550875713158']
['59866.48782437413 2.8459163069163558 0.0006510495413215306 0.32632219943227747 0.000200406971252542 0.0008728704383238025 5.36063195040629e-07 1.7138770978586004 0.0010525576221246955 1.1320392090577553 0.0012376360745985746']
['59866.48785591209 2.848241678285532 0.0006512766845998292 0.3264317374287127 0.0002004247460450657 0.0008731634385521897 5.361107403531093e-07 1.7144524024617263 0.0010526509771274458 1.1337892758238057 0.0012378349645856316']
['59866.48788745006 2.841176296877117 0.0006506598696171345 0.3251901718392364 0.00020020639725822894 0.0008698424082876863 5.355266850801146e-07 1.7079315747859054 0.0010515041872806142 1.1332447220912116 0.0012365352084752182']
['59866.48791898802 2.840381346381452 0.0006505872631993074 0.3251673859448065 0.00020022813456581432 0.0008697814589140512 5.355848296171184e-07 1.7078119009706223 0.00105161835381205 1.1325694454108295 0.0012365940923001091']
['59866.48795052598 2.8407920200258534 0.0006506543522581296 0.32537395204360864 0.00020024249373506677 0.0008703339969930356 5.356232385711557e-07 1.708896806951726 0.0010516937696169475 1.1318952130741273 0.0012366935235390987']
['59866.48798206395 2.8424419301617236 0.0006507738825631623 0.3257650673424332 0.00020031950620221322 0.0008713801807430657 5.358292371396609e-07 1.710950983941351 0.0010520982468603638 1.1314909462203726 0.0012371003869019617']
['59866.48801360191 2.8472377095526413 0.0006511256523425145 0.3264025700577642 0.00020038984315378972 0.0008730854195393588 5.360173795518527e-07 1.7142992124882575 0.0010524676636228453 1.1329384970643839 0.0012375996113889968']
['59866.48804513987 2.846871298796067 0.0006511249302372919 0.3262787973216591 0.00020039236708984743 0.0008727543431902641 5.360241307602499e-07 1.7136491455969491 0.001052480919589535 1.133222153199118 0.001237610504511234']
['59866.48807667784 2.842159746642967 0.000650796662924386 0.32544616078591165 0.00020026960091031512 0.0008705271462076907 5.356957468221478e-07 1.7092760545478556 0.0010518361392348483 1.1328836920951115 0.0012368894697077778']
['59866.488108215795 2.840597522825316 0.0006506029137878269 0.32514556914300075 0.00020020509273016668 0.0008697231017401044 5.355231956332321e-07 1.7076973169275251 0.001051497335767682 1.132900205897791 0.0012364994130834612']
['59866.48813975376 2.8474173811564096 0.0006511961349467656 0.32629865098600364 0.00020041129129193253 0.0008728074492208341 5.360747505973241e-07 1.7137534190441368 0.0010525803114072086 1.1336639621122728 0.0012377324905373142']
['59866.48817129173 2.8433963713162838 0.0006508319479637257 0.32597547051211784 0.00020033410549393337 0.0008719429824993265 5.358682883908021e-07 1.712056042605661 0.0010521749238126754 1.1313403287106227 0.0012371961424084974']
['59866.488202829685 2.840658240620396 0.0006506279221606117 0.3253059718786154 0.0002002422688915634 0.0008701521586856259 5.356226371433408e-07 1.7085397682700387 0.0010516925887161944 1.1321184723503572 0.001236678613971959']
['59866.48823436765 2.8444352730880484 0.0006509726269477891 0.3260344973290894 0.00020037669400219568 0.0008721008717379148 5.359822072413711e-07 1.7123660574006798 0.0010523986029527086 1.1320692156873686 0.0012374603753381836']
['59866.48826590562 2.8461691871127157 0.0006510688392268271 0.32616283924166267 0.00020037589297475968 0.0008724441700537451 5.359800645947158e-07 1.7130401220675562 0.0010523943958758387 1.1331290650451595 0.001237507413263872']
['59866.488297443575 2.848037323406638 0.0006512232100291787 0.3267639797303515 0.00020047507878473252 0.0008740521445120224 5.362453740391149e-07 1.7161973725333586 0.0010529153297517465 1.1318399508732795 0.001238031647780838']
['59866.48832898154 2.8462971525847056 0.0006510474991232262 0.3262396772644496 0.00020037371690776736 0.0008726497020057442 5.359742438918868e-07 1.713443683111605 0.0010523829669525598 1.1328534694731005 0.0012374864666922544']
['59866.4883605195 2.8406670102325617 0.0006506371156260595 0.32564271264496686 0.0002003226996422101 0.0008710528974672291 5.358377791860638e-07 1.710308364731969 0.0010521150191292548 1.1303586455005927 0.0012370427113513706']
['59866.488392057465 2.8443130551105673 0.000650887794540434 0.3259958600383699 0.00020033256578144858 0.000871997521892441 5.358641698554593e-07 1.7121631304536236 0.00105216683708744 1.1321499246569438 0.0012372186444393318']
['59866.48842359543 2.847144734622556 0.0006511402550742183 0.3267328678435093 0.00020047308618259755 0.0008739689241661426 5.36240044081478e-07 1.7160339697663305 0.0010529048644043989 1.1311107648562253 0.0012379791134201593']
['59866.48845513339 2.847260902161556 0.0006511538969239839 0.3265859190891573 0.00020046959814952196 0.0008735758549117507 5.36230714036005e-07 1.7152621800901118 0.0010528865449029516 1.1319987220714443 0.0012379707080205757']
['59866.488486671355 2.8471267930300903 0.0006511449354750666 0.3264911216002008 0.0002004160830360227 0.0008733222836687233 5.360875679041809e-07 1.7147642941187016 0.0010526054781303713 1.1323624989113887 0.001237726956798185']
['59866.48851820932 2.840765327915139 0.0006506421668064172 0.32567667194108013 0.00020030239184705165 0.0008711437342712686 5.357834584132442e-07 1.7104867223796227 0.0010520083605412378 1.130278605535516 0.0012369546555453083']
['59866.48854974728 2.8414277974610203 0.0006506859045720337 0.32559177084603613 0.0002002942147961308 0.0008709166346250473 5.357615858405725e-07 1.7100408132669966 0.001051965413845225 1.1313869841940236 0.0012369411377811319']
['59866.488581285244 2.847671248833861 0.0006511606187479398 0.3265140014172935 0.00020041736350984748 0.0008733834842735526 5.360909930090333e-07 1.714884461225281 0.0010526122033080226 1.1327867876085802 0.0012377409268345173']
['59866.4886128232 2.8472135888855066 0.0006511565645995355 0.32647986374406807 0.0002004142266263109 0.0008732921703333933 5.360826022439787e-07 1.7147051667230468 0.001052595728079364 1.1325084221624597 0.0012377247829755997']
['59866.48864436117 2.8404925760572453 0.0006506085856425362 0.3255194989452594 0.00020029333971380162 0.0008707233164694966 5.357592451064834e-07 1.7096612339561943 0.0010519608178245884 1.130831342101051 0.0012368965574978202']
['59866.488675899134 2.8436522567888165 0.0006508910254796946 0.32577453161638553 0.0002003128581996771 0.0008714054964738605 5.358114545772187e-07 1.711000691262529 0.001052063330880657 1.1326515655262874 0.0012371323208265604']
['59866.48870743709 2.844074832392563 0.0006509370751178043 0.32581967416652924 0.00020031953083054742 0.0008715262470620815 5.358293030173269e-07 1.711237784488074 0.0010520983762108585 1.132837047904489 0.0012371863517629215']
['59866.48873897506 2.8467088532236744 0.0006510731369773964 0.32630190359693845 0.0002003873774019702 0.0008728161495419809 5.360107839789029e-07 1.713770502084761 0.001052454713245642 1.1329383511389135 0.0012375609694582946']
['59866.488770513024 2.841593635438519 0.0006507178550104377 0.3253711118750975 0.00020024797897692098 0.0008703263999029891 5.356379108964523e-07 1.708881890100302 0.0010517225786602993 1.1327117453382172 0.0012367514339159888']
['59866.48880205098 2.844102184547526 0.0006509318236182287 0.3257595064700063 0.00020030688092553562 0.0008713653061155926 5.35795466128045e-07 1.7109217776786045 0.0010520319376341157 1.1331804068689215 0.001237127089995666']
['59866.48883358895 2.847102311821347 0.0006510947822239283 0.3263356091925035 0.00020039627770093179 0.0008729063077292756 5.360345911482262e-07 1.713947527271552 0.0010525014585132974 1.133154784549795 0.001237612110320452']
['59866.48886512691 2.8436138667264856 0.0006508719046722022 0.32559320385622553 0.00020027777895745017 0.0008709204677453018 5.35717622059566e-07 1.7100483395810164 0.0010518790911630787 1.1335655271454692 0.0012369655850983424']
['59866.48889666487 2.843878675838857 0.000650928384691551 0.32557366030786467 0.0002002859575197859 0.0008708681912356012 5.357394986750805e-07 1.7099456948942473 0.0010519220457971949 1.1339329809446097 0.001237031831616029']
['59866.48892820284 2.8469584652618147 0.0006511530501732245 0.3265858013927565 0.0002004295175938097 0.0008735755400888269 5.361235036399802e-07 1.7152615619367464 0.001052676037782614 1.1316969033250683 0.0012377912325071613']
['59866.4889597408 2.8431867877845565 0.0006507759218949156 0.32571779607590584 0.000200269536857139 0.0008712537361088801 5.356955754880369e-07 1.7107027104826988 0.0010518358028211083 1.1324840773018576 0.0012368782707342313']
['59866.48899127876 2.8417013673530613 0.0006506975966719425 0.32543549832534746 0.00020026472429635073 0.000870498625479887 5.356827024991565e-07 1.7092200542297662 0.001051810526766548 1.1324813131232951 0.0012368155669021817']
['59866.48902281673 2.847394776019798 0.0006511737759204171 0.3265453203194096 0.00020044825517228962 0.0008734672583589978 5.361736242826129e-07 1.7150489512574032 0.0010527744494342943 1.132345824762395 0.0012378858298842165']
['59866.489054354686 2.844199226094918 0.0006509257417950423 0.3259927529806899 0.00020038710229648316 0.0008719892109077648 5.360100481066653e-07 1.7121468118733716 0.0010524532683638822 1.1320524142215465 0.0012374822032745537']
['59866.48908589265 2.84167182849621 0.0006507119186772092 0.32532040869285417 0.00020022969907607284 0.0008701907753301402 5.355890144833564e-07 1.7086155918742343 0.0010516265707776935 1.1330562366219759 0.0012366666670830205']
['59866.48911743061 2.846628597501647 0.0006511328990023598 0.32612958429904804 0.00020037002260392303 0.0008723552173058568 5.359643620983051e-07 1.7128654637555045 0.0010523635640962345 1.1337631337461427 0.001237514898173168']
['59866.489148968576 2.8413885225064752 0.0006506524824652346 0.32560429582977657 0.00020027879353239024 0.0008709501373657941 5.357203359186728e-07 1.7101065957446249 0.001051884419812974 1.1312819267618504 0.0012368546743993206']
['59866.48918050654 2.847529467678216 0.000651210477882088 0.3265881027054567 0.00020044421577469567 0.0008735816958080173 5.361628194070804e-07 1.7152736486631128 0.0010527532341107967 1.132255819015103 0.0012378870943806463']
['59866.4892120445 2.8424261272344946 0.0006507708300958341 0.32571156641989896 0.00020030296981466797 0.0008712370725702707 5.35785004403212e-07 1.71066999170115 0.0010520113960854412 1.1317561355333445 0.0012370249192305142']
['59866.489243582466 2.840525359312063 0.0006506118386868853 0.32546958958138283 0.00020025962857212476 0.0008705898152599583 5.356690720840439e-07 1.7093991049442376 0.0010517837635090586 1.1311262543678255 0.001236747690444906']
['59866.48927512043 2.841517175633349 0.0006506715886199948 0.32547817085128977 0.00020026456554191746 0.0008706127690670792 5.356822778512104e-07 1.709444174639127 0.0010518096929722557 1.132073000994222 0.0012368011749944526']
['59866.48930665839 2.841037387993111 0.0006506269820239114 0.3253360950218498 0.000200236803451048 0.0008702327342679321 5.356080177841105e-07 1.708697978055934 0.0010516638836714706 1.132339409937177 0.0012366537081804686']
['59866.489338196356 2.8418673654150997 0.000650714799293613 0.3255651268213253 0.00020028134519924285 0.0008708453652429198 5.357271613034242e-07 1.709900876162423 0.0010518978214245948 1.1319664892526766 0.001236898854691658']
['59866.489369734314 2.8454728647059633 0.0006510048638581315 0.32615627942549147 0.00020036591268455563 0.0008724266233786288 5.359533685859853e-07 1.713005669251531 0.0010523419783852713 1.1324671954544323 0.0012374291786760045']
['59866.48940127228 2.840779324093385 0.000650640521814257 0.3252305406523877 0.00020021649720922092 0.0008699503897357499 5.355537011662551e-07 1.7081435958633808 0.0010515572332417066 1.1326357282300041 0.0012365701368744443']
['59866.489432810245 2.840433475854444 0.0006506023669028721 0.3254288476660483 0.0002002820748734084 0.0008704808358109412 5.357291130891435e-07 1.7091851242964724 0.001051901653746893 1.1312483515579714 0.001236842968599922']
['59866.489464348204 2.8412217923563525 0.0006506404799362525 0.3255927101437771 0.0002002774719512152 0.0008709191471272071 5.357168008568794e-07 1.7100457465534513 0.001051877478735374 1.1311760458029012 0.0012368424573899314']
['59866.48949588617 2.842934676650084 0.0006507882729779808 0.3257812925137324 0.00020029982700435397 0.000871423581015583 5.357765977847805e-07 1.711036200177166 0.00105199488972875 1.131898476472918 0.001237020058148237']
['59866.489527424135 2.8409932418009007 0.0006506530152646969 0.3252559527633794 0.00020021016280995964 0.0008700183639051403 5.355367574527434e-07 1.708277062832875 0.0010515239643380235 1.1327161789680258 0.0012365484195332565']
['59866.489558962094 2.8419427612759787 0.0006507303767865822 0.3254876838717823 0.00020025060863191867 0.0008706382151886778 5.356449448895869e-07 1.7094941379820499 0.0010517363898735225 1.1324486232939288 0.0012367697671988094']
['59866.48959050006 2.8418595770232766 0.0006507618236504905 0.325549806107155 0.00020028382744616646 0.0008708043842783499 5.357338009986826e-07 1.7098204102266545 0.0010519108584357484 1.132039166796622 0.0012369346810628058']
['59866.48962203802 2.847085048377303 0.0006511477809396649 0.3263556858785516 0.00020040913503754842 0.0008729600103145774 5.360689828907057e-07 1.7140529720512165 0.0010525689865417461 1.1330320763260864 0.001237697420233301']
['59866.48965357598 2.8418107528725276 0.0006507250752323992 0.32555121696043837 0.00020026367526151056 0.0008708081581316948 5.356798964641937e-07 1.7098278201703696 0.0010518050171297825 1.131982932702158 0.0012368253383544475']
['59866.48968511395 2.8467516322899598 0.0006510906609170689 0.3266155170047683 0.00020045129074883515 0.0008736550255768719 5.361817440643332e-07 1.7154176313275646 0.00105279039258842 1.1313340009623951 0.0012378556698823596']
['59866.48971665191 2.845719872848335 0.0006510148404548394 0.3264218525202087 0.00020041787595758367 0.0008731369976773929 5.360923637416432e-07 1.7144004859254662 0.0010526148947352083 1.1313193869228686 0.0012376665298499648']
['59866.48974818987 2.8419654413915434 0.0006507300599328394 0.3254084326913881 0.0002002489496465588 0.0008704262283465669 5.356405073144519e-07 1.709077902790904 0.0010517276767151198 1.1328875386006394 0.001236762190911729']
['59866.48977972784 2.842068761382465 0.0006507499443030799 0.32559696212242095 0.00020028653832328272 0.000870930520630049 5.357410522506686e-07 1.7100680783740598 0.0010519250962357286 1.132000683008405 0.0012369405394363176']
['59866.4898112658 2.846220762358282 0.0006510781477268882 0.3265511140169004 0.00020044255602482636 0.0008734827557639464 5.361583797869796e-07 1.7150793803408635 0.0010527445169371133 1.1311413820174185 0.0012378100712098895']
['59866.48984280376 2.8431162190731207 0.0006508650317049523 0.325527413958377 0.00020027655113164026 0.0008707444881243251 5.357143377814668e-07 1.7097028044032405 0.0010518726424981106 1.1334134146698802 0.0012369564848984166']
['59866.48987434172 2.841858141089796 0.0006507177700663761 0.32546969989552427 0.000200259507599337 0.000870590110336276 5.356687484972011e-07 1.7093996843252326 0.0010517831281477783 1.1324584567645635 0.0012368028803881738']
['59866.48990587969 2.8413147330209823 0.0006507063298488094 0.32547505919303066 0.00020027294177124772 0.0008706044457764381 5.357046832008303e-07 1.7094278318961695 0.00105185368577336 1.1318869011248127 0.0012368568647908736']
['59866.48993741765 2.8422248391557883 0.000650740301806424 0.3256857573456331 0.0002002926471380255 0.000871168036574539 5.357573925542441e-07 1.71053443984051 0.0010519571803467725 1.1316903993152783 0.001236962751936471']
['59866.48996895561 2.841849165663582 0.0006507319844483706 0.32520590036951535 0.00020020427113793366 0.0008698844801085514 5.355209979783567e-07 1.7080141826130009 0.0010514930206824249 1.133834983050581 0.001236563661170732']
['59866.49000049358 2.8432459248929476 0.0006508419837396697 0.3257233882550251 0.00020030450519632645 0.0008712686944777791 5.357891113541444e-07 1.7107320811713507 0.0010520194600647397 1.132513843721597 0.0012370692107368509']
['59866.49003203154 2.8436370346138977 0.0006508845047180786 0.32581609913382803 0.00020031133561908978 0.0008715166843036594 5.358073818675258e-07 1.7112190080558196 0.001052055334133875 1.132418026558078 0.001237122089594086']
['59866.4900635695 2.8459038387576734 0.0006510327680607922 0.3265449525424139 0.00020042950130403972 0.0008734662746022445 5.361234600669143e-07 1.7150470196555352 0.0010526759522270993 1.1308568191021382 0.001237727888304262']
['59866.49009510747 2.8435626436949226 0.0006508821046992521 0.3256068931266425 0.00020027494646493048 0.0008709570848050359 5.357100455018218e-07 1.710120237009677 0.0010518642146267359 1.1334424066852455 0.0012369583017345605']
['59866.490126645425 2.841052918536703 0.0006506641403838942 0.32532190594324006 0.00020022749498433505 0.0008701947802847614 5.355831188178925e-07 1.708623455584244 0.0010516149946656252 1.132429462952459 0.0012366316834802086']
['59866.49015818339 2.84638603725738 0.0006510997398061799 0.32630313555923673 0.0002003791923825701 0.0008728194448846612 5.359888900915613e-07 1.7137769724749832 0.0010524117246983726 1.132609064782397 0.0012375384072659233']
['59866.49018972136 2.8461968977079017 0.0006510738419705025 0.326371940574794 0.00020041769565302652 0.0008730034895625679 5.360918814498528e-07 1.7141383433550106 0.0010526139477574923 1.1320585543528912 0.001237696760402904']
['59866.490221259315 2.8468388341668733 0.0006511647603636991 0.3263194972503203 0.0002004186794560709 0.0008728632103302626 5.360945129980467e-07 1.7138629057264723 0.0010526191147902882 1.132975928440401 0.0012377489834216806']
['59866.49025279728 2.840353106860565 0.0006505870067152476 0.3254224054202515 0.0002002526408579928 0.0008704636036216441 5.356503808362286e-07 1.7091512889719094 0.0010517470633297943 1.1312018178886558 0.0012367034157507418']
['59866.49028433525 2.842696122917885 0.0006507726068672731 0.3258424004891271 0.00020032916197858724 0.0008715870370886319 5.358550651151115e-07 1.7113571454260879 0.0010521489599715718 1.131338977491797 0.0012371428453570293']
['59866.490315873205 2.841815421679659 0.0006507500833896079 0.32561358959926967 0.00020027311067075942 0.0008709749970188157 5.357051349855727e-07 1.7101554075591896 0.0010518545728506272 1.1316600141204696 0.0012368806383230182']
['59866.49034741117 2.847283857012104 0.0006512166231659441 0.3265317551879332 0.00020043410338478382 0.0008734309733551632 5.361357700484091e-07 1.714977705818977 0.001052700122819243 1.132306151193127 0.0012378451594893863']
['59866.49037894913 2.842044615325501 0.0006507466583380298 0.3256198053143452 0.00020029970800310515 0.0008709916232672042 5.357762794715539e-07 1.710188053121561 0.001051994264722191 1.1318565622039398 0.001236997633929223']
['59866.490410487095 2.841817073820383 0.0006507594091091528 0.32536186552299895 0.00020027785547786032 0.0008703016670854757 5.357178267419445e-07 1.7088333273266751 0.0010518794930559892 1.1329837464937078 0.0012369067371697101']
['59866.49044202506 2.8457468867673823 0.0006510613216547154 0.3258963964526198 0.0002003103872645357 0.0008717314694331172 5.358048451395411e-07 1.7116407376713227 0.0010520503532801245 1.1341061490960596 0.001237210891639586']
['59866.49047356302 2.841802993635625 0.0006507345403873732 0.32547856930162433 0.0002002754320731492 0.0008706138348711183 5.357113444421314e-07 1.7094462673404642 0.0010518667650900695 1.1323567262951606 0.0012368828293553974']
['59866.490505100985 2.8463419132172287 0.0006510711736551977 0.3263767073895641 0.00020040559962396386 0.0008730162401866597 5.360595261083887e-07 1.7141633791468704 0.0010525504181930876 1.1321785340703583 0.0012376413276887614']
['59866.49053663895 2.8416764940182446 0.0006507141990758201 0.325531013999396 0.00020027189862997669 0.0008707541177768211 5.357018929304163e-07 1.7097217121817017 0.0010518482070902137 1.131954781836543 0.0012368563455946624']
['59866.49056817691 2.846016207668534 0.0006510445536454979 0.3265157628512183 0.00020043944179943984 0.0008733881958855874 5.361500496295986e-07 1.714893712453878 0.001052728160711344 1.1311224952146561 0.0012377784903552633']
['59866.490599714874 2.843834528175532 0.0006508803610691014 0.3255492361916149 0.00020026955761565004 0.0008708028598266634 5.356956310144175e-07 1.7098174169727676 0.0010518359118469017 1.1340171112027644 0.0012369333166651496']
['59866.49063125283 2.8400073795672918 0.0006505911188960852 0.3254197313443178 0.00020023269318190175 0.0008704564508081474 5.355970233361767e-07 1.7091372444554507 0.0010516422961234335 1.130870135111841 0.001236616481768793']
['59866.4906627908 2.842949272585279 0.0006507963812791144 0.32589198323563007 0.00020033210963541084 0.0008717196646381784 5.358629497227421e-07 1.7116175590106624 0.001052164441362452 1.1313317135746168 0.001237168517847731']
['59866.490694328764 2.846040624452223 0.0006510991451932975 0.32641155631663704 0.00020042688759479106 0.0008731094566405271 5.361164687266332e-07 1.714346409226035 0.0010526622247625582 1.1316942152261882 0.0012377511285850242']
['59866.49072586672 2.840936801342494 0.0006506441792705215 0.32532265704871277 0.00020023304408904605 0.0008701967893965054 5.355979619682201e-07 1.7086274004659285 0.001051644139123141 1.1323094008765653 0.00123664596525063']
['59866.49075740469 2.8468155213112967 0.000651141444021001 0.3265046054522918 0.0002004383473975578 0.0008733583512605252 5.361471222435607e-07 1.7148351126696 0.0010527224128022994 1.1319804086416967 0.0012378245669472105']
['59866.490788942654 2.84696093516416 0.0006511425521537302 0.3264311995826631 0.0002003976447084663 0.0008731619998823173 5.360382477197617e-07 1.7144495776400372 0.001052508638174718 1.1325113575241228 0.0012376433479228469']
['59866.49082048061 2.8468198203652344 0.0006511031824165685 0.3262327896939411 0.0002003687349971596 0.0008726312786294027 5.359609179137478e-07 1.7134075088967495 0.0010523568014556702 1.1334123114684849 0.0012374935117902607']
['59866.49085201858 2.8467201500893955 0.0006511302065340632 0.3259999408019384 0.0002003330728812655 0.0008720084374167018 5.358655262830645e-07 1.7121845630353907 0.0010521695004268147 1.1345355870540048 0.001237348456777437']
['59866.49088355654 2.8433179159317876 0.0006507855872608033 0.32575834510441615 0.00020031271209582986 0.0008713621996101405 5.358110637679835e-07 1.7109156780694126 0.0010520625635285182 1.132402237862375 0.001237076197396339']
['59866.4909150945 2.8437076301072177 0.0006508359565317184 0.32554881301865946 0.00020026729377178493 0.0008708017278927534 5.35689575519602e-07 1.7098151944257325 0.0010518240219106352 1.1338924356814852 0.001236899840481363']
['59866.49094663247 2.8451825500457106 0.0006509670595274149 0.3260586131753243 0.000200335811384637 0.0008721653785637153 5.358728514317745e-07 1.7124927162569554 0.0010521838833226734 1.1326898337887552 0.0012372748429163789']
['59866.49097817043 2.8402855443713144 0.0006505965077173013 0.32518269909669095 0.00020022138922299283 0.0008698224196504668 5.355667866817757e-07 1.707892327188503 0.001051582926591349 1.1323932171828115 0.0012365688283926515']
['59866.49100970839 2.840194638355128 0.0006505429076100957 0.3254968690183374 0.00020026753184541302 0.0008706627842891363 5.356902123363201e-07 1.709542379297991 0.0010518252722973374 1.1306522590571373 0.0012367467315845897']
['59866.49104124636 2.8469431584998457 0.0006511559492950774 0.326358010679798 0.00020040230749205132 0.0008729662288626458 5.36050720073646e-07 1.7140651821417965 0.0010525331275843032 1.1328779763580492 0.0012376712224838908']
['59866.491072784316 2.8436842582340973 0.000650838259973143 0.32590048503776714 0.00020034263111311194 0.0008717424058791079 5.358910933392926e-07 1.7116622113328106 0.0010522197012243274 1.1320220469012867 0.0012372375440025578']
['59866.49110432228 2.8472906712959025 0.0006511489937092771 0.326341461906222 0.00020040162473942548 0.0008729219629951378 5.360488937970862e-07 1.7139782663141914 0.0010525295416986633 1.1333124049817112 0.001237664513572641']
['59866.49113586024 2.847172032044952 0.0006511182340161747 0.32642382102047107 0.00020040594318495303 0.0008731422631655816 5.360604450904002e-07 1.7144108246873482 0.0010525522226100476 1.1327612073576039 0.0012376676193508874']
['59866.491167398206 2.8462857322331585 0.0006511018570377625 0.32603729733554776 0.00020036047834695432 0.0008721083613995709 5.359388324230999e-07 1.7123807633169525 0.0010523134366961888 1.133904968916206 0.0012374559375142886']
['59866.49119893617 2.846816145448475 0.0006511346278522084 0.3263369762301177 0.0002004295302943261 0.0008729099643812704 5.361235376122485e-07 1.7139547070909544 0.001052676104487007 1.1328614383575206 0.0012377815980802807']
['59866.49123047413 2.8434518955512433 0.000650842485073803 0.3258662131255176 0.00020032194220373506 0.0008716507328666084 5.358357531343429e-07 1.7114822117936852 0.0010521110409860035 1.1319696837575581 0.0012371473570038838']
['59866.491262012096 2.846437379653384 0.0006510438666442222 0.3265199260177473 0.00020042854713151506 0.0008733993318273017 5.361209077765974e-07 1.7149155778243033 0.0010526709408167807 1.131521801829081 0.0012377294639520974']
['59866.491293550054 2.8409372192626368 0.000650604146450211 0.32583146967429744 0.0002003357228530584 0.000871557798547251 5.358726146210458e-07 1.7112997356843354 0.001052183418345895 1.1296374835783014 0.001237083546580529']
['59866.49132508802 2.83989142462383 0.0006505674167826017 0.3251538067771488 0.0002002168051899999 0.0008697451363652143 5.355545249757232e-07 1.7077405818127562 0.0010515588507878147 1.1321508428110738 0.0012365330486684846']
['59866.491356625986 2.846571052177766 0.0006511234983918552 0.3260037341863721 0.0002003442288011601 0.000872018584238276 5.358953669519041e-07 1.7122044862729626 0.0010522280924430678 1.1343665659048034 0.0012373947505482743']
['59866.491388163944 2.842439945314209 0.0006508006588969657 0.32570674453343174 0.00020031233683548636 0.0008712241746363836 5.358100599942252e-07 1.7106446666671835 0.0010520605926233528 1.1317952786470253 0.0012370824500297969']
['59866.49141970191 2.8457936892944824 0.0006510098916012629 0.3265008320021766 0.0002004155110251074 0.000873348257760721 5.360860378476318e-07 1.7148152941290788 0.0010526024738713624 1.1309783951654035 0.0012376533630071064']
['59866.491451239875 2.84049504621243 0.0006506391260430362 0.32532069332708813 0.0002002527128826515 0.0008701915366905656 5.35650573493043e-07 1.7086170868019335 0.0010517474416105648 1.1318779594104966 0.001236731156425039']
['59866.491482777834 2.8477231714784326 0.0006512107758990723 0.3263861868643303 0.00020040369747467574 0.000873041596577701 5.36054438100629e-07 1.714213166304256 0.001052540427913213 1.1335100051741767 0.001237706276561124']
['59866.4915143158 2.840148155971032 0.0006505791419444515 0.32530071133172045 0.0002002630164856865 0.0008701380873908075 5.356781343225333e-07 1.7085121393472715 0.001051801557172723 1.1316360166237607 0.001236745622836056']
['59866.49154585376 2.8468894884016196 0.0006511024113572873 0.3265531231925137 0.00020041670046300268 0.0008734881300535329 5.360892194429349e-07 1.7150899327337905 0.0010526087209191317 1.131799555667829 0.001237707344015654']
['59866.491577391724 2.8420463905343216 0.0006507875224982624 0.32528131842609176 0.00020021032137189953 0.0008700862138312827 5.355371815857941e-07 1.7084102858513224 0.001051524797121321 1.1336361046829992 0.0012366199086220721']
['59866.49160892969 2.8468963242348395 0.000651104142484033 0.3267420590798707 0.00020048565795142487 0.0008739935095560593 5.362736719663903e-07 1.7160822430665479 0.0010529708926020215 1.1308140811682916 0.0012380162781752773']
['59866.49164046765 2.8429864343889264 0.0006507731912221939 0.32545337100253613 0.0002002434129920319 0.0008705464326214141 5.356256974667854e-07 1.7093139233326478 0.0010516985976472264 1.1336725110562786 0.0012367601573088699']
['59866.49167200561 2.8434939858512305 0.0006508622977326944 0.3257309681916073 0.00020030628750141168 0.0008712889698454325 5.357938787938824e-07 1.7107718917626435 0.0010520288209107758 1.132722094088587 0.0012370878588996012']
['59866.49170354358 2.8453357015043266 0.0006509741905880884 0.32615544715092537 0.00020036934707508042 0.0008724243971498691 5.35962555144448e-07 1.713001298061583 0.0010523600161506325 1.1323344034427436 0.001237428381929385']
['59866.49173508154 2.846508291016118 0.0006510724766264326 0.32622139433315467 0.00020037076376075867 0.0008726007974865879 5.359663445987084e-07 1.7133476593127872 0.0010523674567266736 1.1331606317033307 0.001237486417621561']
['59866.4917666195 2.8420638449154167 0.000650714521014744 0.32547582244135703 0.00020027129282014527 0.0008706064873687734 5.357002724660593e-07 1.709431840553346 0.001051845025315889 1.1326320043620708 0.001236853809122659']
['59866.49179815746 2.8431940730048115 0.0006508413142735621 0.3259203738353619 0.0002003577352622718 0.0008717956058866601 5.359314950199647e-07 1.7117666693033713 0.0010522990297388225 1.1314274037014402 0.0012373066169525664']
['59866.49182969543 2.843035489002878 0.0006508132414134633 0.32590820906355533 0.00020033633803588332 0.0008717630666670871 5.358742601569701e-07 1.7117027786951438 0.0010521866493481268 1.1313327103077344 0.0012371962739458672']
['59866.49186123339 2.841537692878323 0.0006506793456726119 0.32565540414619865 0.000200294687839016 0.0008710868456211164 5.357628511702107e-07 1.7103750217762534 0.0010519678983141598 1.1311626711020695 0.0012369398004625969']
['59866.49189277135 2.8437167601547215 0.0006508731494801689 0.3260383146651968 0.0002003813457431406 0.0008721110826271742 5.359946500575958e-07 1.7123861064348571 0.0010524230343652344 1.1313306537198644 0.0012374288262266891']
['59866.49192430932 2.841316219407666 0.0006507230312735358 0.32527288879522026 0.00020025074617430072 0.0008700636656393224 5.356453127979901e-07 1.7083660125799385 0.0010517371122599828 1.1329502068277277 0.0012367665166614055']
['59866.49195584728 2.8420659182366377 0.0006507095273153135 0.3254629088606613 0.00020026810237317206 0.0008705719451805256 5.356917384256147e-07 1.7093640171253222 0.00105182826876666 1.1327019011113155 0.0012368369318206777']
['59866.49198738524 2.8440530094522893 0.0006509229460443897 0.3256030356034228 0.00020027936677669537 0.0008709467664203552 5.35721869274383e-07 1.7100999769087333 0.0010518874305498708 1.133953032543556 0.001236999534452587']
['59866.49201892321 2.8419033581471114 0.0006507044681811673 0.32565871812677133 0.00020030273606040582 0.0008710957100982501 5.357843791402491e-07 1.7103924271364042 0.0010520101683844842 1.1315109310107072 0.0012369889649044112']
['59866.492050461165 2.843552754486671 0.0006508627681704053 0.32576019869502376 0.0002003207303901475 0.0008713671577295971 5.358325116869049e-07 1.7109254133142007 0.001052104676418842 1.1326273411724705 0.0012371526151339774']
['59866.49208199913 2.8423637778025315 0.0006507672499650079 0.32566431068937096 0.0002002878661710422 0.0008711106694929102 5.357446040747794e-07 1.7104217998391333 0.0010519320702260622 1.1319419779633981 0.0012369555747871902']
['59866.4921135371 2.8433845194882257 0.0006508428645481404 0.3254083845917425 0.00020024049286100607 0.0008704260996861238 5.35617886487168e-07 1.7090776501667146 0.0010516832608246118 1.134306869321511 0.001236783778771341']
['59866.492145075055 2.8399677521035582 0.0006505429435462982 0.3256869322227548 0.0002002930386206645 0.0008711711792216221 5.357584397205824e-07 1.7105406104136283 0.00105195923645307 1.12942714168993 0.0012368606859937006']
['59866.49217661302 2.846091421948346 0.0006510382918547428 0.32635992933705044 0.0002003822741384492 0.0008729713610271134 5.359971333971337e-07 1.714075259123164 0.0010524279103910148 1.132016162825182 0.0012375198438938824']
['59866.49220815099 2.843786556343076 0.0006508558387906645 0.3258477891085728 0.00020034425422994382 0.0008716014509612575 5.358954349706709e-07 1.711385446998807 0.0010522282259976042 1.1324011093442692 0.0012372540412033271']
['59866.492239688945 2.8466493169846685 0.0006510869111458981 0.32651495653577645 0.00020044209163869262 0.0008733860390941879 5.361571376130521e-07 1.714889477603868 0.00105274207793431 1.1317598393808006 0.001237812606382305']
['59866.49227122691 2.8416759244671304 0.0006507107689413505 0.3252775585068414 0.00020022406991668918 0.0008700761565248236 5.355739571969469e-07 1.708390538376268 0.0010515970058649641 1.1332853860908623 0.0012366409210277658']
['59866.49230276487 2.8410649748024444 0.0006506774387092943 0.3251541032997258 0.0002001922789791627 0.0008697459295254475 5.354889204767307e-07 1.7077421391792325 0.0010514300366552664 1.133322835623212 0.001236481399466317']
['59866.492334302835 2.8423050550501046 0.0006507708701355099 0.32558471766552083 0.00020028906513603213 0.0008708977682629712 5.357478111538506e-07 1.7100037692516852 0.001051938367311093 1.1323012857984194 0.0012369628345419506']
['59866.4923658408 2.843026420066323 0.0006507947608045949 0.3258355569863695 0.0002003177233169716 0.0008715687315879271 5.358244681480782e-07 1.711321202659504 0.001052088882967288 1.1317052174068192 0.0012371034064919818']
['59866.49239737876 2.846546776402771 0.0006510664437968068 0.3268159797827925 0.00020048803301839894 0.0008741912380479387 5.362800249688961e-07 1.7164704820524816 0.0010529833666932718 1.1300762943502893 0.0012380070616805536']
['59866.492428916725 2.8409448389825283 0.0006506510730891209 0.3253077356509585 0.0002002273831167648 0.0008701568765526325 5.3558281958635e-07 1.7085490317802443 0.0010516144071258655 1.132395807202284 0.0012366243084246365']
['59866.49246045469 2.847738007940204 0.0006512318109545825 0.32631194797563 0.00020039315305352788 0.0008728430169792758 5.360262331132723e-07 1.7138232561745275 0.0010524850475500415 1.1339147517656767 0.0012376702496689489']
['59866.49249199265 2.840941579646165 0.0006506348278828097 0.32527277779376695 0.0002002334814727775 0.0008700633687245328 5.35599131914151e-07 1.7083654295891124 0.0010516464363066046 1.1325761500570524 0.001236642998706771']
['59866.492523530615 2.846589342603699 0.0006511040296045855 0.3262456448102685 0.0002003831494339648 0.0008726656644328906 5.359994747014694e-07 1.7134750252640154 0.0010524325075313278 1.1331143173396836 0.0012375583381303717']
['59866.49255506857 2.8473805413040463 0.0006511549510844492 0.3265061544118631 0.00020043371968678851 0.0008733624945306499 5.361347437050039e-07 1.714843247961466 0.0010526981075986792 1.1325372933425804 0.001237811001754158']
['59866.49258660654 2.841960873151895 0.0006507678466692525 0.3255355884694002 0.00020025894999387426 0.0008707663539030934 5.35667256973408e-07 1.7097457377594552 0.001051780199547659 1.13221513539244 0.001236826737428913']
['59866.492618144504 2.8445421744442685 0.0006509512620697615 0.3260588430874204 0.00020037568347373188 0.000872165993549372 5.359795042060746e-07 1.7124939237784687 0.0010523932955553146 1.1320482506657998 0.001237444622647814']
['59866.49264968246 2.8473660265730167 0.0006511421124738075 0.32638922710676344 0.0002004088331097947 0.000873049728840078 5.360681752723114e-07 1.7142291339640938 0.0010525674007867368 1.133136892608923 0.001237693089516056']
['59866.49268122043 2.842724290235974 0.0006508270136793822 0.3254616264039176 0.00020026518597045123 0.0008705685147716171 5.356839374187396e-07 1.709357281533181 0.0010518129515254793 1.133367008702793 0.001236885720966801']
['59866.492712758394 2.841131217471228 0.0006506936736648763 0.3250960403032315 0.0002001973888787461 0.0008695906183842241 5.35502588809124e-07 1.7074371864665523 0.0010514568743631623 1.1336940310046757 0.001236512764023503']
['59866.49274429635 2.8400722760231867 0.0006505734153792904 0.3255021102858751 0.00020026625350919868 0.0008706768040141227 5.356867929493043e-07 1.7095699069636299 0.0010518185583466319 1.1305023690595568 0.001236757069306928']
['59866.49277583432 2.8409694338228753 0.0006506871766271382 0.3251696856596524 0.0002001984931677531 0.0008697876103591844 5.355055426419654e-07 1.707823979304897 0.0010514626742003839 1.1331454545179782 0.0012365142769348112']
['59866.49280737228 2.8427705600584083 0.0006508451231291918 0.32572827318558073 0.00020030178448562076 0.0008712817610465957 5.357818337985556e-07 1.7107577373192266 0.0010520051706177562 1.1320128227391817 0.0012370587105337996']
['59866.49283891024 2.841870851494669 0.0006507768403181092 0.3254687945626731 0.0002002698528891753 0.0008705876886858826 5.356964208335958e-07 1.7093949294258042 0.0010518374626532316 1.132475922068865 0.0012368801654708552']
['59866.49287044821 2.8409596894267652 0.0006506325020016469 0.32548937301688163 0.00020026338120984532 0.0008706427334372857 5.356791099133358e-07 1.7095030095424457 0.0010518034727407843 1.1314566798843195 0.0012367753223324343']
['59866.49290198617 2.8421488875519993 0.0006507369444055637 0.3259042184801386 0.00020033281005539167 0.0008717523923632789 5.358648232572326e-07 1.7116818197486274 0.0010521681200388218 1.130467067803372 0.0012371403815413667']
['59866.49293352413 2.8471170175666454 0.000651155636977972 0.3263867355237343 0.00020039457333900727 0.0008730430641719233 5.360300321965438e-07 1.714216047918773 0.0010524925070326014 1.1329009696478725 0.0012376365140573217']
['59866.4929650621 2.8460074211526765 0.0006510593739745153 0.32618447060117467 0.00020039253830940953 0.0008725020311931087 5.360245887508324e-07 1.7131537321490267 0.0010524818188519408 1.1328536890036498 0.0012375767804277751']
['59866.492996600056 2.8406709929243052 0.0006506087821362016 0.3254766271828847 0.0002002854141539081 0.0008706086399501523 5.357380452403686e-07 1.7094360671369997 0.0010519191919848114 1.1312349257873056 0.0012368612589368016']
['59866.49302813802 2.8414715999593527 0.0006507336911792116 0.3252809739393478 0.00020023484140871433 0.0008700852923729948 5.356027695700608e-07 1.7084084765722047 0.001051653578827281 1.133063123387148 0.0012367010902784674']
['59866.49305967598 2.8471023870934142 0.0006511011118620622 0.32660905208592655 0.00020043797381211542 0.0008736377327400592 5.361461229499503e-07 1.715383676921883 0.0010527204506938835 1.1317187101715311 0.001237801682490837']
['59866.493091213946 2.8418131154905417 0.0006507387008812238 0.3254678861174642 0.0002002847936264467 0.0008705852587103276 5.357363854082206e-07 1.709390158179959 0.00105191593291201 1.1324229573105826 0.0012369268316027133']
['59866.49312275191 2.84910105174745 0.0006513163736637368 0.32678420876476677 0.0002004590921436811 0.0008741062546098572 5.362026118047155e-07 1.7163036174620105 0.0010528313663008462 1.1327974342854394 0.001238009250558891']
['59866.49315428987 2.847117425930441 0.0006511781125420206 0.3262225798748955 0.00020039419235488872 0.0008726039686601728 5.360290131124142e-07 1.7133538858975605 0.001052490506065592 1.1337635400328805 0.0012376466376199608']
['59866.493185827836 2.8464112282904632 0.000651107354581109 0.32633203195280724 0.00020041395344673468 0.000872896739067422 5.360818715233079e-07 1.7139287392479372 0.001052594293312682 1.132482489042526 0.001237697674516695']
['59866.4932173658 2.8477896200939012 0.0006511491227586364 0.3267678169411065 0.00020045399313708417 0.0008740624085634401 5.361889726096775e-07 1.7162175259511898 0.0010528045858040137 1.1315720941427114 0.0012378984917832733']
['59866.49324890376 2.8478726424506933 0.0006512419430292766 0.32635887293446664 0.00020041318676246195 0.0008729685352843722 5.360798207402525e-07 1.714069710790266 0.001052590266609569 1.1338029316604272 0.001237765057562117']
['59866.493280441726 2.846276210664861 0.0006510912889644947 0.3261884185171281 0.00020037272977532387 0.0008725125913668717 5.35971603437973e-07 1.7131744670017233 0.0010523777824334238 1.1331017436631379 0.0012375050963632183']
['59866.493311979684 2.847104102340067 0.0006511299516388029 0.3265904331787676 0.00020044784336194308 0.000873587929528138 5.361725227422387e-07 1.7152858885439477 0.001052772286564827 1.1318182137961192 0.0012378609377793953']
['59866.49334351765 2.8444348569394755 0.0006509694121177871 0.3259367111103926 0.0002003425949289255 0.0008718393060224213 5.358909965511895e-07 1.7118524743192889 0.0010522195111813313 1.1325823826201866 0.0012373063788826343']
['59866.493375055616 2.845901127615635 0.000651024061517965 0.3264834613136366 0.0002004232977749434 0.000873301793375073 5.361068664144725e-07 1.7147240615212007 0.0010526433706667196 1.1311770660944342 0.0012376955984748188']
['59866.493406593574 2.842812713276637 0.000650787195964084 0.3255845657002341 0.00020028978583905177 0.0008708973617751297 5.35749738942894e-07 1.710002971114675 0.0010519421525160284 1.1328097421619623 0.0012369746426951727']
['59866.49343813154 2.8435131111074368 0.0006508449659004588 0.32593210496099373 0.0002003242209465018 0.000871826985157792 5.35841848481828e-07 1.7118282823581605 0.0010521230091728037 1.1316848287492762 0.0012371588402742815']
['59866.493469669505 2.8429111881820535 0.0006507983576132287 0.3256421404950496 0.0002002824349722938 0.0008710513670388674 5.357300763079269e-07 1.7103053597429076 0.0010519035450225515 1.1326058284391458 0.0012369476829288645']
['59866.493501207464 2.8417521748891303 0.0006506779974482897 0.32587832743474127 0.0002003118447479402 0.0008716831371051813 5.358087437225378e-07 1.711545837367339 0.0010520580081299382 1.1302063375217914 0.0012370157269952753']
['59866.49353274543 2.8415928187361272 0.000650728525195412 0.3251875206038791 0.00020022370973778132 0.0008698353165698307 5.355729937641136e-07 1.7079176502304576 0.0010515951141690195 1.1336751685056696 0.0012366486557010238']
['59866.49356428339 2.8419945748970026 0.0006507381274738537 0.3255805069026685 0.00020027926249704484 0.0008708865050071369 5.35721590339562e-07 1.7099816539005699 0.0010518868828626306 1.1320129209964327 0.0012369018250801634']
['59866.493595821354 2.846788397797461 0.0006511148245765293 0.32671265725173115 0.00020044465287693018 0.0008739148634000198 5.361639886000427e-07 1.7159278217002687 0.0010527555298158098 1.1308605760971921 0.001237838729536724']
['59866.49362735932 2.8434773664281234 0.0006508691952851421 0.32574669851980764 0.00020028978258349432 0.0008713310464755088 5.357497302346913e-07 1.7108545090326033 0.0010519421354175124 1.1326228573955202 0.0012370177709466767']
['59866.49365889728 2.8466954645861637 0.0006510715183244869 0.3264219127008914 0.0002004100323670997 0.0008731371586530757 5.360713831332884e-07 1.7144008020004802 0.0010525736994070362 1.1322946625856836 0.001237661308539928']
['59866.49369043524 2.839941870223615 0.0006505635015888021 0.32506545226603323 0.00020021209157995544 0.0008695087992696091 5.355419166675151e-07 1.7072765350106789 0.0010515340944325393 1.132665335212936 0.001236509935808663']
['59866.49372197321 2.845971152119139 0.0006510107603429865 0.3263416790128981 0.00020040090506839118 0.0008729225437279223 5.360469687684726e-07 1.7139794065803473 0.0010525257619138193 1.1319917455387918 0.0012375885784761506']
['59866.49375351117 2.846429868699292 0.0006510886370230439 0.32640100548609974 0.0002004019623615217 0.0008730812345088677 5.360497968933133e-07 1.7142909952001038 0.0010525313149239587 1.1321388734991884 0.0012376342683345846']
['59866.49378504913 2.841207350916789 0.0006506665756899351 0.3257108957532128 0.00020029745932677765 0.0008712352786220646 5.357702645479751e-07 1.710666469292084 0.0010519824544473616 1.1305408816247051 0.0012369454624942692']
['59866.49381658709 2.846776943094775 0.0006511555615350269 0.3262756395048326 0.00020038338369045934 0.0008727458964313176 5.360001013078401e-07 1.7136325604245413 0.0010524337378700597 1.1331443826702337 0.0012375864971488424']
['59866.49384812506 2.845669947131691 0.0006510230870569229 0.3261634027819018 0.0002003789717434723 0.0008724456774523114 5.359882999099973e-07 1.7130430818377198 0.0010524105658795814 1.132626865293971 0.0012374970945647132']
['59866.49387966302 2.8466610698543278 0.0006511099151513982 0.3262216555760131 0.00020036254886792655 0.0008726014962780547 5.359443708037302e-07 1.7133490313866235 0.0010523243112811268 1.1333120384677042 0.0012374694249644147']
['59866.49391120098 2.846661750022725 0.0006511544455067073 0.32614557809064465 0.0002003448072241407 0.0008723979986670565 5.358969141599135e-07 1.7129494647617893 0.0010522311303788902 1.1337122852609356 0.0012374136186585247']
['59866.49394273895 2.8466356191686835 0.0006511417068746586 0.32634123803263004 0.00020041285832511676 0.0008729213641617127 5.360789422120679e-07 1.713977090507511 0.0010525885416235125 1.1326585286611726 0.0012377108549207914']
['59866.49397427691 2.8471646033603077 0.0006511406833852518 0.3267355954534011 0.00020045520804417059 0.000873976220176178 5.361922223318321e-07 1.7160482954485352 0.001052810966618543 1.1311163079117725 0.0012378994793567383']
['59866.49400581487 2.8467203779332895 0.0006510994064625886 0.32621791591442295 0.00020037928140665168 0.0008725914931582636 5.359891282196728e-07 1.7133293903068432 0.001052412192261826 1.1333909876264463 0.0012375386295050662']
['59866.49403735284 2.840088699180299 0.0006505574649348085 0.32546655440183236 0.0002002665530719941 0.0008705816965401494 5.356875942417355e-07 1.70938316387517 0.0010518201316806414 1.1307055353051292 0.0012367500170168127']
['59866.494068890795 2.842712832209646 0.0006508188205834231 0.32555064282077484 0.00020027675118555835 0.0008708066223810146 5.357148729002895e-07 1.7098248047309603 0.001051873693201462 1.1328880274786859 0.0012369330635385576']
['59866.49410042876 2.8438243915426105 0.0006508883553347103 0.32601674147288384 0.00020035327386473168 0.0008720533770776804 5.35919561348173e-07 1.7122728018533815 0.001052275598029053 1.131551589689229 0.0012373114342467402']
['59866.49413196673 2.8429434537773166 0.0006507953932047255 0.3255565138797842 0.00020028347885817278 0.0008708223267181998 5.357328685700725e-07 1.709855640124917 0.0010519090276164536 1.1330878136523996 0.00123695078568126']
['59866.494163504685 2.8412280246002606 0.0006506859657632029 0.32522099936226545 0.0002002139563999887 0.0008699248679964822 5.355469048242591e-07 1.708093484045512 0.0010515438886554028 1.1331345405547486 0.0012365827007562891']
['59866.49419504265 2.840777810149019 0.0006506497923569536 0.3253606810350057 0.00020025567444887195 0.0008702984987305318 5.356584953065435e-07 1.7088271062762905 0.0010517629960549997 1.1319507038727286 0.0012367499958216034']
['59866.49422658062 2.844287537951492 0.0006509407768516919 0.3257966167688026 0.00020031653896548913 0.0008714645714516104 5.358213001582833e-07 1.7111166847100978 0.0010520826626338716 1.133170853241394 0.0012371749366937002']
['59866.494258118575 2.8465081073454375 0.0006511368720370435 0.3261712382948044 0.00020037586757275214 0.0008724666364541619 5.359799966475718e-07 1.7130842347416197 0.0010523942624619336 1.1334238726038177 0.0012375430941138907']
['59866.49428965654 2.8419772969665846 0.0006507013242634274 0.32562168887660925 0.0002002887235619495 0.0008709966615570352 5.357468974865619e-07 1.7101979457805108 0.0010519365733295668 1.1317793511860739 0.001236924721923905']
['59866.4943211945 2.84287234884216 0.0006507872123023521 0.3257084654758836 0.00020031016460921825 0.0008712287779388709 5.358042495648457e-07 1.7106537052304813 0.0010520491838719446 1.1322186436116786 0.001237065673673751']
['59866.494352732465 2.8466065193993204 0.0006511040017901332 0.32648961819655364 0.00020043081645496397 0.0008733182622549098 5.361269779286036e-07 1.714756398091143 0.0010526828595323738 1.1318501213081773 0.001237771232457913']
['59866.49438427043 2.845593739554711 0.0006509871509333909 0.32662222873360736 0.0002004593253498003 0.0008736729785990807 5.362032356014655e-07 1.7154528820042403 0.0010528325911229007 1.1301408575504706 0.0012378371199842629']
['59866.49441580839 2.847846865497745 0.0006512141140838135 0.3264425020571481 0.0002004132658085911 0.0008731922325660728 5.360800321786086e-07 1.7145089393757778 0.0010525906817678103 1.1333379261219674 0.0012377507688248026']
['59866.494447346355 2.8470811387835413 0.0006511057782324932 0.32662625322040373 0.00020043821223521795 0.0008736837435901236 5.361467607014682e-07 1.7154740190147255 0.0010527217029160608 1.1316071197688158 0.00123780520205654']
['59866.49447888432 2.8407002594462094 0.000650623518345199 0.32514916610150874 0.00020019908933144098 0.0008697327231472748 5.355071373041137e-07 1.7077162085163275 0.00105146580531219 1.1329840509298819 0.0012364834420099196']
['59866.49451042228 2.8482093433959417 0.0006512904718542941 0.3264385718848558 0.00020042840511866079 0.0008731817198543498 5.361205279102488e-07 1.714488297714579 0.0010526701949509496 1.1337210456813627 0.00123785856141413']
['59866.494541960245 2.8402830912555954 0.0006505836650922657 0.32526293265347583 0.00020021906382240278 0.0008700370342246544 5.355605665305391e-07 1.7083137219195161 0.0010515707133529559 1.1319693693360793 0.0012365516853195138']
['59866.4945734982 2.8473722589366766 0.0006511469502351316 0.3265537501123496 0.0002004318404142876 0.0008734898069844709 5.361297168897444e-07 1.7150932253799875 0.001052688237469998 1.132279033556689 0.0012377983988146875']
['59866.49460503617 2.843698783198465 0.000650886818489604 0.3261097543658409 0.00020036491901918356 0.0008723021747530651 5.359507106573173e-07 1.7127613149466434 0.0010523367595545357 1.1309374682518216 0.0012373626412629643']
['59866.494636574134 2.846830023796097 0.0006511054325413649 0.3265864966607333 0.00020042895804350396 0.000873577399842361 5.361220069139791e-07 1.7152652135542716 0.0010526730989679832 1.1315648102418252 0.0012377636840591726']
['59866.49466811209 2.847817091442428 0.0006512249886011315 0.3266006468708963 0.0002004378115552786 0.0008736152498573733 5.361456889335195e-07 1.7153395318849598 0.0010527195985046147 1.132477559557468 0.0012378661231547865']
['59866.49469965006 2.8420135451535096 0.0006507756714381984 0.3253770468510875 0.00020024395313531423 0.0008703422752099798 5.356271422814637e-07 1.7089130611926866 0.0010517014345342135 1.133100483960823 0.001236763874770427']
['59866.494731188024 2.847155940479757 0.000651119893221079 0.32653115058657445 0.0002004055241592912 0.0008734293561233171 5.36059324249974e-07 1.7149745303916728 0.001052550021845017 1.1321814100880843 0.0012376666206350463']
['59866.49476272598 2.839518617487543 0.0006505109849880568 0.32485392197982954 0.00020013986474564348 0.0008689429826198115 5.35348719059034e-07 1.706165556616752 0.0010511547518153544 1.133353060870791 0.0012361597202037167']
['59866.49479426395 2.8424285053072973 0.0006507677824057587 0.32548330660965885 0.00020025556488458972 0.00087062650656844 5.356582022360039e-07 1.709471148159973 0.001051762420612341 1.1329573571473244 0.001236811584692527']
['59866.49482580191 2.8468758534106584 0.0006511679057401988 0.32625437209150676 0.00020039826062725916 0.0008726890088017783 5.360398952243066e-07 1.7135208618251405 0.0010525118730423276 1.133354991585518 0.0012376594379558317']
['59866.49485733987 2.8416908362938917 0.0006507092032601014 0.32549575156074784 0.00020027121643524976 0.0008706597952320089 5.357000681461652e-07 1.7095365102980455 0.0010518446241347152 1.1321543259958462 0.001236850670262379']
['59866.49488887784 2.8476820011713264 0.0006512115436823636 0.3264262786269825 0.00020041426290049098 0.0008731488369508667 5.360826992728032e-07 1.714423732284572 0.0010525959185950157 1.1332582688867545 0.0012377538699063122']
['59866.4949204158 2.8465379359918543 0.000651098925153547 0.32642369269221133 0.00020042510375241452 0.0008731419199037854 5.361116971748362e-07 1.7144101506943874 0.0010526528558425132 1.132127785297467 0.0012377430449206747']
['59866.49495195376 2.8410307200964033 0.0006506683913856943 0.32537554553615955 0.00020024220816875009 0.0008703382593832249 5.356224747175274e-07 1.708905176135292 0.0010516922697938556 1.1321255439611113 0.0012366996344677227']
['59866.49498349173 2.8464343117524673 0.0006511178932072159 0.32629533430844276 0.00020040858664717925 0.0008727985775295996 5.360675160161175e-07 1.7137359995191324 0.0010525661063402272 1.132698312233335 0.0012376792472489912']
['59866.495015029686 2.8395494046418417 0.0006505092885344678 0.3253615708854867 0.00020022397029124717 0.0008703008789675514 5.355736907115427e-07 1.7088317798607495 0.0010515964826220965 1.1307176247810922 0.0012365344704992193']
['59866.49504656765 2.8416671998197174 0.000650678934885489 0.325443417520245 0.00020026622104195045 0.000870519808320446 5.356867061035388e-07 1.7092616466399426 0.00105181838782537 1.1324055531797748 0.0012368124341513046']
['59866.49507810561 2.840934036884284 0.0006506783300397408 0.3250932573067309 0.0002001991237830951 0.0008695831742220445 5.355072294579129e-07 1.7074225698882926 0.0010514659862557517 1.1335114669959914 0.0012365124380434216']
['59866.495109643576 2.8474664086222967 0.0006511795233428341 0.32651962232553394 0.00020042914611928864 0.0008733985194892019 5.361225099928162e-07 1.7149139828021742 0.00105267408676097 1.1325524258201225 0.0012378034999785074']
['59866.49514118154 2.84349255686007 0.0006508609705305314 0.3254562489362369 0.00020024300943035083 0.0008705541307285464 5.356246179905437e-07 1.709329038530656 0.001051696478100582 1.1341635183294139 0.0012368045460011512']
['59866.4951727195 2.843831675756305 0.0006509394097112849 0.3256012482902012 0.00020030700014951396 0.0008709419855844884 5.357957850370449e-07 1.7100905897594603 0.0010520325638104725 1.1337410859968446 0.0012371316140301774']
['59866.495204257466 2.843988165225565 0.0006508961902696196 0.32551348507634836 0.00020024669707790704 0.0008707072301339622 5.356344819794e-07 1.7096296485102331 0.001051715845997411 1.134358516715332 0.001236839549508971']
['59866.49523579543 2.8410678738424373 0.000650649182868524 0.32554560739425964 0.00020027684676141803 0.0008707931532546202 5.357151285535754e-07 1.7097983581631284 0.001051874195175515 1.131269515679309 0.0012368442430814059']
['59866.49526733339 2.846944975564883 0.0006510815885604248 0.3267814047750886 0.00020047656347927037 0.0008740987542935941 5.362493454084374e-07 1.7162888906254656 0.0010529231275171766 1.1306560849394172 0.001237963790836759']
['59866.495298871356 2.8441649150310635 0.0006509299998965593 0.325796256710852 0.00020030716279907627 0.0008714636083423223 5.357962201039664e-07 1.7111147936494329 0.0010520334180623755 1.1330501213816306 0.0012371273893521796']
['59866.495330409314 2.8438234034803527 0.0006508916523462946 0.3255945198442609 0.00020029329055335206 0.0008709239878461569 5.357591136085245e-07 1.710055251282883 0.00105196055962895 1.1337681521974696 0.0012370452546729821']
['59866.49536194728 2.8465765801403267 0.0006510831340773692 0.32645473188209995 0.00020041331841033847 0.0008732249457945474 5.360801728816021e-07 1.7145731716496848 0.0010525909580374922 1.1320034084906418 0.0012376820966719586']
['59866.495393485246 2.8467508491680364 0.0006511299599833971 0.3263738971819607 0.00020040415161140645 0.0008730087232382363 5.360556528587053e-07 1.714148619653155 0.0010525428130851182 1.1326022295148814 0.0012376657861333626']
['59866.495425023204 2.8466721264602084 0.0006510987227400501 0.32653902317425876 0.00020045523025592234 0.0008734504142955 5.36192281745447e-07 1.7150158780160651 0.001052811083276903 1.1316562484441433 0.0012378775076009785']
['59866.49545656117 2.841627215752355 0.0006506918811782205 0.3256883536354739 0.0002003043831486432 0.0008711749813201165 5.357887848920927e-07 1.7105480758165645 0.001052018819058 1.1310791399357905 0.001236989700799259']
['59866.495488099135 2.841209037140688 0.0006506740326932468 0.32546375907635583 0.00020026292410851607 0.0008705742193995252 5.35677887225335e-07 1.7093684825438857 0.0010518010719985087 1.1318405545968022 0.0012367951293073985']
['59866.495519637094 2.8429894995329987 0.0006507825042530635 0.32566365222721366 0.00020029796654547367 0.0008711089081902688 5.357716212935668e-07 1.7104183415294838 0.0010519851184111013 1.132571158003515 0.0012370087134698396']
['59866.49555117506 2.841724171415309 0.000650742186198469 0.32548403242465607 0.0002002647696246335 0.0008706284480313741 5.356828237465558e-07 1.70947496021353 0.0010518107648352598 1.1322492112017792 0.0012368392288093458']
['59866.49558271302 2.8408731590724696 0.0006506326037394377 0.32513983802720137 0.0002002187065695486 0.0008697077717332321 5.355596109245278e-07 1.707667216529419 0.0010515688370249404 1.1332059425430505 0.0012365758383741556']
['59866.49561425098 2.844358637884514 0.0006509463541505563 0.32595321805456356 0.00020033097354795205 0.0008718834600015835 5.358599108330807e-07 1.7119391704546407 0.001052158474516555 1.132419467429873 0.0012372423414509']
['59866.49564578895 2.847150622214523 0.0006511233548366122 0.32662179100811295 0.00020044776701102845 0.0008736718077389774 5.361723185132392e-07 1.7154505830258036 0.0010527718855621244 1.1317000391887195 0.0012378571267491721']
['59866.49567732691 2.84239124789067 0.0006507469152216412 0.3260325928191463 0.00020036224497621338 0.0008720957774157029 5.359435579319939e-07 1.7123560547224073 0.0010523227152112048 1.1300351931682626 0.0012372771090665036']
['59866.49570886487 2.8473354124442345 0.0006511403895484387 0.32629505415535964 0.0002003694608037507 0.0008727978281556836 5.359628593541967e-07 1.713734528126889 0.0010523606134650774 1.1336008843173455 0.0012375163302655388']
['59866.49574040284 2.845795653035364 0.0006510408693511304 0.3264479774418052 0.00020044237658055152 0.0008732068785246192 5.361578997963351e-07 1.7145376966481367 0.0010527435744776866 1.1312579563872271 0.001237789661925455']
['59866.4957719408 2.8463362718147214 0.0006510707286081213 0.32650153613787364 0.00020042484930748208 0.0008733501412342805 5.361110165669582e-07 1.714818992320765 0.00105265151947207 1.1315172794939563 0.0012377270761751832']
['59866.49580347876 2.8475858224139987 0.0006511856251814316 0.32660080528307 0.00020045315057402638 0.0008736156735898185 5.361867188605092e-07 1.7153403638816702 0.0010528001605778696 1.1322454585323285 0.0012379139293810858']
['59866.49583501672 2.8477520228168656 0.0006511950773566629 0.3265962648847856 0.00020045482797273652 0.0008736035286010694 5.361912056890177e-07 1.7153165172520253 0.0010528089704450448 1.1324355055648403 0.0012379263940247437']
['59866.49586655469 2.8459867577739066 0.0006510196487235717 0.32642790479776906 0.00020042894491306148 0.000873153186751186 5.36121971791713e-07 1.7144322730975268 0.001052673030005575 1.1315544846763799 0.0012377185023765625']
['59866.49589809265 2.8402274521384174 0.0006505295918590836 0.32525134307255366 0.00020022252090762192 0.0008700060335676439 5.355698137944268e-07 1.7082528522718157 0.0010515888703131404 1.1319745998666018 0.0012365386779437239']
['59866.49592963061 2.8469238288364807 0.0006511094606752153 0.3265380407171961 0.00020045613509945097 0.0008734477863476362 5.361947020869648e-07 1.7150107180525007 0.00105281583560636 1.13191311078398 0.0012378871973989746']
['59866.49596116858 2.8464605571890367 0.0006510600947211278 0.32647606394805584 0.0002004245047673299 0.0008732820063616607 5.361100949658101e-07 1.7146852098112177 0.001052649709912447 1.131775347377819 0.0012377199435724719']
['59866.49599270654 2.8455960642070717 0.0006510125121064043 0.32631612288061634 0.0002003944114787994 0.0008728541843198727 5.36029599241045e-07 1.7138451831965145 0.0010524916569264675 1.1317508810105572 0.0012375604950138445']
['59866.4960242445 2.8465600608715977 0.000651126492783515 0.3263985209642393 0.00020041125245345075 0.0008730745887284423 5.360746467093181e-07 1.714277946240753 0.0010525801074235859 1.1322821146308448 0.0012376956783266267']
['59866.49605578247 2.8465824692743324 0.0006510936015268554 0.32615070738315444 0.0002003443879549321 0.0008724117188730648 5.358957926680306e-07 1.7129764043232902 0.0010522289283347276 1.1336060649510422 0.0012373797297408993']
['59866.496087320425 2.8418245072140067 0.0006506837953658344 0.3254727377936192 0.00020024195058092478 0.0008705982363278461 5.356217857028102e-07 1.7094156396723699 0.001051690916916622 1.1324088675416368 0.0012367065885959417']
['59866.49611885839 2.8415323358846827 0.0006506969274449011 0.32562001389143425 0.000200292706322547 0.0008709921811844267 5.357575508653223e-07 1.7101891485894658 0.0010519574911898478 1.1313431872952169 0.0012369401984965455']
['59866.49615039636 2.8418683669678955 0.0006507370796977772 0.3255977356934653 0.00020030194780155385 0.0008709325898343437 5.357822706479344e-07 1.7100721412471918 0.0010520060283695056 1.1317962257207037 0.0012370025992775328']
['59866.496181934315 2.8402703802828273 0.0006506149859558461 0.3251994466910521 0.0002002364127653504 0.0008698672173383236 5.356069727494893e-07 1.7079802872429208 0.00105166183175079 1.1322900930399065 0.0012366456518792086']
['59866.49621347228 2.8441327142776043 0.0006509202760684063 0.3260735736400736 0.00020035384609971932 0.000872205395906838 5.359210920040872e-07 1.7125712901264372 0.0010522786034649126 1.1315614241511671 0.0012373307824131094']
['59866.49624501025 2.8478976727405536 0.0006512146218440178 0.32674147731081893 0.00020045754162582353 0.0008739919533977345 5.361984643663729e-07 1.7160791875568222 0.0010528232228247034 1.1318184851837314 0.0012379487962845806']
['59866.496276548205 2.841168706735676 0.0006506210877908271 0.3256414482789579 0.00020029342268526742 0.0008710495154487383 5.357594670446165e-07 1.710301724154191 0.0010519612535990937 1.130866982581485 0.00123690350430092']
['59866.49630808617 2.847134430596871 0.0006511505388999366 0.3267310637206358 0.00020047506699010434 0.0008739640983665921 5.362453424899826e-07 1.7160244943310707 0.00105291526780517 1.1311099362658004 0.0012379933705343137']
['59866.49633962413 2.8437445222697852 0.0006508938338411441 0.32553134930691424 0.00020026234790124038 0.0008707550146818461 5.356763459440548e-07 1.7097234732506001 0.001051798045699792 1.134021049019185 0.001236908206727696']
['59866.496371162095 2.840732988165543 0.0006506323287001776 0.32543486019133466 0.00020025493435472868 0.0008704969185524503 5.356565156487072e-07 1.7092167026855813 0.001051759109005928 1.1315162854799619 0.0012367375026766025']
['59866.49640270006 2.841859119948466 0.0006507148935751229 0.3252783459929208 0.00020022419027614248 0.00087007826295007 5.35574279143198e-07 1.7083946743325675 0.00105159763800495 1.1334644456158987 0.0012366436289319867']
['59866.49643423802 2.8466416748560155 0.0006510952200812679 0.3264511585815425 0.00020041676979987714 0.00087321538766939 5.360894049102678e-07 1.7145544043148242 0.0010526090850833884 1.1320872705411913 0.0012377038707270663']
['59866.496465775985 2.840765933909444 0.0006506329946302354 0.32514047924622036 0.00020021067564400907 0.0008697094869126686 5.355381292186921e-07 1.7076705842763675 0.0010515266577941652 1.1330953496330767 0.0012365401755516378']
['59866.49649731395 2.846634799879898 0.0006510652178756102 0.3263267286936105 0.00020038685920002394 0.000872882553522621 5.360093978545119e-07 1.7139008859958536 0.0010524519915967644 1.1327339138840447 0.0012375544887169257']
['59866.49652885191 2.8445600697143307 0.0006509751747296469 0.3255137300231686 0.00020027370771405337 0.0008707078853355964 5.357067320005554e-07 1.7096309349956336 0.001051857708582213 1.1349291347186972 0.0012370017450343868']
['59866.496560389875 2.8479357977684527 0.0006511995422903597 0.32661810382811846 0.00020044443598030734 0.0008736619450007893 5.361634084291239e-07 1.715431217584656 0.0010527543906528748 1.1325045801837967 0.0012378823251497212']
['59866.49659192783 2.8472590827062527 0.0006511352808600684 0.32647429062444827 0.00020041861750042731 0.0008732772629462348 5.360943472745689e-07 1.7146758961368083 0.0010526187893930006 1.1325831865694445 0.0012377331981343583']
['59866.4966234658 2.847163045617445 0.0006511496336182167 0.3265028105625014 0.00020044283855746896 0.0008733535501582991 5.36159135525915e-07 1.7148256857274233 0.0010527460008270429 1.1323373598900217 0.001237848935701958']
['59866.496655003764 2.840944437375785 0.0006506735124761052 0.3255583193935169 0.00020027812177002974 0.0008708271562381223 5.357185390396769e-07 1.70986512286511 0.001051880891649316 1.1310793145106748 0.001236862736949801']
['59866.49668654172 2.8464616660034965 0.0006510722862350195 0.3263997145917942 0.0002003840652692418 0.0008730777815305527 5.36001924444518e-07 1.7142842152930369 0.0010524373175905559 1.1321774507104596 0.0012375457281896696']
['59866.49671807969 2.841728154434743 0.0006506659866265469 0.32561325159757276 0.0002002747480113112 0.000870974092907205 5.357095146635952e-07 1.7101536323401931 0.0010518631723283151 1.13157452209455 0.0012368437085797399']
['59866.49674961765 2.840714220562937 0.0006506272478876467 0.3255703168111664 0.00020026931522930817 0.0008708592478065802 5.356949826617377e-07 1.7099281345124286 0.0010518346388093919 1.1307860860505083 0.001236799063345836']
['59866.49678115561 2.8436788257308194 0.000650876631953555 0.32580076284042614 0.0002003227482587427 0.0008714756616666238 5.358379092291138e-07 1.7111384602963557 0.0010521152744681866 1.1325403654344637 0.0012371689216887365']
['59866.49681269358 2.843830807939213 0.0006509125718255359 0.3254766580370922 0.00020026462761888554 0.0008706087224812385 5.356824438992159e-07 1.7094362291864087 0.001051810019006752 1.1343945787528043 0.0012369282486237904']
['59866.49684423154 2.8471201088792735 0.0006511124496949298 0.32644988507856965 0.00020040926385380146 0.0008732119812106811 5.36069327457822e-07 1.7145477157487903 0.0010525696630976967 1.1325723931304832 0.0012376794083369615']
['59866.4968757695 2.846789348635184 0.0006510800753055363 0.326665236273351 0.0002004421694493254 0.0008737880183056424 5.361573457466122e-07 1.7156787619398686 0.0010527424866035998 1.1311105866953155 0.0012378093583263108']
['59866.49690730747 2.8419277491009627 0.0006506906429600023 0.3257144098129804 0.0002003124988261922 0.0008712446782856331 5.358104932987895e-07 1.7106849254883425 0.001052061443414875 1.1312428236126202 0.0012370253002893237']
['59866.49693884543 2.841554785001087 0.0006507295628219711 0.32543611890902235 0.00020028093822936066 0.000870500285462399 5.357260727106774e-07 1.7092233135978065 0.0010518956839777346 1.1323314714032806 0.001236904803896185']
['59866.49697038339 2.8462136057325784 0.0006510446231938247 0.32628054226356734 0.00020040072146413932 0.000872759010688249 5.360464776504179e-07 1.7136583102078118 0.001052524797605774 1.1325552955247666 0.0012376055716441586']
['59866.49700192135 2.841076759157218 0.0006506631911862321 0.32542862291220487 0.00020027137106152273 0.0008704802346229553 5.357004817518068e-07 1.7091839438666223 0.0010518454362474932 1.1318928152905958 0.0012368271545043514']
['59866.497033459316 2.8405801954113232 0.0006506196776867573 0.3256213899731909 0.00020029813503107498 0.0008709958620283539 5.357720719711515e-07 1.7101963759096162 0.0010519860033144696 1.130383819501707 0.0012369238117858233']
['59866.49706499728 2.8479220703278756 0.0006512610504929039 0.32645044428172987 0.00020041945840176877 0.0008732134770081121 5.360965965788571e-07 1.714550652740178 0.0010526232058916429 1.1333714175876977 0.0012378031222576233']
['59866.49709653524 2.8408447021248375 0.0006505845324104296 0.325487843201128 0.00020029679363260078 0.0008706386413744417 5.357684839005998e-07 1.7094949747958403 0.0010519789581544161 1.1313497273289972 0.0012368993339036724']
['59866.497128073206 2.8474827557552556 0.0006511724297059338 0.326534654992809 0.0002004527637675783 0.0008734387299649108 5.361856842023876e-07 1.7149929358866018 0.0010527981290313986 1.1324898198686537 0.0012379052603899631']
['59866.49715961117 2.8421111404329507 0.0006506777645422397 0.3259379104942062 0.000200361391367495 0.0008718425142217927 5.359412746370863e-07 1.7118587736040243 0.0010523182319721377 1.1302523668289264 0.0012372369274357487']
['59866.49719114913 2.8462633677012388 0.0006510764270158685 0.3262168084862833 0.00020036755774275166 0.0008725885309286411 5.35957768907726e-07 1.7133235739825805 0.001052350618396805 1.1329397937186583 0.001237474176642037']
['59866.497222687096 2.846584956921408 0.0006510756200160293 0.326469036350515 0.0002004240723034644 0.000873263208430792 5.361089381798957e-07 1.714648300160268 0.0010526474385686155 1.13193665676114 0.0012377261784838858']
['59866.497254225054 2.846610915528788 0.0006511146153468773 0.32614713667295686 0.0002003757492963543 0.000872402167676791 5.359796802732296e-07 1.7129576505932609 0.001052393641262365 1.133653264935527 0.001237530855569982']
['59866.49728576302 2.8426359812221236 0.0006508137276742818 0.3255687491553427 0.00020025282285165592 0.0008708550545263549 5.35650867646163e-07 1.7099199010259596 0.0010517480191788652 1.132716080196164 0.0012368235136736205']
['59866.497317300986 2.8466237652536237 0.0006511475837165585 0.3265993420938289 0.0002004637699155098 0.0008736117597444336 5.362151242502481e-07 1.7153326790642276 0.0010528559344301985 1.1312910861893961 0.0012379413533947395']
['59866.497348838944 2.846318613045084 0.0006510384671407726 0.3264454134670726 0.00020042138197642507 0.0008732000202178519 5.361017418967555e-07 1.714524230394289 0.0010526333086997115 1.1317943826507952 0.0012376946183453772']
['59866.49738037691 2.8462764722103797 0.000651107092399953 0.32647112681268453 0.00020042642988555952 0.0008732688001515925 5.361152444125711e-07 1.7146592794783853 0.0010526598208275186 1.1316171927319945 0.00123775326465259']
['59866.497411914876 2.8406262348409066 0.000650640583298872 0.3252503094034093 0.0002002439631867927 0.0008700032686339658 5.356271691678921e-07 1.708247423337234 0.001051701487325592 1.1323788115036726 0.00123669284265672']
['59866.497443452834 2.8446155047902124 0.0006509867919326434 0.3260035028722844 0.00020037025579241097 0.0008720179655024701 5.359649858478938e-07 1.7122032713880486 0.001052364788825688 1.1324122334021638 0.0012374390700276476']
['59866.4974749908 2.8400105021508044 0.0006505571470287175 0.32528512045524777 0.00020023485872174547 0.0008700963837763913 5.356028158802203e-07 1.7084302544918477 0.0010516536697570667 1.1315802476589567 0.0012366082818191255']
['59866.49750652876 2.8462312990416585 0.0006510471719365472 0.32652009414431005 0.00020042480500308214 0.0008733997815445038 5.361108980583153e-07 1.7149164608419645 0.0010526512867808937 1.131314838199694 0.0012377144871286137']
['59866.497538066724 2.840008339662229 0.0006505138043127848 0.3254737272048698 0.00020027896433138373 0.0008706008828772793 5.357207927842877e-07 1.7094208361600305 0.0010518853168665113 1.1305875035021986 0.0012367824907560962']
['59866.49756960469 2.8467195504550165 0.000651095311607285 0.3262573877280881 0.0002003800574200862 0.0008726970752466268 5.359912039570512e-07 1.7135367002525637 0.0010524162679626378 1.1331828502024528 0.001237539941120849']
['59866.49760114265 2.841652354730831 0.0006507495962220241 0.3254701543307993 0.00020027285801348696 0.0008705913258929203 5.357044591594581e-07 1.7094020710651223 0.0010518532458691542 1.132250283665709 0.0012368792535363356']
['59866.49763268061 2.8446084389335846 0.0006509594078372527 0.3256742210598132 0.0002002868944425191 0.0008711371784751583 5.357420048243962e-07 1.710473850104061 0.0010519269666098693 1.1341345888295236 0.0012370523407410326']
['59866.49766421858 2.842324130111901 0.0006507332019808488 0.3259949140177874 0.00020035040560127988 0.0008719949914075339 5.359118891077286e-07 1.7121581618581272 0.0010522605336201675 1.1301659682537737 0.0012372170103804943']
['59866.49769575654 2.846121490060269 0.0006510911657640157 0.3263395593043251 0.0002003885777798731 0.0008729168737767071 5.360139948373369e-07 1.7139682736571697 0.0010524610177514344 1.1321532164030992 0.0012375758158683977']
['59866.4977272945 2.841044092229783 0.0006506519798913946 0.3256532455408216 0.00020030526872840817 0.0008710810716258904 5.357911537054892e-07 1.7103636845631387 0.001052023470212228 1.1306804076666443 0.0012369726677715924']
['59866.49775883246 2.84220536388043 0.0006507538150203832 0.3257775588404803 0.000200327500797585 0.0008714135939138359 5.35850621666912e-07 1.7110165905487413 0.001052140235281434 1.1311887733316888 0.0012371255402996312']
['59866.49779037043 2.84373278130599 0.0006508468795256377 0.32576825074088617 0.00020031459623754243 0.000871388695929614 5.358161036077657e-07 1.7109677034710409 0.0010520724592307901 1.132765077834949 0.001237116857883758']
['59866.49782190839 2.846168822543538 0.0006510536275213866 0.3265127817601649 0.0002004318135530143 0.0008733802218456385 5.361296450392499e-07 1.7148780554630512 0.0010526880963918819 1.131290767080487 0.0012377491887268278']
['59866.49785344635 2.8445641899164764 0.000650996954026166 0.32592014580521944 0.00020033479486835648 0.0008717949959349905 5.358701323798286e-07 1.7117654716660686 0.0010521785444766623 1.1327987182504078 0.0012372860314447804']
['59866.49788498432 2.841997505690221 0.0006507731174431756 0.325534442449849 0.0002002822205710185 0.0008707632884463463 5.35729502811746e-07 1.7097397187492074 0.0010519024189654335 1.1322577869410135 0.0012369334458296613']
['59866.49791652228 2.841622067811226 0.0006506753671726106 0.3256826792877128 0.00020030542962315654 0.0008711598031605366 5.357915840785064e-07 1.71051827356992 0.001052024315247671 1.131103794241306 0.0012369856884044952']
['59866.49794806024 2.84327966802973 0.0006508344642226762 0.32561143921604846 0.00020029535960295166 0.0008709692450168124 5.357646480534199e-07 1.7101441135296664 0.0010519714264860907 1.1331355545000636 0.001237024406373293']
['59866.49797959821 2.844743766565809 0.0006510052631037304 0.3260998610703205 0.00020038905337999902 0.0008722757114440645 5.360152670072693e-07 1.712709354360927 0.0010524635156512554 1.1320344122048818 0.001237532748805363']
['59866.498011136166 2.84666524581628 0.0006510719044228314 0.3264145599810089 0.0002004104253433405 0.0008731174910612358 5.360724342948219e-07 1.7143621847742065 0.001052575763357881 1.1323030610420735 0.0012376632669418603']
['59866.49804267413 2.8470070774570324 0.0006511332445194576 0.32657709915141825 0.00020045424059265165 0.0008735522626984914 5.36189634521892e-07 1.7152158568877012 0.0010528058854656075 1.1317912205693312 0.001237891245057278']
['59866.4980742121 2.8467330237153563 0.00065108279863524 0.32627056777548047 0.00020038710819121372 0.000872732330199445 5.36010063874321e-07 1.7136059231905487 0.0010524532993236016 1.1331271005248076 0.0012375648499920442']
['59866.498105750055 2.8449950260520755 0.0006509198699678462 0.32639067372084274 0.0002004252304480982 0.0008730535983490102 5.361120360696988e-07 1.7142367317271154 0.00105265352126102 1.1307582943249601 0.001237649430550583']
['59866.49813728802 2.8436829758412343 0.000650875273522745 0.32568412662730173 0.0002002892394975332 0.000871163674610115 5.357482775487209e-07 1.7105258751433916 0.0010519392830752794 1.1331571006978427 0.0012370185434989408']
['59866.49816882599 2.8413540528380525 0.000650672030248249 0.3256390671228503 0.00020030073281402687 0.0008710431461585736 5.357790207106115e-07 1.7102892180821971 0.0010519996471324942 1.1310648347558554 0.0012369629535739018']
['59866.498200363945 2.8476247173089835 0.000651161331430083 0.32647505994440357 0.00020041291544098264 0.0008732793207794062 5.36079094989755e-07 1.7146799366827918 0.0010525888416017997 1.1329447806261916 0.0012377214343358592']
['59866.49823190191 2.8421337914380533 0.0006507370222937075 0.3257066015217683 0.00020031257616800644 0.0008712237920983473 5.358107001783196e-07 1.7106439155555058 0.0010520618496218826 1.1314898758825476 0.0012370500424855487']
['59866.49826343987 2.8402588135967126 0.0006505733562289999 0.3253596621970746 0.00020025339405471085 0.0008702957734684655 5.356523955417882e-07 1.7088217552367362 0.00105175101919491 1.1314370583599764 0.0012366995990185318']
['59866.498294977835 2.8467817374957822 0.0006511097443888464 0.3263288804245843 0.00020043278418874455 0.0008728883091296914 5.36132241366551e-07 1.7139121871039094 0.0010526931942686165 1.1328695503918729 0.0012377830425795839']
['59866.4983265158 2.8465998089933997 0.0006510898343301403 0.32639822861019113 0.00020042682990585188 0.0008730738067184944 5.361163144160478e-07 1.7142764107678108 0.0010526619217744323 1.132323398225589 0.0012377459730986366']
['59866.49835805376 2.8467209468822094 0.0006510594572276397 0.32640216059950544 0.00020041059056349672 0.0008730843242905206 5.360728762377556e-07 1.7142970619721927 0.001052576631110802 1.1324238849100168 0.001237657457136713']
['59866.498389591725 2.841015945957726 0.0006506663366299218 0.3254976854859873 0.0002002744733362472 0.0008706649682364027 5.357087799426847e-07 1.7095466674684208 0.0010518617297071808 1.1314692784893052 0.001236842665841531']
['59866.49842112969 2.846998364032155 0.0006511552072314289 0.32608701653752764 0.00020038660176772348 0.0008722413539501874 5.360087092558038e-07 1.712641893579452 0.0010524506395363628 1.1343564704527027 0.0012376006838092422']
['59866.49845266765 2.841305172718406 0.0006506641954074036 0.3253981653360983 0.0002002324395743136 0.0008703987644751911 5.355963449680883e-07 1.7090239776055582 0.0010516409641508069 1.1322811951128477 0.0012366537966080897']
['59866.498484205615 2.84221038149036 0.0006507628660058992 0.32585669238065923 0.00020034714465964797 0.0008716252660833121 5.359031665030252e-07 1.7114322078816138 0.0010522434068258822 1.130778173608746 0.0012372180466598242']
['59866.49851574357 2.8414878700649764 0.0006506830397473945 0.3254331646754891 0.00020024999458264319 0.0008704923832629055 5.356433023857635e-07 1.709207797665384 0.0010517331648248068 1.1322800723995923 0.0012367421187164742']
['59866.49854728154 2.846895493870873 0.0006511322184643689 0.32637948729450417 0.00020039413800911684 0.0008730236760793075 5.360288677443767e-07 1.7141779794879421 0.001052490220636118 1.132717514382931 0.0012376222486918192']
['59866.498578819504 2.840415370594607 0.0006506291302946397 0.3251329076392452 0.00020020603100742856 0.000869689233825656 5.3552570540574e-07 1.7076308174330104 0.0010515022636944779 1.1327845531615968 0.0012365173980751628']
['59866.49861035746 2.8465954191931133 0.0006510531126547596 0.32669326281968303 0.00020046054585168654 0.000873862985757517 5.362065002889992e-07 1.715825960187411 0.0010528390013218832 1.1307694590057022 0.0012378772629796186']
['59866.49864189543 2.841173447721399 0.0006506578584480671 0.32526362141797815 0.00020024270988610733 0.0008700388765822203 5.356238167477365e-07 1.7083173393801374 0.0010516949048640092 1.1328561083412616 0.0012366963336555754']
['59866.498673433394 2.8460057966870114 0.000651030904186284 0.3263652347232554 0.0002003810583872319 0.0008729855522613913 5.359938814170361e-07 1.7141031235465096 0.0010524215251430246 1.1319026731405017 0.0012375105271430948']
['59866.49870497135 2.8420399316495772 0.000650742428868411 0.32542096021173283 0.0002002616375454976 0.0008704597378724081 5.356744458326629e-07 1.709143698591034 0.0010517943148397983 1.1328962330585433 0.0012368253674059568']
['59866.49873650932 2.84416467862593 0.0006508925612949203 0.3260638678314032 0.00020035720183841387 0.0008721794341013489 5.359300681788933e-07 1.712520314240563 0.0010522962281429302 1.1316443643853669 0.0012373311917643146']
['59866.49876804728 2.841243706190439 0.0006506275730060112 0.32554292984064725 0.00020027584356147052 0.0008707859911387747 5.35712445121129e-07 1.7097842953815507 0.0010518689262682276 1.1314594108088882 0.0012368283942424537']
['59866.49879958524 2.8421115023264103 0.0006507919508138064 0.32515567832086545 0.00020019816332586166 0.0008697501425069575 5.355046603567981e-07 1.7077504113490833 0.001051460941837509 1.134361090977327 0.001236567942109879']
['59866.49883112321 2.8414268993731233 0.0006507043353627032 0.32560312368418065 0.0002002595623740077 0.0008709470020251955 5.356688950124885e-07 1.7101004395177555 0.0010517834158298726 1.1313264598553678 0.0012367960567023861']
['59866.49886266117 2.840846312267446 0.0006506003464890649 0.32528293595441515 0.00020023898422475602 0.0008700905405141107 5.356138510768063e-07 1.708418781273189 0.001051675337314895 1.132427530994257 0.001236649435356718']
['59866.49889419913 2.841722286062899 0.0006507075002286527 0.3256032317293688 0.00020027783229278177 0.0008709472910323513 5.35717764724804e-07 1.7101010069819789 0.0010518793712856185 1.1316212790809201 0.0012368793241824565']
['59866.4989257371 2.8430676040751894 0.0006508597256813096 0.3254349404383175 0.0002002383629298746 0.0008704971332029374 5.356121891919072e-07 1.7092171241508274 0.0010516720742115265 1.133850479924362 0.0012367831395157052']
['59866.49895727506 2.8435482128559944 0.0006508582799783419 0.3258545631802331 0.00020030953049249447 0.0008716195707425952 5.358025533831467e-07 1.7114210251062665 0.0010520458534269668 1.1321271877497279 0.0012371002297022018']
['59866.49898881302 2.844637328328367 0.0006510008939569198 0.32591588465904464 0.00020034454741186449 0.0008717835979101677 5.358962191950726e-07 1.7117430916966632 0.001052229765818616 1.1328942366317036 0.001237331662896981']
['59866.49902035098 2.8470417218771162 0.0006511281824477591 0.3267447508186455 0.00020046965011067877 0.0008740007096154126 5.362308530255001e-07 1.716096380350029 0.001052886817808187 1.1309453415270871 0.0012379574148943784']
['59866.499051888946 2.8467402795414563 0.0006511475261788743 0.3262753607665041 0.00020039729076205714 0.0008727451508416904 5.360373009580707e-07 1.7136310964627317 0.001052506779212485 1.1331091830787245 0.001237644383955709']
['59866.49908342691 2.8420646494407675 0.000650755784128722 0.32543722283390025 0.0002002518787452463 0.0008705032383212413 5.356483422814252e-07 1.7092291115225855 0.0010517430606367978 1.132835537918182 0.001236788808234715']
['59866.49911496487 2.8472392689515225 0.0006511503216992794 0.32670864330787663 0.00020044809782045314 0.0008739041266100074 5.361732033864352e-07 1.7159067400623773 0.0010527736230065818 1.1313325288891452 0.0012378727894042584']
['59866.499146502836 2.84449306935232 0.0006509451002165731 0.3258609057191425 0.0002003104790823827 0.000871636536228632 5.358050907406204e-07 1.7114543367602024 0.0010520508355167158 1.1330387325921174 0.0012371501461049036']
['59866.4991780408 2.8441854214864586 0.0006509474197579406 0.32590457024744335 0.00020033941456072714 0.0008717533332961422 5.358824894701876e-07 1.711683667265984 0.0010522028075668445 1.1325017542204745 0.0012372806033964447']
['59866.49920957876 2.842877013793364 0.0006508145876008646 0.3256139531530368 0.00020027462656312797 0.000870975969478969 5.357091898051298e-07 1.7101573169802355 0.00105186253447021 1.1327196968131283 0.0012369213470775646']
['59866.499241116726 2.8426261837743283 0.0006507614738350842 0.32573198304947537 0.00020031095197359507 0.0008712916844613356 5.35806355664553e-07 1.7107772218985051 0.0010520533191890498 1.1318489618758232 0.0012370556504234997']
['59866.499272654684 2.843457264119287 0.0006508625522082916 0.3257940457546826 0.0002003236971057403 0.0008714576943153759 5.358404472743223e-07 1.7111031814846778 0.0010521202579082999 1.132354082634609 0.0012371657524228993']
['59866.49930419265 2.8420983419468833 0.0006507477105347088 0.32576520736719505 0.0002003231890674911 0.0008713805552915196 5.3583908833653e-07 1.7109517193655204 0.0010521175896401843 1.131146622581363 0.0012371030697546734']
['59866.499335730616 2.8410539303715976 0.0006506575200857441 0.32535630208983557 0.00020023363277127615 0.0008702867856083578 5.35599536618419e-07 1.7088041076146827 0.0010516472309415766 1.1322498227569149 0.0012366556136577458']
['59866.499367268574 2.841715007803752 0.0006507208771639688 0.3256061707953335 0.0002002789163310825 0.0008709551526605254 5.357206643895782e-07 1.710116443252802 0.0010518850647640889 1.13159856455095 0.0012368912035627046']
['59866.49939880654 2.846708342662524 0.000651138238120236 0.32614378494430984 0.00020036140281670797 0.0008723932022283527 5.359413052622769e-07 1.7129400469764173 0.0010523182921045586 1.1337682956861068 0.0012374792091345132']
['59866.499430344506 2.846445061834196 0.0006511364344878325 0.3261194029007287 0.00020037016290119574 0.00087232798335846 5.359647373756909e-07 1.7128119900248358 0.0010523643009516584 1.1336330718093603 0.0012375173850233377']
['59866.499461882464 2.8411628067314423 0.0006506940529202125 0.3252455779278331 0.00020022625593239457 0.0008699906125377293 5.355798045113198e-07 1.708222573150384 0.0010516084870398875 1.1329402335810583 0.0012366418885514324']
['59866.49949342043 2.842395460125193 0.000650779637563355 0.3256146188567458 0.0002003019960954373 0.0008709777501518416 5.35782399827939e-07 1.7101608133232449 0.0010520062820138516 1.132234646801948 0.0012370252034876652']
['59866.49952495839 2.840190602070928 0.0006505544960680983 0.3253717951388093 0.00020024499827264684 0.0008703282275466392 5.356299378910889e-07 1.7088854786702172 0.0010517069237008763 1.1313051234007108 0.0012366521765293497']
['59866.499556496354 2.8419613651062403 0.0006507446773134158 0.3255316451187501 0.0002002814809128615 0.0008707558059409369 5.357275243201176e-07 1.709725026884192 0.0010518985342062054 1.1322363382220484 0.001236915179515922']
['59866.49958803432 2.846821692949978 0.0006511066271546967 0.3268001156843111 0.00020049040395192654 0.0008741488035993504 5.362863669149576e-07 1.7163871622075164 0.0010529958190752444 1.1304345307424617 0.0012380387857069382']
['59866.49961957228 2.842885254191973 0.0006508290254411175 0.325294005655806 0.00020022631133982294 0.0008701201505594032 5.355799527191537e-07 1.7084769204611663 0.0010516087780452887 1.1344083337308069 0.0012367131609304317']
['59866.49965111024 2.844202819966048 0.0006510013698079469 0.3254000093693739 0.0002002655452528244 0.0008704036970299987 5.356848984534565e-07 1.709033662654275 0.0010518148385127333 1.135169157311773 0.0012369790774331595']
['59866.49968264821 2.845966052258193 0.0006510387050088928 0.32613618479118506 0.00020038085403958428 0.0008723728727840155 5.359933348130323e-07 1.712900130205804 0.0010524204518885729 1.133065922052389 0.001237513718296894']
['59866.49971418617 2.847649966931402 0.0006511806467414552 0.3265757691418864 0.0002004256690062901 0.000873548705091914 5.361132091571623e-07 1.7152088715435212 0.0010526558246128682 1.132441095387881 0.0012377885602080903']
['59866.49974572413 2.847714445679542 0.0006511975097084258 0.32635473825920797 0.00020039629816465107 0.0008729574755531874 5.360346458860762e-07 1.7140479950588656 0.0010525015659908145 1.1336664506206764 0.001237666248656548']
['59866.49977726209 2.842067263697041 0.0006507425157365684 0.32537920863081726 0.00020025071014383302 0.0008703480576961961 5.356452164210652e-07 1.708924415077822 0.0010517369230243333 1.1331428486192192 0.0012367766075730292']
['59866.49980880006 2.841107649851134 0.0006506718715400276 0.325642879749645 0.00020028547434815288 0.0008710533444510197 5.357382062523284e-07 1.7103092423825894 0.0010519195081310551 1.1307984074685444 0.0012368947150020826']
['59866.49984033802 2.840595694120978 0.0006506333091225511 0.3252748017254679 0.00020024404172552484 0.0008700687824847797 5.356273792490256e-07 1.7083760594824997 0.001051701899818933 1.1322196346384783 0.001236689366422512']
['59866.49987187598 2.8411697101874025 0.0006506427036327067 0.32563376159737395 0.00020030036431314323 0.0008710289545517625 5.357780350175499e-07 1.7102613529273845 0.0010519977117286934 1.130908357260018 0.0012369458813031738']
['59866.49990341395 2.842144381403542 0.0006507921165343008 0.32575443636098034 0.00020032772470969192 0.0008713517442178869 5.358512206033596e-07 1.7108951489547288 0.0010521414112903988 1.131249232448813 0.0012371466882691588']
['59866.49993495191 2.841678197119003 0.000650699981001402 0.32575773343348624 0.00020032054425066245 0.0008713605634680894 5.358320137874233e-07 1.7109124655120078 0.0010521036987954963 1.130765731606995 0.001237066149522486']
['59866.49996648987 2.8469287370800673 0.000651127510816079 0.3265118275958804 0.00020045477482273275 0.0008733776695773628 5.36191063519508e-07 1.7148730440960105 0.0010528086912958653 1.1320556929840568 0.001237890615446153']
['59866.49999802784 2.8463974168438826 0.0006510817935296748 0.3265433028834617 0.00020044209613411383 0.0008734618619740653 5.361571496377328e-07 1.715038355480366 0.0010527421015447155 1.1313590613635165 0.0012378099346146009']
['59866.500029565796 2.8436686692192428 0.0006508385654386328 0.3255867065424154 0.00020026134282347284 0.0008709030882560631 5.356736574886784e-07 1.7100142150336943 0.0010517927669300045 1.1336544541855484 0.0012368746350493618']
['59866.50006110376 2.8471485055082244 0.0006511752918778205 0.32593495567553393 0.00020031718595895222 0.0008718346104571266 5.358230307836245e-07 1.7118432545983926 0.0010520860607087827 1.1353052509098318 0.0012373012324773177']
['59866.50009264173 2.842436215513919 0.0006507846007524095 0.32578862103266426 0.00020031295591450292 0.0008714431838729536 5.358117159519673e-07 1.7110746902976064 0.0010520638440887759 1.1313615252163125 0.0012370767674705259']
['59866.500124179685 2.8478980801064226 0.0006512147925447658 0.3263518644376769 0.00020037105125608976 0.0008729497884455867 5.359671136122052e-07 1.714032901458387 0.0010523689666811437 1.1338651786480356 0.0012375625834933198']
['59866.50015571765 2.8435180694081854 0.0006508894587187984 0.32561748266592555 0.00020028822304890163 0.000870985410477674 5.357455586777275e-07 1.7101758543378445 0.0010519339445845676 1.133342215070341 0.001237021467574633']
['59866.50018725562 2.8434700570171847 0.0006508469621095039 0.32561010944441193 0.00020028632737982083 0.0008709656880465747 5.357404880036992e-07 1.7101371294349366 0.001051923988339395 1.1333329275822481 0.0012369906407612911']
['59866.500218793575 2.841900486591447 0.0006507346308319937 0.3257301572691611 0.00020031251230554284 0.0008712868007308816 5.358105293543404e-07 1.7107676327161825 0.0010520615142097839 1.1311328538752645 0.0012370484992292883']
['59866.50025033154 2.8473066834725724 0.0006511047050682242 0.3264633109602671 0.0002003914238210962 0.0008732478937390428 5.36021607636142e-07 1.7146182298333357 0.001052475965446934 1.1326884536392368 0.0012375956507702484']
['59866.5002818695 2.8464123754609085 0.000651057425312391 0.32673132574643127 0.00020047037939894437 0.0008739647992523158 5.36232803778986e-07 1.716025870516971 0.0010528906481036995 1.1303865049439374 0.0012379234580209828']
['59866.500313407465 2.840936220731546 0.0006506200418802534 0.3253993192224038 0.00020026151931527535 0.0008704018509745069 5.356741295818344e-07 1.7090300379327932 0.0010517936938827487 1.1319061827987529 0.0012367604510930077']
['59866.50034494543 2.8477441626685005 0.0006511802297210242 0.3269469005671827 0.00020050465515353044 0.000874541434518345 5.363244870692477e-07 1.7171580912141948 0.0010530706678231643 1.1305860714543057 0.0012381411563343863']
['59866.50037648339 2.8464893242601494 0.000651107234999727 0.32640612161868626 0.00020042166508882814 0.0008730949195137527 5.361024991864765e-07 1.7143178656443607 0.0010526347956346018 1.1321714586157887 0.0012377320568078092']
['59866.500408021355 2.8416115681994762 0.000650738802139132 0.3253117618711763 0.00020024234013445207 0.0008701676461803575 5.356228277090196e-07 1.7085701778948335 0.0010516929628910298 1.1330413903046428 0.001236737270726481']
['59866.50043955932 2.845708591340793 0.0006509982267499461 0.32644065800804445 0.00020040467333352606 0.0008731872999689275 5.360570483991129e-07 1.714499254243931 0.0010525455532223009 1.1312093370968619 0.001237598817403933']
['59866.50047109728 2.844106830904699 0.0006509045634615902 0.325942343619727 0.00020033250392969556 0.0008718543722695236 5.358640044098756e-07 1.7118820568262976 0.001052166512235796 1.1322247740784013 0.0012372271902142966']
['59866.500502635245 2.8428066625659207 0.0006508271516146364 0.32569877163349287 0.00020028591142017086 0.0008712028481416602 5.357393753644653e-07 1.710602792192715 0.0010519218036773679 1.1322038703732058 0.0012369783596856768']
['59866.5005341732 2.8405066198366384 0.0006505830944047143 0.3254991626600432 0.00020026276966294095 0.000870668919489391 5.356774741030373e-07 1.709554425735521 0.001051800260834774 1.1309521941011174 0.0012367465995171817']
['59866.50056571117 2.841441125288173 0.0006507052937146494 0.32549060722621215 0.00020028864049887675 0.0008706460347904917 5.357466753033919e-07 1.7095094917343074 0.0010519361370739326 1.1319316335538654 0.0012369264391022998']
['59866.500597249134 2.8401707157431493 0.0006505819655908218 0.3254681213738574 0.00020024884893519453 0.0008705858879913002 5.356402379243434e-07 1.7093913937702594 0.0010517271477688789 1.1307793219728899 0.0012366838267342541']
['59866.50062878709 2.843573561559002 0.0006508482296926569 0.32560705844889004 0.00020030238062387662 0.000870957527021051 5.357834283926764e-07 1.7101211052987924 0.0010520083015959907 1.1334524562602097 0.0012370630075792205']
['59866.50066032506 2.847783639765123 0.0006512076132098146 0.32646007106596797 0.0002004124495789321 0.0008732392274332815 5.360778488679376e-07 1.7146012135817648 0.0010525863948473325 1.133182426183358 0.001237743702920814']
['59866.500691863024 2.841084760762392 0.0006506956997933719 0.32547546234401525 0.00020025783525998893 0.000870605524154119 5.356642752018435e-07 1.7094299492857947 0.0010517743448528831 1.1316548114765974 0.0012367837993037818']
['59866.50072340098 2.8473925104382705 0.0006511894103894354 0.32630489272295643 0.00020040182380703396 0.0008728241450744395 5.36049426277656e-07 1.7137862012760319 0.0010525305872218173 1.1336063091622386 0.0012376866668268038']
['59866.50075493895 2.842988401771417 0.0006508474996867395 0.32534202884526187 0.00020024848696253953 0.0008702486064919232 5.356392696934643e-07 1.708729143094863 0.0010517252466519934 1.134259258676554 0.0012368219202026122']
['59866.50078647691 2.8409185997375412 0.0006506684956048851 0.32551201906180005 0.00020027974885462784 0.0008707033087312394 5.357228912843258e-07 1.709621948853992 0.0010518894372617009 1.1312966508835491 0.0012368673653207372']
['59866.50081801487 2.84499110506008 0.0006510200826586962 0.32600999435799877 0.00020036168668325488 0.0008720353294022927 5.359420645692369e-07 1.712237365325624 0.0010523197830002882 1.132753739734456 0.0012374183099173493']
['59866.50084955284 2.847218361590202 0.0006511763879267937 0.32657994594012285 0.0002004210773632522 0.0008735598774967145 5.36100927095206e-07 1.7152308085090486 0.0010526317088406102 1.1319875530811534 0.0012377658109069298']
['59866.5008810908 2.848382600305046 0.0006512686694714299 0.3263172081410833 0.00020040592538595885 0.0008728570872537862 5.360603974803514e-07 1.713850883093925 0.0010525521291279353 1.1345317172111211 0.0012377466882875657']
['59866.50091262876 2.8405285815160024 0.0006505811064313263 0.3254692573642951 0.00020026423848400635 0.0008705889266214425 5.356814030128368e-07 1.709397360106592 0.0010518079752311258 1.1311312214094105 0.0012367521145343592']
['59866.50094416673 2.8417519157868414 0.0006507366345356132 0.32536013882881026 0.0002002516321208767 0.000870297048397823 5.356476825925595e-07 1.7088242585546758 0.001051741765340739 1.1329276572321656 0.0012367776309785']
['59866.50097570469 2.8411519398675615 0.000650678936703786 0.3253378975218972 0.00020025138998379502 0.000870237555726629 5.356470349066191e-07 1.7087074449679476 0.0010517404936123689 1.132444494899614 0.001236746192463902']
['59866.50100724265 2.845783240849166 0.0006510468391413646 0.32594398127848756 0.0002003341289754963 0.0008718587527987141 5.358683512010006e-07 1.7118906579752498 0.0010521750471402117 1.1338925828739161 0.0012373093051377528']
['59866.50103878061 2.8462835411097736 0.0006510772572141596 0.3265628513246962 0.00020045344833705128 0.0008735141515715816 5.361875153387829e-07 1.7151410258650013 0.001052801724459303 1.1311425152447723 0.0012378582575909066']
['59866.501070318576 2.8477848409910527 0.0006512356802051981 0.32660780310683113 0.00020045063725008025 0.0008736343918796078 5.361799960381627e-07 1.7153771171577266 0.0010527869603470601 1.132407723833326 0.001237929034738716']
['59866.50110185654 2.8462468179472413 0.0006510404276893172 0.3264070418623507 0.0002004022184250633 0.0008730973810486778 5.360504818307652e-07 1.714322698856884 0.0010525326597955007 1.1319241190903573 0.0012376100510346868']
['59866.5011333945 2.8467014554934806 0.0006511081723736582 0.3264049767801968 0.00020040613985831395 0.0008730918572161957 5.360609711666618e-07 1.7143118528371681 0.0010525532555583717 1.1323896026563125 0.0012376632045586118']
['59866.501164932466 2.8409500341068066 0.0006506451912901915 0.3252627859954216 0.0002002179446981553 0.0008700366419329859 5.355575730153136e-07 1.708312951656626 0.0010515648355995553 1.1326370824501806 0.0012365790587012906']
['59866.50119647043 2.846153207469461 0.0006510684433903956 0.326456022001111 0.00020044772964776425 0.000873228396699048 5.361722185712529e-07 1.714579947484827 0.0010527716893264931 1.131573259984634 0.0012378280768451451']
['59866.50122800839 2.8438341140258885 0.000650914994622099 0.3255925837545028 0.00020027923205180893 0.0008709188090519506 5.357215089024228e-07 1.7100450827442375 0.0010518867229611815 1.133789031281651 0.001236994748641198']
['59866.501259546356 2.8464133797000106 0.0006510462426556226 0.3264157251280537 0.00020039813324357407 0.0008731206076815991 5.360395544891276e-07 1.7143683042439797 0.001052511204010368 1.132045075456031 0.0012375948628866227']
['59866.501291084314 2.840961619262975 0.0006506524139373036 0.32537347504975633 0.00020026066354972787 0.0008703327210950622 5.356718405176831e-07 1.7088943017319136 0.0010517891993157978 1.1320673175310616 0.0012367736589852679']
['59866.50132262228 2.846215535624096 0.0006510611756652718 0.32666633070216244 0.00020045259271716495 0.0008737909457637132 5.361852266642565e-07 1.7156845099903493 0.001052797230657379 1.1305310256337469 0.0012378459772275758']
['59866.501354160246 2.8470582894757026 0.0006511309677755662 0.3267651015107273 0.00020047419274082576 0.0008740551451320539 5.36243003984198e-07 1.7162032642370133 0.0010529106761597992 1.1308550252386893 0.0012379791715403092']
['59866.501385698204 2.845973844283034 0.0006510721831122522 0.326124858781297 0.00020036760018188795 0.0008723425771460459 5.359578824270256e-07 1.7128406448597533 0.0010523508412914285 1.1331331994232807 0.0012374721333384972']
['59866.50141723617 2.8460279147165153 0.0006510168818450033 0.3264723858090494 0.00020042079260848255 0.0008732721678069675 5.361001654123631e-07 1.7146658918542512 0.0010526302132798455 1.131362022862264 0.001237680631809662']
['59866.501448774135 2.8468784609023103 0.000651207376896166 0.3263327011245638 0.0002004178362451354 0.0008728985290168814 5.360922575158879e-07 1.7139322538054822 0.0010526146861614255 1.1329462070968281 0.0012377676378249277']
['59866.501480312094 2.8437282062801117 0.0006508914074649337 0.32566911200226734 0.0002002953055672624 0.0008711235123951085 5.35764503514814e-07 1.7104470168186312 0.0010519711426852016 1.1332811894614805 0.001237054125474747']
['59866.50151185006 2.8468530199602102 0.0006511523283413983 0.32664328911428947 0.0002004670861071524 0.0008737293124425926 5.362239946417131e-07 1.7155634932473187 0.0010528733514031114 1.1312895267128915 0.0012379586619912816']
['59866.50154338802 2.84553142203287 0.0006510644099051152 0.32619327682261556 0.0002004258460416671 0.0008725255867170125 5.36113682704311e-07 1.7131999833120566 0.0010526567544205205 1.1323314387208132 0.0012377282046039995']
['59866.501574925984 2.8475022262245986 0.0006512071909890815 0.32644307508615267 0.00020042765031542777 0.0008731937653458815 5.361185089074656e-07 1.7145119489818943 0.0010526662306482551 1.1329902772427043 0.0012378113744602186']
['59866.50160646395 2.8438920717894423 0.00065092294249399 0.3257147132090133 0.00020031562938150244 0.0008712454898314879 5.358188671366424e-07 1.7106865189549019 0.0010520778854070506 1.1332055528345404 0.0012371614906824433']
['59866.50163800191 2.8405158790153386 0.000650661151617677 0.325253170282963 0.00020024123040982055 0.0008700109211234206 5.35619859336573e-07 1.7082624489651421 0.0010516871345053601 1.1322534300501965 0.0012366914583308714']
['59866.50166953987 2.8428391022767503 0.0006508357723285883 0.325386149451349 0.00020024839068810815 0.0008703666235095868 5.356390121715879e-07 1.7089608689671694 0.0010517247410089714 1.133878233309581 0.001236815319032287']
['59866.50170107784 2.840487779119729 0.000650642630709994 0.32536232957073896 0.00020027499934246624 0.000870302908354243 5.357101869425142e-07 1.7088357645522005 0.0010518644923448858 1.1316520145675286 0.0012368325445076167']
['59866.5017326158 2.8436161508246065 0.0006509176145225103 0.32561921825377327 0.00020030498759920155 0.0008709900529547351 5.357904017205668e-07 1.710184969820238 0.0010520219936932856 1.1334311810043685 0.0012371111575400454']
['59866.50176415376 2.8468132252665788 0.0006511437464974977 0.32648038868511436 0.0002004291252041802 0.000873293574484021 5.361224540475575e-07 1.7147079237663572 0.0010526739769127114 1.1321053015002216 0.0012377845855689193']
['59866.50179569172 2.8455578174926033 0.0006510444091959622 0.3264096682285237 0.00020041602179707982 0.000873104406244624 5.360874040977866e-07 1.714336492796868 0.0010526051564972681 1.1312213246957352 0.001237673801221452']
['59866.50182722969 2.841561027597866 0.000650687691229104 0.3257446741161035 0.000200318822270422 0.0008713256314527135 5.358274077089834e-07 1.7108438766602079 0.0010520946547816284 1.1307171509376583 0.0012370519933038932']
['59866.50185876765 2.842200707789562 0.000650784318299287 0.32549828986259716 0.00020027301468115898 0.0008706665848670741 5.357048782255829e-07 1.7095498417153214 0.0010518540687035663 1.1326508660742407 0.001236898221678936']
['59866.50189030561 2.844015032089513 0.0006509354242659332 0.3259165840855093 0.00020035287238198113 0.0008717854687871286 5.359184874328064e-07 1.7117467651549858 0.0010522734894011616 1.1322682669345272 0.0012373344022780452']
['59866.50192184358 2.8407070964897407 0.0006506461534784057 0.32544617879249793 0.00020027055827521892 0.000870527194373022 5.356983076516736e-07 1.7092761491202624 0.001051841167411864 1.1314309473694784 0.0012368145610796302']
['59866.50195338154 2.8466727484383347 0.0006511836998970782 0.3262021801928229 0.00020038889838808473 0.000872549402101528 5.360148524235836e-07 1.7132467447102042 0.001052462701618092 1.1334260037281305 0.001237625932707012']
['59866.5019849195 2.8465603392329983 0.0006510757015326678 0.326543086734091 0.00020047287790512708 0.0008734612838019512 5.362394869656972e-07 1.7150372202420745 0.0010529037705101212 1.1315231189909238 0.0012379442310058583']
['59866.50201645747 2.8438948741175443 0.0006509142552370811 0.3257124918213178 0.00020030942614491246 0.0008712395479015338 5.358022742666177e-07 1.7106748520027195 0.0010520453053829435 1.1332200221148248 0.0012371292140472372']
['59866.502047995426 2.841762621988435 0.0006507478161589235 0.3254448396125527 0.00020025227242306018 0.0008705236122367536 5.356493953195776e-07 1.709269115612147 0.0010517451282723751 1.1324935063762882 0.001236786374068005']
['59866.50207953339 2.846118063077077 0.0006510819108255624 0.3264033613806331 0.00020040645761389933 0.0008730875362275295 5.360618211224956e-07 1.714303368595762 0.0010525549244427487 1.131814694481315 0.0012376508084160677']
['59866.50211107136 2.8444820673430193 0.0006509556663507242 0.32600121586322384 0.00020035670331828298 0.0008720118480436989 5.359287347008586e-07 1.7121912597858395 0.0010522936098649317 1.1322908075571798 0.0012373621623909003']
['59866.502142609315 2.8475555415859146 0.0006512114973273818 0.3268471218673532 0.0002005061074437176 0.0008742745391688804 5.363283717610476e-07 1.7166340434209728 0.0010530782953976766 1.1309214981649418 0.0012381640886768794']
['59866.50217414728 2.8467508008917095 0.0006511200667310678 0.3263339735516385 0.00020039980131934985 0.0008729019325976993 5.360440163799708e-07 1.7139389367207907 0.0010525199649125518 1.1328118641709188 0.0012376411506730817']
['59866.50220568524 2.847186520887364 0.0006511693278998104 0.32658253700214956 0.00020047642252529776 0.0008735668082585533 5.362489683744627e-07 1.7152444170280965 0.0010529223872126983 1.1319421038592676 0.001238009308160152']
['59866.502237223205 2.8468596501680095 0.00065117131129657 0.3265768193669173 0.00020044788997680327 0.0008735515143104859 5.361726474310693e-07 1.7152143874312884 0.0010527725313907734 1.131645262736721 0.0012378829021788094']
['59866.50226876117 2.8403656135985496 0.0006506268562794447 0.3254120853123248 0.00020029488118448904 0.0008704359986436646 5.357633683447948e-07 1.709097086724395 0.001051968913784081 1.1312685268741545 0.001236913053403566']
['59866.50230029913 2.843745173840052 0.0006509519011674111 0.32584287600345463 0.00020034146685006448 0.0008715883090290645 5.358879790835101e-07 1.711359642875287 0.0010522135863973974 1.1323855309647648 0.0012372921276047708']
['59866.502331837095 2.8459543613923115 0.0006510666673224385 0.32638286932652877 0.00020042913394764065 0.000873032722585432 5.361224774352037e-07 1.7141957422611807 0.0010526740228342473 1.1317586191311308 0.0012377440784137827']
['59866.50236337506 2.846615161566116 0.000651088576512968 0.3263593625932539 0.00020040275531511682 0.000872969845059438 5.360519179434697e-07 1.714072282527594 0.0010525354795962018 1.132542879038522 0.0012376377782996482']
['59866.50239491302 2.8453204276309414 0.0006510097913386824 0.3260897779146942 0.00020036545168472427 0.000872248740283394 5.359521354699865e-07 1.7126563966107888 0.0010523395571676696 1.1326640310201526 0.0012374297119427356']
['59866.502426450985 2.8438022988205756 0.0006509270149571209 0.32588558662978917 0.0002003448299846519 0.0008717025545299669 5.358969750413902e-07 1.71158396339175 0.0010522312499193901 1.1322183354288256 0.0012372940564424892']
['59866.50245798894 2.847686003953704 0.0006512625741339707 0.3263652695417203 0.00020041523309054379 0.0008729856453963627 5.360852944079738e-07 1.7141033064165982 0.0010526010141310074 1.1335826975371057 0.0012377850521868613']
['59866.50248952691 2.8422919516711174 0.0006508268638954284 0.32558576609633505 0.00020031005419750332 0.0008709005726822412 5.358039542275313e-07 1.7100092757160454 0.0010520486039784839 1.132282675955072 0.0012370860406216843']
['59866.502521064875 2.8468220292743256 0.0006511665621558508 0.32634404924588 0.0002004152456784762 0.0008729288838001131 5.360853280790942e-07 1.7139918552829834 0.0010526010802440978 1.1328301739913422 0.0012377345942490704']
['59866.50255260283 2.8472249888079055 0.0006511385630813669 0.3265559635114987 0.00020045176595952658 0.0008734957275460778 5.361830151925778e-07 1.7151048503755184 0.0010527928884428918 1.1321201384323871 0.0012378829889321504']
['59866.5025841408 2.8427735880432374 0.0006508859619446792 0.325532284498243 0.00020028943358680625 0.0008707575161998748 5.357487967128756e-07 1.7097283849697638 0.0010519403024517135 1.1330452030734737 0.0012370250342571298']
['59866.502615678764 2.843111714358116 0.000650888683843887 0.3257182923969974 0.00020031588758254856 0.0008712550637047638 5.358195577916475e-07 1.7107053172111208 0.001052079241504982 1.1324063971469953 0.001237144619339924']
In [20]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_nrca1_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Pipeline Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6))

axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")
axs[0,0].legend()

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Pipeline Calculated Net Aperture Sum MAD (ppm): 3559.246003797116
Pipeline Calculated Net Aperture Sum std (ppm): 3669.1742182405533
Median Relative Errors Net Aperture Sum (ppm): 4121.894390818671
Pipeline Calculated Aperture Background std (ppm): 2375.067850016911
Median Relative Errors Aperture Background (ppm): 2708.9566503550573
Pipeline Calculated Annulus Mean std (ppm): 2375.067850016917
Median Relative Errors Annulus Mean (ppm): 2708.956650355057
Pipeline Calculated Annulus Sum std (ppm): 2375.067850016905
Median Relative Errors Annulus Sum (ppm): 2708.956650355057
Out[20]:
<matplotlib.legend.Legend at 0x7fc8df8717c0>

$\textbf{External method: tshirt $\rightarrow$ (bkgGeometry = CircularAnnulus) }$¶

In [21]:
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/HD189733b_WLP4/HD189733b_NRCA1_phot_pipeline.yaml") #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus'
alteredParam['bkgMethod'] = 'mean' #Due to the odd aperture configuration, we need to do mean background subtraction
alteredParam['apRadius'] = 25 #Changing the source radius
alteredParam['backStart'] = 5 #Changing the inner radius
alteredParam['backEnd'] = 12 #Changing the outer radius

alteredParam['srcNameShort'] = 'HD189733b_phot3' #provide a new name for centroid realignment

#Assignimg a object new phot3
phot3 = phot_pipeline.phot(directParam=alteredParam) #create new photometric object

phot3.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[1900,2050]) #Plot the source and background subtraction area
In [22]:
phot3.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot3.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|                                                  | 0/7350 [00:00<?, ?it/s]2022-02-22 21:56:01,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                        | 1/7350 [00:00<1:18:17,  1.56it/s]2022-02-22 21:56:01,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:01,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 11/7350 [00:00<09:01, 13.56it/s]2022-02-22 21:56:01,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 15/7350 [00:01<07:16, 16.81it/s]2022-02-22 21:56:02,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                         | 21/7350 [00:01<06:52, 17.77it/s]2022-02-22 21:56:02,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 25/7350 [00:01<06:15, 19.52it/s]2022-02-22 21:56:02,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 31/7350 [00:01<05:58, 20.43it/s]2022-02-22 21:56:02,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|▏                                        | 34/7350 [00:01<05:42, 21.33it/s]2022-02-22 21:56:02,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:02,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▏                                        | 37/7350 [00:02<06:06, 19.94it/s]2022-02-22 21:56:03,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▏                                        | 41/7350 [00:02<05:17, 23.04it/s]2022-02-22 21:56:03,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 45/7350 [00:02<05:23, 22.59it/s]2022-02-22 21:56:03,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 48/7350 [00:02<05:23, 22.60it/s]2022-02-22 21:56:03,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 52/7350 [00:02<06:01, 20.22it/s]2022-02-22 21:56:03,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 56/7350 [00:02<05:48, 20.95it/s]2022-02-22 21:56:03,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:03,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 62/7350 [00:03<04:44, 25.65it/s]2022-02-22 21:56:04,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 65/7350 [00:03<05:21, 22.67it/s]2022-02-22 21:56:04,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 68/7350 [00:03<05:08, 23.63it/s]2022-02-22 21:56:04,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 71/7350 [00:03<05:04, 23.88it/s]2022-02-22 21:56:04,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 74/7350 [00:03<06:07, 19.80it/s]2022-02-22 21:56:04,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 77/7350 [00:03<06:07, 19.79it/s]2022-02-22 21:56:04,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:04,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 81/7350 [00:04<05:05, 23.82it/s]2022-02-22 21:56:05,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 84/7350 [00:04<05:25, 22.30it/s]2022-02-22 21:56:05,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 87/7350 [00:04<06:54, 17.53it/s]2022-02-22 21:56:05,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 92/7350 [00:04<05:52, 20.61it/s]2022-02-22 21:56:05,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 97/7350 [00:04<05:42, 21.20it/s]2022-02-22 21:56:05,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:05,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                       | 100/7350 [00:05<05:43, 21.10it/s]2022-02-22 21:56:05,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                       | 103/7350 [00:05<05:21, 22.51it/s]2022-02-22 21:56:06,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                       | 107/7350 [00:05<05:09, 23.42it/s]2022-02-22 21:56:06,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▌                                       | 111/7350 [00:05<04:55, 24.49it/s]2022-02-22 21:56:06,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▌                                       | 114/7350 [00:05<04:50, 24.87it/s]2022-02-22 21:56:06,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 117/7350 [00:05<06:09, 19.58it/s]2022-02-22 21:56:06,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 122/7350 [00:05<04:52, 24.68it/s]2022-02-22 21:56:06,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 125/7350 [00:06<04:47, 25.10it/s]2022-02-22 21:56:06,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:06,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 128/7350 [00:06<05:59, 20.08it/s]2022-02-22 21:56:07,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 131/7350 [00:06<06:01, 19.98it/s]2022-02-22 21:56:07,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                       | 136/7350 [00:06<05:20, 22.48it/s]2022-02-22 21:56:07,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 139/7350 [00:06<05:21, 22.40it/s]2022-02-22 21:56:07,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 142/7350 [00:06<05:32, 21.68it/s]2022-02-22 21:56:07,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:07,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 145/7350 [00:06<05:23, 22.27it/s]2022-02-22 21:56:07,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 148/7350 [00:07<06:22, 18.84it/s]2022-02-22 21:56:08,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 151/7350 [00:07<05:41, 21.06it/s]2022-02-22 21:56:08,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 155/7350 [00:07<05:03, 23.69it/s]2022-02-22 21:56:08,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                       | 158/7350 [00:07<06:10, 19.43it/s]2022-02-22 21:56:08,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 162/7350 [00:07<05:33, 21.57it/s]2022-02-22 21:56:08,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 166/7350 [00:07<05:00, 23.92it/s]2022-02-22 21:56:08,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:08,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 169/7350 [00:08<05:38, 21.22it/s]2022-02-22 21:56:09,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 174/7350 [00:08<05:26, 21.97it/s]2022-02-22 21:56:09,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 179/7350 [00:08<05:06, 23.38it/s]2022-02-22 21:56:09,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▉                                       | 183/7350 [00:08<04:54, 24.34it/s]2022-02-22 21:56:09,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 186/7350 [00:08<04:51, 24.58it/s]2022-02-22 21:56:09,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 190/7350 [00:08<04:49, 24.72it/s]2022-02-22 21:56:09,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:09,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 193/7350 [00:09<06:22, 18.71it/s]2022-02-22 21:56:10,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 200/7350 [00:09<04:33, 26.13it/s]2022-02-22 21:56:10,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 203/7350 [00:09<04:36, 25.82it/s]2022-02-22 21:56:10,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                       | 206/7350 [00:09<04:50, 24.59it/s]2022-02-22 21:56:10,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 210/7350 [00:09<04:17, 27.74it/s]2022-02-22 21:56:10,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 213/7350 [00:09<05:11, 22.88it/s]2022-02-22 21:56:10,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:10,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 216/7350 [00:10<05:07, 23.23it/s]2022-02-22 21:56:11,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 220/7350 [00:10<04:32, 26.14it/s]2022-02-22 21:56:11,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 223/7350 [00:10<04:57, 23.97it/s]2022-02-22 21:56:11,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 226/7350 [00:10<05:22, 22.10it/s]2022-02-22 21:56:11,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▏                                      | 229/7350 [00:10<05:17, 22.45it/s]2022-02-22 21:56:11,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 234/7350 [00:10<04:29, 26.38it/s]2022-02-22 21:56:11,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 237/7350 [00:10<05:28, 21.67it/s]2022-02-22 21:56:11,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:11,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 243/7350 [00:11<04:07, 28.67it/s]2022-02-22 21:56:12,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                      | 247/7350 [00:11<06:40, 17.74it/s]2022-02-22 21:56:12,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▍                                      | 255/7350 [00:11<04:19, 27.31it/s]2022-02-22 21:56:12,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 260/7350 [00:11<04:25, 26.72it/s]2022-02-22 21:56:12,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:12,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 264/7350 [00:12<04:29, 26.28it/s]2022-02-22 21:56:12,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 268/7350 [00:12<05:15, 22.46it/s]2022-02-22 21:56:13,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 272/7350 [00:12<04:53, 24.15it/s]2022-02-22 21:56:13,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▍                                      | 275/7350 [00:12<04:54, 24.00it/s]2022-02-22 21:56:13,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 278/7350 [00:12<05:17, 22.30it/s]2022-02-22 21:56:13,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 282/7350 [00:12<05:20, 22.02it/s]2022-02-22 21:56:13,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:13,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 285/7350 [00:13<05:46, 20.40it/s]2022-02-22 21:56:14,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 288/7350 [00:13<05:28, 21.53it/s]2022-02-22 21:56:14,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 292/7350 [00:13<05:38, 20.85it/s]2022-02-22 21:56:14,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                      | 295/7350 [00:13<05:44, 20.46it/s]2022-02-22 21:56:14,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 300/7350 [00:13<04:37, 25.40it/s]2022-02-22 21:56:14,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 304/7350 [00:13<04:43, 24.84it/s]2022-02-22 21:56:14,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:14,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 307/7350 [00:14<05:38, 20.83it/s]2022-02-22 21:56:15,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 313/7350 [00:14<04:18, 27.25it/s]2022-02-22 21:56:15,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 317/7350 [00:14<05:57, 19.65it/s]2022-02-22 21:56:15,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                      | 320/7350 [00:14<05:32, 21.12it/s]2022-02-22 21:56:15,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                      | 325/7350 [00:14<06:00, 19.50it/s]2022-02-22 21:56:15,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:15,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 331/7350 [00:15<04:50, 24.14it/s]2022-02-22 21:56:15,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 335/7350 [00:15<05:13, 22.40it/s]2022-02-22 21:56:16,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 338/7350 [00:15<04:58, 23.53it/s]2022-02-22 21:56:16,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▊                                      | 343/7350 [00:15<05:09, 22.63it/s]2022-02-22 21:56:16,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 346/7350 [00:15<05:50, 19.98it/s]2022-02-22 21:56:16,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:16,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 354/7350 [00:16<04:56, 23.57it/s]2022-02-22 21:56:17,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 357/7350 [00:16<04:58, 23.41it/s]2022-02-22 21:56:17,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 360/7350 [00:16<04:48, 24.26it/s]2022-02-22 21:56:17,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                      | 364/7350 [00:16<06:11, 18.82it/s]2022-02-22 21:56:17,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 371/7350 [00:16<04:18, 26.98it/s]2022-02-22 21:56:17,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:17,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 375/7350 [00:17<05:17, 21.95it/s]2022-02-22 21:56:17,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 379/7350 [00:17<05:08, 22.63it/s]2022-02-22 21:56:18,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 382/7350 [00:17<05:59, 19.39it/s]2022-02-22 21:56:18,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                      | 388/7350 [00:17<05:02, 22.99it/s]2022-02-22 21:56:18,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 392/7350 [00:17<05:22, 21.58it/s]2022-02-22 21:56:18,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 395/7350 [00:18<05:38, 20.52it/s]2022-02-22 21:56:18,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:18,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                     | 402/7350 [00:18<05:04, 22.78it/s]2022-02-22 21:56:19,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▏                                     | 405/7350 [00:18<05:37, 20.59it/s]2022-02-22 21:56:19,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▏                                     | 412/7350 [00:18<04:44, 24.40it/s]2022-02-22 21:56:19,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 415/7350 [00:18<04:42, 24.53it/s]2022-02-22 21:56:19,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 419/7350 [00:18<04:14, 27.22it/s]2022-02-22 21:56:19,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:19,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 422/7350 [00:19<04:28, 25.84it/s]2022-02-22 21:56:20,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 425/7350 [00:19<05:50, 19.75it/s]2022-02-22 21:56:20,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 431/7350 [00:19<04:35, 25.08it/s]2022-02-22 21:56:20,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                     | 434/7350 [00:19<06:03, 19.05it/s]2022-02-22 21:56:20,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 440/7350 [00:19<04:26, 25.98it/s]2022-02-22 21:56:20,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:20,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 444/7350 [00:20<04:55, 23.38it/s]2022-02-22 21:56:21,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 447/7350 [00:20<05:50, 19.67it/s]2022-02-22 21:56:21,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 453/7350 [00:20<04:49, 23.80it/s]2022-02-22 21:56:21,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 456/7350 [00:20<04:41, 24.45it/s]2022-02-22 21:56:21,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                     | 459/7350 [00:20<04:32, 25.31it/s]2022-02-22 21:56:21,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 462/7350 [00:20<04:37, 24.84it/s]2022-02-22 21:56:21,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 465/7350 [00:20<04:49, 23.79it/s]2022-02-22 21:56:21,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:21,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 468/7350 [00:21<05:52, 19.54it/s]2022-02-22 21:56:22,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 472/7350 [00:21<05:14, 21.88it/s]2022-02-22 21:56:22,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                     | 475/7350 [00:21<05:15, 21.79it/s]2022-02-22 21:56:22,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▌                                     | 480/7350 [00:21<04:20, 26.41it/s]2022-02-22 21:56:22,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 483/7350 [00:21<04:43, 24.20it/s]2022-02-22 21:56:22,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 486/7350 [00:21<05:38, 20.26it/s]2022-02-22 21:56:22,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:22,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 491/7350 [00:22<04:47, 23.83it/s]2022-02-22 21:56:23,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 494/7350 [00:22<04:52, 23.41it/s]2022-02-22 21:56:23,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 497/7350 [00:22<05:19, 21.43it/s]2022-02-22 21:56:23,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                     | 502/7350 [00:22<04:11, 27.28it/s]2022-02-22 21:56:23,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 506/7350 [00:22<06:26, 17.69it/s]2022-02-22 21:56:23,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:23,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 514/7350 [00:23<04:46, 23.84it/s]2022-02-22 21:56:24,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 517/7350 [00:23<05:00, 22.72it/s]2022-02-22 21:56:24,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 523/7350 [00:23<03:59, 28.50it/s]2022-02-22 21:56:24,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                     | 527/7350 [00:23<04:52, 23.33it/s]2022-02-22 21:56:24,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 530/7350 [00:23<04:50, 23.49it/s]2022-02-22 21:56:24,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 534/7350 [00:23<04:46, 23.80it/s]2022-02-22 21:56:24,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:24,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 537/7350 [00:24<04:55, 23.07it/s]2022-02-22 21:56:25,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 542/7350 [00:24<04:10, 27.15it/s]2022-02-22 21:56:25,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 545/7350 [00:24<04:05, 27.75it/s]2022-02-22 21:56:25,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                     | 548/7350 [00:24<05:08, 22.04it/s]2022-02-22 21:56:25,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 552/7350 [00:24<04:38, 24.42it/s]2022-02-22 21:56:25,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 556/7350 [00:24<05:04, 22.32it/s]2022-02-22 21:56:25,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:25,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 561/7350 [00:24<04:10, 27.10it/s]2022-02-22 21:56:26,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 565/7350 [00:25<04:35, 24.67it/s]2022-02-22 21:56:26,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 568/7350 [00:25<05:00, 22.56it/s]2022-02-22 21:56:26,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███                                     | 572/7350 [00:25<05:17, 21.37it/s]2022-02-22 21:56:26,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 576/7350 [00:25<04:50, 23.35it/s]2022-02-22 21:56:26,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 580/7350 [00:25<04:29, 25.09it/s]2022-02-22 21:56:26,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:26,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 583/7350 [00:26<05:35, 20.15it/s]2022-02-22 21:56:27,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 588/7350 [00:26<04:53, 23.07it/s]2022-02-22 21:56:27,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 592/7350 [00:26<05:08, 21.92it/s]2022-02-22 21:56:27,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                    | 597/7350 [00:26<04:22, 25.77it/s]2022-02-22 21:56:27,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 600/7350 [00:26<04:16, 26.33it/s]2022-02-22 21:56:27,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 603/7350 [00:26<04:47, 23.45it/s]2022-02-22 21:56:27,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 606/7350 [00:26<04:51, 23.17it/s]2022-02-22 21:56:27,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:27,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 609/7350 [00:27<04:44, 23.72it/s]2022-02-22 21:56:28,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 612/7350 [00:27<04:59, 22.51it/s]2022-02-22 21:56:28,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 615/7350 [00:27<05:24, 20.75it/s]2022-02-22 21:56:28,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 619/7350 [00:27<04:31, 24.77it/s]2022-02-22 21:56:28,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▍                                    | 622/7350 [00:27<04:38, 24.13it/s]2022-02-22 21:56:28,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 625/7350 [00:27<04:31, 24.79it/s]2022-02-22 21:56:28,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 628/7350 [00:27<05:10, 21.64it/s]2022-02-22 21:56:28,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:28,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 632/7350 [00:28<04:38, 24.16it/s]2022-02-22 21:56:29,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 635/7350 [00:28<05:15, 21.29it/s]2022-02-22 21:56:29,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 639/7350 [00:28<04:47, 23.36it/s]2022-02-22 21:56:29,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 642/7350 [00:28<04:32, 24.59it/s]2022-02-22 21:56:29,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 645/7350 [00:28<04:41, 23.81it/s]2022-02-22 21:56:29,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 648/7350 [00:28<05:46, 19.37it/s]2022-02-22 21:56:29,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:29,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 653/7350 [00:29<04:41, 23.80it/s]2022-02-22 21:56:29,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 657/7350 [00:29<04:44, 23.56it/s]2022-02-22 21:56:30,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 660/7350 [00:29<04:32, 24.52it/s]2022-02-22 21:56:30,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 663/7350 [00:29<04:47, 23.27it/s]2022-02-22 21:56:30,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 666/7350 [00:29<05:09, 21.56it/s]2022-02-22 21:56:30,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 669/7350 [00:29<05:02, 22.07it/s]2022-02-22 21:56:30,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 674/7350 [00:29<04:33, 24.42it/s]2022-02-22 21:56:30,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:30,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 678/7350 [00:30<04:33, 24.43it/s]2022-02-22 21:56:31,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 681/7350 [00:30<05:18, 20.94it/s]2022-02-22 21:56:31,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 686/7350 [00:30<04:11, 26.49it/s]2022-02-22 21:56:31,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 689/7350 [00:30<04:37, 24.01it/s]2022-02-22 21:56:31,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▊                                    | 692/7350 [00:30<04:59, 22.21it/s]2022-02-22 21:56:31,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▊                                    | 696/7350 [00:30<04:28, 24.78it/s]2022-02-22 21:56:31,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 699/7350 [00:30<04:24, 25.16it/s]2022-02-22 21:56:31,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:31,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 702/7350 [00:31<05:12, 21.26it/s]2022-02-22 21:56:32,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 706/7350 [00:31<04:36, 24.02it/s]2022-02-22 21:56:32,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 709/7350 [00:31<04:22, 25.34it/s]2022-02-22 21:56:32,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 712/7350 [00:31<05:24, 20.48it/s]2022-02-22 21:56:32,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 717/7350 [00:31<04:49, 22.88it/s]2022-02-22 21:56:32,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 720/7350 [00:31<05:04, 21.80it/s]2022-02-22 21:56:32,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:32,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 724/7350 [00:32<04:45, 23.23it/s]2022-02-22 21:56:33,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 727/7350 [00:32<04:52, 22.64it/s]2022-02-22 21:56:33,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 730/7350 [00:32<05:22, 20.53it/s]2022-02-22 21:56:33,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 736/7350 [00:32<04:03, 27.18it/s]2022-02-22 21:56:33,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 739/7350 [00:32<04:26, 24.81it/s]2022-02-22 21:56:33,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 742/7350 [00:32<04:40, 23.57it/s]2022-02-22 21:56:33,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:33,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 747/7350 [00:33<05:05, 21.59it/s]2022-02-22 21:56:34,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 751/7350 [00:33<04:38, 23.72it/s]2022-02-22 21:56:34,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 756/7350 [00:33<03:48, 28.88it/s]2022-02-22 21:56:34,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 760/7350 [00:33<04:59, 22.03it/s]2022-02-22 21:56:34,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 766/7350 [00:33<04:21, 25.16it/s]2022-02-22 21:56:34,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 769/7350 [00:33<04:34, 24.02it/s]2022-02-22 21:56:34,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:34,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 773/7350 [00:34<04:09, 26.36it/s]2022-02-22 21:56:35,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 776/7350 [00:34<05:29, 19.95it/s]2022-02-22 21:56:35,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 781/7350 [00:34<04:23, 24.97it/s]2022-02-22 21:56:35,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 786/7350 [00:34<05:09, 21.21it/s]2022-02-22 21:56:35,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 791/7350 [00:34<04:21, 25.05it/s]2022-02-22 21:56:35,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:35,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 796/7350 [00:35<04:56, 22.09it/s]2022-02-22 21:56:36,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 800/7350 [00:35<04:49, 22.60it/s]2022-02-22 21:56:36,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 806/7350 [00:35<05:00, 21.79it/s]2022-02-22 21:56:36,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 810/7350 [00:35<04:27, 24.42it/s]2022-02-22 21:56:36,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 814/7350 [00:35<04:07, 26.43it/s]2022-02-22 21:56:36,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 817/7350 [00:35<04:32, 24.01it/s]2022-02-22 21:56:36,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:36,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 821/7350 [00:36<04:31, 24.01it/s]2022-02-22 21:56:37,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 825/7350 [00:36<04:17, 25.38it/s]2022-02-22 21:56:37,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 828/7350 [00:36<04:33, 23.86it/s]2022-02-22 21:56:37,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 831/7350 [00:36<04:43, 22.98it/s]2022-02-22 21:56:37,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 835/7350 [00:36<04:33, 23.83it/s]2022-02-22 21:56:37,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 838/7350 [00:36<04:33, 23.81it/s]2022-02-22 21:56:37,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 841/7350 [00:36<04:36, 23.57it/s]2022-02-22 21:56:37,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:37,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 845/7350 [00:37<04:14, 25.58it/s]2022-02-22 21:56:38,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▌                                   | 848/7350 [00:37<04:30, 24.04it/s]2022-02-22 21:56:38,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 851/7350 [00:37<04:32, 23.86it/s]2022-02-22 21:56:38,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 855/7350 [00:37<04:20, 24.97it/s]2022-02-22 21:56:38,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 858/7350 [00:37<05:11, 20.82it/s]2022-02-22 21:56:38,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 862/7350 [00:37<04:28, 24.16it/s]2022-02-22 21:56:38,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 866/7350 [00:37<04:08, 26.08it/s]2022-02-22 21:56:38,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:38,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 869/7350 [00:38<05:16, 20.49it/s]2022-02-22 21:56:39,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 875/7350 [00:38<04:04, 26.45it/s]2022-02-22 21:56:39,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 878/7350 [00:38<05:22, 20.06it/s]2022-02-22 21:56:39,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 885/7350 [00:38<04:44, 22.70it/s]2022-02-22 21:56:39,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:39,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 888/7350 [00:39<05:13, 20.59it/s]2022-02-22 21:56:40,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 895/7350 [00:39<04:14, 25.40it/s]2022-02-22 21:56:40,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 898/7350 [00:39<04:29, 23.92it/s]2022-02-22 21:56:40,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 901/7350 [00:39<04:28, 24.04it/s]2022-02-22 21:56:40,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 905/7350 [00:39<04:39, 23.09it/s]2022-02-22 21:56:40,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 909/7350 [00:39<04:25, 24.27it/s]2022-02-22 21:56:40,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:40,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 914/7350 [00:40<04:05, 26.25it/s]2022-02-22 21:56:41,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 917/7350 [00:40<05:24, 19.83it/s]2022-02-22 21:56:41,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 924/7350 [00:40<04:15, 25.18it/s]2022-02-22 21:56:41,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 927/7350 [00:40<04:19, 24.75it/s]2022-02-22 21:56:41,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 931/7350 [00:40<04:00, 26.70it/s]2022-02-22 21:56:41,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 934/7350 [00:40<04:36, 23.21it/s]2022-02-22 21:56:41,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:41,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 937/7350 [00:41<04:33, 23.48it/s]2022-02-22 21:56:42,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 942/7350 [00:41<04:00, 26.60it/s]2022-02-22 21:56:42,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 945/7350 [00:41<04:53, 21.80it/s]2022-02-22 21:56:42,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 948/7350 [00:41<05:10, 20.63it/s]2022-02-22 21:56:42,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 954/7350 [00:41<04:44, 22.52it/s]2022-02-22 21:56:42,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:42,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 957/7350 [00:42<05:08, 20.70it/s]2022-02-22 21:56:42,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 963/7350 [00:42<04:01, 26.50it/s]2022-02-22 21:56:43,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 966/7350 [00:42<04:42, 22.58it/s]2022-02-22 21:56:43,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 969/7350 [00:42<04:37, 22.99it/s]2022-02-22 21:56:43,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 973/7350 [00:42<04:12, 25.24it/s]2022-02-22 21:56:43,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 976/7350 [00:42<04:44, 22.44it/s]2022-02-22 21:56:43,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 979/7350 [00:42<04:41, 22.63it/s]2022-02-22 21:56:43,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:43,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 983/7350 [00:43<04:20, 24.40it/s]2022-02-22 21:56:44,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▎                                  | 986/7350 [00:43<04:32, 23.38it/s]2022-02-22 21:56:44,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▍                                  | 989/7350 [00:43<05:00, 21.20it/s]2022-02-22 21:56:44,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 994/7350 [00:43<03:52, 27.33it/s]2022-02-22 21:56:44,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 998/7350 [00:43<05:29, 19.29it/s]2022-02-22 21:56:44,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1005/7350 [00:44<04:34, 23.10it/s]2022-02-22 21:56:44,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:44,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1008/7350 [00:44<04:35, 23.03it/s]2022-02-22 21:56:45,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▎                                 | 1011/7350 [00:44<04:32, 23.24it/s]2022-02-22 21:56:45,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1014/7350 [00:44<04:18, 24.52it/s]2022-02-22 21:56:45,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1017/7350 [00:44<05:21, 19.72it/s]2022-02-22 21:56:45,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1021/7350 [00:44<05:17, 19.92it/s]2022-02-22 21:56:45,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1026/7350 [00:44<04:06, 25.64it/s]2022-02-22 21:56:45,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:45,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1030/7350 [00:45<04:58, 21.15it/s]2022-02-22 21:56:46,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                 | 1034/7350 [00:45<04:51, 21.68it/s]2022-02-22 21:56:46,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1037/7350 [00:45<05:32, 18.98it/s]2022-02-22 21:56:46,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1045/7350 [00:45<04:15, 24.72it/s]2022-02-22 21:56:46,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1048/7350 [00:45<04:41, 22.36it/s]2022-02-22 21:56:46,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:46,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1051/7350 [00:46<04:41, 22.37it/s]2022-02-22 21:56:47,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                 | 1058/7350 [00:46<04:35, 22.85it/s]2022-02-22 21:56:47,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▋                                 | 1062/7350 [00:46<04:05, 25.62it/s]2022-02-22 21:56:47,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▋                                 | 1065/7350 [00:46<04:12, 24.90it/s]2022-02-22 21:56:47,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1068/7350 [00:46<04:17, 24.41it/s]2022-02-22 21:56:47,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1071/7350 [00:46<04:56, 21.21it/s]2022-02-22 21:56:47,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:47,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1076/7350 [00:47<04:12, 24.85it/s]2022-02-22 21:56:48,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1079/7350 [00:47<04:49, 21.63it/s]2022-02-22 21:56:48,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▋                                 | 1082/7350 [00:47<04:43, 22.08it/s]2022-02-22 21:56:48,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1086/7350 [00:47<04:20, 24.09it/s]2022-02-22 21:56:48,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1090/7350 [00:47<04:04, 25.62it/s]2022-02-22 21:56:48,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1093/7350 [00:47<04:15, 24.51it/s]2022-02-22 21:56:48,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:48,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1097/7350 [00:48<04:22, 23.82it/s]2022-02-22 21:56:48,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1101/7350 [00:48<05:09, 20.17it/s]2022-02-22 21:56:49,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▊                                 | 1107/7350 [00:48<04:10, 24.89it/s]2022-02-22 21:56:49,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1110/7350 [00:48<04:10, 24.95it/s]2022-02-22 21:56:49,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1113/7350 [00:48<04:41, 22.14it/s]2022-02-22 21:56:49,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1117/7350 [00:48<04:21, 23.85it/s]2022-02-22 21:56:49,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:49,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1120/7350 [00:49<05:11, 20.01it/s]2022-02-22 21:56:50,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1125/7350 [00:49<04:36, 22.47it/s]2022-02-22 21:56:50,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                 | 1130/7350 [00:49<04:01, 25.75it/s]2022-02-22 21:56:50,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                 | 1133/7350 [00:49<04:36, 22.48it/s]2022-02-22 21:56:50,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                 | 1136/7350 [00:49<05:07, 20.22it/s]2022-02-22 21:56:50,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1142/7350 [00:49<03:46, 27.47it/s]2022-02-22 21:56:50,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:50,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1146/7350 [00:50<04:41, 22.01it/s]2022-02-22 21:56:51,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1149/7350 [00:50<04:34, 22.55it/s]2022-02-22 21:56:51,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████                                 | 1153/7350 [00:50<04:00, 25.72it/s]2022-02-22 21:56:51,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1156/7350 [00:50<04:28, 23.10it/s]2022-02-22 21:56:51,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1159/7350 [00:50<04:20, 23.73it/s]2022-02-22 21:56:51,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1162/7350 [00:50<04:19, 23.88it/s]2022-02-22 21:56:51,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1166/7350 [00:51<04:29, 22.92it/s]2022-02-22 21:56:51,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:51,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1169/7350 [00:51<04:36, 22.38it/s]2022-02-22 21:56:52,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1172/7350 [00:51<04:20, 23.75it/s]2022-02-22 21:56:52,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                | 1175/7350 [00:51<04:16, 24.09it/s]2022-02-22 21:56:52,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1178/7350 [00:51<04:26, 23.16it/s]2022-02-22 21:56:52,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1181/7350 [00:51<04:32, 22.67it/s]2022-02-22 21:56:52,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1184/7350 [00:51<04:40, 21.97it/s]2022-02-22 21:56:52,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1187/7350 [00:51<04:37, 22.21it/s]2022-02-22 21:56:52,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:52,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1190/7350 [00:52<04:27, 23.07it/s]2022-02-22 21:56:53,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1193/7350 [00:52<04:45, 21.60it/s]2022-02-22 21:56:53,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1196/7350 [00:52<04:55, 20.83it/s]2022-02-22 21:56:53,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                | 1201/7350 [00:52<03:53, 26.29it/s]2022-02-22 21:56:53,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                | 1204/7350 [00:52<04:29, 22.77it/s]2022-02-22 21:56:53,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                | 1207/7350 [00:52<04:44, 21.57it/s]2022-02-22 21:56:53,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:53,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                | 1210/7350 [00:53<05:13, 19.59it/s]2022-02-22 21:56:54,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1216/7350 [00:53<04:21, 23.42it/s]2022-02-22 21:56:54,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1220/7350 [00:53<04:02, 25.28it/s]2022-02-22 21:56:54,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▍                                | 1223/7350 [00:53<04:15, 24.02it/s]2022-02-22 21:56:54,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1226/7350 [00:53<04:03, 25.20it/s]2022-02-22 21:56:54,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1229/7350 [00:53<05:00, 20.37it/s]2022-02-22 21:56:54,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1232/7350 [00:54<05:23, 18.91it/s]2022-02-22 21:56:54,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:54,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1238/7350 [00:54<03:59, 25.54it/s]2022-02-22 21:56:55,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1241/7350 [00:54<04:05, 24.87it/s]2022-02-22 21:56:55,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1244/7350 [00:54<04:06, 24.73it/s]2022-02-22 21:56:55,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▌                                | 1247/7350 [00:54<04:36, 22.08it/s]2022-02-22 21:56:55,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1250/7350 [00:54<04:25, 23.02it/s]2022-02-22 21:56:55,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1253/7350 [00:54<04:39, 21.80it/s]2022-02-22 21:56:55,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1256/7350 [00:54<04:31, 22.47it/s]2022-02-22 21:56:55,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:55,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1260/7350 [00:55<04:52, 20.86it/s]2022-02-22 21:56:56,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1263/7350 [00:55<04:36, 21.99it/s]2022-02-22 21:56:56,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1266/7350 [00:55<05:27, 18.60it/s]2022-02-22 21:56:56,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                | 1271/7350 [00:55<04:08, 24.44it/s]2022-02-22 21:56:56,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1274/7350 [00:55<04:06, 24.63it/s]2022-02-22 21:56:56,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1277/7350 [00:55<04:19, 23.39it/s]2022-02-22 21:56:56,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:56,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1281/7350 [00:56<04:24, 22.94it/s]2022-02-22 21:56:57,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▊                                | 1284/7350 [00:56<04:09, 24.36it/s]2022-02-22 21:56:57,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▊                                | 1287/7350 [00:56<04:09, 24.32it/s]2022-02-22 21:56:57,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▊                                | 1291/7350 [00:56<04:02, 24.98it/s]2022-02-22 21:56:57,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▊                                | 1294/7350 [00:56<04:00, 25.13it/s]2022-02-22 21:56:57,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1297/7350 [00:56<04:28, 22.54it/s]2022-02-22 21:56:57,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1300/7350 [00:56<04:37, 21.83it/s]2022-02-22 21:56:57,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:57,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1304/7350 [00:57<04:35, 21.92it/s]2022-02-22 21:56:58,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1308/7350 [00:57<04:04, 24.69it/s]2022-02-22 21:56:58,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1311/7350 [00:57<04:14, 23.70it/s]2022-02-22 21:56:58,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1314/7350 [00:57<04:29, 22.40it/s]2022-02-22 21:56:58,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|██████▉                                | 1318/7350 [00:57<04:33, 22.04it/s]2022-02-22 21:56:58,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1323/7350 [00:57<04:18, 23.28it/s]2022-02-22 21:56:58,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:58,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1326/7350 [00:58<04:29, 22.33it/s]2022-02-22 21:56:58,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1329/7350 [00:58<05:13, 19.23it/s]2022-02-22 21:56:59,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1333/7350 [00:58<04:31, 22.12it/s]2022-02-22 21:56:59,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1339/7350 [00:58<04:13, 23.74it/s]2022-02-22 21:56:59,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                | 1342/7350 [00:58<04:22, 22.93it/s]2022-02-22 21:56:59,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1345/7350 [00:58<04:50, 20.69it/s]2022-02-22 21:56:59,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:56:59,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1350/7350 [00:59<04:19, 23.16it/s]2022-02-22 21:57:00,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1353/7350 [00:59<04:22, 22.87it/s]2022-02-22 21:57:00,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                               | 1357/7350 [00:59<04:27, 22.44it/s]2022-02-22 21:57:00,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▏                               | 1360/7350 [00:59<04:37, 21.59it/s]2022-02-22 21:57:00,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▏                               | 1366/7350 [00:59<03:46, 26.36it/s]2022-02-22 21:57:00,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1369/7350 [00:59<04:06, 24.31it/s]2022-02-22 21:57:00,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1372/7350 [01:00<04:08, 24.07it/s]2022-02-22 21:57:00,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:00,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1377/7350 [01:00<03:34, 27.90it/s]2022-02-22 21:57:01,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1380/7350 [01:00<04:52, 20.43it/s]2022-02-22 21:57:01,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1385/7350 [01:00<03:54, 25.47it/s]2022-02-22 21:57:01,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▎                               | 1388/7350 [01:00<04:02, 24.55it/s]2022-02-22 21:57:01,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1391/7350 [01:00<04:38, 21.36it/s]2022-02-22 21:57:01,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:01,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1397/7350 [01:00<03:29, 28.40it/s]2022-02-22 21:57:02,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1401/7350 [01:01<04:50, 20.51it/s]2022-02-22 21:57:02,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1405/7350 [01:01<04:09, 23.85it/s]2022-02-22 21:57:02,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1409/7350 [01:01<04:15, 23.26it/s]2022-02-22 21:57:02,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                               | 1412/7350 [01:01<04:47, 20.63it/s]2022-02-22 21:57:02,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1417/7350 [01:01<03:56, 25.12it/s]2022-02-22 21:57:02,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:02,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1420/7350 [01:02<04:00, 24.62it/s]2022-02-22 21:57:03,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1425/7350 [01:02<03:58, 24.88it/s]2022-02-22 21:57:03,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1428/7350 [01:02<03:59, 24.75it/s]2022-02-22 21:57:03,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▌                               | 1431/7350 [01:02<03:49, 25.81it/s]2022-02-22 21:57:03,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▌                               | 1434/7350 [01:02<04:16, 23.05it/s]2022-02-22 21:57:03,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▌                               | 1437/7350 [01:02<04:17, 22.93it/s]2022-02-22 21:57:03,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1440/7350 [01:02<04:10, 23.56it/s]2022-02-22 21:57:03,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:03,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1443/7350 [01:03<05:07, 19.19it/s]2022-02-22 21:57:04,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1450/7350 [01:03<03:42, 26.48it/s]2022-02-22 21:57:04,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1453/7350 [01:03<04:30, 21.77it/s]2022-02-22 21:57:04,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▋                               | 1458/7350 [01:03<03:54, 25.09it/s]2022-02-22 21:57:04,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1461/7350 [01:03<03:50, 25.54it/s]2022-02-22 21:57:04,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:04,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1464/7350 [01:04<05:19, 18.41it/s]2022-02-22 21:57:04,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1470/7350 [01:04<03:48, 25.72it/s]2022-02-22 21:57:05,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1474/7350 [01:04<04:51, 20.18it/s]2022-02-22 21:57:05,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1479/7350 [01:04<04:29, 21.82it/s]2022-02-22 21:57:05,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                               | 1484/7350 [01:04<04:34, 21.37it/s]2022-02-22 21:57:05,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1490/7350 [01:04<03:31, 27.74it/s]2022-02-22 21:57:05,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:05,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1494/7350 [01:05<03:18, 29.56it/s]2022-02-22 21:57:06,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1498/7350 [01:05<03:59, 24.42it/s]2022-02-22 21:57:06,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1501/7350 [01:05<04:11, 23.24it/s]2022-02-22 21:57:06,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                               | 1505/7350 [01:05<04:14, 22.99it/s]2022-02-22 21:57:06,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1508/7350 [01:05<04:05, 23.76it/s]2022-02-22 21:57:06,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1512/7350 [01:05<04:11, 23.24it/s]2022-02-22 21:57:06,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:06,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1515/7350 [01:06<04:27, 21.78it/s]2022-02-22 21:57:07,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1519/7350 [01:06<03:48, 25.47it/s]2022-02-22 21:57:07,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1523/7350 [01:06<04:19, 22.41it/s]2022-02-22 21:57:07,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1526/7350 [01:06<04:27, 21.79it/s]2022-02-22 21:57:07,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████                               | 1531/7350 [01:06<03:49, 25.31it/s]2022-02-22 21:57:07,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1534/7350 [01:07<04:54, 19.72it/s]2022-02-22 21:57:07,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:07,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1541/7350 [01:07<03:21, 28.76it/s]2022-02-22 21:57:08,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1545/7350 [01:07<04:08, 23.39it/s]2022-02-22 21:57:08,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                              | 1551/7350 [01:07<03:33, 27.17it/s]2022-02-22 21:57:08,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1555/7350 [01:07<03:59, 24.23it/s]2022-02-22 21:57:08,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1559/7350 [01:07<03:43, 25.92it/s]2022-02-22 21:57:08,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:08,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1562/7350 [01:08<05:00, 19.29it/s]2022-02-22 21:57:09,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1568/7350 [01:08<03:43, 25.85it/s]2022-02-22 21:57:09,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1572/7350 [01:08<04:15, 22.59it/s]2022-02-22 21:57:09,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                              | 1575/7350 [01:08<04:53, 19.71it/s]2022-02-22 21:57:09,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1581/7350 [01:08<04:10, 23.03it/s]2022-02-22 21:57:09,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:09,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1584/7350 [01:09<04:26, 21.61it/s]2022-02-22 21:57:10,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1591/7350 [01:09<04:01, 23.80it/s]2022-02-22 21:57:10,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1594/7350 [01:09<04:13, 22.71it/s]2022-02-22 21:57:10,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▍                              | 1599/7350 [01:09<03:33, 26.91it/s]2022-02-22 21:57:10,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1602/7350 [01:09<03:59, 23.98it/s]2022-02-22 21:57:10,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1605/7350 [01:09<04:02, 23.68it/s]2022-02-22 21:57:10,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:10,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1608/7350 [01:10<04:07, 23.22it/s]2022-02-22 21:57:10,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1612/7350 [01:10<04:04, 23.50it/s]2022-02-22 21:57:11,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1615/7350 [01:10<04:18, 22.18it/s]2022-02-22 21:57:11,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1618/7350 [01:10<04:02, 23.61it/s]2022-02-22 21:57:11,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1622/7350 [01:10<03:29, 27.32it/s]2022-02-22 21:57:11,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                              | 1625/7350 [01:10<04:49, 19.76it/s]2022-02-22 21:57:11,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1629/7350 [01:10<04:02, 23.58it/s]2022-02-22 21:57:11,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:11,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1633/7350 [01:11<04:24, 21.65it/s]2022-02-22 21:57:12,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1636/7350 [01:11<04:26, 21.44it/s]2022-02-22 21:57:12,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1641/7350 [01:11<03:36, 26.34it/s]2022-02-22 21:57:12,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1644/7350 [01:11<04:54, 19.38it/s]2022-02-22 21:57:12,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                              | 1649/7350 [01:11<04:23, 21.61it/s]2022-02-22 21:57:12,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:12,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▊                              | 1652/7350 [01:12<04:21, 21.75it/s]2022-02-22 21:57:12,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1655/7350 [01:12<04:14, 22.42it/s]2022-02-22 21:57:13,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1660/7350 [01:12<03:36, 26.32it/s]2022-02-22 21:57:13,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1663/7350 [01:12<04:36, 20.59it/s]2022-02-22 21:57:13,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1668/7350 [01:12<03:57, 23.90it/s]2022-02-22 21:57:13,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▊                              | 1672/7350 [01:12<03:38, 25.98it/s]2022-02-22 21:57:13,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:13,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1675/7350 [01:13<04:42, 20.10it/s]2022-02-22 21:57:14,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1681/7350 [01:13<03:32, 26.62it/s]2022-02-22 21:57:14,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1685/7350 [01:13<04:22, 21.62it/s]2022-02-22 21:57:14,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1689/7350 [01:13<04:15, 22.17it/s]2022-02-22 21:57:14,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|████████▉                              | 1693/7350 [01:13<04:32, 20.75it/s]2022-02-22 21:57:14,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1699/7350 [01:13<03:29, 26.92it/s]2022-02-22 21:57:14,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:14,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1703/7350 [01:14<04:21, 21.63it/s]2022-02-22 21:57:15,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1707/7350 [01:14<04:02, 23.24it/s]2022-02-22 21:57:15,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1712/7350 [01:14<03:51, 24.34it/s]2022-02-22 21:57:15,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1715/7350 [01:14<03:51, 24.31it/s]2022-02-22 21:57:15,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                              | 1718/7350 [01:14<03:56, 23.79it/s]2022-02-22 21:57:15,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:15,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                             | 1722/7350 [01:15<04:21, 21.51it/s]2022-02-22 21:57:16,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                             | 1727/7350 [01:15<03:44, 25.01it/s]2022-02-22 21:57:16,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1730/7350 [01:15<04:40, 20.07it/s]2022-02-22 21:57:16,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1736/7350 [01:15<03:25, 27.37it/s]2022-02-22 21:57:16,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1740/7350 [01:15<03:44, 24.99it/s]2022-02-22 21:57:16,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▏                             | 1743/7350 [01:15<04:34, 20.41it/s]2022-02-22 21:57:16,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:16,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1750/7350 [01:16<03:31, 26.51it/s]2022-02-22 21:57:17,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1754/7350 [01:16<03:58, 23.50it/s]2022-02-22 21:57:17,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1757/7350 [01:16<04:12, 22.15it/s]2022-02-22 21:57:17,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1762/7350 [01:16<03:53, 23.96it/s]2022-02-22 21:57:17,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▎                             | 1765/7350 [01:16<03:53, 23.94it/s]2022-02-22 21:57:17,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1769/7350 [01:16<03:37, 25.72it/s]2022-02-22 21:57:17,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:17,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1772/7350 [01:17<04:19, 21.52it/s]2022-02-22 21:57:18,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1778/7350 [01:17<03:55, 23.68it/s]2022-02-22 21:57:18,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1782/7350 [01:17<04:01, 23.06it/s]2022-02-22 21:57:18,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1785/7350 [01:17<04:25, 20.93it/s]2022-02-22 21:57:18,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                             | 1790/7350 [01:17<03:42, 25.03it/s]2022-02-22 21:57:18,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:18,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                             | 1793/7350 [01:18<03:41, 25.05it/s]2022-02-22 21:57:18,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                             | 1796/7350 [01:18<03:59, 23.23it/s]2022-02-22 21:57:19,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                             | 1799/7350 [01:18<04:23, 21.04it/s]2022-02-22 21:57:19,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▌                             | 1804/7350 [01:18<03:51, 23.93it/s]2022-02-22 21:57:19,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▌                             | 1807/7350 [01:18<04:33, 20.29it/s]2022-02-22 21:57:19,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▌                             | 1811/7350 [01:18<04:37, 19.97it/s]2022-02-22 21:57:19,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:19,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1817/7350 [01:19<04:11, 22.00it/s]2022-02-22 21:57:20,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1822/7350 [01:19<03:29, 26.37it/s]2022-02-22 21:57:20,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1825/7350 [01:19<03:50, 23.98it/s]2022-02-22 21:57:20,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1828/7350 [01:19<04:00, 22.96it/s]2022-02-22 21:57:20,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1832/7350 [01:19<03:31, 26.04it/s]2022-02-22 21:57:20,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▋                             | 1836/7350 [01:19<03:15, 28.14it/s]2022-02-22 21:57:20,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1839/7350 [01:20<04:05, 22.41it/s]2022-02-22 21:57:20,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:20,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1842/7350 [01:20<04:40, 19.62it/s]2022-02-22 21:57:21,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1848/7350 [01:20<03:22, 27.18it/s]2022-02-22 21:57:21,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1852/7350 [01:20<03:45, 24.34it/s]2022-02-22 21:57:21,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1856/7350 [01:20<03:54, 23.42it/s]2022-02-22 21:57:21,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▊                             | 1859/7350 [01:20<04:01, 22.77it/s]2022-02-22 21:57:21,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:21,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1864/7350 [01:20<03:18, 27.61it/s]2022-02-22 21:57:22,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1868/7350 [01:21<03:15, 28.11it/s]2022-02-22 21:57:22,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                             | 1872/7350 [01:21<03:27, 26.39it/s]2022-02-22 21:57:22,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|█████████▉                             | 1875/7350 [01:21<03:56, 23.18it/s]2022-02-22 21:57:22,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|█████████▉                             | 1879/7350 [01:21<03:30, 26.04it/s]2022-02-22 21:57:22,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|█████████▉                             | 1882/7350 [01:21<03:49, 23.79it/s]2022-02-22 21:57:22,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1885/7350 [01:21<04:02, 22.52it/s]2022-02-22 21:57:22,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:22,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1889/7350 [01:22<03:34, 25.41it/s]2022-02-22 21:57:22,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1892/7350 [01:22<04:01, 22.59it/s]2022-02-22 21:57:23,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1896/7350 [01:22<04:22, 20.81it/s]2022-02-22 21:57:23,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1901/7350 [01:22<03:42, 24.46it/s]2022-02-22 21:57:23,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1904/7350 [01:22<03:32, 25.58it/s]2022-02-22 21:57:23,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████                             | 1907/7350 [01:22<03:57, 22.89it/s]2022-02-22 21:57:23,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1911/7350 [01:22<03:50, 23.55it/s]2022-02-22 21:57:23,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:23,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1914/7350 [01:23<03:57, 22.85it/s]2022-02-22 21:57:24,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1917/7350 [01:23<04:02, 22.37it/s]2022-02-22 21:57:24,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1921/7350 [01:23<03:31, 25.69it/s]2022-02-22 21:57:24,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1924/7350 [01:23<03:47, 23.82it/s]2022-02-22 21:57:24,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1927/7350 [01:23<03:59, 22.61it/s]2022-02-22 21:57:24,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                            | 1931/7350 [01:23<03:34, 25.23it/s]2022-02-22 21:57:24,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1934/7350 [01:23<04:01, 22.44it/s]2022-02-22 21:57:24,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:24,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1937/7350 [01:24<04:15, 21.21it/s]2022-02-22 21:57:25,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1941/7350 [01:24<03:42, 24.27it/s]2022-02-22 21:57:25,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1944/7350 [01:24<03:53, 23.18it/s]2022-02-22 21:57:25,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                            | 1947/7350 [01:24<04:13, 21.28it/s]2022-02-22 21:57:25,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▎                            | 1952/7350 [01:24<03:26, 26.11it/s]2022-02-22 21:57:25,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▎                            | 1955/7350 [01:24<04:40, 19.24it/s]2022-02-22 21:57:25,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:25,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1958/7350 [01:25<04:27, 20.19it/s]2022-02-22 21:57:26,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1964/7350 [01:25<03:11, 28.10it/s]2022-02-22 21:57:26,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1968/7350 [01:25<03:33, 25.23it/s]2022-02-22 21:57:26,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1971/7350 [01:25<03:46, 23.72it/s]2022-02-22 21:57:26,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1975/7350 [01:25<03:43, 24.03it/s]2022-02-22 21:57:26,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▍                            | 1978/7350 [01:25<03:40, 24.35it/s]2022-02-22 21:57:26,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:26,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1981/7350 [01:25<03:38, 24.57it/s]2022-02-22 21:57:26,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1985/7350 [01:26<03:44, 23.88it/s]2022-02-22 21:57:27,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1988/7350 [01:26<03:57, 22.62it/s]2022-02-22 21:57:27,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1991/7350 [01:26<03:42, 24.10it/s]2022-02-22 21:57:27,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1994/7350 [01:26<03:59, 22.35it/s]2022-02-22 21:57:27,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 1997/7350 [01:26<04:49, 18.46it/s]2022-02-22 21:57:27,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:27,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▌                            | 2002/7350 [01:27<04:44, 18.77it/s]2022-02-22 21:57:28,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2009/7350 [01:27<03:29, 25.50it/s]2022-02-22 21:57:28,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2012/7350 [01:27<03:56, 22.59it/s]2022-02-22 21:57:28,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2016/7350 [01:27<04:14, 20.95it/s]2022-02-22 21:57:28,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                            | 2020/7350 [01:27<04:08, 21.44it/s]2022-02-22 21:57:28,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:28,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▋                            | 2023/7350 [01:27<04:03, 21.89it/s]2022-02-22 21:57:28,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2028/7350 [01:28<03:47, 23.43it/s]2022-02-22 21:57:29,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2031/7350 [01:28<04:15, 20.85it/s]2022-02-22 21:57:29,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2034/7350 [01:28<04:13, 21.01it/s]2022-02-22 21:57:29,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2038/7350 [01:28<03:38, 24.28it/s]2022-02-22 21:57:29,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2041/7350 [01:28<04:26, 19.94it/s]2022-02-22 21:57:29,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:29,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▊                            | 2048/7350 [01:29<04:08, 21.36it/s]2022-02-22 21:57:30,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2054/7350 [01:29<03:16, 26.96it/s]2022-02-22 21:57:30,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2058/7350 [01:29<03:43, 23.66it/s]2022-02-22 21:57:30,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2061/7350 [01:29<03:38, 24.18it/s]2022-02-22 21:57:30,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2065/7350 [01:29<03:21, 26.23it/s]2022-02-22 21:57:30,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2068/7350 [01:29<03:48, 23.16it/s]2022-02-22 21:57:30,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|██████████▉                            | 2071/7350 [01:30<04:04, 21.62it/s]2022-02-22 21:57:30,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:30,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2075/7350 [01:30<03:47, 23.18it/s]2022-02-22 21:57:31,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2079/7350 [01:30<04:50, 18.17it/s]2022-02-22 21:57:31,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2086/7350 [01:30<03:15, 26.87it/s]2022-02-22 21:57:31,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2090/7350 [01:30<03:42, 23.62it/s]2022-02-22 21:57:31,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:31,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                            | 2093/7350 [01:30<03:51, 22.71it/s]2022-02-22 21:57:31,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2097/7350 [01:31<03:22, 25.92it/s]2022-02-22 21:57:32,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2101/7350 [01:31<03:47, 23.12it/s]2022-02-22 21:57:32,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2105/7350 [01:31<03:53, 22.49it/s]2022-02-22 21:57:32,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2108/7350 [01:31<04:11, 20.87it/s]2022-02-22 21:57:32,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2111/7350 [01:31<04:07, 21.16it/s]2022-02-22 21:57:32,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2116/7350 [01:31<03:22, 25.85it/s]2022-02-22 21:57:32,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:32,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▏                           | 2119/7350 [01:32<04:05, 21.29it/s]2022-02-22 21:57:33,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2122/7350 [01:32<03:58, 21.96it/s]2022-02-22 21:57:33,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2128/7350 [01:32<03:20, 26.00it/s]2022-02-22 21:57:33,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2131/7350 [01:32<04:25, 19.68it/s]2022-02-22 21:57:33,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2138/7350 [01:32<03:27, 25.10it/s]2022-02-22 21:57:33,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:33,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▎                           | 2141/7350 [01:33<04:07, 21.05it/s]2022-02-22 21:57:34,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2144/7350 [01:33<03:52, 22.37it/s]2022-02-22 21:57:34,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2149/7350 [01:33<03:08, 27.65it/s]2022-02-22 21:57:34,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2153/7350 [01:33<03:44, 23.11it/s]2022-02-22 21:57:34,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2157/7350 [01:33<03:39, 23.63it/s]2022-02-22 21:57:34,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2162/7350 [01:33<03:31, 24.48it/s]2022-02-22 21:57:34,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:34,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                           | 2165/7350 [01:34<03:43, 23.23it/s]2022-02-22 21:57:35,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▌                           | 2168/7350 [01:34<03:40, 23.51it/s]2022-02-22 21:57:35,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2172/7350 [01:34<03:37, 23.76it/s]2022-02-22 21:57:35,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2176/7350 [01:34<03:23, 25.36it/s]2022-02-22 21:57:35,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2179/7350 [01:34<03:44, 23.07it/s]2022-02-22 21:57:35,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2182/7350 [01:34<03:40, 23.45it/s]2022-02-22 21:57:35,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2186/7350 [01:34<03:33, 24.18it/s]2022-02-22 21:57:35,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:35,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▌                           | 2190/7350 [01:35<03:27, 24.88it/s]2022-02-22 21:57:36,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2193/7350 [01:35<03:54, 21.99it/s]2022-02-22 21:57:36,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2198/7350 [01:35<03:13, 26.59it/s]2022-02-22 21:57:36,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2201/7350 [01:35<03:40, 23.40it/s]2022-02-22 21:57:36,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2204/7350 [01:35<03:42, 23.12it/s]2022-02-22 21:57:36,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2209/7350 [01:35<03:29, 24.53it/s]2022-02-22 21:57:36,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:36,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▋                           | 2212/7350 [01:36<04:12, 20.32it/s]2022-02-22 21:57:37,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2218/7350 [01:36<03:04, 27.76it/s]2022-02-22 21:57:37,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2222/7350 [01:36<03:51, 22.20it/s]2022-02-22 21:57:37,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2228/7350 [01:36<03:48, 22.43it/s]2022-02-22 21:57:37,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                           | 2232/7350 [01:36<03:51, 22.13it/s]2022-02-22 21:57:37,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:37,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▉                           | 2239/7350 [01:37<03:15, 26.13it/s]2022-02-22 21:57:38,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2242/7350 [01:37<03:37, 23.50it/s]2022-02-22 21:57:38,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2245/7350 [01:37<03:47, 22.42it/s]2022-02-22 21:57:38,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2249/7350 [01:37<03:21, 25.33it/s]2022-02-22 21:57:38,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2252/7350 [01:37<03:43, 22.79it/s]2022-02-22 21:57:38,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2255/7350 [01:37<03:59, 21.28it/s]2022-02-22 21:57:38,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:38,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|███████████▉                           | 2260/7350 [01:38<03:58, 21.31it/s]2022-02-22 21:57:39,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2264/7350 [01:38<03:46, 22.44it/s]2022-02-22 21:57:39,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2269/7350 [01:38<03:35, 23.53it/s]2022-02-22 21:57:39,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2272/7350 [01:38<04:01, 21.05it/s]2022-02-22 21:57:39,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2278/7350 [01:38<02:59, 28.23it/s]2022-02-22 21:57:39,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:39,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████                           | 2282/7350 [01:39<04:03, 20.79it/s]2022-02-22 21:57:40,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2288/7350 [01:39<03:05, 27.32it/s]2022-02-22 21:57:40,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2292/7350 [01:39<03:58, 21.21it/s]2022-02-22 21:57:40,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2296/7350 [01:39<03:38, 23.11it/s]2022-02-22 21:57:40,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2301/7350 [01:39<03:30, 24.01it/s]2022-02-22 21:57:40,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:40,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                          | 2304/7350 [01:40<04:04, 20.63it/s]2022-02-22 21:57:41,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                          | 2311/7350 [01:40<03:25, 24.53it/s]2022-02-22 21:57:41,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                          | 2314/7350 [01:40<03:39, 22.94it/s]2022-02-22 21:57:41,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2319/7350 [01:40<03:28, 24.12it/s]2022-02-22 21:57:41,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2324/7350 [01:40<03:04, 27.31it/s]2022-02-22 21:57:41,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2327/7350 [01:40<03:29, 24.01it/s]2022-02-22 21:57:41,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▎                          | 2330/7350 [01:41<03:19, 25.15it/s]2022-02-22 21:57:41,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:41,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2334/7350 [01:41<03:15, 25.64it/s]2022-02-22 21:57:42,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2337/7350 [01:41<03:37, 23.04it/s]2022-02-22 21:57:42,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2342/7350 [01:41<03:06, 26.85it/s]2022-02-22 21:57:42,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2345/7350 [01:41<03:26, 24.21it/s]2022-02-22 21:57:42,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2348/7350 [01:41<03:44, 22.33it/s]2022-02-22 21:57:42,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▍                          | 2354/7350 [01:41<03:09, 26.34it/s]2022-02-22 21:57:42,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:42,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2357/7350 [01:42<04:22, 19.01it/s]2022-02-22 21:57:43,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2364/7350 [01:42<03:00, 27.64it/s]2022-02-22 21:57:43,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2368/7350 [01:42<03:53, 21.35it/s]2022-02-22 21:57:43,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2375/7350 [01:42<03:34, 23.20it/s]2022-02-22 21:57:43,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:43,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                          | 2378/7350 [01:43<03:46, 21.92it/s]2022-02-22 21:57:44,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                          | 2382/7350 [01:43<03:49, 21.61it/s]2022-02-22 21:57:44,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                          | 2386/7350 [01:43<03:34, 23.19it/s]2022-02-22 21:57:44,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2390/7350 [01:43<03:22, 24.48it/s]2022-02-22 21:57:44,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2394/7350 [01:43<03:09, 26.15it/s]2022-02-22 21:57:44,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2397/7350 [01:43<03:29, 23.69it/s]2022-02-22 21:57:44,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▋                          | 2400/7350 [01:44<03:34, 23.09it/s]2022-02-22 21:57:44,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:44,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2404/7350 [01:44<03:50, 21.42it/s]2022-02-22 21:57:45,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2408/7350 [01:44<03:32, 23.22it/s]2022-02-22 21:57:45,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2411/7350 [01:44<03:23, 24.26it/s]2022-02-22 21:57:45,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2414/7350 [01:44<03:28, 23.65it/s]2022-02-22 21:57:45,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2418/7350 [01:44<03:38, 22.55it/s]2022-02-22 21:57:45,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2423/7350 [01:44<03:06, 26.35it/s]2022-02-22 21:57:45,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:45,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▊                          | 2426/7350 [01:45<03:25, 23.93it/s]2022-02-22 21:57:46,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2429/7350 [01:45<03:28, 23.58it/s]2022-02-22 21:57:46,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2433/7350 [01:45<03:33, 23.01it/s]2022-02-22 21:57:46,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2437/7350 [01:45<03:10, 25.85it/s]2022-02-22 21:57:46,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2440/7350 [01:45<03:19, 24.56it/s]2022-02-22 21:57:46,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2443/7350 [01:45<03:39, 22.31it/s]2022-02-22 21:57:46,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:46,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2446/7350 [01:45<03:25, 23.88it/s]2022-02-22 21:57:46,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|████████████▉                          | 2449/7350 [01:46<03:55, 20.81it/s]2022-02-22 21:57:47,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2453/7350 [01:46<03:29, 23.42it/s]2022-02-22 21:57:47,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2457/7350 [01:46<03:14, 25.20it/s]2022-02-22 21:57:47,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                          | 2460/7350 [01:46<03:37, 22.51it/s]2022-02-22 21:57:47,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████                          | 2464/7350 [01:46<03:19, 24.44it/s]2022-02-22 21:57:47,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████                          | 2468/7350 [01:46<03:00, 27.01it/s]2022-02-22 21:57:47,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:47,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████                          | 2471/7350 [01:47<03:23, 24.00it/s]2022-02-22 21:57:47,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2474/7350 [01:47<03:23, 23.93it/s]2022-02-22 21:57:48,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2477/7350 [01:47<03:18, 24.53it/s]2022-02-22 21:57:48,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2481/7350 [01:47<04:08, 19.60it/s]2022-02-22 21:57:48,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2486/7350 [01:47<03:15, 24.92it/s]2022-02-22 21:57:48,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2489/7350 [01:47<03:22, 24.03it/s]2022-02-22 21:57:48,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2492/7350 [01:47<03:12, 25.29it/s]2022-02-22 21:57:48,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:48,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▏                         | 2495/7350 [01:48<03:45, 21.56it/s]2022-02-22 21:57:49,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2499/7350 [01:48<03:16, 24.67it/s]2022-02-22 21:57:49,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2503/7350 [01:48<03:16, 24.66it/s]2022-02-22 21:57:49,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2506/7350 [01:48<04:03, 19.87it/s]2022-02-22 21:57:49,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2511/7350 [01:48<03:10, 25.40it/s]2022-02-22 21:57:49,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2514/7350 [01:48<03:43, 21.67it/s]2022-02-22 21:57:49,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:49,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▎                         | 2519/7350 [01:49<03:28, 23.12it/s]2022-02-22 21:57:50,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2524/7350 [01:49<03:14, 24.82it/s]2022-02-22 21:57:50,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2527/7350 [01:49<03:21, 23.93it/s]2022-02-22 21:57:50,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2532/7350 [01:49<02:54, 27.55it/s]2022-02-22 21:57:50,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                         | 2535/7350 [01:49<03:44, 21.42it/s]2022-02-22 21:57:50,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▍                         | 2539/7350 [01:49<03:19, 24.09it/s]2022-02-22 21:57:50,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:50,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▍                         | 2542/7350 [01:50<03:16, 24.51it/s]2022-02-22 21:57:51,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2545/7350 [01:50<03:14, 24.64it/s]2022-02-22 21:57:51,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2548/7350 [01:50<03:25, 23.40it/s]2022-02-22 21:57:51,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2552/7350 [01:50<03:14, 24.63it/s]2022-02-22 21:57:51,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2555/7350 [01:50<03:58, 20.14it/s]2022-02-22 21:57:51,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2559/7350 [01:50<03:47, 21.07it/s]2022-02-22 21:57:51,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2564/7350 [01:50<03:02, 26.23it/s]2022-02-22 21:57:51,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:51,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▌                         | 2567/7350 [01:51<03:23, 23.52it/s]2022-02-22 21:57:52,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2571/7350 [01:51<03:04, 25.93it/s]2022-02-22 21:57:52,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2574/7350 [01:51<03:02, 26.19it/s]2022-02-22 21:57:52,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2577/7350 [01:51<03:46, 21.07it/s]2022-02-22 21:57:52,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2581/7350 [01:51<03:20, 23.79it/s]2022-02-22 21:57:52,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2585/7350 [01:51<03:29, 22.76it/s]2022-02-22 21:57:52,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:52,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▋                         | 2588/7350 [01:52<03:31, 22.51it/s]2022-02-22 21:57:52,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2592/7350 [01:52<03:01, 26.15it/s]2022-02-22 21:57:53,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2595/7350 [01:52<03:19, 23.88it/s]2022-02-22 21:57:53,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2598/7350 [01:52<03:17, 24.08it/s]2022-02-22 21:57:53,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2602/7350 [01:52<03:19, 23.76it/s]2022-02-22 21:57:53,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2605/7350 [01:52<03:26, 22.98it/s]2022-02-22 21:57:53,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                         | 2608/7350 [01:52<03:23, 23.30it/s]2022-02-22 21:57:53,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:53,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▊                         | 2612/7350 [01:52<03:08, 25.08it/s]2022-02-22 21:57:53,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2615/7350 [01:53<03:07, 25.29it/s]2022-02-22 21:57:54,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2618/7350 [01:53<04:14, 18.58it/s]2022-02-22 21:57:54,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2623/7350 [01:53<03:25, 23.05it/s]2022-02-22 21:57:54,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2627/7350 [01:53<03:39, 21.50it/s]2022-02-22 21:57:54,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2633/7350 [01:53<02:57, 26.54it/s]2022-02-22 21:57:54,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|█████████████▉                         | 2636/7350 [01:53<02:58, 26.34it/s]2022-02-22 21:57:54,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:54,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2639/7350 [01:54<03:48, 20.59it/s]2022-02-22 21:57:55,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2644/7350 [01:54<03:14, 24.14it/s]2022-02-22 21:57:55,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2647/7350 [01:54<03:13, 24.27it/s]2022-02-22 21:57:55,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2650/7350 [01:54<03:45, 20.81it/s]2022-02-22 21:57:55,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2655/7350 [01:54<03:08, 24.92it/s]2022-02-22 21:57:55,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2658/7350 [01:54<03:18, 23.66it/s]2022-02-22 21:57:55,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:55,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████                         | 2661/7350 [01:55<03:21, 23.23it/s]2022-02-22 21:57:56,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2664/7350 [01:55<03:09, 24.72it/s]2022-02-22 21:57:56,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2667/7350 [01:55<03:46, 20.66it/s]2022-02-22 21:57:56,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2672/7350 [01:55<03:25, 22.79it/s]2022-02-22 21:57:56,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2675/7350 [01:55<03:15, 23.91it/s]2022-02-22 21:57:56,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2678/7350 [01:55<03:31, 22.07it/s]2022-02-22 21:57:56,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                        | 2682/7350 [01:56<03:09, 24.61it/s]2022-02-22 21:57:56,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:56,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▏                        | 2685/7350 [01:56<03:55, 19.79it/s]2022-02-22 21:57:57,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2688/7350 [01:56<03:41, 21.09it/s]2022-02-22 21:57:57,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2694/7350 [01:56<02:45, 28.10it/s]2022-02-22 21:57:57,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2698/7350 [01:56<03:33, 21.83it/s]2022-02-22 21:57:57,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2704/7350 [01:56<02:51, 27.06it/s]2022-02-22 21:57:57,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:57,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▎                        | 2708/7350 [01:57<03:23, 22.80it/s]2022-02-22 21:57:58,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2713/7350 [01:57<02:54, 26.55it/s]2022-02-22 21:57:58,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2717/7350 [01:57<03:21, 22.94it/s]2022-02-22 21:57:58,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2720/7350 [01:57<03:14, 23.75it/s]2022-02-22 21:57:58,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2723/7350 [01:57<03:31, 21.92it/s]2022-02-22 21:57:58,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2726/7350 [01:57<03:31, 21.90it/s]2022-02-22 21:57:58,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:58,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▍                        | 2730/7350 [01:58<03:45, 20.45it/s]2022-02-22 21:57:59,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2735/7350 [01:58<03:00, 25.54it/s]2022-02-22 21:57:59,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2738/7350 [01:58<03:36, 21.31it/s]2022-02-22 21:57:59,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2743/7350 [01:58<02:55, 26.25it/s]2022-02-22 21:57:59,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2747/7350 [01:58<03:21, 22.83it/s]2022-02-22 21:57:59,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2750/7350 [01:58<03:28, 22.11it/s]2022-02-22 21:57:59,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:57:59,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2753/7350 [01:59<03:25, 22.36it/s]2022-02-22 21:58:00,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                        | 2756/7350 [01:59<03:56, 19.45it/s]2022-02-22 21:58:00,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2762/7350 [01:59<02:50, 26.98it/s]2022-02-22 21:58:00,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2766/7350 [01:59<03:52, 19.73it/s]2022-02-22 21:58:00,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2772/7350 [01:59<02:54, 26.17it/s]2022-02-22 21:58:00,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:00,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▋                        | 2776/7350 [02:00<03:50, 19.81it/s]2022-02-22 21:58:01,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2783/7350 [02:00<02:53, 26.25it/s]2022-02-22 21:58:01,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2787/7350 [02:00<03:25, 22.15it/s]2022-02-22 21:58:01,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2790/7350 [02:00<03:29, 21.73it/s]2022-02-22 21:58:01,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2796/7350 [02:00<03:09, 24.06it/s]2022-02-22 21:58:01,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:01,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2800/7350 [02:01<03:20, 22.73it/s]2022-02-22 21:58:02,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▊                        | 2803/7350 [02:01<03:09, 23.98it/s]2022-02-22 21:58:02,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2806/7350 [02:01<03:08, 24.08it/s]2022-02-22 21:58:02,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2810/7350 [02:01<02:58, 25.50it/s]2022-02-22 21:58:02,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2814/7350 [02:01<03:42, 20.38it/s]2022-02-22 21:58:02,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2820/7350 [02:01<02:54, 25.91it/s]2022-02-22 21:58:02,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:02,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|██████████████▉                        | 2824/7350 [02:02<03:14, 23.25it/s]2022-02-22 21:58:03,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████                        | 2827/7350 [02:02<03:12, 23.47it/s]2022-02-22 21:58:03,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2832/7350 [02:02<02:47, 26.95it/s]2022-02-22 21:58:03,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2835/7350 [02:02<03:14, 23.16it/s]2022-02-22 21:58:03,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2839/7350 [02:02<03:00, 24.94it/s]2022-02-22 21:58:03,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2842/7350 [02:02<03:11, 23.53it/s]2022-02-22 21:58:03,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:03,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2847/7350 [02:03<03:03, 24.54it/s]2022-02-22 21:58:04,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████                        | 2850/7350 [02:03<02:57, 25.37it/s]2022-02-22 21:58:04,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2853/7350 [02:03<03:15, 23.01it/s]2022-02-22 21:58:04,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2857/7350 [02:03<03:42, 20.17it/s]2022-02-22 21:58:04,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2861/7350 [02:03<03:16, 22.86it/s]2022-02-22 21:58:04,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2867/7350 [02:03<02:33, 29.12it/s]2022-02-22 21:58:04,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:04,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2871/7350 [02:04<03:26, 21.68it/s]2022-02-22 21:58:05,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▏                       | 2874/7350 [02:04<03:20, 22.31it/s]2022-02-22 21:58:05,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2878/7350 [02:04<03:19, 22.42it/s]2022-02-22 21:58:05,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2881/7350 [02:04<03:35, 20.71it/s]2022-02-22 21:58:05,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2886/7350 [02:04<02:53, 25.73it/s]2022-02-22 21:58:05,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2889/7350 [02:04<03:16, 22.69it/s]2022-02-22 21:58:05,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:05,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▎                       | 2893/7350 [02:05<03:22, 22.06it/s]2022-02-22 21:58:06,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▍                       | 2898/7350 [02:05<03:04, 24.19it/s]2022-02-22 21:58:06,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▍                       | 2901/7350 [02:05<03:04, 24.16it/s]2022-02-22 21:58:06,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2904/7350 [02:05<03:19, 22.25it/s]2022-02-22 21:58:06,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2907/7350 [02:05<03:20, 22.15it/s]2022-02-22 21:58:06,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2913/7350 [02:05<02:43, 27.21it/s]2022-02-22 21:58:06,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:06,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2916/7350 [02:06<02:56, 25.08it/s]2022-02-22 21:58:06,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▍                       | 2919/7350 [02:06<03:09, 23.39it/s]2022-02-22 21:58:07,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2923/7350 [02:06<02:58, 24.83it/s]2022-02-22 21:58:07,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2926/7350 [02:06<03:02, 24.23it/s]2022-02-22 21:58:07,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2930/7350 [02:06<02:58, 24.78it/s]2022-02-22 21:58:07,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2933/7350 [02:06<02:55, 25.10it/s]2022-02-22 21:58:07,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2936/7350 [02:06<02:54, 25.28it/s]2022-02-22 21:58:07,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2939/7350 [02:06<03:15, 22.56it/s]2022-02-22 21:58:07,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:07,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▌                       | 2942/7350 [02:07<03:37, 20.30it/s]2022-02-22 21:58:08,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2947/7350 [02:07<02:49, 25.99it/s]2022-02-22 21:58:08,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2950/7350 [02:07<03:06, 23.56it/s]2022-02-22 21:58:08,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2953/7350 [02:07<03:48, 19.27it/s]2022-02-22 21:58:08,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2959/7350 [02:07<02:53, 25.25it/s]2022-02-22 21:58:08,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2962/7350 [02:07<02:49, 25.91it/s]2022-02-22 21:58:08,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:08,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▋                       | 2965/7350 [02:08<03:44, 19.57it/s]2022-02-22 21:58:09,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                       | 2970/7350 [02:08<02:56, 24.75it/s]2022-02-22 21:58:09,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                       | 2973/7350 [02:08<03:07, 23.32it/s]2022-02-22 21:58:09,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                       | 2976/7350 [02:08<03:12, 22.67it/s]2022-02-22 21:58:09,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2979/7350 [02:08<03:20, 21.78it/s]2022-02-22 21:58:09,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2983/7350 [02:08<02:54, 25.08it/s]2022-02-22 21:58:09,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2986/7350 [02:09<03:02, 23.96it/s]2022-02-22 21:58:09,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:09,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▊                       | 2989/7350 [02:09<03:28, 20.92it/s]2022-02-22 21:58:10,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 2994/7350 [02:09<03:08, 23.07it/s]2022-02-22 21:58:10,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 2997/7350 [02:09<03:25, 21.23it/s]2022-02-22 21:58:10,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3003/7350 [02:09<02:58, 24.31it/s]2022-02-22 21:58:10,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3006/7350 [02:09<03:12, 22.60it/s]2022-02-22 21:58:10,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3009/7350 [02:10<03:01, 23.90it/s]2022-02-22 21:58:10,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:10,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|███████████████▉                       | 3013/7350 [02:10<03:14, 22.32it/s]2022-02-22 21:58:11,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3016/7350 [02:10<03:13, 22.41it/s]2022-02-22 21:58:11,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3019/7350 [02:10<03:31, 20.52it/s]2022-02-22 21:58:11,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3025/7350 [02:10<03:05, 23.33it/s]2022-02-22 21:58:11,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3028/7350 [02:10<03:19, 21.67it/s]2022-02-22 21:58:11,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:11,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3033/7350 [02:11<02:50, 25.27it/s]2022-02-22 21:58:12,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████                       | 3036/7350 [02:11<03:02, 23.69it/s]2022-02-22 21:58:12,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3039/7350 [02:11<03:21, 21.38it/s]2022-02-22 21:58:12,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3043/7350 [02:11<02:56, 24.45it/s]2022-02-22 21:58:12,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                      | 3046/7350 [02:11<03:27, 20.75it/s]2022-02-22 21:58:12,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▏                      | 3053/7350 [02:11<02:52, 24.95it/s]2022-02-22 21:58:12,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:12,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▏                      | 3056/7350 [02:12<03:47, 18.91it/s]2022-02-22 21:58:13,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3063/7350 [02:12<02:46, 25.74it/s]2022-02-22 21:58:13,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3066/7350 [02:12<03:24, 20.92it/s]2022-02-22 21:58:13,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3072/7350 [02:12<02:46, 25.69it/s]2022-02-22 21:58:13,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3075/7350 [02:12<03:18, 21.52it/s]2022-02-22 21:58:13,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:13,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3078/7350 [02:13<03:09, 22.57it/s]2022-02-22 21:58:14,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3083/7350 [02:13<02:48, 25.26it/s]2022-02-22 21:58:14,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▎                      | 3086/7350 [02:13<03:14, 21.96it/s]2022-02-22 21:58:14,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3089/7350 [02:13<03:01, 23.44it/s]2022-02-22 21:58:14,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3094/7350 [02:13<02:46, 25.63it/s]2022-02-22 21:58:14,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3097/7350 [02:13<03:28, 20.41it/s]2022-02-22 21:58:14,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:14,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3104/7350 [02:14<02:41, 26.33it/s]2022-02-22 21:58:15,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▍                      | 3107/7350 [02:14<03:16, 21.55it/s]2022-02-22 21:58:15,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3110/7350 [02:14<03:12, 22.07it/s]2022-02-22 21:58:15,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3115/7350 [02:14<03:08, 22.48it/s]2022-02-22 21:58:15,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3118/7350 [02:14<03:09, 22.30it/s]2022-02-22 21:58:15,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▌                      | 3121/7350 [02:14<03:05, 22.75it/s]2022-02-22 21:58:15,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:15,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▌                      | 3125/7350 [02:15<03:14, 21.77it/s]2022-02-22 21:58:16,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▌                      | 3129/7350 [02:15<03:04, 22.90it/s]2022-02-22 21:58:16,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3134/7350 [02:15<02:43, 25.81it/s]2022-02-22 21:58:16,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3137/7350 [02:15<03:11, 21.95it/s]2022-02-22 21:58:16,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3143/7350 [02:15<02:45, 25.43it/s]2022-02-22 21:58:16,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:16,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3146/7350 [02:16<03:10, 22.10it/s]2022-02-22 21:58:17,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3151/7350 [02:16<03:21, 20.86it/s]2022-02-22 21:58:17,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▋                      | 3156/7350 [02:16<03:02, 22.93it/s]2022-02-22 21:58:17,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3159/7350 [02:16<02:57, 23.56it/s]2022-02-22 21:58:17,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3164/7350 [02:16<02:37, 26.61it/s]2022-02-22 21:58:17,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3167/7350 [02:16<03:10, 21.96it/s]2022-02-22 21:58:17,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:17,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3174/7350 [02:17<02:38, 26.38it/s]2022-02-22 21:58:18,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▊                      | 3177/7350 [02:17<03:15, 21.35it/s]2022-02-22 21:58:18,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3183/7350 [02:17<02:39, 26.14it/s]2022-02-22 21:58:18,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3186/7350 [02:17<03:06, 22.28it/s]2022-02-22 21:58:18,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3192/7350 [02:17<02:26, 28.36it/s]2022-02-22 21:58:18,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:18,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|████████████████▉                      | 3196/7350 [02:18<03:14, 21.31it/s]2022-02-22 21:58:19,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|████████████████▉                      | 3199/7350 [02:18<03:12, 21.54it/s]2022-02-22 21:58:19,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3205/7350 [02:18<03:10, 21.74it/s]2022-02-22 21:58:19,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3208/7350 [02:18<03:06, 22.18it/s]2022-02-22 21:58:19,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3213/7350 [02:18<02:51, 24.08it/s]2022-02-22 21:58:19,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:19,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3216/7350 [02:19<03:24, 20.22it/s]2022-02-22 21:58:20,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3222/7350 [02:19<02:32, 27.13it/s]2022-02-22 21:58:20,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████                      | 3226/7350 [02:19<02:54, 23.67it/s]2022-02-22 21:58:20,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3229/7350 [02:19<02:55, 23.44it/s]2022-02-22 21:58:20,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3232/7350 [02:19<02:50, 24.20it/s]2022-02-22 21:58:20,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3235/7350 [02:19<02:58, 23.07it/s]2022-02-22 21:58:20,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3238/7350 [02:19<03:04, 22.34it/s]2022-02-22 21:58:20,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:20,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3241/7350 [02:20<03:14, 21.13it/s]2022-02-22 21:58:21,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▏                     | 3246/7350 [02:20<03:19, 20.62it/s]2022-02-22 21:58:21,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3251/7350 [02:20<02:40, 25.46it/s]2022-02-22 21:58:21,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3254/7350 [02:20<03:00, 22.74it/s]2022-02-22 21:58:21,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3257/7350 [02:20<03:21, 20.35it/s]2022-02-22 21:58:21,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:21,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3264/7350 [02:21<02:38, 25.82it/s]2022-02-22 21:58:22,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▎                     | 3267/7350 [02:21<02:59, 22.71it/s]2022-02-22 21:58:22,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▎                     | 3271/7350 [02:21<03:08, 21.61it/s]2022-02-22 21:58:22,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3277/7350 [02:21<02:47, 24.36it/s]2022-02-22 21:58:22,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3280/7350 [02:21<03:02, 22.25it/s]2022-02-22 21:58:22,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3283/7350 [02:21<02:58, 22.80it/s]2022-02-22 21:58:22,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:22,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3288/7350 [02:22<02:34, 26.37it/s]2022-02-22 21:58:23,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3291/7350 [02:22<02:51, 23.67it/s]2022-02-22 21:58:23,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▍                     | 3295/7350 [02:22<03:15, 20.74it/s]2022-02-22 21:58:23,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3301/7350 [02:22<02:51, 23.55it/s]2022-02-22 21:58:23,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3308/7350 [02:22<02:42, 24.82it/s]2022-02-22 21:58:23,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:23,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3311/7350 [02:23<02:42, 24.83it/s]2022-02-22 21:58:24,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3314/7350 [02:23<02:38, 25.48it/s]2022-02-22 21:58:24,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3317/7350 [02:23<02:56, 22.82it/s]2022-02-22 21:58:24,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▌                     | 3321/7350 [02:23<02:55, 23.01it/s]2022-02-22 21:58:24,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3326/7350 [02:23<02:38, 25.32it/s]2022-02-22 21:58:24,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3329/7350 [02:23<02:35, 25.93it/s]2022-02-22 21:58:24,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3332/7350 [02:23<02:51, 23.46it/s]2022-02-22 21:58:24,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:24,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3336/7350 [02:24<02:35, 25.81it/s]2022-02-22 21:58:25,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3339/7350 [02:24<02:38, 25.36it/s]2022-02-22 21:58:25,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▋                     | 3342/7350 [02:24<02:57, 22.60it/s]2022-02-22 21:58:25,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3346/7350 [02:24<02:44, 24.39it/s]2022-02-22 21:58:25,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3350/7350 [02:24<02:58, 22.44it/s]2022-02-22 21:58:25,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3353/7350 [02:24<03:26, 19.34it/s]2022-02-22 21:58:25,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:25,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3360/7350 [02:25<02:45, 24.17it/s]2022-02-22 21:58:26,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3363/7350 [02:25<02:40, 24.82it/s]2022-02-22 21:58:26,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▊                     | 3367/7350 [02:25<02:27, 26.92it/s]2022-02-22 21:58:26,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3370/7350 [02:25<03:00, 22.01it/s]2022-02-22 21:58:26,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3373/7350 [02:25<02:51, 23.17it/s]2022-02-22 21:58:26,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3377/7350 [02:25<02:30, 26.33it/s]2022-02-22 21:58:26,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:26,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3380/7350 [02:26<03:11, 20.77it/s]2022-02-22 21:58:27,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3387/7350 [02:26<02:29, 26.50it/s]2022-02-22 21:58:27,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|█████████████████▉                     | 3390/7350 [02:26<02:46, 23.84it/s]2022-02-22 21:58:27,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3394/7350 [02:26<02:36, 25.25it/s]2022-02-22 21:58:27,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3397/7350 [02:26<02:31, 26.11it/s]2022-02-22 21:58:27,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3400/7350 [02:26<02:56, 22.36it/s]2022-02-22 21:58:27,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3403/7350 [02:26<02:47, 23.50it/s]2022-02-22 21:58:27,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:27,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3406/7350 [02:27<02:38, 24.94it/s]2022-02-22 21:58:28,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3409/7350 [02:27<03:20, 19.65it/s]2022-02-22 21:58:28,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████                     | 3414/7350 [02:27<02:40, 24.45it/s]2022-02-22 21:58:28,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3418/7350 [02:27<03:14, 20.24it/s]2022-02-22 21:58:28,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3424/7350 [02:27<03:07, 20.92it/s]2022-02-22 21:58:28,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:28,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3429/7350 [02:28<02:40, 24.40it/s]2022-02-22 21:58:29,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3432/7350 [02:28<02:37, 24.94it/s]2022-02-22 21:58:29,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▏                    | 3436/7350 [02:28<03:14, 20.15it/s]2022-02-22 21:58:29,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3441/7350 [02:28<02:45, 23.58it/s]2022-02-22 21:58:29,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3445/7350 [02:28<02:33, 25.45it/s]2022-02-22 21:58:29,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3448/7350 [02:28<02:39, 24.52it/s]2022-02-22 21:58:29,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:29,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3451/7350 [02:29<02:32, 25.49it/s]2022-02-22 21:58:30,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3455/7350 [02:29<02:49, 23.02it/s]2022-02-22 21:58:30,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3458/7350 [02:29<02:49, 23.01it/s]2022-02-22 21:58:30,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▎                    | 3461/7350 [02:29<02:38, 24.48it/s]2022-02-22 21:58:30,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3465/7350 [02:29<02:44, 23.65it/s]2022-02-22 21:58:30,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3468/7350 [02:29<02:47, 23.13it/s]2022-02-22 21:58:30,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3471/7350 [02:29<02:50, 22.78it/s]2022-02-22 21:58:30,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:30,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3475/7350 [02:30<02:56, 22.00it/s]2022-02-22 21:58:31,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3478/7350 [02:30<02:44, 23.47it/s]2022-02-22 21:58:31,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3481/7350 [02:30<02:54, 22.19it/s]2022-02-22 21:58:31,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▍                    | 3485/7350 [02:30<02:54, 22.20it/s]2022-02-22 21:58:31,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▌                    | 3488/7350 [02:30<02:48, 22.93it/s]2022-02-22 21:58:31,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▌                    | 3491/7350 [02:30<02:37, 24.53it/s]2022-02-22 21:58:31,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3494/7350 [02:30<03:04, 20.91it/s]2022-02-22 21:58:31,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:31,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3500/7350 [02:31<02:40, 23.94it/s]2022-02-22 21:58:32,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3503/7350 [02:31<02:33, 25.03it/s]2022-02-22 21:58:32,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3506/7350 [02:31<02:47, 22.97it/s]2022-02-22 21:58:32,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▌                    | 3509/7350 [02:31<02:47, 22.89it/s]2022-02-22 21:58:32,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3512/7350 [02:31<02:37, 24.43it/s]2022-02-22 21:58:32,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3515/7350 [02:31<03:16, 19.51it/s]2022-02-22 21:58:32,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3520/7350 [02:31<02:28, 25.77it/s]2022-02-22 21:58:32,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:32,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3523/7350 [02:32<02:49, 22.54it/s]2022-02-22 21:58:33,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3526/7350 [02:32<03:05, 20.59it/s]2022-02-22 21:58:33,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▋                    | 3532/7350 [02:32<02:35, 24.56it/s]2022-02-22 21:58:33,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3535/7350 [02:32<02:48, 22.62it/s]2022-02-22 21:58:33,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3538/7350 [02:32<03:05, 20.59it/s]2022-02-22 21:58:33,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:33,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3543/7350 [02:33<03:11, 19.89it/s]2022-02-22 21:58:34,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3548/7350 [02:33<02:34, 24.59it/s]2022-02-22 21:58:34,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3553/7350 [02:33<02:41, 23.57it/s]2022-02-22 21:58:34,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▊                    | 3556/7350 [02:33<02:55, 21.58it/s]2022-02-22 21:58:34,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|██████████████████▉                    | 3563/7350 [02:33<02:33, 24.70it/s]2022-02-22 21:58:34,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:34,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3566/7350 [02:34<03:02, 20.75it/s]2022-02-22 21:58:35,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3573/7350 [02:34<02:57, 21.30it/s]2022-02-22 21:58:35,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|██████████████████▉                    | 3576/7350 [02:34<03:01, 20.80it/s]2022-02-22 21:58:35,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3582/7350 [02:34<02:33, 24.54it/s]2022-02-22 21:58:35,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3585/7350 [02:34<02:43, 23.03it/s]2022-02-22 21:58:35,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:35,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3588/7350 [02:35<02:58, 21.13it/s]2022-02-22 21:58:36,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3595/7350 [02:35<02:27, 25.53it/s]2022-02-22 21:58:36,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3598/7350 [02:35<02:44, 22.84it/s]2022-02-22 21:58:36,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████                    | 3601/7350 [02:35<02:50, 21.98it/s]2022-02-22 21:58:36,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3606/7350 [02:35<02:42, 23.08it/s]2022-02-22 21:58:36,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:36,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3610/7350 [02:35<02:33, 24.42it/s]2022-02-22 21:58:36,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3613/7350 [02:36<02:37, 23.79it/s]2022-02-22 21:58:37,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3616/7350 [02:36<02:52, 21.63it/s]2022-02-22 21:58:37,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3619/7350 [02:36<02:42, 23.02it/s]2022-02-22 21:58:37,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3622/7350 [02:36<02:34, 24.11it/s]2022-02-22 21:58:37,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▏                   | 3625/7350 [02:36<02:35, 23.91it/s]2022-02-22 21:58:37,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3628/7350 [02:36<02:43, 22.80it/s]2022-02-22 21:58:37,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3632/7350 [02:36<02:22, 26.01it/s]2022-02-22 21:58:37,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:37,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3635/7350 [02:37<02:51, 21.63it/s]2022-02-22 21:58:38,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▎                   | 3638/7350 [02:37<03:02, 20.39it/s]2022-02-22 21:58:38,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▎                   | 3643/7350 [02:37<02:28, 25.03it/s]2022-02-22 21:58:38,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▎                   | 3646/7350 [02:37<02:52, 21.42it/s]2022-02-22 21:58:38,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3652/7350 [02:37<02:06, 29.15it/s]2022-02-22 21:58:38,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3656/7350 [02:37<02:28, 24.85it/s]2022-02-22 21:58:38,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:38,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3659/7350 [02:38<02:37, 23.43it/s]2022-02-22 21:58:39,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3663/7350 [02:38<02:25, 25.43it/s]2022-02-22 21:58:39,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3666/7350 [02:38<02:53, 21.21it/s]2022-02-22 21:58:39,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3669/7350 [02:38<03:01, 20.25it/s]2022-02-22 21:58:39,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▍                   | 3674/7350 [02:38<02:29, 24.63it/s]2022-02-22 21:58:39,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3677/7350 [02:38<02:35, 23.57it/s]2022-02-22 21:58:39,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3682/7350 [02:38<02:08, 28.54it/s]2022-02-22 21:58:39,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:39,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3686/7350 [02:39<02:54, 21.04it/s]2022-02-22 21:58:40,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3693/7350 [02:39<03:10, 19.15it/s]2022-02-22 21:58:40,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▌                   | 3698/7350 [02:39<02:43, 22.34it/s]2022-02-22 21:58:40,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▋                   | 3704/7350 [02:40<02:27, 24.70it/s]2022-02-22 21:58:40,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:40,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▋                   | 3707/7350 [02:40<02:44, 22.12it/s]2022-02-22 21:58:41,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3714/7350 [02:40<02:25, 25.01it/s]2022-02-22 21:58:41,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3717/7350 [02:40<02:31, 23.98it/s]2022-02-22 21:58:41,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▋                   | 3721/7350 [02:40<02:21, 25.62it/s]2022-02-22 21:58:41,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3724/7350 [02:40<02:37, 22.97it/s]2022-02-22 21:58:41,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:41,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3727/7350 [02:41<02:38, 22.90it/s]2022-02-22 21:58:42,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3731/7350 [02:41<02:32, 23.68it/s]2022-02-22 21:58:42,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3735/7350 [02:41<02:27, 24.57it/s]2022-02-22 21:58:42,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3738/7350 [02:41<02:45, 21.76it/s]2022-02-22 21:58:42,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▊                   | 3742/7350 [02:41<02:36, 23.05it/s]2022-02-22 21:58:42,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:42,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3747/7350 [02:41<02:59, 20.11it/s]2022-02-22 21:58:43,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3753/7350 [02:42<02:22, 25.23it/s]2022-02-22 21:58:43,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3757/7350 [02:42<02:37, 22.79it/s]2022-02-22 21:58:43,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3761/7350 [02:42<02:38, 22.59it/s]2022-02-22 21:58:43,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|███████████████████▉                   | 3768/7350 [02:42<02:21, 25.25it/s]2022-02-22 21:58:43,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3771/7350 [02:42<02:36, 22.84it/s]2022-02-22 21:58:43,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:43,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3776/7350 [02:43<02:13, 26.74it/s]2022-02-22 21:58:44,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3779/7350 [02:43<02:20, 25.42it/s]2022-02-22 21:58:44,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3782/7350 [02:43<02:27, 24.19it/s]2022-02-22 21:58:44,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████                   | 3785/7350 [02:43<02:21, 25.17it/s]2022-02-22 21:58:44,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████                   | 3789/7350 [02:43<02:25, 24.42it/s]2022-02-22 21:58:44,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████                   | 3792/7350 [02:43<02:33, 23.17it/s]2022-02-22 21:58:44,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3795/7350 [02:43<02:31, 23.39it/s]2022-02-22 21:58:44,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:44,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3799/7350 [02:44<02:16, 26.03it/s]2022-02-22 21:58:44,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3802/7350 [02:44<02:30, 23.56it/s]2022-02-22 21:58:45,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3805/7350 [02:44<02:28, 23.95it/s]2022-02-22 21:58:45,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3809/7350 [02:44<02:11, 26.91it/s]2022-02-22 21:58:45,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3812/7350 [02:44<02:30, 23.58it/s]2022-02-22 21:58:45,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▏                  | 3815/7350 [02:44<02:41, 21.83it/s]2022-02-22 21:58:45,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3820/7350 [02:44<02:39, 22.12it/s]2022-02-22 21:58:45,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:45,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3824/7350 [02:45<02:18, 25.39it/s]2022-02-22 21:58:46,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3827/7350 [02:45<02:37, 22.44it/s]2022-02-22 21:58:46,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3830/7350 [02:45<02:33, 22.88it/s]2022-02-22 21:58:46,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3833/7350 [02:45<02:29, 23.45it/s]2022-02-22 21:58:46,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▎                  | 3837/7350 [02:45<02:08, 27.31it/s]2022-02-22 21:58:46,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3840/7350 [02:45<02:31, 23.20it/s]2022-02-22 21:58:46,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3843/7350 [02:45<02:27, 23.77it/s]2022-02-22 21:58:46,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:46,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3846/7350 [02:46<02:25, 24.14it/s]2022-02-22 21:58:47,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3849/7350 [02:46<02:49, 20.67it/s]2022-02-22 21:58:47,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▍                  | 3852/7350 [02:46<03:00, 19.39it/s]2022-02-22 21:58:47,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▍                  | 3860/7350 [02:46<02:20, 24.79it/s]2022-02-22 21:58:47,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▍                  | 3863/7350 [02:46<02:41, 21.60it/s]2022-02-22 21:58:47,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3870/7350 [02:47<02:10, 26.65it/s]2022-02-22 21:58:47,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:47,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3873/7350 [02:47<02:34, 22.50it/s]2022-02-22 21:58:48,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3877/7350 [02:47<02:23, 24.16it/s]2022-02-22 21:58:48,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▌                  | 3881/7350 [02:47<02:48, 20.57it/s]2022-02-22 21:58:48,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3889/7350 [02:47<02:14, 25.67it/s]2022-02-22 21:58:48,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:48,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3892/7350 [02:48<02:35, 22.21it/s]2022-02-22 21:58:48,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3897/7350 [02:48<02:09, 26.56it/s]2022-02-22 21:58:49,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3900/7350 [02:48<02:22, 24.15it/s]2022-02-22 21:58:49,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3903/7350 [02:48<02:31, 22.69it/s]2022-02-22 21:58:49,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▋                  | 3909/7350 [02:48<02:05, 27.39it/s]2022-02-22 21:58:49,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3912/7350 [02:48<03:11, 17.93it/s]2022-02-22 21:58:49,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:49,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3920/7350 [02:49<02:18, 24.83it/s]2022-02-22 21:58:50,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3923/7350 [02:49<02:35, 22.06it/s]2022-02-22 21:58:50,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3927/7350 [02:49<02:23, 23.88it/s]2022-02-22 21:58:50,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|████████████████████▊                  | 3931/7350 [02:49<02:14, 25.47it/s]2022-02-22 21:58:50,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▊                  | 3934/7350 [02:49<02:30, 22.65it/s]2022-02-22 21:58:50,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3938/7350 [02:49<02:16, 24.91it/s]2022-02-22 21:58:50,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:50,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3941/7350 [02:50<02:25, 23.45it/s]2022-02-22 21:58:51,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3944/7350 [02:50<02:37, 21.69it/s]2022-02-22 21:58:51,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3950/7350 [02:50<02:07, 26.71it/s]2022-02-22 21:58:51,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|████████████████████▉                  | 3953/7350 [02:50<02:45, 20.54it/s]2022-02-22 21:58:51,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3960/7350 [02:50<02:05, 27.12it/s]2022-02-22 21:58:51,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:51,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3963/7350 [02:51<02:42, 20.83it/s]2022-02-22 21:58:52,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3970/7350 [02:51<02:10, 25.91it/s]2022-02-22 21:58:52,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3973/7350 [02:51<02:19, 24.22it/s]2022-02-22 21:58:52,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3976/7350 [02:51<02:23, 23.51it/s]2022-02-22 21:58:52,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████                  | 3980/7350 [02:51<02:06, 26.71it/s]2022-02-22 21:58:52,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3983/7350 [02:51<02:16, 24.68it/s]2022-02-22 21:58:52,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3986/7350 [02:51<02:30, 22.31it/s]2022-02-22 21:58:52,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:52,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3991/7350 [02:52<02:03, 27.31it/s]2022-02-22 21:58:53,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3994/7350 [02:52<02:37, 21.28it/s]2022-02-22 21:58:53,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 3998/7350 [02:52<02:37, 21.24it/s]2022-02-22 21:58:53,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▏                 | 4003/7350 [02:52<02:19, 24.07it/s]2022-02-22 21:58:53,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4006/7350 [02:52<02:25, 22.93it/s]2022-02-22 21:58:53,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4009/7350 [02:52<02:20, 23.70it/s]2022-02-22 21:58:53,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:53,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4014/7350 [02:53<02:13, 25.05it/s]2022-02-22 21:58:54,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4018/7350 [02:53<02:25, 22.84it/s]2022-02-22 21:58:54,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4024/7350 [02:53<02:22, 23.41it/s]2022-02-22 21:58:54,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▎                 | 4028/7350 [02:53<02:23, 23.18it/s]2022-02-22 21:58:54,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4034/7350 [02:53<02:17, 24.08it/s]2022-02-22 21:58:54,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:54,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4038/7350 [02:54<02:07, 26.03it/s]2022-02-22 21:58:55,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4044/7350 [02:54<02:08, 25.67it/s]2022-02-22 21:58:55,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▍                 | 4048/7350 [02:54<02:03, 26.82it/s]2022-02-22 21:58:55,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4054/7350 [02:54<02:02, 26.87it/s]2022-02-22 21:58:55,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4058/7350 [02:54<02:02, 26.94it/s]2022-02-22 21:58:55,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:55,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4064/7350 [02:55<02:01, 26.95it/s]2022-02-22 21:58:56,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4068/7350 [02:55<01:58, 27.66it/s]2022-02-22 21:58:56,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▌                 | 4072/7350 [02:55<01:49, 29.97it/s]2022-02-22 21:58:56,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▋                 | 4076/7350 [02:55<01:53, 28.97it/s]2022-02-22 21:58:56,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▋                 | 4079/7350 [02:55<01:55, 28.22it/s]2022-02-22 21:58:56,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4082/7350 [02:55<01:54, 28.49it/s]2022-02-22 21:58:56,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4085/7350 [02:55<01:56, 27.94it/s]2022-02-22 21:58:56,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4088/7350 [02:55<02:11, 24.81it/s]2022-02-22 21:58:56,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:56,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4093/7350 [02:56<01:46, 30.45it/s]2022-02-22 21:58:57,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▋                 | 4097/7350 [02:56<02:13, 24.37it/s]2022-02-22 21:58:57,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4102/7350 [02:56<01:57, 27.61it/s]2022-02-22 21:58:57,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4106/7350 [02:56<02:10, 24.82it/s]2022-02-22 21:58:57,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4112/7350 [02:56<02:06, 25.61it/s]2022-02-22 21:58:57,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4116/7350 [02:56<02:01, 26.71it/s]2022-02-22 21:58:57,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:57,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▊                 | 4120/7350 [02:57<01:52, 28.75it/s]2022-02-22 21:58:58,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4124/7350 [02:57<01:51, 28.85it/s]2022-02-22 21:58:58,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4128/7350 [02:57<01:52, 28.61it/s]2022-02-22 21:58:58,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4131/7350 [02:57<02:06, 25.37it/s]2022-02-22 21:58:58,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4134/7350 [02:57<02:02, 26.23it/s]2022-02-22 21:58:58,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4137/7350 [02:57<02:07, 25.26it/s]2022-02-22 21:58:58,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4141/7350 [02:57<01:59, 26.76it/s]2022-02-22 21:58:58,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|█████████████████████▉                 | 4144/7350 [02:58<01:57, 27.28it/s]2022-02-22 21:58:58,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:58,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████                 | 4147/7350 [02:58<01:58, 27.05it/s]2022-02-22 21:58:59,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████                 | 4150/7350 [02:58<01:59, 26.82it/s]2022-02-22 21:58:59,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4154/7350 [02:58<01:52, 28.49it/s]2022-02-22 21:58:59,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4157/7350 [02:58<02:15, 23.55it/s]2022-02-22 21:58:59,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4163/7350 [02:58<01:54, 27.72it/s]2022-02-22 21:58:59,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4166/7350 [02:58<01:58, 26.96it/s]2022-02-22 21:58:59,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████                 | 4169/7350 [02:58<01:55, 27.64it/s]2022-02-22 21:58:59,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:58:59,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4173/7350 [02:59<02:24, 22.01it/s]2022-02-22 21:59:00,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4179/7350 [02:59<01:50, 28.63it/s]2022-02-22 21:59:00,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4183/7350 [02:59<01:46, 29.71it/s]2022-02-22 21:59:00,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4187/7350 [02:59<01:58, 26.66it/s]2022-02-22 21:59:00,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▏                | 4191/7350 [02:59<02:05, 25.22it/s]2022-02-22 21:59:00,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4195/7350 [02:59<01:59, 26.39it/s]2022-02-22 21:59:00,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:00,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4200/7350 [03:00<01:43, 30.42it/s]2022-02-22 21:59:01,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4204/7350 [03:00<01:53, 27.74it/s]2022-02-22 21:59:01,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4208/7350 [03:00<01:58, 26.56it/s]2022-02-22 21:59:01,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4212/7350 [03:00<01:46, 29.34it/s]2022-02-22 21:59:01,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▎                | 4216/7350 [03:00<01:59, 26.21it/s]2022-02-22 21:59:01,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▍                | 4221/7350 [03:00<01:45, 29.75it/s]2022-02-22 21:59:01,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:01,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▍                | 4225/7350 [03:01<02:04, 25.07it/s]2022-02-22 21:59:01,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4230/7350 [03:01<01:43, 30.07it/s]2022-02-22 21:59:02,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4234/7350 [03:01<01:59, 26.14it/s]2022-02-22 21:59:02,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▍                | 4237/7350 [03:01<01:58, 26.31it/s]2022-02-22 21:59:02,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4242/7350 [03:01<01:44, 29.88it/s]2022-02-22 21:59:02,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4246/7350 [03:01<01:47, 28.83it/s]2022-02-22 21:59:02,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4250/7350 [03:01<02:02, 25.31it/s]2022-02-22 21:59:02,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:02,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4253/7350 [03:02<02:15, 22.90it/s]2022-02-22 21:59:03,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▌                | 4260/7350 [03:02<01:45, 29.20it/s]2022-02-22 21:59:03,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4264/7350 [03:02<02:03, 24.92it/s]2022-02-22 21:59:03,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4270/7350 [03:02<01:40, 30.74it/s]2022-02-22 21:59:03,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4274/7350 [03:02<02:03, 24.93it/s]2022-02-22 21:59:03,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:03,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4280/7350 [03:02<01:43, 29.72it/s]2022-02-22 21:59:03,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▋                | 4284/7350 [03:03<02:05, 24.52it/s]2022-02-22 21:59:04,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4288/7350 [03:03<01:54, 26.76it/s]2022-02-22 21:59:04,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4292/7350 [03:03<01:54, 26.80it/s]2022-02-22 21:59:04,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|██████████████████████▊                | 4295/7350 [03:03<02:05, 24.43it/s]2022-02-22 21:59:04,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4301/7350 [03:03<01:43, 29.40it/s]2022-02-22 21:59:04,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:04,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4305/7350 [03:04<02:04, 24.53it/s]2022-02-22 21:59:04,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▊                | 4311/7350 [03:04<01:41, 29.92it/s]2022-02-22 21:59:05,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4315/7350 [03:04<02:00, 25.23it/s]2022-02-22 21:59:05,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4320/7350 [03:04<01:48, 28.04it/s]2022-02-22 21:59:05,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4324/7350 [03:04<01:56, 25.88it/s]2022-02-22 21:59:05,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4328/7350 [03:04<01:47, 28.07it/s]2022-02-22 21:59:05,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:05,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|██████████████████████▉                | 4332/7350 [03:05<02:05, 24.13it/s]2022-02-22 21:59:05,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4336/7350 [03:05<02:04, 24.26it/s]2022-02-22 21:59:06,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4342/7350 [03:05<01:53, 26.61it/s]2022-02-22 21:59:06,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4346/7350 [03:05<02:06, 23.83it/s]2022-02-22 21:59:06,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4352/7350 [03:05<01:48, 27.63it/s]2022-02-22 21:59:06,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████                | 4357/7350 [03:05<01:34, 31.76it/s]2022-02-22 21:59:06,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:06,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4361/7350 [03:06<01:49, 27.37it/s]2022-02-22 21:59:07,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4365/7350 [03:06<01:54, 25.99it/s]2022-02-22 21:59:07,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4369/7350 [03:06<01:57, 25.35it/s]2022-02-22 21:59:07,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▏               | 4373/7350 [03:06<01:45, 28.19it/s]2022-02-22 21:59:07,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▏               | 4377/7350 [03:06<01:41, 29.18it/s]2022-02-22 21:59:07,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▏               | 4381/7350 [03:06<01:54, 25.87it/s]2022-02-22 21:59:07,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4385/7350 [03:06<01:43, 28.65it/s]2022-02-22 21:59:07,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:07,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4389/7350 [03:07<02:00, 24.60it/s]2022-02-22 21:59:08,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4393/7350 [03:07<01:52, 26.17it/s]2022-02-22 21:59:08,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4398/7350 [03:07<02:00, 24.60it/s]2022-02-22 21:59:08,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 4402/7350 [03:07<01:47, 27.38it/s]2022-02-22 21:59:08,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4407/7350 [03:07<01:34, 31.11it/s]2022-02-22 21:59:08,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4411/7350 [03:07<01:53, 25.87it/s]2022-02-22 21:59:08,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:08,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4414/7350 [03:08<01:51, 26.43it/s]2022-02-22 21:59:09,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4418/7350 [03:08<01:48, 27.08it/s]2022-02-22 21:59:09,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4421/7350 [03:08<01:54, 25.64it/s]2022-02-22 21:59:09,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 4427/7350 [03:08<01:29, 32.77it/s]2022-02-22 21:59:09,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4431/7350 [03:08<01:52, 25.92it/s]2022-02-22 21:59:09,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4436/7350 [03:08<01:57, 24.89it/s]2022-02-22 21:59:09,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:09,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4440/7350 [03:09<01:48, 26.72it/s]2022-02-22 21:59:09,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 4444/7350 [03:09<01:42, 28.30it/s]2022-02-22 21:59:10,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▌               | 4448/7350 [03:09<01:52, 25.75it/s]2022-02-22 21:59:10,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▌               | 4452/7350 [03:09<01:53, 25.61it/s]2022-02-22 21:59:10,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4457/7350 [03:09<01:43, 27.90it/s]2022-02-22 21:59:10,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4461/7350 [03:09<01:41, 28.48it/s]2022-02-22 21:59:10,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4465/7350 [03:09<01:34, 30.42it/s]2022-02-22 21:59:10,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:10,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4469/7350 [03:10<01:43, 27.89it/s]2022-02-22 21:59:11,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 4472/7350 [03:10<01:51, 25.84it/s]2022-02-22 21:59:11,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4477/7350 [03:10<01:41, 28.18it/s]2022-02-22 21:59:11,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4480/7350 [03:10<01:49, 26.23it/s]2022-02-22 21:59:11,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4483/7350 [03:10<01:46, 26.90it/s]2022-02-22 21:59:11,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4487/7350 [03:10<01:38, 29.00it/s]2022-02-22 21:59:11,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4490/7350 [03:10<01:49, 26.17it/s]2022-02-22 21:59:11,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:11,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4494/7350 [03:10<01:45, 27.16it/s]2022-02-22 21:59:11,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▊               | 4498/7350 [03:11<01:38, 29.04it/s]2022-02-22 21:59:12,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4501/7350 [03:11<01:46, 26.82it/s]2022-02-22 21:59:12,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4505/7350 [03:11<01:41, 28.11it/s]2022-02-22 21:59:12,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4509/7350 [03:11<01:34, 29.93it/s]2022-02-22 21:59:12,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4513/7350 [03:11<01:46, 26.71it/s]2022-02-22 21:59:12,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4517/7350 [03:11<01:41, 27.99it/s]2022-02-22 21:59:12,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▉               | 4520/7350 [03:12<02:02, 23.17it/s]2022-02-22 21:59:12,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:12,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4525/7350 [03:12<01:57, 23.98it/s]2022-02-22 21:59:13,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4530/7350 [03:12<01:44, 26.97it/s]2022-02-22 21:59:13,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4535/7350 [03:12<01:46, 26.36it/s]2022-02-22 21:59:13,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4540/7350 [03:12<01:42, 27.34it/s]2022-02-22 21:59:13,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████               | 4545/7350 [03:12<01:45, 26.49it/s]2022-02-22 21:59:13,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:13,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4550/7350 [03:13<01:46, 26.27it/s]2022-02-22 21:59:14,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4555/7350 [03:13<01:48, 25.82it/s]2022-02-22 21:59:14,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4560/7350 [03:13<01:40, 27.88it/s]2022-02-22 21:59:14,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4565/7350 [03:13<01:41, 27.50it/s]2022-02-22 21:59:14,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▏              | 4570/7350 [03:13<01:40, 27.77it/s]2022-02-22 21:59:14,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4575/7350 [03:13<01:30, 30.52it/s]2022-02-22 21:59:14,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:14,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4579/7350 [03:14<01:35, 29.15it/s]2022-02-22 21:59:15,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4582/7350 [03:14<01:44, 26.43it/s]2022-02-22 21:59:15,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4586/7350 [03:14<01:47, 25.82it/s]2022-02-22 21:59:15,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4590/7350 [03:14<01:43, 26.76it/s]2022-02-22 21:59:15,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▎              | 4593/7350 [03:14<01:40, 27.33it/s]2022-02-22 21:59:15,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4596/7350 [03:14<01:57, 23.40it/s]2022-02-22 21:59:15,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4603/7350 [03:14<01:23, 32.80it/s]2022-02-22 21:59:15,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:15,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4607/7350 [03:15<01:44, 26.33it/s]2022-02-22 21:59:16,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4613/7350 [03:15<01:27, 31.41it/s]2022-02-22 21:59:16,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▍              | 4617/7350 [03:15<01:54, 23.77it/s]2022-02-22 21:59:16,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4624/7350 [03:15<01:25, 31.70it/s]2022-02-22 21:59:16,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4628/7350 [03:15<01:50, 24.73it/s]2022-02-22 21:59:16,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:16,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▌              | 4636/7350 [03:16<01:49, 24.68it/s]2022-02-22 21:59:17,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4641/7350 [03:16<01:37, 27.91it/s]2022-02-22 21:59:17,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4646/7350 [03:16<01:51, 24.32it/s]2022-02-22 21:59:17,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4652/7350 [03:16<01:35, 28.28it/s]2022-02-22 21:59:17,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4656/7350 [03:16<01:34, 28.46it/s]2022-02-22 21:59:17,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:17,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4660/7350 [03:17<01:30, 29.88it/s]2022-02-22 21:59:18,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|████████████████████████▋              | 4664/7350 [03:17<01:30, 29.59it/s]2022-02-22 21:59:18,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4668/7350 [03:17<01:42, 26.25it/s]2022-02-22 21:59:18,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4672/7350 [03:17<01:34, 28.48it/s]2022-02-22 21:59:18,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4676/7350 [03:17<01:32, 28.91it/s]2022-02-22 21:59:18,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4680/7350 [03:17<01:32, 28.79it/s]2022-02-22 21:59:18,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▊              | 4684/7350 [03:17<01:31, 29.13it/s]2022-02-22 21:59:18,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:18,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4688/7350 [03:18<01:43, 25.68it/s]2022-02-22 21:59:19,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4692/7350 [03:18<01:35, 27.84it/s]2022-02-22 21:59:19,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4695/7350 [03:18<01:35, 27.73it/s]2022-02-22 21:59:19,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4698/7350 [03:18<01:49, 24.24it/s]2022-02-22 21:59:19,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4703/7350 [03:18<01:36, 27.48it/s]2022-02-22 21:59:19,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 4708/7350 [03:18<01:39, 26.67it/s]2022-02-22 21:59:19,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4713/7350 [03:19<01:33, 28.19it/s]2022-02-22 21:59:19,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:19,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4718/7350 [03:19<01:34, 27.97it/s]2022-02-22 21:59:20,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4723/7350 [03:19<01:35, 27.54it/s]2022-02-22 21:59:20,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4728/7350 [03:19<01:31, 28.79it/s]2022-02-22 21:59:20,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 4732/7350 [03:19<01:30, 28.80it/s]2022-02-22 21:59:20,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▏             | 4736/7350 [03:19<01:24, 31.01it/s]2022-02-22 21:59:20,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▏             | 4740/7350 [03:19<01:29, 29.01it/s]2022-02-22 21:59:20,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:20,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4743/7350 [03:20<01:39, 26.17it/s]2022-02-22 21:59:21,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4747/7350 [03:20<01:30, 28.65it/s]2022-02-22 21:59:21,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4750/7350 [03:20<01:29, 28.93it/s]2022-02-22 21:59:21,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4753/7350 [03:20<01:52, 23.11it/s]2022-02-22 21:59:21,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 4758/7350 [03:20<01:34, 27.32it/s]2022-02-22 21:59:21,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4761/7350 [03:20<01:37, 26.66it/s]2022-02-22 21:59:21,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4765/7350 [03:20<01:40, 25.62it/s]2022-02-22 21:59:21,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:21,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4769/7350 [03:21<01:32, 27.78it/s]2022-02-22 21:59:22,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4773/7350 [03:21<01:29, 28.75it/s]2022-02-22 21:59:22,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4776/7350 [03:21<01:37, 26.46it/s]2022-02-22 21:59:22,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 4780/7350 [03:21<01:28, 28.98it/s]2022-02-22 21:59:22,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4783/7350 [03:21<01:40, 25.59it/s]2022-02-22 21:59:22,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4786/7350 [03:21<01:43, 24.70it/s]2022-02-22 21:59:22,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4791/7350 [03:21<01:26, 29.58it/s]2022-02-22 21:59:22,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4795/7350 [03:22<01:33, 27.34it/s]2022-02-22 21:59:22,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:22,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4799/7350 [03:22<01:30, 28.32it/s]2022-02-22 21:59:23,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4802/7350 [03:22<01:30, 28.19it/s]2022-02-22 21:59:23,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▍             | 4805/7350 [03:22<01:31, 27.83it/s]2022-02-22 21:59:23,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▌             | 4808/7350 [03:22<01:31, 27.76it/s]2022-02-22 21:59:23,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▌             | 4812/7350 [03:22<01:32, 27.33it/s]2022-02-22 21:59:23,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4815/7350 [03:22<01:36, 26.28it/s]2022-02-22 21:59:23,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4818/7350 [03:22<01:36, 26.18it/s]2022-02-22 21:59:23,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4822/7350 [03:23<01:37, 25.88it/s]2022-02-22 21:59:23,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:23,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▌             | 4827/7350 [03:23<01:34, 26.64it/s]2022-02-22 21:59:24,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4832/7350 [03:23<01:36, 26.03it/s]2022-02-22 21:59:24,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4836/7350 [03:23<01:31, 27.35it/s]2022-02-22 21:59:24,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4839/7350 [03:23<01:32, 27.06it/s]2022-02-22 21:59:24,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4842/7350 [03:23<01:35, 26.15it/s]2022-02-22 21:59:24,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4846/7350 [03:23<01:25, 29.44it/s]2022-02-22 21:59:24,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:24,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 4850/7350 [03:24<01:35, 26.10it/s]2022-02-22 21:59:25,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4854/7350 [03:24<01:28, 28.36it/s]2022-02-22 21:59:25,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4858/7350 [03:24<01:39, 24.93it/s]2022-02-22 21:59:25,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4863/7350 [03:24<01:34, 26.21it/s]2022-02-22 21:59:25,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4867/7350 [03:24<01:32, 26.94it/s]2022-02-22 21:59:25,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4870/7350 [03:24<01:41, 24.46it/s]2022-02-22 21:59:25,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:25,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 4875/7350 [03:25<01:42, 24.23it/s]2022-02-22 21:59:26,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▉             | 4880/7350 [03:25<01:27, 28.19it/s]2022-02-22 21:59:26,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▉             | 4885/7350 [03:25<01:41, 24.20it/s]2022-02-22 21:59:26,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|█████████████████████████▉             | 4890/7350 [03:25<01:25, 28.89it/s]2022-02-22 21:59:26,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|█████████████████████████▉             | 4895/7350 [03:25<01:36, 25.51it/s]2022-02-22 21:59:26,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4900/7350 [03:25<01:29, 27.30it/s]2022-02-22 21:59:26,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:26,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4905/7350 [03:26<01:33, 26.23it/s]2022-02-22 21:59:27,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4910/7350 [03:26<01:30, 26.92it/s]2022-02-22 21:59:27,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4915/7350 [03:26<01:28, 27.53it/s]2022-02-22 21:59:27,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4919/7350 [03:26<01:21, 29.71it/s]2022-02-22 21:59:27,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 4923/7350 [03:26<01:17, 31.41it/s]2022-02-22 21:59:27,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4927/7350 [03:26<01:29, 27.12it/s]2022-02-22 21:59:27,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4930/7350 [03:27<01:30, 26.73it/s]2022-02-22 21:59:27,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:27,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4935/7350 [03:27<01:21, 29.75it/s]2022-02-22 21:59:28,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4939/7350 [03:27<01:31, 26.30it/s]2022-02-22 21:59:28,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 4944/7350 [03:27<01:21, 29.37it/s]2022-02-22 21:59:28,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4948/7350 [03:27<01:32, 25.90it/s]2022-02-22 21:59:28,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4951/7350 [03:27<01:31, 26.11it/s]2022-02-22 21:59:28,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4955/7350 [03:27<01:23, 28.84it/s]2022-02-22 21:59:28,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:28,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 4959/7350 [03:28<01:38, 24.16it/s]2022-02-22 21:59:29,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4962/7350 [03:28<01:38, 24.16it/s]2022-02-22 21:59:29,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4966/7350 [03:28<01:26, 27.48it/s]2022-02-22 21:59:29,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▎            | 4969/7350 [03:28<01:33, 25.51it/s]2022-02-22 21:59:29,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4973/7350 [03:28<01:30, 26.38it/s]2022-02-22 21:59:29,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4978/7350 [03:28<01:22, 28.87it/s]2022-02-22 21:59:29,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4981/7350 [03:28<01:25, 27.84it/s]2022-02-22 21:59:29,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4984/7350 [03:29<01:29, 26.39it/s]2022-02-22 21:59:29,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:29,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4988/7350 [03:29<01:23, 28.17it/s]2022-02-22 21:59:30,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4991/7350 [03:29<01:26, 27.13it/s]2022-02-22 21:59:30,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 4994/7350 [03:29<01:32, 25.47it/s]2022-02-22 21:59:30,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 4998/7350 [03:29<01:22, 28.63it/s]2022-02-22 21:59:30,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5001/7350 [03:29<01:21, 28.71it/s]2022-02-22 21:59:30,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5004/7350 [03:29<01:37, 24.10it/s]2022-02-22 21:59:30,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5010/7350 [03:29<01:19, 29.44it/s]2022-02-22 21:59:30,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:30,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 5014/7350 [03:30<01:24, 27.74it/s]2022-02-22 21:59:31,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5018/7350 [03:30<01:23, 27.77it/s]2022-02-22 21:59:31,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5023/7350 [03:30<01:13, 31.60it/s]2022-02-22 21:59:31,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5027/7350 [03:30<01:21, 28.61it/s]2022-02-22 21:59:31,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5030/7350 [03:30<01:34, 24.52it/s]2022-02-22 21:59:31,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 5034/7350 [03:30<01:23, 27.73it/s]2022-02-22 21:59:31,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▋            | 5037/7350 [03:30<01:29, 25.89it/s]2022-02-22 21:59:31,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:31,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▋            | 5040/7350 [03:31<01:27, 26.37it/s]2022-02-22 21:59:32,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5043/7350 [03:31<01:30, 25.46it/s]2022-02-22 21:59:32,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5047/7350 [03:31<01:30, 25.53it/s]2022-02-22 21:59:32,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5051/7350 [03:31<01:29, 25.82it/s]2022-02-22 21:59:32,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5054/7350 [03:31<01:28, 25.99it/s]2022-02-22 21:59:32,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5058/7350 [03:31<01:18, 29.37it/s]2022-02-22 21:59:32,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 5062/7350 [03:31<01:27, 26.06it/s]2022-02-22 21:59:32,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:32,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5067/7350 [03:32<01:18, 29.05it/s]2022-02-22 21:59:33,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5071/7350 [03:32<01:23, 27.31it/s]2022-02-22 21:59:33,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5074/7350 [03:32<01:24, 26.84it/s]2022-02-22 21:59:33,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5078/7350 [03:32<01:16, 29.57it/s]2022-02-22 21:59:33,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5082/7350 [03:32<01:18, 29.07it/s]2022-02-22 21:59:33,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 5085/7350 [03:32<01:26, 26.21it/s]2022-02-22 21:59:33,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5090/7350 [03:32<01:19, 28.59it/s]2022-02-22 21:59:33,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:33,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5093/7350 [03:33<01:31, 24.58it/s]2022-02-22 21:59:34,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5097/7350 [03:33<01:25, 26.39it/s]2022-02-22 21:59:34,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5103/7350 [03:33<01:23, 26.92it/s]2022-02-22 21:59:34,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 5107/7350 [03:33<01:21, 27.58it/s]2022-02-22 21:59:34,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5113/7350 [03:33<01:20, 27.65it/s]2022-02-22 21:59:34,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5116/7350 [03:33<01:20, 27.59it/s]2022-02-22 21:59:34,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5121/7350 [03:33<01:10, 31.52it/s]2022-02-22 21:59:34,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:34,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5125/7350 [03:34<01:28, 25.16it/s]2022-02-22 21:59:35,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5131/7350 [03:34<01:09, 31.76it/s]2022-02-22 21:59:35,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 5135/7350 [03:34<01:27, 25.38it/s]2022-02-22 21:59:35,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5139/7350 [03:34<01:20, 27.45it/s]2022-02-22 21:59:35,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5143/7350 [03:34<01:19, 27.63it/s]2022-02-22 21:59:35,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5147/7350 [03:35<01:23, 26.23it/s]2022-02-22 21:59:35,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:35,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5153/7350 [03:35<01:22, 26.56it/s]2022-02-22 21:59:36,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▎           | 5156/7350 [03:35<01:25, 25.66it/s]2022-02-22 21:59:36,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5162/7350 [03:35<01:08, 32.13it/s]2022-02-22 21:59:36,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5166/7350 [03:35<01:33, 23.39it/s]2022-02-22 21:59:36,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5173/7350 [03:35<01:13, 29.55it/s]2022-02-22 21:59:36,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:36,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▍           | 5177/7350 [03:36<01:25, 25.36it/s]2022-02-22 21:59:37,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▍           | 5182/7350 [03:36<01:14, 29.19it/s]2022-02-22 21:59:37,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5186/7350 [03:36<01:22, 26.08it/s]2022-02-22 21:59:37,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5191/7350 [03:36<01:14, 28.85it/s]2022-02-22 21:59:37,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5195/7350 [03:36<01:23, 25.95it/s]2022-02-22 21:59:37,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5199/7350 [03:36<01:15, 28.50it/s]2022-02-22 21:59:37,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▌           | 5203/7350 [03:36<01:09, 31.01it/s]2022-02-22 21:59:37,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:37,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5207/7350 [03:37<01:22, 25.86it/s]2022-02-22 21:59:38,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5211/7350 [03:37<01:17, 27.46it/s]2022-02-22 21:59:38,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5215/7350 [03:37<01:22, 25.98it/s]2022-02-22 21:59:38,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5219/7350 [03:37<01:23, 25.62it/s]2022-02-22 21:59:38,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5223/7350 [03:37<01:15, 28.34it/s]2022-02-22 21:59:38,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▋           | 5227/7350 [03:37<01:20, 26.21it/s]2022-02-22 21:59:38,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:38,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5231/7350 [03:38<01:14, 28.43it/s]2022-02-22 21:59:39,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5235/7350 [03:38<01:18, 26.84it/s]2022-02-22 21:59:39,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5239/7350 [03:38<01:18, 26.96it/s]2022-02-22 21:59:39,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5243/7350 [03:38<01:30, 23.16it/s]2022-02-22 21:59:39,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5247/7350 [03:38<01:20, 26.17it/s]2022-02-22 21:59:39,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 5252/7350 [03:38<01:06, 31.36it/s]2022-02-22 21:59:39,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:39,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5256/7350 [03:39<01:24, 24.83it/s]2022-02-22 21:59:40,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5262/7350 [03:39<01:09, 30.06it/s]2022-02-22 21:59:40,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5266/7350 [03:39<01:15, 27.44it/s]2022-02-22 21:59:40,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5270/7350 [03:39<01:13, 28.31it/s]2022-02-22 21:59:40,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 5274/7350 [03:39<01:17, 26.64it/s]2022-02-22 21:59:40,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5278/7350 [03:39<01:11, 28.98it/s]2022-02-22 21:59:40,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5282/7350 [03:39<01:07, 30.49it/s]2022-02-22 21:59:40,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:40,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5286/7350 [03:40<01:15, 27.51it/s]2022-02-22 21:59:41,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5289/7350 [03:40<01:16, 26.98it/s]2022-02-22 21:59:41,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5293/7350 [03:40<01:20, 25.57it/s]2022-02-22 21:59:41,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5297/7350 [03:40<01:15, 27.07it/s]2022-02-22 21:59:41,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 5300/7350 [03:40<01:22, 24.92it/s]2022-02-22 21:59:41,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5304/7350 [03:40<01:15, 27.08it/s]2022-02-22 21:59:41,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5308/7350 [03:40<01:08, 29.85it/s]2022-02-22 21:59:41,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5312/7350 [03:41<01:11, 28.47it/s]2022-02-22 21:59:41,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:41,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5315/7350 [03:41<01:10, 28.67it/s]2022-02-22 21:59:42,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5319/7350 [03:41<01:05, 30.81it/s]2022-02-22 21:59:42,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 5323/7350 [03:41<01:21, 24.93it/s]2022-02-22 21:59:42,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▎          | 5328/7350 [03:41<01:09, 29.04it/s]2022-02-22 21:59:42,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5332/7350 [03:41<01:20, 25.02it/s]2022-02-22 21:59:42,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5336/7350 [03:41<01:12, 27.61it/s]2022-02-22 21:59:42,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:42,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5340/7350 [03:42<01:22, 24.31it/s]2022-02-22 21:59:43,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 5346/7350 [03:42<01:10, 28.49it/s]2022-02-22 21:59:43,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5350/7350 [03:42<01:18, 25.61it/s]2022-02-22 21:59:43,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5354/7350 [03:42<01:12, 27.70it/s]2022-02-22 21:59:43,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5358/7350 [03:42<01:07, 29.50it/s]2022-02-22 21:59:43,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5362/7350 [03:42<01:12, 27.42it/s]2022-02-22 21:59:43,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5366/7350 [03:42<01:06, 29.89it/s]2022-02-22 21:59:43,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:43,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▍          | 5370/7350 [03:43<01:19, 25.03it/s]2022-02-22 21:59:44,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5375/7350 [03:43<01:07, 29.41it/s]2022-02-22 21:59:44,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5379/7350 [03:43<01:16, 25.74it/s]2022-02-22 21:59:44,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5384/7350 [03:43<01:16, 25.61it/s]2022-02-22 21:59:44,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5388/7350 [03:43<01:13, 26.79it/s]2022-02-22 21:59:44,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▌          | 5391/7350 [03:43<01:14, 26.29it/s]2022-02-22 21:59:44,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:44,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▋          | 5396/7350 [03:44<01:08, 28.34it/s]2022-02-22 21:59:45,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▋          | 5399/7350 [03:44<01:08, 28.41it/s]2022-02-22 21:59:45,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▋          | 5402/7350 [03:44<01:18, 24.79it/s]2022-02-22 21:59:45,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5408/7350 [03:44<01:11, 27.01it/s]2022-02-22 21:59:45,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5411/7350 [03:44<01:29, 21.72it/s]2022-02-22 21:59:45,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 5418/7350 [03:44<01:06, 29.21it/s]2022-02-22 21:59:45,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:45,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5422/7350 [03:45<01:13, 26.39it/s]2022-02-22 21:59:46,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5429/7350 [03:45<01:02, 30.84it/s]2022-02-22 21:59:46,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5433/7350 [03:45<01:14, 25.84it/s]2022-02-22 21:59:46,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▊          | 5439/7350 [03:45<01:05, 29.15it/s]2022-02-22 21:59:46,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5443/7350 [03:45<01:19, 23.97it/s]2022-02-22 21:59:46,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:46,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5449/7350 [03:46<01:06, 28.54it/s]2022-02-22 21:59:47,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5453/7350 [03:46<01:18, 24.28it/s]2022-02-22 21:59:47,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5459/7350 [03:46<01:03, 29.70it/s]2022-02-22 21:59:47,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 5463/7350 [03:46<01:14, 25.28it/s]2022-02-22 21:59:47,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████          | 5469/7350 [03:46<00:59, 31.52it/s]2022-02-22 21:59:47,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:47,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████          | 5473/7350 [03:47<01:14, 25.28it/s]2022-02-22 21:59:47,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████          | 5480/7350 [03:47<01:05, 28.56it/s]2022-02-22 21:59:48,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████          | 5484/7350 [03:47<01:17, 24.22it/s]2022-02-22 21:59:48,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5490/7350 [03:47<01:03, 29.42it/s]2022-02-22 21:59:48,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5494/7350 [03:47<01:13, 25.38it/s]2022-02-22 21:59:48,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5500/7350 [03:47<01:01, 30.25it/s]2022-02-22 21:59:48,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:48,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5504/7350 [03:48<01:13, 25.04it/s]2022-02-22 21:59:49,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▏         | 5510/7350 [03:48<01:00, 30.41it/s]2022-02-22 21:59:49,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5514/7350 [03:48<01:13, 25.13it/s]2022-02-22 21:59:49,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5520/7350 [03:48<01:00, 30.10it/s]2022-02-22 21:59:49,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5524/7350 [03:48<01:11, 25.58it/s]2022-02-22 21:59:49,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:49,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5530/7350 [03:49<01:01, 29.66it/s]2022-02-22 21:59:49,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▎         | 5534/7350 [03:49<01:15, 24.04it/s]2022-02-22 21:59:50,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5540/7350 [03:49<01:01, 29.37it/s]2022-02-22 21:59:50,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5544/7350 [03:49<01:08, 26.30it/s]2022-02-22 21:59:50,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▍         | 5548/7350 [03:49<01:04, 28.05it/s]2022-02-22 21:59:50,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▍         | 5552/7350 [03:49<01:11, 25.19it/s]2022-02-22 21:59:50,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:50,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▍         | 5557/7350 [03:50<01:04, 27.91it/s]2022-02-22 21:59:51,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5561/7350 [03:50<01:00, 29.63it/s]2022-02-22 21:59:51,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5565/7350 [03:50<01:06, 27.02it/s]2022-02-22 21:59:51,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5568/7350 [03:50<01:08, 26.20it/s]2022-02-22 21:59:51,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5572/7350 [03:50<01:10, 25.14it/s]2022-02-22 21:59:51,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5577/7350 [03:50<01:04, 27.66it/s]2022-02-22 21:59:51,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▌         | 5582/7350 [03:51<01:08, 25.92it/s]2022-02-22 21:59:51,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:51,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5587/7350 [03:51<01:01, 28.67it/s]2022-02-22 21:59:52,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5592/7350 [03:51<01:08, 25.61it/s]2022-02-22 21:59:52,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5597/7350 [03:51<01:00, 28.82it/s]2022-02-22 21:59:52,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▋         | 5602/7350 [03:51<01:03, 27.70it/s]2022-02-22 21:59:52,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5607/7350 [03:51<01:01, 28.39it/s]2022-02-22 21:59:52,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:52,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5612/7350 [03:52<01:03, 27.27it/s]2022-02-22 21:59:53,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5616/7350 [03:52<01:01, 28.36it/s]2022-02-22 21:59:53,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|█████████████████████████████▊         | 5621/7350 [03:52<00:55, 31.15it/s]2022-02-22 21:59:53,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▊         | 5625/7350 [03:52<00:59, 29.16it/s]2022-02-22 21:59:53,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▊         | 5629/7350 [03:52<01:05, 26.37it/s]2022-02-22 21:59:53,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5633/7350 [03:52<01:03, 26.97it/s]2022-02-22 21:59:53,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5637/7350 [03:52<01:02, 27.35it/s]2022-02-22 21:59:53,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:53,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5641/7350 [03:53<00:57, 29.94it/s]2022-02-22 21:59:54,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5645/7350 [03:53<00:58, 29.14it/s]2022-02-22 21:59:54,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5649/7350 [03:53<01:01, 27.45it/s]2022-02-22 21:59:54,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 5652/7350 [03:53<01:08, 24.92it/s]2022-02-22 21:59:54,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5657/7350 [03:53<01:03, 26.78it/s]2022-02-22 21:59:54,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5661/7350 [03:53<00:56, 29.64it/s]2022-02-22 21:59:54,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5665/7350 [03:53<00:57, 29.12it/s]2022-02-22 21:59:54,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:54,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5669/7350 [03:54<01:00, 27.76it/s]2022-02-22 21:59:55,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5672/7350 [03:54<01:10, 23.75it/s]2022-02-22 21:59:55,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 5677/7350 [03:54<01:00, 27.59it/s]2022-02-22 21:59:55,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5681/7350 [03:54<00:59, 28.14it/s]2022-02-22 21:59:55,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5686/7350 [03:54<00:55, 30.19it/s]2022-02-22 21:59:55,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5690/7350 [03:54<01:02, 26.55it/s]2022-02-22 21:59:55,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 5694/7350 [03:55<00:58, 28.47it/s]2022-02-22 21:59:55,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:55,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▏        | 5697/7350 [03:55<01:04, 25.75it/s]2022-02-22 21:59:56,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5701/7350 [03:55<00:57, 28.47it/s]2022-02-22 21:59:56,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5704/7350 [03:55<00:57, 28.56it/s]2022-02-22 21:59:56,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5707/7350 [03:55<01:04, 25.47it/s]2022-02-22 21:59:56,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5711/7350 [03:55<00:58, 28.03it/s]2022-02-22 21:59:56,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5714/7350 [03:55<00:59, 27.68it/s]2022-02-22 21:59:56,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5717/7350 [03:55<01:03, 25.62it/s]2022-02-22 21:59:56,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5721/7350 [03:56<00:56, 28.76it/s]2022-02-22 21:59:56,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:56,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 5724/7350 [03:56<00:56, 28.74it/s]2022-02-22 21:59:57,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5727/7350 [03:56<01:07, 23.96it/s]2022-02-22 21:59:57,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5734/7350 [03:56<00:52, 31.04it/s]2022-02-22 21:59:57,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5738/7350 [03:56<01:08, 23.41it/s]2022-02-22 21:59:57,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▍        | 5745/7350 [03:56<00:54, 29.27it/s]2022-02-22 21:59:57,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:57,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5749/7350 [03:57<00:59, 26.74it/s]2022-02-22 21:59:58,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5755/7350 [03:57<00:57, 27.61it/s]2022-02-22 21:59:58,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5758/7350 [03:57<01:02, 25.49it/s]2022-02-22 21:59:58,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5765/7350 [03:57<00:56, 28.10it/s]2022-02-22 21:59:58,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▌        | 5768/7350 [03:57<01:03, 24.93it/s]2022-02-22 21:59:58,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5775/7350 [03:58<00:55, 28.41it/s]2022-02-22 21:59:58,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:58,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5778/7350 [03:58<00:56, 27.85it/s]2022-02-22 21:59:59,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5781/7350 [03:58<01:03, 24.81it/s]2022-02-22 21:59:59,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5787/7350 [03:58<00:50, 30.72it/s]2022-02-22 21:59:59,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▋        | 5791/7350 [03:58<00:58, 26.57it/s]2022-02-22 21:59:59,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5797/7350 [03:58<00:51, 30.18it/s]2022-02-22 21:59:59,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5801/7350 [03:58<01:00, 25.52it/s]2022-02-22 21:59:59,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:59:59,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5808/7350 [03:59<00:52, 29.10it/s]2022-02-22 22:00:00,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5812/7350 [03:59<00:59, 25.93it/s]2022-02-22 22:00:00,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▊        | 5818/7350 [03:59<00:55, 27.59it/s]2022-02-22 22:00:00,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5821/7350 [03:59<01:00, 25.20it/s]2022-02-22 22:00:00,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5827/7350 [03:59<00:51, 29.82it/s]2022-02-22 22:00:00,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:00,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5831/7350 [04:00<00:59, 25.50it/s]2022-02-22 22:00:01,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5837/7350 [04:00<00:50, 29.98it/s]2022-02-22 22:00:01,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|██████████████████████████████▉        | 5841/7350 [04:00<00:59, 25.22it/s]2022-02-22 22:00:01,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5847/7350 [04:00<00:49, 30.25it/s]2022-02-22 22:00:01,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5851/7350 [04:00<00:54, 27.62it/s]2022-02-22 22:00:01,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5855/7350 [04:00<00:49, 29.92it/s]2022-02-22 22:00:01,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:01,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5859/7350 [04:01<00:53, 28.06it/s]2022-02-22 22:00:01,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████        | 5863/7350 [04:01<00:58, 25.50it/s]2022-02-22 22:00:02,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5867/7350 [04:01<00:52, 28.24it/s]2022-02-22 22:00:02,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5871/7350 [04:01<00:57, 25.76it/s]2022-02-22 22:00:02,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5875/7350 [04:01<00:55, 26.70it/s]2022-02-22 22:00:02,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5878/7350 [04:01<00:55, 26.53it/s]2022-02-22 22:00:02,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5881/7350 [04:01<00:58, 25.13it/s]2022-02-22 22:00:02,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5885/7350 [04:02<00:53, 27.55it/s]2022-02-22 22:00:02,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:02,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▏       | 5888/7350 [04:02<00:54, 26.70it/s]2022-02-22 22:00:03,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5892/7350 [04:02<00:53, 27.28it/s]2022-02-22 22:00:03,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5895/7350 [04:02<00:53, 27.36it/s]2022-02-22 22:00:03,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5898/7350 [04:02<00:52, 27.49it/s]2022-02-22 22:00:03,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5902/7350 [04:02<00:56, 25.72it/s]2022-02-22 22:00:03,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5907/7350 [04:02<00:51, 28.10it/s]2022-02-22 22:00:03,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▎       | 5911/7350 [04:02<00:46, 30.68it/s]2022-02-22 22:00:03,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:03,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▍       | 5915/7350 [04:03<00:53, 26.73it/s]2022-02-22 22:00:04,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5918/7350 [04:03<00:52, 27.42it/s]2022-02-22 22:00:04,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5922/7350 [04:03<00:53, 26.93it/s]2022-02-22 22:00:04,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5925/7350 [04:03<00:57, 24.93it/s]2022-02-22 22:00:04,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5930/7350 [04:03<00:55, 25.74it/s]2022-02-22 22:00:04,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▍       | 5934/7350 [04:03<00:54, 25.94it/s]2022-02-22 22:00:04,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5939/7350 [04:04<00:49, 28.36it/s]2022-02-22 22:00:04,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:04,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5943/7350 [04:04<00:51, 27.35it/s]2022-02-22 22:00:05,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5946/7350 [04:04<00:53, 26.33it/s]2022-02-22 22:00:05,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5950/7350 [04:04<00:48, 28.91it/s]2022-02-22 22:00:05,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5953/7350 [04:04<00:49, 27.95it/s]2022-02-22 22:00:05,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5956/7350 [04:04<00:50, 27.59it/s]2022-02-22 22:00:05,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▌       | 5959/7350 [04:04<00:50, 27.75it/s]2022-02-22 22:00:05,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5963/7350 [04:04<00:49, 27.83it/s]2022-02-22 22:00:05,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:05,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5966/7350 [04:05<00:52, 26.23it/s]2022-02-22 22:00:05,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5970/7350 [04:05<00:53, 25.89it/s]2022-02-22 22:00:06,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5974/7350 [04:05<00:52, 26.37it/s]2022-02-22 22:00:06,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5979/7350 [04:05<00:45, 30.14it/s]2022-02-22 22:00:06,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▋       | 5983/7350 [04:05<00:46, 29.20it/s]2022-02-22 22:00:06,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▊       | 5986/7350 [04:05<00:49, 27.78it/s]2022-02-22 22:00:06,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 5991/7350 [04:05<00:45, 29.83it/s]2022-02-22 22:00:06,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:06,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 5994/7350 [04:06<00:54, 24.92it/s]2022-02-22 22:00:07,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 5998/7350 [04:06<00:50, 26.80it/s]2022-02-22 22:00:07,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 6003/7350 [04:06<00:47, 28.35it/s]2022-02-22 22:00:07,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 6006/7350 [04:06<00:49, 27.37it/s]2022-02-22 22:00:07,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6011/7350 [04:06<00:45, 29.31it/s]2022-02-22 22:00:07,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6014/7350 [04:06<00:52, 25.57it/s]2022-02-22 22:00:07,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6018/7350 [04:06<00:53, 24.95it/s]2022-02-22 22:00:07,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:07,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6023/7350 [04:07<00:44, 29.59it/s]2022-02-22 22:00:08,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 6027/7350 [04:07<00:46, 28.19it/s]2022-02-22 22:00:08,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6031/7350 [04:07<00:43, 30.48it/s]2022-02-22 22:00:08,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6035/7350 [04:07<00:50, 25.96it/s]2022-02-22 22:00:08,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6039/7350 [04:07<00:46, 28.32it/s]2022-02-22 22:00:08,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6043/7350 [04:07<00:48, 27.12it/s]2022-02-22 22:00:08,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6046/7350 [04:07<00:48, 26.77it/s]2022-02-22 22:00:08,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:08,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6050/7350 [04:08<00:44, 29.52it/s]2022-02-22 22:00:09,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 6054/7350 [04:08<00:45, 28.58it/s]2022-02-22 22:00:09,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████▏      | 6058/7350 [04:08<00:42, 30.49it/s]2022-02-22 22:00:09,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████▏      | 6062/7350 [04:08<00:55, 23.18it/s]2022-02-22 22:00:09,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6069/7350 [04:08<00:48, 26.31it/s]2022-02-22 22:00:09,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6072/7350 [04:08<00:51, 24.70it/s]2022-02-22 22:00:09,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:09,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 6077/7350 [04:09<00:42, 29.69it/s]2022-02-22 22:00:09,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6081/7350 [04:09<00:54, 23.19it/s]2022-02-22 22:00:10,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6089/7350 [04:09<00:43, 28.95it/s]2022-02-22 22:00:10,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6093/7350 [04:09<00:46, 26.97it/s]2022-02-22 22:00:10,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 6099/7350 [04:09<00:42, 29.65it/s]2022-02-22 22:00:10,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:10,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6103/7350 [04:10<00:46, 26.70it/s]2022-02-22 22:00:11,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6106/7350 [04:10<00:47, 26.36it/s]2022-02-22 22:00:11,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6110/7350 [04:10<00:42, 29.04it/s]2022-02-22 22:00:11,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6114/7350 [04:10<00:43, 28.46it/s]2022-02-22 22:00:11,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6118/7350 [04:10<00:45, 26.96it/s]2022-02-22 22:00:11,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 6122/7350 [04:10<00:47, 25.73it/s]2022-02-22 22:00:11,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6128/7350 [04:10<00:39, 30.85it/s]2022-02-22 22:00:11,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:11,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6132/7350 [04:11<00:48, 25.07it/s]2022-02-22 22:00:12,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 6136/7350 [04:11<00:44, 27.40it/s]2022-02-22 22:00:12,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 6140/7350 [04:11<00:40, 30.06it/s]2022-02-22 22:00:12,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 6144/7350 [04:11<00:44, 27.11it/s]2022-02-22 22:00:12,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 6147/7350 [04:11<00:46, 25.95it/s]2022-02-22 22:00:12,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6152/7350 [04:11<00:39, 30.25it/s]2022-02-22 22:00:12,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6156/7350 [04:11<00:37, 31.69it/s]2022-02-22 22:00:12,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:12,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6160/7350 [04:12<00:42, 28.12it/s]2022-02-22 22:00:13,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6163/7350 [04:12<00:44, 26.50it/s]2022-02-22 22:00:13,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6167/7350 [04:12<00:41, 28.71it/s]2022-02-22 22:00:13,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 6170/7350 [04:12<00:43, 27.16it/s]2022-02-22 22:00:13,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6173/7350 [04:12<00:42, 27.45it/s]2022-02-22 22:00:13,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6177/7350 [04:12<00:40, 29.22it/s]2022-02-22 22:00:13,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6180/7350 [04:12<00:49, 23.59it/s]2022-02-22 22:00:13,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6186/7350 [04:12<00:41, 27.98it/s]2022-02-22 22:00:13,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:13,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6190/7350 [04:13<00:38, 29.96it/s]2022-02-22 22:00:14,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 6194/7350 [04:13<00:41, 28.12it/s]2022-02-22 22:00:14,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6197/7350 [04:13<00:42, 27.39it/s]2022-02-22 22:00:14,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6201/7350 [04:13<00:45, 25.52it/s]2022-02-22 22:00:14,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6206/7350 [04:13<00:41, 27.66it/s]2022-02-22 22:00:14,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 6209/7350 [04:13<00:42, 27.00it/s]2022-02-22 22:00:14,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|████████████████████████████████▉      | 6212/7350 [04:13<00:42, 26.66it/s]2022-02-22 22:00:14,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:14,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|████████████████████████████████▉      | 6216/7350 [04:14<00:38, 29.76it/s]2022-02-22 22:00:15,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6220/7350 [04:14<00:40, 27.91it/s]2022-02-22 22:00:15,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6223/7350 [04:14<00:43, 26.08it/s]2022-02-22 22:00:15,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6228/7350 [04:14<00:40, 27.44it/s]2022-02-22 22:00:15,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6231/7350 [04:14<00:43, 25.78it/s]2022-02-22 22:00:15,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6234/7350 [04:14<00:43, 25.70it/s]2022-02-22 22:00:15,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6238/7350 [04:14<00:39, 28.12it/s]2022-02-22 22:00:15,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:15,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 6241/7350 [04:15<00:42, 25.80it/s]2022-02-22 22:00:16,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6245/7350 [04:15<00:39, 28.20it/s]2022-02-22 22:00:16,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6248/7350 [04:15<00:42, 26.22it/s]2022-02-22 22:00:16,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6251/7350 [04:15<00:40, 26.86it/s]2022-02-22 22:00:16,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6256/7350 [04:15<00:36, 30.00it/s]2022-02-22 22:00:16,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6260/7350 [04:15<00:39, 27.46it/s]2022-02-22 22:00:16,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 6263/7350 [04:15<00:39, 27.42it/s]2022-02-22 22:00:16,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:16,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6268/7350 [04:16<00:40, 26.46it/s]2022-02-22 22:00:16,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6271/7350 [04:16<00:42, 25.69it/s]2022-02-22 22:00:17,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6275/7350 [04:16<00:38, 27.71it/s]2022-02-22 22:00:17,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6278/7350 [04:16<00:38, 27.59it/s]2022-02-22 22:00:17,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 6281/7350 [04:16<00:46, 22.78it/s]2022-02-22 22:00:17,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▎     | 6288/7350 [04:16<00:35, 30.25it/s]2022-02-22 22:00:17,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6292/7350 [04:16<00:43, 24.25it/s]2022-02-22 22:00:17,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:17,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6298/7350 [04:17<00:34, 30.72it/s]2022-02-22 22:00:18,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6302/7350 [04:17<00:40, 25.69it/s]2022-02-22 22:00:18,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6306/7350 [04:17<00:36, 28.25it/s]2022-02-22 22:00:18,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 6310/7350 [04:17<00:35, 29.34it/s]2022-02-22 22:00:18,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6314/7350 [04:17<00:42, 24.56it/s]2022-02-22 22:00:18,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6320/7350 [04:17<00:34, 30.05it/s]2022-02-22 22:00:18,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:18,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6324/7350 [04:18<00:39, 25.80it/s]2022-02-22 22:00:19,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6327/7350 [04:18<00:39, 25.90it/s]2022-02-22 22:00:19,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6331/7350 [04:18<00:37, 27.12it/s]2022-02-22 22:00:19,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 6335/7350 [04:18<00:40, 25.21it/s]2022-02-22 22:00:19,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6339/7350 [04:18<00:38, 26.13it/s]2022-02-22 22:00:19,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6343/7350 [04:18<00:35, 28.48it/s]2022-02-22 22:00:19,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6346/7350 [04:18<00:39, 25.50it/s]2022-02-22 22:00:19,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:19,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6351/7350 [04:19<00:38, 26.27it/s]2022-02-22 22:00:20,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 6355/7350 [04:19<00:38, 26.04it/s]2022-02-22 22:00:20,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6361/7350 [04:19<00:30, 32.44it/s]2022-02-22 22:00:20,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6365/7350 [04:19<00:41, 23.57it/s]2022-02-22 22:00:20,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6373/7350 [04:19<00:33, 29.49it/s]2022-02-22 22:00:20,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:20,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6377/7350 [04:20<00:39, 24.42it/s]2022-02-22 22:00:21,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 6383/7350 [04:20<00:31, 30.50it/s]2022-02-22 22:00:21,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6387/7350 [04:20<00:37, 25.62it/s]2022-02-22 22:00:21,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6393/7350 [04:20<00:30, 30.88it/s]2022-02-22 22:00:21,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6397/7350 [04:20<00:38, 25.01it/s]2022-02-22 22:00:21,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 6404/7350 [04:21<00:34, 27.46it/s]2022-02-22 22:00:21,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:21,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6408/7350 [04:21<00:36, 25.93it/s]2022-02-22 22:00:22,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6414/7350 [04:21<00:34, 27.12it/s]2022-02-22 22:00:22,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6417/7350 [04:21<00:34, 26.71it/s]2022-02-22 22:00:22,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6424/7350 [04:21<00:33, 27.84it/s]2022-02-22 22:00:22,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 6428/7350 [04:21<00:31, 29.23it/s]2022-02-22 22:00:22,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6432/7350 [04:22<00:32, 28.62it/s]2022-02-22 22:00:22,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:22,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6435/7350 [04:22<00:33, 27.13it/s]2022-02-22 22:00:23,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6439/7350 [04:22<00:31, 28.69it/s]2022-02-22 22:00:23,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6442/7350 [04:22<00:34, 25.99it/s]2022-02-22 22:00:23,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6446/7350 [04:22<00:33, 27.07it/s]2022-02-22 22:00:23,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 6450/7350 [04:22<00:36, 24.96it/s]2022-02-22 22:00:23,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6455/7350 [04:22<00:31, 28.10it/s]2022-02-22 22:00:23,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:23,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6459/7350 [04:23<00:30, 28.97it/s]2022-02-22 22:00:24,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6462/7350 [04:23<00:32, 27.11it/s]2022-02-22 22:00:24,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6465/7350 [04:23<00:34, 25.36it/s]2022-02-22 22:00:24,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6471/7350 [04:23<00:30, 28.84it/s]2022-02-22 22:00:24,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 6475/7350 [04:23<00:31, 27.80it/s]2022-02-22 22:00:24,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6479/7350 [04:23<00:31, 27.88it/s]2022-02-22 22:00:24,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6482/7350 [04:23<00:30, 28.17it/s]2022-02-22 22:00:24,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6485/7350 [04:24<00:33, 26.21it/s]2022-02-22 22:00:24,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:24,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6490/7350 [04:24<00:30, 27.95it/s]2022-02-22 22:00:25,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6494/7350 [04:24<00:30, 28.29it/s]2022-02-22 22:00:25,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6497/7350 [04:24<00:33, 25.21it/s]2022-02-22 22:00:25,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 6501/7350 [04:24<00:31, 27.04it/s]2022-02-22 22:00:25,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▌    | 6504/7350 [04:24<00:31, 27.28it/s]2022-02-22 22:00:25,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6507/7350 [04:24<00:31, 27.06it/s]2022-02-22 22:00:25,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6512/7350 [04:24<00:28, 29.17it/s]2022-02-22 22:00:25,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:25,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6515/7350 [04:25<00:30, 26.96it/s]2022-02-22 22:00:26,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6518/7350 [04:25<00:32, 25.75it/s]2022-02-22 22:00:26,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 6523/7350 [04:25<00:26, 30.74it/s]2022-02-22 22:00:26,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6527/7350 [04:25<00:30, 27.01it/s]2022-02-22 22:00:26,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6530/7350 [04:25<00:30, 27.00it/s]2022-02-22 22:00:26,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6534/7350 [04:25<00:33, 24.57it/s]2022-02-22 22:00:26,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6539/7350 [04:25<00:29, 27.10it/s]2022-02-22 22:00:26,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:26,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6544/7350 [04:26<00:27, 29.41it/s]2022-02-22 22:00:27,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 6548/7350 [04:26<00:27, 28.76it/s]2022-02-22 22:00:27,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6551/7350 [04:26<00:29, 26.79it/s]2022-02-22 22:00:27,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6555/7350 [04:26<00:31, 24.86it/s]2022-02-22 22:00:27,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6559/7350 [04:26<00:29, 26.67it/s]2022-02-22 22:00:27,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6563/7350 [04:26<00:26, 29.60it/s]2022-02-22 22:00:27,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:27,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6567/7350 [04:27<00:29, 26.68it/s]2022-02-22 22:00:28,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 6570/7350 [04:27<00:30, 25.79it/s]2022-02-22 22:00:28,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▉    | 6575/7350 [04:27<00:28, 26.73it/s]2022-02-22 22:00:28,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6579/7350 [04:27<00:27, 28.13it/s]2022-02-22 22:00:28,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6582/7350 [04:27<00:26, 28.48it/s]2022-02-22 22:00:28,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6585/7350 [04:27<00:28, 27.06it/s]2022-02-22 22:00:28,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6588/7350 [04:27<00:27, 27.39it/s]2022-02-22 22:00:28,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6592/7350 [04:27<00:25, 29.74it/s]2022-02-22 22:00:28,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:28,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 6596/7350 [04:28<00:24, 30.28it/s]2022-02-22 22:00:28,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6600/7350 [04:28<00:27, 27.15it/s]2022-02-22 22:00:29,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6603/7350 [04:28<00:29, 25.27it/s]2022-02-22 22:00:29,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6607/7350 [04:28<00:28, 26.44it/s]2022-02-22 22:00:29,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6610/7350 [04:28<00:28, 26.42it/s]2022-02-22 22:00:29,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6614/7350 [04:28<00:27, 27.21it/s]2022-02-22 22:00:29,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 6618/7350 [04:28<00:27, 26.58it/s]2022-02-22 22:00:29,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:29,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6623/7350 [04:28<00:23, 31.30it/s]2022-02-22 22:00:30,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6627/7350 [04:29<00:22, 31.80it/s]2022-02-22 22:00:30,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6631/7350 [04:29<00:26, 27.21it/s]2022-02-22 22:00:30,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6634/7350 [04:29<00:29, 24.56it/s]2022-02-22 22:00:30,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6638/7350 [04:29<00:26, 26.68it/s]2022-02-22 22:00:30,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 6641/7350 [04:29<00:27, 26.13it/s]2022-02-22 22:00:30,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▎   | 6644/7350 [04:29<00:27, 25.27it/s]2022-02-22 22:00:30,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▎   | 6649/7350 [04:29<00:24, 29.00it/s]2022-02-22 22:00:30,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:30,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6652/7350 [04:30<00:24, 28.21it/s]2022-02-22 22:00:31,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6655/7350 [04:30<00:27, 25.51it/s]2022-02-22 22:00:31,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6659/7350 [04:30<00:25, 27.48it/s]2022-02-22 22:00:31,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▎   | 6663/7350 [04:30<00:23, 29.74it/s]2022-02-22 22:00:31,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6667/7350 [04:30<00:23, 28.84it/s]2022-02-22 22:00:31,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6670/7350 [04:30<00:24, 28.09it/s]2022-02-22 22:00:31,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6673/7350 [04:30<00:24, 27.98it/s]2022-02-22 22:00:31,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6676/7350 [04:30<00:26, 25.55it/s]2022-02-22 22:00:31,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:31,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6680/7350 [04:31<00:23, 29.03it/s]2022-02-22 22:00:32,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6683/7350 [04:31<00:23, 28.24it/s]2022-02-22 22:00:32,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 6686/7350 [04:31<00:25, 25.61it/s]2022-02-22 22:00:32,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6691/7350 [04:31<00:22, 29.75it/s]2022-02-22 22:00:32,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6695/7350 [04:31<00:25, 26.12it/s]2022-02-22 22:00:32,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6700/7350 [04:31<00:22, 28.29it/s]2022-02-22 22:00:32,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6703/7350 [04:31<00:22, 28.34it/s]2022-02-22 22:00:32,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:32,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6706/7350 [04:32<00:25, 25.50it/s]2022-02-22 22:00:33,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 6710/7350 [04:32<00:24, 26.58it/s]2022-02-22 22:00:33,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6714/7350 [04:32<00:26, 24.38it/s]2022-02-22 22:00:33,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6717/7350 [04:32<00:25, 25.26it/s]2022-02-22 22:00:33,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 6723/7350 [04:32<00:21, 29.74it/s]2022-02-22 22:00:33,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6727/7350 [04:32<00:24, 25.39it/s]2022-02-22 22:00:33,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6732/7350 [04:32<00:20, 30.32it/s]2022-02-22 22:00:33,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:33,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 6736/7350 [04:33<00:24, 24.99it/s]2022-02-22 22:00:34,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6740/7350 [04:33<00:23, 25.56it/s]2022-02-22 22:00:34,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6744/7350 [04:33<00:22, 26.92it/s]2022-02-22 22:00:34,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6747/7350 [04:33<00:22, 26.28it/s]2022-02-22 22:00:34,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6751/7350 [04:33<00:21, 27.58it/s]2022-02-22 22:00:34,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6755/7350 [04:33<00:24, 24.30it/s]2022-02-22 22:00:34,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:34,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 6758/7350 [04:34<00:23, 25.17it/s]2022-02-22 22:00:35,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6764/7350 [04:34<00:18, 31.36it/s]2022-02-22 22:00:35,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6768/7350 [04:34<00:21, 27.62it/s]2022-02-22 22:00:35,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6771/7350 [04:34<00:20, 28.11it/s]2022-02-22 22:00:35,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6774/7350 [04:34<00:20, 28.43it/s]2022-02-22 22:00:35,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6777/7350 [04:34<00:20, 27.67it/s]2022-02-22 22:00:35,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 6781/7350 [04:34<00:18, 29.97it/s]2022-02-22 22:00:35,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6785/7350 [04:34<00:19, 29.06it/s]2022-02-22 22:00:35,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:35,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6788/7350 [04:35<00:21, 25.92it/s]2022-02-22 22:00:36,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6793/7350 [04:35<00:18, 30.30it/s]2022-02-22 22:00:36,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 6797/7350 [04:35<00:19, 27.87it/s]2022-02-22 22:00:36,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6800/7350 [04:35<00:20, 26.93it/s]2022-02-22 22:00:36,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6804/7350 [04:35<00:19, 28.63it/s]2022-02-22 22:00:36,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 6807/7350 [04:35<00:18, 28.65it/s]2022-02-22 22:00:36,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6810/7350 [04:35<00:20, 26.70it/s]2022-02-22 22:00:36,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6814/7350 [04:35<00:17, 29.90it/s]2022-02-22 22:00:36,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:36,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6818/7350 [04:36<00:17, 30.13it/s]2022-02-22 22:00:37,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6822/7350 [04:36<00:19, 27.71it/s]2022-02-22 22:00:37,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6826/7350 [04:36<00:17, 29.95it/s]2022-02-22 22:00:37,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 6830/7350 [04:36<00:21, 23.72it/s]2022-02-22 22:00:37,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6836/7350 [04:36<00:16, 30.60it/s]2022-02-22 22:00:37,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6840/7350 [04:37<00:21, 24.27it/s]2022-02-22 22:00:37,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:37,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6846/7350 [04:37<00:16, 31.07it/s]2022-02-22 22:00:38,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6850/7350 [04:37<00:19, 25.46it/s]2022-02-22 22:00:38,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 6855/7350 [04:37<00:16, 29.80it/s]2022-02-22 22:00:38,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6859/7350 [04:37<00:16, 29.94it/s]2022-02-22 22:00:38,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6863/7350 [04:37<00:17, 27.60it/s]2022-02-22 22:00:38,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6867/7350 [04:37<00:16, 29.87it/s]2022-02-22 22:00:38,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:38,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 6871/7350 [04:38<00:19, 24.46it/s]2022-02-22 22:00:39,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▍  | 6876/7350 [04:38<00:16, 28.89it/s]2022-02-22 22:00:39,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6880/7350 [04:38<00:18, 26.11it/s]2022-02-22 22:00:39,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6884/7350 [04:38<00:16, 27.80it/s]2022-02-22 22:00:39,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6888/7350 [04:38<00:16, 28.75it/s]2022-02-22 22:00:39,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6892/7350 [04:38<00:18, 25.03it/s]2022-02-22 22:00:39,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6895/7350 [04:38<00:17, 25.74it/s]2022-02-22 22:00:39,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:39,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 6900/7350 [04:39<00:19, 23.65it/s]2022-02-22 22:00:40,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6906/7350 [04:39<00:15, 28.13it/s]2022-02-22 22:00:40,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6910/7350 [04:39<00:17, 24.83it/s]2022-02-22 22:00:40,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6914/7350 [04:39<00:17, 25.32it/s]2022-02-22 22:00:40,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:40,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6920/7350 [04:39<00:17, 24.92it/s]2022-02-22 22:00:40,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 6925/7350 [04:40<00:14, 28.90it/s]2022-02-22 22:00:41,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6930/7350 [04:40<00:15, 26.83it/s]2022-02-22 22:00:41,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6934/7350 [04:40<00:14, 28.34it/s]2022-02-22 22:00:41,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6940/7350 [04:40<00:14, 27.48it/s]2022-02-22 22:00:41,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 6945/7350 [04:40<00:14, 28.28it/s]2022-02-22 22:00:41,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6950/7350 [04:41<00:14, 26.84it/s]2022-02-22 22:00:41,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:41,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6955/7350 [04:41<00:13, 28.95it/s]2022-02-22 22:00:42,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6960/7350 [04:41<00:13, 28.34it/s]2022-02-22 22:00:42,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6964/7350 [04:41<00:13, 29.18it/s]2022-02-22 22:00:42,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 6970/7350 [04:41<00:13, 27.64it/s]2022-02-22 22:00:42,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6974/7350 [04:41<00:13, 28.00it/s]2022-02-22 22:00:42,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:42,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6980/7350 [04:41<00:10, 33.97it/s]2022-02-22 22:00:42,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6984/7350 [04:42<00:14, 25.01it/s]2022-02-22 22:00:43,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6991/7350 [04:42<00:12, 27.94it/s]2022-02-22 22:00:43,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 6995/7350 [04:42<00:13, 26.93it/s]2022-02-22 22:00:43,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7001/7350 [04:42<00:12, 29.07it/s]2022-02-22 22:00:43,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7005/7350 [04:42<00:12, 27.27it/s]2022-02-22 22:00:43,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:43,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7010/7350 [04:43<00:10, 31.48it/s]2022-02-22 22:00:44,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7014/7350 [04:43<00:12, 26.54it/s]2022-02-22 22:00:44,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 7019/7350 [04:43<00:11, 30.06it/s]2022-02-22 22:00:44,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7023/7350 [04:43<00:12, 26.39it/s]2022-02-22 22:00:44,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7026/7350 [04:43<00:12, 26.92it/s]2022-02-22 22:00:44,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7031/7350 [04:43<00:10, 30.79it/s]2022-02-22 22:00:44,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7035/7350 [04:43<00:11, 28.21it/s]2022-02-22 22:00:44,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:44,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 7039/7350 [04:44<00:10, 29.72it/s]2022-02-22 22:00:45,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7044/7350 [04:44<00:10, 29.45it/s]2022-02-22 22:00:45,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7048/7350 [04:44<00:10, 27.79it/s]2022-02-22 22:00:45,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7053/7350 [04:44<00:09, 32.56it/s]2022-02-22 22:00:45,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7057/7350 [04:44<00:11, 26.13it/s]2022-02-22 22:00:45,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7063/7350 [04:44<00:08, 32.35it/s]2022-02-22 22:00:45,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:45,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 7067/7350 [04:45<00:10, 26.37it/s]2022-02-22 22:00:46,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7073/7350 [04:45<00:08, 31.08it/s]2022-02-22 22:00:46,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7077/7350 [04:45<00:10, 26.55it/s]2022-02-22 22:00:46,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7083/7350 [04:45<00:08, 30.80it/s]2022-02-22 22:00:46,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 7087/7350 [04:45<00:09, 27.01it/s]2022-02-22 22:00:46,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7093/7350 [04:45<00:08, 30.70it/s]2022-02-22 22:00:46,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:46,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7097/7350 [04:46<00:09, 26.34it/s]2022-02-22 22:00:47,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7102/7350 [04:46<00:08, 30.13it/s]2022-02-22 22:00:47,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7106/7350 [04:46<00:08, 28.74it/s]2022-02-22 22:00:47,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7110/7350 [04:46<00:08, 29.01it/s]2022-02-22 22:00:47,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 7114/7350 [04:46<00:08, 27.79it/s]2022-02-22 22:00:47,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7117/7350 [04:46<00:09, 25.65it/s]2022-02-22 22:00:47,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7121/7350 [04:46<00:08, 28.57it/s]2022-02-22 22:00:47,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:47,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7125/7350 [04:47<00:07, 29.55it/s]2022-02-22 22:00:48,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7129/7350 [04:47<00:07, 28.06it/s]2022-02-22 22:00:48,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7133/7350 [04:47<00:07, 30.43it/s]2022-02-22 22:00:48,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 7137/7350 [04:47<00:07, 27.03it/s]2022-02-22 22:00:48,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7141/7350 [04:47<00:07, 26.44it/s]2022-02-22 22:00:48,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7147/7350 [04:47<00:07, 28.84it/s]2022-02-22 22:00:48,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:48,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7151/7350 [04:48<00:06, 28.94it/s]2022-02-22 22:00:49,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7155/7350 [04:48<00:06, 28.49it/s]2022-02-22 22:00:49,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 7159/7350 [04:48<00:06, 28.17it/s]2022-02-22 22:00:49,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|██████████████████████████████████████ | 7162/7350 [04:48<00:06, 28.20it/s]2022-02-22 22:00:49,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7167/7350 [04:48<00:06, 27.92it/s]2022-02-22 22:00:49,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7171/7350 [04:48<00:05, 30.16it/s]2022-02-22 22:00:49,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7175/7350 [04:48<00:05, 29.62it/s]2022-02-22 22:00:49,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7179/7350 [04:49<00:05, 29.07it/s]2022-02-22 22:00:49,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:49,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 7182/7350 [04:49<00:05, 28.29it/s]2022-02-22 22:00:50,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7186/7350 [04:49<00:05, 30.47it/s]2022-02-22 22:00:50,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7190/7350 [04:49<00:05, 30.93it/s]2022-02-22 22:00:50,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7194/7350 [04:49<00:05, 28.29it/s]2022-02-22 22:00:50,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7197/7350 [04:49<00:05, 26.12it/s]2022-02-22 22:00:50,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7202/7350 [04:49<00:05, 28.59it/s]2022-02-22 22:00:50,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7205/7350 [04:49<00:05, 28.58it/s]2022-02-22 22:00:50,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:50,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 7208/7350 [04:50<00:05, 26.29it/s]2022-02-22 22:00:51,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7212/7350 [04:50<00:04, 29.15it/s]2022-02-22 22:00:51,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7215/7350 [04:50<00:04, 29.33it/s]2022-02-22 22:00:51,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7219/7350 [04:50<00:04, 28.39it/s]2022-02-22 22:00:51,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7223/7350 [04:50<00:04, 30.11it/s]2022-02-22 22:00:51,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7227/7350 [04:50<00:03, 31.22it/s]2022-02-22 22:00:51,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 7231/7350 [04:50<00:04, 29.14it/s]2022-02-22 22:00:51,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▍| 7234/7350 [04:50<00:03, 29.15it/s]2022-02-22 22:00:51,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:51,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▍| 7238/7350 [04:51<00:03, 28.87it/s]2022-02-22 22:00:51,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7242/7350 [04:51<00:04, 24.98it/s]2022-02-22 22:00:52,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7247/7350 [04:51<00:03, 30.33it/s]2022-02-22 22:00:52,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7251/7350 [04:51<00:03, 28.50it/s]2022-02-22 22:00:52,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 7255/7350 [04:51<00:03, 29.83it/s]2022-02-22 22:00:52,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7259/7350 [04:51<00:03, 26.01it/s]2022-02-22 22:00:52,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7262/7350 [04:51<00:03, 26.79it/s]2022-02-22 22:00:52,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:52,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7268/7350 [04:52<00:02, 30.48it/s]2022-02-22 22:00:53,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7272/7350 [04:52<00:02, 26.52it/s]2022-02-22 22:00:53,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 7278/7350 [04:52<00:02, 30.76it/s]2022-02-22 22:00:53,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7282/7350 [04:52<00:02, 26.69it/s]2022-02-22 22:00:53,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7286/7350 [04:52<00:02, 29.00it/s]2022-02-22 22:00:53,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7290/7350 [04:52<00:02, 28.42it/s]2022-02-22 22:00:53,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:53,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7293/7350 [04:53<00:02, 22.83it/s]2022-02-22 22:00:54,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 7300/7350 [04:53<00:01, 30.05it/s]2022-02-22 22:00:54,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 7304/7350 [04:53<00:01, 25.77it/s]2022-02-22 22:00:54,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 7310/7350 [04:53<00:01, 30.81it/s]2022-02-22 22:00:54,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7314/7350 [04:53<00:01, 26.39it/s]2022-02-22 22:00:54,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7320/7350 [04:53<00:00, 30.60it/s]2022-02-22 22:00:54,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:54,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 7324/7350 [04:54<00:00, 27.22it/s]2022-02-22 22:00:55,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7329/7350 [04:54<00:00, 31.29it/s]2022-02-22 22:00:55,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7333/7350 [04:54<00:00, 26.93it/s]2022-02-22 22:00:55,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7337/7350 [04:54<00:00, 29.11it/s]2022-02-22 22:00:55,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7341/7350 [04:54<00:00, 26.90it/s]2022-02-22 22:00:55,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 7344/7350 [04:54<00:00, 25.74it/s]2022-02-22 22:00:55,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 22:00:55,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 7350/7350 [04:54<00:00, 24.92it/s]
2022-02-22 22:00:56,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|███████████████████████████████████████| 7350/7350 [02:10<00:00, 56.15it/s]
In [23]:
#Tshirt: net aperture
Flux3, Flux_error3 = phot3.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt3 = Flux3['Flux 0']/Flux3['Flux 0'][0] #normalized net aperture sum
std_tshirt3 = np.std(normalized_flux_tshirt3[0:20]) #calculated standard deviation
relative_error_tshirt3 = (Flux_error3['Error 0']/Flux3['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt3[0:seg01_len] - np.median(normalized_flux_tshirt3[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt3*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt3)*10**6))

plt.errorbar(Flux3['Time (JD)'],normalized_flux_tshirt3,yerr=relative_error_tshirt3,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
#plt.plot(phot3.cenArr[:,0,0],'.')
Tshirt Calculated Net Aperture Sum MAD (ppm): 888.6958136748824
Tshirt Calculated Net Aperture Sum std (ppm): 940.931969162921
Median Relative Errors Net Aperture Sum (ppm): 905.1993700754741
Out[23]:
<ErrorbarContainer object of 3 artists>

$\textbf{Summary}$¶

Planet HD189733b
Re-centered Centroid (xcenter,ycenter) (1982.2,30.2)
Filter WLP4
Pupil CLEAR
bkgGeometry Radius Radius_inner Radius_outer Bkg_sub Method Median rel_error Stdev (ppm)
JWST Photometric Pipeline Circular Annulus 3* 4* 5* mean 4121.89 3669.17
30 30 50 221.02 559.15
25 5 12 4121.89 3669.17
Tshirt Photometric Pipeline Circular Annulus 3* 4* 5* colrow 3251.45 7865.74
30 30 50 colrow 177.25 539.09
25 5 12 mean 905.19 940.93

$\textbf{Light Curve Modeling}$¶

Modeling the best returned light curve from the photometry steps above. Here the best result is the 30-30-50 Radii values.

Planet Parameters:

  • per: 191684.6208 ## seconds, Addison et al. 2019
  • a: 8.73 ## a/r*, Addison et al. 2019
  • inc: 85.690 ## inclination, Addison et al. 2019
  • ecc: 0. ## eccentricity, rounded to 0
  • w: 90. ## longitude of periastron
  • limb_model: "nonlinear" ## type of limb darkening model
  • ld_u: [0.295,0.033,-0.079,0.034] ## limb darkening parameters, ExoCTK 4 param law, ATLAS9,5052K,4.49,Fe/h=-0.02, NIRCamgrism F444W
In [76]:
def transit_model(x, rp, A, t0):
    '''
    Models transit light curve using Python package `batman` based on initial parameters stored in params_transit.
    
    Parameters
    ----------
    
    x: array
        Time in Julian days  
    rp: int
        Planet-to-star radius ratio
    A: int
        Baseline Normalization Factor
    t0: int
        Time of inferior conjunction
    '''

    params_transit = batman.TransitParams()                   #Object to store transit parameters
    
    params_transit.t0 = t0                                                       #time of inferior conjunction
    params_transit.per = 2.218572                                                #orbital period
    params_transit.a = 8.73                                                      #semi-major axis (in units of stellar radii)
    params_transit.inc = 85.690                                                    #orbital inclination (in degrees)
    params_transit.ecc = 0                                                       #eccentricity
    params_transit.w = 90.0                                                      #longitude of periastron (in degrees)
    params_transit.limb_dark = "nonlinear"                                       #limb darkening model
    params_transit.u =  [0.295,0.033,-0.079,0.034]                                 #limb darkening coefficients [u1, u2, u3, u4]
    
    params_transit.rp = rp                                    #Planet-to-star radius ratio - Will depend on function input
    
    #Modifying the time: Julian Date(x) - Initial Julian Date(x0) 
    x0 = np.min(x)
    m = batman.TransitModel(params_transit, x-x0)                #Initializes model
    
    flux = m.light_curve(params_transit)*A        #Calculate the light curve
    return flux
In [103]:
#Simple curve_fit model to determine the best planet-to-star radius ratio. 
popt, pcov = curve_fit(transit_model,Flux2['Time (JD)'],normalized_flux_tshirt2,sigma=relative_error_tshirt2,p0=[0.2,1,0.1158])

print("Optimized Planet-to-star radius ratio = " + str(popt[0]))
print("Optimized Baseline Normalization Factor = " + str(popt[1]))
print("Optimized Time of Inferior Conjunction = " + str(popt[2]))
Optimized Planet-to-star radius ratio = 0.15037699621759168
Optimized Baseline Normalization Factor = 0.9995065446078834
Optimized Time of Inferior Conjunction = 0.12062263094234306
In [109]:
#plot the modeled light curves
modeled_flux =transit_model(Flux2['Time (JD)'], *popt)
t = Flux2['Time (JD)'] 

plt.plot(t,modeled_flux, color='red')
plt.plot(t,normalized_flux_tshirt2,'.',alpha=0.01)
plt.title("HD189733b Light Curve Model")
plt.xlabel("Time (JD)")
plt.ylabel("Normalized Flux")
Out[109]:
Text(0, 0.5, 'Normalized Flux')
In [ ]: